commit 6b250ffc3d31e568721deb64153f170eff6f303c Author: snow Date: Sat Jan 20 17:56:00 2024 +0800 first commit diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..05a4012 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +# The following five 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(wifi_station) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..84ddf45 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +# +# This is a project Makefile. It is assumed the directory this Makefile resides in is a +# project subdirectory. +# + +PROJECT_NAME := wifi_station + +include $(IDF_PATH)/make/project.mk diff --git a/README.md b/README.md new file mode 100644 index 0000000..a778c26 --- /dev/null +++ b/README.md @@ -0,0 +1,118 @@ +# Wi-Fi Station Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example shows how to use the Wi-Fi Station functionality of the Wi-Fi driver of ESP for connecting to an Access Point. + +## How to use example + +### Configure the project + +Open the project configuration menu (`idf.py menuconfig`). + +In the `Example Configuration` menu: + +* Set the Wi-Fi configuration. + * Set `WiFi SSID`. + * Set `WiFi Password`. + +Optional: If you need, change the other options according to your requirements. + +### Build and Flash + +Build the project and flash it to the board, then run the monitor tool to view the serial output: + +Run `idf.py -p PORT flash monitor` to build, flash and monitor the project. + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for all the steps to configure and use the ESP-IDF to build projects. + +* [ESP-IDF Getting Started Guide on ESP32](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html) +* [ESP-IDF Getting Started Guide on ESP32-S2](https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/get-started/index.html) +* [ESP-IDF Getting Started Guide on ESP32-C3](https://docs.espressif.com/projects/esp-idf/en/latest/esp32c3/get-started/index.html) + +## Example Output +Note that the output, in particular the order of the output, may vary depending on the environment. + +Console output if station connects to AP successfully: +``` +I (589) wifi station: ESP_WIFI_MODE_STA +I (599) wifi: wifi driver task: 3ffc08b4, prio:23, stack:3584, core=0 +I (599) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE +I (599) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE +I (629) wifi: wifi firmware version: 2d94f02 +I (629) wifi: config NVS flash: enabled +I (629) wifi: config nano formating: disabled +I (629) wifi: Init dynamic tx buffer num: 32 +I (629) wifi: Init data frame dynamic rx buffer num: 32 +I (639) wifi: Init management frame dynamic rx buffer num: 32 +I (639) wifi: Init management short buffer num: 32 +I (649) wifi: Init static rx buffer size: 1600 +I (649) wifi: Init static rx buffer num: 10 +I (659) wifi: Init dynamic rx buffer num: 32 +I (759) phy: phy_version: 4180, cb3948e, Sep 12 2019, 16:39:13, 0, 0 +I (769) wifi: mode : sta (30:ae:a4:d9:bc:c4) +I (769) wifi station: wifi_init_sta finished. +I (889) wifi: new:<6,0>, old:<1,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (889) wifi: state: init -> auth (b0) +I (899) wifi: state: auth -> assoc (0) +I (909) wifi: state: assoc -> run (10) +I (939) wifi: connected with #!/bin/test, aid = 1, channel 6, BW20, bssid = ac:9e:17:7e:31:40 +I (939) wifi: security type: 3, phy: bgn, rssi: -68 +I (949) wifi: pm start, type: 1 + +I (1029) wifi: AP's beacon interval = 102400 us, DTIM period = 3 +I (2089) esp_netif_handlers: sta ip: 192.168.77.89, mask: 255.255.255.0, gw: 192.168.77.1 +I (2089) wifi station: got ip:192.168.77.89 +I (2089) wifi station: connected to ap SSID:myssid password:mypassword +``` + +Console output if the station failed to connect to AP: +``` +I (589) wifi station: ESP_WIFI_MODE_STA +I (599) wifi: wifi driver task: 3ffc08b4, prio:23, stack:3584, core=0 +I (599) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE +I (599) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE +I (629) wifi: wifi firmware version: 2d94f02 +I (629) wifi: config NVS flash: enabled +I (629) wifi: config nano formating: disabled +I (629) wifi: Init dynamic tx buffer num: 32 +I (629) wifi: Init data frame dynamic rx buffer num: 32 +I (639) wifi: Init management frame dynamic rx buffer num: 32 +I (639) wifi: Init management short buffer num: 32 +I (649) wifi: Init static rx buffer size: 1600 +I (649) wifi: Init static rx buffer num: 10 +I (659) wifi: Init dynamic rx buffer num: 32 +I (759) phy: phy_version: 4180, cb3948e, Sep 12 2019, 16:39:13, 0, 0 +I (759) wifi: mode : sta (30:ae:a4:d9:bc:c4) +I (769) wifi station: wifi_init_sta finished. +I (889) wifi: new:<6,0>, old:<1,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (889) wifi: state: init -> auth (b0) +I (1889) wifi: state: auth -> init (200) +I (1889) wifi: new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (1889) wifi station: retry to connect to the AP +I (1899) wifi station: connect to the AP fail +I (3949) wifi station: retry to connect to the AP +I (3949) wifi station: connect to the AP fail +I (4069) wifi: new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (4069) wifi: state: init -> auth (b0) +I (5069) wifi: state: auth -> init (200) +I (5069) wifi: new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (5069) wifi station: retry to connect to the AP +I (5069) wifi station: connect to the AP fail +I (7129) wifi station: retry to connect to the AP +I (7129) wifi station: connect to the AP fail +I (7249) wifi: new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (7249) wifi: state: init -> auth (b0) +I (8249) wifi: state: auth -> init (200) +I (8249) wifi: new:<6,0>, old:<6,0>, ap:<255,255>, sta:<6,0>, prof:1 +I (8249) wifi station: retry to connect to the AP +I (8249) wifi station: connect to the AP fail +I (10299) wifi station: connect to the AP fail +I (10299) wifi station: Failed to connect to SSID:myssid, password:mypassword +``` + +## Troubleshooting + +For any technical queries, please open an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon. diff --git a/build/.bin_timestamp b/build/.bin_timestamp new file mode 100644 index 0000000..ec11557 --- /dev/null +++ b/build/.bin_timestamp @@ -0,0 +1 @@ +914706e754197e4793542e32f3d0f0dc E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..6cfc8ea 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..dcc357d --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,1397 @@ +# ninja log v5 +13860 16754 7274184719312014 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj 5002c655d14f0ca4 +1683 2322 7274180299868547 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj efb0b10dee3b738c +0 201495 0 CMakeFiles/menuconfig aaba8d07501eac77 +5169 5855 7274184610134059 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 7941bb8f9e97f0c8 +50354 50667 7274185058101051 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 35d3201247714e56 +5496 5979 7274180336691527 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 2a6c4c66c79a8564 +594 1467 7274180291508839 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj f729803fc0017d47 +0 201495 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/menuconfig aaba8d07501eac77 +35252 35868 7274184909970796 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 93298bf840a3d84 +2 9717 7274247617723279 build.ninja 251f1ac699b02a09 +190363 190635 7274182183682873 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 599bcdb216c25d70 +5766 6974 7274180346459727 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 9ac48d988dc6b27f +191866 192474 7274182201980001 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj f508d0773270b2f4 +195358 195717 7274182234182589 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj f8e1d9952dde68b0 +22 63 7274180278131818 project_elf_src_esp32s3.c e0ccfb85409ef70c +11220 11606 7274180392947838 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b9de3ca09a744b0f +1468 2012 7274180296597372 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 6fb30e99d274df98 +189865 190380 7274182180998120 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 68c1ed492539a4a1 +9876 10395 7274180381150811 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 7966e365dacd4d6f +36146 36829 7274184919894294 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj cda08a636eaaf363 +2717 3039 7274180307555249 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 6f22ef20e22fed59 +22 63 7274180278131818 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/project_elf_src_esp32s3.c e0ccfb85409ef70c +122 592 7274180283135166 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 13e407de3a7d1b9a +109 983 7274180284388973 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 1880ded935791acd +17814 189170 7274180460211417 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj d13289c9d061ee05 +35790 36454 7274184916138627 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj d1e74e65646f217e +132 1382 7274180290853482 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj 51014b5d76be4654 +15042 17631 7274184727996089 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 32ecd02ec4a6585f +3350 3851 7274180315743821 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 45ade07e894a3978 +33 104 7274180278542245 esp-idf/esp_system/ld/memory.ld 46b5a490375789b9 +2044 2843 7274180305595303 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 2e8e279e4f8e1dd9 +1383 2040 7274180296647379 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 7e70ce3247c07c92 +33 104 7274180278542245 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld 46b5a490375789b9 +15755 16266 7274180438000218 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj df69f7b36e357112 +3246 3930 7274180316403792 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 294a47c4eb4adfb0 +4729 4978 7274180326998777 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj a945806d3332c398 +14315 15047 7274184701355423 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj f61d5052943a78b9 +118 672 7274180283803800 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj ee854d837d41c0d5 +724 1416 7274180291163072 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj 93ad60a9027dcc0a +5829 6599 7274184617677893 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 561b84608758d26 +8150 8838 7274184639923632 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 9efd1db1ec1b2d93 +10541 11201 7274184663594728 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj f4de08e9bbff0ae1 +23175 25853 7274184807738156 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj d3428db3984b2d72 +2060 2875 7274180305945294 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj 460c739cbf1fa220 +11724 12408 7274184675834218 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj d552e2990ba6b6f6 +26 711 7274180278997619 partition_table/partition-table.bin 9f2ef1fd01613f3a +42181 43155 7274184983220127 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj a406f2642244b7ac +2650 3060 7274180307655251 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 96686326802e1b78 +193093 193654 7274182213636502 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj 7c13eafb49ab6923 +3380 3918 7274180316303784 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj f8f23ae09ebc438f +192960 193506 7274182211876543 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj b5798ed485da1056 +48791 49595 7274185046976570 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj eb2d7584a25d9cc +26 711 7274180278997619 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin 9f2ef1fd01613f3a +190381 190574 7274182182948076 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 789ae4d8ff06512e +16578 16797 7274180444036123 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj 8f0dc1445fa15411 +144 723 7274180284468968 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 37fb9182ce28acf3 +15733 16411 7274184715512213 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj 2947a58022455e96 +1286 1682 7274180293957934 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj e88f34eecf656dcb +195452 195881 7274182235887764 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj ffab31b4e46bdd09 +2026 2601 7274180303139252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 762e2523f717516d +105 1065 7274180284768941 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj f15626673db535c9 +3113 3768 7274180314733822 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 829b852647e16266 +138 1085 7274180285268948 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 6ac3554991744096 +113 1283 7274180285358959 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 9aa01d893a36bb3 +127 1303 7274180286498909 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b46118ee31e4c688 +5665 6412 7274184615547956 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 40c95fcc3c7a41a8 +45119 45980 7274185009996158 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj 28a1ba483923834e +31781 31863 7274184870574299 esp-idf/soc/libsoc.a 852b8feb25cf24bc +1416 1787 7274180294757416 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 37e32d2c98c21985 +67 983 7274184560841066 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 7bcd6d2598c9d784 +1365 1993 7274180296447403 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 8ba3e4cc60a822f0 +11488 12109 7274184672809839 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj e0975f9c9e2a3ed6 +40973 42400 7274184974019389 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj b33dff66578099a9 +16151 16869 7274184720242108 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 90640e33cfa812b8 +984 1312 7274180289681725 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj f19392ab7f0fcaa1 +1304 1828 7274180295437407 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 410ce87e1b811c09 +1068 1364 7274180290501707 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj a5a26e0d333a1f96 +8696 9359 7274180370469194 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj f3353e95a4810569 +10952 11765 7274180394617798 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj ee49a12a24f9114d +2012 2650 7274180303669805 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 35ff86d97432fcbf +8084 8755 7274180364433102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj a8e04bf407932574 +3696 4253 7274180319734072 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 6c14ac255b1d1367 +711 1402 7274180291023498 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 82a7f747a9e86618 +1086 1562 7274180292608808 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj c84b4889b2d4e050 +3851 4545 7274180322090624 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 1fda5ea96aaf7b22 +191814 192974 7274182206841561 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 957bd7063c9588c5 +194444 195027 7274182227390063 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 9dfe098c6b4d4371 +14804 15388 7274180430659485 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj 98dd89bcc4c5a0ea +1562 2025 7274180296727372 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 16507cf2d6794024 +19268 20158 7274184752974783 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b5148b5ecf832a55 +1312 2058 7274180296972198 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 81fd3e9068deed28 +1402 2239 7274180299538560 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 8166994d0cf40242 +18383 19785 7274184749183304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj f0c5b84cd3196c3f +2876 3471 7274180311788129 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj 94f9670ae2cdbd97 +35803 36564 7274184917255203 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj a8b424b35fc5a968 +8784 9497 7274180372079138 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj a22aa1e51760ef49 +2406 2863 7274180305905280 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 9beab1df4af01d9f +37688 38397 7274184935624018 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj b08094f9e9cab583 +1788 2297 7274180299228554 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj c77dafe485c83ab2 +47001 47449 7274185026218447 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 9eb046a39ee5c107 +15576 15860 7274180435690271 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 66f6de23909b1cab +25062 25441 7274184806202067 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj 1939a63ed4dbd854 +3757 4456 7274184595812931 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj aff82cea464fa3e8 +48655 49320 7274185044686738 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj 1a1caa007ac3393d +32387 32476 7274184876692287 esp-idf/spi_flash/libspi_flash.a e8a46f3655281a88 +1828 2406 7274180300648522 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b191405440ba9a8f +2297 2716 7274180304395313 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj dea04e3296ede0b7 +191772 192072 7274182197912290 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj e5f2641937e80ccd +2602 3245 7274180309673067 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 52eaffa1fa9ac65d +2239 2924 7274180305995285 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hash_info.c.obj 47d0ce69fedd6824 +17981 18888 7274184740221564 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 5c0f87b881246ece +7392 8116 7274180358328597 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 634dfd5797051ce0 +2322 3112 7274180307976518 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b5e78888441d8627 +2843 3233 7274180309483096 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj e1255f442f0a333a +24423 25341 7274184805002100 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 6aed196016e8300 +11806 12306 7274184674678635 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj d14c4b1f850466e2 +2927 3349 7274180310678276 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 587a93d19a16acdf +40936 41388 7274184964281087 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj af3cb69f37fc0040 +2863 3380 7274180310738145 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 77dfb836eba0e4ee +4019 4425 7274180320934050 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 41d841359dd58818 +60417 60769 7274185159615270 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +3040 3600 7274180313068102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj d6c238f3118b832c +193461 194045 7274182217365007 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 3582471e7b4eca55 +3060 3695 7274180314100635 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj ef2fa496f070fabf +11575 12380 7274180400565411 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj fe27f8712ffff91c +3472 3837 7274180315613789 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj d636c5228ad8890d +3233 3905 7274180316213793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 7cafb8071ceaecda +194665 195114 7274182228300050 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj 3a5e59a0d316bec6 +15005 15322 7274180430093068 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj f4a5e53cca2a4e4f +5156 5482 7274180331852415 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 63192691bd5775db +7582 8439 7274180361737400 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj d459396b2b11072b +3605 4019 7274180317183783 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj f828a0e1ba6c20fd +41377 41939 7274184970383811 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj ff3f070b0a830079 +16090 16756 7274180443296113 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj e19cef9b9b289a67 +3918 4524 7274180322060623 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj f1fe21471e4fbbbb +39868 40512 7274184956822383 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj a65178ab2c740e7d +6412 7150 7274184622455464 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 83a0681427ca976c +22193 22973 7274184781096297 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 3b019bed95e232a7 +12686 13237 7274180409606950 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 1e412da080481e14 +3837 4558 7274180322620613 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj b57c070b968d7d0c +42400 43205 7274184983380126 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 62a527c7822118fb +3931 4573 7274180322780620 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 2eb6ef788c382b23 +7335 7720 7274180354260840 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 8d43f744e94bc016 +3905 4610 7274180323000618 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 5c5417e5d74dd062 +3768 4728 7274180324408934 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj aad04c0c631e3d19 +192729 193093 7274182208171639 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj 69469887b41316ed +4253 4852 7274180325768792 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 68faa970056dc66a +4559 4922 7274180326538793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj cdc1767c11f366b3 +5785 6441 7274184615907924 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj e132655d17e25a41 +16797 17328 7274180449663897 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 7a7b7da6583df9ec +9252 10927 7274180386394543 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj e62f70a198c94b2 +22749 23466 7274184786224889 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj f557a7a0c7f0b89d +4426 4936 7274180326588790 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 7c083ddbe140793a +3849 4435 7274184595782934 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj df7cd31cb4d5cdf4 +46156 46826 7274185019657570 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 8ee4d9ac0849b9c4 +40625 40973 7274184961488207 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 66c1b0b4050982e2 +4524 5060 7274180327558785 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj ca47a5a4808d326a +47449 47776 7274185029405074 esp-idf/unity/libunity.a 14891118a06138a +4545 5109 7274180328078058 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj 79d9624d43122baa +4610 5156 7274180328548044 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b0f2906b42f71358 +4573 5186 7274180328886501 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 8851a31c92f0e413 +15322 15575 7274180432859462 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 503bca7634b72cbf +41388 41971 7274184971074279 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 4e1902e695ee271b +4922 5334 7274180330542423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj baac2904d7d5cacf +15249 15372 7274180430659485 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj 90092dae2d1dd06b +4979 5376 7274180330942452 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 69bd65e2a1af1836 +4853 5391 7274180331142417 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj bdc6f3a41a797f74 +189554 189931 7274182176583717 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj c7895802cb327cb2 +192597 193078 7274182207851544 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj c94d42f724b06cd1 +190937 191337 7274182190694801 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj ed1b748c56c9abea +5187 5460 7274180331752400 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 4e2de177146c7387 +39018 39728 7274184948844351 esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj ff477c2bb67558b2 +5060 5496 7274180331772398 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj cd6ce9b6f6285a2e +33732 34535 7274184896199492 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 1030afa971c398da +5109 5561 7274180332822386 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 11056d0c35541e7c +191337 191954 7274182196332301 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj eef50a6aaf1f2acc +4936 5574 7274180332892401 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 2250ba5cd5506636 +5334 5749 7274180334611566 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj c2f62db57ea444b3 +5377 5766 7274180334871561 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 6e87841d8a76d46a +40295 40828 7274184959497211 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj 52156a7298d5e37b +193415 194031 7274182217255011 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 22c5e4f42ac8967 +5483 5854 7274180335831553 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj 54928d088389a356 +195922 196470 7274182241807558 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 89d3e4641c199c44 +5391 5938 7274180336631528 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 19c2357c629cccda +5574 5953 7274180336601535 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj 525fee229bcc8e1c +13484 14163 7274180418307437 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 9f2b61cb679363 +13035 13484 7274180411956890 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 676b153f16385bae +5460 5995 7274180336771565 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj c99af5ff43e427d3 +5561 6023 7274180337049560 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj 1b874a60410dd984 +673 6212 7274180339489510 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj fa8a1933029bc9d5 +194031 194665 7274182223893029 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 2b14d86a75f35d29 +5980 6548 7274180342691855 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj 7eb1b4165f9bab2b +189135 195503 7274182231897829 esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj 9b93185db62b236a +191155 191479 7274182192044783 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj ba9ea6776420889a +10591 11219 7274180389291536 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.c.obj 9de7ff86eb10b2fc +5938 6578 7274180342781838 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj 4fa350413517f483 +194622 195098 7274182228160055 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 2c95504d1bc943db +6026 6667 7274180343731825 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj 587fa7f62505bde1 +192516 192959 7274182206921565 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 5d10f600f5a62a4a +15649 16090 7274180437700246 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 4f0f25e4d36e0375 +6212 6793 7274180345059760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj cd3707224da13ea +38423 39265 7274184943983774 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj 234f3f880bca1bf1 +5750 6834 7274180345269740 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 671d3111c83e984b +49595 49983 7274185051140900 esp-idf/touch_element/libtouch_element.a c911082a5c81d687 +7569 7953 7274180356418657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 32d77e57eb473c1b +5855 6916 7274180346169744 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj f3d179cacb7f140c +20739 21670 7274184767726633 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj e1750bd8e4296112 +195579 195950 7274182236697779 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 186cc2955dc5888e +30844 30975 7274184861680444 esp-idf/lwip/liblwip.a f69eaba6e3f508e5 +5954 7046 7274180347229713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj 356b8bf45f42d4b0 +195099 195438 7274182231607795 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 593daf9c267ffdb5 +189128 189511 7274182172301861 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj 663fd4449261d5e +5995 7157 7274180348289718 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj 4419a3f5a723a056 +11034 11705 7274184668542558 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj 7888099d2848cc9c +4341 5113 7274184601854762 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 8ea2db6be869dc +6579 7203 7274180348779680 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj b42a5d8f05ac6310 +24200 25229 7274184803703476 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj fbde1852bc719548 +15021 15697 7274184708635157 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj b4a2adc0ab97df4e +6667 7267 7274180349651697 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj 762b6dc3fbf4c191 +24436 25352 7274184805062082 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj 62d27e2ce32b326e +6548 7335 7274180350131691 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj 2271ba99f3627e07 +6917 7391 7274180350841662 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj ca4f19f90c9223e4 +46 1034 7274184560771084 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 90a48259699e41f3 +190816 191074 7274182187979019 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj 86b1f9cccde41330 +6794 7445 7274180351471662 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 35b9f653a554b12f +6836 7569 7274180352888480 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 27cd30c8e67d1f74 +4279 4973 7274184601424774 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj a87799fdd7a21cf7 +7047 7581 7274180353018454 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 6e73ad7061b8efb +42023 42994 7274184981200072 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 699a4e8b5ccb9aac +33746 34644 7274184897930859 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj a651ba91a2f85aa2 +32760 32838 7274184880312298 esp-idf/mbedtls/mbedtls/library/libmbedtls.a cf18c402e59e4096 +14149 14573 7274180423054355 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj 4760cfa96268a8fe +10984 11348 7274180390521445 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 44d0a2adec74f7ca +7268 7681 7274180353728448 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 739c9beb1e8c9dd0 +7203 7817 7274180355308661 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj c8cc3d86edf0f0d3 +6974 7823 7274180355188740 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj e4644a3e38aa8f20 +16320 16600 7274180442896128 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 2f4e9af094b139d2 +7157 7923 7274180356228653 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 93ca8a63008a89e1 +39580 40295 7274184954555650 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj 81eba6eec6dae15 +7445 8084 7274180357888611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 1120231f9d88007e +11765 12159 7274180398940261 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 81b6c4e976128192 +4456 5146 7274184602884758 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj f15e356d413d4d9a +17279 17876 7274180454301759 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 9f22f292e656c8dc +7823 8174 7274180358950615 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj 1cc1b0ef768ec9ac +60417 60769 7274185159615270 .bin_timestamp 4d843cf934eefe49 +7682 8378 7274180360977386 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 6414dc426c3242b +7721 8482 7274180361807397 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 4ba36544a305510d +7818 8553 7274180362637374 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj cad432a428b448a2 +39905 40936 7274184959957173 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj 385fc33510282256 +18497 19267 7274184744245798 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 9aae7bc9a614813a +13081 14560 7274180421944371 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj abd0c12e63b6543b +12268 12938 7274180406613280 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 394b3051c88413ef +7954 8695 7274180364203100 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 78e7351ba6688762 +8440 8770 7274180364663103 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj a99436ff80bc62c1 +46446 47249 7274185023949989 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj f0625c89dfa9607c +189702 190164 7274182178767371 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj ccf5dc46f19a33d9 +8379 8799 7274180364603101 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 10d0c897683c768b +37955 38559 7274184937208184 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj b77f2e00c8dcab42 +33466 33701 7274184888902156 x509_crt_bundle.S d72f17ccd743c944 +192676 193339 7274182210376573 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 398f712a369a2e87 +8116 8851 7274180365103101 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 2b21fae16b73b708 +43113 43780 7274184989383327 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj ef7bc946084c89a +37703 38534 7274184936730984 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj fd892f10874d7f45 +6731 7445 7274184626018362 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj acde659503501f88 +48214 50180 7274185041832317 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj a2881b433483944d +9498 10011 7274180377430004 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 13728749dd02ce97 +8483 8875 7274180365993082 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b45fdc89924479e5 +44 242 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +189164 189554 7274182172825089 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_hal.c.obj 9e2f70473936b6e4 +8554 8963 7274180366833048 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 39d5fba7db04a9a7 +10104 11000 7274184660834757 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj d8433e56cb88a1d4 +1349 2632 7274184577667717 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj 95fd7aac4872dcd8 +8174 9126 7274180368213030 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 34bf5d7799e10971 +43629 44392 7274184995007627 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj 33f7b136a45b8e66 +8852 9758 7274180374777677 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b0f1c5d711e9bc18 +8800 9252 7274180369704921 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj fcf8905cb5a915d6 +191307 191735 7274182194554063 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 68a355af0b73f25e +14096 15447 7274180430599507 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj c062abf625f25311 +8875 9324 7274180370089935 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj f12e05eafed3f4a8 +195882 197251 7274182249588963 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 4391615103f14fb9 +9325 9791 7274180375197435 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj ca9b8ca92308a9da +8963 9876 7274180375937433 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 20845d566f9104de +15861 16320 7274180439866326 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj f9cb68bd9de73717 +1996 9882 7274180303049263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj d0630740e1ab86d1 +21968 22535 7274184776722874 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj d1aa8852e7f36ff0 +196485 197045 7274182247676506 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj e3ee4c92e251a1bd +9126 9922 7274180376357986 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj cfd8104cffe2d9c5 +11988 12842 7274180405213307 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 38ce78fec9ed71a0 +7161 8773 7274184639333649 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 7f43009238aa82 +9359 10152 7274180378795490 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj f59585e72f84f0c9 +9759 10237 7274180379085457 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 8b2891722836aa28 +8757 10258 7274180379830817 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj ca49fb876fb5535b +52 148 7274242982053040 esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj dd8bbe1fefc0f38d +9883 10365 7274180380940822 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj 8ec30e8caaab8099 +190343 190495 7274182182078092 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 9a7dbfb40f963f9d +9792 10380 7274180381020812 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 1f722283c48a0329 +15031 15775 7274184708931364 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 9ae1d86c5ce7a5f9 +10238 10423 7274180381450810 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir aeb0049ad6c49e3 +5114 5829 7274184609734055 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj c401b747fd13485a +48675 49561 7274185047156544 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj 50e797e6d4b9a25 +47250 47978 7274185031325042 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj 2a97f613d61788d5 +30455 30539 7274184857315164 esp-idf/http_parser/libhttp_parser.a 9458f62fa6aba66e +10238 10423 7274180381450810 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir aeb0049ad6c49e3 +48127 48808 7274185039552351 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 5c7089433e11a5a5 +6567 7367 7274184625138370 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj 8567c3b30305ab87 +49321 49716 7274185048868282 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj cca3def2514703e7 +193381 193461 7274182211796544 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj 1993fbc59bddd73b +9923 10485 7274180381860822 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 8254940280f523fc +13880 14714 7274184697929421 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 6b154faa029e6a5c +193339 193896 7274182216265016 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj 52866766c39a7084 +7924 10559 7274180364123106 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 305fba76663d4ee2 +2898 3407 7274184585724749 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj c96a6ef6e3870de7 +10153 10590 7274180382522596 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj cc68930139d3b201 +10012 10617 7274180383312573 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 2ad2cc94bcdd04ce +3772 4340 7274184595092932 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj c52380508b09215f +32379 32465 7274184876576537 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-done ee91580f96111860 +196470 197023 7274182247436514 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj cb766a89376ede3b +37110 37688 7274184928629368 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj 701240e76e98a3e7 +10423 10692 7274180383892563 bootloader-prefix/src/bootloader-stamp/bootloader-download ed557f0e58c97c73 +10423 10692 7274180383892563 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-download ed557f0e58c97c73 +194980 195401 7274182230957841 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj ac48b580bd12195a +193654 193881 7274182216175030 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj 579930d0a38016e +10259 10717 7274180384312572 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj deb1d6344779b941 +10396 10811 7274180384984580 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 83419688d43a9d7c +10559 10910 7274180385834553 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 5402f8ada4f0dec4 +10365 10949 7274180386254572 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj e75336348c8ec520 +41186 41563 7274184966557464 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 1f1c6a9dcca879c9 +10381 10976 7274180386564541 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 986919f3c719da13 +10693 10983 7274180387121523 bootloader-prefix/src/bootloader-stamp/bootloader-update d504d1b2cf924b7b +193507 193960 7274182216875033 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj 38d1a551299af785 +190710 191142 7274182188535973 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj 15abfbc2bb4c2ced +10693 10983 7274180387121523 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-update d504d1b2cf924b7b +10485 11161 7274180388831446 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.c.obj c034742e1d357782 +10617 11186 7274180389091473 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 8d520ba09b5edf14 +18920 19799 7274184749503300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj f9dd4910df39dac5 +10984 11348 7274180390521445 bootloader-prefix/src/bootloader-stamp/bootloader-patch 44d0a2adec74f7ca +189147 189702 7274182174269394 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj f98f6f47bdfcd42b +35191 36110 7274184912310735 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 223c5d53af1cce20 +10910 11389 7274180391231436 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 5b9378cd843fc4eb +10928 11416 7274180391371436 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 4d4da47b787038b8 +32307 32379 7274184875710798 bootloader-prefix/src/bootloader-stamp/bootloader-install a2642ed97d163d36 +10811 11440 7274180391611417 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 296ee65b9b627021 +48184 48790 7274185039492349 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj 895c5eb225f42079 +43836 44655 7274184997367274 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj c5618e9f9e2ee1ec +18361 19228 7274184743875806 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj a2d52d89355c0de0 +193394 193700 7274182214262196 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj a065862f175533ae +4294 5105 7274184601854762 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj df981f58647ba070 +10976 11508 7274180392297850 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 51eeef1c8f3ac5cf +40762 41750 7274184967367438 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj ac94dcde7c69ecaa +39728 40306 7274184954515639 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj d0d32d0ac84ac2a4 +11161 11568 7274180392727848 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj efc8905f5537fd18 +44500 45369 7274185005286183 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 41b885820a0476df +17491 18162 7274184733236617 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 74112e9aefa4967c +11390 11881 7274180396135324 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 13d6773d2360e422 +190482 190592 7274182182858068 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj 43ae41835c9f7b55 +11187 11923 7274180396415328 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj cc217a3e0cc736c6 +11441 11988 7274180397143303 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj daf8d984236552ed +16428 17320 7274180448885992 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.c.obj d31a445e352076ed +11417 12145 7274180398720267 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 1c820cec87070357 +38870 39523 7274184946417757 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj d167bcd279cc0781 +11508 12268 7274180399905418 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj f641e034b091a057 +11607 12342 7274180400465406 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 3c31e8c95e3c7059 +11087 11679 7274184668353613 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 29bae386bd630fb6 +11924 12484 7274180401964223 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/flash_ops_esp32s3.c.obj e029c100b5f8a2e3 +11881 12686 7274180404191585 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 4674c3bd05b5697b +12160 12765 7274180404685491 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 26eecba0720ae1ee +8774 9635 7274184647879764 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 4939af91db03ffc3 +191247 191814 7274182195132339 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 5367d9d7c026ea60 +191500 192058 7274182197772283 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 9f9faa3f836c1331 +12146 12827 7274180405083337 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 48c9ac7d29ae8acf +191955 192516 7274182202410007 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj bc49301d3211ed5 +12342 12917 7274180406433285 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj d89d86d41688cba3 +12381 13034 7274180407323271 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 2b4cd7e1b606fc92 +196096 196539 7274182242540875 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 408d59ff975cf306 +12485 13081 7274180407842054 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b2b9b88942d05c77 +45615 46209 7274185013358294 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 9277962bbcf9c342 +38560 39343 7274184945157777 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 47d13f0f59004146 +16870 17617 7274184727776091 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 5f63cd370a80bf4a +12828 13436 7274180411516902 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 70c5fd329058bc81 +21390 21968 7274184771150091 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 69e30f49f2353194 +12938 13463 7274180411536896 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 214ec8d04a49176c +4435 5246 7274184603884742 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj c3f816097c3ce30f +15913 16624 7274180442184855 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj a2d1128c5c15105b +12766 13517 7274180412116905 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 4d8b5a997f56e053 +13436 13844 7274180415708503 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 474b56e5f3766549 +33740 33882 7274184889997212 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj a0d207190d9bc13f +26243 26470 7274184816160864 esp-idf/esp_http_server/libesp_http_server.a 419792e405a61c33 +195438 195994 7274182237207757 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 622d86af3346c258 +12917 14072 7274180417098498 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 207cceb6aa5d79f3 +14683 15375 7274184705112410 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 96f7a635cd99d404 +16882 17341 7274180450273899 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj f418f1ec3554bf42 +12843 14095 7274180417808463 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj f70dbd8a60def3bb +13464 14148 7274180418007442 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 903a7e948ab1f9e6 +12109 12816 7274184679839312 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 2d00e8ca91801dfb +13518 14291 7274180419754412 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b88709471425fc +13844 14589 7274180422794369 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj d0eb1b1a5d2f5e57 +14291 14759 7274180424704325 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj 2f733b8df6b5ef09 +44 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +16803 17163 7274180448428393 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj cbe6acf26ae75781 +14072 14788 7274180424954314 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj b22cb581a285ce9f +17285 189140 7274180456946833 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 9b720e2744c0fbe6 +14163 14804 7274180424944329 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj d6b773d7e59b96b +13237 14835 7274180424424324 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 382f0142b83efb8e +14574 14916 7274180426496336 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 124403a10afc0b5e +7151 7844 7274184630112362 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj efa204765ddffca2 +14916 15005 7274180427306312 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj d4603f2bc4ab92f5 +10717 15249 7274180391171445 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj 34f83be75e1d7f63 +14561 15020 7274180427386320 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj 68802787fedf942c +14589 15163 7274180428526795 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj e09eeac27564bb3a +21724 22335 7274184775073586 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj 3f2c6dd14ee51f02 +14759 15304 7274180426126329 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj bbfbdb0e005543cf +17632 18351 7274184734926570 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj cc303ac5c1181fea +14836 15336 7274180430229486 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj fde6b37f46c9e465 +21094 22043 7274184771950081 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj 6d264fb173411b80 +14789 15351 7274180430479508 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj 1cba2efc0b527b6a +16976 17651 7274184728036075 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 4cda8e3412051afc +15337 15441 7274180431469483 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj aae1de6d59006737 +15020 15588 7274180432919449 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj c3206ce37aa63fee +15304 15614 7274180433009445 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 7e3ffa3cdfed9047 +62 1355 7274184561201059 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 8c7cf6306447160a +34802 35390 7274184905353967 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj bc057ecae7279a8 +189176 195451 7274182231727909 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj c28f8a9af0f1966d +15447 15649 7274180433689425 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 6ab40e152150f2d0 +30539 30625 7274184858182116 esp-idf/esp_wifi/libesp_wifi.a 9d9c3d48732763c0 +195951 196505 7274182241567551 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj ef27365d94787eb5 +4470 5169 7274184602864754 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj eaa86f9dc90b05c0 +37 147 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +15163 15755 7274180434784104 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj b3a5a4b433ada3fc +15389 15768 7274180434874088 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 6d2d3f8feeb29a39 +51407 51886 7274185070590446 esp-idf/wifi_provisioning/libwifi_provisioning.a 3eaff6837e945e69 +18463 19447 7274184745655778 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 80c15ee188ec945f +15442 15782 7274180434894089 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj d1de1e5359c63fcd +42564 43113 7274184982000141 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 78bcf1b833956093 +15372 15848 7274180435545139 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 28b8e3e5bb90f5f7 +2425 3105 7274184582564812 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj bfb75720b644c751 +51377 51885 7274185070450452 esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj dc394a7b27148469 +15351 15875 7274180435495873 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 1b0412dac82cb693 +14297 15055 7274184701545410 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj 118dd43ac7c5f00b +15588 15895 7274180436310271 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj 40af469025662d80 +15614 15913 7274180436260270 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj 8de51ae979343322 +15769 16201 7274180438100235 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 83c776fc5eb66ea7 +18633 19630 7274184747752099 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 42a0cc2cf91ac11e +193686 193931 7274182216645019 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj 1d7cf6ab6f6d24f3 +15782 16370 7274180439526334 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 29e386351c607ea0 +33 25363 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 8910c9612c29e0e0 +15848 16381 7274180440526309 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 44492f5aee42ae72 +15876 16428 7274180440446301 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj da9c9866aaf63977 +15895 16436 7274180441126314 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 59ebad9fe1735f88 +8838 9555 7274184646699686 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 718b787a4301096f +47426 47926 7274185030705138 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 40a6d95647961067 +16201 16577 7274180442686142 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj 9c9e7041d3dff616 +42768 43629 7274184987699575 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj 867aea750a8d8f66 +16382 16803 7274180444876090 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj 957ddb490ffd8078 +16266 16811 7274180444576102 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 29c07b3f6868055d +16371 16882 7274180444936094 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj d3fa6c417bede92 +16436 17105 7274180447728392 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj f3fa80bdb2051283 +45221 45793 7274185009376152 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 16292d7488eba6d7 +16812 17279 7274180449105998 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj d018d29e717f1cf3 +10146 15030 7274184698745174 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 6d2a6de61e4cdcbf +16601 17285 7274180449693881 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj 27cbd8db93689588 +16624 17347 7274180450083902 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.c.obj 6a66799c7bd55884 +16757 17360 7274180450173890 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 651746400f255663 +46211 48127 7274185032885043 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 1360e1d8ed3b6742 +17105 17561 7274180452671791 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj e79fc3ca82a7c0e6 +7368 7990 7274184631092855 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj dfcc9d12b71fa0da +17320 17742 7274180453951777 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj 568564d75b6c8d27 +12408 13110 7274184682330166 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj aeda13308605f77e +7362 8004 7274184631272838 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj f0a866de4cf15b33 +45534 45646 7274185008309336 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 7c010c62e4cbb495 +42978 43425 7274184985916165 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj 868d39c5f776f411 +195504 195921 7274182236407760 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj 525f20e037933185 +17163 17813 7274180454531761 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 9e002941d63841c0 +17361 17831 7274180455291724 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj b7f5ffa03e6b6cd6 +196505 197102 7274182248176522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj f64472747c821b21 +17328 17843 7274180454321760 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj a5dd3a465c971255 +42 157 7274184552668828 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj b8dcd06688e982e1 +17348 17860 7274180455391736 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj f9ef5c033bb5cd6e +17561 18008 7274180456756770 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 7b7c15489c49ecf1 +17341 189135 7274180456796776 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 41d88c28c943fe6d +17831 189147 7274180458993675 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj 7393a6aa5a973bb6 +11679 12259 7274184674148658 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 90c5907047373a8f +191404 191866 7274182195822328 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 699353ecdfb799be +44 242 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +17843 189152 7274180458913666 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj d24d6210d78b2aa9 +2494 3756 7274184589027996 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b862ddefc4069a95 +17876 189158 7274180459789955 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 9e5d68371d6960c4 +17743 189164 7274180458596727 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 6e2f1158813f40bb +17860 189176 7274180460741389 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj 84c652e00cf2ad0e +13125 14305 7274184690872306 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj d45b95e103dc159e +189141 189533 7274182172431873 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj dc28ed507ba4a150 +44757 45583 7274185006176177 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj 3d7b8eca7d120d50 +34645 35103 7274184902473404 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj afcc3daa8f1e358f +189159 189573 7274182172975113 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj daf0a8fb4f9be943 +190592 190833 7274182185639071 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj ec4e766c6f657389 +189153 189623 7274182173583549 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 8513f83a459f33ca +43971 44809 7274184999630614 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj f20fbd82d2ca7286 +189533 189832 7274182175404876 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_hal.c.obj 17856cd0470bc9ee +189916 190468 7274182181918083 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 9f3f0262ec087336 +189512 189862 7274182175844830 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj e88b3db17e43b751 +189573 189913 7274182176004833 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj cda2bdd66d479579 +189623 189974 7274182177023715 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 8cc6a7a5023b35a7 +189932 190319 7274182180288119 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 6e28e2d7fe5443a1 +189832 190343 7274182180438122 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 809748d1416ff7a3 +189974 190363 7274182180568133 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj cba3bdf9792ed81c +190165 190482 7274182181978086 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj fb0fea346fa4c817 +36940 43842 7274184927603839 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj 17f48d529e394aaf +190320 190557 7274182182928076 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj d9edd25fa428e9b8 +190724 191246 7274182189754855 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj e9855e9acaaa201c +190557 190662 7274182183892874 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj 1c1ff43e29f6c2c4 +33751 41877 7274184970123810 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj 3e8d226dde5ec940 +190468 190710 7274182184439085 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 185f7b63bdd18b0c +190636 190724 7274182184469084 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj 635c1884b532b20f +9636 10278 7274184654176090 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj cf3476e9d3531a59 +190496 190748 7274182184669081 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj 39954824ffb461cd +190662 190762 7274182184729113 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 3d47376804a91371 +190575 190815 7274182185399068 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj 172538f558dfc50c +9485 10145 7274184652886136 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 89787db1a08170b9 +191736 192144 7274182198717624 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj d6280ed229f6b975 +189170 190937 7274182186699041 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj c323c6fc1686c906 +190748 191114 7274182188145964 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 7f72305c23137819 +190763 191128 7274182188245960 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj 72dae9559d91f044 +2295 3848 7274184590130094 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 58055945bf8992eb +191075 191154 7274182188849363 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj 9a9f04da09ad262a +190833 191212 7274182189484836 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj f398bbdf62157258 +1053 10436 7274184655542202 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj df309e46d2e1386a +191213 191307 7274182190264826 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj 9a6c416eff2f259c +4973 5664 7274184608016878 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 359be3dc31ec0336 +191114 191403 7274182191334802 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj 5b4bfd95d4abfea6 +32211 32302 7274184874960800 esp-idf/esp_system/libesp_system.a 924e4f194045f1b +191142 191463 7274182191914789 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj 4c6ed40d49780183 +191128 191500 7274182192224784 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj db98f87eba207e01 +43409 45046 7274185001374366 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b241016758fbac5a +191463 191772 7274182195012343 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 887599393c99d663 +191480 191977 7274182196982308 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj da53d78a6aa15d22 +21654 22210 7274184773863612 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj ea1ce0cb687f36fb +77 961 7274184560611068 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 97d97519677f5797 +191978 192488 7274182201970011 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj ba03e04907488c88 +47776 48009 7274185031645053 esp-idf/cmock/libcmock.a 7bceca33a900dfe1 +43843 44538 7274184996267051 esp-idf/driver/libdriver.a 506300eef91ff0ae +192058 192596 7274182203279974 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 4b5e536e00167480 +20159 20892 7274184760646947 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 8a87c10ae42de829 +192144 192675 7274182203972716 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj e9fed1c5f1affc26 +43205 43868 7274184989653299 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 9324b745c1a8fafe +15697 16364 7274184715172178 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj a5bc2d07b05ae201 +192072 192729 7274182204444222 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 9177346f16104535 +7445 8120 7274184632702889 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 686c09af0f95932 +192474 193061 7274182207811570 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj 2bb28f8582390c4a +192975 193381 7274182210986559 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj 6a6ac445b6d9dd +193062 193394 7274182211096544 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj bb069b22832ab220 +6599 7361 7274184625038384 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj ccb6e834f172ce49 +192489 193415 7274182210976553 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 52abe6716b36cd34 +16216 16976 7274184721181977 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b754fc60f7e5a4f2 +194045 194691 7274182223923024 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj ec0fd6733326d7f3 +193079 193477 7274182211686553 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj f39c4b476373085 +47927 48173 7274185033125003 esp-idf/protobuf-c/libprotobuf-c.a 23695cd56b912cf1 +38654 39413 7274184945587769 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj 341056747e9f73a3 +193477 193686 7274182214062231 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 545fde36764d45c +193897 194159 7274182218546482 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj 8281acdd99443e9 +56 1364 7274184561731060 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 8b6d0cd563159a75 +46737 47345 7274185024998464 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj efedbb36e079ef51 +32693 32759 7274184879532344 esp-idf/esp_app_format/libesp_app_format.a f1e6d33a2b85b1f6 +193700 194241 7274182219373114 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 96f8c8f05d332985 +193882 194268 7274182219553118 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj def57593ef1f9c5f +193932 194444 7274182221683060 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj 242d9a19cb92e5e5 +193961 194484 7274182222023074 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 368d783ac3d9946b +194159 194621 7274182223303026 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj a8e68ca4d0ecee49 +6043 6820 7274184619581992 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 20fcad667362a45f +22929 23043 7274184781976195 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj 220a57e79f0e7e16 +194241 194809 7274182225320103 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj c64927a3ce0473f9 +194269 194841 7274182225370113 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 72382759634db014 +3105 3749 7274184589137995 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 78dbd4bc7ef42b4f +194485 194980 7274182227060078 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj eb668f79703e7949 +194843 195176 7274182229057228 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj caa13fd5a95b5e1c +35775 36306 7274184914750697 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 92a026fa9090c78 +194692 195358 7274182230607817 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj bb8ba009a063c7eb +194810 195292 7274182230097847 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 6a3c8efa0dbd03dd +41238 41615 7274184967627434 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj bf664518ed2eba74 +32615 32692 7274184878865341 esp-idf/bootloader_support/libbootloader_support.a 7cbf5fa260f6879d +23016 24436 7274184795566865 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 6b7ec73dcd88889b +195028 195372 7274182230887818 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj f03859bb67967076 +195114 195579 7274182232807783 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj c4af744f0d3b96bc +195177 195692 7274182233402614 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj 40904ef570114aa5 +48206 48654 7274185037736993 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 20efa8f733497c54 +44674 45613 7274185007549353 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 54fef97cbe4812a +195372 195825 7274182235487780 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj ea1d700b88914ccb +152 1599 7274184567671585 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 4b0ecd8d8326c766 +5246 6042 7274184611694150 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj f9d81a88632241d5 +36879 38870 7274184940143847 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj e30f1c9ce1edc91e +195693 196096 7274182237737743 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 45e71d09aa32196a +32019 32128 7274184873214246 esp-idf/hal/libhal.a 95058da04e4be84b +195718 196355 7274182240657571 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj aaa14cd59430f060 +195994 196485 7274182241887556 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 82f4acca37ff1fb6 +196356 196870 7274182245906566 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj a20eb8e0b17f5138 +35225 35699 7274184908603910 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 7694f948da9ffc19 +196539 197152 7274182248706980 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj db63d3fd1aa2e5 +37 151 7274184552568793 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 829d6ff45e895e4a +158 908 7274184558052469 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj aa7f19d6f3b0c138 +10437 11086 7274184662084752 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj f4d7f3c6066269be +37528 38204 7274184933687590 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 422ceb49889797c2 +50 1349 7274184561071057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 841840f721ce9a0f +38398 39018 7274184941813799 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 6a61bc53982abb1e +72 1377 7274184563980998 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj e026b74f83fb9c2 +9698 10501 7274184655702173 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj 1dc87b6f4afea759 +908 2294 7274184574635143 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj fa3a135a7b108cf6 +962 2424 7274184575867153 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj ad8de809dee372b3 +50196 50636 7274185057891074 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 20c7827a0719a2b1 +32379 32465 7274184876576537 CMakeFiles/bootloader-complete ee91580f96111860 +984 2494 7274184576187100 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj a7ff94c5d8eef77a +1358 2814 7274184579674859 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 6ea06bdcf12f6934 +3687 4278 7274184594236716 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj ae580264e67f562 +1600 2898 7274184580654843 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 30cfccf5de7f8ac8 +40144 40610 7274184957862206 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 46b46f0cf1f20347 +18162 18919 7274184740721628 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 2d8fe6afff0c215f +1380 2917 7274184580724854 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj aa0853256665185b +2632 3038 7274184581984830 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj e2cb42b8d183ece3 +6442 7157 7274184622615465 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj ea25312698db478 +2917 3682 7274184588469465 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 32aa46ce09704605 +2815 3687 7274184588509457 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj a0581dc77c39ba96 +3038 3772 7274184589368014 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj adfd52091f9ee3d2 +3682 4293 7274184594482635 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj 70fb9e2507247d3b +3407 4411 7274184595462923 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj 7b482d216ee4b7f0 +3749 4469 7274184595842915 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj c888c91a4070ff30 +4411 5095 7274184601854762 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj cedcbb3cef795a70 +5106 5780 7274184608957338 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 6c793ebfb616dfd +5147 5950 7274184610634054 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj ab613edf06691dcd +5099 6035 7274184610654046 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b36d7bce51bda4af +47433 47799 7274185029455063 esp-idf/app_trace/libapp_trace.a dfefaa53b071fcd4 +37975 38654 7274184937958160 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj 5fbd20f794fdd723 +19840 20644 7274184758102185 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 857b95b91bfa296d +5855 6566 7274184617177906 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 84cee7653536d225 +6036 6665 7274184618207129 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b744eeda2fb58db8 +5951 6730 7274184618804492 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj c1e1dc66dcda8c45 +42127 42977 7274184981091929 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj 857365656c03a974 +6665 7378 7274184625388378 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj e7cc667b3afc405f +40786 41237 7274184963675789 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj f9c9231fc608007e +6820 7439 7274184626098369 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 1c7282ca250f8fe9 +7379 8071 7274184632192835 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj d3ecb1113cd467b1 +7439 8147 7274184632932886 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 609184123453378a +38537 39215 7274184943643762 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj d5f76431791a1aa6 +32379 32465 7274184876576537 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader-complete ee91580f96111860 +12946 13632 7274184688052621 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj dd22df7125d6136 +7845 8582 7274184636914132 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b88d7c4f9b7ab3cc +58 1066 7274242991402708 esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj c5a62a6b37b4bb2b +8004 8674 7274184637464117 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj eac8a5eac42aee20 +8674 9524 7274184646259673 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj fc72812bd6724d3 +34522 35252 7274184903913385 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj 93f9954b44b3233 +7990 8695 7274184637544099 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 2344a06b651cf081 +32129 32211 7274184874044288 esp-idf/esp_rom/libesp_rom.a 577bee9af75d196a +8071 8779 7274184639132222 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 98adc9a30d7a95f4 +8120 8885 7274184639873658 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj f968137894195067 +8583 9308 7274184644199716 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 3ac2950c0a5b2fe7 +36221 36577 7274184917325202 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 7c31f25d33e8c959 +8886 9484 7274184646239678 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj af2f8a70cf18530 +20644 21390 7274184765406671 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b7d869049a3dfc8 +8779 9499 7274184646329671 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 78e218f9d98c5564 +9308 10080 7274184652436113 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 6362e47799de38e +8695 9538 7274184646459662 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 6c9f29c960d8df4d +49020 49614 7274185047635860 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj 69e2dbb8d5099241 +1364 9698 7274184648159658 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj f0ce4e0cf2b53d05 +9499 10104 7274184652656109 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 96fc83bcc969b260 +9525 10132 7274184652946107 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 549c273223fd04c4 +46147 46770 7274185019117548 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj 780523107502875d +9557 10406 7274184654986067 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 67432d2711eec057 +36454 37124 7274184922633698 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj a4bce6886cf691e7 +29216 30144 7274184853299352 esp-idf/esp_adc/libesp_adc.a fd4d3ba55185fae5 +10081 10793 7274184659178420 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 9c1a6cae2ce7bd9d +30625 30769 7274184859624209 esp-idf/wpa_supplicant/libwpa_supplicant.a d998178130d830e3 +12260 12946 7274184681210170 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj a10892d45dea8805 +46125 46800 7274185019597542 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 6067722916b12c4e +10132 10863 7274184660346823 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 7865024e8c69e1b5 +20776 21518 7274184766696644 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 76ee16328acbded5 +10279 11034 7274184661454739 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 143ee96dd3773179 +10410 11139 7274184662894723 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 4ba49096fca7214 +10793 11488 7274184666543645 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj 837bfafd5d432c59 +28084 29039 7274184842216543 esp-idf/esp_gdbstub/libesp_gdbstub.a 5d95aa737c7b6748 +11002 11593 7274184667483650 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b5ce6f7ea016753a +10863 11609 7274184667693617 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj fbe5561d569cfa2e +11139 11723 7274184668752570 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 44075b7a7507dc60 +11202 11806 7274184669840075 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj bd86ffc8ecfd83cf +32476 32542 7274184877362251 esp-idf/app_update/libapp_update.a 6016e142c12c14ff +11594 12274 7274184674079839 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj 607806d98561a1dc +11610 12361 7274184675088633 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj e5b26d8cffc9c34e +34535 34802 7274184899884615 esp-idf/mbedtls/libmbedtls.a e5de376afd4553bc +11707 12447 7274184676024270 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj c8d80ca741fd22ac +12361 13054 7274184682310165 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj 6e5de3b1f4114429 +12306 13077 7274184682170165 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 23004b13c59650f3 +12447 13124 7274184682670164 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 9b89af8f34eaedf4 +12274 13269 7274184684260137 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 9574b6c3356cbe58 +29039 29215 7274184843996511 esp-idf/esp_eth/libesp_eth.a ca8fd066a3c5a5aa +12817 13509 7274184686742584 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 4da176a672e1c0f5 +13078 13847 7274184689934668 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 164e6fc1daa4549a +21217 22554 7274184777072882 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 89f5d873dfa7c81 +13110 13859 7274184690114690 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj d126e49d42133bb0 +13270 13879 7274184690264689 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 39e8a3f999cca54a +13055 14297 7274184690711968 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj eb5c0eb585f8f89b +9540 14310 7274184691240142 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b3128439fe0324ac +13633 14679 7274184695600512 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj b9aa600573be055a +13848 15009 7274184698189428 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 6e5d23b92b1d856d +13509 15020 7274184698429401 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cf64236ed2f6ce0d +36539 37110 7274184922723706 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj 240e239710f86784 +14305 15038 7274184700982985 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b22c4f6009e99831 +14730 15555 7274184706632390 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 1faf12a882b08c6f +15014 15733 7274184708781289 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj e8e86ac5097e4b29 +15048 15928 7274184710938196 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 80322ccaf15e0dd +15376 16150 7274184713022217 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj ccddc917e42381ed +21671 22653 7274184777812860 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 73615ea7860cca41 +20758 21652 7274184767056665 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj fddbb596e043aa06 +17334 18111 7274184732376651 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj 7e90b7fdef7ca744 +15556 16216 7274184713732344 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj e03a06301025be2c +15778 16501 7274184716635962 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj e5a11afdc92d7cfa +33466 33701 7274184888902156 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/x509_crt_bundle.S d72f17ccd743c944 +15928 16521 7274184716875956 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 8982d6e83f757b64 +16364 17133 7274184722816175 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj 6acb6aac19bc02b9 +16411 17194 7274184723466158 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 95367e6944d70b95 +16502 17271 7274184723756159 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 3b07327fa8acd781 +16521 17331 7274184724016152 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj fbd2ac37d7874858 +32905 33043 7274184882352867 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 2e023fb570262e76 +15062 17454 7274184725806140 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 8be4c8db7a7d4367 +35104 35357 7274184905263990 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 29cfe1fcbc94967 +17617 18463 7274184735806714 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 3f95ea8bee759e4a +16754 17593 7274184727076095 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj b9348c85b31ac6d1 +17133 17830 7274184729871693 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj c21a350aeeb00d87 +17194 17981 7274184731171666 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 93587fae34988085 +17298 18101 7274184731761644 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 6c8b0cb386608aeb +17593 18383 7274184735436558 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 112f2cbed5104e6b +17652 18497 7274184736016697 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 78a57b45a422f23 +49615 51555 7274185054035451 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj 3f4dbdf5c0a85c40 +17831 18632 7274184737766673 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b5a39573a56781eb +18102 18973 7274184741181519 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 9fb6f3bef0076779 +31948 32019 7274184872124373 esp-idf/log/liblog.a 3bd70e5b2dc3caac +18115 19005 7274184741491522 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj df326977f422dbc3 +18888 19839 7274184749733290 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj c9ac0c82861b83d5 +33722 34516 7274184893937126 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 631cdc0b806ef63c +18973 19883 7274184750383271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj d16a03210d8e5e3e +43646 44531 7274184996607035 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj a2cc7a234a1ac9cc +39343 40143 7274184952855665 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 6d1803d100452192 +19229 19978 7274184751283303 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 8d1ec4399a51fb3a +19005 20244 7274184753984758 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj 6b1a8d374b104af0 +19630 20298 7274184754604908 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj aaf79ccb2311b01f +26470 26802 7274184819936388 esp-idf/esp_http_client/libesp_http_client.a 53d83aca8481a3 +19448 20379 7274184755344727 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 462f11d7090a9314 +19785 20738 7274184758947101 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 1a0bcf55b56a6869 +19979 20757 7274184759246970 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj e151cc58522fd6c4 +41872 42429 7274184975709363 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 3929831355403206 +20380 20776 7274184759376970 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 3b185d8d2b50a4cf +19883 20827 7274184759836966 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b9a2434df612894 +20244 21092 7274184761186938 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 1fa76931d4e79aaf +19799 21108 7274184762723155 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj d846cbfda0d35b3a +20299 21217 7274184763662135 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj e4cd154430289139 +1111 1187 7274242992818811 esp-idf/main/libmain.a 36360104a28466d2 +20892 21493 7274184766176673 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj e17f2c85103ac695 +44 242 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +20828 21585 7274184767186643 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 46b62b01aeb5f2d7 +43714 44915 7274185000684392 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 7fb1b7157ab59f0d +41383 41872 7274184969973837 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 4a28ae753430aee +21140 21724 7274184768276641 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj bc88293c8c66ba5 +21586 22123 7274184772680081 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 88acde97911c2b7d +22043 22192 7274184773413633 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj d4022c25546b9 +21493 22315 7274184774623591 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 5ed284f21bab98f8 +21518 22749 7274184779107398 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj a1dd38fe0a75c681 +41943 42768 7274184979081677 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj bc5eb6259a26f5d9 +22535 22929 7274184781126248 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj 4130f84dff512d62 +40350 40786 7274184959277201 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj afc9dd94b8ec9d31 +22124 23015 7274184781466374 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj a3c9f1a83508ca89 +22655 23058 7274184782226182 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj ccf7ac934995f5a0 +45964 46753 7274185019054032 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj cb980ddf2053c0d3 +22316 23103 7274184782186289 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 217c84454f0a0781 +22211 23159 7274184783144878 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 604aebfae00e6b5b +22554 23175 7274184783026167 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 2ef9ef489f66eab0 +43797 44756 7274184999310629 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj d28006c428175337 +22336 23254 7274184783564959 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj 16348be2e9d7c6f3 +35868 36539 7274184917045210 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj ee325d61974996d +23467 23976 7274184790966834 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj bf8fd62dda3c611b +23255 24199 7274184793321236 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj ca6b420073ab84f1 +23103 24423 7274184795586847 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj 16053daa98d9c596 +22973 24429 7274184795026841 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj 2cdae47bb95f9a2f +48029 48534 7274185037012475 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj 6ffdbafad61e30e5 +23043 24552 7274184796441067 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 2ba212c2cb5f9b00 +31050 31125 7274184863190420 esp-idf/esp_phy/libesp_phy.a 372efabb4f10618c +23058 24574 7274184796701063 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj a89b2e731d002fb +23160 24740 7274184798713375 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj db439d667d21b143 +23978 25057 7274184801543286 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj f709ff8db36282d5 +24579 25362 7274184805122167 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b5804bce1aa6353e +33 25363 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-configure 8910c9612c29e0e0 +24430 25426 7274184806012079 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj a77d4ca4cc8e5ff1 +24554 25511 7274184806398178 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj e139839d6407643b +24741 25852 7274184807278171 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 9b049ff288294cdb +34516 35522 7274184906923946 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj fa9f94a9077b543c +25442 26104 7274184812224836 esp-idf/ulp/libulp.a fca61bbf5508d283 +26105 26243 7274184814324518 esp-idf/esp_https_ota/libesp_https_ota.a e22a82c9477fc45 +26802 28084 7274184832760825 esp-idf/tcp_transport/libtcp_transport.a 1a62b8c07ff6c669 +47960 48214 7274185033891324 esp-idf/espcoredump/libespcoredump.a 514b7ef7b1c75e8a +30144 30455 7274184856473336 esp-idf/esp-tls/libesp-tls.a eaf5e92bca740da8 +30769 30844 7274184860364228 esp-idf/esp_netif/libesp_netif.a f45bc676db0038a1 +30975 31049 7274184862430438 esp-idf/vfs/libvfs.a 1571ab03863e750f +31125 31213 7274184864060418 esp-idf/nvs_flash/libnvs_flash.a 60af1768b09bb999 +31213 31284 7274184864779209 esp-idf/esp_event/libesp_event.a 71a81e321512aae1 +31284 31362 7274184865544999 esp-idf/esp_timer/libesp_timer.a fc5f7bdf4277ec59 +31362 31435 7274184866274996 esp-idf/esp_common/libesp_common.a ff05070a33c70fc0 +31435 31507 7274184867000101 esp-idf/cxx/libcxx.a ee6560d62dfeb4ff +31507 31593 7274184867867254 esp-idf/newlib/libnewlib.a cd9ff5474b4dbc6e +48809 49510 7274185046756561 esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj 9b65d18612d6a247 +31593 31688 7274184868808635 esp-idf/freertos/libfreertos.a d2157db2d5760c1c +31688 31780 7274184869744309 esp-idf/esp_hw_support/libesp_hw_support.a 6c2b8bac4fc273d9 +31864 31948 7274184871414293 esp-idf/heap/libheap.a de1b5e06477fa3bb +44 242 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +44 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40306 40761 7274184958562174 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 318337c57004da84 +44 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +36306 36835 7274184919864290 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj 24477ee2cbd8d19e +44 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +32307 32379 7274184875710798 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-install a2642ed97d163d36 +50180 51628 7274185067778307 esp-idf/spiffs/libspiffs.a 8d0002efb83e5442 +39413 39904 7274184950575725 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 17a9fe7c5737bd3e +32302 32387 7274184875800813 esp-idf/pthread/libpthread.a 2a9f6a54cf73332f +32379 32465 7274184876576537 bootloader-prefix/src/bootloader-stamp/bootloader-done ee91580f96111860 +32543 32615 7274184878088355 esp-idf/esp_partition/libesp_partition.a b2295cd7d546df71 +32838 32904 7274184880982266 esp-idf/mbedtls/mbedtls/library/libmbedx509.a e58e72f2a9a6dc9e +33044 33466 7274184886399528 esp-idf/mbedtls/x509_crt_bundle 175dfc557a816ddd +33044 33466 7274184886399528 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/x509_crt_bundle 175dfc557a816ddd +33717 34521 7274184894979520 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 45ad3d28a82bac25 +33713 34528 7274184896139502 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj aa7d80947f977802 +35357 35803 7274184909630809 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 65789ce0a30b02c6 +33706 34542 7274184896640643 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj bd188041d8525423 +33883 34548 7274184896870650 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 7a9a00440554e902 +34543 35170 7274184903443361 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj 2c8aa67eb6664100 +43187 43712 7274184988299560 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 316e3671f57b3d7c +34528 35190 7274184903543384 esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj 30a377e0a321fe0f +35170 35225 7274184904103362 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj a670a9b20874117c +34548 35238 7274184903933387 esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj baccfaecff160da6 +33727 35327 7274184904583358 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 9e588ec048cad7e8 +35327 35774 7274184908873852 esp-idf/esp_pm/libesp_pm.a 1921204d2aae1fde +40512 40999 7274184961688227 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj d442867c05b902fe +35238 35790 7274184909340801 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 1074d193531ddefa +35523 35935 7274184911110760 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj dea3e7295f36b0b2 +35391 36146 7274184912830736 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 4dbecb92ff8fe82d +35699 36220 7274184913750728 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj a4256d92636521b9 +49745 50495 7274185056669068 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 9953ab854e3b6d8c +36111 36878 7274184920454263 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj 28ede832e40ec53e +35936 36939 7274184920924274 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj 1ae38442b7d9fe80 +36564 37289 7274184924453705 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj 9ce053720350ae14 +36578 37306 7274184924523669 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b21e69193b4af0 +36830 37525 7274184926436464 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 4f2a722c27b4443c +37125 37702 7274184928739382 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj dd38527fbbf21d4a +36839 37734 7274184928629368 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 5c8948ac5d821c3b +47699 49412 7274185045306577 esp-idf/console/libconsole.a 9ebed0489894e0c2 +37289 37954 7274184931327620 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj 626aae3c66d603bc +37307 37975 7274184931367642 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj 87513f1a1f87dedf +37735 38423 7274184935914009 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj b4f8fdf99be40de7 +38204 38893 7274184940483841 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj 2764a53569bc1f8a +38893 39579 7274184947397758 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj 324464a0e3beda66 +43425 43971 7274184991013276 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 15236774b121f8c +39215 39867 7274184949609348 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 8703ecd892b627ba +39267 39882 7274184950295719 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 138823e72e2c1254 +39524 40011 7274184951815704 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj a08f5ef7964b80a7 +39882 40349 7274184955185619 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 97b2561fa2baa83 +1187 5463 7274243035295347 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +40012 40625 7274184957882199 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj a83aa3b6fe2f4e58 +40829 41186 7274184963358174 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj 46a41e0b97fe1d86 +40610 41376 7274184963398184 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 3342d603ce6cb295 +33701 41383 7274184896910643 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj 500f5095bf8d6d57 +40999 41512 7274184965181061 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj 52e4f8e45400265a +41540 42022 7274184971549431 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj bc2cd568e9971f3d +56635 56668 7274185118556104 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj d8c356e93774df57 +41564 42127 7274184972399407 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj 1dc4949e3a1a8311 +46770 47699 7274185028324264 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj e7412491578f8be0 +41616 42180 7274184973209399 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj 4bb34a7fdaf305dc +41750 42332 7274184974659381 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 2be9007652aebbce +41971 42561 7274184976842054 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 52e4331f3c83a293 +45825 46525 7274185016678986 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b586ad1f632100df +41878 42885 7274184980431934 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 7d0eaf1bce1fca38 +49562 50354 7274185054893199 esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj 2432bbd57fad5c47 +42333 42905 7274184980751953 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj c2cfdd76fcc08bdc +42429 43186 7274184983280125 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj 69468a29102d9791 +42994 43408 7274184985870089 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 27b43117c616cb97 +42920 43645 7274184987859572 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 30d8f288ba2c0aef +42886 43796 7274184989096085 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj 14d79ccf0f930481 +43156 43836 7274184989633306 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj 3c975caaf9af9b4a +43869 44499 7274184996127606 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 12919d979667f7c7 +43780 44674 7274184998157266 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 4e66072fd2d30f02 +44539 44952 7274185000974371 esp-idf/efuse/libefuse.a 1773d4b5081e1a18 +44656 45118 7274185002517918 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj 8305cf8fda4d518b +44392 45220 7274185003447901 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 8ea9049ad75370db +44532 45451 7274185006096168 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 520ad273f2be1e78 +44952 45430 7274185005626194 esp-idf/esp_ringbuf/libesp_ringbuf.a 7dddfb80d615cae6 +44809 45533 7274185006929372 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 3c70b29fc14395ca +45047 45823 7274185009456139 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 59de12ffb41d5ce8 +44916 45959 7274185009716147 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj a2f4687bf6c922b9 +45452 46089 7274185010426129 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj fbfac13c6fa22918 +45369 46145 7274185011056119 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b9f446487be7e961 +45584 46155 7274185012336091 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj 94e09b31f5d019cc +45647 46392 7274185015648232 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 1499ad7ec5523404 +45795 46446 7274185016078244 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 7dbb4653114635dc +45985 46737 7274185018734033 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b7a140622dee655d +64 868 7274242989377290 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +46392 47000 7274185021758807 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 24348f7db933864e +46525 47221 7274185023498420 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 5aa5e97906cef7f5 +46753 47376 7274185025158466 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 35ff953030f22a14 +46826 47426 7274185026018449 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj eb0796543773ae5c +45430 47433 7274185026028449 esp-idf/xtensa/libxtensa.a 526519223e39e47d +46800 47716 7274185028484257 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 1e8a7c433f2e71f7 +47226 47959 7274185030875071 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj fa47038f6f24f35c +47717 48016 7274185031805052 esp-idf/esp_hid/libesp_hid.a d82ce954087a9913 +47799 48029 7274185031925027 esp-idf/esp_lcd/libesp_lcd.a b038a99e1dda9579 +47376 48051 7274185032105025 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj f4b04ad9c5238f8a +48051 48151 7274185033245008 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj de5a9cc73019801f +47979 48206 7274185033494999 esp-idf/wear_levelling/libwear_levelling.a b1e8487831fa48ea +48016 48281 7274185034412527 esp-idf/json/libjson.a 8e2368fb5c51c59 +48009 48316 7274185034512520 esp-idf/sdmmc/libsdmmc.a 87e6b15372b296d9 +48151 48556 7274185037185398 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 564f821c02ebb1b1 +48281 48674 7274185038436918 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 41530d91b0a3cfc4 +47345 48932 7274185040752333 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj ece8ff2dd7d185f9 +48534 48942 7274185040762322 esp-idf/perfmon/libperfmon.a 8b07e51832ef6bdc +48557 49020 7274185041712329 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj e929a8d9604853c9 +37 147 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +48932 49213 7274185043772253 esp-idf/mqtt/libmqtt.a 79522292d356e9f9 +48942 49745 7274185049085229 esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj 5048280ed2e225b3 +49412 49813 7274185049405222 esp-idf/protocomm/libprotocomm.a 22f2283d07e651c7 +49214 50126 7274185052540884 esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj ca99e01628f85a4a +49814 50144 7274185053255444 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 6a35e10cb0db5906 +49510 50196 7274185053275464 esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj 308013d8a0d10079 +49716 50511 7274185056559061 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 4ba22e886e82e18e +50144 50578 7274185057561052 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj fb2fb723ba8fee59 +50127 50908 7274185060739160 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 84caefe700bca699 +49983 51149 7274185062719135 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj c8b6f3d69716fe3d +50496 51345 7274185065016455 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 9847eed4746b6f05 +77 636 7274242987045297 esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj 3b11471af71c3343 +50511 51407 7274185065426476 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj fc32a612d55b9245 +48317 51524 7274185066906422 esp-idf/fatfs/libfatfs.a 8764285345eb5059 +51555 51744 7274185069330472 esp-idf/usb/libusb.a 18b50dd9e60d5979 +51345 51882 7274185070450452 esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj a3c1a19f692730bf +70 1111 7274242991883059 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj 32fc54b5fc679171 +1187 5463 7274243035295347 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +56669 60416 7274185155835770 wifi_station.elf f833edf40632c635 +235 11592 0 CMakeFiles/flash b1b3c4865ecf6d4 +235 11592 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +2 10232 7274247617723279 build.ninja 251f1ac699b02a09 +42 226 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +42 226 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +42 226 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +42 226 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +42 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +42 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +42 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +42 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +46 577 7274247624742634 esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj 4ad3c2e36cea001c +578 659 7274247625709634 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +659 4940 7274247668253877 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +659 4940 7274247668253877 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +4941 8625 7274247705107917 wifi_station.elf f833edf40632c635 +8626 8965 7274247708733230 .bin_timestamp 4d843cf934eefe49 +8626 8965 7274247708733230 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +8965 9068 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +8965 9068 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 151 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 151 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 230 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 230 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 230 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 230 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +40 155 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 155 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 233 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 233 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 233 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 233 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +39 230 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +39 230 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +39 230 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +39 230 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +39 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +39 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +39 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +39 230 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +45 868 7274255980059484 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj 32fc54b5fc679171 +869 956 7274255981105599 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +956 5255 7274256023786790 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +956 5255 7274256023786790 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5255 8935 7274256060634350 wifi_station.elf f833edf40632c635 +8936 9272 7274256064260457 .bin_timestamp 4d843cf934eefe49 +8936 9272 7274256064260457 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9272 9375 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9272 9375 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9376 21155 0 CMakeFiles/flash b1b3c4865ecf6d4 +9376 21155 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +40 240 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 240 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +40 240 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +40 240 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +40 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +40 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +47 901 7274264204267641 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj 32fc54b5fc679171 +901 986 7274264205317596 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +986 5354 7274264248703392 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +986 5354 7274264248703392 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5354 9378 7274264288936878 wifi_station.elf f833edf40632c635 +9378 9763 7274264293077548 .bin_timestamp 4d843cf934eefe49 +9378 9763 7274264293077548 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9764 9886 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9764 9886 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 160 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 160 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 242 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +48 192 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +48 192 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +56 299 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +56 299 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +56 299 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +56 299 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +56 299 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +56 299 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +56 299 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +56 299 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +300 12126 0 CMakeFiles/flash b1b3c4865ecf6d4 +300 12126 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +41 153 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 153 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 234 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 234 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 234 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 234 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +38 150 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 150 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +44 224 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +44 224 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +44 224 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +44 224 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +44 224 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +44 224 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +44 224 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +44 224 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +224 12002 0 CMakeFiles/flash b1b3c4865ecf6d4 +224 12002 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +38 232 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +38 232 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +38 232 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +38 232 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +38 232 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +38 232 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +38 232 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +38 232 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +44 864 7274310562479805 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj 32fc54b5fc679171 +864 975 7274310563779802 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +975 5519 7274310608917146 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +975 5519 7274310608917146 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5519 9155 7274310645311112 wifi_station.elf f833edf40632c635 +9155 9495 7274310648968564 .bin_timestamp 4d843cf934eefe49 +9155 9495 7274310648968564 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9495 9599 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9495 9599 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 151 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 151 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +45 227 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 227 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +45 227 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +45 227 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +45 227 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 227 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +45 227 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +45 227 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +228 12021 0 CMakeFiles/flash b1b3c4865ecf6d4 +228 12021 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +39 145 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +39 145 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +45 223 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 223 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +45 223 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +45 223 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +45 223 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 223 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +45 223 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +45 223 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +224 12028 0 CMakeFiles/flash b1b3c4865ecf6d4 +224 12028 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +41 152 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 152 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 242 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +40 158 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 158 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 260 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 260 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 260 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 260 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 260 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 260 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 260 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 260 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +261 11890 0 CMakeFiles/flash b1b3c4865ecf6d4 +261 11890 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +38 155 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 155 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 233 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 233 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 233 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 233 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 233 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +233 11911 0 CMakeFiles/flash b1b3c4865ecf6d4 +233 11911 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +42 243 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +42 243 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +42 243 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +42 243 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +42 243 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +42 243 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +42 243 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +42 243 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +55 499 7274330240381076 esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj 3b11471af71c3343 +48 689 7274330242271405 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +689 777 7274330243341149 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +777 5146 7274330286728652 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +777 5146 7274330286728652 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5146 9070 7274330325997808 wifi_station.elf f833edf40632c635 +9071 9462 7274330330177794 .bin_timestamp 4d843cf934eefe49 +9071 9462 7274330330177794 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9462 9561 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9462 9561 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 155 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 155 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 246 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 246 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 246 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 246 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 246 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 246 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 246 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 246 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +40 157 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 157 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +48 245 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 245 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +48 245 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +48 245 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +48 245 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 245 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +48 245 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +48 245 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +246 11934 0 CMakeFiles/flash b1b3c4865ecf6d4 +246 11934 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +48 255 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 255 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +48 255 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +48 255 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +48 255 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 255 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +48 255 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +48 255 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +54 509 7274337006260687 esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj 3b11471af71c3343 +62 720 7274337008308338 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +720 799 7274337009313871 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +799 5140 7274337052418063 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +799 5140 7274337052418063 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5140 8848 7274337089544628 wifi_station.elf f833edf40632c635 +8849 9236 7274337093672173 .bin_timestamp 4d843cf934eefe49 +8849 9236 7274337093672173 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9236 9343 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9236 9343 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +39 164 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +39 164 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 242 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 242 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +242 11939 0 CMakeFiles/flash b1b3c4865ecf6d4 +242 11939 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +40 231 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 231 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +40 231 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +40 231 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +40 231 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 231 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40 231 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +40 231 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +46 648 7274341111887622 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +649 733 7274341112917359 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +733 5175 7274341157035004 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +733 5175 7274341157035004 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5175 9004 7274341195263557 wifi_station.elf f833edf40632c635 +9004 9422 7274341199777764 .bin_timestamp 4d843cf934eefe49 +9004 9422 7274341199777764 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9422 9536 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9422 9536 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 101 7274341268394002 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +102 192 7274341269399738 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +38 252 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +38 252 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +38 252 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +38 252 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +38 252 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +38 252 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +38 252 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +38 252 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +192 4541 7274341312633237 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +192 4541 7274341312633237 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +4541 8214 7274341349376390 wifi_station.elf f833edf40632c635 +8215 8572 7274341353193095 .bin_timestamp 4d843cf934eefe49 +8215 8572 7274341353193095 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +8572 8684 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +8572 8684 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 153 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +40 153 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 242 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 242 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 242 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +243 11922 0 CMakeFiles/flash b1b3c4865ecf6d4 +243 11922 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +40 226 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 226 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +40 226 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +40 226 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +40 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +40 226 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +46 660 7274345662224017 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +660 739 7274345663183936 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +739 5258 7274345708089798 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +739 5258 7274345708089798 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5258 9070 7274345746222251 wifi_station.elf f833edf40632c635 +9070 9402 7274345749805826 .bin_timestamp 4d843cf934eefe49 +9070 9402 7274345749805826 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9402 9509 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9402 9509 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 156 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +38 156 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 234 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 234 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 234 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 234 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 234 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +235 11913 0 CMakeFiles/flash b1b3c4865ecf6d4 +235 11913 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +40 236 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 236 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +40 236 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +40 236 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +40 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +40 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +46 679 7274349624410671 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +680 767 7274349625480646 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +768 5215 7274349669644231 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +768 5215 7274349669644231 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5216 9055 7274349708059426 wifi_station.elf f833edf40632c635 +9055 9405 7274349711836871 .bin_timestamp 4d843cf934eefe49 +9055 9405 7274349711836871 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9405 9513 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9405 9513 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +35 150 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +35 150 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +43 236 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 236 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +43 236 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +43 236 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +43 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +43 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +43 236 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +236 12076 0 CMakeFiles/flash b1b3c4865ecf6d4 +236 12076 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +41 159 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +41 159 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +47 248 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 248 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +47 248 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +47 248 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +47 248 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +47 248 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +47 248 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +47 248 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +39 154 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +39 154 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +46 244 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 244 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +46 244 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +46 244 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +46 244 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +46 244 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +46 244 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +46 244 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +245 12061 0 CMakeFiles/flash b1b3c4865ecf6d4 +245 12061 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +40 241 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 241 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +40 241 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +40 241 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +40 241 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +40 241 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +40 241 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +40 241 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +46 655 7274360308705545 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +655 738 7274360309695551 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +738 4928 7274360351309137 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +738 4928 7274360351309137 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +4929 8604 7274360388055375 wifi_station.elf f833edf40632c635 +8604 8950 7274360391807772 .bin_timestamp 4d843cf934eefe49 +8604 8950 7274360391807772 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +8950 9078 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +8950 9078 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +36 148 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +36 148 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +43 228 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 228 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +43 228 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +43 228 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +43 228 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 228 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +43 228 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +43 228 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +39 150 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +39 150 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +45 240 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 240 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +45 240 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +45 240 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +45 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +45 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +45 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +45 240 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +240 12022 0 CMakeFiles/flash b1b3c4865ecf6d4 +240 12022 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 +61 164 7274450900001415 esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj a3c1a19f692730bf +77 171 7274450900161442 esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj 4ad3c2e36cea001c +48 263 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 263 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +48 263 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +48 263 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +48 263 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +48 263 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +48 263 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +48 263 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +54 744 7274450905879140 esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj 5be39fc626c6e960 +68 944 7274450907931331 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj 32fc54b5fc679171 +944 1026 7274450908936921 esp-idf/main/libmain.a 9b7f7f06b9e47de6 +1027 5325 7274450951581792 esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +1027 5325 7274450951581792 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld 8ef5fe5e43b1ecab +5325 8998 7274450988382049 wifi_station.elf f833edf40632c635 +8998 9361 7274450992286043 .bin_timestamp 4d843cf934eefe49 +8998 9361 7274450992286043 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/.bin_timestamp 4d843cf934eefe49 +9361 9472 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +9361 9472 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +37 152 0 esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +37 152 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size 9dbb79d482eb3b62 +43 238 7274184805262065 bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 238 7274184805262065 bootloader/bootloader.elf da0a9155e44e1a56 +43 238 7274184805262065 bootloader/bootloader.bin da0a9155e44e1a56 +43 238 7274184805262065 bootloader/bootloader.map da0a9155e44e1a56 +43 238 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build da0a9155e44e1a56 +43 238 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf da0a9155e44e1a56 +43 238 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin da0a9155e44e1a56 +43 238 7274184805262065 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map da0a9155e44e1a56 +238 12020 0 CMakeFiles/flash b1b3c4865ecf6d4 +238 12020 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash b1b3c4865ecf6d4 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..e35bac9 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,581 @@ +# This is the CMakeCache file. +# For build in directory: e:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build +# It was generated by CMake: E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +CCACHE_ENABLE:UNINITIALIZED=1 + +//Path to a program. +CCACHE_FOUND:FILEPATH=E:/Espressif/tools/ccache/4.6.2/ccache-4.6.2-windows-x86_64/ccache.exe + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING='-mlongcalls ' + +//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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING='-mlongcalls ' + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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)/wifi_station + +//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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=E:/Espressif/tools/ninja/1.10.2/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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=wifi_station + +//Path to a program. +CMAKE_RANLIB:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-strip.exe + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=E:/Espressif/frameworks/esp-idf-v5.0.4/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=E:/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 + +//Compiler warnings treated as errors +MBEDTLS_FATAL_WARNINGS:BOOL=ON + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4 + +//Value Computed by CMake +mbed TLS_BINARY_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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=E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls + +//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; + +//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; + +//Value Computed by CMake +wifi_station_BINARY_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build + +//Value Computed by CMake +wifi_station_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +wifi_station_SOURCE_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL + + +######################## +# 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=e:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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=24 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/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=E:/Espressif/tools/cmake/3.24.0/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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL +//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=83 +//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=E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24 +//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_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=[E:/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=[E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_TIME_T_SIZE:INTERNAL=TRUE +//CHECK_TYPE_SIZE: sizeof(time_t) +TIME_T_SIZE:INTERNAL=8 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/wifi_station +_Python3_EXECUTABLE:INTERNAL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;;;E:\Espressif\tools\idf-python\3.11.2\Lib;E:\Espressif\tools\idf-python\3.11.2\Lib;E:\Espressif\python_env\idf5.0_py3.11_env\Lib\site-packages;E:\Espressif\python_env\idf5.0_py3.11_env\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=3105508567ec1580aa160b743282ba6d + diff --git a/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake b/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..6462a27 --- /dev/null +++ b/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake b/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..b664c72 --- /dev/null +++ b/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.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_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 "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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) + +# 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 "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..b3d12b1 --- /dev/null +++ b/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.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_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") +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_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang 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) + +# 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 "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..a069b07 Binary files /dev/null and b/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6cdd464 Binary files /dev/null and b/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.24.0/CMakeSystem.cmake b/build/CMakeFiles/3.24.0/CMakeSystem.cmake new file mode 100644 index 0000000..cdefa3d --- /dev/null +++ b/build/CMakeFiles/3.24.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("E:/Espressif/frameworks/esp-idf-v5.0.4/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.24.0/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..2b43aa6 --- /dev/null +++ b/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,838 @@ +#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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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.24.0/CompilerIdC/a.out b/build/CMakeFiles/3.24.0/CompilerIdC/a.out new file mode 100644 index 0000000..e3f88a1 Binary files /dev/null and b/build/CMakeFiles/3.24.0/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..486becd --- /dev/null +++ b/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,826 @@ +/* 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(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif 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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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]; +#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.24.0/CompilerIdCXX/a.out b/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out new file mode 100644 index 0000000..2d6ec25 Binary files /dev/null and b/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..81459fb --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,435 @@ +The target system is: Generic - - +The host system is: Windows - 10.0.19045 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/3.24.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32s3-elf-gcc.exe (crosstool-NG esp-2022r1) 11.2.0 +Copyright (C) 2021 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. + +Detecting C compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_df6b3 && [1/2] Building C object CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_df6b3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccn76ycJ.s +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: ff36b1befec994eff95a400488369c0d +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccn76ycJ.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.' +[2/2] Linking C executable cmTC_df6b3 +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_df6b3' '-dumpdir' 'cmTC_df6b3.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccXZOmdM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_df6b3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_df6b3' '-dumpdir' 'cmTC_df6b3.' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_df6b3 && [1/2] Building C object CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_df6b3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccn76ycJ.s] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: ff36b1befec994eff95a400488369c0d] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccn76ycJ.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] Linking C executable cmTC_df6b3] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_df6b3' '-dumpdir' 'cmTC_df6b3.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccXZOmdM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_df6b3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_df6b3.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccXZOmdM.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 [-o] ==> ignore + arg [cmTC_df6b3] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_df6b3.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_4e1e9 && [1/2] Building CXX object CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4e1e9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccbLhQ14.s +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0 + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5 +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccbLhQ14.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.' +[2/2] Linking CXX executable cmTC_4e1e9 +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_4e1e9' '-dumpdir' 'cmTC_4e1e9.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc116Ykd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_4e1e9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_4e1e9' '-dumpdir' 'cmTC_4e1e9.' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_4e1e9 && [1/2] Building CXX object CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_4e1e9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccbLhQ14.s] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccbLhQ14.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] Linking CXX executable cmTC_4e1e9] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_4e1e9' '-dumpdir' 'cmTC_4e1e9.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc116Ykd.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_4e1e9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_4e1e9.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc116Ykd.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 [-o] ==> ignore + arg [cmTC_4e1e9] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_4e1e9.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +Determining if the include file sys/types.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_6f575 && [1/2] Building C object CMakeFiles/cmTC_6f575.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_6f575 + + + +Determining if the include file stdint.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_259fa && [1/2] Building C object CMakeFiles/cmTC_259fa.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_259fa + + + +Determining if the include file stddef.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_19ff6 && [1/2] Building C object CMakeFiles/cmTC_19ff6.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_19ff6 + + + +Determining size of time_t passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_3805b && [1/2] Building C object CMakeFiles/cmTC_3805b.dir/TIME_T_SIZE.c.obj +[2/2] Linking C executable cmTC_3805b + + + +Performing C SOURCE FILE Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS succeeded with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_bcea8 && [1/2] Building C object CMakeFiles/cmTC_bcea8.dir/src.c.obj +[2/2] Linking C executable cmTC_bcea8 + + +Source file was: +int main(void) { return 0; } diff --git a/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin b/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin new file mode 100644 index 0000000..e24662a Binary files /dev/null and b/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin differ diff --git a/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c b/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c new file mode 100644 index 0000000..4ce0740 --- /dev/null +++ b/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c @@ -0,0 +1,50 @@ +#include +#include +#include + + +#undef KEY +#if defined(__i386) +# define KEY '_','_','i','3','8','6' +#elif defined(__x86_64) +# define KEY '_','_','x','8','6','_','6','4' +#elif defined(__PPC64__) +# define KEY '_','_','P','P','C','6','4','_','_' +#elif defined(__ppc64__) +# define KEY '_','_','p','p','c','6','4','_','_' +#elif defined(__PPC__) +# define KEY '_','_','P','P','C','_','_' +#elif defined(__ppc__) +# define KEY '_','_','p','p','c','_','_' +#elif defined(__aarch64__) +# define KEY '_','_','a','a','r','c','h','6','4','_','_' +#elif defined(__ARM_ARCH_7A__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' +#elif defined(__ARM_ARCH_7S__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' +#endif + +#define SIZE (sizeof(time_t)) +static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', + ('0' + ((SIZE / 10000)%10)), + ('0' + ((SIZE / 1000)%10)), + ('0' + ((SIZE / 100)%10)), + ('0' + ((SIZE / 10)%10)), + ('0' + (SIZE % 10)), + ']', +#ifdef KEY + ' ','k','e','y','[', KEY, ']', +#endif + '\0'}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_size[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..86d22cf --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,607 @@ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/menuconfig.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/confserver.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/save-defconfig.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/gen_project_binary.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/app.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/erase_flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/monitor.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/encrypted-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/_project_elf_src.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/wifi_station.elf.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/size.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/size-files.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/size-components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/dfu.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/dfu-list.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/dfu-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/uf2-app.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/uf2.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/memory_ld.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/__idf_log.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/__idf_console.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/__idf_json.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/__idf_usb.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/__idf_main.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/list_install_components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/install.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/install/local.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/bootloader-complete b/build/CMakeFiles/bootloader-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/CMakeFiles/bootloader.dir/Labels.json b/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..863208f --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..426a4a7 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader-complete.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..8122e97 --- /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" + "flash_app_args" + "flash_bootloader_args" + "flash_project_args" + "flasher_args.json" + "ldgen_libraries" + "ldgen_libraries.in" + "project_elf_src_esp32s3.c" + "wifi_station.bin" + "wifi_station.map" + "x509_crt_bundle.S" + ) +endif() diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/git-data/HEAD b/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..663be2f --- /dev/null +++ b/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +8fbf4ba6058bcf736317d8a7aa75d0578563c38b diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..1082a10 --- /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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "E:/Espressif/frameworks/esp-idf-v5.0.4/.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}" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..663be2f --- /dev/null +++ b/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +8fbf4ba6058bcf736317d8a7aa75d0578563c38b diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..c32cf09 --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,1392 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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: wifi_station +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__wifi_station.2eelf_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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__wifi_station.2eelf_ + command = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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__mbedcrypto_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_nvs_flash_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_wifi_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ulp_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ulp_ + command = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = E:\Espressif\tools\ninja\1.10.2\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = E:\Espressif\tools\ninja\1.10.2\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj b/build/CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj new file mode 100644 index 0000000..ae4b0b5 Binary files /dev/null and b/build/CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj differ diff --git a/build/app-flash_args b/build/app-flash_args new file mode 100644 index 0000000..f83ac13 --- /dev/null +++ b/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 wifi_station.bin diff --git a/build/bootloader-flash_args b/build/bootloader-flash_args new file mode 100644 index 0000000..7b1a5bd --- /dev/null +++ b/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +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-install b/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 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-source_dirinfo.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt new file mode 100644 index 0000000..958bef5 --- /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=E:/Espressif/frameworks/esp-idf-v5.0.4/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/tmp/bootloader-cfgcmd.txt b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..53b8812 --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe;-DSDKCONFIG=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig;-DIDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader;-DPROJECT_SOURCE_DIR=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL;-GNinja;' diff --git a/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake new file mode 100644 index 0000000..3755cf3 --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake @@ -0,0 +1,22 @@ +# 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) + +file(MAKE_DIRECTORY + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/tmp" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src" + "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..6284c3f --- /dev/null +++ b/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +f088dbd96a382dfcb4889c0175e9969f E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin diff --git a/build/bootloader/.ninja_deps b/build/bootloader/.ninja_deps new file mode 100644 index 0000000..173dc8b 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..253f65c --- /dev/null +++ b/build/bootloader/.ninja_log @@ -0,0 +1,187 @@ +# ninja log v5 +14 250 7274184808600509 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 4bbfa293a8f712e3 +50 423 7274184808843104 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj bdc0ecd34c9e937b +5 431 7274184808853102 project_elf_src_esp32s3.c 94b8d3b101b93f76 +5 431 7274184808853102 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/project_elf_src_esp32s3.c 94b8d3b101b93f76 +44 437 7274184809184904 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj 9d53b45e4673fc0f +35 447 7274184809234884 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj c7cfb75760631089 +58 457 7274184809244888 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 6dcc77e10aec15f4 +18 463 7274184809284947 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 2a14cd51448499a1 +54 470 7274184809474894 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj 3af04338f1e54c4d +39 476 7274184809404894 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 3a80ac06c816b9ff +22 482 7274184809724885 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 6de756adb1fa35c9 +432 918 7274184812634840 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj 90eff0cacfee9e6c +448 924 7274184812684850 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj e2361b8c5a479e5b +483 931 7274184813004819 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 1d7aa37cf5e71c12 +438 939 7274184812984807 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj 1eef1a92f8558f6 +477 946 7274184813564812 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 93c595835afb8f22 +471 952 7274184813604804 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj c625b6e6e086d5fd +425 958 7274184813644822 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj ae9dc4d80fbfb6c2 +458 965 7274184813814821 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj 7cf9a9227b6c0977 +465 997 7274184815604460 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj b6ef87d3ffea92e9 +419 1098 7274184816281793 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj e582d0dc3d8162c0 +940 1196 7274184818209066 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj 14cf78528aba190d +925 1467 7274184818179061 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj 7a695f47a7359eea +932 1474 7274184818539063 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj 2021354880735901 +947 1491 7274184818429071 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj 6c2f5c1ff5c5140a +966 1499 7274184818903906 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj d3891ac727b1f88c +953 1516 7274184819103878 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj 1aa12a10c13b2ea4 +999 1522 7274184820326380 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj 99c64fa82e742c25 +958 1535 7274184820686368 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj ead00238e2792c79 +1099 1543 7274184820881757 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj d38325c8e001d8b3 +1469 1763 7274184823857359 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b44402732202e3b0 +1492 1834 7274184824296051 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 897bf9cdbe2e9efb +1500 1855 7274184824436025 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 96db960c74a6bf99 +1475 2108 7274184824666022 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj 512dce0a5bfeca68 +1517 2114 7274184824936023 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 8b422fc86f865d2a +1523 2120 7274184826305999 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 4653e0a337413467 +1765 2127 7274184826616001 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 303ad86fc8138ad8 +1536 2133 7274184826935982 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b0fc7cbbbe64f52d +919 2139 7274184827005985 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj b0e8157ea9e33ae7 +1835 2145 7274184827277401 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 8180bbe4365c2ed0 +2109 2724 7274184830369910 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 812b9e4c081aed0 +2134 2730 7274184830649897 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj c48101fab499155f +2147 2738 7274184830939906 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 820e5adb1ab5ae8b +2122 2744 7274184831149899 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj 6dc2637a31c1c3bc +1197 2753 7274184831340780 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj cc4e404ca59da81 +2140 2760 7274184832520743 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj f5fa427d40017398 +1544 2767 7274184833150742 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 9791649db59afd51 +2128 2774 7274184833590734 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 3bb2d82e3fb2d011 +1856 3055 7274184833620741 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 2a7d07cef5ef0c42 +2115 3062 7274184833640755 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 4c53b60b37ee51b +2746 3068 7274184836313999 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj e4814500ecf305a7 +2755 3074 7274184836404000 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj d25de40fefefbc95 +2769 3081 7274184836631544 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj fec72cedc2d71d1a +2725 3098 7274184836234001 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj d0d2144876817fca +2732 3152 7274184837594189 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj de44c7932da7de1c +2762 3212 7274184837564166 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 53c50d34c5172f64 +2739 3268 7274184838694149 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj cbbeb15ab70ca89d +2776 3645 7274184839130648 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 7b1e4d7dd412d1e1 +3100 3655 7274184840860744 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj c7d6db1274bf45bf +3063 3661 7274184841120618 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj e766e8940a79fd36 +3070 3828 7274184841386566 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 98dd70de4fa64fdf +3154 3834 7274184841646585 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj 39c6803aaa4be6c8 +3076 3844 7274184841636613 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj db1a7d7187aef2c4 +3082 3849 7274184842046560 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 8a4a89f12fad52b2 +3270 4042 7274184842126591 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 2e6a0a6d1413d3b9 +3057 4048 7274184842326643 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 326e486477a9562 +3656 4054 7274184845380118 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj f4b5d2af65f0c03b +3213 4060 7274184844380128 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj be3325e3c6a33746 +3845 4188 7274184847928544 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj c9da3d757c96bf45 +3829 4201 7274184847998559 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj aa34b7a2cbff774 +3662 4228 7274184848458538 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj bef989084de1a0f8 +4043 4283 7274184848746070 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj 63664c958568ef73 +4061 4389 7274184850109454 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj 8a8a3a7509bd9a13 +4049 4455 7274184850629417 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj c390b5ee9fbafdbb +3850 4462 7274184850719424 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj e4d3a804e3598ef8 +4055 4672 7274184851109416 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj 9b11e52a565c77ba +4189 4680 7274184851329422 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 3899d1e9dce91dfa +4202 4686 7274184851629394 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 4094c875157deaa3 +4230 4692 7274184851709390 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 2712689973188f38 +4284 4701 7274184852029391 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 95b6c2ff0c451579 +4390 4712 7274184852269383 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj 71c50393ed6e6752 +4456 4719 7274184852289375 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 1707757c39723a19 +3835 4725 7274184853059356 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 77e946e6e8bfaa87 +4463 4757 7274184853139355 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 409aa000bd086ab6 +3647 4779 7274184853429359 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj eb58ab3668dda99f +4681 5072 7274184854613902 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj dd1cd5a981cf59f5 +4687 5073 7274184855153868 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj 98f5f5e9c60a3e40 +4674 5075 7274184855683876 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 79c545c6a8118dc9 +4702 5087 7274184855963858 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj f40f13e0983cdaf4 +4726 5089 7274184856013906 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 4190d93ffdc00d5 +4759 5091 7274184856193851 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj f9985f84587c7981 +4693 5092 7274184856513520 esp-idf/log/liblog.a 2f2058af0a77da2d +4720 5093 7274184856935188 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 81492bc4fa7a64c4 +4714 5095 7274184856955188 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 3734d5b5b1eceb82 +4780 5102 7274184857225177 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 4cc5b2b4d4185879 +5097 5181 7274184858112120 esp-idf/esp_rom/libesp_rom.a 577bee9af75d196a +5182 5252 7274184858828174 esp-idf/esp_common/libesp_common.a ff05070a33c70fc0 +5253 5321 7274184859524190 esp-idf/esp_hw_support/libesp_hw_support.a 8c5d8098a908b456 +5322 5389 7274184860194191 esp-idf/esp_system/libesp_system.a 86869633c5e19100 +5390 5466 7274184860964174 esp-idf/efuse/libefuse.a 1773d4b5081e1a18 +5467 5550 7274184861800444 esp-idf/bootloader_support/libbootloader_support.a 2a478a19f530f3aa +5551 5619 7274184862490445 esp-idf/esp_app_format/libesp_app_format.a f1e6d33a2b85b1f6 +5620 5695 7274184863250404 esp-idf/hal/libhal.a 8285e133d0662ad3 +5695 5770 7274184864000394 esp-idf/micro-ecc/libmicro-ecc.a a597cac6461d795c +5771 5854 7274184864849214 esp-idf/soc/libsoc.a 852b8feb25cf24bc +5855 5925 7274184865544999 esp-idf/xtensa/libxtensa.a fb38672463586c35 +5933 6006 7274184866375002 esp-idf/main/libmain.a b45eaeb0bb1b6818 +6007 6368 7274184869824315 bootloader.elf 6ad813d46af211d +6368 6732 7274184873604245 .bin_timestamp e732c63cdda430d0 +6368 6732 7274184873604245 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/.bin_timestamp e732c63cdda430d0 +6733 6856 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6733 6856 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +14 157 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +14 157 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +9 120 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +9 120 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 110 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 110 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 114 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 114 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 111 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 116 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 116 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 116 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 116 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 124 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 124 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 113 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 113 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 105 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 105 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 113 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 113 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 108 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 108 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 103 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 103 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 115 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 115 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +11 136 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +11 136 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 109 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 109 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +10 115 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +10 115 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 118 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 118 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 115 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 115 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +12 117 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +12 117 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 114 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 114 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 108 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 108 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 129 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 129 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 120 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 120 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 108 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 108 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 110 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 110 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 112 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 112 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 114 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 114 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 118 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +6 118 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 118 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 118 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 118 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 118 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 110 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 110 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 114 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +8 114 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +11 127 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +11 127 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 118 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc +7 118 0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 4b94cfd6ff3dd0cc diff --git a/build/bootloader/CMakeCache.txt b/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..45ab3b4 --- /dev/null +++ b/build/bootloader/CMakeCache.txt @@ -0,0 +1,446 @@ +# This is the CMakeCache file. +# For build in directory: e:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader +# It was generated by CMake: E:/Espressif/tools/cmake/3.24.0/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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING='-mlongcalls ' + +//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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING='-mlongcalls ' + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=E:/Espressif/tools/ninja/1.10.2/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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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=E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-strip.exe + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=E:/Espressif/frameworks/esp-idf-v5.0.4/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=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=E:/Espressif/tools/idf-git/2.39.2/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=E:/Espressif/frameworks/esp-idf-v5.0.4 + +//IDF Build Target +IDF_TARGET:STRING=esp32s3 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//No help, variable specified on the command line. +PROJECT_SOURCE_DIR:UNINITIALIZED=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=E:/Espressif/python_env/idf5.0_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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=E:/Espressif/frameworks/esp-idf-v5.0.4 + + +######################## +# 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=e:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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=24 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=E:/Espressif/tools/cmake/3.24.0/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=E:/Espressif/tools/cmake/3.24.0/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=E:/Espressif/frameworks/esp-idf-v5.0.4/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=23 +//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=E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24 +//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_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[E:/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 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_TIME_T_SIZE:INTERNAL=TRUE +//CHECK_TYPE_SIZE: sizeof(time_t) +TIME_T_SIZE:INTERNAL=8 + diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake b/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..6462a27 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake b/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..b664c72 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.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_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 "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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) + +# 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 "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake b/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..b3d12b1 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.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_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") +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_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_MT "") +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) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang 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) + +# 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 "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin b/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..a069b07 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin b/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6cdd464 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake b/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake new file mode 100644 index 0000000..cdefa3d --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("E:/Espressif/frameworks/esp-idf-v5.0.4/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.24.0/CompilerIdC/CMakeCCompilerId.c b/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..2b43aa6 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,838 @@ +#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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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.24.0/CompilerIdC/a.out b/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out new file mode 100644 index 0000000..e3f88a1 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out differ diff --git a/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..486becd --- /dev/null +++ b/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,826 @@ +/* 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(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif 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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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]; +#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.24.0/CompilerIdCXX/a.out b/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out new file mode 100644 index 0000000..2d6ec25 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out differ diff --git a/build/bootloader/CMakeFiles/CMakeOutput.log b/build/bootloader/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..1c6b75e --- /dev/null +++ b/build/bootloader/CMakeFiles/CMakeOutput.log @@ -0,0 +1,820 @@ +The target system is: Generic - - +The host system is: Windows - 10.0.19045 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32s3-elf-gcc.exe (crosstool-NG esp-2022r1) 11.2.0 +Copyright (C) 2021 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. + +Detecting C compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_d72e7 && [1/2] Building C object CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_d72e7.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccdlo7XN.s +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: ff36b1befec994eff95a400488369c0d +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccdlo7XN.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.' +[2/2] Linking C executable cmTC_d72e7 +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_d72e7' '-dumpdir' 'cmTC_d72e7.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccnY66xY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_d72e7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_d72e7' '-dumpdir' 'cmTC_d72e7.' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_d72e7 && [1/2] Building C object CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_d72e7.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccdlo7XN.s] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: ff36b1befec994eff95a400488369c0d] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccdlo7XN.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] Linking C executable cmTC_d72e7] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_d72e7' '-dumpdir' 'cmTC_d72e7.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccnY66xY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_d72e7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_d72e7.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccnY66xY.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 [-o] ==> ignore + arg [cmTC_d72e7] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_d72e7.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_6df6d && [1/2] Building CXX object CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_6df6d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\cc2a1wco.s +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0 + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5 +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\cc2a1wco.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.' +[2/2] Linking CXX executable cmTC_6df6d +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_6df6d' '-dumpdir' 'cmTC_6df6d.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc0nZT9y.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_6df6d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_6df6d' '-dumpdir' 'cmTC_6df6d.' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_6df6d && [1/2] Building CXX object CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_6df6d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\cc2a1wco.s] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\cc2a1wco.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] Linking CXX executable cmTC_6df6d] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_6df6d' '-dumpdir' 'cmTC_6df6d.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc0nZT9y.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_6df6d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_6df6d.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cc0nZT9y.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 [-o] ==> ignore + arg [cmTC_6df6d] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_6df6d.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +The target system is: Generic - - +The host system is: Windows - 10.0.19045 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe +Build flags: -mlongcalls; +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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32s3-elf-gcc.exe (crosstool-NG esp-2022r1) 11.2.0 +Copyright (C) 2021 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. + +Detecting C compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_fed43 && [1/2] Building C object CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_fed43.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccfOypfd.s +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: ff36b1befec994eff95a400488369c0d +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccfOypfd.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.' +[2/2] Linking C executable cmTC_fed43 +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_fed43' '-dumpdir' 'cmTC_fed43.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cckm3tQp.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_fed43 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_fed43' '-dumpdir' 'cmTC_fed43.' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_fed43 && [1/2] Building C object CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_fed43.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccfOypfd.s] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: ff36b1befec994eff95a400488369c0d] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccfOypfd.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] Linking C executable cmTC_fed43] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_fed43' '-dumpdir' 'cmTC_fed43.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cckm3tQp.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_fed43 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_fed43.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\cckm3tQp.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 [-o] ==> ignore + arg [cmTC_fed43] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_fed43.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_46422 && [1/2] Building CXX object CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_46422.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccYqqiTY.s +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include" +ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include" +#include "..." search starts here: +#include <...> search starts here: + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0 + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include + e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include +End of search list. +GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5 +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccYqqiTY.s +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.' +[2/2] Linking CXX executable cmTC_46422 +Using built-in specs. +COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe +COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe +Target: xtensa-esp32s3-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld +Thread model: posix +Supported LTO compression algorithms: zlib +gcc version 11.2.0 (crosstool-NG esp-2022r1) +COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ +LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/;e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_46422' '-dumpdir' 'cmTC_46422.' + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccECLYKf.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_46422 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_46422' '-dumpdir' 'cmTC_46422.' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + add: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + end of search list found + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include] + collapse include dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + implicit include dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include/c++/11.2.0/backward;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/sys-include;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32s3-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_46422 && [1/2] Building CXX object CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/cc1plus.exe -quiet -v -iprefix e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/ E:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_46422.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -version -o C:\Users\ADMINI~1\AppData\Local\Temp\ccYqqiTY.s] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include"] + ignore line: [ignoring duplicate directory "e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/../../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/xtensa-esp32s3-elf] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include/c++/11.2.0/backward] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/include-fixed] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/sys-include] + ignore line: [ e:\espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (crosstool-NG esp-2022r1) version 11.2.0 (xtensa-esp32s3-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 5c7bf38ffcf59e8dfe4546311e650df5] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/'] + ignore line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\ADMINI~1\AppData\Local\Temp\ccYqqiTY.s] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] Linking CXX executable cmTC_46422] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp32s3-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32s3-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32s3-elf/xtensa-esp32s3-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2022r1' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32s3-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (crosstool-NG esp-2022r1) ] + ignore line: [COMPILER_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/] + ignore line: [LIBRARY_PATH=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/] + ignore line: [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-v' '-o' 'cmTC_46422' '-dumpdir' 'cmTC_46422.'] + link line: [ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe -plugin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll -plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccECLYKf.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_46422 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0 -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc -Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib CMakeFiles/cmTC_46422.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../libexec/gcc/xtensa-esp32s3-elf/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\ADMINI~1\AppData\Local\Temp\ccECLYKf.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 [-o] ==> ignore + arg [cmTC_46422] ==> ignore + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] + arg [-Le:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] + arg [CMakeFiles/cmTC_46422.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] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + arg [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/crt0.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o] + collapse obj [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc] + collapse library dir [e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib] ==> [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib/crt0.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crti.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtbegin.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtend.o;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0/crtn.o] + implicit dirs: [E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc/xtensa-esp32s3-elf/11.2.0;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/lib/gcc;E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/xtensa-esp32s3-elf/lib] + implicit fwks: [] + + +Determining if the include file sys/types.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_9b3e1 && [1/2] Building C object CMakeFiles/cmTC_9b3e1.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_9b3e1 + + + +Determining if the include file stdint.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_32e87 && [1/2] Building C object CMakeFiles/cmTC_32e87.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_32e87 + + + +Determining if the include file stddef.h exists passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_6b54e && [1/2] Building C object CMakeFiles/cmTC_6b54e.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_6b54e + + + +Determining size of time_t passed with the following output: +Change Dir: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):E:/Espressif/tools/ninja/1.10.2/ninja.exe cmTC_65b0b && [1/2] Building C object CMakeFiles/cmTC_65b0b.dir/TIME_T_SIZE.c.obj +[2/2] Linking C executable cmTC_65b0b + + + diff --git a/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin b/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin new file mode 100644 index 0000000..e24662a Binary files /dev/null and b/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin differ diff --git a/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c b/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c new file mode 100644 index 0000000..4ce0740 --- /dev/null +++ b/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c @@ -0,0 +1,50 @@ +#include +#include +#include + + +#undef KEY +#if defined(__i386) +# define KEY '_','_','i','3','8','6' +#elif defined(__x86_64) +# define KEY '_','_','x','8','6','_','6','4' +#elif defined(__PPC64__) +# define KEY '_','_','P','P','C','6','4','_','_' +#elif defined(__ppc64__) +# define KEY '_','_','p','p','c','6','4','_','_' +#elif defined(__PPC__) +# define KEY '_','_','P','P','C','_','_' +#elif defined(__ppc__) +# define KEY '_','_','p','p','c','_','_' +#elif defined(__aarch64__) +# define KEY '_','_','a','a','r','c','h','6','4','_','_' +#elif defined(__ARM_ARCH_7A__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' +#elif defined(__ARM_ARCH_7S__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' +#endif + +#define SIZE (sizeof(time_t)) +static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', + ('0' + ((SIZE / 10000)%10)), + ('0' + ((SIZE / 1000)%10)), + ('0' + ((SIZE / 100)%10)), + ('0' + ((SIZE / 10)%10)), + ('0' + (SIZE % 10)), + ']', +#ifdef KEY + ' ','k','e','y','[', KEY, ']', +#endif + '\0'}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_size[argc]; + (void)argv; + return require; +} diff --git a/build/bootloader/CMakeFiles/TargetDirectories.txt b/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..13349f6 --- /dev/null +++ b/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,84 @@ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/menuconfig.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/confserver.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/save-defconfig.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/gen_project_binary.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/app.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/erase_flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/monitor.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/_project_elf_src.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/bootloader.elf.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/size.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/size-files.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/size-components.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/dfu.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/dfu-list.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/dfu-flash.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/uf2-app.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/uf2.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/esp32s3/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..ae4b0b5 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..663be2f --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +8fbf4ba6058bcf736317d8a7aa75d0578563c38b diff --git a/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..360c42e --- /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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "E:/Espressif/frameworks/esp-idf-v5.0.4/.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}" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..663be2f --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +8fbf4ba6058bcf736317d8a7aa75d0578563c38b diff --git a/build/bootloader/CMakeFiles/rules.ninja b/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..498c10e --- /dev/null +++ b/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,329 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_app_format_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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_ + depfile = $DEP_FILE + deps = gcc + command = E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = cmd.exe /C "$PRE_LINK && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-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 = E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = E:\Espressif\tools\ninja\1.10.2\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = E:\Espressif\tools\ninja\1.10.2\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..9cb9738 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..b24c63c 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..bf4a914 --- /dev/null +++ b/build/bootloader/bootloader.map @@ -0,0 +1,6498 @@ +Archive member included to satisfy reference by file (symbol) + +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(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(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(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(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_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_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_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_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(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_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/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_count_once) +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.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/log/liblog.a(log_noos.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.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_init) +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/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) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (__ffsdi2) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__divdi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__udivdi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (_global_impure_ptr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (memcmp) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) + +Discarded input sections + + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_line_str + 0x0000000000000000 0xda e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0x9c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .eh_frame 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .comment 0x0000000000000000 0x27 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .literal.__getreent + 0x0000000000000000 0x4 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text.__getreent + 0x0000000000000000 0xa esp-idf/main/libmain.a(bootloader_start.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x0000000000000000 0xb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_load_image_no_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x0000000000000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x0000000000000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x0000000000000000 0xd4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x0000000000000000 0xba esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x0000000000000000 0x3de esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0x1ee esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_wrap_set + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x57 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x0000000000000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_wrap_set + 0x0000000000000000 0x15f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x0000000000000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .iram1.1.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_DIG_LDO + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_K_RTC_LDO + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OCODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_FACTORY + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FORCE_SEND_RESUME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BTLC_GPIO_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_HARD_DIS_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CAN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIG_DBIAS_HVT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FORCE_SEND_RESUME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BTLC_GPIO_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.HARD_DIS_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CAN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x0000000000000000 0x1c8c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x0000000000000000 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x0000000000000000 0x234 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0000000000000000 0x1b47 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x0000000000000000 0x3c0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x0000000000000000 0x184 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x0000000000000000 0x15 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x0000000000000000 0x484 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x0000000000000000 0x5db esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_field_blob + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.1 + 0x0000000000000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x0000000000000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x0000000000000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0x8a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x0000000000000000 0x3d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x43 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x43 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x0000000000000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x0000000000000000 0x75 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x0000000000000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000000000 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000000000 0xe8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000000000 0x359 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000000000 0x5ca esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000000000 0x1056 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0000000000000000 0x7da esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.write_reg + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.1 + 0x0000000000000000 0xb3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x55 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x0000000000000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x0000000000000000 0x146 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x47 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x0000000000000000 0x43 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x0000000000000000 0xbc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_cnt.str1.1 + 0x0000000000000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x7b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x0000000000000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x9a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.1 + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x0000000000000000 0xd8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0x8b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000000000 0x190 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000000000 0x1584 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x437 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000000000 0xfa0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000000000 0x280 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000000000 0x1739 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0000000000000000 0x9d8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_purpose + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x0000000000000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.1 + 0x0000000000000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x0000000000000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x0000000000000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.1 + 0x0000000000000000 0x6e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x0000000000000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x0000000000000000 0xed esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x0000000000000000 0xe2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.1 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.1 + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x0000000000000000 0x6e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x0000000000000000 0x268 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x0000000000000000 0x1637 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x0000000000000000 0x3f1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x0000000000000000 0x9a6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x0000000000000000 0x168 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x0000000000000000 0x1567 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x0000000000000000 0x101e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x0000000000000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x0000000000000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.1 + 0x0000000000000000 0x1ff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x0000000000000000 0x1dc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x0000000000000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000000000 0x8a1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x263 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000000000 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000000000 0xc80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0000000000000000 0x740 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_cpu_stall + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_unstall + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_reset + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_intr_get_desc + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_set_watchpoint + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.esp_cpu_stall.str1.1 + 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_stall + 0x0000000000000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_unstall + 0x0000000000000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x0000000000000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_wait_for_intr + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_intr_get_desc + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_breakpoint + 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x0000000000000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_compare_and_set + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.intr_desc_table + 0x0000000000000000 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.rtc_clk_32k_enable_external + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .literal.get_rtc_dbias_by_efuse$constprop$0 + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_init + 0x0000000000000000 0x1a4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_get_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.get_rtc_dbias_by_efuse$constprop$0.str1.1 + 0x0000000000000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.get_rtc_dbias_by_efuse$constprop$0 + 0x0000000000000000 0x10f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.rtc_init.str1.1 + 0x0000000000000000 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_init + 0x0000000000000000 0x796 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x0000000000000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_sleep_pu + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x0000000000000000 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_pu + 0x0000000000000000 0x19d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_get_default_config.str1.1 + 0x0000000000000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x0000000000000000 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_init.str1.1 + 0x0000000000000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x0000000000000000 0x402 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x0000000000000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x0000000000000000 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .dram1.0 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x0000000000000000 0x6ad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000000000000000 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x0000000000000000 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x0000000000000000 0xf61 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x0000000000000000 0x61a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_internal + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_cal + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_get + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_light_slp_time_get + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_deep_slp_time_get + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_internal + 0x0000000000000000 0x223 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal + 0x0000000000000000 0xb9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_get + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_light_slp_time_get + 0x0000000000000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_deep_slp_time_get + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x0000000000000000 0x745 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000000000000000 0x237 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0000000000000000 0x44e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x0000000000000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x0000000000000000 0xd1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x0000000000000000 0x67d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.esp_log_impl_lock + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_lock_impl_timeout + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_impl_unlock + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_lock.str1.1 + 0x0000000000000000 0x2c esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_lock + 0x0000000000000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_lock_impl_timeout + 0x0000000000000000 0xd esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_unlock.str1.1 + 0x0000000000000000 0xc esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_unlock + 0x0000000000000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_noos.c.obj) + .bss.s_lock 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .literal.efuse_hal_get_mac + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x0000000000000000 0x19 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x0000000000000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x0000000000000000 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x0000000000000000 0x68 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x0000000000000000 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x0000000000000000 0xb esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x0000000000000000 0x59 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x0000000000000000 0xf esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0x56 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_suspend + 0x0000000000000000 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_resume + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.cache_hal_is_cache_enabled + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_suspend + 0x0000000000000000 0x25 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_resume + 0x0000000000000000 0x29 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_is_cache_enabled + 0x0000000000000000 0x2f esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.Cache_Count_Flash_Pages + 0x0000000000000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_ICache + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Freeze_ICache_Enable + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Freeze_DCache_Enable + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_WriteBack_Addr + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x0000000000000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Suspend_ICache + 0x0000000000000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Suspend_DCache + 0x0000000000000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Freeze_ICache_Enable + 0x0000000000000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Freeze_DCache_Enable + 0x0000000000000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_WriteBack_Addr + 0x0000000000000000 0x95 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x0000000000000000 0x590 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x0000000000000000 0x226 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x0000000000000000 0x3e5 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x0000000000000000 0x692 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_str 0x0000000000000000 0x49d esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x0000000000000000 0x56 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x0000000000000000 0x162 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x0000000000000000 0x23 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x0000000000000000 0xbc esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x0000000000000000 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x0000000000000000 0xe8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x0000000000000000 0xa0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .text 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x0000000000000000 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x0000000000000000 0xe8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x0000000000000000 0xa0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .text 0x0000000000000000 0x23 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_info 0x0000000000000000 0x185 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_abbrev 0x0000000000000000 0x10b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_loclists + 0x0000000000000000 0x8d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line 0x0000000000000000 0xdb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_str 0x0000000000000000 0x16e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x37 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xce e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x68 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x0000000000000000 0xac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0xf7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2ae e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x0000000000000000 0x6bb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000000000 0x1ab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x0000000000000000 0x5e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x0000000000000000 0x57 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x0000000000000000 0x88b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x0000000000000000 0x1b9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x270 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x0000000000000000 0x681 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000000000 0x18f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x0000000000000000 0x5f4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x0000000000000000 0x57 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x0000000000000000 0x7ae e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x0000000000000000 0x1ba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x80e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x173 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x4d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x49a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_line_str + 0x0000000000000000 0x303 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .text 0x0000000000000000 0x52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x12b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x90 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_loclists + 0x0000000000000000 0xdc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x17f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0xe0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_line_str + 0x0000000000000000 0x366 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x135 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x30f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x146 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .eh_frame 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram_seg 0x00000000403c9700 0x0000000000003000 xrw +iram_loader_seg 0x00000000403cc700 0x0000000000007000 xrw +dram_seg 0x000000003fce3700 0x0000000000004000 rw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +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/esp_app_format/libesp_app_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 + 0x0000000000000000 IDF_TARGET_ESP32S3 = 0x0 +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/esp_app_format/libesp_app_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/esp_app_format/libesp_app_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/esp_app_format/libesp_app_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/esp_app_format/libesp_app_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libnosys.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + [!provide] PROVIDE (UART0 = 0x60000000) + 0x0000000060002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x0000000060003000 PROVIDE (SPIMEM0 = 0x60003000) + [!provide] PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x0000000060007000 PROVIDE (EFUSE = 0x60007000) + 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000) + [!provide] PROVIDE (RTCIO = 0x60008400) + [!provide] PROVIDE (SENS = 0x60008800) + [!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 (UHCI1 = 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) + 0x000000006001f000 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 (GPSPI4 = 0x60037000) + [!provide] PROVIDE (GDMA = 0x6003f000) + [!provide] PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + [!provide] PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x0000000060038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) + 0x000000004000057c rtc_get_reset_reason = 0x4000057c + 0x0000000040000588 analog_super_wdt_reset_happened = 0x40000588 + 0x0000000040000594 jtag_cpu_reset_happened = 0x40000594 + 0x00000000400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x00000000400005ac rtc_select_apb_bridge = 0x400005ac + 0x00000000400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x00000000400005c4 ets_is_print_boot = 0x400005c4 + 0x00000000400005d0 ets_printf = 0x400005d0 + 0x00000000400005dc ets_install_putc1 = 0x400005dc + 0x00000000400005e8 ets_install_uart_printf = 0x400005e8 + 0x00000000400005f4 ets_install_putc2 = 0x400005f4 + 0x0000000040000600 PROVIDE (ets_delay_us = 0x40000600) + 0x000000004000060c ets_get_stack_info = 0x4000060c + 0x0000000040000618 ets_install_lock = 0x40000618 + 0x0000000040000624 ets_backup_dma_copy = 0x40000624 + 0x0000000040000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x000000004000063c UartRxString = 0x4000063c + 0x0000000040000648 uart_tx_one_char = 0x40000648 + 0x0000000040000654 uart_tx_one_char2 = 0x40000654 + 0x0000000040000660 uart_rx_one_char = 0x40000660 + 0x000000004000066c uart_rx_one_char_block = 0x4000066c + 0x0000000040000678 uart_rx_readbuff = 0x40000678 + 0x0000000040000684 uartAttach = 0x40000684 + 0x0000000040000690 uart_tx_flush = 0x40000690 + 0x000000004000069c uart_tx_wait_idle = 0x4000069c + 0x00000000400006a8 uart_div_modify = 0x400006a8 + 0x00000000400006b4 ets_write_char_uart = 0x400006b4 + 0x00000000400006c0 uart_tx_switch = 0x400006c0 + 0x00000000400006cc multofup = 0x400006cc + 0x00000000400006d8 software_reset = 0x400006d8 + 0x00000000400006e4 software_reset_cpu = 0x400006e4 + 0x00000000400006f0 assist_debug_clock_enable = 0x400006f0 + 0x00000000400006fc assist_debug_record_enable = 0x400006fc + 0x0000000040000708 clear_super_wdt_reset_flag = 0x40000708 + 0x0000000040000714 disable_default_watchdog = 0x40000714 + 0x0000000040000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x000000004000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x0000000040000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x0000000040000744 send_packet = 0x40000744 + 0x0000000040000750 recv_packet = 0x40000750 + 0x000000004000075c GetUartDevice = 0x4000075c + 0x0000000040000768 UartDwnLdProc = 0x40000768 + 0x0000000040000774 Uart_Init = 0x40000774 + 0x0000000040000780 ets_set_user_start = 0x40000780 + 0x000000003ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x000000003fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x000000004000078c mz_adler32 = 0x4000078c + 0x0000000040000798 mz_crc32 = 0x40000798 + 0x00000000400007a4 mz_free = 0x400007a4 + 0x00000000400007b0 tdefl_compress = 0x400007b0 + 0x00000000400007bc tdefl_compress_buffer = 0x400007bc + 0x00000000400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x00000000400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x00000000400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x00000000400007ec tdefl_get_adler32 = 0x400007ec + 0x00000000400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x0000000040000804 tdefl_init = 0x40000804 + 0x0000000040000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x000000004000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x0000000040000828 tinfl_decompress = 0x40000828 + 0x0000000040000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x0000000040000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x000000004000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x000000003fcefff8 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) + 0x0000000040000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x000000004000096c 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) + 0x00000000400009fc PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + 0x0000000040000a08 PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + 0x0000000040000a14 PROVIDE (esp_rom_spiflash_write = 0x40000a14) + 0x0000000040000a20 PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + [!provide] PROVIDE (SPI_write_enable = 0x40000a44) + 0x0000000040000a50 PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + [!provide] 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) + 0x0000000040000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + [!provide] 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) + 0x000000003fceffe4 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) + 0x0000000040000dbc PROVIDE (wdt_hal_init = 0x40000dbc) + [!provide] PROVIDE (wdt_hal_deinit = 0x40000dc8) + 0x0000000040000dd4 PROVIDE (wdt_hal_config_stage = 0x40000dd4) + 0x0000000040000de0 PROVIDE (wdt_hal_write_protect_disable = 0x40000de0) + 0x0000000040000dec PROVIDE (wdt_hal_write_protect_enable = 0x40000dec) + 0x0000000040000df8 PROVIDE (wdt_hal_enable = 0x40000df8) + [!provide] PROVIDE (wdt_hal_disable = 0x40000e04) + [!provide] PROVIDE (wdt_hal_handle_intr = 0x40000e10) + [!provide] PROVIDE (wdt_hal_feed = 0x40000e1c) + 0x0000000040000e28 PROVIDE (wdt_hal_set_flashboot_en = 0x40000e28) + [!provide] PROVIDE (wdt_hal_is_enabled = 0x40000e34) + [!provide] PROVIDE (systimer_hal_get_counter_value = 0x40000e40) + [!provide] PROVIDE (systimer_hal_get_time = 0x40000e4c) + [!provide] PROVIDE (systimer_hal_set_alarm_target = 0x40000e58) + [!provide] PROVIDE (systimer_hal_set_alarm_period = 0x40000e64) + [!provide] PROVIDE (systimer_hal_get_alarm_value = 0x40000e70) + [!provide] PROVIDE (systimer_hal_enable_alarm_int = 0x40000e7c) + [!provide] PROVIDE (systimer_hal_on_apb_freq_update = 0x40000e88) + [!provide] PROVIDE (systimer_hal_counter_value_advance = 0x40000e94) + [!provide] PROVIDE (systimer_hal_enable_counter = 0x40000ea0) + [!provide] PROVIDE (systimer_hal_init = 0x40000eac) + [!provide] PROVIDE (systimer_hal_select_alarm_mode = 0x40000eb8) + [!provide] PROVIDE (systimer_hal_connect_alarm_counter = 0x40000ec4) + [!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 (esp_flash_write = 0x40001140) + [!provide] PROVIDE (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) + [!provide] PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x0000000040001608 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) + [!provide] 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) + [!provide] PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x00000000400016c8 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) + 0x0000000040001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x0000000040001740 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) + 0x000000004000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x0000000040001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x0000000040001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x0000000040001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x000000004000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x00000000400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x00000000400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x00000000400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x00000000400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x00000000400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + [!provide] 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) + 0x00000000400019bc 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) + 0x0000000040001a34 ets_get_apb_freq = 0x40001a34 + 0x0000000040001a40 ets_get_cpu_frequency = 0x40001a40 + 0x0000000040001a4c ets_update_cpu_frequency = 0x40001a4c + 0x0000000040001a58 ets_get_printf_channel = 0x40001a58 + 0x0000000040001a64 ets_get_xtal_div = 0x40001a64 + 0x0000000040001a70 ets_set_xtal_div = 0x40001a70 + 0x0000000040001a7c ets_get_xtal_freq = 0x40001a7c + 0x0000000040001a88 gpio_input_get = 0x40001a88 + 0x0000000040001a94 gpio_matrix_in = 0x40001a94 + 0x0000000040001aa0 gpio_matrix_out = 0x40001aa0 + 0x0000000040001aac gpio_output_disable = 0x40001aac + 0x0000000040001ab8 gpio_output_enable = 0x40001ab8 + 0x0000000040001ac4 gpio_output_set = 0x40001ac4 + 0x0000000040001ad0 gpio_pad_hold = 0x40001ad0 + 0x0000000040001adc gpio_pad_input_disable = 0x40001adc + 0x0000000040001ae8 gpio_pad_input_enable = 0x40001ae8 + 0x0000000040001af4 gpio_pad_pulldown = 0x40001af4 + 0x0000000040001b00 gpio_pad_pullup = 0x40001b00 + 0x0000000040001b0c gpio_pad_select_gpio = 0x40001b0c + 0x0000000040001b18 gpio_pad_set_drv = 0x40001b18 + 0x0000000040001b24 gpio_pad_unhold = 0x40001b24 + 0x0000000040001b30 gpio_pin_wakeup_disable = 0x40001b30 + 0x0000000040001b3c gpio_pin_wakeup_enable = 0x40001b3c + 0x0000000040001b48 gpio_bypass_matrix_in = 0x40001b48 + 0x0000000040001b54 intr_matrix_set = 0x40001b54 + 0x0000000040001b60 ets_intr_lock = 0x40001b60 + 0x0000000040001b6c ets_intr_unlock = 0x40001b6c + 0x0000000040001b78 ets_isr_attach = 0x40001b78 + 0x0000000040001b84 ets_isr_mask = 0x40001b84 + 0x0000000040001b90 ets_isr_unmask = 0x40001b90 + 0x0000000040001b9c xthal_bcopy = 0x40001b9c + 0x0000000040001ba8 xthal_memcpy = 0x40001ba8 + 0x0000000040001bb4 xthal_get_ccompare = 0x40001bb4 + 0x0000000040001bc0 xthal_set_ccompare = 0x40001bc0 + 0x0000000040001bcc xthal_get_ccount = 0x40001bcc + 0x0000000040001bd8 xthal_get_interrupt = 0x40001bd8 + 0x0000000040001be4 xthal_set_intclear = 0x40001be4 + 0x0000000040001bf0 _xtos_ints_off = 0x40001bf0 + 0x0000000040001bfc _xtos_ints_on = 0x40001bfc + 0x0000000040001c08 _xtos_restore_intlevel = 0x40001c08 + 0x0000000040001c14 _xtos_set_exception_handler = 0x40001c14 + 0x0000000040001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x0000000040001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x0000000040001c38 _xtos_set_intlevel = 0x40001c38 + 0x0000000040001c44 _xtos_set_vpri = 0x40001c44 + 0x0000000040001c50 md5_vector = 0x40001c50 + 0x0000000040001c5c MD5Init = 0x40001c5c + 0x0000000040001c68 MD5Update = 0x40001c68 + 0x0000000040001c74 MD5Final = 0x40001c74 + 0x0000000040001c80 hmac_md5_vector = 0x40001c80 + 0x0000000040001c8c hmac_md5 = 0x40001c8c + 0x0000000040001c98 crc32_le = 0x40001c98 + 0x0000000040001ca4 crc32_be = 0x40001ca4 + 0x0000000040001cb0 crc16_le = 0x40001cb0 + 0x0000000040001cbc crc16_be = 0x40001cbc + 0x0000000040001cc8 crc8_le = 0x40001cc8 + 0x0000000040001cd4 crc8_be = 0x40001cd4 + 0x0000000040001ce0 esp_crc8 = 0x40001ce0 + 0x0000000040001cec ets_sha_enable = 0x40001cec + 0x0000000040001cf8 ets_sha_disable = 0x40001cf8 + 0x0000000040001d04 ets_sha_get_state = 0x40001d04 + 0x0000000040001d10 ets_sha_init = 0x40001d10 + 0x0000000040001d1c ets_sha_process = 0x40001d1c + 0x0000000040001d28 ets_sha_starts = 0x40001d28 + 0x0000000040001d34 ets_sha_update = 0x40001d34 + 0x0000000040001d40 ets_sha_finish = 0x40001d40 + 0x0000000040001d4c ets_sha_clone = 0x40001d4c + 0x0000000040001d58 ets_hmac_enable = 0x40001d58 + 0x0000000040001d64 ets_hmac_disable = 0x40001d64 + 0x0000000040001d70 ets_hmac_calculate_message = 0x40001d70 + 0x0000000040001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x0000000040001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x0000000040001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x0000000040001da0 ets_aes_enable = 0x40001da0 + 0x0000000040001dac ets_aes_disable = 0x40001dac + 0x0000000040001db8 ets_aes_setkey = 0x40001db8 + 0x0000000040001dc4 ets_aes_block = 0x40001dc4 + 0x0000000040001dd0 ets_bigint_enable = 0x40001dd0 + 0x0000000040001ddc ets_bigint_disable = 0x40001ddc + 0x0000000040001de8 ets_bigint_multiply = 0x40001de8 + 0x0000000040001df4 ets_bigint_modmult = 0x40001df4 + 0x0000000040001e00 ets_bigint_modexp = 0x40001e00 + 0x0000000040001e0c ets_bigint_wait_finish = 0x40001e0c + 0x0000000040001e18 ets_bigint_getz = 0x40001e18 + 0x0000000040001e24 ets_ds_enable = 0x40001e24 + 0x0000000040001e30 ets_ds_disable = 0x40001e30 + 0x0000000040001e3c ets_ds_start_sign = 0x40001e3c + 0x0000000040001e48 ets_ds_is_busy = 0x40001e48 + 0x0000000040001e54 ets_ds_finish_sign = 0x40001e54 + 0x0000000040001e60 ets_ds_encrypt_params = 0x40001e60 + 0x0000000040001e6c ets_aes_setkey_dec = 0x40001e6c + 0x0000000040001e78 ets_aes_setkey_enc = 0x40001e78 + 0x0000000040001e84 ets_mgf1_sha256 = 0x40001e84 + 0x0000000040001e90 ets_efuse_read = 0x40001e90 + 0x0000000040001e9c ets_efuse_program = 0x40001e9c + 0x0000000040001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x0000000040001eb4 ets_efuse_write_key = 0x40001eb4 + 0x0000000040001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x0000000040001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x0000000040001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x0000000040001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x0000000040001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x0000000040001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x0000000040001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x0000000040001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x0000000040001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x0000000040001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x0000000040001f38 ets_efuse_find_purpose = 0x40001f38 + 0x0000000040001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x0000000040001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x0000000040001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x0000000040001f68 ets_efuse_get_mac = 0x40001f68 + 0x0000000040001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x0000000040001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x0000000040001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x0000000040001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x0000000040001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x0000000040001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x0000000040001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x0000000040001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x0000000040001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x0000000040001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x0000000040001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x0000000040001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x0000000040002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x0000000040002010 ets_efuse_ecc_en = 0x40002010 + 0x000000004000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x0000000040002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x0000000040002034 ets_ecc_flash_enable = 0x40002034 + 0x0000000040002040 ets_ecc_flash_enable_all = 0x40002040 + 0x000000004000204c ets_ecc_flash_disable = 0x4000204c + 0x0000000040002058 ets_ecc_flash_disable_all = 0x40002058 + 0x0000000040002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x0000000040002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x000000004000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x0000000040002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x0000000040002094 ets_ecc_set_flash_range = 0x40002094 + 0x00000000400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x00000000400020ac ets_ecc_sram_enable = 0x400020ac + 0x00000000400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x00000000400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x00000000400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x00000000400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x00000000400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x00000000400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x0000000040002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x000000004000210c ets_ecc_set_sram_range = 0x4000210c + 0x0000000040002118 ets_ecc_get_sram_range = 0x40002118 + 0x000000003fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x0000000040002124 ets_emsa_pss_verify = 0x40002124 + 0x0000000040002130 ets_rsa_pss_verify = 0x40002130 + 0x000000004000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x0000000040002148 ets_secure_boot_verify_signature = 0x40002148 + 0x0000000040002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x0000000040002160 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) + [!provide] PROVIDE (g_uart_print = 0x3fceffb9) + [!provide] PROVIDE (g_usb_print = 0x3fceffb8) + 0x0000000040002610 cdc_acm_class_handle_req = 0x40002610 + 0x000000004000261c cdc_acm_init = 0x4000261c + 0x0000000040002628 cdc_acm_fifo_fill = 0x40002628 + 0x0000000040002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x0000000040002640 cdc_acm_fifo_read = 0x40002640 + 0x000000004000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x0000000040002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x0000000040002664 cdc_acm_irq_state_enable = 0x40002664 + 0x0000000040002670 cdc_acm_irq_state_disable = 0x40002670 + 0x000000004000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x0000000040002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x0000000040002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x00000000400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x00000000400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x00000000400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x00000000400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x00000000400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x00000000400026dc cdc_acm_poll_out = 0x400026dc + 0x00000000400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x00000000400026f4 chip_usb_dw_init = 0x400026f4 + 0x0000000040002700 chip_usb_detach = 0x40002700 + 0x000000004000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x0000000040002718 chip_usb_get_persist_flags = 0x40002718 + 0x0000000040002724 chip_usb_set_persist_flags = 0x40002724 + 0x0000000040002730 cpio_start = 0x40002730 + 0x000000004000273c cpio_feed = 0x4000273c + 0x0000000040002748 cpio_done = 0x40002748 + 0x0000000040002754 cpio_destroy = 0x40002754 + 0x0000000040002760 dfu_flash_init = 0x40002760 + 0x000000004000276c dfu_flash_erase = 0x4000276c + 0x0000000040002778 dfu_flash_program = 0x40002778 + 0x0000000040002784 dfu_flash_read = 0x40002784 + 0x0000000040002790 dfu_flash_attach = 0x40002790 + 0x000000004000279c dfu_cpio_callback = 0x4000279c + 0x00000000400027a8 dfu_updater_get_err = 0x400027a8 + 0x00000000400027b4 dfu_updater_clear_err = 0x400027b4 + 0x00000000400027c0 dfu_updater_enable = 0x400027c0 + 0x00000000400027cc dfu_updater_begin = 0x400027cc + 0x00000000400027d8 dfu_updater_feed = 0x400027d8 + 0x00000000400027e4 dfu_updater_end = 0x400027e4 + 0x00000000400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x00000000400027fc dfu_updater_flash_read = 0x400027fc + 0x0000000040002808 usb_dc_prepare_persist = 0x40002808 + 0x0000000040002814 usb_dw_isr_handler = 0x40002814 + 0x0000000040002820 usb_dc_attach = 0x40002820 + 0x000000004000282c usb_dc_detach = 0x4000282c + 0x0000000040002838 usb_dc_reset = 0x40002838 + 0x0000000040002844 usb_dc_set_address = 0x40002844 + 0x0000000040002850 usb_dc_ep_check_cap = 0x40002850 + 0x000000004000285c usb_dc_ep_configure = 0x4000285c + 0x0000000040002868 usb_dc_ep_set_stall = 0x40002868 + 0x0000000040002874 usb_dc_ep_clear_stall = 0x40002874 + 0x0000000040002880 usb_dc_ep_halt = 0x40002880 + 0x000000004000288c usb_dc_ep_is_stalled = 0x4000288c + 0x0000000040002898 usb_dc_ep_enable = 0x40002898 + 0x00000000400028a4 usb_dc_ep_disable = 0x400028a4 + 0x00000000400028b0 usb_dc_ep_flush = 0x400028b0 + 0x00000000400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x00000000400028c8 usb_dc_ep_write = 0x400028c8 + 0x00000000400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x00000000400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x00000000400028ec usb_dc_ep_read = 0x400028ec + 0x00000000400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x0000000040002904 usb_dc_set_status_callback = 0x40002904 + 0x0000000040002910 usb_dc_ep_mps = 0x40002910 + 0x000000004000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x0000000040002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x0000000040002934 usb_set_current_descriptor = 0x40002934 + 0x0000000040002940 usb_get_descriptor = 0x40002940 + 0x000000004000294c usb_dev_resume = 0x4000294c + 0x0000000040002958 usb_dev_get_configuration = 0x40002958 + 0x0000000040002964 usb_set_config = 0x40002964 + 0x0000000040002970 usb_deconfig = 0x40002970 + 0x000000004000297c usb_enable = 0x4000297c + 0x0000000040002988 usb_disable = 0x40002988 + 0x0000000040002994 usb_write_would_block = 0x40002994 + 0x00000000400029a0 usb_write = 0x400029a0 + 0x00000000400029ac usb_read = 0x400029ac + 0x00000000400029b8 usb_ep_set_stall = 0x400029b8 + 0x00000000400029c4 usb_ep_clear_stall = 0x400029c4 + 0x00000000400029d0 usb_ep_read_wait = 0x400029d0 + 0x00000000400029dc usb_ep_read_continue = 0x400029dc + 0x00000000400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x00000000400029f4 usb_transfer = 0x400029f4 + 0x0000000040002a00 usb_cancel_transfer = 0x40002a00 + 0x0000000040002a0c usb_transfer_sync = 0x40002a0c + 0x0000000040002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x0000000040002a24 dfu_class_handle_req = 0x40002a24 + 0x0000000040002a30 dfu_status_cb = 0x40002a30 + 0x0000000040002a3c dfu_custom_handle_req = 0x40002a3c + 0x0000000040002a48 usb_dfu_init = 0x40002a48 + 0x0000000040002a54 usb_dfu_force_detach = 0x40002a54 + 0x0000000040002a60 usb_dev_deinit = 0x40002a60 + 0x0000000040002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x000000003fceffac rom_usb_osglue = 0x3fceffac + 0x0000000040002a78 bt_rf_coex_get_dft_cfg = 0x40002a78 + 0x0000000040002a84 bt_rf_coex_hooks_p_set = 0x40002a84 + 0x0000000040002a90 btdm_con_maxevtime_cal_impl = 0x40002a90 + 0x0000000040002a9c btdm_controller_get_compile_version_impl = 0x40002a9c + 0x0000000040002aa8 btdm_controller_rom_data_init = 0x40002aa8 + 0x0000000040002ab4 btdm_dis_privacy_err_report_impl = 0x40002ab4 + 0x0000000040002ac0 btdm_disable_adv_delay_impl = 0x40002ac0 + 0x0000000040002acc btdm_enable_scan_continue_impl = 0x40002acc + 0x0000000040002ad8 btdm_enable_scan_forever_impl = 0x40002ad8 + 0x0000000040002ae4 btdm_get_power_state_impl = 0x40002ae4 + 0x0000000040002af0 btdm_get_prevent_sleep_flag_impl = 0x40002af0 + 0x0000000040002afc btdm_power_state_active_impl = 0x40002afc + 0x0000000040002b08 btdm_switch_phy_coded_impl = 0x40002b08 + 0x0000000040002b14 hci_acl_data_handler = 0x40002b14 + 0x0000000040002b20 hci_disconnect_cmd_handler = 0x40002b20 + 0x0000000040002b2c hci_le_con_upd_cmd_handler = 0x40002b2c + 0x0000000040002b38 hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38 + 0x0000000040002b44 hci_le_ltk_req_reply_cmd_handler = 0x40002b44 + 0x0000000040002b50 hci_le_rd_chnl_map_cmd_handler = 0x40002b50 + 0x0000000040002b5c hci_le_rd_phy_cmd_handler = 0x40002b5c + 0x0000000040002b68 hci_le_rd_rem_feats_cmd_handler = 0x40002b68 + 0x0000000040002b74 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74 + 0x0000000040002b80 hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80 + 0x0000000040002b8c hci_le_set_data_len_cmd_handler = 0x40002b8c + 0x0000000040002b98 hci_le_set_phy_cmd_handler = 0x40002b98 + 0x0000000040002ba4 hci_le_start_enc_cmd_handler = 0x40002ba4 + 0x0000000040002bb0 hci_rd_auth_payl_to_cmd_handler = 0x40002bb0 + 0x0000000040002bbc hci_rd_rem_ver_info_cmd_handler = 0x40002bbc + 0x0000000040002bc8 hci_rd_rssi_cmd_handler = 0x40002bc8 + 0x0000000040002bd4 hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4 + 0x0000000040002be0 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0 + 0x0000000040002bec hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec + 0x0000000040002bf8 hci_wr_auth_payl_to_cmd_handler = 0x40002bf8 + 0x0000000040002c04 ll_channel_map_ind_handler = 0x40002c04 + 0x0000000040002c10 ll_connection_param_req_handler = 0x40002c10 + 0x0000000040002c1c ll_connection_param_rsp_handler = 0x40002c1c + 0x0000000040002c28 ll_connection_update_ind_handler = 0x40002c28 + 0x0000000040002c34 ll_enc_req_handler = 0x40002c34 + 0x0000000040002c40 ll_enc_rsp_handler = 0x40002c40 + 0x0000000040002c4c ll_feature_req_handler = 0x40002c4c + 0x0000000040002c58 ll_feature_rsp_handler = 0x40002c58 + 0x0000000040002c64 ll_length_req_handler = 0x40002c64 + 0x0000000040002c70 ll_length_rsp_handler = 0x40002c70 + 0x0000000040002c7c ll_min_used_channels_ind_handler = 0x40002c7c + 0x0000000040002c88 ll_pause_enc_req_handler = 0x40002c88 + 0x0000000040002c94 ll_pause_enc_rsp_handler = 0x40002c94 + 0x0000000040002ca0 ll_phy_req_handler = 0x40002ca0 + 0x0000000040002cac ll_phy_rsp_handler = 0x40002cac + 0x0000000040002cb8 ll_phy_update_ind_handler = 0x40002cb8 + 0x0000000040002cc4 ll_ping_req_handler = 0x40002cc4 + 0x0000000040002cd0 ll_ping_rsp_handler = 0x40002cd0 + 0x0000000040002cdc ll_slave_feature_req_handler = 0x40002cdc + 0x0000000040002ce8 ll_start_enc_req_handler = 0x40002ce8 + 0x0000000040002cf4 ll_start_enc_rsp_handler = 0x40002cf4 + 0x0000000040002d00 ll_terminate_ind_handler = 0x40002d00 + 0x0000000040002d0c ll_version_ind_handler = 0x40002d0c + 0x0000000040002d18 llc_auth_payl_nearly_to_handler = 0x40002d18 + 0x0000000040002d24 llc_auth_payl_real_to_handler = 0x40002d24 + 0x0000000040002d30 llc_encrypt_ind_handler = 0x40002d30 + 0x0000000040002d3c llc_hci_command_handler_wrapper = 0x40002d3c + 0x0000000040002d48 llc_ll_connection_param_req_pdu_send = 0x40002d48 + 0x0000000040002d54 llc_ll_connection_param_rsp_pdu_send = 0x40002d54 + 0x0000000040002d60 llc_ll_connection_update_ind_pdu_send = 0x40002d60 + 0x0000000040002d6c llc_ll_enc_req_pdu_send = 0x40002d6c + 0x0000000040002d78 llc_ll_enc_rsp_pdu_send = 0x40002d78 + 0x0000000040002d84 llc_ll_feature_req_pdu_send = 0x40002d84 + 0x0000000040002d90 llc_ll_feature_rsp_pdu_send = 0x40002d90 + 0x0000000040002d9c llc_ll_length_req_pdu_send = 0x40002d9c + 0x0000000040002da8 llc_ll_length_rsp_pdu_send = 0x40002da8 + 0x0000000040002db4 llc_ll_pause_enc_req_pdu_send = 0x40002db4 + 0x0000000040002dc0 llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0 + 0x0000000040002dcc llc_ll_phy_req_pdu_send = 0x40002dcc + 0x0000000040002dd8 llc_ll_phy_rsp_pdu_send = 0x40002dd8 + 0x0000000040002de4 llc_ll_ping_req_pdu_send = 0x40002de4 + 0x0000000040002df0 llc_ll_ping_rsp_pdu_send = 0x40002df0 + 0x0000000040002dfc llc_ll_start_enc_req_pdu_send = 0x40002dfc + 0x0000000040002e08 llc_ll_start_enc_rsp_pdu_send = 0x40002e08 + 0x0000000040002e14 llc_ll_terminate_ind_pdu_send = 0x40002e14 + 0x0000000040002e20 llc_ll_unknown_rsp_pdu_send = 0x40002e20 + 0x0000000040002e2c llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c + 0x0000000040002e38 llc_llcp_phy_upd_ind_pdu_send = 0x40002e38 + 0x0000000040002e44 llc_llcp_version_ind_pdu_send = 0x40002e44 + 0x0000000040002e50 llc_op_ch_map_upd_ind_handler = 0x40002e50 + 0x0000000040002e5c llc_op_con_upd_ind_handler = 0x40002e5c + 0x0000000040002e68 llc_op_disconnect_ind_handler = 0x40002e68 + 0x0000000040002e74 llc_op_dl_upd_ind_handler = 0x40002e74 + 0x0000000040002e80 llc_op_encrypt_ind_handler = 0x40002e80 + 0x0000000040002e8c llc_op_feats_exch_ind_handler = 0x40002e8c + 0x0000000040002e98 llc_op_le_ping_ind_handler = 0x40002e98 + 0x0000000040002ea4 llc_op_phy_upd_ind_handler = 0x40002ea4 + 0x0000000040002eb0 llc_op_ver_exch_ind_handler = 0x40002eb0 + 0x0000000040002ebc llc_stopped_ind_handler = 0x40002ebc + 0x0000000040002ec8 lld_acl_rx_ind_handler = 0x40002ec8 + 0x0000000040002ed4 lld_acl_tx_cfm_handler = 0x40002ed4 + 0x0000000040002ee0 lld_adv_end_ind_handler = 0x40002ee0 + 0x0000000040002eec lld_adv_rep_ind_handler = 0x40002eec + 0x0000000040002ef8 lld_ch_map_upd_cfm_handler = 0x40002ef8 + 0x0000000040002f04 lld_con_estab_ind_handler = 0x40002f04 + 0x0000000040002f10 lld_con_evt_sd_evt_time_set = 0x40002f10 + 0x0000000040002f1c lld_con_offset_upd_ind_handler = 0x40002f1c + 0x0000000040002f28 lld_con_param_upd_cfm_handler = 0x40002f28 + 0x0000000040002f34 lld_disc_ind_handler = 0x40002f34 + 0x0000000040002f40 lld_init_end_ind_handler = 0x40002f40 + 0x0000000040002f4c lld_llcp_rx_ind_handler_wrapper = 0x40002f4c + 0x0000000040002f58 lld_llcp_tx_cfm_handler = 0x40002f58 + 0x0000000040002f64 lld_per_adv_end_ind_handler = 0x40002f64 + 0x0000000040002f70 lld_per_adv_rep_ind_handler = 0x40002f70 + 0x0000000040002f7c lld_per_adv_rx_end_ind_handler = 0x40002f7c + 0x0000000040002f88 lld_phy_coded_500k_get = 0x40002f88 + 0x0000000040002f94 lld_phy_upd_cfm_handler = 0x40002f94 + 0x0000000040002fa0 lld_scan_end_ind_handler = 0x40002fa0 + 0x0000000040002fac lld_scan_req_ind_handler = 0x40002fac + 0x0000000040002fb8 lld_sync_start_req_handler = 0x40002fb8 + 0x0000000040002fc4 lld_test_end_ind_handler = 0x40002fc4 + 0x0000000040002fd0 lld_update_rxbuf_handler = 0x40002fd0 + 0x0000000040002fdc llm_ch_map_update_ind_handler = 0x40002fdc + 0x0000000040002fe8 llm_hci_command_handler_wrapper = 0x40002fe8 + 0x0000000040002ff4 llm_scan_period_to_handler = 0x40002ff4 + 0x0000000040003000 r_Add2SelfBigHex256 = 0x40003000 + 0x000000004000300c r_AddBigHex256 = 0x4000300c + 0x0000000040003018 r_AddBigHexModP256 = 0x40003018 + 0x0000000040003024 r_AddP256 = 0x40003024 + 0x0000000040003030 r_AddPdiv2_256 = 0x40003030 + 0x000000004000303c r_GF_Jacobian_Point_Addition256 = 0x4000303c + 0x0000000040003048 r_GF_Jacobian_Point_Double256 = 0x40003048 + 0x0000000040003054 r_GF_Point_Jacobian_To_Affine256 = 0x40003054 + 0x0000000040003060 r_MultiplyBigHexByUint32_256 = 0x40003060 + 0x000000004000306c r_MultiplyBigHexModP256 = 0x4000306c + 0x0000000040003078 r_MultiplyByU16ModP256 = 0x40003078 + 0x0000000040003084 r_SubtractBigHex256 = 0x40003084 + 0x0000000040003090 r_SubtractBigHexMod256 = 0x40003090 + 0x000000004000309c r_SubtractBigHexUint32_256 = 0x4000309c + 0x00000000400030a8 r_SubtractFromSelfBigHex256 = 0x400030a8 + 0x00000000400030b4 r_SubtractFromSelfBigHexSign256 = 0x400030b4 + 0x00000000400030c0 r_aes_alloc = 0x400030c0 + 0x00000000400030cc r_aes_ccm_continue = 0x400030cc + 0x00000000400030d8 r_aes_ccm_process_e = 0x400030d8 + 0x00000000400030e4 r_aes_ccm_xor_128_lsb = 0x400030e4 + 0x00000000400030f0 r_aes_ccm_xor_128_msb = 0x400030f0 + 0x00000000400030fc r_aes_cmac_continue = 0x400030fc + 0x0000000040003108 r_aes_cmac_start = 0x40003108 + 0x0000000040003114 r_aes_k1_continue = 0x40003114 + 0x0000000040003120 r_aes_k2_continue = 0x40003120 + 0x000000004000312c r_aes_k3_continue = 0x4000312c + 0x0000000040003138 r_aes_k4_continue = 0x40003138 + 0x0000000040003144 r_aes_shift_left_128 = 0x40003144 + 0x0000000040003150 r_aes_start = 0x40003150 + 0x000000004000315c r_aes_xor_128 = 0x4000315c + 0x0000000040003168 r_assert_err = 0x40003168 + 0x0000000040003174 r_assert_param = 0x40003174 + 0x0000000040003180 r_assert_warn = 0x40003180 + 0x000000004000318c r_bigHexInversion256 = 0x4000318c + 0x0000000040003198 r_ble_sw_cca_check_isr = 0x40003198 + 0x00000000400031a4 r_ble_util_buf_acl_tx_alloc = 0x400031a4 + 0x00000000400031b0 r_ble_util_buf_acl_tx_elt_get = 0x400031b0 + 0x00000000400031bc r_ble_util_buf_acl_tx_free = 0x400031bc + 0x00000000400031c8 r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8 + 0x00000000400031d4 r_ble_util_buf_adv_tx_alloc = 0x400031d4 + 0x00000000400031e0 r_ble_util_buf_adv_tx_free = 0x400031e0 + 0x00000000400031ec r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec + 0x00000000400031f8 r_ble_util_buf_env_deinit = 0x400031f8 + 0x0000000040003204 r_ble_util_buf_env_init = 0x40003204 + 0x0000000040003210 r_ble_util_buf_get_rx_buf_nb = 0x40003210 + 0x000000004000321c r_ble_util_buf_get_rx_buf_size = 0x4000321c + 0x0000000040003228 r_ble_util_buf_llcp_tx_alloc = 0x40003228 + 0x0000000040003234 r_ble_util_buf_llcp_tx_free = 0x40003234 + 0x0000000040003240 r_ble_util_buf_rx_alloc = 0x40003240 + 0x000000004000324c r_ble_util_buf_rx_alloc_in_isr = 0x4000324c + 0x0000000040003258 r_ble_util_buf_rx_free = 0x40003258 + 0x0000000040003264 r_ble_util_buf_rx_free_in_isr = 0x40003264 + 0x0000000040003270 r_ble_util_buf_set_rx_buf_nb = 0x40003270 + 0x000000004000327c r_ble_util_buf_set_rx_buf_size = 0x4000327c + 0x0000000040003288 r_ble_util_data_rx_buf_reset = 0x40003288 + 0x0000000040003294 r_bt_bb_get_intr_mask = 0x40003294 + 0x00000000400032a0 r_bt_bb_intr_clear = 0x400032a0 + 0x00000000400032ac r_bt_bb_intr_mask_set = 0x400032ac + 0x00000000400032c4 r_bt_rf_coex_cfg_set = 0x400032c4 + 0x00000000400032d0 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0 + 0x00000000400032e8 r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8 + 0x00000000400032f4 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4 + 0x0000000040003300 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300 + 0x000000004000330c r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c + 0x0000000040003318 r_bt_rf_coex_pti_table_get = 0x40003318 + 0x0000000040003324 r_bt_rf_coex_st_param_get = 0x40003324 + 0x0000000040003330 r_bt_rf_coex_st_param_set = 0x40003330 + 0x000000004000333c r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c + 0x0000000040003348 r_bt_rma_apply_rule_cs_fmt = 0x40003348 + 0x0000000040003354 r_bt_rma_apply_rule_cs_idx = 0x40003354 + 0x0000000040003360 r_bt_rma_configure = 0x40003360 + 0x000000004000336c r_bt_rma_deregister_rule_cs_fmt = 0x4000336c + 0x0000000040003378 r_bt_rma_deregister_rule_cs_idx = 0x40003378 + 0x0000000040003384 r_bt_rma_get_ant_by_act = 0x40003384 + 0x0000000040003390 r_bt_rma_init = 0x40003390 + 0x000000004000339c r_bt_rma_register_rule_cs_fmt = 0x4000339c + 0x00000000400033a8 r_bt_rma_register_rule_cs_idx = 0x400033a8 + 0x00000000400033b4 r_bt_rtp_apply_rule_cs_fmt = 0x400033b4 + 0x00000000400033c0 r_bt_rtp_apply_rule_cs_idx = 0x400033c0 + 0x00000000400033cc r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc + 0x00000000400033d8 r_bt_rtp_deregister_rule_cs_idx = 0x400033d8 + 0x00000000400033f0 r_bt_rtp_init = 0x400033f0 + 0x00000000400033fc r_bt_rtp_register_rule_cs_fmt = 0x400033fc + 0x0000000040003408 r_bt_rtp_register_rule_cs_idx = 0x40003408 + 0x0000000040003414 r_btdm_isr = 0x40003414 + 0x0000000040003444 r_cali_phase_match_p = 0x40003444 + 0x0000000040003450 r_cmp_abs_time = 0x40003450 + 0x000000004000345c r_cmp_dest_id = 0x4000345c + 0x0000000040003468 r_cmp_timer_id = 0x40003468 + 0x0000000040003474 r_co_bdaddr_compare = 0x40003474 + 0x0000000040003480 r_co_ble_pkt_dur_in_us = 0x40003480 + 0x000000004000348c r_co_list_extract = 0x4000348c + 0x0000000040003498 r_co_list_extract_after = 0x40003498 + 0x00000000400034a4 r_co_list_extract_sublist = 0x400034a4 + 0x00000000400034b0 r_co_list_find = 0x400034b0 + 0x00000000400034bc r_co_list_init = 0x400034bc + 0x00000000400034c8 r_co_list_insert_after = 0x400034c8 + 0x00000000400034d4 r_co_list_insert_before = 0x400034d4 + 0x00000000400034e0 r_co_list_merge = 0x400034e0 + 0x00000000400034ec r_co_list_pool_init = 0x400034ec + 0x00000000400034f8 r_co_list_pop_front = 0x400034f8 + 0x0000000040003504 r_co_list_push_back = 0x40003504 + 0x0000000040003510 r_co_list_push_back_sublist = 0x40003510 + 0x000000004000351c r_co_list_push_front = 0x4000351c + 0x0000000040003528 r_co_list_size = 0x40003528 + 0x0000000040003534 r_co_nb_good_le_channels = 0x40003534 + 0x0000000040003540 r_co_util_pack = 0x40003540 + 0x000000004000354c r_co_util_read_array_size = 0x4000354c + 0x0000000040003558 r_co_util_unpack = 0x40003558 + 0x0000000040003564 r_dbg_env_deinit = 0x40003564 + 0x0000000040003570 r_dbg_env_init = 0x40003570 + 0x000000004000357c r_dbg_platform_reset_complete = 0x4000357c + 0x0000000040003588 r_dl_upd_proc_start = 0x40003588 + 0x0000000040003594 r_dump_data = 0x40003594 + 0x00000000400035a0 r_ecc_abort_key256_generation = 0x400035a0 + 0x00000000400035ac r_ecc_gen_new_public_key = 0x400035ac + 0x00000000400035b8 r_ecc_gen_new_secret_key = 0x400035b8 + 0x00000000400035c4 r_ecc_generate_key256 = 0x400035c4 + 0x00000000400035d0 r_ecc_get_debug_Keys = 0x400035d0 + 0x00000000400035dc r_ecc_init = 0x400035dc + 0x00000000400035e8 r_ecc_is_valid_point = 0x400035e8 + 0x00000000400035f4 r_ecc_multiplication_event_handler = 0x400035f4 + 0x0000000040003600 r_ecc_point_multiplication_win_256 = 0x40003600 + 0x000000004000360c r_emi_alloc_em_mapping_by_offset = 0x4000360c + 0x0000000040003618 r_emi_base_reg_lut_show = 0x40003618 + 0x0000000040003624 r_emi_em_base_reg_show = 0x40003624 + 0x0000000040003630 r_emi_free_em_mapping_by_offset = 0x40003630 + 0x000000004000363c r_emi_get_em_mapping_idx_by_offset = 0x4000363c + 0x0000000040003648 r_emi_get_mem_addr_by_offset = 0x40003648 + 0x0000000040003654 r_emi_overwrite_em_mapping_by_offset = 0x40003654 + 0x0000000040003660 r_esp_vendor_hci_command_handler = 0x40003660 + 0x000000004000366c r_get_stack_usage = 0x4000366c + 0x0000000040003678 r_h4tl_acl_hdr_rx_evt_handler = 0x40003678 + 0x0000000040003684 r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684 + 0x0000000040003690 r_h4tl_cmd_pld_rx_evt_handler = 0x40003690 + 0x000000004000369c r_h4tl_eif_io_event_post = 0x4000369c + 0x00000000400036a8 r_h4tl_eif_register = 0x400036a8 + 0x00000000400036b4 r_h4tl_init = 0x400036b4 + 0x00000000400036c0 r_h4tl_out_of_sync = 0x400036c0 + 0x00000000400036cc r_h4tl_out_of_sync_check = 0x400036cc + 0x00000000400036d8 r_h4tl_read_hdr = 0x400036d8 + 0x00000000400036e4 r_h4tl_read_next_out_of_sync = 0x400036e4 + 0x00000000400036f0 r_h4tl_read_payl = 0x400036f0 + 0x00000000400036fc r_h4tl_read_start = 0x400036fc + 0x0000000040003708 r_h4tl_rx_acl_hdr_extract = 0x40003708 + 0x0000000040003714 r_h4tl_rx_cmd_hdr_extract = 0x40003714 + 0x0000000040003720 r_h4tl_rx_done = 0x40003720 + 0x000000004000372c r_h4tl_start = 0x4000372c + 0x0000000040003738 r_h4tl_stop = 0x40003738 + 0x0000000040003744 r_h4tl_tx_done = 0x40003744 + 0x0000000040003750 r_h4tl_tx_evt_handler = 0x40003750 + 0x000000004000375c r_h4tl_write = 0x4000375c + 0x0000000040003768 r_hci_acl_tx_data_alloc = 0x40003768 + 0x0000000040003774 r_hci_acl_tx_data_received = 0x40003774 + 0x0000000040003780 r_hci_basic_cmd_send_2_controller = 0x40003780 + 0x000000004000378c r_hci_ble_adv_report_filter_check = 0x4000378c + 0x0000000040003798 r_hci_ble_adv_report_tx_check = 0x40003798 + 0x00000000400037a4 r_hci_ble_conhdl_register = 0x400037a4 + 0x00000000400037b0 r_hci_ble_conhdl_unregister = 0x400037b0 + 0x00000000400037bc r_hci_build_acl_data = 0x400037bc + 0x00000000400037c8 r_hci_build_cc_evt = 0x400037c8 + 0x00000000400037d4 r_hci_build_cs_evt = 0x400037d4 + 0x00000000400037e0 r_hci_build_evt = 0x400037e0 + 0x00000000400037ec r_hci_build_le_evt = 0x400037ec + 0x00000000400037f8 r_hci_cmd_get_max_param_size = 0x400037f8 + 0x0000000040003804 r_hci_cmd_received = 0x40003804 + 0x0000000040003810 r_hci_cmd_reject = 0x40003810 + 0x000000004000381c r_hci_evt_mask_check = 0x4000381c + 0x0000000040003828 r_hci_evt_mask_set = 0x40003828 + 0x0000000040003834 r_hci_fc_acl_buf_size_set = 0x40003834 + 0x0000000040003840 r_hci_fc_acl_en = 0x40003840 + 0x000000004000384c r_hci_fc_acl_packet_sent = 0x4000384c + 0x0000000040003858 r_hci_fc_check_host_available_nb_acl_packets = 0x40003858 + 0x0000000040003864 r_hci_fc_host_nb_acl_pkts_complete = 0x40003864 + 0x0000000040003870 r_hci_fc_init = 0x40003870 + 0x000000004000387c r_hci_look_for_cmd_desc = 0x4000387c + 0x0000000040003888 r_hci_look_for_evt_desc = 0x40003888 + 0x0000000040003894 r_hci_look_for_le_evt_desc = 0x40003894 + 0x00000000400038a0 r_hci_look_for_le_evt_desc_esp = 0x400038a0 + 0x00000000400038ac r_hci_pack_bytes = 0x400038ac + 0x00000000400038c4 r_hci_send_2_controller = 0x400038c4 + 0x00000000400038d0 r_hci_send_2_host = 0x400038d0 + 0x00000000400038dc r_hci_tl_c2h_data_flow_on = 0x400038dc + 0x00000000400038e8 r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8 + 0x00000000400038f4 r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4 + 0x0000000040003900 r_hci_tl_get_pkt = 0x40003900 + 0x000000004000390c r_hci_tl_hci_pkt_handler = 0x4000390c + 0x0000000040003918 r_hci_tl_hci_tx_done_evt_handler = 0x40003918 + 0x0000000040003924 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924 + 0x0000000040003930 r_hci_tl_save_pkt = 0x40003930 + 0x000000004000393c r_hci_tl_send = 0x4000393c + 0x0000000040003948 r_hci_tx_done = 0x40003948 + 0x0000000040003954 r_hci_tx_start = 0x40003954 + 0x0000000040003960 r_hci_tx_trigger = 0x40003960 + 0x000000004000396c r_isValidSecretKey_256 = 0x4000396c + 0x0000000040003978 r_ke_check_malloc = 0x40003978 + 0x0000000040003984 r_ke_event_callback_set = 0x40003984 + 0x0000000040003990 r_ke_event_clear = 0x40003990 + 0x000000004000399c r_ke_event_flush = 0x4000399c + 0x00000000400039a8 r_ke_event_get = 0x400039a8 + 0x00000000400039b4 r_ke_event_get_all = 0x400039b4 + 0x00000000400039c0 r_ke_event_init = 0x400039c0 + 0x00000000400039cc r_ke_event_schedule = 0x400039cc + 0x00000000400039d8 r_ke_event_set = 0x400039d8 + 0x00000000400039e4 r_ke_flush = 0x400039e4 + 0x00000000400039f0 r_ke_free = 0x400039f0 + 0x00000000400039fc r_ke_handler_search = 0x400039fc + 0x0000000040003a08 r_ke_init = 0x40003a08 + 0x0000000040003a14 r_ke_is_free = 0x40003a14 + 0x0000000040003a20 r_ke_malloc = 0x40003a20 + 0x0000000040003a2c r_ke_mem_init = 0x40003a2c + 0x0000000040003a38 r_ke_mem_is_empty = 0x40003a38 + 0x0000000040003a44 r_ke_mem_is_in_heap = 0x40003a44 + 0x0000000040003a50 r_ke_msg_alloc = 0x40003a50 + 0x0000000040003a5c r_ke_msg_dest_id_get = 0x40003a5c + 0x0000000040003a68 r_ke_msg_discard = 0x40003a68 + 0x0000000040003a74 r_ke_msg_forward = 0x40003a74 + 0x0000000040003a80 r_ke_msg_forward_new_id = 0x40003a80 + 0x0000000040003a8c r_ke_msg_free = 0x40003a8c + 0x0000000040003a98 r_ke_msg_in_queue = 0x40003a98 + 0x0000000040003aa4 r_ke_msg_save = 0x40003aa4 + 0x0000000040003ab0 r_ke_msg_send = 0x40003ab0 + 0x0000000040003abc r_ke_msg_send_basic = 0x40003abc + 0x0000000040003ac8 r_ke_msg_src_id_get = 0x40003ac8 + 0x0000000040003ad4 r_ke_queue_extract = 0x40003ad4 + 0x0000000040003ae0 r_ke_queue_insert = 0x40003ae0 + 0x0000000040003aec r_ke_sleep_check = 0x40003aec + 0x0000000040003af8 r_ke_state_get = 0x40003af8 + 0x0000000040003b04 r_ke_state_set = 0x40003b04 + 0x0000000040003b10 r_ke_task_check = 0x40003b10 + 0x0000000040003b1c r_ke_task_create = 0x40003b1c + 0x0000000040003b28 r_ke_task_delete = 0x40003b28 + 0x0000000040003b34 r_ke_task_handler_get = 0x40003b34 + 0x0000000040003b40 r_ke_task_init = 0x40003b40 + 0x0000000040003b4c r_ke_task_msg_flush = 0x40003b4c + 0x0000000040003b58 r_ke_task_saved_update = 0x40003b58 + 0x0000000040003b70 r_ke_time = 0x40003b70 + 0x0000000040003b7c r_ke_time_cmp = 0x40003b7c + 0x0000000040003b88 r_ke_time_past = 0x40003b88 + 0x0000000040003b94 r_ke_timer_active = 0x40003b94 + 0x0000000040003ba0 r_ke_timer_adjust_all = 0x40003ba0 + 0x0000000040003bac r_ke_timer_clear = 0x40003bac + 0x0000000040003bb8 r_ke_timer_init = 0x40003bb8 + 0x0000000040003bc4 r_ke_timer_schedule = 0x40003bc4 + 0x0000000040003bd0 r_ke_timer_set = 0x40003bd0 + 0x0000000040003bdc r_led_init = 0x40003bdc + 0x0000000040003be8 r_led_set_all = 0x40003be8 + 0x0000000040003bf4 r_llc_aes_res_cb = 0x40003bf4 + 0x0000000040003c00 r_llc_ch_map_up_proc_err_cb = 0x40003c00 + 0x0000000040003c0c r_llc_cleanup = 0x40003c0c + 0x0000000040003c18 r_llc_cmd_cmp_send = 0x40003c18 + 0x0000000040003c24 r_llc_cmd_stat_send = 0x40003c24 + 0x0000000040003c30 r_llc_con_move_cbk = 0x40003c30 + 0x0000000040003c3c r_llc_con_plan_set_update = 0x40003c3c + 0x0000000040003c48 r_llc_con_upd_param_in_range = 0x40003c48 + 0x0000000040003c54 r_llc_disconnect = 0x40003c54 + 0x0000000040003c60 r_llc_disconnect_end = 0x40003c60 + 0x0000000040003c6c r_llc_disconnect_proc_continue = 0x40003c6c + 0x0000000040003c78 r_llc_disconnect_proc_err_cb = 0x40003c78 + 0x0000000040003c84 r_llc_dl_chg_check = 0x40003c84 + 0x0000000040003c90 r_llc_dle_proc_err_cb = 0x40003c90 + 0x0000000040003c9c r_llc_feats_exch_proc_err_cb = 0x40003c9c + 0x0000000040003ca8 r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8 + 0x0000000040003cc0 r_llc_hci_con_param_req_evt_send = 0x40003cc0 + 0x0000000040003ccc r_llc_hci_con_upd_info_send = 0x40003ccc + 0x0000000040003cd8 r_llc_hci_disconnected_dis = 0x40003cd8 + 0x0000000040003ce4 r_llc_hci_dl_upd_info_send = 0x40003ce4 + 0x0000000040003cf0 r_llc_hci_enc_evt_send = 0x40003cf0 + 0x0000000040003cfc r_llc_hci_feats_info_send = 0x40003cfc + 0x0000000040003d08 r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08 + 0x0000000040003d14 r_llc_hci_ltk_request_evt_send = 0x40003d14 + 0x0000000040003d20 r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20 + 0x0000000040003d2c r_llc_hci_version_info_send = 0x40003d2c + 0x0000000040003d38 r_llc_init_term_proc = 0x40003d38 + 0x0000000040003d44 r_llc_iv_skd_rand_gen = 0x40003d44 + 0x0000000040003d50 r_llc_le_ping_proc_continue = 0x40003d50 + 0x0000000040003d5c r_llc_le_ping_proc_err_cb = 0x40003d5c + 0x0000000040003d68 r_llc_le_ping_restart = 0x40003d68 + 0x0000000040003d74 r_llc_le_ping_set = 0x40003d74 + 0x0000000040003d80 r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80 + 0x0000000040003d8c r_llc_ll_reject_ind_ack_handler = 0x40003d8c + 0x0000000040003d98 r_llc_ll_reject_ind_pdu_send = 0x40003d98 + 0x0000000040003da4 r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4 + 0x0000000040003db0 r_llc_ll_terminate_ind_ack = 0x40003db0 + 0x0000000040003dbc r_llc_ll_unknown_ind_handler = 0x40003dbc + 0x0000000040003dc8 r_llc_llcp_send = 0x40003dc8 + 0x0000000040003dd4 r_llc_llcp_state_set = 0x40003dd4 + 0x0000000040003de0 r_llc_llcp_trans_timer_set = 0x40003de0 + 0x0000000040003dec r_llc_llcp_tx_check = 0x40003dec + 0x0000000040003df8 r_llc_loc_ch_map_proc_continue = 0x40003df8 + 0x0000000040003e10 r_llc_loc_con_upd_proc_err_cb = 0x40003e10 + 0x0000000040003e1c r_llc_loc_dl_upd_proc_continue = 0x40003e1c + 0x0000000040003e28 r_llc_loc_encrypt_proc_continue = 0x40003e28 + 0x0000000040003e34 r_llc_loc_encrypt_proc_err_cb = 0x40003e34 + 0x0000000040003e40 r_llc_loc_feats_exch_proc_continue = 0x40003e40 + 0x0000000040003e4c r_llc_loc_phy_upd_proc_continue = 0x40003e4c + 0x0000000040003e58 r_llc_loc_phy_upd_proc_err_cb = 0x40003e58 + 0x0000000040003e64 r_llc_msg_handler_tab_p_get = 0x40003e64 + 0x0000000040003e70 r_llc_pref_param_compute = 0x40003e70 + 0x0000000040003e7c r_llc_proc_collision_check = 0x40003e7c + 0x0000000040003e88 r_llc_proc_err_ind = 0x40003e88 + 0x0000000040003e94 r_llc_proc_get = 0x40003e94 + 0x0000000040003ea0 r_llc_proc_id_get = 0x40003ea0 + 0x0000000040003eac r_llc_proc_reg = 0x40003eac + 0x0000000040003eb8 r_llc_proc_state_get = 0x40003eb8 + 0x0000000040003ec4 r_llc_proc_state_set = 0x40003ec4 + 0x0000000040003ed0 r_llc_proc_timer_pause_set = 0x40003ed0 + 0x0000000040003edc r_llc_proc_timer_set = 0x40003edc + 0x0000000040003ee8 r_llc_proc_unreg = 0x40003ee8 + 0x0000000040003ef4 r_llc_rem_ch_map_proc_continue = 0x40003ef4 + 0x0000000040003f0c r_llc_rem_con_upd_proc_err_cb = 0x40003f0c + 0x0000000040003f18 r_llc_rem_dl_upd_proc = 0x40003f18 + 0x0000000040003f24 r_llc_rem_encrypt_proc_continue = 0x40003f24 + 0x0000000040003f30 r_llc_rem_encrypt_proc_err_cb = 0x40003f30 + 0x0000000040003f3c r_llc_rem_phy_upd_proc_continue = 0x40003f3c + 0x0000000040003f48 r_llc_rem_phy_upd_proc_err_cb = 0x40003f48 + 0x0000000040003f54 r_llc_role_get = 0x40003f54 + 0x0000000040003f60 r_llc_sk_gen = 0x40003f60 + 0x0000000040003f6c r_llc_start = 0x40003f6c + 0x0000000040003f78 r_llc_stop = 0x40003f78 + 0x0000000040003f84 r_llc_ver_exch_loc_proc_continue = 0x40003f84 + 0x0000000040003f90 r_llc_ver_proc_err_cb = 0x40003f90 + 0x0000000040003f9c r_llcp_pdu_handler_tab_p_get = 0x40003f9c + 0x0000000040003fa8 r_lld_aa_gen = 0x40003fa8 + 0x0000000040003fb4 r_lld_adv_adv_data_set = 0x40003fb4 + 0x0000000040003fc0 r_lld_adv_adv_data_update = 0x40003fc0 + 0x0000000040003fcc r_lld_adv_aux_ch_idx_set = 0x40003fcc + 0x0000000040003fd8 r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8 + 0x0000000040003fe4 r_lld_adv_aux_evt_start_cbk = 0x40003fe4 + 0x0000000040003ff0 r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0 + 0x0000000040003ffc r_lld_adv_coex_env_reset = 0x40003ffc + 0x0000000040004008 r_lld_adv_duration_update = 0x40004008 + 0x0000000040004014 r_lld_adv_dynamic_pti_process = 0x40004014 + 0x0000000040004020 r_lld_adv_end = 0x40004020 + 0x000000004000402c r_lld_adv_evt_canceled_cbk = 0x4000402c + 0x0000000040004038 r_lld_adv_evt_start_cbk = 0x40004038 + 0x0000000040004044 r_lld_adv_ext_chain_construct = 0x40004044 + 0x0000000040004050 r_lld_adv_ext_pkt_prepare = 0x40004050 + 0x000000004000405c r_lld_adv_frm_cbk = 0x4000405c + 0x0000000040004068 r_lld_adv_frm_isr = 0x40004068 + 0x0000000040004074 r_lld_adv_frm_skip_isr = 0x40004074 + 0x0000000040004080 r_lld_adv_init = 0x40004080 + 0x000000004000408c r_lld_adv_pkt_rx = 0x4000408c + 0x0000000040004098 r_lld_adv_pkt_rx_connect_ind = 0x40004098 + 0x00000000400040a4 r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4 + 0x00000000400040b0 r_lld_adv_rand_addr_update = 0x400040b0 + 0x00000000400040bc r_lld_adv_restart = 0x400040bc + 0x00000000400040c8 r_lld_adv_scan_rsp_data_set = 0x400040c8 + 0x00000000400040d4 r_lld_adv_scan_rsp_data_update = 0x400040d4 + 0x00000000400040e0 r_lld_adv_set_tx_power = 0x400040e0 + 0x00000000400040ec r_lld_adv_start = 0x400040ec + 0x00000000400040f8 r_lld_adv_stop = 0x400040f8 + 0x0000000040004104 r_lld_adv_sync_info_set = 0x40004104 + 0x0000000040004110 r_lld_adv_sync_info_update = 0x40004110 + 0x000000004000411c r_lld_calc_aux_rx = 0x4000411c + 0x0000000040004128 r_lld_cca_alloc = 0x40004128 + 0x0000000040004134 r_lld_cca_data_reset = 0x40004134 + 0x0000000040004140 r_lld_cca_free = 0x40004140 + 0x000000004000414c r_lld_ch_assess_data_get = 0x4000414c + 0x0000000040004158 r_lld_ch_idx_get = 0x40004158 + 0x0000000040004164 r_lld_ch_map_set = 0x40004164 + 0x0000000040004170 r_lld_channel_assess = 0x40004170 + 0x000000004000417c r_lld_con_activity_act_offset_compute = 0x4000417c + 0x0000000040004188 r_lld_con_activity_offset_compute = 0x40004188 + 0x0000000040004194 r_lld_con_ch_map_update = 0x40004194 + 0x00000000400041a0 r_lld_con_cleanup = 0x400041a0 + 0x00000000400041ac r_lld_con_current_tx_power_get = 0x400041ac + 0x00000000400041b8 r_lld_con_data_flow_set = 0x400041b8 + 0x00000000400041c4 r_lld_con_data_len_update = 0x400041c4 + 0x00000000400041d0 r_lld_con_data_tx = 0x400041d0 + 0x00000000400041dc r_lld_con_enc_key_load = 0x400041dc + 0x00000000400041e8 r_lld_con_event_counter_get = 0x400041e8 + 0x00000000400041f4 r_lld_con_evt_canceled_cbk = 0x400041f4 + 0x0000000040004200 r_lld_con_evt_duration_min_get = 0x40004200 + 0x000000004000420c r_lld_con_evt_max_eff_time_cal = 0x4000420c + 0x0000000040004218 r_lld_con_evt_sd_evt_time_get = 0x40004218 + 0x0000000040004224 r_lld_con_evt_start_cbk = 0x40004224 + 0x0000000040004230 r_lld_con_evt_time_update = 0x40004230 + 0x000000004000423c r_lld_con_free_all_tx_buf = 0x4000423c + 0x0000000040004248 r_lld_con_frm_cbk = 0x40004248 + 0x0000000040004254 r_lld_con_frm_isr = 0x40004254 + 0x0000000040004260 r_lld_con_frm_skip_isr = 0x40004260 + 0x000000004000426c r_lld_con_init = 0x4000426c + 0x0000000040004278 r_lld_con_llcp_tx = 0x40004278 + 0x0000000040004284 r_lld_con_max_lat_calc = 0x40004284 + 0x0000000040004290 r_lld_con_offset_get = 0x40004290 + 0x000000004000429c r_lld_con_param_update = 0x4000429c + 0x00000000400042a8 r_lld_con_phys_update = 0x400042a8 + 0x00000000400042b4 r_lld_con_pref_slave_evt_dur_set = 0x400042b4 + 0x00000000400042c0 r_lld_con_pref_slave_latency_set = 0x400042c0 + 0x00000000400042cc r_lld_con_rssi_get = 0x400042cc + 0x00000000400042d8 r_lld_con_rx = 0x400042d8 + 0x00000000400042e4 r_lld_con_rx_channel_assess = 0x400042e4 + 0x00000000400042f0 r_lld_con_rx_enc = 0x400042f0 + 0x00000000400042fc r_lld_con_rx_isr = 0x400042fc + 0x0000000040004308 r_lld_con_rx_link_info_check = 0x40004308 + 0x0000000040004314 r_lld_con_rx_llcp_check = 0x40004314 + 0x0000000040004320 r_lld_con_rx_sync_time_update = 0x40004320 + 0x0000000040004338 r_lld_con_set_tx_power = 0x40004338 + 0x0000000040004344 r_lld_con_start = 0x40004344 + 0x000000004000435c r_lld_con_tx = 0x4000435c + 0x0000000040004368 r_lld_con_tx_enc = 0x40004368 + 0x0000000040004374 r_lld_con_tx_isr = 0x40004374 + 0x0000000040004380 r_lld_con_tx_len_update = 0x40004380 + 0x000000004000438c r_lld_con_tx_len_update_for_intv = 0x4000438c + 0x0000000040004398 r_lld_con_tx_len_update_for_rate = 0x40004398 + 0x00000000400043a4 r_lld_con_tx_prog = 0x400043a4 + 0x00000000400043b0 r_lld_conn_dynamic_pti_process = 0x400043b0 + 0x00000000400043bc r_lld_continue_scan_rx_isr_end_process = 0x400043bc + 0x00000000400043c8 r_lld_ext_scan_dynamic_pti_process = 0x400043c8 + 0x00000000400043d4 r_lld_hw_cca_end_isr = 0x400043d4 + 0x00000000400043e0 r_lld_hw_cca_evt_handler = 0x400043e0 + 0x00000000400043ec r_lld_hw_cca_isr = 0x400043ec + 0x00000000400043f8 r_lld_init_cal_anchor_point = 0x400043f8 + 0x0000000040004404 r_lld_init_compute_winoffset = 0x40004404 + 0x0000000040004410 r_lld_init_connect_req_pack = 0x40004410 + 0x000000004000441c r_lld_init_end = 0x4000441c + 0x0000000040004428 r_lld_init_evt_canceled_cbk = 0x40004428 + 0x0000000040004434 r_lld_init_evt_start_cbk = 0x40004434 + 0x0000000040004440 r_lld_init_frm_cbk = 0x40004440 + 0x000000004000444c r_lld_init_frm_eof_isr = 0x4000444c + 0x0000000040004458 r_lld_init_frm_skip_isr = 0x40004458 + 0x0000000040004464 r_lld_init_init = 0x40004464 + 0x0000000040004470 r_lld_init_process_pkt_rx = 0x40004470 + 0x000000004000447c r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c + 0x0000000040004488 r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488 + 0x0000000040004494 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494 + 0x00000000400044a0 r_lld_init_process_pkt_tx = 0x400044a0 + 0x00000000400044ac r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac + 0x00000000400044b8 r_lld_init_sched = 0x400044b8 + 0x00000000400044c4 r_lld_init_set_tx_power = 0x400044c4 + 0x00000000400044d0 r_lld_init_start = 0x400044d0 + 0x00000000400044dc r_lld_init_stop = 0x400044dc + 0x00000000400044e8 r_lld_instant_proc_end = 0x400044e8 + 0x0000000040004500 r_lld_per_adv_ch_map_update = 0x40004500 + 0x000000004000450c r_lld_per_adv_chain_construct = 0x4000450c + 0x0000000040004518 r_lld_per_adv_cleanup = 0x40004518 + 0x0000000040004524 r_lld_per_adv_coex_env_reset = 0x40004524 + 0x0000000040004530 r_lld_per_adv_data_set = 0x40004530 + 0x000000004000453c r_lld_per_adv_data_update = 0x4000453c + 0x0000000040004548 r_lld_per_adv_dynamic_pti_process = 0x40004548 + 0x0000000040004554 r_lld_per_adv_evt_canceled_cbk = 0x40004554 + 0x0000000040004560 r_lld_per_adv_evt_start_cbk = 0x40004560 + 0x000000004000456c r_lld_per_adv_ext_pkt_prepare = 0x4000456c + 0x0000000040004578 r_lld_per_adv_frm_cbk = 0x40004578 + 0x0000000040004584 r_lld_per_adv_frm_isr = 0x40004584 + 0x0000000040004590 r_lld_per_adv_frm_skip_isr = 0x40004590 + 0x000000004000459c r_lld_per_adv_init = 0x4000459c + 0x00000000400045a8 r_lld_per_adv_init_info_get = 0x400045a8 + 0x00000000400045b4 r_lld_per_adv_list_add = 0x400045b4 + 0x00000000400045c0 r_lld_per_adv_list_rem = 0x400045c0 + 0x00000000400045d8 r_lld_per_adv_set_tx_power = 0x400045d8 + 0x00000000400045e4 r_lld_per_adv_start = 0x400045e4 + 0x00000000400045f0 r_lld_per_adv_stop = 0x400045f0 + 0x00000000400045fc r_lld_per_adv_sync_info_get = 0x400045fc + 0x0000000040004608 r_lld_process_cca_data = 0x40004608 + 0x0000000040004614 r_lld_ral_search = 0x40004614 + 0x0000000040004620 r_lld_read_clock = 0x40004620 + 0x000000004000462c r_lld_res_list_add = 0x4000462c + 0x0000000040004638 r_lld_res_list_clear = 0x40004638 + 0x0000000040004644 r_lld_res_list_is_empty = 0x40004644 + 0x0000000040004650 r_lld_res_list_local_rpa_get = 0x40004650 + 0x000000004000465c r_lld_res_list_peer_rpa_get = 0x4000465c + 0x0000000040004668 r_lld_res_list_peer_update = 0x40004668 + 0x0000000040004674 r_lld_res_list_priv_mode_update = 0x40004674 + 0x0000000040004680 r_lld_res_list_rem = 0x40004680 + 0x000000004000468c r_lld_reset_reg = 0x4000468c + 0x0000000040004698 r_lld_rpa_renew = 0x40004698 + 0x00000000400046a4 r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4 + 0x00000000400046b0 r_lld_rpa_renew_evt_start_cbk = 0x400046b0 + 0x00000000400046bc r_lld_rpa_renew_instant_cbk = 0x400046bc + 0x00000000400046c8 r_lld_rxdesc_check = 0x400046c8 + 0x00000000400046d4 r_lld_rxdesc_free = 0x400046d4 + 0x00000000400046e0 r_lld_scan_create_sync = 0x400046e0 + 0x00000000400046ec r_lld_scan_create_sync_cancel = 0x400046ec + 0x00000000400046f8 r_lld_scan_end = 0x400046f8 + 0x0000000040004704 r_lld_scan_evt_canceled_cbk = 0x40004704 + 0x0000000040004710 r_lld_scan_evt_start_cbk = 0x40004710 + 0x000000004000471c r_lld_scan_frm_cbk = 0x4000471c + 0x0000000040004728 r_lld_scan_frm_eof_isr = 0x40004728 + 0x0000000040004734 r_lld_scan_frm_rx_isr = 0x40004734 + 0x0000000040004740 r_lld_scan_frm_skip_isr = 0x40004740 + 0x000000004000474c r_lld_scan_init = 0x4000474c + 0x0000000040004758 r_lld_scan_params_update = 0x40004758 + 0x000000004000477c r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c + 0x0000000040004788 r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788 + 0x0000000040004794 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794 + 0x00000000400047a0 r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0 + 0x00000000400047ac r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac + 0x00000000400047b8 r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8 + 0x00000000400047c4 r_lld_scan_restart = 0x400047c4 + 0x00000000400047d0 r_lld_scan_sched = 0x400047d0 + 0x00000000400047dc r_lld_scan_set_tx_power = 0x400047dc + 0x00000000400047e8 r_lld_scan_start = 0x400047e8 + 0x00000000400047f4 r_lld_scan_stop = 0x400047f4 + 0x0000000040004800 r_lld_scan_sync_accept = 0x40004800 + 0x000000004000480c r_lld_scan_sync_info_unpack = 0x4000480c + 0x0000000040004818 r_lld_scan_trunc_ind = 0x40004818 + 0x0000000040004824 r_lld_sw_cca_evt_handler = 0x40004824 + 0x0000000040004830 r_lld_sw_cca_isr = 0x40004830 + 0x000000004000483c r_lld_sync_ch_map_update = 0x4000483c + 0x0000000040004848 r_lld_sync_cleanup = 0x40004848 + 0x0000000040004854 r_lld_sync_evt_canceled_cbk = 0x40004854 + 0x0000000040004860 r_lld_sync_evt_start_cbk = 0x40004860 + 0x000000004000486c r_lld_sync_frm_cbk = 0x4000486c + 0x0000000040004878 r_lld_sync_frm_eof_isr = 0x40004878 + 0x0000000040004884 r_lld_sync_frm_rx_isr = 0x40004884 + 0x0000000040004890 r_lld_sync_frm_skip_isr = 0x40004890 + 0x000000004000489c r_lld_sync_init = 0x4000489c + 0x00000000400048a8 r_lld_sync_process_pkt_rx = 0x400048a8 + 0x00000000400048b4 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4 + 0x00000000400048c0 r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0 + 0x00000000400048cc r_lld_sync_scan_dynamic_pti_process = 0x400048cc + 0x00000000400048d8 r_lld_sync_sched = 0x400048d8 + 0x00000000400048e4 r_lld_sync_start = 0x400048e4 + 0x00000000400048f0 r_lld_sync_stop = 0x400048f0 + 0x00000000400048fc r_lld_sync_trunc_ind = 0x400048fc + 0x0000000040004908 r_lld_test_cleanup = 0x40004908 + 0x0000000040004914 r_lld_test_evt_canceled_cbk = 0x40004914 + 0x0000000040004920 r_lld_test_evt_start_cbk = 0x40004920 + 0x000000004000492c r_lld_test_freq2chnl = 0x4000492c + 0x0000000040004938 r_lld_test_frm_cbk = 0x40004938 + 0x0000000040004944 r_lld_test_frm_isr = 0x40004944 + 0x0000000040004950 r_lld_test_init = 0x40004950 + 0x000000004000495c r_lld_test_rx_isr = 0x4000495c + 0x0000000040004968 r_lld_test_set_tx_power = 0x40004968 + 0x0000000040004974 r_lld_test_start = 0x40004974 + 0x0000000040004980 r_lld_test_stop = 0x40004980 + 0x000000004000498c r_lld_update_rxbuf = 0x4000498c + 0x0000000040004998 r_lld_update_rxbuf_isr = 0x40004998 + 0x00000000400049a4 r_lld_white_list_add = 0x400049a4 + 0x00000000400049b0 r_lld_white_list_rem = 0x400049b0 + 0x00000000400049bc r_llm_activity_free_get = 0x400049bc + 0x00000000400049c8 r_llm_activity_free_set = 0x400049c8 + 0x00000000400049d4 r_llm_activity_syncing_get = 0x400049d4 + 0x00000000400049e0 r_llm_adv_con_len_check = 0x400049e0 + 0x00000000400049ec r_llm_adv_hdl_to_id = 0x400049ec + 0x00000000400049f8 r_llm_adv_rep_flow_control_check = 0x400049f8 + 0x0000000040004a04 r_llm_adv_rep_flow_control_update = 0x40004a04 + 0x0000000040004a10 r_llm_adv_reports_list_check = 0x40004a10 + 0x0000000040004a1c r_llm_adv_set_all_release = 0x40004a1c + 0x0000000040004a28 r_llm_adv_set_dft_params = 0x40004a28 + 0x0000000040004a34 r_llm_adv_set_release = 0x40004a34 + 0x0000000040004a40 r_llm_aes_res_cb = 0x40004a40 + 0x0000000040004a4c r_llm_ble_update_adv_flow_control = 0x40004a4c + 0x0000000040004a58 r_llm_ch_map_update = 0x40004a58 + 0x0000000040004a64 r_llm_cmd_cmp_send = 0x40004a64 + 0x0000000040004a70 r_llm_cmd_stat_send = 0x40004a70 + 0x0000000040004a7c r_llm_dev_list_empty_entry = 0x40004a7c + 0x0000000040004a88 r_llm_dev_list_search = 0x40004a88 + 0x0000000040004a94 r_llm_env_adv_dup_filt_deinit = 0x40004a94 + 0x0000000040004aa0 r_llm_env_adv_dup_filt_init = 0x40004aa0 + 0x0000000040004aac r_llm_init_ble_adv_report_flow_contol = 0x40004aac + 0x0000000040004ab8 r_llm_is_dev_connected = 0x40004ab8 + 0x0000000040004ac4 r_llm_is_dev_synced = 0x40004ac4 + 0x0000000040004ad0 r_llm_is_non_con_act_ongoing_check = 0x40004ad0 + 0x0000000040004adc r_llm_is_wl_accessible = 0x40004adc + 0x0000000040004ae8 r_llm_le_evt_mask_check = 0x40004ae8 + 0x0000000040004b00 r_llm_link_disc = 0x40004b00 + 0x0000000040004b0c r_llm_master_ch_map_get = 0x40004b0c + 0x0000000040004b18 r_llm_msg_handler_tab_p_get = 0x40004b18 + 0x0000000040004b24 r_llm_no_activity = 0x40004b24 + 0x0000000040004b30 r_llm_per_adv_slot_dur = 0x40004b30 + 0x0000000040004b3c r_llm_plan_elt_get = 0x40004b3c + 0x0000000040004b48 r_llm_rx_path_comp_get = 0x40004b48 + 0x0000000040004b54 r_llm_scan_start = 0x40004b54 + 0x0000000040004b60 r_llm_scan_sync_acad_attach = 0x40004b60 + 0x0000000040004b6c r_llm_scan_sync_acad_detach = 0x40004b6c + 0x0000000040004b78 r_llm_send_adv_lost_event_to_host = 0x40004b78 + 0x0000000040004b84 r_llm_tx_path_comp_get = 0x40004b84 + 0x0000000040004b90 r_misc_deinit = 0x40004b90 + 0x0000000040004b9c r_misc_free_em_buf_in_isr = 0x40004b9c + 0x0000000040004ba8 r_misc_init = 0x40004ba8 + 0x0000000040004bb4 r_misc_msg_handler_tab_p_get = 0x40004bb4 + 0x0000000040004bc0 r_notEqual256 = 0x40004bc0 + 0x0000000040004bcc r_phy_upd_proc_start = 0x40004bcc + 0x0000000040004bd8 r_platform_reset = 0x40004bd8 + 0x0000000040004bf0 r_rf_em_init = 0x40004bf0 + 0x0000000040004bfc r_rf_force_agc_enable = 0x40004bfc + 0x0000000040004c08 r_rf_reg_rd = 0x40004c08 + 0x0000000040004c14 r_rf_reg_wr = 0x40004c14 + 0x0000000040004c20 r_rf_reset = 0x40004c20 + 0x0000000040004c2c r_rf_rssi_convert = 0x40004c2c + 0x0000000040004c38 r_rf_rw_v9_le_disable = 0x40004c38 + 0x0000000040004c44 r_rf_rw_v9_le_enable = 0x40004c44 + 0x0000000040004c50 r_rf_sleep = 0x40004c50 + 0x0000000040004c74 r_rf_util_cs_fmt_convert = 0x40004c74 + 0x0000000040004c80 r_rw_crypto_aes_ccm = 0x40004c80 + 0x0000000040004c8c r_rw_crypto_aes_encrypt = 0x40004c8c + 0x0000000040004c98 r_rw_crypto_aes_init = 0x40004c98 + 0x0000000040004ca4 r_rw_crypto_aes_k1 = 0x40004ca4 + 0x0000000040004cb0 r_rw_crypto_aes_k2 = 0x40004cb0 + 0x0000000040004cbc r_rw_crypto_aes_k3 = 0x40004cbc + 0x0000000040004cc8 r_rw_crypto_aes_k4 = 0x40004cc8 + 0x0000000040004cd4 r_rw_crypto_aes_rand = 0x40004cd4 + 0x0000000040004ce0 r_rw_crypto_aes_result_handler = 0x40004ce0 + 0x0000000040004cec r_rw_crypto_aes_s1 = 0x40004cec + 0x0000000040004cf8 r_rw_cryto_aes_cmac = 0x40004cf8 + 0x0000000040004d04 r_rw_v9_init_em_radio_table = 0x40004d04 + 0x0000000040004d1c r_rwble_sleep_enter = 0x40004d1c + 0x0000000040004d28 r_rwble_sleep_wakeup_end = 0x40004d28 + 0x0000000040004d34 r_rwbtdm_isr_wrapper = 0x40004d34 + 0x0000000040004d40 r_rwip_active_check = 0x40004d40 + 0x0000000040004d4c r_rwip_aes_encrypt = 0x40004d4c + 0x0000000040004d58 r_rwip_assert = 0x40004d58 + 0x0000000040004d64 r_rwip_crypt_evt_handler = 0x40004d64 + 0x0000000040004d70 r_rwip_crypt_isr_handler = 0x40004d70 + 0x0000000040004d7c r_rwip_eif_get = 0x40004d7c + 0x0000000040004d88 r_rwip_half_slot_2_lpcycles = 0x40004d88 + 0x0000000040004d94 r_rwip_hus_2_lpcycles = 0x40004d94 + 0x0000000040004da0 r_rwip_isr = 0x40004da0 + 0x0000000040004dac r_rwip_lpcycles_2_hus = 0x40004dac + 0x0000000040004db8 r_rwip_prevent_sleep_clear = 0x40004db8 + 0x0000000040004dc4 r_rwip_prevent_sleep_set = 0x40004dc4 + 0x0000000040004dd0 r_rwip_schedule = 0x40004dd0 + 0x0000000040004ddc r_rwip_sleep = 0x40004ddc + 0x0000000040004de8 r_rwip_sw_int_handler = 0x40004de8 + 0x0000000040004df4 r_rwip_sw_int_req = 0x40004df4 + 0x0000000040004e00 r_rwip_time_get = 0x40004e00 + 0x0000000040004e0c r_rwip_timer_10ms_handler = 0x40004e0c + 0x0000000040004e18 r_rwip_timer_10ms_set = 0x40004e18 + 0x0000000040004e24 r_rwip_timer_hs_handler = 0x40004e24 + 0x0000000040004e30 r_rwip_timer_hs_set = 0x40004e30 + 0x0000000040004e3c r_rwip_timer_hus_handler = 0x40004e3c + 0x0000000040004e48 r_rwip_timer_hus_set = 0x40004e48 + 0x0000000040004e54 r_rwip_wakeup = 0x40004e54 + 0x0000000040004e60 r_rwip_wakeup_end = 0x40004e60 + 0x0000000040004e6c r_rwip_wlcoex_set = 0x40004e6c + 0x0000000040004e78 r_sch_alarm_clear = 0x40004e78 + 0x0000000040004e84 r_sch_alarm_init = 0x40004e84 + 0x0000000040004e90 r_sch_alarm_prog = 0x40004e90 + 0x0000000040004e9c r_sch_alarm_set = 0x40004e9c + 0x0000000040004ea8 r_sch_alarm_timer_isr = 0x40004ea8 + 0x0000000040004eb4 r_sch_arb_conflict_check = 0x40004eb4 + 0x0000000040004ec0 r_sch_arb_elt_cancel = 0x40004ec0 + 0x0000000040004ed8 r_sch_arb_init = 0x40004ed8 + 0x0000000040004ee4 r_sch_arb_insert = 0x40004ee4 + 0x0000000040004ef0 r_sch_arb_prog_timer = 0x40004ef0 + 0x0000000040004efc r_sch_arb_remove = 0x40004efc + 0x0000000040004f08 r_sch_arb_sw_isr = 0x40004f08 + 0x0000000040004f14 r_sch_plan_chk = 0x40004f14 + 0x0000000040004f20 r_sch_plan_clock_wrap_offset_update = 0x40004f20 + 0x0000000040004f2c r_sch_plan_init = 0x40004f2c + 0x0000000040004f38 r_sch_plan_interval_req = 0x40004f38 + 0x0000000040004f44 r_sch_plan_offset_max_calc = 0x40004f44 + 0x0000000040004f50 r_sch_plan_offset_req = 0x40004f50 + 0x0000000040004f5c r_sch_plan_position_range_compute = 0x40004f5c + 0x0000000040004f68 r_sch_plan_rem = 0x40004f68 + 0x0000000040004f74 r_sch_plan_req = 0x40004f74 + 0x0000000040004f98 r_sch_prog_init = 0x40004f98 + 0x0000000040004fa4 r_sch_prog_push = 0x40004fa4 + 0x0000000040004fb0 r_sch_prog_rx_isr = 0x40004fb0 + 0x0000000040004fbc r_sch_prog_skip_isr = 0x40004fbc + 0x0000000040004fc8 r_sch_prog_tx_isr = 0x40004fc8 + 0x0000000040004fd4 r_sch_slice_bg_add = 0x40004fd4 + 0x0000000040004fe0 r_sch_slice_bg_remove = 0x40004fe0 + 0x0000000040004fec r_sch_slice_compute = 0x40004fec + 0x0000000040004ff8 r_sch_slice_fg_add = 0x40004ff8 + 0x0000000040005004 r_sch_slice_fg_remove = 0x40005004 + 0x0000000040005010 r_sch_slice_init = 0x40005010 + 0x000000004000501c r_sch_slice_per_add = 0x4000501c + 0x0000000040005028 r_sch_slice_per_remove = 0x40005028 + 0x0000000040005034 r_sdk_config_get_bt_sleep_enable = 0x40005034 + 0x0000000040005040 r_sdk_config_get_hl_derived_opts = 0x40005040 + 0x000000004000504c r_sdk_config_get_opts = 0x4000504c + 0x0000000040005058 r_sdk_config_get_priv_opts = 0x40005058 + 0x0000000040005064 r_sdk_config_set_bt_sleep_enable = 0x40005064 + 0x0000000040005070 r_sdk_config_set_hl_derived_opts = 0x40005070 + 0x000000004000507c r_sdk_config_set_opts = 0x4000507c + 0x0000000040005088 r_specialModP256 = 0x40005088 + 0x0000000040005094 r_unloaded_area_init = 0x40005094 + 0x00000000400050a0 r_vhci_flow_off = 0x400050a0 + 0x00000000400050ac r_vhci_flow_on = 0x400050ac + 0x00000000400050b8 r_vhci_notify_host_send_available = 0x400050b8 + 0x00000000400050c4 r_vhci_send_to_host = 0x400050c4 + 0x00000000400050d0 r_vnd_hci_command_handler = 0x400050d0 + 0x00000000400050dc r_vshci_init = 0x400050dc + 0x00000000400050e8 vnd_hci_command_handler_wrapper = 0x400050e8 + 0x00000000400050f4 r_lld_legacy_adv_dynamic_pti_get = 0x400050f4 + 0x0000000040005100 r_lld_legacy_adv_dynamic_pti_process = 0x40005100 + 0x000000004000510c r_lld_ext_adv_dynamic_pti_get = 0x4000510c + 0x0000000040005118 r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118 + 0x0000000040005124 r_lld_ext_adv_dynamic_pti_process = 0x40005124 + 0x0000000040005130 r_lld_adv_ext_pkt_prepare_set = 0x40005130 + 0x0000000040005148 r_lld_adv_ext_chain_connectable_construct = 0x40005148 + 0x0000000040005160 r_lld_adv_pkt_rx_connect_post = 0x40005160 + 0x000000004000516c r_lld_adv_start_init_evt_param = 0x4000516c + 0x0000000040005178 r_lld_adv_start_set_cs = 0x40005178 + 0x0000000040005184 r_lld_adv_start_update_filter_policy = 0x40005184 + 0x0000000040005190 r_lld_adv_start_schedule_asap = 0x40005190 + 0x000000004000519c r_lld_con_tx_prog_new_packet_coex = 0x4000519c + 0x00000000400051b4 r_lld_per_adv_dynamic_pti_get = 0x400051b4 + 0x00000000400051c0 r_lld_per_adv_evt_start_chm_upd = 0x400051c0 + 0x00000000400051cc r_lld_ext_scan_dynamic_pti_get = 0x400051cc + 0x00000000400051d8 r_lld_scan_try_sched = 0x400051d8 + 0x00000000400051e4 r_lld_sync_insert = 0x400051e4 + 0x00000000400051f0 r_sch_prog_ble_push = 0x400051f0 + 0x00000000400051fc r_sch_prog_bt_push = 0x400051fc + 0x0000000040005208 r_lld_init_evt_end_type_set = 0x40005208 + 0x0000000040005214 r_lld_init_evt_end_type_get = 0x40005214 + 0x0000000040005220 r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220 + 0x000000004000522c r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c + 0x0000000040005238 r_lld_init_evt_end_type_check_state_set = 0x40005238 + 0x0000000040005244 r_lld_init_evt_end_type_check_state_get = 0x40005244 + 0x000000003fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x000000003fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x000000003fceffa0 btdm_env_p = 0x3fceffa0 + 0x000000003fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x000000003fceff98 g_rw_init_sem = 0x3fceff98 + 0x000000003fceff94 g_rw_schd_queue = 0x3fceff94 + 0x000000003fceff90 lld_init_env = 0x3fceff90 + 0x000000003fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x000000003fceff88 lld_scan_env = 0x3fceff88 + 0x000000003fceff84 lld_scan_sync_env = 0x3fceff84 + 0x000000003fceff80 lld_test_env = 0x3fceff80 + 0x000000003fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x000000003fceff78 p_lld_env = 0x3fceff78 + 0x000000003fceff74 p_llm_env = 0x3fceff74 + 0x000000003fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x000000003fceff6c r_hli_funcs_p = 0x3fceff6c + 0x000000003fceff68 r_ip_funcs_p = 0x3fceff68 + 0x000000003fceff64 r_modules_funcs_p = 0x3fceff64 + 0x000000003fceff60 r_osi_funcs_p = 0x3fceff60 + 0x000000003fceff5c r_plf_funcs_p = 0x3fceff5c + 0x000000003fceff58 vhci_env_p = 0x3fceff58 + 0x000000003fceff54 aa_gen = 0x3fceff54 + 0x000000003fceff48 aes_env = 0x3fceff48 + 0x000000003fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x000000003fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x000000003fcefef0 btdm_slp_err = 0x3fcefef0 + 0x000000003fcefee8 ecc_env = 0x3fcefee8 + 0x000000003fcefee0 esp_handler = 0x3fcefee0 + 0x000000003fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x000000003fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x000000003fcefed0 g_conflict_elt = 0x3fcefed0 + 0x000000003fcefec0 g_eif_api = 0x3fcefec0 + 0x000000003fcefeb4 g_event_empty = 0x3fcefeb4 + 0x000000003fcefeaa g_llc_state = 0x3fcefeaa + 0x000000003fcefea9 g_llm_state = 0x3fcefea9 + 0x000000003fcefea7 g_max_evt_env = 0x3fcefea7 + 0x000000003fcefea6 g_misc_state = 0x3fcefea6 + 0x000000003fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x000000003fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x000000003fcefe6d g_scan_forever = 0x3fcefe6d + 0x000000003fcefe6c g_time_msb = 0x3fcefe6c + 0x000000003fcefe44 h4tl_env = 0x3fcefe44 + 0x000000003fcefe21 hci_env = 0x3fcefe21 + 0x000000003fcefe20 hci_ext_host = 0x3fcefe20 + 0x000000003fcefe18 hci_fc_env = 0x3fcefe18 + 0x000000003fcefdec hci_tl_env = 0x3fcefdec + 0x000000003fcefdbc ke_env = 0x3fcefdbc + 0x000000003fcefd7c ke_event_env = 0x3fcefd7c + 0x000000003fcefd00 ke_task_env = 0x3fcefd00 + 0x000000003fcefcd8 llc_env = 0x3fcefcd8 + 0x000000003fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x000000003fcefc88 lld_con_env = 0x3fcefc88 + 0x000000003fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x000000003fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x000000003fcefc30 lld_sync_env = 0x3fcefc30 + 0x000000003fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x000000003fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x000000003fcefc18 rwble_env = 0x3fcefc18 + 0x000000003fcefbfc rwip_env = 0x3fcefbfc + 0x000000003fcefbf0 rwip_param = 0x3fcefbf0 + 0x000000003fcefbec rwip_prog_delay = 0x3fcefbec + 0x000000003fcefbb4 rwip_rf = 0x3fcefbb4 + 0x000000003fcefbac sch_alarm_env = 0x3fcefbac + 0x000000003fcefb98 sch_arb_env = 0x3fcefb98 + 0x000000003fcefb90 sch_plan_env = 0x3fcefb90 + 0x000000003fcefa8c sch_prog_env = 0x3fcefa8c + 0x000000003fcefa2c sch_slice_env = 0x3fcefa2c + 0x000000003fcefa24 sch_slice_params = 0x3fcefa24 + 0x000000003fcefa1c timer_env = 0x3fcefa1c + 0x000000003fcefa18 unloaded_area = 0x3fcefa18 + 0x000000003fcefa14 vshci_state = 0x3fcefa14 + 0x000000003fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x000000003fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x000000003fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x000000003fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x000000003fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x000000003fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x000000003fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x000000003fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x000000003fcef9a0 privacy_en = 0x3fcef9a0 + 0x000000003fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x000000003ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x000000003ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x000000003ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x000000003ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x000000003ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x000000003ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x000000003ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x000000003ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x000000003ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x000000003ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x000000003ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x000000003ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x000000003ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x000000003ff1f741 aes_k2_salt = 0x3ff1f741 + 0x000000003ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x000000003ff1f72c aes_k3_salt = 0x3ff1f72c + 0x000000003ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x000000003ff1f718 aes_k4_salt = 0x3ff1f718 + 0x000000003ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x000000003ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x000000003ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x000000003ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x000000003ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x000000003ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x000000003ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x000000003ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x000000003ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x000000003ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x000000003ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x000000003ff1f680 coef_B = 0x3ff1f680 + 0x000000003ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x000000003ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x000000003ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x000000003ff1f51e fixed_tx_time = 0x3ff1f51e + 0x000000003ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x000000003ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x000000003ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x000000003ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x000000003ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x000000003ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x000000003ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x000000003ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x000000003ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x000000003ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x000000003ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x000000003ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x000000003ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x000000003ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x000000003ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x000000003ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x000000003ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x000000003ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x000000003ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x000000003ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x000000003ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x000000003ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x000000003ff1eec3 one_bits = 0x3ff1eec3 + 0x000000003ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x000000003ff1eea8 rwip_priority = 0x3ff1eea8 + 0x000000003ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x0000000040001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 + 0x0000000040001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 + 0x0000000040001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 + 0x0000000040001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c + 0x0000000040001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 + 0x0000000040001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 + 0x0000000040001c7c r_lld_scan_sched_hook = 0x40001c7c + 0x0000000040001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 + 0x0000000040001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 + 0x0000000040001c8c r_lld_adv_frm_isr_hook = 0x40001c8c + 0x0000000040001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 + 0x0000000040001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 + 0x0000000040001c98 r_lld_con_frm_isr_hook = 0x40001c98 + 0x0000000040001c9c r_lld_con_tx_hook = 0x40001c9c + 0x0000000040001ca0 r_lld_con_rx_hook = 0x40001ca0 + 0x0000000040001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 + 0x0000000040001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac + 0x0000000040001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 + 0x0000000040001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 + 0x0000000040001cbc r_lld_init_sched_hook = 0x40001cbc + 0x0000000040001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 + 0x0000000040001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 + 0x0000000040001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 + 0x0000000040001ccc r_lld_per_adv_start_hook = 0x40001ccc + 0x0000000040001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 + 0x0000000040001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 + 0x0000000040001cd8 r_lld_sync_start_hook = 0x40001cd8 + 0x0000000040001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc + 0x0000000040001ce0 r_sch_arb_insert_hook = 0x40001ce0 + 0x0000000040001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 + 0x0000000040005250 esp_pp_rom_version_get = 0x40005250 + 0x000000004000525c RC_GetBlockAckTime = 0x4000525c + 0x0000000040005268 ebuf_list_remove = 0x40005268 + 0x0000000040005274 esf_buf_alloc = 0x40005274 + 0x0000000040005280 esf_buf_alloc_dynamic = 0x40005280 + 0x0000000040005298 GetAccess = 0x40005298 + 0x00000000400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x00000000400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x00000000400052c8 ic_get_trc = 0x400052c8 + 0x00000000400052e0 ic_mac_init = 0x400052e0 + 0x00000000400052ec ic_interface_enabled = 0x400052ec + 0x00000000400052f8 is_lmac_idle = 0x400052f8 + 0x0000000040005304 lmacAdjustTimestamp = 0x40005304 + 0x0000000040005310 lmacDiscardAgedMSDU = 0x40005310 + 0x0000000040005328 lmacEndFrameExchangeSequence = 0x40005328 + 0x0000000040005334 lmacIsIdle = 0x40005334 + 0x0000000040005340 lmacIsLongFrame = 0x40005340 + 0x000000004000534c lmacMSDUAged = 0x4000534c + 0x0000000040005358 lmacPostTxComplete = 0x40005358 + 0x0000000040005364 lmacProcessAllTxTimeout = 0x40005364 + 0x0000000040005370 lmacProcessCollisions = 0x40005370 + 0x000000004000537c lmacProcessRxSucData = 0x4000537c + 0x0000000040005388 lmacReachLongLimit = 0x40005388 + 0x0000000040005394 lmacReachShortLimit = 0x40005394 + 0x00000000400053a0 lmacRecycleMPDU = 0x400053a0 + 0x00000000400053ac lmacRxDone = 0x400053ac + 0x00000000400053c4 lmacTxDone = 0x400053c4 + 0x00000000400053dc mac_tx_set_duration = 0x400053dc + 0x00000000400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x000000004000540c mac_tx_set_plcp2 = 0x4000540c + 0x0000000040005418 pm_check_state = 0x40005418 + 0x0000000040005424 pm_disable_dream_timer = 0x40005424 + 0x0000000040005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x000000004000543c pm_dream = 0x4000543c + 0x0000000040005448 pm_mac_wakeup = 0x40005448 + 0x0000000040005454 pm_mac_sleep = 0x40005454 + 0x0000000040005460 pm_enable_active_timer = 0x40005460 + 0x000000004000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x0000000040005478 pm_local_tsf_process = 0x40005478 + 0x0000000040005484 pm_set_beacon_filter = 0x40005484 + 0x0000000040005490 pm_is_in_wifi_slice_threshold = 0x40005490 + 0x000000004000549c pm_is_waked = 0x4000549c + 0x00000000400054a8 pm_keep_alive = 0x400054a8 + 0x00000000400054c0 pm_on_data_rx = 0x400054c0 + 0x00000000400054cc pm_on_tbtt = 0x400054cc + 0x00000000400054e4 pm_process_tim = 0x400054e4 + 0x00000000400054fc pm_rx_data_process = 0x400054fc + 0x0000000040005514 pm_sleep_for = 0x40005514 + 0x000000004000552c ppAMPDU2Normal = 0x4000552c + 0x0000000040005538 ppAssembleAMPDU = 0x40005538 + 0x0000000040005544 ppCalFrameTimes = 0x40005544 + 0x0000000040005550 ppCalSubFrameLength = 0x40005550 + 0x000000004000555c ppCalTxAMPDULength = 0x4000555c + 0x0000000040005568 ppCheckTxAMPDUlength = 0x40005568 + 0x0000000040005574 ppDequeueRxq_Locked = 0x40005574 + 0x0000000040005580 ppDequeueTxQ = 0x40005580 + 0x000000004000558c ppEmptyDelimiterLength = 0x4000558c + 0x0000000040005598 ppEnqueueRxq = 0x40005598 + 0x00000000400055a4 ppEnqueueTxDone = 0x400055a4 + 0x00000000400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x00000000400055bc ppGetTxframe = 0x400055bc + 0x00000000400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x00000000400055ec ppProcessTxQ = 0x400055ec + 0x00000000400055f8 ppRecordBarRRC = 0x400055f8 + 0x0000000040005604 lmacRequestTxopQueue = 0x40005604 + 0x0000000040005610 lmacReleaseTxopQueue = 0x40005610 + 0x000000004000561c ppRecycleAmpdu = 0x4000561c + 0x0000000040005628 ppRecycleRxPkt = 0x40005628 + 0x0000000040005634 ppResortTxAMPDU = 0x40005634 + 0x0000000040005640 ppResumeTxAMPDU = 0x40005640 + 0x0000000040005658 ppRxPkt = 0x40005658 + 0x0000000040005664 ppRxProtoProc = 0x40005664 + 0x0000000040005670 ppSearchTxQueue = 0x40005670 + 0x000000004000567c ppSearchTxframe = 0x4000567c + 0x0000000040005688 ppSelectNextQueue = 0x40005688 + 0x0000000040005694 ppSubFromAMPDU = 0x40005694 + 0x00000000400056ac ppTxPkt = 0x400056ac + 0x00000000400056b8 ppTxProtoProc = 0x400056b8 + 0x00000000400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x00000000400056d0 pp_coex_tx_request = 0x400056d0 + 0x00000000400056dc pp_hdrsize = 0x400056dc + 0x00000000400056e8 pp_post = 0x400056e8 + 0x00000000400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x0000000040005700 rcGetAmpduSched = 0x40005700 + 0x000000004000570c rcUpdateRxDone = 0x4000570c + 0x0000000040005718 rc_get_trc = 0x40005718 + 0x0000000040005724 rc_get_trc_by_index = 0x40005724 + 0x0000000040005730 rcAmpduLowerRate = 0x40005730 + 0x000000004000573c rcampduuprate = 0x4000573c + 0x0000000040005748 rcClearCurAMPDUSched = 0x40005748 + 0x0000000040005754 rcClearCurSched = 0x40005754 + 0x0000000040005760 rcClearCurStat = 0x40005760 + 0x0000000040005778 rcLowerSched = 0x40005778 + 0x0000000040005784 rcSetTxAmpduLimit = 0x40005784 + 0x000000004000579c rcUpdateAckSnr = 0x4000579c + 0x00000000400057a8 rcUpdateRate = 0x400057a8 + 0x00000000400057c0 rcUpdateTxDoneAmpdu2 = 0x400057c0 + 0x00000000400057cc rcUpSched = 0x400057cc + 0x00000000400057d8 rssi_margin = 0x400057d8 + 0x00000000400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x00000000400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x00000000400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x0000000040005808 trc_calc_duration = 0x40005808 + 0x0000000040005814 trc_isTxAmpduOperational = 0x40005814 + 0x0000000040005820 trc_onAmpduOp = 0x40005820 + 0x000000004000582c TRC_PER_IS_GOOD = 0x4000582c + 0x0000000040005838 trc_SetTxAmpduState = 0x40005838 + 0x0000000040005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x0000000040005850 trcAmpduSetState = 0x40005850 + 0x000000004000585c wDevCheckBlockError = 0x4000585c + 0x0000000040005868 wDev_AppendRxBlocks = 0x40005868 + 0x0000000040005874 wDev_DiscardFrame = 0x40005874 + 0x0000000040005880 wDev_GetNoiseFloor = 0x40005880 + 0x000000004000588c wDev_IndicateAmpdu = 0x4000588c + 0x0000000040005898 wDev_IndicateFrame = 0x40005898 + 0x00000000400058a4 wdev_bank_store = 0x400058a4 + 0x00000000400058b0 wdev_bank_load = 0x400058b0 + 0x00000000400058bc wdev_mac_reg_load = 0x400058bc + 0x00000000400058c8 wdev_mac_reg_store = 0x400058c8 + 0x00000000400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x00000000400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x00000000400058ec wdev_mac_wakeup = 0x400058ec + 0x00000000400058f8 wdev_mac_sleep = 0x400058f8 + 0x0000000040005904 hal_mac_is_dma_enable = 0x40005904 + 0x000000004000591c wDev_ProcessRxSucData = 0x4000591c + 0x0000000040005928 wdevProcessRxSucDataAll = 0x40005928 + 0x0000000040005934 wdev_csi_len_align = 0x40005934 + 0x0000000040005940 ppDequeueTxDone_Locked = 0x40005940 + 0x0000000040005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x0000000040005970 ppMapWaitTxq = 0x40005970 + 0x000000004000597c ppProcessWaitingQueue = 0x4000597c + 0x0000000040005988 ppDisableQueue = 0x40005988 + 0x0000000040005994 pm_allow_tx = 0x40005994 + 0x00000000400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x00000000400059ac ppProcTxCallback = 0x400059ac + 0x000000003ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x000000003fcef954 pTxRx = 0x3fcef954 + 0x000000003fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x000000003fcef94c our_wait_eb = 0x3fcef94c + 0x000000003fcef948 our_tx_eb = 0x3fcef948 + 0x000000003fcef944 pp_wdev_funcs = 0x3fcef944 + 0x000000003fcef940 g_osi_funcs_p = 0x3fcef940 + 0x000000003fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x000000003ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x000000003fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x000000003fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x000000003ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x000000003fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x000000003fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x000000003fcef928 s_fragment_ptr = 0x3fcef928 + 0x000000003fcef924 if_ctrl_ptr = 0x3fcef924 + 0x000000003fcef920 g_intr_lock_mux = 0x3fcef920 + 0x000000003fcef91c g_wifi_global_lock = 0x3fcef91c + 0x000000003fcef918 s_wifi_queue = 0x3fcef918 + 0x000000003fcef914 pp_task_hdl = 0x3fcef914 + 0x000000003fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x000000003fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x000000003fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x000000003fcef904 xphyQueue = 0x3fcef904 + 0x000000003fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x000000003fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x000000003fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x000000003fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x000000003fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x000000003fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x000000003fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x000000003fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x000000003fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x000000003fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x000000003fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x000000003fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x000000003fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x000000003fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x000000003fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x000000003fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x000000003fcef8c0 g_config_func = 0x3fcef8c0 + 0x000000003fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x000000003fcef8b8 g_timer_func = 0x3fcef8b8 + 0x000000003fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x000000003fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x000000003fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x000000003fcef860 g_per_conn_trc = 0x3fcef860 + 0x000000003fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x00000000400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x00000000400059c4 ampdu_dispatch = 0x400059c4 + 0x00000000400059d0 ampdu_dispatch_all = 0x400059d0 + 0x00000000400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x00000000400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x00000000400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x0000000040005a00 chm_is_at_home_channel = 0x40005a00 + 0x0000000040005a0c cnx_node_is_existing = 0x40005a0c + 0x0000000040005a18 cnx_node_search = 0x40005a18 + 0x0000000040005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x0000000040005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x0000000040005a3c ic_reset_rx_ba = 0x40005a3c + 0x0000000040005a48 ieee80211_align_eb = 0x40005a48 + 0x0000000040005a54 ieee80211_ampdu_reorder = 0x40005a54 + 0x0000000040005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x0000000040005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x0000000040005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x0000000040005a90 ieee80211_output_process = 0x40005a90 + 0x0000000040005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x0000000040005ab4 wifi_get_macaddr = 0x40005ab4 + 0x0000000040005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x0000000040005acc wifi_rf_phy_enable = 0x40005acc + 0x0000000040005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x0000000040005ae4 ieee80211_classify = 0x40005ae4 + 0x0000000040005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x0000000040005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x0000000040005b08 ieee80211_search_node = 0x40005b08 + 0x0000000040005b14 roundup2 = 0x40005b14 + 0x0000000040005b20 ieee80211_crypto_encap = 0x40005b20 + 0x0000000040005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x0000000040005b50 wifi_is_started = 0x40005b50 + 0x0000000040005b5c ieee80211_gettid = 0x40005b5c + 0x000000003fcef858 net80211_funcs = 0x3fcef858 + 0x000000003fcef854 g_scan = 0x3fcef854 + 0x000000003fcef850 g_chm = 0x3fcef850 + 0x000000003fcef84c g_ic_ptr = 0x3fcef84c + 0x000000003fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x000000003fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x000000003fcef840 s_netstack_free = 0x3fcef840 + 0x000000003fcef83c mesh_rxcb = 0x3fcef83c + 0x000000003fcef838 sta_rxcb = 0x3fcef838 + 0x0000000040005b68 esp_coex_rom_version_get = 0x40005b68 + 0x0000000040005b74 coex_bt_release = 0x40005b74 + 0x0000000040005b80 coex_bt_request = 0x40005b80 + 0x0000000040005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x0000000040005b98 coex_core_event_duration_get = 0x40005b98 + 0x0000000040005ba4 coex_core_pti_get = 0x40005ba4 + 0x0000000040005bb0 coex_core_release = 0x40005bb0 + 0x0000000040005bbc coex_core_request = 0x40005bbc + 0x0000000040005bc8 coex_core_status_get = 0x40005bc8 + 0x0000000040005be0 coex_event_duration_get = 0x40005be0 + 0x0000000040005bec coex_hw_timer_disable = 0x40005bec + 0x0000000040005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x0000000040005c04 coex_hw_timer_set = 0x40005c04 + 0x0000000040005c10 coex_schm_interval_set = 0x40005c10 + 0x0000000040005c1c coex_schm_lock = 0x40005c1c + 0x0000000040005c28 coex_schm_unlock = 0x40005c28 + 0x0000000040005c34 coex_status_get = 0x40005c34 + 0x0000000040005c40 coex_wifi_release = 0x40005c40 + 0x0000000040005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x000000003fcef834 coex_env_ptr = 0x3fcef834 + 0x000000003fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x000000003fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x000000003fcef828 coexist_funcs = 0x3fcef828 + 0x000000003fcef824 g_coa_funcs_p = 0x3fcef824 + 0x000000003fcef820 g_coex_param_ptr = 0x3fcef820 + 0x0000000040005c58 phy_get_romfuncs = 0x40005c58 + 0x0000000040005c64 rom_abs_temp = 0x40005c64 + 0x0000000040005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x0000000040005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x0000000040005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x0000000040005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x0000000040005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x0000000040005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x0000000040005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x0000000040005cc4 rom_check_noise_floor = 0x40005cc4 + 0x0000000040005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x0000000040005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x0000000040005ce8 rom_dc_iq_est = 0x40005ce8 + 0x0000000040005cf4 rom_disable_agc = 0x40005cf4 + 0x0000000040005d00 rom_en_pwdet = 0x40005d00 + 0x0000000040005d0c rom_enable_agc = 0x40005d0c + 0x0000000040005d18 rom_get_bbgain_db = 0x40005d18 + 0x0000000040005d24 rom_get_data_sat = 0x40005d24 + 0x0000000040005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x0000000040005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x0000000040005d48 rom_i2c_readReg = 0x40005d48 + 0x0000000040005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x0000000040005d60 rom_i2c_writeReg = 0x40005d60 + 0x0000000040005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x0000000040005d78 rom_index_to_txbbgain = 0x40005d78 + 0x0000000040005d84 rom_iq_est_disable = 0x40005d84 + 0x0000000040005d90 rom_iq_est_enable = 0x40005d90 + 0x0000000040005d9c rom_linear_to_db = 0x40005d9c + 0x0000000040005da8 rom_loopback_mode_en = 0x40005da8 + 0x0000000040005db4 rom_mhz2ieee = 0x40005db4 + 0x0000000040005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x0000000040005dcc rom_pbus_debugmode = 0x40005dcc + 0x0000000040005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x0000000040005de4 rom_pbus_force_test = 0x40005de4 + 0x0000000040005df0 rom_pbus_rd = 0x40005df0 + 0x0000000040005dfc rom_pbus_rd_addr = 0x40005dfc + 0x0000000040005e08 rom_pbus_rd_shift = 0x40005e08 + 0x0000000040005e14 rom_pbus_set_dco = 0x40005e14 + 0x0000000040005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x0000000040005e2c rom_pbus_workmode = 0x40005e2c + 0x0000000040005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x0000000040005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x0000000040005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x0000000040005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x0000000040005e68 rom_phy_byte_to_word = 0x40005e68 + 0x0000000040005e74 rom_phy_disable_cca = 0x40005e74 + 0x0000000040005e80 rom_phy_enable_cca = 0x40005e80 + 0x0000000040005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x0000000040005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x0000000040005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x0000000040005eb0 rom_pow_usr = 0x40005eb0 + 0x0000000040005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x0000000040005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x0000000040005ed4 rom_read_sar_dout = 0x40005ed4 + 0x0000000040005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x0000000040005eec rom_set_chan_cal_interp = 0x40005eec + 0x0000000040005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x0000000040005f04 rom_set_noise_floor = 0x40005f04 + 0x0000000040005f10 rom_set_rxclk_en = 0x40005f10 + 0x0000000040005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x0000000040005f28 rom_set_txcap_reg = 0x40005f28 + 0x0000000040005f34 rom_set_txclk_en = 0x40005f34 + 0x0000000040005f40 rom_spur_cal = 0x40005f40 + 0x0000000040005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x0000000040005f58 rom_target_power_add_backoff = 0x40005f58 + 0x0000000040005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x0000000040005f70 rom_txbbgain_to_index = 0x40005f70 + 0x0000000040005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x0000000040005f88 rom_write_gain_mem = 0x40005f88 + 0x0000000040005f94 chip728_phyrom_version = 0x40005f94 + 0x0000000040005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x0000000040005fac rom_enable_wifi_agc = 0x40005fac + 0x0000000040005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x0000000040005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x0000000040005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x0000000040005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x0000000040005fe8 rom_set_cca = 0x40005fe8 + 0x0000000040005ff4 rom_tx_paon_set = 0x40005ff4 + 0x0000000040006000 rom_i2cmst_reg_init = 0x40006000 + 0x000000004000600c rom_iq_corr_enable = 0x4000600c + 0x0000000040006018 rom_fe_reg_init = 0x40006018 + 0x0000000040006024 rom_agc_reg_init = 0x40006024 + 0x0000000040006030 rom_bb_reg_init = 0x40006030 + 0x000000004000603c rom_mac_enable_bb = 0x4000603c + 0x0000000040006048 rom_bb_wdg_cfg = 0x40006048 + 0x0000000040006054 rom_force_txon = 0x40006054 + 0x0000000040006060 rom_fe_txrx_reset = 0x40006060 + 0x000000004000606c rom_set_rx_comp = 0x4000606c + 0x0000000040006078 rom_set_pbus_reg = 0x40006078 + 0x0000000040006084 rom_write_chan_freq = 0x40006084 + 0x0000000040006090 rom_phy_xpd_rf = 0x40006090 + 0x000000004000609c rom_set_xpd_sar = 0x4000609c + 0x00000000400060a8 rom_get_target_power_offset = 0x400060a8 + 0x00000000400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x00000000400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x00000000400060cc rom_get_rate_target_power = 0x400060cc + 0x00000000400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x00000000400060e4 rom_read_sar2_code = 0x400060e4 + 0x00000000400060f0 rom_get_sar2_vol = 0x400060f0 + 0x00000000400060fc rom_get_pll_vol = 0x400060fc + 0x0000000040006108 rom_get_phy_target_power = 0x40006108 + 0x0000000040006114 rom_temp_to_power = 0x40006114 + 0x0000000040006120 rom_phy_track_pll_cap = 0x40006120 + 0x000000004000612c rom_phy_pwdet_always_en = 0x4000612c + 0x0000000040006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x0000000040006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x0000000040006150 rom_get_i2c_hostid = 0x40006150 + 0x000000004000615c rom_enter_critical_phy = 0x4000615c + 0x0000000040006168 rom_exit_critical_phy = 0x40006168 + 0x0000000040006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x0000000040006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x000000004000618c rom_i2c_paral_set_read = 0x4000618c + 0x0000000040006198 rom_i2c_paral_read = 0x40006198 + 0x00000000400061a4 rom_i2c_paral_write = 0x400061a4 + 0x00000000400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x00000000400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x00000000400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x00000000400061d4 rom_chan_to_freq = 0x400061d4 + 0x00000000400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x00000000400061ec rom_dac_rate_set = 0x400061ec + 0x00000000400061f8 rom_tsens_read_init = 0x400061f8 + 0x0000000040006204 rom_tsens_code_read = 0x40006204 + 0x0000000040006210 rom_tsens_index_to_dac = 0x40006210 + 0x000000004000621c rom_tsens_index_to_offset = 0x4000621c + 0x0000000040006228 rom_tsens_dac_cal = 0x40006228 + 0x0000000040006234 rom_code_to_temp = 0x40006234 + 0x0000000040006240 rom_write_pll_cap_mem = 0x40006240 + 0x000000004000624c rom_pll_correct_dcap = 0x4000624c + 0x0000000040006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x0000000040006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x0000000040006270 rom_pll_vol_cal = 0x40006270 + 0x000000004000627c rom_wrtie_pll_cap = 0x4000627c + 0x0000000040006288 rom_set_tx_gain_mem = 0x40006288 + 0x0000000040006294 rom_bt_tx_dig_gain = 0x40006294 + 0x00000000400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x00000000400062ac rom_get_chan_target_power = 0x400062ac + 0x00000000400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x00000000400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x00000000400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x00000000400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x00000000400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x00000000400062f4 rom_i2c_master_reset = 0x400062f4 + 0x0000000040006300 rom_bt_filter_reg = 0x40006300 + 0x000000004000630c rom_phy_bbpll_cal = 0x4000630c + 0x0000000040006318 rom_i2c_sar2_init_code = 0x40006318 + 0x0000000040006324 rom_phy_param_addr = 0x40006324 + 0x0000000040006330 rom_phy_reg_init = 0x40006330 + 0x000000004000633c rom_set_chan_reg = 0x4000633c + 0x0000000040006348 rom_phy_wakeup_init = 0x40006348 + 0x0000000040006354 rom_phy_i2c_init1 = 0x40006354 + 0x0000000040006360 rom_tsens_temp_read = 0x40006360 + 0x000000004000636c rom_bt_track_pll_cap = 0x4000636c + 0x0000000040006378 rom_wifi_track_pll_cap = 0x40006378 + 0x0000000040006384 rom_wifi_set_tx_gain = 0x40006384 + 0x0000000040006390 rom_txpwr_cal_track = 0x40006390 + 0x000000004000639c rom_tx_pwctrl_background = 0x4000639c + 0x00000000400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x00000000400063b4 rom_noise_check_loop = 0x400063b4 + 0x00000000400063c0 rom_phy_close_rf = 0x400063c0 + 0x00000000400063cc rom_phy_xpd_tsens = 0x400063cc + 0x00000000400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x00000000400063e4 rom_phy_ant_init = 0x400063e4 + 0x00000000400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x00000000400063fc rom_wifi_track_tx_power = 0x400063fc + 0x0000000040006408 rom_phy_dig_reg_backup = 0x40006408 + 0x0000000040006414 chip728_phyrom_version_num = 0x40006414 + 0x0000000040006420 rom_mac_tx_chan_offset = 0x40006420 + 0x000000004000642c rom_rx_gain_force = 0x4000642c + 0x000000003fcef81c phy_param_rom = 0x3fcef81c + 0x0000000040001c98 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) + 0x0000000040001b18 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) + 0x0000000040001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x0000000040001fa4 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) + 0x000000004000069c 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) + 0x0000000040001c5c PROVIDE (esp_rom_md5_init = MD5Init) + 0x0000000040001c68 PROVIDE (esp_rom_md5_update = MD5Update) + 0x0000000040001c74 PROVIDE (esp_rom_md5_final = MD5Final) + 0x00000000400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x0000000040000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x000000004000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x0000000040001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_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) + 0x0000000040005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x0000000040005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x0000000040005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x000000004000216c __absvdi2 = 0x4000216c + 0x0000000040002178 __absvsi2 = 0x40002178 + 0x0000000040002184 __adddf3 = 0x40002184 + 0x0000000040002190 __addsf3 = 0x40002190 + 0x000000004000219c __addvdi3 = 0x4000219c + 0x00000000400021a8 __addvsi3 = 0x400021a8 + 0x00000000400021b4 __ashldi3 = 0x400021b4 + 0x00000000400021c0 __ashrdi3 = 0x400021c0 + 0x00000000400021cc __bswapdi2 = 0x400021cc + 0x00000000400021d8 __bswapsi2 = 0x400021d8 + 0x00000000400021e4 __clear_cache = 0x400021e4 + 0x00000000400021f0 __clrsbdi2 = 0x400021f0 + 0x00000000400021fc __clrsbsi2 = 0x400021fc + 0x0000000040002208 __clzdi2 = 0x40002208 + 0x0000000040002214 __clzsi2 = 0x40002214 + 0x0000000040002220 __cmpdi2 = 0x40002220 + 0x000000004000222c __ctzdi2 = 0x4000222c + 0x0000000040002238 __ctzsi2 = 0x40002238 + 0x0000000040002244 __divdc3 = 0x40002244 + 0x0000000040002250 __divdf3 = 0x40002250 + 0x000000004000225c __divdi3 = 0x4000225c + 0x0000000040002268 __divsc3 = 0x40002268 + 0x0000000040002274 __divsf3 = 0x40002274 + 0x0000000040002280 __divsi3 = 0x40002280 + 0x000000004000228c __eqdf2 = 0x4000228c + 0x0000000040002298 __eqsf2 = 0x40002298 + 0x00000000400022a4 __extendsfdf2 = 0x400022a4 + 0x00000000400022b0 __ffsdi2 = 0x400022b0 + 0x00000000400022bc __ffssi2 = 0x400022bc + 0x00000000400022c8 __fixdfdi = 0x400022c8 + 0x00000000400022d4 __fixdfsi = 0x400022d4 + 0x00000000400022e0 __fixsfdi = 0x400022e0 + 0x00000000400022ec __fixsfsi = 0x400022ec + 0x00000000400022f8 __fixunsdfsi = 0x400022f8 + 0x0000000040002304 __fixunssfdi = 0x40002304 + 0x0000000040002310 __fixunssfsi = 0x40002310 + 0x000000004000231c __floatdidf = 0x4000231c + 0x0000000040002328 __floatdisf = 0x40002328 + 0x0000000040002334 __floatsidf = 0x40002334 + 0x0000000040002340 __floatsisf = 0x40002340 + 0x000000004000234c __floatundidf = 0x4000234c + 0x0000000040002358 __floatundisf = 0x40002358 + 0x0000000040002364 __floatunsidf = 0x40002364 + 0x0000000040002370 __floatunsisf = 0x40002370 + 0x000000004000237c __gcc_bcmp = 0x4000237c + 0x0000000040002388 __gedf2 = 0x40002388 + 0x0000000040002394 __gesf2 = 0x40002394 + 0x00000000400023a0 __gtdf2 = 0x400023a0 + 0x00000000400023ac __gtsf2 = 0x400023ac + 0x00000000400023b8 __ledf2 = 0x400023b8 + 0x00000000400023c4 __lesf2 = 0x400023c4 + 0x00000000400023d0 __lshrdi3 = 0x400023d0 + 0x00000000400023dc __ltdf2 = 0x400023dc + 0x00000000400023e8 __ltsf2 = 0x400023e8 + 0x00000000400023f4 __moddi3 = 0x400023f4 + 0x0000000040002400 __modsi3 = 0x40002400 + 0x000000004000240c __muldc3 = 0x4000240c + 0x0000000040002418 __muldf3 = 0x40002418 + 0x0000000040002424 __muldi3 = 0x40002424 + 0x0000000040002430 __mulsc3 = 0x40002430 + 0x000000004000243c __mulsf3 = 0x4000243c + 0x0000000040002448 __mulsi3 = 0x40002448 + 0x0000000040002454 __mulvdi3 = 0x40002454 + 0x0000000040002460 __mulvsi3 = 0x40002460 + 0x000000004000246c __nedf2 = 0x4000246c + 0x0000000040002478 __negdf2 = 0x40002478 + 0x0000000040002484 __negdi2 = 0x40002484 + 0x0000000040002490 __negsf2 = 0x40002490 + 0x000000004000249c __negvdi2 = 0x4000249c + 0x00000000400024a8 __negvsi2 = 0x400024a8 + 0x00000000400024b4 __nesf2 = 0x400024b4 + 0x00000000400024c0 __paritysi2 = 0x400024c0 + 0x00000000400024cc __popcountdi2 = 0x400024cc + 0x00000000400024d8 __popcountsi2 = 0x400024d8 + 0x00000000400024e4 __powidf2 = 0x400024e4 + 0x00000000400024f0 __powisf2 = 0x400024f0 + 0x00000000400024fc __subdf3 = 0x400024fc + 0x0000000040002508 __subsf3 = 0x40002508 + 0x0000000040002514 __subvdi3 = 0x40002514 + 0x0000000040002520 __subvsi3 = 0x40002520 + 0x000000004000252c __truncdfsf2 = 0x4000252c + 0x0000000040002538 __ucmpdi2 = 0x40002538 + 0x0000000040002544 __udivdi3 = 0x40002544 + 0x0000000040002550 __udivmoddi4 = 0x40002550 + 0x000000004000255c __udivsi3 = 0x4000255c + 0x0000000040002568 __udiv_w_sdiv = 0x40002568 + 0x0000000040002574 __umoddi3 = 0x40002574 + 0x0000000040002580 __umodsi3 = 0x40002580 + 0x000000004000258c __unorddf2 = 0x4000258c + 0x0000000040002598 __unordsf2 = 0x40002598 + 0x00000000400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x00000000400011e8 memset = 0x400011e8 + 0x00000000400011f4 memcpy = 0x400011f4 + 0x0000000040001200 memmove = 0x40001200 + 0x000000004000120c memcmp = 0x4000120c + 0x0000000040001218 strcpy = 0x40001218 + 0x0000000040001224 strncpy = 0x40001224 + 0x0000000040001230 strcmp = 0x40001230 + 0x000000004000123c strncmp = 0x4000123c + 0x0000000040001248 strlen = 0x40001248 + 0x0000000040001254 strstr = 0x40001254 + 0x0000000040001260 bzero = 0x40001260 + 0x0000000040001278 sbrk = 0x40001278 + 0x0000000040001284 isalnum = 0x40001284 + 0x0000000040001290 isalpha = 0x40001290 + 0x000000004000129c isascii = 0x4000129c + 0x00000000400012a8 isblank = 0x400012a8 + 0x00000000400012b4 iscntrl = 0x400012b4 + 0x00000000400012c0 isdigit = 0x400012c0 + 0x00000000400012cc islower = 0x400012cc + 0x00000000400012d8 isgraph = 0x400012d8 + 0x00000000400012e4 isprint = 0x400012e4 + 0x00000000400012f0 ispunct = 0x400012f0 + 0x00000000400012fc isspace = 0x400012fc + 0x0000000040001308 isupper = 0x40001308 + 0x0000000040001314 toupper = 0x40001314 + 0x0000000040001320 tolower = 0x40001320 + 0x000000004000132c toascii = 0x4000132c + 0x0000000040001338 memccpy = 0x40001338 + 0x0000000040001344 memchr = 0x40001344 + 0x0000000040001350 memrchr = 0x40001350 + 0x000000004000135c strcasecmp = 0x4000135c + 0x0000000040001368 strcasestr = 0x40001368 + 0x0000000040001374 strcat = 0x40001374 + 0x0000000040001380 strdup = 0x40001380 + 0x000000004000138c strchr = 0x4000138c + 0x0000000040001398 strcspn = 0x40001398 + 0x00000000400013a4 strcoll = 0x400013a4 + 0x00000000400013b0 strlcat = 0x400013b0 + 0x00000000400013bc strlcpy = 0x400013bc + 0x00000000400013c8 strlwr = 0x400013c8 + 0x00000000400013d4 strncasecmp = 0x400013d4 + 0x00000000400013e0 strncat = 0x400013e0 + 0x00000000400013ec strndup = 0x400013ec + 0x00000000400013f8 strnlen = 0x400013f8 + 0x0000000040001404 strrchr = 0x40001404 + 0x0000000040001410 strsep = 0x40001410 + 0x000000004000141c strspn = 0x4000141c + 0x0000000040001428 strtok_r = 0x40001428 + 0x0000000040001434 strupr = 0x40001434 + 0x0000000040001440 longjmp = 0x40001440 + 0x000000004000144c setjmp = 0x4000144c + 0x0000000040001458 abs = 0x40001458 + 0x0000000040001464 div = 0x40001464 + 0x0000000040001470 labs = 0x40001470 + 0x000000004000147c ldiv = 0x4000147c + 0x0000000040001488 qsort = 0x40001488 + 0x0000000040001494 rand_r = 0x40001494 + 0x00000000400014a0 rand = 0x400014a0 + 0x00000000400014ac srand = 0x400014ac + 0x00000000400014b8 utoa = 0x400014b8 + 0x00000000400014c4 itoa = 0x400014c4 + 0x00000000400014d0 atoi = 0x400014d0 + 0x00000000400014dc atol = 0x400014dc + 0x00000000400014e8 strtol = 0x400014e8 + 0x00000000400014f4 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) + 0x0000000040001554 __swbuf = 0x40001554 + 0x000000003fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x000000003fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x00000000006f0000 iram_dram_offset = 0x6f0000 + 0x000000003fce9700 bootloader_usable_dram_end = 0x3fce9700 + 0x0000000000002000 bootloader_stack_overhead = 0x2000 + 0x0000000000004000 bootloader_dram_seg_len = 0x4000 + 0x0000000000007000 bootloader_iram_loader_seg_len = 0x7000 + 0x0000000000003000 bootloader_iram_seg_len = 0x3000 + 0x000000003fce7700 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead) + 0x000000003fce3700 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len) + 0x00000000403cc700 bootloader_iram_loader_seg_start = ((bootloader_dram_seg_start - bootloader_iram_loader_seg_len) + iram_dram_offset) + 0x00000000403c9700 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len) + 0x0000000000000001 ASSERT ((bootloader_iram_loader_seg_start == 0x403cc700), bootloader_iram_loader_seg_start inconsistent with SRAM_IRAM_END) + +.iram_loader.text + 0x00000000403cc700 0x2ccf + 0x00000000403cc700 . = ALIGN (0x10) + 0x00000000403cc700 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x00000000403cc700 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000403cc700 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x20 (size before relaxing) + .iram1.1.literal + 0x00000000403cc70c 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .iram1.2.literal + 0x00000000403cc740 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000403cc740 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.3.literal + 0x00000000403cc744 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x00000000403cc74c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x00000000403cc74c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .iram1.0.literal + 0x00000000403cc760 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x00000000403cc768 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x00000000403cc774 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x00000000403cc774 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x00000000403cc774 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.0.literal + 0x00000000403cc778 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x00000000403cc778 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_early_timestamp + 0x00000000403cc778 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.bootloader_common_ota_select_crc + 0x00000000403cc77c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x00000000403cc780 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x00000000403cc780 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x00000000403cc794 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc (size before relaxing) + .literal.spi_to_esp_err + 0x00000000403cc794 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000403cc79c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_munmap + 0x00000000403cc7b0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_flash_read + 0x00000000403cc7b4 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_flash_erase_sector + 0x00000000403cc7cc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_write + 0x00000000403cc7d0 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_enable_wp + 0x00000000403cc7e4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_fill_random + 0x00000000403cc7e4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_random_disable + 0x00000000403cc7f4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x34 (size before relaxing) + .literal.log_invalid_app_partition + 0x00000000403cc818 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.cache_ll_l1_get_bus + 0x00000000403cc82c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.cache_ll_l1_enable_bus + 0x00000000403cc83c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xc (size before relaxing) + .literal.load_image + 0x00000000403cc844 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x74 (size before relaxing) + .literal.try_load_partition + 0x00000000403cc858 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.set_actual_ota_seq + 0x00000000403cc85c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_utility_load_partition_table + 0x00000000403cc86c 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x84 (size before relaxing) + .literal.bootloader_utility_get_selected_boot_partition + 0x00000000403cc8b0 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x70 (size before relaxing) + .literal.bootloader_reset + 0x00000000403cc8cc 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_utility_load_boot_image + 0x00000000403cc8d4 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_sha256_start + 0x00000000403cc8e0 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x00000000403cc8ec 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x1c (size before relaxing) + .literal.bootloader_sha256_finish + 0x00000000403cc900 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x1c (size before relaxing) + .literal.__assert_func + 0x00000000403cc908 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x8 (size before relaxing) + .literal.unlikely.abort + 0x00000000403cc90c 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_ana_super_wdt_reset_config + 0x00000000403cc918 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .literal.bootloader_ana_bod_reset_config + 0x00000000403cc924 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0xc (size before relaxing) + .literal.bootloader_ana_clock_glitch_reset_config + 0x00000000403cc928 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0xc (size before relaxing) + .literal.process_checksum + 0x00000000403cc930 0xc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x20 (size before relaxing) + .literal.process_image_header + 0x00000000403cc93c 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_util_regions_overlap + 0x00000000403cc944 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.verify_load_addresses + 0x00000000403cc954 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x98 (size before relaxing) + .literal.process_appended_hash_and_sig$constprop$0 + 0x00000000403cc9c4 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.should_load + 0x00000000403cc9c8 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.process_segments + 0x00000000403cc9cc 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x90 (size before relaxing) + .literal.image_load + 0x00000000403cc9f4 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x64 (size before relaxing) + .literal.bootloader_load_image + 0x00000000403cca08 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_table_verify + 0x00000000403cca08 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x54 (size before relaxing) + .literal.mmu_hal_init + 0x00000000403cca34 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_map_region + 0x00000000403cca3c 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.cache_hal_init + 0x00000000403cca4c 0x14 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x1c (size before relaxing) + .literal.cache_hal_disable + 0x00000000403cca60 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0xc (size before relaxing) + .literal.cache_hal_enable + 0x00000000403cca60 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x00000000403cca60 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.clk_ll_rtc_slow_get_src + 0x00000000403cca64 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x00000000403cca68 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.clk_ll_xtal32k_enable$constprop$0 + 0x00000000403cca8c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable$part$0 + 0x00000000403cca9c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_32k_enable + 0x00000000403ccaa4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_8m_enable + 0x00000000403ccaa8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x00000000403ccab0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x00000000403ccab0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000403ccab0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x00000000403ccab8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_get + 0x00000000403ccab8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x00000000403ccab8 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 + 0x00000000403ccac4 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 + 0x00000000403ccac4 0x8 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 + 0x00000000403ccacc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x00000000403ccadc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x78 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x00000000403ccaec 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x00000000403ccaec 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x00000000403ccaec 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_divider_set + 0x00000000403ccaec 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_divider_set + 0x00000000403ccaf8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .iram1.0 0x00000000403ccafc 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x00000000403ccafc esp_flash_encryption_enabled + *fill* 0x00000000403ccb06 0x2 + .iram1.0 0x00000000403ccb08 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x00000000403ccb08 bootloader_configure_spi_pins + *fill* 0x00000000403ccb87 0x1 + .iram1.1 0x00000000403ccb88 0x1c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x00000000403ccb88 bootloader_flash_execute_command_common + *fill* 0x00000000403ccd4a 0x2 + .iram1.2 0x00000000403ccd4c 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x00000000403ccd4c bootloader_execute_flash_command + .iram1.0 0x00000000403ccd6c 0x132 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x146 (size before relaxing) + 0x00000000403ccd6c bootloader_flash_unlock + *fill* 0x00000000403cce9e 0x2 + .iram1.3 0x00000000403ccea0 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x36 (size before relaxing) + 0x00000000403ccea0 bootloader_flash_read_sfdp + *fill* 0x00000000403cced2 0x2 + .iram1.4 0x00000000403cced4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + 0x00000000403cced4 bootloader_read_flash_id + .iram1.6 0x00000000403ccf04 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xbb (size before relaxing) + 0x00000000403ccf04 bootloader_flash_xmc_startup + *fill* 0x00000000403ccfa3 0x1 + .iram1.0 0x00000000403ccfa4 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x00000000403ccfa4 bootloader_flash_cs_timing_config + *fill* 0x00000000403ccfde 0x2 + .iram1.2 0x00000000403ccfe0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x00000000403ccfe0 bootloader_flash_set_dummy_out + .iram1.3 0x00000000403cd008 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x14 (size before relaxing) + 0x00000000403cd008 bootloader_flash_dummy_config + *fill* 0x00000000403cd015 0x3 + .iram1.0 0x00000000403cd018 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x00000000403cd018 efuse_hal_chip_revision + .iram1.1 0x00000000403cd030 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x00000000403cd030 efuse_hal_flash_encryption_enabled + *fill* 0x00000000403cd057 0x1 + .iram1.0 0x00000000403cd058 0x3b esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x00000000403cd058 efuse_hal_get_major_chip_version + *fill* 0x00000000403cd093 0x1 + .iram1.1 0x00000000403cd094 0x3a esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x00000000403cd094 efuse_hal_get_minor_chip_version + *fill* 0x00000000403cd0ce 0x0 + *fill* 0x00000000403cd0ce 0x2 + .iram1.5 0x00000000403cd0d0 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *fill* 0x00000000403cd116 0x0 + *liblog.a:(.literal .text .literal.* .text.*) + *fill* 0x00000000403cd116 0x2 + .text.esp_log_early_timestamp + 0x00000000403cd118 0x1d esp-idf/log/liblog.a(log_noos.c.obj) + 0x00000000403cd118 esp_log_early_timestamp + 0x00000000403cd118 esp_log_timestamp + *fill* 0x00000000403cd135 0x0 + *libgcc.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* 0x00000000403cd135 0x3 + .text.bootloader_common_ota_select_crc + 0x00000000403cd138 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x00000000403cd138 bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_valid + 0x00000000403cd14c 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x26 (size before relaxing) + 0x00000000403cd14c bootloader_common_ota_select_valid + *fill* 0x00000000403cd16e 0x2 + .text.bootloader_common_check_chip_validity + 0x00000000403cd170 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x102 (size before relaxing) + 0x00000000403cd170 bootloader_common_check_chip_validity + *fill* 0x00000000403cd266 0x2 + .text.bootloader_common_get_active_otadata + 0x00000000403cd268 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x30 (size before relaxing) + 0x00000000403cd268 bootloader_common_get_active_otadata + *fill* 0x00000000403cd290 0x0 + .text.bootloader_common_ota_select_invalid + 0x00000000403cd290 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x00000000403cd290 bootloader_common_ota_select_invalid + *fill* 0x00000000403cd2a9 0x0 + *fill* 0x00000000403cd2a9 0x0 + *fill* 0x00000000403cd2a9 0x3 + .text.bootloader_common_select_otadata + 0x00000000403cd2ac 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x00000000403cd2ac bootloader_common_select_otadata + *fill* 0x00000000403cd2f7 0x0 + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cd2f7 0x1 + .text.spi_to_esp_err + 0x00000000403cd2f8 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x00000000403cd315 0x3 + .text.bootloader_mmap + 0x00000000403cd318 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xa6 (size before relaxing) + 0x00000000403cd318 bootloader_mmap + *fill* 0x00000000403cd3b2 0x2 + .text.bootloader_munmap + 0x00000000403cd3b4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x28 (size before relaxing) + 0x00000000403cd3b4 bootloader_munmap + .text.bootloader_flash_read + 0x00000000403cd3d8 0xd1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xe5 (size before relaxing) + 0x00000000403cd3d8 bootloader_flash_read + *fill* 0x00000000403cd4a9 0x3 + .text.bootloader_flash_erase_sector + 0x00000000403cd4ac 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x16 (size before relaxing) + 0x00000000403cd4ac bootloader_flash_erase_sector + *fill* 0x00000000403cd4be 0x2 + .text.bootloader_flash_write + 0x00000000403cd4c0 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x96 (size before relaxing) + 0x00000000403cd4c0 bootloader_flash_write + *fill* 0x00000000403cd552 0x2 + .text.bootloader_enable_wp + 0x00000000403cd554 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x00000000403cd554 bootloader_enable_wp + *fill* 0x00000000403cd567 0x1 + .text.bootloader_mmap_get_free_pages + 0x00000000403cd568 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x00000000403cd568 bootloader_mmap_get_free_pages + *fill* 0x00000000403cd570 0x0 + *fill* 0x00000000403cd570 0x0 + *fill* 0x00000000403cd570 0x0 + *fill* 0x00000000403cd570 0x0 + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + .text.bootloader_fill_random + 0x00000000403cd570 0x4f esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x53 (size before relaxing) + 0x00000000403cd570 bootloader_fill_random + *fill* 0x00000000403cd5bf 0x0 + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + *fill* 0x00000000403cd5bf 0x1 + .text.bootloader_random_disable + 0x00000000403cd5c0 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x00000000403cd5c0 bootloader_random_disable + *fill* 0x00000000403cd673 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* 0x00000000403cd673 0x1 + .text.log_invalid_app_partition + 0x00000000403cd674 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000403cd6c7 0x1 + .text.cache_ll_l1_get_bus + 0x00000000403cd6c8 0x2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x00000000403cd6f7 0x1 + .text.cache_ll_l1_enable_bus + 0x00000000403cd6f8 0x57 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000403cd74f 0x1 + .text.load_image + 0x00000000403cd750 0x145 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x185 (size before relaxing) + *fill* 0x00000000403cd895 0x3 + .text.try_load_partition + 0x00000000403cd898 0x2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x33 (size before relaxing) + *fill* 0x00000000403cd8c7 0x1 + .text.set_actual_ota_seq + 0x00000000403cd8c8 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x8b (size before relaxing) + *fill* 0x00000000403cd93f 0x1 + .text.bootloader_utility_load_partition_table + 0x00000000403cd940 0x16c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x180 (size before relaxing) + 0x00000000403cd940 bootloader_utility_load_partition_table + .text.bootloader_utility_get_selected_boot_partition + 0x00000000403cdaac 0x135 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x158 (size before relaxing) + 0x00000000403cdaac bootloader_utility_get_selected_boot_partition + *fill* 0x00000000403cdbe1 0x3 + .text.bootloader_reset + 0x00000000403cdbe4 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x20 (size before relaxing) + 0x00000000403cdbe4 bootloader_reset + *fill* 0x00000000403cdc01 0x3 + .text.bootloader_utility_load_boot_image + 0x00000000403cdc04 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x110 (size before relaxing) + 0x00000000403cdc04 bootloader_utility_load_boot_image + *fill* 0x00000000403cdcf4 0x0 + *fill* 0x00000000403cdcf4 0x0 + *fill* 0x00000000403cdcf4 0x0 + *fill* 0x00000000403cdcf4 0x0 + *fill* 0x00000000403cdcf4 0x0 + .text.index_to_partition + 0x00000000403cdcf4 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x00000000403cdd38 0x0 + *fill* 0x00000000403cdd38 0x0 + .text.bootloader_debug_buffer + 0x00000000403cdd38 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x00000000403cdd38 bootloader_debug_buffer + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cdd3d 0x3 + .text.bootloader_sha256_start + 0x00000000403cdd40 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x00000000403cdd40 bootloader_sha256_start + .text.bootloader_sha256_data + 0x00000000403cdd58 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x37 (size before relaxing) + 0x00000000403cdd58 bootloader_sha256_data + *fill* 0x00000000403cdd8b 0x1 + .text.bootloader_sha256_finish + 0x00000000403cdd8c 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x00000000403cdd8c bootloader_sha256_finish + *fill* 0x00000000403cddbd 0x0 + *fill* 0x00000000403cddbd 0x0 + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cddbd 0x3 + .text.bootloader_console_deinit + 0x00000000403cddc0 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x00000000403cddc0 bootloader_console_deinit + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cddc5 0x3 + .text.__assert_func + 0x00000000403cddc8 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x00000000403cddc8 __assert_func + *fill* 0x00000000403cdddf 0x1 + .text.unlikely.abort + 0x00000000403cdde0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x00000000403cdde0 abort + *fill* 0x00000000403cde10 0x0 + *fill* 0x00000000403cde10 0x0 + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + .text.bootloader_ana_super_wdt_reset_config + 0x00000000403cde10 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x00000000403cde10 bootloader_ana_super_wdt_reset_config + *fill* 0x00000000403cde4b 0x1 + .text.bootloader_ana_bod_reset_config + 0x00000000403cde4c 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x00000000403cde4c bootloader_ana_bod_reset_config + *fill* 0x00000000403cde86 0x2 + .text.bootloader_ana_clock_glitch_reset_config + 0x00000000403cde88 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x00000000403cde88 bootloader_ana_clock_glitch_reset_config + *fill* 0x00000000403cdec2 0x0 + *fill* 0x00000000403cdec2 0x0 + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cdec2 0x2 + .text.process_checksum + 0x00000000403cdec4 0xab esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x00000000403cdf6f 0x1 + .text.process_image_header + 0x00000000403cdf70 0xbf esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xd3 (size before relaxing) + *fill* 0x00000000403ce02f 0x1 + .text.bootloader_util_regions_overlap + 0x00000000403ce030 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x3c (size before relaxing) + .text.verify_load_addresses + 0x00000000403ce068 0x19f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1b7 (size before relaxing) + *fill* 0x00000000403ce207 0x1 + .text.process_appended_hash_and_sig$constprop$0 + 0x00000000403ce208 0x59 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x5d (size before relaxing) + *fill* 0x00000000403ce261 0x3 + .text.should_load + 0x00000000403ce264 0x72 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x00000000403ce2d6 0x2 + .text.process_segments + 0x00000000403ce2d8 0x2d4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x2ec (size before relaxing) + .text.image_load + 0x00000000403ce5ac 0x1ee esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x20e (size before relaxing) + *fill* 0x00000000403ce79a 0x2 + .text.bootloader_load_image + 0x00000000403ce79c 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + 0x00000000403ce79c bootloader_load_image + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 0x0 + *fill* 0x00000000403ce7ac 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 + 0x00000000403ce7ac 0x11d esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x124 (size before relaxing) + 0x00000000403ce7ac 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.*) + *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403ce8c9 0x3 + .text.mmu_hal_init + 0x00000000403ce8cc 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x00000000403ce8cc mmu_hal_init + .text.mmu_hal_map_region + 0x00000000403ce8f0 0x81 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x00000000403ce8f0 mmu_hal_map_region + *libhal.a:cache_hal.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403ce971 0x3 + .text.cache_hal_init + 0x00000000403ce974 0x8a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x00000000403ce974 cache_hal_init + *fill* 0x00000000403ce9fe 0x2 + .text.cache_hal_disable + 0x00000000403cea00 0x25 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x00000000403cea00 cache_hal_disable + *fill* 0x00000000403cea25 0x3 + .text.cache_hal_enable + 0x00000000403cea28 0x2d esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x00000000403cea28 cache_hal_enable + *fill* 0x00000000403cea55 0x0 + *fill* 0x00000000403cea55 0x0 + *fill* 0x00000000403cea55 0x0 + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + *fill* 0x00000000403cea55 0x3 + .text.rtc_clk_bbpll_disable + 0x00000000403cea58 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x00000000403cea77 0x1 + .text.clk_ll_rtc_slow_get_src + 0x00000000403cea78 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000403cea93 0x1 + .text.rtc_clk_cpu_freq_to_xtal + 0x00000000403cea94 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xad (size before relaxing) + *fill* 0x00000000403ceb3d 0x3 + .text.clk_ll_xtal32k_enable$constprop$0 + 0x00000000403ceb40 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x00000000403cebb2 0x2 + .text.rtc_clk_32k_enable$part$0 + 0x00000000403cebb4 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable + 0x00000000403cebe4 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403cebe4 rtc_clk_32k_enable + *fill* 0x00000000403cec1a 0x2 + .text.rtc_clk_8m_enable + 0x00000000403cec1c 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403cec1c rtc_clk_8m_enable + *fill* 0x00000000403ceca1 0x3 + .text.rtc_clk_slow_src_set + 0x00000000403ceca4 0x77 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x7a (size before relaxing) + 0x00000000403ceca4 rtc_clk_slow_src_set + *fill* 0x00000000403ced1b 0x1 + .text.rtc_clk_slow_src_get + 0x00000000403ced1c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd (size before relaxing) + 0x00000000403ced1c rtc_clk_slow_src_get + *fill* 0x00000000403ced26 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x00000000403ced28 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1f (size before relaxing) + 0x00000000403ced28 rtc_clk_slow_freq_get_hz + *fill* 0x00000000403ced44 0x0 + .text.rtc_clk_fast_src_set + 0x00000000403ced44 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403ced44 rtc_clk_fast_src_set + *fill* 0x00000000403ced83 0x1 + .text.rtc_clk_fast_src_get + 0x00000000403ced84 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403ced84 rtc_clk_fast_src_get + .text.rtc_clk_xtal_freq_get + 0x00000000403ced94 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x36 (size before relaxing) + 0x00000000403ced94 rtc_clk_xtal_freq_get + 0x00000000403ced94 rtc_get_xtal + *fill* 0x00000000403cedc6 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x00000000403cedc8 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x57 (size before relaxing) + 0x00000000403cedc8 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x00000000403cee1b 0x1 + .text.rtc_clk_cpu_freq_get_config + 0x00000000403cee1c 0xbd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc1 (size before relaxing) + 0x00000000403cee1c rtc_clk_cpu_freq_get_config + *fill* 0x00000000403ceed9 0x3 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x00000000403ceedc 0x1d3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1db (size before relaxing) + *fill* 0x00000000403cf0af 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x00000000403cf0b0 0x24d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x261 (size before relaxing) + 0x00000000403cf0b0 rtc_clk_cpu_freq_set_config + *fill* 0x00000000403cf2fd 0x3 + .text.rtc_clk_xtal_freq_update + 0x00000000403cf300 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403cf300 rtc_clk_xtal_freq_update + *fill* 0x00000000403cf316 0x2 + .text.rtc_clk_apb_freq_update + 0x00000000403cf318 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403cf318 rtc_clk_apb_freq_update + *fill* 0x00000000403cf322 0x2 + .text.rtc_clk_apb_freq_get + 0x00000000403cf324 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403cf324 rtc_clk_apb_freq_get + *fill* 0x00000000403cf32e 0x2 + .text.rtc_clk_divider_set + 0x00000000403cf330 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x52 (size before relaxing) + 0x00000000403cf330 rtc_clk_divider_set + *fill* 0x00000000403cf37f 0x1 + .text.rtc_clk_8m_divider_set + 0x00000000403cf380 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4d (size before relaxing) + 0x00000000403cf380 rtc_clk_8m_divider_set + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *fill* 0x00000000403cf3ca 0x0 + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + *fill* 0x00000000403cf3ca 0x2 + .fini 0x00000000403cf3cc 0x3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + 0x00000000403cf3cc _fini + *(.gnu.version) + 0x00000000403cf3cf _loader_text_end = ABSOLUTE (.) + +.iram.text 0x00000000403c9700 0xbdd + 0x00000000403c9700 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x00000000403c9700 0x3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + 0x00000000403c9700 _init + 0x00000000403c9703 _stext = . + 0x00000000403c9703 _text_start = ABSOLUTE (.) + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *fill* 0x00000000403c9703 0x1 + .literal.call_start_cpu0 + 0x00000000403c9704 0x1c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_init + 0x00000000403c9720 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x180 (size before relaxing) + .literal.bootloader_clock_configure + 0x00000000403c980c 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_init_mem + 0x00000000403c982c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_random_enable + 0x00000000403c982c 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x70 (size before relaxing) + .literal.bootloader_flash_update_id + 0x00000000403c9890 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_clear_bss_section + 0x00000000403c9890 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_read_bootloader_header + 0x00000000403c9890 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_check_bootloader_validity + 0x00000000403c9898 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + .literal.bootloader_config_wdt + 0x00000000403c98a0 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_enable_random + 0x00000000403c98c4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_print_banner + 0x00000000403c98c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_console_init + 0x00000000403c98d8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .literal.esp_cpu_configure_region_protection + 0x00000000403c98dc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_init + 0x00000000403c98e4 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x68 (size before relaxing) + .text.call_start_cpu0 + 0x00000000403c9908 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x7c (size before relaxing) + 0x00000000403c9908 call_start_cpu0 + .text.bootloader_init + 0x00000000403c9974 0x315 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x369 (size before relaxing) + 0x00000000403c9974 bootloader_init + *fill* 0x00000000403c9c89 0x3 + .text.bootloader_clock_configure + 0x00000000403c9c8c 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0xce (size before relaxing) + 0x00000000403c9c8c bootloader_clock_configure + *fill* 0x00000000403c9d4b 0x1 + .text.bootloader_init_mem + 0x00000000403c9d4c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x00000000403c9d4c bootloader_init_mem + *fill* 0x00000000403c9d54 0x0 + .text.bootloader_random_enable + 0x00000000403c9d54 0x23e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x00000000403c9d54 bootloader_random_enable + *fill* 0x00000000403c9f92 0x2 + .text.bootloader_flash_update_id + 0x00000000403c9f94 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x00000000403c9f94 bootloader_flash_update_id + *fill* 0x00000000403c9fa6 0x2 + .text.bootloader_clear_bss_section + 0x00000000403c9fa8 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x00000000403c9fa8 bootloader_clear_bss_section + *fill* 0x00000000403c9fbe 0x2 + .text.bootloader_read_bootloader_header + 0x00000000403c9fc0 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2e (size before relaxing) + 0x00000000403c9fc0 bootloader_read_bootloader_header + *fill* 0x00000000403c9fea 0x2 + .text.bootloader_check_bootloader_validity + 0x00000000403c9fec 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4c (size before relaxing) + 0x00000000403c9fec bootloader_check_bootloader_validity + .text.bootloader_config_wdt + 0x00000000403ca030 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xa2 (size before relaxing) + 0x00000000403ca030 bootloader_config_wdt + *fill* 0x00000000403ca0ce 0x2 + .text.bootloader_enable_random + 0x00000000403ca0d0 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + 0x00000000403ca0d0 bootloader_enable_random + *fill* 0x00000000403ca0e9 0x3 + .text.bootloader_print_banner + 0x00000000403ca0ec 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x46 (size before relaxing) + 0x00000000403ca0ec bootloader_print_banner + *fill* 0x00000000403ca12a 0x2 + .text.bootloader_console_init + 0x00000000403ca12c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x00000000403ca12c bootloader_console_init + .text.esp_cpu_configure_region_protection + 0x00000000403ca13c 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x33 (size before relaxing) + 0x00000000403ca13c esp_cpu_configure_region_protection + *fill* 0x00000000403ca16b 0x1 + .text.rtc_clk_init + 0x00000000403ca16c 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x152 (size before relaxing) + 0x00000000403ca16c rtc_clk_init + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x0 + *fill* 0x00000000403ca292 0x2 + .text.mpu_hal_set_region_access + 0x00000000403ca294 0x39 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x00000000403ca294 mpu_hal_set_region_access + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x00000000403ca2dd . = (. + 0x10) + *fill* 0x00000000403ca2cd 0x10 + 0x00000000403ca2dd _text_end = ABSOLUTE (.) + 0x00000000403ca2dd _etext = . + +.dram0.bss 0x000000003fce3700 0x110 + 0x000000003fce3700 . = ALIGN (0x8) + 0x000000003fce3700 _dram_start = ABSOLUTE (.) + 0x000000003fce3700 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.ota_has_initial_contents + 0x000000003fce3700 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x000000003fce3701 0x3 + .bss.ram_obfs_value + 0x000000003fce3704 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.ctx 0x000000003fce370c 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.mapped 0x000000003fce37e4 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x000000003fce37e5 0x3 + .bss.bootloader_image_hdr + 0x000000003fce37e8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x000000003fce37e8 bootloader_image_hdr + .bss.s_apb_freq + 0x000000003fce3800 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x000000003fce3804 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.ctx 0x000000003fce3808 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + *(.gnu.linkonce.b.*) + *(COMMON) + 0x000000003fce3810 . = ALIGN (0x8) + 0x000000003fce3810 _bss_end = ABSOLUTE (.) + +.dram0.data 0x000000003fce3810 0x14 + 0x000000003fce3810 _data_start = ABSOLUTE (.) + *(.data) + *(.data.*) + .data.current_read_mapping + 0x000000003fce3810 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x000000003fce3814 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fce3814 g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x000000003fce3818 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fce3818 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x000000003fce381c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fce381c g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x000000003fce3820 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fce3820 g_dig_dbias_pvt_240m + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x000000003fce3824 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x000000003fce3824 0x1678 + 0x000000003fce3824 _rodata_start = ABSOLUTE (.) + *(.rodata) + .rodata 0x000000003fce3824 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .rodata 0x000000003fce382c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata 0x000000003fce3834 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *(.rodata.*) + .rodata.__assert_func.str1.1 + 0x000000003fce3848 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .rodata.abort.str1.1 + 0x000000003fce386a 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .rodata.call_start_cpu0.str1.1 + 0x000000003fce388c 0x39 esp-idf/main/libmain.a(bootloader_start.c.obj) + .rodata.log_invalid_app_partition.str1.1 + 0x000000003fce38c5 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xaf (size before relaxing) + .rodata.load_image.str1.1 + 0x000000003fce396f 0xa7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.try_load_partition.str1.1 + 0x000000003fce3a16 0x41 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.1 + 0x000000003fce3a57 0x81 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_get_partition_description.str1.1 + 0x000000003fce3ad8 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x000000003fce3b13 0x188 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x000000003fce3c9b 0x165 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x000000003fce3e00 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.process_checksum.str1.1 + 0x000000003fce3ee0 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_image_header.str1.1 + 0x000000003fce3f2d 0x9b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_util_regions_overlap.str1.1 + 0x000000003fce3fc8 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_load_addresses.str1.1 + 0x000000003fce4022 0xec esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig$constprop$0.str1.1 + 0x000000003fce410e 0x4b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.1 + 0x000000003fce4159 0x14d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x189 (size before relaxing) + .rodata.image_load.str1.1 + 0x000000003fce42a6 0xa1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$0 + 0x000000003fce4347 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$1 + 0x000000003fce4367 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_partition_table_verify.str1.1 + 0x000000003fce437d 0x161 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x000000003fce44de 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x000000003fce4540 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x000000003fce4559 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_init.str1.1 + 0x000000003fce4570 0x217 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x223 (size before relaxing) + .rodata.__func__$0 + 0x000000003fce4787 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x000000003fce4797 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x000000003fce487d 0xa7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_read.str1.1 + 0x000000003fce4924 0xe5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x000000003fce4a09 0xdb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_write.str1.1 + 0x000000003fce4ae4 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x000000003fce4bce 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x000000003fce4be9 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_fill_random.str1.1 + 0x000000003fce4c11 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.__func__$0 + 0x000000003fce4c5c 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.bootloader_read_bootloader_header.str1.1 + 0x000000003fce4c73 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x45 (size before relaxing) + .rodata.bootloader_check_bootloader_validity.str1.1 + 0x000000003fce4cb3 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_enable_random.str1.1 + 0x000000003fce4ce1 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_print_banner.str1.1 + 0x000000003fce4d1e 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.rtc_clk_xtal_freq_get.str1.1 + 0x000000003fce4dbe 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x000000003fce4e0c 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x000000003fce4e48 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.*) + 0x000000003fce4e89 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame) + 0x000000003fce4e8c . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x000000003fce4e89 0x3 + 0x000000003fce4e8c __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + .ctors 0x000000003fce4e8c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .ctors) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + .ctors 0x000000003fce4e90 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x000000003fce4e94 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003fce4e94 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003fce4e98 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x000000003fce4e98 __DTOR_END__ + 0x000000003fce4e9c __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003fce4e9c __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003fce4e9c _rodata_end = ABSOLUTE (.) + 0x000000003fce4e9c _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003fce4e9c _lit4_end = ABSOLUTE (.) + 0x000000003fce4e9c . = ALIGN (0x4) + 0x000000003fce4e9c _dram_end = ABSOLUTE (.) + +.xt.prop 0x0000000000000000 0x26c4 + *(.xt.prop .gnu.linkonce.prop.*) + .xt.prop 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + 0x24 (size before relaxing) + .xt.prop 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000030 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x150 (size before relaxing) + .xt.prop 0x0000000000000048 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.prop 0x00000000000000a8 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000000000000114 0x5b8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x714 (size before relaxing) + .xt.prop 0x00000000000006cc 0x69c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x81c (size before relaxing) + .xt.prop 0x0000000000000d68 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x0000000000000d8c 0x108 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x0000000000000e94 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.prop 0x0000000000000eb8 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000000000000f9c 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.prop 0x0000000000001074 0x168 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .xt.prop 0x00000000000011dc 0x174 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000000000001350 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.prop 0x00000000000013b0 0x534 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x00000000000018e4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000001908 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x0000000000001974 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.prop 0x00000000000019d4 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x0000000000001a7c 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x0000000000001bb4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0xcd8 (size before relaxing) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x774 (size before relaxing) + .xt.prop 0x0000000000001be4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x0000000000001be4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000001c2c 0x6f0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x96c (size before relaxing) + .xt.prop 0x000000000000231c 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.prop 0x0000000000002370 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000023a0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00000000000023a0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x00000000000023a0 0x30 esp-idf/log/liblog.a(log_noos.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000023d0 0x84 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x0000000000002454 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x00000000000024cc 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x204 (size before relaxing) + .xt.prop 0x0000000000002520 0xa8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000025c8 0xe4 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x54 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + 0x48 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + 0x198 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + 0x180 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + 0x84 (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x00000000000026ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + 0xd8 (size before relaxing) + .xt.prop 0x00000000000026ac 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x84 (size before relaxing) + .xt.prop 0x00000000000026c4 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + 0x30 (size before relaxing) + +.xt.lit 0x0000000000000000 0x258 + *(.xt.lit .gnu.linkonce.p.*) + .xt.lit 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + 0x8 (size before relaxing) + .xt.lit 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x18 (size before relaxing) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.lit 0x0000000000000010 0x8 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000018 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000068 0x40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000000a8 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000000a8 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000000000000b0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x00000000000000c8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.lit 0x00000000000000e0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .xt.lit 0x00000000000000f0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000100 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.lit 0x0000000000000108 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000000158 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000158 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x0000000000000160 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.lit 0x0000000000000170 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000180 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000001a8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.lit 0x00000000000001b0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000001b0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000001b0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000001b0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000001b0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000001b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000001b8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x0000000000000228 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.lit 0x0000000000000230 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000230 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000230 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000230 0x8 esp-idf/log/liblog.a(log_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000238 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000240 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000240 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.lit 0x0000000000000250 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000258 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000258 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000258 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000258 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x10 (size before relaxing) + [!provide] PROVIDE (ets_update_cpu_frequency = 0x40043164) +OUTPUT(bootloader.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ashldi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x26 + .comment 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x27 (size before relaxing) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(bootloader_start.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log_noos.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(cache_hal.c.obj) + .comment 0x0000000000000026 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + +.debug_frame 0x0000000000000000 0x1160 + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_frame 0x0000000000000040 0x40 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x0000000000000080 0x190 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000210 0x178 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000388 0x88 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x0000000000000410 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000438 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_frame 0x0000000000000460 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000000004b8 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_frame 0x0000000000000510 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_frame 0x0000000000000550 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000000005f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_frame 0x0000000000000618 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000000000007f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000000000000818 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x0000000000000840 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_frame 0x0000000000000880 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x0000000000000908 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x00000000000009a8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_frame 0x00000000000009d0 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x0000000000000ae8 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000000000000df8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_frame 0x0000000000000e20 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x0000000000000e90 0x70 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_frame 0x0000000000000f00 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x0000000000000f28 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x0000000000000f80 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x0000000000001050 0x70 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x00000000000010c0 0xa0 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_info 0x0000000000000000 0x1ee4f + .debug_info 0x0000000000000000 0x235 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_info 0x0000000000000235 0xcb5 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x0000000000000eea 0x1dfb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000002ce5 0x23ef esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000000050d4 0xa24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x0000000000005af8 0x5bf esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000000060b7 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_info 0x0000000000006143 0x42b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x000000000000656e 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_info 0x0000000000006672 0x1015 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_info 0x0000000000007687 0x2281 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000000000009908 0x365 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_info 0x0000000000009c6d 0x4029 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000000000000dc96 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000000000000dd35 0x283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x000000000000dfb8 0x261 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_info 0x000000000000e219 0x451 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x000000000000e66a 0x5101 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x000000000001376b 0x36c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_info 0x0000000000013ad7 0x9c1 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x0000000000014498 0x27aa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0000000000016c42 0x8fb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_info 0x000000000001753d 0x2dde esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x000000000001a31b 0x28a esp-idf/log/liblog.a(log_noos.c.obj) + .debug_info 0x000000000001a5a5 0x253 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x000000000001a7f8 0x1b57 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000000000001c34f 0x1fc4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000000000001e313 0x61a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x000000000001e92d 0x522 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_abbrev 0x0000000000000000 0x4a47 + .debug_abbrev 0x0000000000000000 0x163 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_abbrev 0x0000000000000163 0x31a esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x000000000000047d 0x52e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000000009ab 0x543 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000eee 0x319 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x0000000000001207 0x217 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x000000000000141e 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_abbrev 0x0000000000001462 0x1ac esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x000000000000160e 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_abbrev 0x000000000000168e 0x3b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_abbrev 0x0000000000001a43 0x39e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0000000000001de1 0x131 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x0000000000001f12 0x594 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00000000000024a6 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x0000000000002508 0x172 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x000000000000267a 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_abbrev 0x0000000000002729 0x1df esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x0000000000002908 0x326 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x0000000000002c2e 0xde esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_abbrev 0x0000000000002d0c 0x2e8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x0000000000002ff4 0x5ec esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00000000000035e0 0x31f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_abbrev 0x00000000000038ff 0x4ae esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000000000003dad 0x19f esp-idf/log/liblog.a(log_noos.c.obj) + .debug_abbrev 0x0000000000003f4c 0x141 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x000000000000408d 0x20b esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x0000000000004298 0x372 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000000000000460a 0x25f esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0000000000004869 0x1de esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_loc 0x0000000000000000 0x663a + .debug_loc 0x0000000000000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_loc 0x0000000000000023 0xd0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x00000000000000f3 0xf2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x000000000000101d 0x1803 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000002820 0x1f2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x0000000000002a12 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000002bd8 0x3d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_loc 0x0000000000002fb0 0x310 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000000032c0 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_loc 0x0000000000003395 0xb27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0000000000003ebc 0x93 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x0000000000003f4f 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x0000000000003fba 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x0000000000004034 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_loc 0x0000000000004049 0x67c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x00000000000046c5 0xb96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000000000000525b 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_loc 0x000000000000538f 0x82d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x0000000000005bbc 0x15 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_loc 0x0000000000005bd1 0x13c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x0000000000005d0d 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000000000005d52 0x148 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000000000005e9a 0x517 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00000000000063b1 0x289 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_aranges 0x0000000000000000 0x7e8 + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_aranges + 0x0000000000000028 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x0000000000000050 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000000000e8 0x90 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x0000000000000178 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00000000000001b8 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000000001d8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_aranges + 0x00000000000001f8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000228 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_aranges + 0x0000000000000258 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_aranges + 0x0000000000000280 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000000002c8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000000000002e8 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000000398 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000000000003b8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x00000000000003d8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_aranges + 0x0000000000000400 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x0000000000000440 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x0000000000000488 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_aranges + 0x00000000000004a8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x0000000000000518 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000000630 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_aranges + 0x0000000000000650 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000000688 0x38 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_aranges + 0x00000000000006c0 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x00000000000006e0 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x0000000000000710 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x0000000000000768 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00000000000007a0 0x48 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_ranges 0x0000000000000000 0x1060 + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_ranges 0x0000000000000018 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x0000000000000048 0x178 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000000001c0 0x348 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x0000000000000508 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x0000000000000570 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000000000005e8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_ranges 0x00000000000005f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000618 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_ranges 0x0000000000000638 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_ranges 0x00000000000006b0 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x0000000000000718 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_ranges 0x0000000000000728 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000000858 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000000868 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x0000000000000890 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_ranges 0x00000000000008a8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000000000008d8 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x0000000000000910 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_ranges 0x0000000000000920 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x0000000000000a18 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000000d30 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_ranges 0x0000000000000d70 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x0000000000000e30 0x28 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_ranges 0x0000000000000e58 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x0000000000000e80 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x0000000000000ec0 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x0000000000000f20 0xd8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x0000000000000ff8 0x68 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_line 0x0000000000000000 0x130a6 + .debug_line 0x0000000000000000 0x408 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_line 0x0000000000000408 0x668 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x0000000000000a70 0x1f98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000002a08 0x23f7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000004dff 0xe66 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x0000000000005c65 0x768 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000000063cd 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_line 0x000000000000646c 0x45c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000000068c8 0x328 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_line 0x0000000000006bf0 0x1080 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + .debug_line 0x0000000000007c70 0x902 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x0000000000008572 0x3b4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_line 0x0000000000008926 0x1b60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x000000000000a486 0xf4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000000000000a57a 0x506 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x000000000000aa80 0x684 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_line 0x000000000000b104 0x4de esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x000000000000b5e2 0x8c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x000000000000beaa 0x216 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_line 0x000000000000c0c0 0xbcf esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x000000000000cc8f 0x205d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x000000000000ecec 0x747 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_line 0x000000000000f433 0x19fa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0000000000010e2d 0x3e7 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_line 0x0000000000011214 0x316 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x000000000001152a 0x3f0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000000000001191a 0x8ef esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0000000000012209 0x6d6 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00000000000128df 0x7c7 esp-idf/hal/libhal.a(cache_hal.c.obj) + +.debug_str 0x0000000000000000 0xbcdb + .debug_str 0x0000000000000000 0x272 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x2c7 (size before relaxing) + .debug_str 0x0000000000000272 0x861 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0xaa2 (size before relaxing) + .debug_str 0x0000000000000ad3 0xa5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xf16 (size before relaxing) + .debug_str 0x0000000000001531 0x77f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1010 (size before relaxing) + .debug_str 0x0000000000001cb0 0x77a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xa30 (size before relaxing) + .debug_str 0x000000000000242a 0x17a esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x4a0 (size before relaxing) + .debug_str 0x00000000000025a4 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x22b (size before relaxing) + .debug_str 0x0000000000002609 0x151 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x3f6 (size before relaxing) + .debug_str 0x000000000000275a 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x29e (size before relaxing) + .debug_str 0x0000000000002802 0x745 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + 0x1122 (size before relaxing) + .debug_str 0x0000000000002f47 0x166e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x1dae (size before relaxing) + .debug_str 0x00000000000045b5 0x29b esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x71b (size before relaxing) + .debug_str 0x0000000000004850 0x1ccd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2650 (size before relaxing) + .debug_str 0x000000000000651d 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x23e (size before relaxing) + .debug_str 0x000000000000659b 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x2da (size before relaxing) + .debug_str 0x0000000000006653 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x284 (size before relaxing) + .debug_str 0x00000000000066eb 0xe7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x61d (size before relaxing) + .debug_str 0x00000000000067d2 0x2bde esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x362f (size before relaxing) + .debug_str 0x00000000000093b0 0x2f7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x4fe (size before relaxing) + .debug_str 0x00000000000096a7 0x3ea esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x63d (size before relaxing) + .debug_str 0x0000000000009a91 0x11f3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1d39 (size before relaxing) + .debug_str 0x000000000000ac84 0x10e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0xcf6 (size before relaxing) + .debug_str 0x000000000000ad92 0x692 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x248d (size before relaxing) + .debug_str 0x000000000000b424 0xbd esp-idf/log/liblog.a(log_noos.c.obj) + 0x2e8 (size before relaxing) + .debug_str 0x000000000000b4e1 0xab esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x2db (size before relaxing) + .debug_str 0x000000000000b58c 0xd7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x194f (size before relaxing) + .debug_str 0x000000000000b663 0x389 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c45 (size before relaxing) + .debug_str 0x000000000000b9ec 0x174 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x3f8 (size before relaxing) + .debug_str 0x000000000000bb60 0x17b esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x473 (size before relaxing) + +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_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Get_DCache_Line_Size esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.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) +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_common_loader.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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BTLC_GPIO_ENABLE 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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_CAN 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_USB 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_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_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_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_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_HARD_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_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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_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_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_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_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_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_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_SYS_DATA_PART2 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_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_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_D_D0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_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_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_GROUP_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_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_KEY0_PURPOSE 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_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_KEY1_PURPOSE 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_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_KEY2_PURPOSE 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_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_KEY3_PURPOSE 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_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_KEY4_PURPOSE 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_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_KEY5_PURPOSE 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_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.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_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_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_SYS_DATA_PART2 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_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +GetUartDevice esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +RTCCNTL esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.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) +TIMERG0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +USB_SERIAL_JTAG esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +_ITM_deregisterTMCloneTable e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__DTOR_END__ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__TMC_END__ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__ashldi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/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/log/liblog.a(log_noos.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(cpu.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_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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) +__deregister_frame_info e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__divdi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.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_init.c.obj) +__ffsdi2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) +__lshrdi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__popcountsi2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__register_frame_info e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__udivdi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/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_init.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) +_fini e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o +_global_impure_ptr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) +_init e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.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) +_start e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.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_bod_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_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_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_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_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_esp32s3.c.obj) + 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_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_esp32s3.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_cs_timing_config 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_dummy_config 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_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) +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_esp32s3.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_wrap_set esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_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_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_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_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) +cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.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.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_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_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_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_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_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_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu.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(cpu.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_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.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_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/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/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/esp_hw_support/libesp_hw_support.a(rtc_init.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_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_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_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_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_noos.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_lock_impl_timeout esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_noos.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(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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) +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(bootloader_esp32s3.c.obj) +esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_noos.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_esp32s3.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_printf 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(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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) + 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_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_esp32s3.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_wait_idle 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_rom_uart_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_clock_init.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_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) +ets_update_cpu_frequency 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_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) +main e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +memcmp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +memcpy e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 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(bootloader_utility.c.obj) +memset e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.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(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +mmu_hal_bytes_to_pages 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_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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_pages_to_bytes 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.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/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_esp32s3.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_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_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_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_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_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) +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_deep_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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_light_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.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_set_wakeup_time esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +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_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) +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..25c0202 --- /dev/null +++ b/build/bootloader/build.ninja @@ -0,0 +1,2591 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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 = E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 monitor + +build monitor: phony CMakeFiles/monitor + + +############################################# +# 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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/project_elf_src_esp32s3.c || cmake_object_order_depends_target_bootloader.elf + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = CMakeFiles\bootloader.elf.dir\project_elf_src_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/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/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/ld/esp32s3/bootloader.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/ld/esp32s3/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls + 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/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map="E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map" -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld" -T esp32s3.peripherals.ld -u __assert_func -u abort -u __ubsan_include -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld" -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.newlib.ld -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/ld/esp32s3" -T bootloader.ld -T bootloader.rom.ld -u bootloader_hooks_include + 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-app + +build uf2-app: phony CMakeFiles/uf2-app gen_project_binary + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 gen_project_binary + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --dont-write-deprecated --output config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/check_term.py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig IDF_TARGET=esp32s3 IDF_ENV_FPGA= E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe -m menuconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --output config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confserver.py --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config.env --dont-write-deprecated --output savedefconfig E:/Espressif/frameworks/esp-idf-v5.0.4/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_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/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_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/xtensa/libxtensa.a + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --min-rev-full 0 --max-rev-full 99 -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E md5sum E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin > E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/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\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_monitor.py -D SERIAL_TOOL_ARGS=--target;esp32s3;--revision;0;E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map" + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py --files E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map" + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py --archives E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.map" + + +############################################# +# 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_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkdfu.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/dfu.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/flasher_args.json --pid 9 --flash-size 2MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D ESP_DFU_LIST="1" -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D ESP_DFU_BIN="E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/dfu.bin" -D ESP_DFU_PID="9" -P E:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkuf2.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/uf2-app.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/flasher_args.json --chip-id 0xc47e5767 --bin app" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkuf2.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/uf2.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/flasher_args.json --chip-id 0xc47e5767" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf\xtensa\libxtensa.a + +build esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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/adc_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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/interrupts.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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_otg_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_otg_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_otg_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/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/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/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_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/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/esp32s3/edit_cache: phony esp-idf/soc/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/esp32s3/rebuild_cache: phony esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\uECC_verify_antifault.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Link the static library esp-idf\micro-ecc\libmicro-ecc.a + +build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\micro-ecc && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\micro-ecc && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_esp_app_format + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + 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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# 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/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/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_bootloader_support + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D PROJECT_NAME=\"bootloader\" -DPROJECT_VER=\"v5.0.4-dirty\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include + 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/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_mem.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_utility.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_efuse.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_loader.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console_loader.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_panic.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_panic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_sha.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_soc.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\bootloader_soc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\bootloader_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.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/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/flash_partitions.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_efuse.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/bootloader_panic.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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 + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_pm.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_pm.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_pm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_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/esp_memory_utils.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_pm.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 + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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 + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_crc.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_sys.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_regi2c.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_regi2c.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_regi2c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_mmap.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_mmap.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_mmap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/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_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 || esp-idf/log/CMakeFiles/__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + 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/log_buffers.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log_buffers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + 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/log_noos.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_noos.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log_noos.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + 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/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj + LANGUAGE_COMPILE_FLAGS = -mlongcalls + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bootloader_start.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader\subproject -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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_app_format: phony esp-idf/esp_app_format/libesp_app_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_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_app_format.a: phony esp-idf/esp_app_format/libesp_app_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 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: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader + +build all: phony app bootloader.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/newlib + +build esp-idf/newlib/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a esp-idf/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/esp32s3 + +build esp-idf/soc/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 | CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/host/nimble/nimble/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/cmock/CMock/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_phy/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_wifi/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/heap/tlsf/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/ieee802154/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/json/cJSON/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/lwip/lwip/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mbedtls/mbedtls/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mqtt/esp-mqtt/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/openthread/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/protobuf-c/protobuf-c/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/spiffs/spiffs/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/unity/unity/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c3_family/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/host/nimble/nimble/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/sources.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/openthread/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/build.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/component.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/depgraph.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/dfu.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/git_submodules.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/idf.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/kconfig.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/ldgen.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project_description.json.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/targets.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/tool_version_check.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/toolchain-esp32s3.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/uf2.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/utilities.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/version.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/config.env.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake config/sdkconfig.cmake config/sdkconfig.h + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/CheckTypeSize/TIME_T_SIZE.c CMakeFiles/git-data/grabRef.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/host/nimble/nimble/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/cmock/CMock/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_phy/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_wifi/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/heap/tlsf/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/ieee802154/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/json/cJSON/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/lwip/lwip/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mbedtls/mbedtls/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mqtt/esp-mqtt/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/openthread/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/protobuf-c/protobuf-c/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/spiffs/spiffs/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/unity/unity/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c3_family/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/host/nimble/nimble/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/sources.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/openthread/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/build.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/component.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/depgraph.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/dfu.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/git_submodules.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/idf.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/kconfig.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/ldgen.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project_description.json.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/targets.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/tool_version_check.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/toolchain-esp32s3.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/uf2.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/utilities.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/version.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/config.env.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineASMCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeNinjaFindMake.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystem.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestASMCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.c.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.c.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake 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..104e6b3 --- /dev/null +++ b/build/bootloader/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/bootloader/compile_commands.json b/build/bootloader/compile_commands.json new file mode 100644 index 0000000..255da88 --- /dev/null +++ b/build/bootloader/compile_commands.json @@ -0,0 +1,462 @@ +[ +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\bootloader\\project_elf_src_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\bootloader\\project_elf_src_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\eri.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\eri.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xt_trax.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xt_trax.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\lldesc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\lldesc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\dport_access_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\dport_access_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\adc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\adc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\dedic_gpio_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gdma_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gpio_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdm_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2c_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2s_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\interrupts.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\interrupts.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\lcd_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\ledc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\mcpwm_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\pcnt_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rmt_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rtc_io_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdio_slave_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdio_slave_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdio_slave_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdmmc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\spi_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\spi_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\timer_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\timer_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\touch_sensor_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\temperature_sensor_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\uart_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\uart_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_otg_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_otg_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_otg_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mpu_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mpu_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\efuse_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\efuse_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\efuse_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mmu_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mmu_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\cache_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\cache_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D PROJECT_NAME=\\\"bootloader\\\" -DPROJECT_VER=\\\"v5.0.4-dirty\\\" -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_app_format\\esp_app_desc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_app_format\\esp_app_desc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common_loader.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_mem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp_image_format.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_encrypt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\secure_boot.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\secure_boot.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_partitions.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_efuse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_loader.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_console.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_console_loader.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_panic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_sha.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_sha.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_sha.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_table.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_fields.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_api.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_api.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_fields.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_err.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_err.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\cpu.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\cpu.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_memory_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_pm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_pm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_pm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_common\\src\\esp_err_to_name.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_crc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_sys.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_spiflash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_regi2c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_regi2c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_regi2c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_efuse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_longjmp.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_systimer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_mmap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_mmap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_mmap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_buffers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_buffers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_buffers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_noos.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_noos.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_noos.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader\\subproject\\main\\bootloader_start.c" +} +] \ No newline at end of file diff --git a/build/bootloader/config.env b/build/bootloader/config.env new file mode 100644 index 0000000..0ce9f53 --- /dev/null +++ b/build/bootloader/config.env @@ -0,0 +1,10 @@ +{ + "COMPONENT_KCONFIGS": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_ENV_FPGA": "", + "IDF_PATH": "E:/Espressif/frameworks/esp-idf-v5.0.4", + "COMPONENT_KCONFIGS_SOURCE_FILE": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..fffe626 --- /dev/null +++ b/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,8743 @@ +[ + { + "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_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDE_NUM", + "name": "SOC_LEDC_TIMER_BIT_WIDE_NUM", + "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_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_ADC_SUPPORTED", + "name": "SOC_ADC_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_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_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_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_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_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_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_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_FILTER_SUPPORTED", + "name": "SOC_ADC_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256", + "name": "SOC_RTC_SLOW_CLOCK_SUPPORT_8MD256", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_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_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_SIZE", + "name": "SOC_CPU_WATCHPOINT_SIZE", + "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_GDMA_GROUPS", + "name": "SOC_GDMA_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_PSRAM", + "name": "SOC_GDMA_SUPPORT_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PSRAM_MIN_ALIGN", + "name": "SOC_GDMA_PSRAM_MIN_ALIGN", + "range": null, + "title": null, + "type": "int" + }, + { + "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_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_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_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_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "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_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_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_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_CODEC", + "name": "SOC_I2S_SUPPORTS_PDM_CODEC", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_MEMSPI_SRC_FREQ_120M", + "name": "SOC_MEMSPI_SRC_FREQ_120M", + "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_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_TOUCH_VERSION_2", + "name": "SOC_TOUCH_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_PAD_THRESHOLD_MAX", + "name": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "name": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "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_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_REQUIRE_CORE_RESET", + "name": "SOC_UART_REQUIRE_CORE_RESET", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_PERIPH_NUM", + "name": "SOC_USB_PERIPH_NUM", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "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_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_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_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIME_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIME_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_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "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_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_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_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": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "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_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_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "IDF_TARGET_ESP32H2_BETA_VERSION_1", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION_1", + "range": null, + "title": "ESP32-H2 beta1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "IDF_TARGET_ESP32H2_BETA_VERSION_2", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION_2", + "range": null, + "title": "ESP32-H2 beta2", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Currently ESP32-H2 has several beta versions for internal use only.\nSelect the one that matches your chip model.", + "id": "esp32-h2-beta-version", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION", + "title": "ESP32-H2 beta version", + "type": "choice" + }, + { + "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_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_ELF_RAM", + "name": "APP_BUILD_TYPE_ELF_RAM", + "range": null, + "title": "ELF file, loadable into 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. Note that since IRAM and DRAM sizes are very limited, it is not possible to\nbuild any complex application this way. However for kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\nNote that at the moment, ESP-IDF does not contain all the startup code required to\ninitialize the CPUs and ROM memory (data/bss). Therefore it is necessary to execute\na bit of ROM code prior to executing the application. A 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\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_ELF_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_ELF_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": 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": [], + "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)", + "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": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_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)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "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-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": [], + "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": [ + { + "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": null, + "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 (note that on some SoCs.\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.", + "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]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "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.", + "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 rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "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": [ + { + "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 implemention without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "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" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED && ((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 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 bootoloader 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": 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.", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ HELP FIRST)", + "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) && ", + "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" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", + "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_BOOT_BUILD_SIGNED_BINARIES && !SECURE_SIGNED_APPS_RSA_SCHEME", + "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.\nSecure Boot V2: This RSA public key is compiled into the signature block at\nthe end of the bootloader/app.\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": [ + { + "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 AES-XTS key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated AES-XTS 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": "", + "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\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": [ + { + "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 && 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 public key digest, causing an\nimmediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Allow additional read protecting of efuses", + "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.", + "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", + "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" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "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": [], + "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 (includes revisions till ECO3).", + "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": null, + "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 this many hex characters from the embedded APP ELF SHA-256 hash value\nand store it in static RAM. This ensures the app ELF SHA-256 value is always available\nif it needs to be printed by the panic handler code.\nChanging this value will change the size of a static buffer, in bytes.", + "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_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_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_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_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "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": null, + "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": "IDF_TARGET_ESP32S3", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "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": null, + "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": null, + "help": null, + "id": "serial-flasher-config-flash-sampling-mode", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_120M && ESPTOOLPY_FLASH_SAMPLE_MODE_STR && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_60M", + "name": "ESPTOOLPY_FLASHFREQ_60M", + "range": null, + "title": "60 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_48M", + "name": "ESPTOOLPY_FLASHFREQ_48M", + "range": null, + "title": "48 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_30M", + "name": "ESPTOOLPY_FLASHFREQ_30M", + "range": null, + "title": "30 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_24M", + "name": "ESPTOOLPY_FLASHFREQ_24M", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_15M", + "name": "ESPTOOLPY_FLASHFREQ_15M", + "range": null, + "title": "15 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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": null, + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "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": null, + "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": null, + "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": null, + "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": null, + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "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": "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_ENCRYPTION && ", + "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_ENCRYPTION && ", + "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_ENCRYPTION && ", + "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" + } + ], + "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. This path is evaluated\nrelative to the project root directory.", + "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_DEFAULT", + "name": "COMPILER_OPTIMIZATION_DEFAULT", + "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)", + "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 \"Default\" setting will add the -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "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": [ + { + "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": 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": "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" + } + ], + "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", + "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" + } + ], + "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\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" + } + ], + "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": [ + { + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!SPIRAM", + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SLEEP_POWER_DOWN_FLASH", + "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_POWER_DOWN_FLASH && (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 and esp32s3 will reset at wake-up if GPIO is received a small electrostatic\npulse 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": "IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3", + "help": "When the chip exits deep sleep, the CPU and the flash chip are powered on\nat the same time. CPU will run deep sleep stub first, and then\nproceed to load code from flash. Some flash chips need sufficient\ntime to pass between power on and first read operation. By default,\nwithout any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\nBy default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the\nconsole after deep sleep reset, try increasing this value.", + "id": "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY", + "name": "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay in deep sleep wake stub (in us)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3", + "help": "Its not able to stall ESP32C3 systimer in sleep.\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\nTODO: IDF-7036", + "id": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "name": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "range": null, + "title": "ESP32C3 SYSTIMER Stall Issue Workaround", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-esp_sleep_workaround", + "title": "ESP_SLEEP_WORKAROUND", + "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 136kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_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.5MHz 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" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "help": "When software switches the CPU clock source from BBPLL clock to XTAL, usually the BBPLL will be\nswitched off. This helps to save some power consumption in sleep modes. However this may also happen\nduring the software reset, resulting in the inactive (disconnected from host) of the USB_SERIAL_JTAG\ndevice during software reset.\n\nWhen USB_SERIAL_JTAG is being used, whether to turn off the clock source during software reset and in\nsleep modes is determined by RTC_CLOCK_BBPLL_POWER_ON_WITH_USB.\n\n - When RTC_CLOCK_BBPLL_POWER_ON_WITH_USB is enabled, the clock will be kept, so that the\n USB_SERIAL_JTAG will keep alive during software reset. The side-effect is the increasing of power\n consumption during sleep modes, even though USB_SERIAL_JTAG will not work in sleep modes.\n\n - When RTC_CLOCK_BBPLL_POWER_ON_WITH_USB is disabled, the clock will be turned off. USB_SERIAL_JTAG\n will be inactive during software reset and in sleep modes. This saves some power consumption in\n sleep modes.\n\nWhen USB_SERIAL_JTAG is not being used, software will always turn off BBPLL regardless of\nRTC_CLOCK_BBPLL_POWER_ON_WITH_USB is set or not.", + "id": "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB", + "name": "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB", + "range": null, + "title": "Keep BBPLL clock always work", + "type": "bool" + } + ], + "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": "PERIPH_CTRL_FUNC_IN_IRAM", + "name": "PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral 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_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.\nEnabling this option can improve driver performance as well.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions into IRAM", + "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).", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configuration", + "title": "GDMA Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_24M && ", + "help": null, + "id": "XTAL_FREQ_24", + "name": "XTAL_FREQ_24", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_26M && ", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_32M && ", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_40M && ", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_AUTO_DETECT && ", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.\n\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\nin high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ_SEL", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "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 && !FREERTOS_UNICORE", + "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": [ + { + "children": [], + "depends_on": "", + "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": "", + "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": "", + "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": "", + "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" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32C2 && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it and to do a debug on runtime.", + "id": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "name": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "range": null, + "title": "GDBStub at runtime", + "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": 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. This memory will be consumed first per\nheap initialization order by early startup services and scheduler related code. Speed\nwise RTC fast memory operates on APB clock and hence does not have much performance impact.", + "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": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT be used for production.", + "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": [ + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": [ + { + "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": "(IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && ", + "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": "IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3", + "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_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_MULTIPLE_UART", + "name": "ESP_CONSOLE_MULTIPLE_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 && ESP_CONSOLE_MULTIPLE_UART", + "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": "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).\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 UART RX input in the ESP-IDF Bootloader and the app (including\ndefault default standard input of the app).\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "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": null, + "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 miliseconds. 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": "!IDF_TARGET_ESP32 && (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": null, + "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "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 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 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 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": [ + { + "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-esp-system-settings-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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", + "id": "ESP_SYSTEM_BROWNOUT_INTR", + "name": "ESP_SYSTEM_BROWNOUT_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "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": "!FREERTOS_UNICORE", + "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 itended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", + "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": null, + "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", + "help": "Enables port specific task selection method. This option can will 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 vApplicationMinimalIdleHook( void );``\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_MINIMAL_IDLE_HOOK", + "name": "FREERTOS_USE_MINIMAL_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": null, + "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": [], + "depends_on": null, + "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": null, + "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": null, + "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" + }, + { + "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": [ + { + "children": [ + { + "children": [], + "depends_on": "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" + } + ], + "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": "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.", + "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" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEFAULT || ESP_COREDUMP_ENABLE || ESP_GDBSTUB_ENABLED", + "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_SMP && 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_SMP", + "help": "Enable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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": "IDF_TARGET_ESP32", + "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": [], + "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": "FREERTOS_ENABLE_TASK_SNAPSHOT && !ESP_PANIC_HANDLER_IRAM", + "help": "When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll,\nwill be placed in flash. Note that if enabled, these functions cannot be called when cache is disabled.", + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": "Place task snapshot 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" + }, + { + "children": [], + "depends_on": null, + "help": "Some functions in FreeRTOS have not been thoroughly tested yet when moving to the SMP implementation of\nFreeRTOS. When this option is enabled, these functions will throw an ``assert()``.", + "id": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "name": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "range": null, + "title": "Halt when an SMP-untested function is called", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll, are\ncompiled and linked. Task snapshots are used by Task Watchdog (TWDT), GDB Stub and Core dump.", + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": "Enable task snapshot functions", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "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" + } + ], + "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" + } + ], + "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": "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.\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-output-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-output-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": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "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", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- System time is taken from POSIX time functions which use the chip's\n RTC and high resoultion timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_LF", + "name": "NEWLIB_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CR", + "name": "NEWLIB_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring the desired line endings sent to UART\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-output", + "name": "NEWLIB_STDOUT_LINE_ENDING", + "title": "Line ending for UART output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_LF", + "name": "NEWLIB_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CR", + "name": "NEWLIB_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring which input sequence on UART produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-input", + "name": "NEWLIB_STDIN_LINE_ENDING", + "title": "Line ending for UART input", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP32 ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/newlib/README\n\nIf this option is enabled, build system will use functions available in\nROM, reducing the application binary size. Functions available in ROM run\nfaster than functions which run from flash. Functions available in ROM can\nalso run when flash instruction cache is disabled.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "NEWLIB_NANO_FORMAT", + "name": "NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_NONE", + "name": "NEWLIB_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.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-newlib-timers-used-for-gettimeofday-function", + "name": "NEWLIB_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-newlib", + "title": "Newlib", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "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": "SPI_FLASH_VERIFY_WRITE", + "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", + "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": null, + "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.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables the following APIs:\n\n- spi_flash_reset_counters\n- spi_flash_dump_counters\n- spi_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": null, + "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": "IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2", + "help": null, + "id": "SPI_FLASH_HAS_ROM_IMPL", + "name": "SPI_FLASH_HAS_ROM_IMPL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_HAS_ROM_IMPL", + "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": null, + "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_ESP32S2", + "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": null, + "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", + "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", + "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": null, + "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documenation\nunder section `OS Function`.", + "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": "IDF_TARGET_ESP32C3 && !SPI_FLASH_ROM_IMPL", + "help": "This option is default n before ESP32-C3, because it needs bootloader support.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nAuto-suspend feature only supported by XMC chip.\nIf you are using an official module, please contact Espressif Business support.\nAlso reading auto suspend part in `SPI Flash API` document before you enable this function.", + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "id": "component-config-spi-flash-driver-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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", + "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": null, + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ENABLE", + "name": "SPI_FLASH_HPM_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + } +] \ 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..9390ecd --- /dev/null +++ b/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,710 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256 "y") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_SIZE "64") +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_GDMA_GROUPS "y") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN "16") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +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_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +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_I2C_FIFO_LEN "32") +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_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "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_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC "y") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "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_PCNT_GROUPS "y") +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_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_SDM_GROUPS "y") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +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_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_MEMSPI_SRC_FREQ_120M "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_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_TOUCH_VERSION_2 "y") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX "0x1fffff") +set(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX "0xff") +set(CONFIG_SOC_UART_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_REQUIRE_CORE_RESET "y") +set(CONFIG_SOC_USB_PERIPH_NUM "y") +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_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_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_MODEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "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_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_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_COEX_HW_PTI "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_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_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_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32s3") +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_ELF_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_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_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_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_APP_ROLLBACK_ENABLE "") +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_BOOTLOADER_FLASH_XMC_SUPPORT "y") +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 "16") +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_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_ETS_PRINTF_BUG "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_NEEDS_SET_CACHE_MMU_SIZE "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_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_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 "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "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_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_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +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_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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +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_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB "y") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +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_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_GDBSTUB_RUNTIME "") +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 "") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "y") +set(CONFIG_ESP_CONSOLE_MULTIPLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "-1") +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_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_SYSTEM_BROWNOUT_INTR "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_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_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +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_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_PLACE_SNAPSHOT_FUNS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "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_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_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +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_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_NEWLIB_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_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_HAS_ROM_IMPL "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_SHARE_SPI1_BUS "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "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(CONFIGS_LIST CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_GDMA_GROUPS;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC;CONFIG_SOC_I2S_SUPPORTS_TDM;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_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_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_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_MEMSPI_SRC_FREQ_120M;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TOUCH_VERSION_2;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_REQUIRE_CORE_RESET;CONFIG_SOC_USB_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_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_MODEM_PD;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;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_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;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_NEEDS_SET_CACHE_MMU_SIZE;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_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_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_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_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_SYSTEM_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_MULTIPLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;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_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_HAS_ROM_IMPL;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_SHARE_SPI1_BUS;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;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) +# List of deprecated options for backward compatibility +set(CONFIG_NO_BLOBS "") +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_APP_ROLLBACK_ENABLE "") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_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_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_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 "") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART_NUM "-1") +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_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_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_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_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +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..833c4a2 --- /dev/null +++ b/build/bootloader/config/sdkconfig.h @@ -0,0 +1,508 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) Configuration Header + */ +#pragma once +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM 14 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256 1 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 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_CPU_BREAKPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINT_SIZE 64 +#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_GDMA_GROUPS 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN 16 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#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_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000 +#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_I2C_FIFO_LEN 32 +#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_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 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_PDM_RX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC 1 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 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_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_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_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#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_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_MEMSPI_SRC_FREQ_120M 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_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_TOUCH_VERSION_2 1 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3 +#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX 0x1FFFFF +#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF +#define CONFIG_SOC_UART_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_REQUIRE_CORE_RESET 1 +#define CONFIG_SOC_USB_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_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_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_MODEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 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_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_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_COEX_HW_PTI 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_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_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_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32s3" +#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_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#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_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#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 16 +#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_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_ETS_PRINTF_BUG 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_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 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_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_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_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_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_DEEP_SLEEP_WAKEUP_DELAY 2000 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#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_PANIC_PRINT_REBOOT 1 +#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_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_NONE 1 +#define CONFIG_ESP_CONSOLE_MULTIPLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM -1 +#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_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 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_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_FUNCTION_WRAPPER 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_ASSERT_ON_UNTESTED_FUNCTION 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 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_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_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 +#define CONFIG_NEWLIB_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_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_HAS_ROM_IMPL 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_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 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_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_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_DEEP_SLEEP_WAKEUP_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_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#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_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_DEFAULT +#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..679cd8e --- /dev/null +++ b/build/bootloader/config/sdkconfig.json @@ -0,0 +1,613 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_ELF_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": 16, + "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_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "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_OFFSET_IN_FLASH": 0, + "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_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "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_DEFAULT": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "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_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": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "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_CONSOLE_MULTIPLE_UART": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_SECONDARY_NONE": true, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": false, + "ESP_CONSOLE_UART_NUM": -1, + "ESP_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": 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_ERR_TO_NAME_LOOKUP": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "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_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_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "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_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_MZ_CRC32": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY": 2000, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": 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_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BROWNOUT_INTR": 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_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_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_ASSERT_ON_UNTESTED_FUNCTION": true, + "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_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": false, + "GDMA_ISR_IRAM_SAFE": 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, + "IDF_CMAKE": true, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "LOG_COLORS": true, + "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_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "NEWLIB_NANO_FORMAT": false, + "NEWLIB_STDIN_LINE_ENDING_CR": true, + "NEWLIB_STDIN_LINE_ENDING_CRLF": false, + "NEWLIB_STDIN_LINE_ENDING_LF": false, + "NEWLIB_STDOUT_LINE_ENDING_CR": false, + "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, + "NEWLIB_STDOUT_LINE_ENDING_LF": false, + "NEWLIB_TIME_SYSCALL_USE_HRT": false, + "NEWLIB_TIME_SYSCALL_USE_NONE": false, + "NEWLIB_TIME_SYSCALL_USE_RTC": false, + "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PERIPH_CTRL_FUNC_IN_IRAM": 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, + "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB": 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_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_FILTER_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_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_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_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_COEX_HW_PTI": 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_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_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_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_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_GROUPS": true, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PSRAM_MIN_ALIGN": 16, + "SOC_GDMA_SUPPORTED": true, + "SOC_GDMA_SUPPORT_PSRAM": true, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_HMAC_SUPPORTED": true, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "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_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_CODEC": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_TDM": true, + "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_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDE_NUM": 14, + "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_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_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_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_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_CLOCK_SUPPORT_8MD256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "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_GROUPS": true, + "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_SPIRAM_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_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIME_TUNING": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": 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_PAD_MEASURE_WAIT_MAX": 255, + "SOC_TOUCH_PAD_THRESHOLD_MAX": 2097151, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_VERSION_2": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_NUM": 3, + "SOC_UART_REQUIRE_CORE_RESET": 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_ULP_SUPPORTED": true, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_PERIPH_NUM": true, + "SOC_USB_SERIAL_JTAG_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_SUPPORTED": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XT_WDT_SUPPORTED": true, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_HAS_ROM_IMPL": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SHARE_SPI1_BUS": 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_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..30dd42d --- /dev/null +++ b/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7e57a3f 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..98d4169 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..a7ddd16 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..cb80045 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..e0c5400 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..5bdaa7d 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..944a3f0 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..8d9a605 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..82402db 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..726e087 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..c4c6d94 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..9b511d2 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..73cacfa 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..ad2805c 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..e0661a9 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_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..199f9a3 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..2818d47 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_sha.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj new file mode 100644 index 0000000..ef51592 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.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..da3a0be 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..64bb41b 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..0c2f1a2 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..ee79787 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..03056d5 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..9dd2207 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..2888541 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..5973768 --- /dev/null +++ b/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,134 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4 + +# 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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..811f4c1 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..bf3b414 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..f8899a6 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..5c6fac9 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..09c9f50 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..23a94f8 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..cc5f561 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..f4b908f 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..fe16330 --- /dev/null +++ b/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..997091b Binary files /dev/null and b/build/bootloader/esp-idf/efuse/libefuse.a differ diff --git a/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..fe0fcd8 Binary files /dev/null and b/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 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..1efaece --- /dev/null +++ b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_app_format/libesp_app_format.a b/build/bootloader/esp-idf/esp_app_format/libesp_app_format.a new file mode 100644 index 0000000..e8d16e4 Binary files /dev/null and b/build/bootloader/esp-idf/esp_app_format/libesp_app_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..9264e68 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..44c31e3 --- /dev/null +++ b/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..e470906 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..458dd87 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..5b0ec2f 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..d5949ae 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/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..8e42c51 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..a8e4113 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..f03f7a5 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_pm.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj new file mode 100644 index 0000000..554edff Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.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..83fc495 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..3c2e3be 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..dfa4d22 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/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..3cd5bb3 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/port/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..f4e5a4c --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7fb2272 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..ce59ba8 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..bb667ea 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..c808948 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_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..121853d 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_mmap.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj new file mode 100644 index 0000000..c8e5295 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj new file mode 100644 index 0000000..d581d53 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.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..b2dcd09 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..f8a2f3c 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..8dd92b3 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..b163073 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/cmake_install.cmake b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..196f17c --- /dev/null +++ b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..8d29b78 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/libesp_rom.a differ 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..0011f44 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..1ee9290 --- /dev/null +++ b/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..9c460f9 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..2a1002f --- /dev/null +++ b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7ae8314 --- /dev/null +++ b/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7f40518 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..505f773 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..268d65d 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/mmu_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..9916224 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..32efbd9 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..6ff3df8 --- /dev/null +++ b/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..b31f9f2 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/log.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..e4d3ca6 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..3672437 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj new file mode 100644 index 0000000..836dfd5 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.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..8d468a3 --- /dev/null +++ b/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..d3ab441 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..6d44c2d 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..7531a66 --- /dev/null +++ b/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..f1b8dc8 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..3f387b3 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..ae137eb --- /dev/null +++ b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..ba16f3c 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..4f8f10b --- /dev/null +++ b/build/bootloader/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..2b66a9a --- /dev/null +++ b/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..dd6c743 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..8091c82 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/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..7ee4c7d 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..73ddf70 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..d9a8568 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..8c3031a 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..322282d 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..6ead770 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..9b63d8a 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..cf101b9 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..ead1358 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/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..5dfb813 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/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..d449b93 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..0fb5add 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/sdio_slave_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj new file mode 100644 index 0000000..afded32 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_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..3bb9512 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..d32cc24 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..2105c81 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..8b65129 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..37ccd4f 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..e0a510a 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/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..bcafe8b 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_otg_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj new file mode 100644 index 0000000..2b80e21 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj new file mode 100644 index 0000000..c763505 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_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..933b383 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..0e59f4b --- /dev/null +++ b/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/esp32s3/cmake_install.cmake") +endif() + diff --git a/build/bootloader/esp-idf/soc/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/soc/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..69587e3 --- /dev/null +++ b/build/bootloader/esp-idf/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..0a23cbd Binary files /dev/null and b/build/bootloader/esp-idf/soc/libsoc.a 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..69590db --- /dev/null +++ b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..ece3de1 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..f62d4f7 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..05dc519 --- /dev/null +++ b/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..0234e58 Binary files /dev/null and b/build/bootloader/esp-idf/xtensa/libxtensa.a differ diff --git a/build/bootloader/kconfigs.in b/build/bootloader/kconfigs.in new file mode 100644 index 0000000..5fc3c94 --- /dev/null +++ b/build/bootloader/kconfigs.in @@ -0,0 +1,10 @@ +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/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..bf12041 --- /dev/null +++ b/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/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..16d4960 --- /dev/null +++ b/build/bootloader/project_description.json @@ -0,0 +1,317 @@ +{ + "version": "1", + "project_name": "bootloader", + "project_version": "v5.0.4-dirty", + "project_path": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject", + "idf_path": "E:/Espressif/frameworks/esp-idf-v5.0.4", + "build_dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader", + "config_file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "git_revision": "v5.0.4-dirty", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/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_common", "esp_hw_support", "esp_rom", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_app_format", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common_loader.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_mem.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp_image_format.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_encrypt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/secure_boot.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_partitions.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_efuse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_loader.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_console.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_console_loader.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_panic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_sha.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_soc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c" ], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_table.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_fields.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_api.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_fields.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/esp_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_memory_utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_pm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_time.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/chip_info.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_crc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_sys.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_uart.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_spiflash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_regi2c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_efuse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_longjmp.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_systimer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_mmap.c" ], + "include_dirs": [ "include", "include/esp32s3", "esp32s3" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_err.c" ], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mpu_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/efuse_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/efuse_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mmu_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/cache_hal.c" ], + "include_dirs": [ "esp32s3/include", "include", "platform_port/include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_buffers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_noos.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/bootloader_start.c" ], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc", + "type": "LIBRARY", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], + "include_dirs": [ ".", "micro-ecc" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/lldesc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/dport_access_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/adc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/dedic_gpio_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gdma_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gpio_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdm_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2c_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2s_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/interrupts.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/lcd_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ledc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/mcpwm_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/pcnt_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rmt_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rtc_io_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdio_slave_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdmmc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/spi_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/timer_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/touch_sensor_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/temperature_sensor_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/uart_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_otg_periph.c" ], + "include_dirs": [ "include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash", + "type": "CONFIG_ONLY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/esp-idf/xtensa/libxtensa.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/eri.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xt_trax.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + } + }, + "debug_prefix_map_gdbinit": "" +} 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..37d3624 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,15816 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: wifi_station +# 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 = E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 wifi_station.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 monitor + +build monitor: phony CMakeFiles/monitor + + +############################################# +# Utility command for flash + +build flash: phony CMakeFiles/flash app bootloader esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for encrypted-flash + +build encrypted-flash: phony CMakeFiles/encrypted-flash + + +############################################# +# 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 wifi_station.elf + + +############################################# +# Order-only phony target for wifi_station.elf + +build cmake_object_order_depends_target_wifi_station.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_touch_element cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_usb cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp_system/__ldgen_output_sections.ld project_elf_src_esp32s3.c + +build CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__wifi_station.2eelf_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/project_elf_src_esp32s3.c || cmake_object_order_depends_target_wifi_station.elf + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = CMakeFiles\wifi_station.elf.dir\project_elf_src_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main + OBJECT_DIR = CMakeFiles\wifi_station.elf.dir + OBJECT_FILE_DIR = CMakeFiles\wifi_station.elf.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target wifi_station.elf + + +############################################# +# Link the executable wifi_station.elf + +build wifi_station.elf: CXX_EXECUTABLE_LINKER__wifi_station.2eelf_ CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_system/ld/memory.ld esp-idf/esp_system/ld/sections.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/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 + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map="E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.map" -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/ulp/libulp.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a -u esp_app_desc -u pthread_include_pthread_impl -u pthread_include_pthread_cond_impl -u pthread_include_pthread_local_storage_impl -u pthread_include_pthread_rwlock_impl -u ld_include_highint_hdl -u start_app -u start_app_other_cores -L "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld" -T memory.ld -T sections.ld -u __ubsan_include -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld" -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.newlib.ld -T esp32s3.rom.version.ld -Wl,--wrap=longjmp -u __assert_func -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld" -T esp32s3.peripherals.ld -Wl,--undefined=uxTopUsedPriority -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm esp-idf/newlib/libnewlib.a -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -u newlib_include_assert_impl -Wl,--wrap=_Unwind_SetEnableExceptionFdeSorting -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--wrap=__gxx_personality_v0 -u __cxa_guard_dummy -lstdc++ esp-idf/pthread/libpthread.a -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3" -u include_esp_phy_override -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb -u vfs_include_syscalls_impl -L "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3" + OBJECT_DIR = CMakeFiles\wifi_station.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = wifi_station.elf + TARGET_PDB = wifi_station.elf.dbg + RSP_FILE = CMakeFiles\wifi_station.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-app + +build uf2-app: phony CMakeFiles/uf2-app gen_project_binary + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 bootloader gen_project_binary + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --dont-write-deprecated --output config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/check_term.py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/kconfigs_projbuild.in KCONFIG_CONFIG=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig IDF_TARGET=esp32s3 IDF_ENV_FPGA= E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe -m menuconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env --env IDF_TARGET=esp32s3 --env IDF_ENV_FPGA= --output config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confserver.py --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py --list-separator=semicolon --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --sdkconfig-rename E:/Espressif/frameworks/esp-idf-v5.0.4/sdkconfig.rename --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env --dont-write-deprecated --output savedefconfig E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E make_directory E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/bootloader-complete && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -DSDKCONFIG=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig -DIDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -DIDF_TARGET=esp32s3 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader -DPROJECT_SOURCE_DIR=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL -GNinja E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/src/bootloader-stamp/bootloader-install" + DESC = No install step for 'bootloader' + restat = 1 + + +############################################# +# 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -Dcfgdir= -P E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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-update || esp-idf/partition_table/partition_table_bin + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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-download || esp-idf/partition_table/partition_table_bin + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 || _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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a wifi_station.elf + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND wifi_station.elf || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --elf-sha256-offset 0xb0 --min-rev-full 0 --max-rev-full 99 -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.elf && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E md5sum E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin > E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 || _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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + + +############################################# +# Custom command for CMakeFiles\erase_flash + +build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/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\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_monitor.py -D SERIAL_TOOL_ARGS=--target;esp32s3;--revision;0;E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.elf -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\flash + +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || _project_elf_src app bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 wifi_station.map + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.map" + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND wifi_station.map + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py --files E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.map" + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND wifi_station.map + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/idf_size.py --archives E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.map" + + +############################################# +# Custom command for CMakeFiles\dfu + +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || _project_elf_src bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkdfu.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/dfu.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/flasher_args.json --pid 9 --flash-size 2MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D ESP_DFU_LIST="1" -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D ESP_DFU_BIN="E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/dfu.bin" -D ESP_DFU_PID="9" -P E:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkuf2.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/uf2-app.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/flasher_args.json --chip-id 0xc47e5767 --bin app" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND || _project_elf_src bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/mkuf2.py write -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/uf2.bin --json E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/flasher_args.json --chip-id 0xc47e5767" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ringbuf + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + + +# ============================================================================= +# 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_intr.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = xtensa.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\xtensa && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_efuse + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\ringbuf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + OBJECT_FILE_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + + +# ============================================================================= +# 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/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a + TARGET_PDB = esp_ringbuf.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_ringbuf && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_ringbuf && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_ringbuf && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_ringbuf && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_ringbuf && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_driver + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/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 + + +# ============================================================================= +# 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/driver/libdriver.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = efuse.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\efuse && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/efuse_table_gen.py E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Order-only phony target for __idf_driver + +build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_esp_pm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/gpio.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio\gpio.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/rtc_io.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio\rtc_io.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gptimer.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\gptimer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/ledc.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\ledc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_crc.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdspi_crc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_host.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdspi_host.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_transaction.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdspi_transaction.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\spi_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_master.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\spi_master.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_slave.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\spi_slave.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_bus_lock.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\spi_bus_lock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/uart.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\timer_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_dma_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_cap.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_cap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_cmpr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_com.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_com.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_fault.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_fault.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_gen.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_gen.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_oper.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_oper.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_sync.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_sync.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_timer.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm\mcpwm_timer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\mcpwm_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/dedic_gpio.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio\dedic_gpio.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdm.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\sigma_delta_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt\rmt_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_encoder.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt\rmt_encoder.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_rx.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt\rmt_rx.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_tx.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt\rmt_tx.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rmt_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/pulse_cnt.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\pulse_cnt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\pcnt_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdmmc_transaction.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdmmc_transaction.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdmmc_host.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\sdmmc_host.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s\i2s_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_std.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s\i2s_std.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\i2s_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s\i2s_pdm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s\i2s_tdm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/temperature_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\temperature_sensor.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rtc_temperature_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/usb_serial_jtag.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\usb_serial_jtag.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_slave_hd.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\spi_slave_hd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj: C_COMPILER____idf_driver_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\esp32s3\touch_sensor.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\esp32s3 + + +# ============================================================================= +# 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/gpio/gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\driver\libdriver.a + TARGET_PDB = driver.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\driver && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\driver && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\driver && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\driver && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\driver && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_locks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_trace.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_impl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_pm\libesp_pm.a + TARGET_PDB = esp_pm.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_pm && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_pm && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_pm && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_pm && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_pm && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_mbedcrypto 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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle\esp_crt_bundle.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__ + + +# ============================================================================= +# 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/library/libmbedcrypto.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mbedtls\libmbedtls.a + TARGET_PDB = mbedtls.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\tools\cmake\3.24.0\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 E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D DATA_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P E:/Espressif/frameworks/esp-idf-v5.0.4/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/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/cacrt_all.pem E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q" + DESC = Generating x509_crt_bundle + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\include && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\include && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\include && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\include && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\include && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aes.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesni.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesce.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aria.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1parse.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1write.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\base64.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_core.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod_raw.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\camellia.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ccm.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chacha20.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chachapoly.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher_wrap.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\constant_time.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cmac.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ctr_drbg.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\des.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\dhm.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdh.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdsa.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecjpake.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp_curves.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy_poll.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\error.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\gcm.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hash_info.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/hash_info.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hash_info.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hkdf.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hmac_drbg.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lmots.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lms.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md5.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\memory_buffer_alloc.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\nist_kw.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\oid.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\padlock.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pem.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk_wrap.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs12.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs5.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkparse.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkwrite.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform_util.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\poly1305.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_aead.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_cipher.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_client.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_driver_wrappers.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_ecp.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_hash.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_mac.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_pake.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_rsa.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_se.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_slot_management.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_storage.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_its_file.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_util.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ripemd160.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa_alt_helpers.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha1.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha256.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha512.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\threading.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\timing.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version_features.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma\esp_sha_gdma_impl.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\dma\esp_aes_gdma_impl.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\crypto_shared_gdma\esp_crypto_shared_gdma.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\crypto_shared_gdma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\dma\esp_aes.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma\sha.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_ds\esp_rsa_sign_alt.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_ds + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp_bignum.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp32s3\bignum.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\esp32s3 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma\esp_sha1.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma\esp_sha256.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma\esp_sha512.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\sha\dma + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\md\esp_md.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\md + + +# ============================================================================= +# 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/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/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/hash_info.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.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_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/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/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + TARGET_PDB = mbedcrypto.a.dbg + 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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\pkcs7.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_create.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crl.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crt.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_csr.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_crt.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_csr.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + + +# ============================================================================= +# 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_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 + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a + TARGET_PDB = mbedx509.a.dbg + +# ============================================================================= +# 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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\debug.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_reader.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_trace.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cache.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ciphersuites.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_client.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cookie.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_debug_helpers_generated.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_msg.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ticket.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_client.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_server.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_keys.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_server.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_client.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_generic.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port\net_sockets.c.obj.d + FLAGS = -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\E_\Espressif\frameworks\esp-idf-v5.0.4\components\mbedtls\port + + +# ============================================================================= +# 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/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a + TARGET_PDB = mbedtls.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\library && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\library && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\library && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\library && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mbedtls\mbedtls\library && E:\Espressif\tools\cmake\3.24.0\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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_bootloader_support + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D PROJECT_NAME=\"wifi_station\" -DPROJECT_VER=\"v5.0.4-dirty\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + 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 + + +# ============================================================================= +# 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/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_app_format\libesp_app_format.a + TARGET_PDB = esp_app_format.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_app_format && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_partition + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\idf\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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\idf + + +# ============================================================================= +# 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/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.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/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/flash_partitions.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_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj || esp-idf/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = bootloader_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader_support && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bootloader && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P E:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\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 || _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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 || _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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary wifi_station.elf + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\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 E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/partitions_singleapp.csv E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/gen_esp32part.py + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/partitions_singleapp.csv E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo ******************************************************************************* && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo ******************************************************************************* && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/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=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/Espressif/tools/cmake/3.24.0/bin/cmake.exe -P E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\partition_table && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_app_update + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_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 + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition_target.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_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 + + +# ============================================================================= +# 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/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_partition\libesp_partition.a + TARGET_PDB = esp_partition.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_partition && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_partition && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_partition && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_partition && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_partition && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_spi_flash + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_ops.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_app_desc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\app_update\libapp_update.a + TARGET_PDB = app_update.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_update && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_update && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_update && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_update && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_update && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_pthread + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_brownout_hook.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp32s3/spi_timing_config.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3\spi_timing_config.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_timing_tuning.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_timing_tuning.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_hpm_enable.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_hpm_enable.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_drivers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_generic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_issi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_gd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_winbond.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_boya.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic_opi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_th.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\memspi_host_driver.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\cache_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_mmap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_ops.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/flash_ops_esp32s3.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp32s3/flash_ops_esp32s3.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3\flash_ops_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_api.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_spi_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_app.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_noos.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + + +# ============================================================================= +# 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_timing_config.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.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/esp32s3/flash_ops_esp32s3.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = spi_flash.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spi_flash && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_esp_system + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_cond_var.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_local_storage.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_rwlock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + + +# ============================================================================= +# 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/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\pthread\libpthread.a + TARGET_PDB = pthread.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\pthread && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\pthread && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\pthread && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\pthread && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\pthread && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_rom + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\crosscore_int.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_ipc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\freertos_hooks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\int_wdt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\panic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-stack-protector + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\system_time.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\stack_check.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-stack-protector + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\ubsan.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\xt_wdt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\debug_stubs.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/task_wdt/task_wdt_impl_timergroup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt_impl_timergroup.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\cpu_start.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\panic_handler.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\brownout.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\clk.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\reset_reason.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\system_internal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\cache_err_int.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/apb_backup_dma.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\apb_backup_dma.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\panic_arch.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/panic_handler_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\expression_with_stack.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_helpers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_stubs.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\trax.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/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/brownout.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp_system.a.dbg + + +############################################# +# Utility command for __ldgen_output_sections.ld + +build esp-idf/esp_system/__ldgen_output_sections.ld: phony esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/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 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 edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\cmake\3.24.0\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\__ldgen_output_sections.ld + +build esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + + +############################################# +# 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 E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/app.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/linker_common.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/newlib.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/system_libs.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/common.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/soc.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/linker.lf E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/usb/libusb.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/touch_element/libtouch_element.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/usb/libusb.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/tools/ldgen/ldgen.py --config E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig --fragments-list E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/app.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/linker_common.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/newlib.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/system_libs.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/common.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/soc.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/linker.lf;E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/linker.lf --input E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in --output E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/sections.ld --kconfig E:/Espressif/frameworks/esp-idf-v5.0.4/Kconfig --env-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config.env --libraries-file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/ldgen_libraries --objdump E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe" + DESC = Generating ld/sections.ld + restat = 1 + + +############################################# +# 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 E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/memory.ld.in config/sdkconfig.h + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-gcc.exe -C -P -x c -E -o E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld -I E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -I E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/memory.ld.in" + DESC = Generating memory.ld linker script... + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_system\port\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_crc.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_regi2c.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_regi2c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj: C_COMPILER____idf_esp_rom_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_mmap.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_mmap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + + +# ============================================================================= +# 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_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp_rom.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_rom && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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/mpu_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rtc_io_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\timer_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/timer_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\timer_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gpio_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_encrypt_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sha_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_oneshot_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/systimer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\systimer_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rmt_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\pcnt_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mcpwm_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\twai_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\twai_hal_iram.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/gdma_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2s_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdm_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/lcd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lcd_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ds_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_gpspi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hd_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_phy_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_phy_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/xt_wdt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\xt_wdt_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\aes_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\brownout_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/hmac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\hmac_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/rtc_cntl_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\rtc_cntl_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj: C_COMPILER____idf_hal_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_dwc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_dwc_hal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + + +# ============================================================================= +# 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/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/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/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.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/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/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/sha_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/systimer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = hal.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\hal && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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/log.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log_buffers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf_log_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_freertos.c || cmake_object_order_depends_target___idf_log + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\log_freertos.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + + +# ============================================================================= +# 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/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = log.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\log && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\multi_heap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf\tlsf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\memory_layout_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj: C_COMPILER____idf_heap_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/port/esp32s3/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32s3\memory_layout.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32s3 + + +# ============================================================================= +# 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.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 + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\heap\libheap.a + TARGET_PDB = heap.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\heap && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\heap && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\heap && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\heap && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\heap && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_hw_support + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj: C_COMPILER____idf_soc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_otg_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_otg_periph.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + + +# ============================================================================= +# 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/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/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_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/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = soc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/esp32s3/edit_cache: phony esp-idf/soc/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/esp32s3/rebuild_cache: phony esp-idf/soc/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/soc/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/esp32s3/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/soc/esp32s3/install: phony esp-idf/soc/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/soc/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/esp32s3/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\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/esp32s3/install/local: phony esp-idf/soc/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/esp32s3/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\soc\esp32s3 && E:\Espressif\tools\cmake\3.24.0\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/esp32s3/install/strip: phony esp-idf/soc/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clk.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_ctrl_os.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\hw_random.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\intr_alloc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mac_addr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\revision.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_module.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modes.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_gpio.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_mac_bb.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_mac_bb.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\regi2c_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sar_periph_ctrl_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\adc_share_hw_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_retention.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_retention.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\gdma.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/async_memcpy_impl_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\async_memcpy_impl_gdma.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_async_memcpy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\systimer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_wake_stub.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_pm.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_pm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_hmac.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_hmac.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_ds.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_ds.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_crypto_lock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\sar_periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_memprot.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_memprot.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj: C_COMPILER____idf_esp_hw_support_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp_memprot_conv.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_memprot_conv.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/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 + + +# ============================================================================= +# 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/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.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/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp_hw_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hw_support\port\esp32s3 && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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/FreeRTOS-Kernel/portable/xtensa/port.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\port.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj: ASM_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_context.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_overlay_os_hook.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj: ASM_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_vector_defaults.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj: ASM_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_vectors.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\port_systick.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/croutine.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\croutine.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\event_groups.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\list.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\queue.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\tasks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\timers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\stream_buffer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\app_startup.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-openocd.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-openocd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj: C_COMPILER____idf_freertos_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/freertos_v8_compat.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\freertos_v8_compat.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + + +# ============================================================================= +# 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/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_context.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/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/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj || esp-idf/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\freertos\libfreertos.a + TARGET_PDB = freertos.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\freertos && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_cxx + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/abort.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\abort.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\assert.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\heap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -fno-builtin + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\locks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\poll.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\pthread.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\random.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\reent_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\newlib_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\syscalls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\termios.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\stdatomic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\time.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\sysconf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\realpath.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\port\esp_time_impl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\port + + +# ============================================================================= +# 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/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj || esp-idf/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\newlib\libnewlib.a + TARGET_PDB = newlib.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib\port && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/port/edit_cache: phony esp-idf/newlib/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib\port && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/port/rebuild_cache: phony esp-idf/newlib/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib\port && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/port/install: phony esp-idf/newlib/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib\port && E:\Espressif\tools\cmake\3.24.0\bin\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/port/install/local: phony esp-idf/newlib/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\newlib\port && E:\Espressif\tools\cmake\3.24.0\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/port/install/strip: phony esp-idf/newlib/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_common + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_exception_stubs.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_guards.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + + +# ============================================================================= +# 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/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\cxx\libcxx.a + TARGET_PDB = cxx.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cxx && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cxx && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cxx && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cxx && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cxx && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_timer + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp_common.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_common && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_event + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\ets_timer_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\system_time.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_systimer.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + + +# ============================================================================= +# 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/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj || esp-idf/esp_event/libesp_event.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_timer\libesp_timer.a + TARGET_PDB = esp_timer.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_timer && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_timer && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_timer && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_timer && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_timer && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\app_trace.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\app_trace_util.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\host_file_io.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj: C_COMPILER____idf_app_trace_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/gcov/gcov_rtio.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\gcov\gcov_rtio.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\gcov + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\port\port_uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + + +# ============================================================================= +# 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/gcov/gcov_rtio.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 + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\app_trace\libapp_trace.a + TARGET_PDB = app_trace.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_trace && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_trace && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_trace && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_trace && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\app_trace && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\default_event_loop.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event_private.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_event\libesp_event.a + TARGET_PDB = esp_event.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_event && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_event && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_event && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_event && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_event && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_api.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_cxx_api.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_item_hash_list.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_page.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_pagemanager.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_storage.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_simple.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_locked.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_lookup.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_manager.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_types.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + + +# ============================================================================= +# 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/esp_phy/libesp_phy.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\nvs_flash\libnvs_flash.a + TARGET_PDB = nvs_flash.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\nvs_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\nvs_flash && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\nvs_flash && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\nvs_flash && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\nvs_flash && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_phy + + +############################################# +# Order-only phony target for __idf_esp_phy + +build cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_vfs + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_override.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\lib_printf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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_init.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_phy\libesp_phy.a + TARGET_PDB = esp_phy.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_phy && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_phy && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_phy && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_phy && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_phy && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_eventfd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_uart.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_semihost.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj: C_COMPILER____idf_vfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_console.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_console.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj: C_COMPILER____idf_vfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_usb_serial_jtag.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_usb_serial_jtag.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + + +# ============================================================================= +# 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_uart.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj || esp-idf/lwip/liblwip.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\vfs\libvfs.a + TARGET_PDB = vfs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\vfs && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\vfs && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\vfs && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\vfs && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\vfs && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_lib.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_msg.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\err.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\if_api.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netbuf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netdb.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netifapi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\sockets.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\tcpip.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns\netbiosns.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\def.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\dns.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\inet_chksum.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ip.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\mem.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\memp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\netif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\pbuf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\raw.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\stats.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\sys.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-type-limits + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_in.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_out.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\timeouts.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\udp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\autoip.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\dhcp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\etharp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\icmp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\igmp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_napt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_addr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_frag.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\dhcp6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ethip6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\icmp6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\inet6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_addr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_frag.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\mld6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\nd6.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ethernet.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif_fdb.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\slipif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\auth.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ccp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-md5.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-new.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap_ms.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-array-parameter + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\demand.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ecp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eui64.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\fsm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipcp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipv6cp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\lcp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\magic.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\mppe.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\multilink.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ppp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppapi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppcrypt.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppoe.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppol2tp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppos.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-type-limits + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\upap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\vj.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\hooks\tcp_isn_default.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\hooks + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\hooks\lwip_default_hooks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\hooks + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\debug\lwip_debug.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\debug + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\freertos\sys_arch.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\freertos + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/sockets_ext.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\sockets_ext.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32\vfs_lwip.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\esp_ping.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping_sock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver\dhcpserver.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver + + +# ============================================================================= +# 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/esp32/hooks/tcp_isn_default.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\lwip\liblwip.a + TARGET_PDB = lwip.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\lwip && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\lwip && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\lwip && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\lwip && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\lwip && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_handlers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_objects.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_defaults.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip_defaults.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\wlanif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\ethernetif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\esp_pbuf_ref.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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_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 + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_netif\libesp_netif.a + TARGET_PDB = esp_netif.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_netif && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_netif && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_netif && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_netif && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_netif && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_wifi + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\os_xtensa.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\eloop.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ap_config.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ieee802_1x.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth_ie.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\sta_info.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\sae.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/dragonfly.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\dragonfly.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\wpa_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\bitfield.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-siv.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-kdf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ccmp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-gcm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\crypto_ops.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_group5.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_groups.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ms_funcs.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tlsprf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-tlsprf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-tlsprf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-prf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-prf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-prf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\md4-internal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tprf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_common\eap_wsc_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\ieee802_11_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\chap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_mschapv2.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_ttls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\mschapv2.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_pac.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\pmksa_cache.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa_ie.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\base64.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\ext_password.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\uuid.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpabuf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpa_debug.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\json.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_build.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_parse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_process.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_dev_attr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_enrollee.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpa2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa2.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa_main.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpas_glue.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wps.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_owe.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_hostap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\tls_mbedtls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/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_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\rc4.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\des-internal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-omac1.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-omac1.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-wrap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-unwrap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-ccm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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/sta_info.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/esp_supplicant/src/esp_wpa2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.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_wifi/libesp_wifi.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wpa_supplicant\libwpa_supplicant.a + TARGET_PDB = wpa_supplicant.a.dbg + RSP_FILE = CMakeFiles\__idf_wpa_supplicant.rsp + + +############################################# +# Utility command for edit_cache + +build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wpa_supplicant && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wpa_supplicant && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wpa_supplicant && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wpa_supplicant && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wpa_supplicant && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_http_parser + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/coexist.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\coexist.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\mesh_event.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig_ack.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_netif.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default_ap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/esp32s3/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32s3\esp_adapter.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/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 + + +# ============================================================================= +# 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/coexist.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/smartconfig_ack.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/http_parser/libhttp_parser.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_wifi\libesp_wifi.a + TARGET_PDB = esp_wifi.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_wifi && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_wifi && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_wifi && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_wifi && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_wifi && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bt && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bt && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bt && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bt && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\bt && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity\src\unity.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_runner.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_freertos.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_cache.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_memory.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_port_esp32.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\port\esp\unity_utils_memory_esp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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_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 + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\unity\libunity.a + TARGET_PDB = unity.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\unity && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\unity && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\unity && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\unity && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\unity && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\CMock\src\cmock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\cmock\libcmock.a + TARGET_PDB = cmock.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cmock && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cmock && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cmock && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cmock && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\cmock && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\commands.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/esp_console_repl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\split_argv.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise\linenoise.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_cmd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_date.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dbl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dstr.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_end.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_file.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_hashtable.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_int.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_lit.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rem.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rex.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_str.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\argtable3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + + +# ============================================================================= +# 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_repl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\console\libconsole.a + TARGET_PDB = console.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\console && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\console && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\console && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\console && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\console && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\http_parser.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + OBJECT_FILE_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\http_parser\libhttp_parser.a + TARGET_PDB = http_parser.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\http_parser && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\http_parser && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\http_parser && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\http_parser && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\http_parser && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp-tls-crypto\esp_tls_crypto.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + 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 + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_error_capture.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_mbedtls.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + + +# ============================================================================= +# 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_mbedtls.c.obj || esp-idf/esp_adc/libesp_adc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp-tls\libesp-tls.a + TARGET_PDB = esp-tls.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp-tls && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp-tls && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp-tls && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp-tls && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp-tls && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_esp_eth + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali_curve_fitting.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_oneshot.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp_adc_cal_common_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/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 + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_continuous.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32s3\curve_fitting_coefficients.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/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 + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp32s3\esp_adc_cal_legacy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/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 + + +# ============================================================================= +# 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_cali.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj || esp-idf/esp_eth/libesp_eth.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_adc\libesp_adc.a + TARGET_PDB = esp_adc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_adc && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_adc && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_adc && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_adc && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_adc && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Order-only phony target for __idf_esp_eth + +build cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_esp_gdbstub + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/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 + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/src/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_802_3.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/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 + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_netif_glue.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/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 + + +# ============================================================================= +# 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/esp_eth_phy_802_3.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_eth\libesp_eth.a + TARGET_PDB = esp_eth.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_eth && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_eth && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_eth && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_eth && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_eth && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_tcp_transport + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\packet.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\xtensa\gdbstub_xtensa.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\xtensa + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj: ASM_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\xtensa + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj: ASM_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\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=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\xtensa + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj: C_COMPILER____idf_esp_gdbstub_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp_common/gdbstub_common.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\esp_common\gdbstub_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\esp_common + + +# ============================================================================= +# 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/packet.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_gdbstub\libesp_gdbstub.a + TARGET_PDB = esp_gdbstub.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_gdbstub && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_gdbstub && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_gdbstub && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_gdbstub && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_gdbstub && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidh.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hid_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_hid\libesp_hid.a + TARGET_PDB = esp_hid.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hid && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hid && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hid && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hid && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_hid && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ssl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_internal.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ws.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + + +# ============================================================================= +# 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_ws.c.obj || esp-idf/esp_http_client/libesp_http_client.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\tcp_transport\libtcp_transport.a + TARGET_PDB = tcp_transport.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\tcp_transport && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\tcp_transport && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\tcp_transport && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\tcp_transport && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\tcp_transport && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\esp_http_client.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_auth.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_header.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_http_client\libesp_http_client.a + TARGET_PDB = esp_http_client.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_client && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_client && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_client && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_client && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_client && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_main.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_parse.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_sess.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_txrx.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_uri.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_ws.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\util\ctrl_sock.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_http_server\libesp_http_server.a + TARGET_PDB = esp_http_server.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_server && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_server && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_server && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_server && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_http_server && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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 || cmake_object_order_depends_target___idf_ulp + +build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\src\esp_https_ota.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/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 + + +# ============================================================================= +# 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/ulp/libulp.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_https_ota\libesp_https_ota.a + TARGET_PDB = esp_https_ota.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_ota && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_ota && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_ota && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_ota && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_ota && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_server && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_server && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_server && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_server && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_https_server && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_i2c.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_i2c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_spi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_nt35510.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ssd1306.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_st7789.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ops.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_i80.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_i80.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj: C_COMPILER____idf_esp_lcd_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_rgb.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_rgb.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/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 + + +# ============================================================================= +# 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_io_i2c.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_lcd\libesp_lcd.a + TARGET_PDB = esp_lcd.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_lcd && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_lcd && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_lcd && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_lcd && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_lcd && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\protobuf-c\protobuf-c\protobuf-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + 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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\protobuf-c\libprotobuf-c.a + TARGET_PDB = protobuf-c.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protobuf-c && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protobuf-c && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protobuf-c && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protobuf-c && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protobuf-c && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common\protocomm.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\constants.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec0.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec1.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec2.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\session.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_console.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_httpd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security0.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security1.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security2.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp_mpi.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\protocomm\libprotocomm.a + TARGET_PDB = protocomm.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protocomm && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protocomm && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protocomm && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protocomm && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\protocomm && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_handler.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + 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 -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_transport_httpd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_local_ctrl\libesp_local_ctrl.a + TARGET_PDB = esp_local_ctrl.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_local_ctrl && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_local_ctrl && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_local_ctrl && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_local_ctrl && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_local_ctrl && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_psram && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_psram && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_psram && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_psram && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esp_psram && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_common.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_checksum.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_checksum.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_flash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_uart.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_elf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_binary.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/port/xtensa/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa\core_dump_port.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa + + +# ============================================================================= +# 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_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\espcoredump\libespcoredump.a + TARGET_PDB = espcoredump.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\espcoredump && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\espcoredump && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\espcoredump && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\espcoredump && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\espcoredump && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\Partition.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\SPI_Flash.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Perf.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Safe.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Flash.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\crc32.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\wear_levelling.cpp.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wear_levelling\libwear_levelling.a + TARGET_PDB = wear_levelling.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wear_levelling && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wear_levelling && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wear_levelling && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wear_levelling && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wear_levelling && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Order-only phony target for __idf_sdmmc + +build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_cmd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_init.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_io.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_mmc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_sd.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + + +# ============================================================================= +# 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/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\sdmmc\libsdmmc.a + TARGET_PDB = sdmmc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\sdmmc && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\sdmmc && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\sdmmc && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\sdmmc && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\sdmmc && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_sdmmc cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_rawflash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_sdmmc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_wl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ff.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos\ffsystem.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ffunicode.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_sdmmc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_spiflash.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + + +# ============================================================================= +# 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_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\fatfs\libfatfs.a + TARGET_PDB = fatfs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\fatfs && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\fatfs && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\fatfs && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\fatfs && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\fatfs && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\idf_test && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\idf_test && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\idf_test && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\idf_test && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\idf_test && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ieee802154 && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ieee802154 && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ieee802154 && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ieee802154 && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ieee802154 && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON_Utils.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\json\libjson.a + TARGET_PDB = json.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\json && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\json && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\json && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\json && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\json && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\mqtt_client.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_msg.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_outbox.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\platform_esp32_idf.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mqtt\libmqtt.a + TARGET_PDB = mqtt.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mqtt && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mqtt && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mqtt && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mqtt && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\mqtt && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\openthread && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\openthread && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\openthread && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\openthread && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\openthread && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_access.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_apis.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_masks.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\perfmon\libperfmon.a + TARGET_PDB = perfmon.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/perfmon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\perfmon && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\perfmon && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\perfmon && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\perfmon && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\perfmon && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs_api.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_cache.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_check.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_gc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_hydrogen.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_nucleus.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -Wno-stringop-truncation + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\esp_spiffs.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\spiffs\libspiffs.a + TARGET_PDB = spiffs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spiffs && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spiffs && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spiffs && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spiffs && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\spiffs && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_element.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_element.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj: C_COMPILER____idf_touch_element_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_button.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_button.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj: C_COMPILER____idf_touch_element_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_slider.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_slider.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj: C_COMPILER____idf_touch_element_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_matrix.c || cmake_object_order_depends_target___idf_touch_element + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir\touch_matrix.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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 + OBJECT_DIR = esp-idf\touch_element\CMakeFiles\__idf_touch_element.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\touch_element\libtouch_element.a + TARGET_PDB = touch_element.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/touch_element/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\touch_element && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\touch_element && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\touch_element && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\touch_element && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\touch_element && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_ulp + + +############################################# +# Order-only phony target for __idf_ulp + +build cmake_object_order_depends_target___idf_ulp: phony || esp-idf/esp_system/memory_ld esp-idf/mbedtls/custom_bundle + +build esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj: C_COMPILER____idf_ulp_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/ulp_common.c || cmake_object_order_depends_target___idf_ulp + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\ulp\CMakeFiles\__idf_ulp.dir\ulp_common\ulp_common.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include + OBJECT_DIR = esp-idf\ulp\CMakeFiles\__idf_ulp.dir + OBJECT_FILE_DIR = esp-idf\ulp\CMakeFiles\__idf_ulp.dir\ulp_common + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_ulp + + +############################################# +# Link the static library esp-idf\ulp\libulp.a + +build esp-idf/ulp/libulp.a: C_STATIC_LIBRARY_LINKER____idf_ulp_ esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj || esp-idf/esp_system/memory_ld esp-idf/mbedtls/custom_bundle + LANGUAGE_COMPILE_FLAGS = -mlongcalls + OBJECT_DIR = esp-idf\ulp\CMakeFiles\__idf_ulp.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\ulp\libulp.a + TARGET_PDB = ulp.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ulp && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ulp && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ulp && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ulp && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\ulp && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/hcd_dwc.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\hcd_dwc.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/hub.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\hub.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_helpers.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_helpers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_host.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_host.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_private.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_private.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usbh.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usbh.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + +build esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj: C_COMPILER____idf_usb_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_phy.c || cmake_object_order_depends_target___idf_usb + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\usb\CMakeFiles\__idf_usb.dir\usb_phy.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + OBJECT_FILE_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + + +# ============================================================================= +# 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/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 + OBJECT_DIR = esp-idf\usb\CMakeFiles\__idf_usb.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\usb\libusb.a + TARGET_PDB = usb.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\usb && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\usb && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\usb && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\usb && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\usb && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_config.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_scan.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\manager.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\handlers.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_console.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_config.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_scan.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_constants.pb-c.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_ E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_softap.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/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 + + +# ============================================================================= +# 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/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_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 + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wifi_provisioning\libwifi_provisioning.a + TARGET_PDB = wifi_provisioning.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wifi_provisioning && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wifi_provisioning && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wifi_provisioning && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wifi_provisioning && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\wifi_provisioning && E:\Espressif\tools\cmake\3.24.0\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: +# E:/Espressif/frameworks/esp-idf-v5.0.4/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_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_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/can_network.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/can_network.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\can_network.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\mcpwm_bdc_control.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/station_example_main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\station_example_main.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/modbus-tcp.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\modbus-tcp.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\ModbusS.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/pid_ctrl.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\pid_ctrl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/bdc_motor.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bdc_motor.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj: C_COMPILER____idf_main_ E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/bdc_motor_mcpwm_impl.c || cmake_object_order_depends_target___idf_main + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bdc_motor_mcpwm_impl.c.obj.d + FLAGS = -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v5.0.4-dirty\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS + INCLUDES = -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + + +# ============================================================================= +# 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/can_network.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj || esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/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 + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = main.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL -BE:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\bin\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 = cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\main && E:\Espressif\tools\cmake\3.24.0\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 + +# ============================================================================= +# 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_common: phony esp-idf/esp_common/libesp_common.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_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_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_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a + +build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a + +build __idf_fatfs: phony esp-idf/fatfs/libfatfs.a + +build __idf_freertos: phony esp-idf/freertos/libfreertos.a + +build __idf_hal: phony esp-idf/hal/libhal.a + +build __idf_heap: phony esp-idf/heap/libheap.a + +build __idf_http_parser: phony esp-idf/http_parser/libhttp_parser.a + +build __idf_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_newlib: phony esp-idf/newlib/libnewlib.a + +build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.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_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_ulp: phony esp-idf/ulp/libulp.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 __ldgen_output_sections.ld: phony esp-idf/esp_system/__ldgen_output_sections.ld + +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 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-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash + +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_common.a: phony esp-idf/esp_common/libesp_common.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_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_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_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a + +build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a + +build libfatfs.a: phony esp-idf/fatfs/libfatfs.a + +build libfreertos.a: phony esp-idf/freertos/libfreertos.a + +build libhal.a: phony esp-idf/hal/libhal.a + +build libheap.a: phony esp-idf/heap/libheap.a + +build libhttp_parser.a: phony esp-idf/http_parser/libhttp_parser.a + +build 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 libnewlib.a: phony esp-idf/newlib/libnewlib.a + +build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.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 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 libulp.a: phony esp-idf/ulp/libulp.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 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 show-efuse-table: phony esp-idf/efuse/show-efuse-table + +build show_efuse_table: phony esp-idf/efuse/show_efuse_table + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build + +build all: phony bootloader app wifi_station.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_ringbuf/all esp-idf/efuse/all esp-idf/driver/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_partition/all esp-idf/app_update/all esp-idf/spi_flash/all esp-idf/pthread/all esp-idf/esp_system/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_phy/all esp-idf/vfs/all esp-idf/lwip/all esp-idf/esp_netif/all esp-idf/wpa_supplicant/all esp-idf/esp_wifi/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_adc/all esp-idf/esp_eth/all esp-idf/esp_gdbstub/all esp-idf/esp_hid/all esp-idf/tcp_transport/all esp-idf/esp_http_client/all esp-idf/esp_http_server/all esp-idf/esp_https_ota/all esp-idf/esp_https_server/all esp-idf/esp_lcd/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/esp_local_ctrl/all esp-idf/esp_psram/all esp-idf/espcoredump/all esp-idf/wear_levelling/all esp-idf/sdmmc/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/json/all esp-idf/mqtt/all esp-idf/openthread/all esp-idf/perfmon/all esp-idf/spiffs/all esp-idf/touch_element/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt + +build esp-idf/bt/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock + +build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console + +build esp-idf/console/all: phony esp-idf/console/libconsole.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid + +build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client + +build esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server + +build esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota + +build esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd + +build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl + +build esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy + +build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram + +build esp-idf/esp_psram/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/soc/esp32s3 + +build esp-idf/esp_system/port/soc/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser + +build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154 + +build esp-idf/ieee802154/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json + +build esp-idf/json/all: phony esp-idf/json/libjson.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip + +build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty + +build esp-idf/mbedtls/mbedtls/3rdparty/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt + +build esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib + +build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/port/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/port + +build esp-idf/newlib/port/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread + +build esp-idf/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon + +build esp-idf/perfmon/all: phony esp-idf/perfmon/libperfmon.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a esp-idf/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3 + +build esp-idf/soc/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element + +build esp-idf/touch_element/all: phony esp-idf/touch_element/libtouch_element.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp + +build esp-idf/ulp/all: phony esp-idf/ulp/libulp.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity + +build esp-idf/unity/all: phony esp-idf/unity/libunity.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb + +build esp-idf/usb/all: phony esp-idf/usb/libusb.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs + +build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning + +build esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +# ============================================================================= + +############################################# +# Folder: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 | CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/host/nimble/nimble/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/cmock/CMock/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_phy/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_wifi/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/heap/tlsf/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/ieee802154/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/json/cJSON/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/lwip/lwip/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mbedtls/mbedtls/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mqtt/esp-mqtt/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/openthread/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/protobuf-c/protobuf-c/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/spiffs/spiffs/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/unity/unity/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c3_family/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/host/nimble/nimble/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/sources.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/ld.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/port/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/openthread/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/partitions_singleapp.csv E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/build.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/component.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/depgraph.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/dfu.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/git_submodules.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/idf.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/kconfig.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/ldgen.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project_description.json.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/targets.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/tool_version_check.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/toolchain-esp32s3.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/uf2.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/utilities.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/version.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/config.env.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/bt/host/nimble/nimble/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/cmock/CMock/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_phy/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/esp_wifi/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/heap/tlsf/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/ieee802154/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/json/cJSON/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/lwip/lwip/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mbedtls/mbedtls/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/mqtt/esp-mqtt/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/lib/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/openthread/openthread/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/protobuf-c/protobuf-c/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/spiffs/spiffs/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/.git/modules/components/unity/unity/HEAD E$:/Espressif/frameworks/esp-idf-v5.0.4/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32c3_family/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/host/nimble/nimble/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/console/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/sources.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/ld.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/log/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/port/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/lib/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/openthread/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/partitions_singleapp.csv E$:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/.git E$:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/CMakeLists.txt E$:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/project_include.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/build.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/component.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/depgraph.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/dfu.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/git_submodules.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/idf.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/kconfig.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/ldgen.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/project_description.json.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/targets.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/third_party/GetGitRevisionDescription.cmake.in E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/tool_version_check.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/toolchain-esp32s3.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/uf2.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/utilities.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/cmake/version.cmake E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/confgen.py E$:/Espressif/frameworks/esp-idf-v5.0.4/tools/kconfig_new/config.env.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake E$:/Espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: 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..ee40ce6 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..daf0acf --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,4127 @@ +[ +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -mlongcalls -fdiagnostics-color=always -o CMakeFiles\\wifi_station.elf.dir\\project_elf_src_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\project_elf_src_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\project_elf_src_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\eri.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\eri.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xt_trax.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xt_trax.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xtensa_intr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xtensa_intr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xtensa_intr_asm.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\xtensa\\xtensa_intr_asm.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_ringbuf\\ringbuf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_ringbuf\\ringbuf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_table.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_fields.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\esp32s3\\esp_efuse_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_api.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_api.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_fields.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\esp_efuse_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\gpio.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\gpio.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\gpio.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\rtc_io.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\rtc_io.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\rtc_io.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gptimer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gptimer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gptimer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\ledc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\ledc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\ledc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdspi_crc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_crc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_crc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdspi_host.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_host.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_host.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdspi_transaction.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_transaction.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdspi_transaction.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi_master.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_master.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_master.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi_slave.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_slave.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_slave.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi_bus_lock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_bus_lock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_bus_lock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\timer_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\timer_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\adc_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\adc_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\adc_dma_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\adc_dma_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_cap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_cap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_cap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_cmpr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_cmpr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_cmpr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_com.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_com.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_com.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_fault.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_fault.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_fault.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_gen.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_gen.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_gen.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_oper.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_oper.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_oper.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_sync.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_sync.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_sync.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\mcpwm\\mcpwm_timer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_timer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\mcpwm\\mcpwm_timer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\mcpwm_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\mcpwm_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\gpio\\dedic_gpio.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\dedic_gpio.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\gpio\\dedic_gpio.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\sigma_delta_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_encoder.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_encoder.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_encoder.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_rx.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_rx.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_rx.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\rmt\\rmt_tx.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_tx.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\rmt\\rmt_tx.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\rmt_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\rmt_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\pulse_cnt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\pulse_cnt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\pulse_cnt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\pcnt_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\pcnt_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc_transaction.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdmmc_transaction.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdmmc_transaction.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\sdmmc_host.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdmmc_host.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\sdmmc_host.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_std.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_std.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_std.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\i2s_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\i2s_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_pdm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_pdm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_pdm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2s\\i2s_tdm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_tdm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\i2s\\i2s_tdm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\temperature_sensor.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\temperature_sensor.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\temperature_sensor.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\deprecated\\rtc_temperature_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\twai.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\twai.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\usb_serial_jtag.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\usb_serial_jtag.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\usb_serial_jtag.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\spi_slave_hd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_slave_hd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\spi_slave_hd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\touch_sensor_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\touch_sensor_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include/driver -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\esp32s3\\touch_sensor.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\esp32s3\\touch_sensor.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\driver\\esp32s3\\touch_sensor.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_locks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_locks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_trace.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_trace.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_impl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_pm\\pm_impl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\x509_crt_bundle.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\build\\x509_crt_bundle.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aes.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aes.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aesni.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aesce.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aria.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\aria.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\asn1parse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\asn1write.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\base64.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\base64.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_core.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\camellia.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ccm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\chacha20.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\chachapoly.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cipher.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\constant_time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\cmac.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\des.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\des.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\dhm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecdh.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecdsa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecjpake.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\entropy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\error.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\gcm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hash_info.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hash_info.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hash_info.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hkdf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\lmots.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\lms.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\lms.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\md.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\md.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\md5.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\md5.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\nist_kw.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\oid.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\oid.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\padlock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pk.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pk.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs12.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs5.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkparse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkwrite.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\platform.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\platform.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\platform_util.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\poly1305.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\psa_util.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ripemd160.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\rsa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha1.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha256.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\sha512.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\threading.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\threading.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\timing.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\version.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\version_features.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha_gdma_impl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_hardware.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_hardware.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_hardware.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_mem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_mem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_mem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_timing.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_timing.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_timing.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\esp_sha.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_xts.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\sha.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\sha.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\sha.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_bignum.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_bignum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp_bignum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp32s3\\bignum.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp32s3\\bignum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\esp32s3\\bignum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha1.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha256.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\sha\\dma\\esp_sha512.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\md\\esp_md.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\md\\esp_md.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\md\\esp_md.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\pkcs7.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_create.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_crl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_crt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509_csr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\debug.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\mps_reader.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\mps_trace.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\mbedtls_debug.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\E_\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\net_sockets.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\net_sockets.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mbedtls\\port\\net_sockets.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D PROJECT_NAME=\\\"wifi_station\\\" -DPROJECT_VER=\\\"v5.0.4-dirty\\\" -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_app_format\\esp_app_desc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_app_format\\esp_app_desc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_common_loader.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_clock_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_mem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_utility.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\esp_image_format.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_encrypt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\secure_boot.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\secure_boot.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\flash_partitions.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\bootloader_efuse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\idf\\bootloader_sha.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\idf\\bootloader_sha.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\bootloader_support\\src\\idf\\bootloader_sha.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_partition\\partition.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_partition\\partition.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_partition\\partition_target.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_partition\\partition_target.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_update\\esp_ota_ops.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_update\\esp_ota_ops.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_update\\esp_ota_app_desc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_update\\esp_ota_app_desc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_brownout_hook.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_brownout_hook.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_timing_config.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp32s3\\spi_timing_config.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp32s3\\spi_timing_config.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_timing_tuning.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_timing_tuning.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_timing_tuning.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_hpm_enable.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_hpm_enable.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_drivers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_generic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_issi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_mxic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_gd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_winbond.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_boya.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_mxic_opi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_chip_th.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\memspi_host_driver.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\memspi_host_driver.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\cache_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\cache_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_mmap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_mmap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_ops.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\flash_ops.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\flash_ops_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp32s3\\flash_ops_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp32s3\\flash_ops_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp_flash_api.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp_flash_api.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\esp_flash_spi_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_os_func_app.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include/spi_flash -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spi_flash\\spi_flash_os_func_noos.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_cond_var.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_cond_var.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_local_storage.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_local_storage.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_rwlock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\pthread\\pthread_rwlock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_err.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_err.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\crosscore_int.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\crosscore_int.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_ipc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_ipc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\freertos_hooks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\freertos_hooks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\int_wdt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\int_wdt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\panic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\panic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_system.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\esp_system.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\startup.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\startup.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\system_time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\system_time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\stack_check.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\stack_check.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\ubsan.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\ubsan.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\xt_wdt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\xt_wdt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\debug_stubs.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\debug_stubs.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\debug_stubs.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\task_wdt\\task_wdt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\cpu_start.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\cpu_start.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\panic_handler.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\panic_handler.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\brownout.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\brownout.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\brownout.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\highint_hdl.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\clk.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\clk.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\trax.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_crc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_sys.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_spiflash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_regi2c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_regi2c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_regi2c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_efuse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_longjmp.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_systimer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_mmap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_mmap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_rom\\patches\\esp_rom_mmap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mpu_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mpu_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\efuse_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\efuse_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\efuse_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mmu_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mmu_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\cache_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\cache_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\rtc_io_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\rtc_io_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\timer_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\timer_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\timer_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\timer_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ledc_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ledc_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ledc_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ledc_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2c_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2c_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2c_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2c_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\gpio_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\gpio_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\uart_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\uart_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\uart_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\uart_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_encrypt_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\sha_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\sha_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_hal_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_hal_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_oneshot_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_oneshot_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\systimer_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\systimer_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\rmt_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\rmt_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\pcnt_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\pcnt_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mcpwm_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\mcpwm_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\twai_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\twai_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_iram.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\twai_hal_iram.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\twai_hal_iram.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\gdma_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\gdma_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2s_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\i2s_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\sdm_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\sdm_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\adc_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\lcd_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\lcd_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ds_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\ds_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal_gpspi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_flash_hal_gpspi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hd_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\spi_slave_hd_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\touch_sensor_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\touch_sensor_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_phy_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_phy_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_phy_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\xt_wdt_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\xt_wdt_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\aes_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\aes_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\brownout_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\brownout_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\brownout_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\hmac_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\hmac_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\hmac_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\touch_sensor_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\touch_sensor_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\rtc_cntl_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\esp32s3\\rtc_cntl_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_dwc_hal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\hal\\usb_dwc_hal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_buffers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_buffers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_buffers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_freertos.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_freertos.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\log\\log_freertos.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\heap_caps.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\heap_caps.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\heap_caps_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\heap_caps_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\multi_heap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\multi_heap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\tlsf\\tlsf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\tlsf\\tlsf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\port\\memory_layout_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\port\\memory_layout_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -DMULTI_HEAP_FREERTOS -Wno-format -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\port\\esp32s3\\memory_layout.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\heap\\port\\esp32s3\\memory_layout.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\lldesc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\lldesc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\dport_access_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\dport_access_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\adc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\adc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\dedic_gpio_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gdma_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\gpio_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdm_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2c_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\i2s_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\interrupts.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\interrupts.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\lcd_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\ledc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\mcpwm_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\pcnt_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rmt_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\rtc_io_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdio_slave_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdio_slave_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdio_slave_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\sdmmc_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\spi_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\spi_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\timer_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\timer_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\touch_sensor_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\temperature_sensor_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\uart_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\uart_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_otg_periph.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_otg_periph.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\soc\\esp32s3\\usb_otg_periph.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\cpu.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\cpu.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_memory_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_clk.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_clk.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\clk_ctrl_os.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\hw_random.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\hw_random.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\intr_alloc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\intr_alloc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\mac_addr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\mac_addr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\periph_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\periph_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\revision.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\revision.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\rtc_module.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\rtc_module.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_modes.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_modes.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_gpio.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_gpio.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_mac_bb.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_mac_bb.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_mac_bb.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\regi2c_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sar_periph_ctrl_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\adc_share_hw_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_retention.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_retention.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_retention.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\gdma.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\gdma.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\gdma.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\async_memcpy_impl_gdma.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\async_memcpy_impl_gdma.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\async_memcpy_impl_gdma.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_async_memcpy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_async_memcpy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\esp_async_memcpy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\systimer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\systimer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\sleep_wake_stub.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_pm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_pm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_pm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_hmac.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_hmac.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_hmac.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_ds.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_ds.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_ds.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_crypto_lock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_crypto_lock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_crypto_lock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/esp_private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp_memprot_conv.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hw_support\\port\\esp_memprot_conv.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_context.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_context.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_context.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vector_defaults.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vector_defaults.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vector_defaults.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vectors.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vectors.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_vectors.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\port_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\port_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\port_systick.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\port_systick.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\portable\\port_systick.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\croutine.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\croutine.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\croutine.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\list.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\queue.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\tasks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\timers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\app_startup.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\app_startup.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-openocd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-openocd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\FreeRTOS-openocd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_v8_compat.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\esp_additions\\freertos_v8_compat.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\freertos\\esp_additions\\freertos_v8_compat.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\abort.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\abort.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\abort.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\assert.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\assert.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\assert.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -fno-builtin -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\heap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\heap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\heap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\locks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\locks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\locks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\poll.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\poll.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\poll.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\pthread.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\pthread.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\pthread.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\random.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\random.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\random.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\reent_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\reent_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\reent_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\newlib_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\newlib_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\newlib_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\syscalls.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\syscalls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\syscalls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\termios.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\termios.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\termios.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\stdatomic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\stdatomic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\stdatomic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\sysconf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\sysconf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\sysconf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\realpath.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\realpath.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\realpath.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/priv_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\port\\esp_time_impl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\port\\esp_time_impl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\newlib\\port\\esp_time_impl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cxx\\cxx_exception_stubs.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cxx\\cxx_guards.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cxx\\cxx_guards.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_common\\src\\esp_err_to_name.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\ets_timer_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\system_time.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\system_time.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer_impl_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_timer\\src\\esp_timer_impl_systimer.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\app_trace.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\app_trace.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\app_trace_util.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\app_trace_util.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\host_file_io.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\host_file_io.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\gcov\\gcov_rtio.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\gcov\\gcov_rtio.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\gcov\\gcov_rtio.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\port\\port_uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\app_trace\\port\\port_uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\default_event_loop.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\default_event_loop.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\esp_event.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\esp_event.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\esp_event_private.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_event\\esp_event_private.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_api.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_api.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_cxx_api.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_page.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_page.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_pagemanager.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_storage.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_storage.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_handle_simple.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_handle_locked.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_partition_manager.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_types.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\nvs_flash\\src\\nvs_types.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\phy_override.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\phy_override.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\lib_printf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\lib_printf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\phy_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_phy\\src\\phy_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_eventfd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_eventfd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_semihost.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_semihost.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_console.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_console.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_console.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_usb_serial_jtag.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_usb_serial_jtag.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\vfs\\vfs_usb_serial_jtag.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\sntp\\sntp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\sntp\\sntp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\api_lib.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\api_msg.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\err.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\err.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\if_api.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\if_api.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netbuf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netdb.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netdb.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\netifapi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\sockets.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\sockets.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\api\\tcpip.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\def.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\def.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\dns.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\dns.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\inet_chksum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ip.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ip.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\mem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\mem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\memp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\memp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\netif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\netif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\pbuf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\raw.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\raw.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\stats.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\stats.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\sys.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\sys.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp_in.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\tcp_out.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\timeouts.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\udp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\udp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ethernet.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\bridgeif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\slipif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-array-parameter -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\hooks\\tcp_isn_default.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\hooks\\tcp_isn_default.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\hooks\\tcp_isn_default.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\hooks\\lwip_default_hooks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\hooks\\lwip_default_hooks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\hooks\\lwip_default_hooks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\debug\\lwip_debug.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\debug\\lwip_debug.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\debug\\lwip_debug.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\freertos\\sys_arch.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\freertos\\sys_arch.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\freertos\\sys_arch.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\sockets_ext.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\sockets_ext.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\sockets_ext.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32\\vfs_lwip.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\vfs_lwip.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\port\\esp32\\vfs_lwip.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\esp_ping.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\esp_ping.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\ping.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\ping.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\ping_sock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\ping\\ping_sock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-address -Wno-format -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_handlers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_handlers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_objects.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_objects.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_defaults.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\esp_netif_defaults.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\esp_netif_lwip.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\wlanif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\ethernetif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\port\\os_xtensa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\port\\os_xtensa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\port\\eloop.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\port\\eloop.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\ap_config.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\ap\\sta_info.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\sae.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\sae.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\dragonfly.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\wpa_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\bitfield.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\ccmp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\chap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\base64.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\base64.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\ext_password.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\uuid.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\wpabuf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\json.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\utils\\json.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\rc4.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\des-internal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-omac1.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-omac1.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-omac1.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -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 E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\coexist.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\coexist.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\coexist.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\mesh_event.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\mesh_event.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\smartconfig.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\smartconfig.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\smartconfig_ack.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\smartconfig_ack.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_default.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_default.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_netif.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_netif.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_default_ap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\src\\wifi_default_ap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32s3\\esp_adapter.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\esp32s3\\esp_adapter.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_wifi\\esp32s3\\esp_adapter.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity\\src\\unity.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity\\src\\unity.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_runner.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_runner.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_freertos.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_freertos.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_cache.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_cache.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_memory.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_utils_memory.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_port_esp32.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\unity_port_esp32.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\unity\\port\\esp\\unity_utils_memory_esp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cmock\\CMock\\src\\cmock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\cmock\\CMock\\src\\cmock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\commands.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\commands.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\esp_console_repl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\esp_console_repl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\split_argv.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\split_argv.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\linenoise\\linenoise.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\linenoise\\linenoise.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_cmd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_cmd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_date.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_date.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_dbl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_dbl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_dstr.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_dstr.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_end.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_end.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_file.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_file.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_hashtable.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_hashtable.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_int.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_int.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_lit.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_lit.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_rem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_rem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_rex.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_rex.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_str.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_str.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\arg_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\argtable3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\console\\argtable3\\argtable3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\http_parser\\http_parser.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\http_parser\\http_parser.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls_error_capture.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls_error_capture.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls_mbedtls.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp-tls\\esp_tls_mbedtls.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_cali.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_cali.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_cali_curve_fitting.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_oneshot.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_oneshot.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_continuous.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\adc_continuous.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_802_3.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth_phy_802_3.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth_phy_802_3.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_eth\\src\\esp_eth_netif_glue.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\src\\gdbstub.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\src\\gdbstub.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\src\\packet.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\src\\packet.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\xtensa\\gdbstub_xtensa.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\gdbstub_xtensa.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\gdbstub_xtensa.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\xtensa\\gdbstub-entry.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\gdbstub-entry.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\gdbstub-entry.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\xtensa\\xt_debugexception.S.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\xt_debugexception.S", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\xtensa\\xt_debugexception.S" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\esp_common\\gdbstub_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\esp_common\\gdbstub_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_gdbstub\\esp_common\\gdbstub_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hidd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hidd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hidh.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hidh.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hid_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_hid\\src\\esp_hid_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_ssl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_ssl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_internal.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_internal.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_ws.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\tcp_transport\\transport_ws.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\esp_http_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\esp_http_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_auth.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_auth.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_header.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_header.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_client\\lib\\http_utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_main.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_main.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_parse.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_parse.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_sess.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_sess.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_txrx.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_txrx.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_uri.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_uri.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_ws.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\httpd_ws.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/port/esp32 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/util -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_http_server\\src\\util\\ctrl_sock.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_https_ota\\src\\esp_https_ota.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_https_ota\\src\\esp_https_ota.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i2c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_spi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_spi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_spi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i80.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_i80.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_io_i80.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_rgb.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_rgb.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_lcd\\src\\esp_lcd_panel_rgb.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\common\\protocomm.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\common\\protocomm.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\constants.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\constants.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec0.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec1.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\sec2.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\session.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\proto-c\\session.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\transports\\protocomm_console.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\transports\\protocomm_console.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\transports\\protocomm_httpd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security0.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security0.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security1.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security1.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security2.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\security\\security2.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_checksum.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_checksum.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_checksum.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_flash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_flash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_uart.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_uart.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_elf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_elf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_binary.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\core_dump_binary.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include_core_dump/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\\core_dump_port.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\Partition.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\Partition.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\SPI_Flash.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\SPI_Flash.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Ext_Perf.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Ext_Safe.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Flash.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\WL_Flash.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\crc32.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\crc32.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu++20 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\wear_levelling.cpp", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wear_levelling\\wear_levelling.cpp" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_cmd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_cmd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_init.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_init.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_io.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_io.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_mmc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_mmc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_sd.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\sdmmc\\sdmmc_sd.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_rawflash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_rawflash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_sdmmc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_wl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\diskio\\diskio_wl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\src\\ff.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\src\\ff.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\port\\freertos\\ffsystem.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\port\\freertos\\ffsystem.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\src\\ffunicode.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\src\\ffunicode.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\fatfs\\vfs\\vfs_fat_spiflash.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\json\\cJSON\\cJSON.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\json\\cJSON\\cJSON.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\json\\cJSON\\cJSON_Utils.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\json\\cJSON\\cJSON_Utils.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\mqtt_client.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_access.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_access.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_apis.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_apis.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_masks.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\perfmon\\xtensa_perfmon_masks.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs_api.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs_api.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_cache.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_check.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_gc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -Wno-stringop-truncation -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\esp_spiffs.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\spiffs\\esp_spiffs.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_element.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_element.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_element.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_button.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_button.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_button.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_slider.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_slider.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_slider.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\touch_element\\CMakeFiles\\__idf_touch_element.dir\\touch_matrix.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_matrix.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\touch_element\\touch_matrix.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -Wno-format -o esp-idf\\ulp\\CMakeFiles\\__idf_ulp.dir\\ulp_common\\ulp_common.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\ulp\\ulp_common\\ulp_common.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\ulp\\ulp_common\\ulp_common.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hcd_dwc.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\hcd_dwc.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\hcd_dwc.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\hub.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\hub.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\hub.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_helpers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_helpers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_helpers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_host.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_host.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_host.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_private.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_private.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_private.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usbh.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usbh.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usbh.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\usb\\CMakeFiles\\__idf_usb.dir\\usb_phy.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_phy.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\usb\\usb_phy.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\wifi_config.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\wifi_config.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\wifi_scan.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\wifi_scan.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\manager.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\manager.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\handlers.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\handlers.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\scheme_console.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\scheme_console.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\scheme_softap.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\components\\wifi_provisioning\\src\\scheme_softap.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\can_network.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\can_network.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\can_network.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\mcpwm_bdc_control.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\mcpwm_bdc_control.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\mcpwm_bdc_control.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\station_example_main.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\station_example_main.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\station_example_main.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus-tcp.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\modbus-tcp.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\modbus-tcp.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\ModbusS.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\ModbusS.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\ModbusS.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\pid_ctrl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\pid_ctrl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\pid_ctrl.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bdc_motor.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\bdc_motor.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\bdc_motor.c" +}, +{ + "directory": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "command": "E:\\Espressif\\tools\\xtensa-esp32s3-elf\\esp-2022r1-11.2.0\\xtensa-esp32s3-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DUNITY_INCLUDE_CONFIG_H -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/config -IE:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/platform_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include/freertos -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/include/soc/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/private_include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/log/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/. -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/platform_port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/include/private -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/include/apps/sntp -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/include/arch -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/console -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/interface -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/common -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/security -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/include/transports -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/include/port/xtensa -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/include/esp32s3 -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/include -IE:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/include -mlongcalls -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL=. -fmacro-prefix-map=E:/Espressif/frameworks/esp-idf-v5.0.4=/IDF -fstrict-volatile-bitfields -Wno-error=unused-but-set-variable -fno-jump-tables -fno-tree-switch-conversion -DconfigENABLE_FREERTOS_DEBUG_OCDAWARE=1 -std=gnu17 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v5.0.4-dirty\\\" -DESP_PLATFORM -D_POSIX_READER_WRITER_LOCKS -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bdc_motor_mcpwm_impl.c.obj -c E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\bdc_motor_mcpwm_impl.c", + "file": "E:\\Espressif\\frameworks\\esp-idf-v5.0.4\\app\\ESP32S3_WHEEL\\main\\bdc_motor_mcpwm_impl.c" +} +] \ No newline at end of file diff --git a/build/config.env b/build/config.env new file mode 100644 index 0000000..34c86fa --- /dev/null +++ b/build/config.env @@ -0,0 +1,10 @@ +{ + "COMPONENT_KCONFIGS": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/sdkconfig.rename.esp32s3;E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/sdkconfig.rename;E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_ENV_FPGA": "", + "IDF_PATH": "E:/Espressif/frameworks/esp-idf-v5.0.4", + "COMPONENT_KCONFIGS_SOURCE_FILE": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/kconfigs_projbuild.in" +} diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json new file mode 100644 index 0000000..e999748 --- /dev/null +++ b/build/config/kconfig_menus.json @@ -0,0 +1,23462 @@ +[ + { + "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_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDE_NUM", + "name": "SOC_LEDC_TIMER_BIT_WIDE_NUM", + "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_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_ADC_SUPPORTED", + "name": "SOC_ADC_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_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_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_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_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_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_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_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_FILTER_SUPPORTED", + "name": "SOC_ADC_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256", + "name": "SOC_RTC_SLOW_CLOCK_SUPPORT_8MD256", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_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_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_SIZE", + "name": "SOC_CPU_WATCHPOINT_SIZE", + "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_GDMA_GROUPS", + "name": "SOC_GDMA_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SUPPORT_PSRAM", + "name": "SOC_GDMA_SUPPORT_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PSRAM_MIN_ALIGN", + "name": "SOC_GDMA_PSRAM_MIN_ALIGN", + "range": null, + "title": null, + "type": "int" + }, + { + "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_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_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_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_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "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_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_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_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_CODEC", + "name": "SOC_I2S_SUPPORTS_PDM_CODEC", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_MEMSPI_SRC_FREQ_120M", + "name": "SOC_MEMSPI_SRC_FREQ_120M", + "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_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_TOUCH_VERSION_2", + "name": "SOC_TOUCH_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_PAD_THRESHOLD_MAX", + "name": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "name": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "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_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_REQUIRE_CORE_RESET", + "name": "SOC_UART_REQUIRE_CORE_RESET", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_PERIPH_NUM", + "name": "SOC_USB_PERIPH_NUM", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "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_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_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_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIME_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIME_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_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "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_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_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_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": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "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_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_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "IDF_TARGET_ESP32H2_BETA_VERSION_1", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION_1", + "range": null, + "title": "ESP32-H2 beta1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "IDF_TARGET_ESP32H2_BETA_VERSION_2", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION_2", + "range": null, + "title": "ESP32-H2 beta2", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Currently ESP32-H2 has several beta versions for internal use only.\nSelect the one that matches your chip model.", + "id": "esp32-h2-beta-version", + "name": "IDF_TARGET_ESP32H2_BETA_VERSION", + "title": "ESP32-H2 beta version", + "type": "choice" + }, + { + "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_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_ELF_RAM", + "name": "APP_BUILD_TYPE_ELF_RAM", + "range": null, + "title": "ELF file, loadable into 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. Note that since IRAM and DRAM sizes are very limited, it is not possible to\nbuild any complex application this way. However for kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\nNote that at the moment, ESP-IDF does not contain all the startup code required to\ninitialize the CPUs and ROM memory (data/bss). Therefore it is necessary to execute\na bit of ROM code prior to executing the application. A 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\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_ELF_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_ELF_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": 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": [], + "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)", + "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": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_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)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "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-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": [], + "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": [ + { + "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": null, + "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 (note that on some SoCs.\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.", + "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]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "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.", + "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 rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "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": [ + { + "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 implemention without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "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" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED && ((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 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 bootoloader 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": 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.", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ HELP FIRST)", + "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) && ", + "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" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", + "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_BOOT_BUILD_SIGNED_BINARIES && !SECURE_SIGNED_APPS_RSA_SCHEME", + "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.\nSecure Boot V2: This RSA public key is compiled into the signature block at\nthe end of the bootloader/app.\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": [ + { + "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 AES-XTS key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated AES-XTS 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": "", + "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\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": [ + { + "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 && 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 public key digest, causing an\nimmediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Allow additional read protecting of efuses", + "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.", + "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", + "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" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "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": [], + "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 (includes revisions till ECO3).", + "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": null, + "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 this many hex characters from the embedded APP ELF SHA-256 hash value\nand store it in static RAM. This ensures the app ELF SHA-256 value is always available\nif it needs to be printed by the panic handler code.\nChanging this value will change the size of a static buffer, in bytes.", + "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_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_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_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_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "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": null, + "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": "IDF_TARGET_ESP32S3", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "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": null, + "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": null, + "help": null, + "id": "serial-flasher-config-flash-sampling-mode", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_120M && ESPTOOLPY_FLASH_SAMPLE_MODE_STR && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_60M", + "name": "ESPTOOLPY_FLASHFREQ_60M", + "range": null, + "title": "60 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_48M", + "name": "ESPTOOLPY_FLASHFREQ_48M", + "range": null, + "title": "48 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_30M", + "name": "ESPTOOLPY_FLASHFREQ_30M", + "range": null, + "title": "30 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_24M", + "name": "ESPTOOLPY_FLASHFREQ_24M", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_15M", + "name": "ESPTOOLPY_FLASHFREQ_15M", + "range": null, + "title": "15 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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": null, + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "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": null, + "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": null, + "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": null, + "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": null, + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "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": "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_ENCRYPTION && ", + "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_ENCRYPTION && ", + "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_ENCRYPTION && ", + "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" + } + ], + "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. This path is evaluated\nrelative to the project root directory.", + "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": [], + "depends_on": null, + "help": "SSID (network name) for the example to connect to.", + "id": "ESP_WIFI_SSID", + "name": "ESP_WIFI_SSID", + "range": null, + "title": "WiFi SSID", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "WiFi password (WPA or WPA2) for the example to use.", + "id": "ESP_WIFI_PASSWORD", + "name": "ESP_WIFI_PASSWORD", + "range": null, + "title": "WiFi Password", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.", + "id": "ESP_MAXIMUM_RETRY", + "name": "ESP_MAXIMUM_RETRY", + "range": null, + "title": "Maximum retry", + "type": "int" + } + ], + "depends_on": null, + "id": "example-configuration", + "title": "Example Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEFAULT", + "name": "COMPILER_OPTIMIZATION_DEFAULT", + "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)", + "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 \"Default\" setting will add the -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "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": [ + { + "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": 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": "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" + } + ], + "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 && !IDF_TARGET_ESP32C3 && !IDF_TARGET_ESP32S2 && !IDF_TARGET_ESP32H2 && ", + "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 witt transfer data trough 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 supporrt 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 && !FREERTOS_UNICORE && 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": "FREERTOS_UNICORE && !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": [], + "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": "", + "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": "", + "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": "SOC_BT_SUPPORTED && !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": [ + { + "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": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Advanced Audio Distrubution 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": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_CLIENT_ENABLE", + "name": "BT_HFP_CLIENT_ENABLE", + "range": null, + "title": "Hands Free Unit", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AG_ENABLE", + "name": "BT_HFP_AG_ENABLE", + "range": null, + "title": "Audio Gateway", + "type": "bool" + } + ], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-hands-free-profile-role-configuration", + "name": "BT_HFP_ROLE", + "title": "Hands-free Profile Role configuration", + "type": "choice" + }, + { + "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" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_HFP_ENABLE", + "name": "BT_HFP_ENABLE", + "range": null, + "title": "Hands Free/Handset Profile", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && IDF_TARGET_ESP32 && 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": [], + "depends_on": "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 transmited via GPIOs.", + "id": "BT_HFP_WBS_ENABLE", + "name": "BT_HFP_WBS_ENABLE", + "range": null, + "title": "Wide Band Speech", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "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": "", + "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" + } + ], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "component-config-bluetooth-bluedroid-options-classic-bt-hid-profile-role-configuration", + "name": "BT_HID_ROLE", + "title": "Profile Role configuration", + "type": "choice" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Host", + "id": "BT_HID_ENABLED", + "name": "BT_HID_ENABLED", + "range": null, + "title": "Classic BT HID", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Secure Simple Pairing. If disable this option,\nBluedroid will only support Legacy Pairing", + "id": "BT_SSP_ENABLED", + "name": "BT_SSP_ENABLED", + "range": null, + "title": "Secure Simple Pairing", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This enables \"Peripheral Preferred Connection Parameters\" characteristic (UUID: 0x2A04) in GAP service that has\nconnection parameters like min/max connection interval, slave latency and supervision timeout multiplier", + "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" + } + ], + "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", + "name": "BT_GATTS_ENABLE", + "range": null, + "title": "Include GATT server module(GATTS)", + "type": "bool" + }, + { + "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": "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" + } + ], + "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", + "name": "BT_GATTC_ENABLE", + "range": null, + "title": "Include GATT client module(GATTC)", + "type": "bool" + }, + { + "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" + } + ], + "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", + "name": "BT_BLE_SMP_ENABLE", + "range": null, + "title": "Include BLE security module(SMP)", + "type": "bool" + } + ], + "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_BLUEDROID_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-conections", + "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": "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_BLE_HOST_QUEUE_CONG_CHECK", + "name": "BT_BLE_HOST_QUEUE_CONG_CHECK", + "range": null, + "title": "BLE queue congestion check", + "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_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 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" + }, + { + "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_BLUEDROID_ENABLED && !SOC_BLE_DEVICE_PRIVACY_SUPPORTED && 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" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || SOC_ESP_NIMBLE_CONTROLLER) && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 5.0 features, this option only support esp32c3/esp32s3 chip", + "id": "BT_BLE_50_FEATURES_SUPPORTED", + "name": "BT_BLE_50_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 5.0 features", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3 || SOC_ESP_NIMBLE_CONTROLLER) && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 4.2 features.", + "id": "BT_BLE_42_FEATURES_SUPPORTED", + "name": "BT_BLE_42_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 4.2 features", + "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": [ + { + "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_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": [ + { + "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" + } + ], + "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": "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": "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": "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_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "The number of ACL data buffers.", + "id": "BT_NIMBLE_ACL_BUF_COUNT", + "name": "BT_NIMBLE_ACL_BUF_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_ACL_BUF_SIZE", + "name": "BT_NIMBLE_ACL_BUF_SIZE", + "range": null, + "title": "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_HCI_EVT_BUF_SIZE", + "name": "BT_NIMBLE_HCI_EVT_BUF_SIZE", + "range": null, + "title": "HCI 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_HCI_EVT_HI_BUF_COUNT", + "name": "BT_NIMBLE_HCI_EVT_HI_BUF_COUNT", + "range": null, + "title": "High Priority HCI 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_HCI_EVT_LO_BUF_COUNT", + "name": "BT_NIMBLE_HCI_EVT_LO_BUF_COUNT", + "range": null, + "title": "Low Priority HCI Event 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 && 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. This is applicable in case of\nHost based RPA", + "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": [ + { + "children": [], + "depends_on": "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_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_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_ENABLED", + "help": "Defines the length of the extended adv data. The value should not\nexceed 1650.", + "id": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "name": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "range": null, + "title": "Maximum length of the advertising data.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && 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 Transer Sync Events", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && 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_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": [], + "depends_on": "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": "BT_NIMBLE_50_FEATURE_SUPPORT && (IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32H2) && 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" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && SOC_ESP_NIMBLE_CONTROLLER && 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" + } + ], + "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": "", + "help": "Always enable the limitation on max tx/rx time for Coded-PHY connection", + "id": "BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EN", + "name": "BT_NIMBLE_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_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "name": "BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_DIS", + "range": null, + "title": "Force Disable", + "type": "bool" + } + ], + "depends_on": "ESP32_WIFI_SW_COEXIST_ENABLE && BT_NIMBLE_ENABLED && BT_NIMBLE_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-nimble-options-coexistence-limit-on-max-tx-rx-time-for-coded-phy-connection", + "name": "BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM", + "title": "Coexistence: limit on MAX Tx/Rx time for coded-PHY connection", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "name": "BT_NIMBLE_COEX_PHY_CODED_TX_RX_TLIM_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "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" + } + ], + "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(alloate 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 maxinum number of suplicate scan filter", + "id": "BT_CTRL_ADV_DUP_FILT_MAX", + "name": "BT_CTRL_ADV_DUP_FILT_MAX", + "range": null, + "title": "The maxinum number of 5.0 extend duplicate scan filter", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "It enables HW CCA feature in controller", + "id": "BT_CTRL_HW_CCA", + "name": "BT_CTRL_HW_CCA", + "range": null, + "title": "HW CCA check enable", + "type": "bool" + }, + { + "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.", + "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_P21", + "name": "BT_CTRL_DFT_TX_POWER_LEVEL_P21", + "range": null, + "title": "+21dBm", + "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_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": "This way is to use advertiser address filtering. The adv packet of the same address is only\nallowed to be 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": "This way is to use advertising data filtering. All same advertising data only allow to be reported\nonce even though they are from different devices.", + "id": "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": "This way is to use advertising data and device address filtering. All different adv packets with\nthe same address are allowed to be reported.", + "id": "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": "ESP32_WIFI_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 && ", + "help": "External 32kHz crystal has a nominal frequency of 32.768kHz and provides good frequency\nstability. If used as Bluetooth low power clock, External 32kHz can support Bluetooth\nmodem sleep to be used with both DFS and light sleep.", + "id": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "name": "BT_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_INT_RC && ", + "help": "Internal 150kHz RC oscillator. The accuracy of this clock is a lot larger than 500ppm which is required\nin Bluetooth communication, so don't select this option in scenarios such as BLE connection state.", + "id": "BT_CTRL_LPCLK_SEL_RTC_SLOW", + "name": "BT_CTRL_LPCLK_SEL_RTC_SLOW", + "range": null, + "title": "Internal 150kHz 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 nultiple 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" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options", + "title": "Controller Options", + "type": "menu" + } + ], + "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": "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": [ + { + "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": [], + "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" + } + ], + "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", + "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", + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [ + { + "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": "Wether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "ADC_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "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": "Wether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", + "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-configuration-legacy-adc-calibration-configuration", + "title": "Legacy ADC Calibration Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-configuration", + "title": "Legacy ADC Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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\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": null, + "help": "Place the SPI master 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_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": null, + "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": null, + "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": null, + "id": "component-config-driver-configurations-spi-configuration", + "title": "SPI Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place the TWAI ISR in to IRAM. This will allow the ISR to avoid\ncache misses, and also be able to run whilst the cache is disabled\n(such as when writing to SPI Flash).\nNote that if this option is enabled:\n- Users should also set the ESP_INTR_FLAG_IRAM in the driver\nconfiguration structure when installing the driver (see docs for\nspecifics).\n- Alert logging (i.e., setting of the TWAI_ALERT_AND_LOG flag)\nwill have no effect.", + "id": "TWAI_ISR_IN_IRAM", + "name": "TWAI_ISR_IN_IRAM", + "range": null, + "title": "Place TWAI ISR function into IRAM", + "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-twai-configuration", + "title": "TWAI Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "Wether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "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": "Wether to enable the debug log message for temperature sensor driver.\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.", + "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-driver-configurations-temperature-sensor-configuration", + "title": "Temperature sensor Configuration", + "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-driver-configurations-uart-configuration", + "title": "UART Configuration", + "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-driver-configurations-gpio-configuration", + "title": "GPIO Configuration", + "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": "Wether to suppress the deprecation warnings when using legacy sigma delta driver.\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "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": "Wether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", + "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-driver-configurations-sigma-delta-modulator-configuration", + "title": "Sigma Delta Modulator Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place GPTimer control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "GPTIMER_CTRL_FUNC_IN_IRAM", + "name": "GPTIMER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPTimer control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Ensure the GPTimer interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "GPTIMER_ISR_IRAM_SAFE", + "name": "GPTIMER_ISR_IRAM_SAFE", + "range": null, + "title": "GPTimer ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Wether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Wether to enable the debug log message for GPTimer driver.\nNote that, this option only controls the GPTimer driver log, won't affect other drivers.", + "id": "GPTIMER_ENABLE_DEBUG_LOG", + "name": "GPTIMER_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-gptimer-configuration", + "title": "GPTimer Configuration", + "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": "Wether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "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": "Wether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", + "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-driver-configurations-pcnt-configuration", + "title": "PCNT Configuration", + "type": "menu" + }, + { + "children": [ + { + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Wether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "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": "Wether to enable the debug log message for RMT driver.\nNote that, this option only controls the RMT driver log, won't affect other drivers.", + "id": "RMT_ENABLE_DEBUG_LOG", + "name": "RMT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-driver-configurations-rmt-configuration", + "title": "RMT Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This will ensure the MCPWM interrupt handle is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write)", + "id": "MCPWM_ISR_IRAM_SAFE", + "name": "MCPWM_ISR_IRAM_SAFE", + "range": null, + "title": "Place MCPWM ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM control functions (like set_compare_value) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "MCPWM_CTRL_FUNC_IN_IRAM", + "name": "MCPWM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place MCPWM control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Wether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress leagcy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Wether to enable the debug log message for MCPWM driver.\nNote that, this option only controls the MCPWM driver log, won't affect other drivers.", + "id": "MCPWM_ENABLE_DEBUG_LOG", + "name": "MCPWM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-driver-configurations-mcpwm-configuration", + "title": "MCPWM Configuration", + "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": "Enable this option will suppress the deprecation warnings of using APIs in legacy I2S driver.", + "id": "I2S_SUPPRESS_DEPRECATE_WARN", + "name": "I2S_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress leagcy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Wether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", + "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-driver-configurations-i2s-configuration", + "title": "I2S Configuration", + "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", + "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" + } + ], + "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\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": "IDF_TARGET_ESP32 && ESP_TLS_USING_MBEDTLS", + "help": "Enable use of Secure Element for ESP-TLS, this enables internal support for\nATECC608A peripheral on ESPWROOM32SE, which can be used for TLS connection.", + "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": [ + { + "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_SERVER && 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 && ESP_TLS_SERVER", + "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_SERVER && 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" + } + ], + "depends_on": "(ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER) || ESP_TLS_USING_WOLFSSL", + "help": "Enable support for creating server side SSL/TLS session, available for mbedTLS\nas well as wolfSSL TLS library.", + "id": "ESP_TLS_SERVER", + "name": "ESP_TLS_SERVER", + "range": null, + "title": "Enable ESP-TLS Server", + "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 pusposes.\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": "Enables server verification with Intermediate CA cert, does not authenticate full chain\nof trust upto the root CA cert (After Enabling this option client only needs to have Intermediate\nCA certificate of the server to authenticate server, root CA cert is not necessary).", + "id": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "name": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "range": null, + "title": "Enable SMALL_CERT_VERIFY", + "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" + } + ], + "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 continumous 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" + } + ], + "depends_on": null, + "id": "component-config-adc-and-adc-calibration", + "title": "ADC and ADC Calibration", + "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": 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": "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": "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": "ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "GPIO0 can be set to output a pre-divided PLL clock (test only!).\nEnabling this option will configure GPIO0 to output a 50MHz clock.\nIn fact this clock doesn't have directly relationship with EMAC peripheral.\nSometimes this clock won't work well with your PHY chip. You might need to\nadd some extra devices after GPIO0 (e.g. inverter).\nNote that outputting RMII clock on GPIO0 is an experimental practice.\nIf you want the Ethernet to work with WiFi, don't select GPIO0 output mode for stability.", + "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": "!ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "Set the GPIO number to output RMII Clock.", + "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.", + "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" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "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": [ + { + "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 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" + } + ], + "depends_on": null, + "id": "component-config-esp-http-client", + "title": "ESP HTTP client", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of headers section in HTTP request packet to be processed by the\nserver", + "id": "HTTPD_MAX_REQ_HDR_LEN", + "name": "HTTPD_MAX_REQ_HDR_LEN", + "range": null, + "title": "Max HTTP Request Header Length", + "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" + } + ], + "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" + } + ], + "depends_on": null, + "id": "component-config-esp-https-ota", + "title": "ESP HTTPS OTA", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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" + } + ], + "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" + } + ], + "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": [ + { + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!SPIRAM", + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SLEEP_POWER_DOWN_FLASH", + "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_POWER_DOWN_FLASH && (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 and esp32s3 will reset at wake-up if GPIO is received a small electrostatic\npulse 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": "IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3", + "help": "When the chip exits deep sleep, the CPU and the flash chip are powered on\nat the same time. CPU will run deep sleep stub first, and then\nproceed to load code from flash. Some flash chips need sufficient\ntime to pass between power on and first read operation. By default,\nwithout any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\nBy default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the\nconsole after deep sleep reset, try increasing this value.", + "id": "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY", + "name": "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay in deep sleep wake stub (in us)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3", + "help": "Its not able to stall ESP32C3 systimer in sleep.\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\nTODO: IDF-7036", + "id": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "name": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "range": null, + "title": "ESP32C3 SYSTIMER Stall Issue Workaround", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-esp_sleep_workaround", + "title": "ESP_SLEEP_WORKAROUND", + "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 136kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_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.5MHz 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" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "help": "When software switches the CPU clock source from BBPLL clock to XTAL, usually the BBPLL will be\nswitched off. This helps to save some power consumption in sleep modes. However this may also happen\nduring the software reset, resulting in the inactive (disconnected from host) of the USB_SERIAL_JTAG\ndevice during software reset.\n\nWhen USB_SERIAL_JTAG is being used, whether to turn off the clock source during software reset and in\nsleep modes is determined by RTC_CLOCK_BBPLL_POWER_ON_WITH_USB.\n\n - When RTC_CLOCK_BBPLL_POWER_ON_WITH_USB is enabled, the clock will be kept, so that the\n USB_SERIAL_JTAG will keep alive during software reset. The side-effect is the increasing of power\n consumption during sleep modes, even though USB_SERIAL_JTAG will not work in sleep modes.\n\n - When RTC_CLOCK_BBPLL_POWER_ON_WITH_USB is disabled, the clock will be turned off. USB_SERIAL_JTAG\n will be inactive during software reset and in sleep modes. This saves some power consumption in\n sleep modes.\n\nWhen USB_SERIAL_JTAG is not being used, software will always turn off BBPLL regardless of\nRTC_CLOCK_BBPLL_POWER_ON_WITH_USB is set or not.", + "id": "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB", + "name": "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB", + "range": null, + "title": "Keep BBPLL clock always work", + "type": "bool" + } + ], + "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": "PERIPH_CTRL_FUNC_IN_IRAM", + "name": "PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral 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_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.\nEnabling this option can improve driver performance as well.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions into IRAM", + "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).", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configuration", + "title": "GDMA Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_24M && ", + "help": null, + "id": "XTAL_FREQ_24", + "name": "XTAL_FREQ_24", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_26M && ", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_32M && ", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_40M && ", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_AUTO_DETECT && ", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.\n\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\nin high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ_SEL", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "LCD driver allocates an internal buffer to transform the data into a proper format, because of\nthe endian order mismatch. This option is to set the size of the buffer, in bytes.", + "id": "LCD_PANEL_IO_FORMAT_BUF_SIZE", + "name": "LCD_PANEL_IO_FORMAT_BUF_SIZE", + "range": null, + "title": "LCD panel io format buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Wether to enable the debug log message for LCD driver.\nNote that, this option only controls the LCD driver log, won't affect other drivers.", + "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": "Restart transmission in VSYNC", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lcd-and-touch-panel-lcd-peripheral-configuration", + "title": "LCD Peripheral Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-lcd-and-touch-panel", + "title": "LCD and Touch Panel", + "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 everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\nthe timer expires.", + "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": [ + { + "children": [], + "depends_on": "", + "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": null, + "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": "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 avaiable!", + "id": "ESP_NETIF_BRIDGE_EN", + "name": "ESP_NETIF_BRIDGE_EN", + "range": null, + "title": "Enable LwIP IEEE 802.1D bridge", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-netif-adapter", + "title": "ESP NETIF Adapter", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full calibration\nwill be performed and stored in NVS. Normally, only partial calibration will be performed.\nIf this option is disabled, full calibration will be performed.\n\nIf it's easy that your board calibrate bad data, choose 'n'.\nTwo cases for example, you should choose 'n':\n1.If your board is easy to be booted up with antenna disconnected.\n2.Because of your board design, each time when you do calibration, the result are too unstable.\nIf unsure, choose 'y'.", + "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", + "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", + "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", + "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", + "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": null, + "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": null, + "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": null, + "help": null, + "id": "ESP_PHY_MAX_TX_POWER", + "name": "ESP_PHY_MAX_TX_POWER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && FREERTOS_USE_TICKLESS_IDLE", + "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", + "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": "USB_OTG_SUPPORTED || ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "help": "When using USB Serial/JTAG/OTG/CDC, PHY should enable USB, otherwise USB module\ncan not work properly. Notice: Enabling this configuration option will slightly impact wifi performance.", + "id": "ESP_PHY_ENABLE_USB", + "name": "ESP_PHY_ENABLE_USB", + "range": null, + "title": "Enable USB when phy init", + "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": null, + "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": null, + "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", + "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" + } + ], + "depends_on": null, + "id": "component-config-phy", + "title": "PHY", + "type": "menu" + }, + { + "children": [ + { + "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", + "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": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, about 1.8KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 760us at most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "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 260B of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 40us at most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "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.\nWaring: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", + "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": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "help": "If enabled, the I/D-cache tag memory will be retained in light sleep. Depending on the the\ncache configuration, if this option is enabled, it will consume up to 9 KB of internal RAM.", + "id": "PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down I/D-cache tag memory in light sleep", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3", + "help": "If enabled, the CPU will be powered down in light sleep. On esp32c3 soc, enabling this\noption will consume 1.68 KB of internal RAM and will reduce sleep current consumption\nby about 100 uA. On esp32s3 soc, enabling this option will consume 8.58 KB of internal\nRAM and will reduce sleep current consumption by about 650 uA.", + "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": null, + "help": null, + "id": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "name": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "range": null, + "title": null, + "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", + "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", + "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", + "help": "Accessing memory in SPIRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.", + "id": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": null, + "id": "SPIRAM_CLK_IO", + "name": "SPIRAM_CLK_IO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": null, + "id": "SPIRAM_CS_IO", + "name": "SPIRAM_CS_IO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "If enabled, instruction in flash will be copied into SPIRAM.\nIf SPIRAM_RODATA also enabled, you can run the instruction when erasing or programming the flash.", + "id": "SPIRAM_FETCH_INSTRUCTIONS", + "name": "SPIRAM_FETCH_INSTRUCTIONS", + "range": null, + "title": "Cache fetch instructions from SPI RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "If enabled, rodata in flash will be copied into SPIRAM.\nIf SPIRAM_FETCH_INSTRUCTIONS is also enabled,\nyou can run the instruction when erasing or programming the flash.", + "id": "SPIRAM_RODATA", + "name": "SPIRAM_RODATA", + "range": null, + "title": "Cache load read only data from SPI RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_MODE_QUAD && ", + "help": null, + "id": "SPIRAM_SPEED_120M", + "name": "SPIRAM_SPEED_120M", + "range": null, + "title": "120MHz clock speed", + "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", + "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": [], + "depends_on": "SPIRAM", + "help": null, + "id": "SPIRAM_SPEED", + "name": "SPIRAM_SPEED", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && SPIRAM", + "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.", + "id": "SPIRAM_IGNORE_NOTFOUND", + "name": "SPIRAM_IGNORE_NOTFOUND", + "range": null, + "title": "Ignore PSRAM when not found", + "type": "bool" + } + ], + "depends_on": "SPIRAM", + "help": "If this is enabled, the SPI RAM will be enabled during initial boot. Unless you\nhave specific requirements, you'll want to leave this enabled so memory allocated\nduring boot-up can also be placed in SPI RAM.", + "id": "SPIRAM_BOOT_INIT", + "name": "SPIRAM_BOOT_INIT", + "range": null, + "title": "Initialize SPI RAM during startup", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MEMMAP", + "name": "SPIRAM_USE_MEMMAP", + "range": null, + "title": "Integrate RAM into memory map", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_CAPS_ALLOC", + "name": "SPIRAM_USE_CAPS_ALLOC", + "range": null, + "title": "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MALLOC", + "name": "SPIRAM_USE_MALLOC", + "range": null, + "title": "Make RAM allocatable using malloc() as well", + "type": "bool" + } + ], + "depends_on": "SPIRAM", + "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", + "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", + "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", + "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", + "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", + "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 && IDF_TARGET_ESP32 && SPIRAM", + "help": "If enabled, noinit variables can be placed in PSRAM using EXT_RAM_NOINIT_ATTR.\n\nNote the values placed into this section will not be initialized at startup and should keep its value\nafter software restart.", + "id": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .noinit segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_MODE_OCT && IDF_TARGET_ESP32S3 && SPIRAM", + "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" + } + ], + "depends_on": "SPIRAM", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config", + "title": "SPI RAM config", + "type": "menu" + } + ], + "depends_on": null, + "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": null, + "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": [ + { + "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 && !FREERTOS_UNICORE", + "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": [ + { + "children": [], + "depends_on": "", + "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": "", + "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": "", + "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": "", + "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" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32C2 && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it and to do a debug on runtime.", + "id": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "name": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "range": null, + "title": "GDBStub at runtime", + "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": 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. This memory will be consumed first per\nheap initialization order by early startup services and scheduler related code. Speed\nwise RTC fast memory operates on APB clock and hence does not have much performance impact.", + "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": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT be used for production.", + "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": [ + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": [ + { + "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": "(IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && ", + "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": "IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3", + "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_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_MULTIPLE_UART", + "name": "ESP_CONSOLE_MULTIPLE_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 && ESP_CONSOLE_MULTIPLE_UART", + "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": "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).\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 UART RX input in the ESP-IDF Bootloader and the app (including\ndefault default standard input of the app).\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "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": null, + "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 miliseconds. 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": "!IDF_TARGET_ESP32 && (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": null, + "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "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 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 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 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": [ + { + "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-esp-system-settings-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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", + "id": "ESP_SYSTEM_BROWNOUT_INTR", + "name": "ESP_SYSTEM_BROWNOUT_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "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": "!FREERTOS_UNICORE", + "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 itended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", + "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": "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 seing stack overflow errors in timer task, increase\nthis value.\n\nNote that this is not the same as FreeRTOS timer task. To configure\nFreeRTOS timer task size, see \"FreeRTOS timer task stack size\" option\nin \"FreeRTOS\" menu.", + "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": "It sets the interrupt level for esp_timer ISR in range 1..3.\nA higher level (3) helps to decrease the ISR esp_timer latency.", + "id": "ESP_TIMER_INTERRUPT_LEVEL", + "name": "ESP_TIMER_INTERRUPT_LEVEL", + "range": [ + 1, + 1 + ], + "title": "Interrupt level", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also avalible).\n- ESP_TIMER_TASK - Timer callbacks are dispatched from a high-priority esp_timer task.\n- ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.\nThe ISR dispatch can be used, in some cases, when a callback is very simple\nor need a lower-latency.", + "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-high-resolution-timer-esp_timer-", + "title": "High resolution timer (esp_timer)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_WIFI_ENABLED", + "name": "ESP32_WIFI_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_ENABLED && BT_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": "ESP32_WIFI_SW_COEXIST_ENABLE", + "name": "ESP32_WIFI_SW_COEXIST_ENABLE", + "range": null, + "title": "Software controls WiFi/Bluetooth coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 ESP32_WIFI_AMPDU_RX_ENABLED\nis enabled, this value is recommended to set equal or bigger than ESP32_WIFI_RX_BA_WIN in order to\nachieve better throughput and compatibility with both stations and APs.", + "id": "ESP32_WIFI_STATIC_RX_BUFFER_NUM", + "name": "ESP32_WIFI_STATIC_RX_BUFFER_NUM", + "range": [ + 2, + 25 + ], + "title": "Max number of WiFi static RX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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": "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM", + "name": "ESP32_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": "ESP32_WIFI_STATIC_TX_BUFFER", + "name": "ESP32_WIFI_STATIC_TX_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_USE_MALLOC && ", + "help": null, + "id": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "name": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": null, + "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": "ESP32_WIFI_TX_BUFFER", + "title": "Type of WiFi TX buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_WIFI_TX_BUFFER_TYPE", + "name": "ESP32_WIFI_TX_BUFFER_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_STATIC_TX_BUFFER", + "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": "ESP32_WIFI_STATIC_TX_BUFFER_NUM", + "name": "ESP32_WIFI_STATIC_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi static TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM", + "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": "ESP32_WIFI_CACHE_TX_BUFFER_NUM", + "name": "ESP32_WIFI_CACHE_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi cache TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "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": "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM", + "name": "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM", + "range": [ + 1, + 128 + ], + "title": "Max number of WiFi dynamic TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_CSI_SUPPORT", + "help": "Select this option to enable CSI(Channel State Information) feature. CSI takes about\nCONFIG_ESP32_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": "ESP32_WIFI_CSI_ENABLED", + "name": "ESP32_WIFI_CSI_ENABLED", + "range": null, + "title": "WiFi CSI(Channel State Information)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_WIFI_AMPDU_TX_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": "ESP32_WIFI_TX_BA_WIN", + "name": "ESP32_WIFI_TX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU TX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU TX feature", + "id": "ESP32_WIFI_AMPDU_TX_ENABLED", + "name": "ESP32_WIFI_AMPDU_TX_ENABLED", + "range": null, + "title": "WiFi AMPDU TX", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_WIFI_AMPDU_RX_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 prefered to allocat in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", + "id": "ESP32_WIFI_RX_BA_WIN", + "name": "ESP32_WIFI_RX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU RX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU RX feature", + "id": "ESP32_WIFI_AMPDU_RX_ENABLED", + "name": "ESP32_WIFI_AMPDU_RX_ENABLED", + "range": null, + "title": "WiFi AMPDU RX", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "Select this option to enable AMSDU TX feature", + "id": "ESP32_WIFI_AMSDU_TX_ENABLED", + "name": "ESP32_WIFI_AMSDU_TX_ENABLED", + "range": null, + "title": "WiFi AMSDU TX", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi NVS flash", + "id": "ESP32_WIFI_NVS_ENABLED", + "name": "ESP32_WIFI_NVS_ENABLED", + "range": null, + "title": "WiFi NVS flash", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_TASK_PINNED_TO_CORE_0", + "name": "ESP32_WIFI_TASK_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_TASK_PINNED_TO_CORE_1", + "name": "ESP32_WIFI_TASK_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "Pinned WiFi task to core 0 or core 1.", + "id": "component-config-wi-fi-wifi-task-core-id", + "name": "ESP32_WIFI_TASK_CORE_ID", + "title": "WiFi Task Core ID", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However the\ndefault length of a beacon frame can simultaneously hold only five root node identifier structures,\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will detect\nfive of the root nodes, resolve the conflict, and re-detect more root nodes. This process will repeat\nuntil all root node conflicts are resolved. However this process can generally take a very long time.\n\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\ndetected simultaneously. Each additional root node will require 36 bytes and should be added ontop of the\ndefault beacon frame length of\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\nframe length as\n932 (752+36*5).\n\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be identified\nmore quickly.", + "id": "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN", + "name": "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN", + "range": [ + 752, + 1256 + ], + "title": "Max length of WiFi SoftAP Beacon", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi management short buffer.", + "id": "ESP32_WIFI_MGMT_SBUF_NUM", + "name": "ESP32_WIFI_MGMT_SBUF_NUM", + "range": [ + 6, + 32 + ], + "title": "WiFi mgmt short buffer number", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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": "ESP32_WIFI_IRAM_OPT", + "name": "ESP32_WIFI_IRAM_OPT", + "range": null, + "title": "WiFi IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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": "ESP32_WIFI_RX_IRAM_OPT", + "name": "ESP32_WIFI_RX_IRAM_OPT", + "range": null, + "title": "WiFi RX IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "WPA_MBEDTLS_CRYPTO", + "help": "Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.", + "id": "ESP32_WIFI_ENABLE_WPA3_SAE", + "name": "ESP32_WIFI_ENABLE_WPA3_SAE", + "range": null, + "title": "Enable WPA3-Personal", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to allow the device to establish OWE connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.", + "id": "ESP32_WIFI_ENABLE_WPA3_OWE_STA", + "name": "ESP32_WIFI_ENABLE_WPA3_OWE_STA", + "range": null, + "title": "Enable OWE STA", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_IRAM_OPT", + "help": "The minimum timeout for waiting to receive data, unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "range": null, + "title": "Minimum active time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_IRAM_OPT", + "help": "The maximum time that wifi keep alive, unit: seconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "range": null, + "title": "Maximum keep alive time", + "type": "int" + } + ], + "depends_on": null, + "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 ESP32_WIFI_IRAM_OPT and ESP32_WIFI_RX_IRAM_OPT, or this one.\nIf already enabled ESP32_WIFI_IRAM_OPT, the other 7.3KB IRAM memory would be taken by this option.\nIf already enabled ESP32_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": [ + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE", + "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", + "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", + "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": null, + "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": "!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32", + "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_WIFI_EXTERNAL_COEXIST_ENABLE", + "name": "ESP_WIFI_EXTERNAL_COEXIST_ENABLE", + "range": null, + "title": "WiFi External Coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_GCMP_SUPPORT", + "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": null, + "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": null, + "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": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "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", + "help": "Maximum number of consecutive lost beacons allowed, WiFi keeps Rx state when\nthe number of consecutive beacons lost is greater than the given threshold.", + "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", + "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", + "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" + } + ], + "depends_on": null, + "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": [], + "depends_on": null, + "help": "Maximum number of encrypted peers supported by espnow.\nThe number of hardware keys for encryption is fixed. And the espnow and SoftAP share the same\nhardware keys. So this configuration will affect the maximum connection number of SoftAP.\nMaximum espnow encrypted peers number + maximum number of connections of SoftAP = Max hardware keys number.\n\nWhen 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": null, + "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilites to get the\nconfiguration in passphrase mode.\nNot recommanded to be used since WPS credentials should not\nbe shared to other devices, making it in readable format increases\nthat risk, also passphrase requires pbkdf2 to convert in psk.", + "id": "ESP_WIFI_WPS_PASSPHRASE", + "name": "ESP_WIFI_WPS_PASSPHRASE", + "range": null, + "title": "Get WPA2 passphrase in WPS config", + "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 && IDF_TARGET_ESP32 && ", + "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_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": 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 above 800.\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_SECTOR_512", + "name": "FATFS_SECTOR_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_1024", + "name": "FATFS_SECTOR_1024", + "range": null, + "title": "1024", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_2048", + "name": "FATFS_SECTOR_2048", + "range": null, + "title": "2048", + "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_SECTORS_PER_CLUSTER_1", + "name": "FATFS_SECTORS_PER_CLUSTER_1", + "range": null, + "title": "1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_2", + "name": "FATFS_SECTORS_PER_CLUSTER_2", + "range": null, + "title": "2", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_4", + "name": "FATFS_SECTORS_PER_CLUSTER_4", + "range": null, + "title": "4", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_8", + "name": "FATFS_SECTORS_PER_CLUSTER_8", + "range": null, + "title": "8", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_16", + "name": "FATFS_SECTORS_PER_CLUSTER_16", + "range": null, + "title": "16", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_32", + "name": "FATFS_SECTORS_PER_CLUSTER_32", + "range": null, + "title": "32", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_64", + "name": "FATFS_SECTORS_PER_CLUSTER_64", + "range": null, + "title": "64", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTORS_PER_CLUSTER_128", + "name": "FATFS_SECTORS_PER_CLUSTER_128", + "range": null, + "title": "128", + "type": "bool" + } + ], + "depends_on": null, + "help": "This value specifies how many sectors there are in one cluster.", + "id": "component-config-fat-filesystem-support-sectors-per-cluster", + "name": "FATFS_SECTORS_PER_CLUSTER", + "title": "Sectors per cluster", + "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": "Portugese (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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_AUTO_TYPE", + "name": "FATFS_AUTO_TYPE", + "range": null, + "title": "Select a suitable FATFS type automatically.", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_FAT12", + "name": "FATFS_FAT12", + "range": null, + "title": "FAT12", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_FAT16", + "name": "FATFS_FAT16", + "range": null, + "title": "FAT16", + "type": "bool" + } + ], + "depends_on": null, + "help": "If user specifies automatic detection of the FAT type,\nthe FATFS generator will determine the type by the size.", + "id": "component-config-fat-filesystem-support-fat-type", + "name": "FATFS_CHOOSE_TYPE", + "title": "FAT type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FATFS_CODEPAGE", + "name": "FATFS_CODEPAGE", + "range": null, + "title": null, + "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 (Currently not supported by FATFS partition generator).", + "id": "component-config-fat-filesystem-support-long-filename-support", + "name": "FATFS_LONG_FILENAMES", + "title": "Long filename support", + "type": "choice" + }, + { + "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 lenghty\noperation, another task will wait for the first task to release the lock,\nand time out after amount of time set by this option.", + "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": "Perfer external RAM when allocating FATFS buffers", + "type": "bool" + }, + { + "children": [ + { + "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" + } + ], + "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" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support", + "title": "FAT Filesystem support", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": null, + "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", + "help": "Enables port specific task selection method. This option can will 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 vApplicationMinimalIdleHook( void );``\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_MINIMAL_IDLE_HOOK", + "name": "FREERTOS_USE_MINIMAL_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": null, + "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": [], + "depends_on": null, + "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": null, + "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": null, + "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" + }, + { + "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": [ + { + "children": [ + { + "children": [], + "depends_on": "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" + } + ], + "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": "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.", + "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" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEFAULT || ESP_COREDUMP_ENABLE || ESP_GDBSTUB_ENABLED", + "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_SMP && 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_SMP", + "help": "Enable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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": "IDF_TARGET_ESP32", + "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": [], + "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": "FREERTOS_ENABLE_TASK_SNAPSHOT && !ESP_PANIC_HANDLER_IRAM", + "help": "When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll,\nwill be placed in flash. Note that if enabled, these functions cannot be called when cache is disabled.", + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": "Place task snapshot 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" + }, + { + "children": [], + "depends_on": null, + "help": "Some functions in FreeRTOS have not been thoroughly tested yet when moving to the SMP implementation of\nFreeRTOS. When this option is enabled, these functions will throw an ``assert()``.", + "id": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "name": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "range": null, + "title": "Halt when an SMP-untested function is called", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled, the functions related to snapshots, such as vTaskGetSnapshot or uxTaskGetSnapshotAll, are\ncompiled and linked. Task snapshots are used by Task Watchdog (TWDT), GDB Stub and Core dump.", + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": "Enable task snapshot functions", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "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" + } + ], + "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" + } + ], + "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": [], + "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": "!HEAP_POISONING_DISABLED", + "help": "Enables tracking the task responsible for each heap allocation.\n\nThis function depends on heap poisoning being enabled and adds four more bytes of overhead for each block\nallocated.", + "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" + } + ], + "depends_on": null, + "id": "component-config-heap-memory-debugging", + "title": "Heap memory debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "IEEE802154_ENABLED", + "name": "IEEE802154_ENABLED", + "range": null, + "title": null, + "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": 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.\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-output-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-output-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": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "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", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- System time is taken from POSIX time functions which use the chip's\n RTC and high resoultion timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "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": "If this feature is enabled, standard POSIX APIs: if_indextoname(), if_nametoindex()\ncould be used to convert network interface index to name\ninstead of IDF specific esp-netif APIs (such as esp_netif_get_netif_impl_name())", + "id": "LWIP_NETIF_API", + "name": "LWIP_NETIF_API", + "range": null, + "title": "Enable usage of standard POSIX APIs in LWIP", + "type": "bool" + }, + { + "children": [], + "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, 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": [], + "depends_on": null, + "help": "Sockets take up a certain amount of memory, and allowing fewer\nsockets to be open at the same time conserves memory. Specify\nthe maximum amount of sockets here. The valid value is from 1\nto 16.", + "id": "LWIP_MAX_SOCKETS", + "name": "LWIP_MAX_SOCKETS", + "range": [ + 1, + 16 + ], + "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": "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": null, + "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": [ + { + "children": [], + "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 (new/experimental)", + "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": null, + "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": [], + "depends_on": null, + "help": "Enabling this option performs a check (via ARP request) if the offered IP address\nis not already in use by another host on the network.", + "id": "LWIP_DHCP_DOES_ARP_CHECK", + "name": "LWIP_DHCP_DOES_ARP_CHECK", + "range": null, + "title": "DHCP: Perform ARP check on any offered address", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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": null, + "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": null, + "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": null, + "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": [ + 68, + 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" + } + ], + "depends_on": null, + "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": null, + "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": [ + { + "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 (coap and 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 receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "id": "LWIP_TCP_RECVMBOX_SIZE", + "name": "LWIP_TCP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default TCP receive mail box size", + "type": "int" + }, + { + "children": [ + { + "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", + "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 receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "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": [ + { + "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" + } + ], + "depends_on": null, + "help": "Enable PPP stack. Now only PPP over serial is possible.\n\nPPP over serial support is experimental and unsupported.", + "id": "LWIP_PPP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_PPP_SUPPORT", + "range": null, + "title": "Enable PPP support (new/experimental)", + "type": "menu" + }, + { + "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_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": [ + { + "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": [ + { + "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 aquired 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 aquired 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" + } + ], + "depends_on": null, + "id": "component-config-lwip-sntp", + "title": "SNTP", + "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_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.\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": [ + { + "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 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-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_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", + "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\nBecasue 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": "!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 && !MBEDTLS_DYNAMIC_BUFFER", + "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": "!MBEDTLS_DYNAMIC_FREE_PEER_CERT", + "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_X509_CRL_PARSE_C", + "help": "Enable PKCS #7 core for using PKCS #7-formatted signatures.", + "id": "MBEDTLS_PKCS7_C", + "name": "MBEDTLS_PKCS7_C", + "range": null, + "title": "Enable PKCS #7", + "type": "bool" + }, + { + "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" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Controls the use of record plaintext padding when\nusing the Connection ID extension in DTLS 1.2.\n\nThe padding will always be chosen so that the length of the\npadded plaintext is a multiple of the value of this option.\n\nNotes:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", + "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "range": null, + "title": "Record plaintext padding (for DTLS 1.2)", + "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", + "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": [], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", + "help": "Use an interrupt to coordinate long AES operations.\n\nThis allows other code to run on the CPU while an AES operation is pending.\nOtherwise the CPU busy-waits.", + "id": "MBEDTLS_AES_USE_INTERRUPT", + "name": "MBEDTLS_AES_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for long AES operations", + "type": "bool" + }, + { + "children": [], + "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" + } + ], + "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": [], + "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": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip (integrated with ESP32-WROOM-32SE)", + "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 (integrated with ESP32-WROOM-32SE)", + "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 timekeeeping\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": "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": [ + { + "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-RSA-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-ECDHE-RSA-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-ECDHE-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", + "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 Certifificate 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 Certifificate 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": [], + "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.\nDisabling this configuration option saves flash footprint (about 29KB if all Elliptic Curve selected)\nin the application binary.\n\n# end of Elliptic Curve options", + "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": "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_SECURITY_RISKS", + "help": "Allow the X.509 certificate parser to load certificates\nwith unsupported critical extensions", + "id": "MBEDTLS_ALLOW_UNSUPPORTED_CRITICAL_EXT", + "name": "MBEDTLS_ALLOW_UNSUPPORTED_CRITICAL_EXT", + "range": null, + "title": "X.509 CRT parsing with unsupported critical extensions", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_SECURITY_RISKS", + "is_menuconfig": true, + "name": "MBEDTLS_SECURITY_RISKS", + "range": null, + "title": "Show configurations with potential security risks", + "type": "menu" + } + ], + "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" + } + ], + "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": 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" + } + ], + "depends_on": null, + "id": "component-config-esp-mqtt-configurations", + "title": "ESP-MQTT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_LF", + "name": "NEWLIB_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CR", + "name": "NEWLIB_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring the desired line endings sent to UART\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-output", + "name": "NEWLIB_STDOUT_LINE_ENDING", + "title": "Line ending for UART output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_LF", + "name": "NEWLIB_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CR", + "name": "NEWLIB_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring which input sequence on UART produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-input", + "name": "NEWLIB_STDIN_LINE_ENDING", + "title": "Line ending for UART input", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP32 ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/newlib/README\n\nIf this option is enabled, build system will use functions available in\nROM, reducing the application binary size. Functions available in ROM run\nfaster than functions which run from flash. Functions available in ROM can\nalso run when flash instruction cache is disabled.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "NEWLIB_NANO_FORMAT", + "name": "NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_NONE", + "name": "NEWLIB_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.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-newlib-timers-used-for-gettimeofday-function", + "name": "NEWLIB_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-newlib", + "title": "Newlib", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "This option enables encryption for NVS. When enabled, AES-XTS is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition. This means enabling flash encryption is\na pre-requisite for this feature.", + "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" + } + ], + "depends_on": null, + "id": "component-config-nvs", + "title": "NVS", + "type": "menu" + }, + { + "children": [ + { + "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_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC", + "help": "Select OpenThread log level.", + "id": "component-config-openthread-openthread-openthread-log-verbosity", + "name": "OPENTHREAD_LOG_LEVEL", + "title": "OpenThread log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL", + "name": "OPENTHREAD_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "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" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Configure how OpenThread connects to the 15.4 radio", + "id": "component-config-openthread-openthread-config-the-thread-radio-type", + "name": "OPENTHREAD_RADIO_TYPE", + "title": "Config the Thread radio type", + "type": "choice" + }, + { + "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-config-the-thread-device-type", + "name": "OPENTHREAD_DEVICE_TYPE", + "title": "Config the Thread device 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": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag commands\nin the OpenThread command line. These commands allow users to manipulate low-level features of the storage\nand 15.4 radio.", + "id": "OPENTHREAD_DIAG", + "name": "OPENTHREAD_DIAG", + "range": null, + "title": "Enable diag", + "type": "bool" + }, + { + "children": [], + "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 with\nthe Thread commissioning protocol and shares the network parameter with the joining device upon 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 Thread network with a\npre-shared key using the Thread commissioning protocol.", + "id": "OPENTHREAD_JOINER", + "name": "OPENTHREAD_JOINER", + "range": null, + "title": "Enable Joiner", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable SRP Client in OpenThread. This allows a device to register SRP services to SRP\nServer.", + "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 border router features in OpenThread.", + "id": "OPENTHREAD_BORDER_ROUTER", + "name": "OPENTHREAD_BORDER_ROUTER", + "range": null, + "title": "Enable Border Router", + "type": "bool" + }, + { + "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": "Select this option to acquire NAT64 address from dns servers.", + "id": "OPENTHREAD_DNS64_CLIENT", + "name": "OPENTHREAD_DNS64_CLIENT", + "range": null, + "title": "Use dns64 client", + "type": "bool" + } + ], + "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" + } + ], + "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" + } + ], + "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": 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": "SPI_FLASH_VERIFY_WRITE", + "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", + "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": null, + "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.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables the following APIs:\n\n- spi_flash_reset_counters\n- spi_flash_dump_counters\n- spi_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": null, + "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": "IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2", + "help": null, + "id": "SPI_FLASH_HAS_ROM_IMPL", + "name": "SPI_FLASH_HAS_ROM_IMPL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_HAS_ROM_IMPL", + "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": null, + "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_ESP32S2", + "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": null, + "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", + "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", + "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": null, + "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documenation\nunder section `OS Function`.", + "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": "IDF_TARGET_ESP32C3 && !SPI_FLASH_ROM_IMPL", + "help": "This option is default n before ESP32-C3, because it needs bootloader support.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nAuto-suspend feature only supported by XMC chip.\nIf you are using an official module, please contact Espressif Business support.\nAlso reading auto suspend part in `SPI Flash API` document before you enable this function.", + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "id": "component-config-spi-flash-driver-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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": null, + "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", + "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": null, + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ENABLE", + "name": "SPI_FLASH_HPM_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "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 mesages 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 mesages 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 mesages 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 mesages 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 mesages\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": "", + "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": "!IDF_TARGET_ESP32 && ", + "help": null, + "id": "ULP_COPROC_TYPE_RISCV", + "name": "ULP_COPROC_TYPE_RISCV", + "range": null, + "title": "ULP RISC-V", + "type": "bool" + } + ], + "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED)", + "help": "Choose the ULP Coprocessor type: ULP FSM (Finite State Machine) or ULP RISC-V.\nPlease note that ESP32 only supports ULP FSM.", + "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)", + "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", + "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)", + "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" + } + ], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED)", + "id": "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings", + "title": "ULP RISC-V Settings", + "type": "menu" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_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" + } + ], + "depends_on": null, + "id": "component-config-unity-unit-testing-library", + "title": "Unity unit testing library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "USB_OTG_SUPPORTED", + "name": "USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "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": "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": [], + "depends_on": "USB_OTG_SUPPORTED", + "help": "On connection of a USB device, the USB 2.0 specification requires a \"debounce interval with a minimum\nduration of 100ms\" to allow the connection to stabilize (see USB 2.0 chapter 7.1.7.3 for more details).\nDuring the debounce interval, no new connection/disconnection events are registered.\n\nThe default value is set to 250 ms to be safe.", + "id": "USB_HOST_DEBOUNCE_DELAY_MS", + "name": "USB_HOST_DEBOUNCE_DELAY_MS", + "range": null, + "title": "Debounce delay in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "USB_OTG_SUPPORTED", + "help": "The reset signaling can be generated on any Hub or Host Controller port by request from the USB System\nSoftware. The USB 2.0 specification requires that \"the reset signaling must be driven for a minimum of\n10ms\" (see USB 2.0 chapter 7.1.7.5 for more details). After the reset, the hub port will transition to\nthe Enabled state (refer to Section 11.5).\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_RESET_HOLD_MS", + "name": "USB_HOST_RESET_HOLD_MS", + "range": null, + "title": "Reset hold in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "USB_OTG_SUPPORTED", + "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that the \"USB System\nSoftware guarantees a minimum of 10 ms for reset recovery\" before the attached device is expected to\nrespond to data transfers (see USB 2.0 chapter 7.1.7.3 for more details). The device may ignore any\ndata transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", + "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": "USB_OTG_SUPPORTED", + "help": "\"After successful completion of the Status stage, the device is allowed a SetAddress() recovery\ninterval of 2 ms. At the end of this interval, the device must be able to accept Setup packets\naddressed to the new address. Also, at the end of the recovery interval, the device must not respond to\ntokens sent to the old address (unless, of course, the old and new address is the same).\" See USB 2.0\nchapter 9.2.6.3 for more details.\n\nThe default value is set to 10 ms to be safe.", + "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": null, + "id": "component-config-usb-otg-root-hub-configuration", + "title": "Root Hub configuration", + "type": "menu" + } + ], + "depends_on": null, + "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 unconveniently lot of\ndebug outputs when one sets the default log level to DEBUG or higher.\nIt is possible to suppress these debug outputs by enabling this\noption.", + "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "range": null, + "title": "Suppress select() related debug outputs", + "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": [ + { + "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" + } + ], + "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": "Perfomance", + "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": null, + "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": [ + { + "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" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "WPA_MBEDTLS_CRYPTO", + "help": "Select this option to use MbedTLS TLS client for WPA2 enterprise connection.\nPlease note that from MbedTLS-3.0 onwards, MbedTLS does not support SSL-3.0\nTLS-v1.0, TLS-v1.1 versions. Incase your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibilty with older TLS versions.", + "id": "WPA_MBEDTLS_TLS_CLIENT", + "name": "WPA_MBEDTLS_TLS_CLIENT", + "range": null, + "title": "Use MbedTLS TLS client for WiFi Enterprise connection", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to use MbedTLS crypto APIs which utilize hardware acceleration.", + "id": "WPA_MBEDTLS_CRYPTO", + "name": "WPA_MBEDTLS_CRYPTO", + "range": null, + "title": "Use MbedTLS crypto APIs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_WAPI_SUPPORT", + "help": "Select this option to enable WAPI-PSK\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).", + "id": "WPA_WAPI_PSK", + "name": "WPA_WAPI_PSK", + "range": null, + "title": "Enable WAPI PSK support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable 192 bit NSA suite-B.\nThis is necessary to support WPA3 192 bit security.", + "id": "WPA_SUITE_B_192", + "name": "WPA_SUITE_B_192", + "range": null, + "title": "Enable NSA suite B support with 192 bit key", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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": "WPA_DEBUG_PRINT", + "name": "WPA_DEBUG_PRINT", + "range": null, + "title": "Print debug messages from WPA Supplicant", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this to enable unity test for DPP.", + "id": "WPA_TESTING_OPTIONS", + "name": "WPA_TESTING_OPTIONS", + "range": null, + "title": "Add DPP testing code", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workaorunds with various APs.\nEnabling this may cause inter operability issues with some APs.", + "id": "WPA_WPS_STRICT", + "name": "WPA_WPS_STRICT", + "range": null, + "title": "Strictly validate all WPS attributes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "WPA_11KV_SUPPORT", + "help": "Keep scan results in cache, if not enabled, those\nwill be flushed immediately.", + "id": "WPA_SCAN_CACHE", + "name": "WPA_SCAN_CACHE", + "range": null, + "title": "Keep scan results in cache", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with BTM and RRM enabled in sta config\nto make device ready for network assisted roaming.\nBTM: BSS transition management enables an AP to request a station to transition\nto a specific AP, or to indicate to a station a set of preferred APs.\nRRM: Radio measurements enable STAs to understand the radio environment,\nit enables STAs to observe and gather data on radio link performance\nand on the radio environment. Current implementation adds beacon report,\nlink measurement, neighbor report.", + "id": "WPA_11KV_SUPPORT", + "name": "WPA_11KV_SUPPORT", + "range": null, + "title": "Enable 802.11k, 802.11v APIs Support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Multiband operation certification support.", + "id": "WPA_MBO_SUPPORT", + "name": "WPA_MBO_SUPPORT", + "range": null, + "title": "Enable Multi Band Operation Certification Support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Easy Connect Support.", + "id": "WPA_DPP_SUPPORT", + "name": "WPA_DPP_SUPPORT", + "range": null, + "title": "Enable DPP support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Fast Transition Support.", + "id": "WPA_11R_SUPPORT", + "name": "WPA_11R_SUPPORT", + "range": null, + "title": "Enable 802.11R (Fast Transition) Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SOFTAP_SUPPORT", + "help": "Select this option to enable WPS registrar support in softAP mode.", + "id": "WPA_WPS_SOFTAP_REGISTRAR", + "name": "WPA_WPS_SOFTAP_REGISTRAR", + "range": null, + "title": "Add WPS Registrar support in SoftAP mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-supplicant", + "title": "Supplicant", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + } +] \ No newline at end of file diff --git a/build/config/sdkconfig.cmake b/build/config/sdkconfig.cmake new file mode 100644 index 0000000..6c348e8 --- /dev/null +++ b/build/config/sdkconfig.cmake @@ -0,0 +1,1246 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256 "y") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_SIZE "64") +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_GDMA_GROUPS "y") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN "16") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +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_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +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_I2C_FIFO_LEN "32") +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_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "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_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC "y") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "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_PCNT_GROUPS "y") +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_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_SDM_GROUPS "y") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +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_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_MEMSPI_SRC_FREQ_120M "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_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_TOUCH_VERSION_2 "y") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX "0x1fffff") +set(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX "0xff") +set(CONFIG_SOC_UART_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_REQUIRE_CORE_RESET "y") +set(CONFIG_SOC_USB_PERIPH_NUM "y") +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_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_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_MODEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "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_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_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_COEX_HW_PTI "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_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_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_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32s3") +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_ELF_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_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_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_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_APP_ROLLBACK_ENABLE "") +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_BOOTLOADER_FLASH_XMC_SUPPORT "y") +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 "16") +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_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_ETS_PRINTF_BUG "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_NEEDS_SET_CACHE_MMU_SIZE "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_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_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 "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_ESP_WIFI_SSID "CMCC-xRSZ") +set(CONFIG_ESP_WIFI_PASSWORD "dughk9gm") +set(CONFIG_ESP_MAXIMUM_RETRY "5") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "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_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_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_APPTRACE_DEST_JTAG "") +set(CONFIG_APPTRACE_DEST_NONE "y") +set(CONFIG_APPTRACE_DEST_UART0 "") +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_ADC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") +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_TWAI_ISR_IN_IRAM "") +set(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM "y") +set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG "") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_SDM_ENABLE_DEBUG_LOG "") +set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") +set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") +set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_PCNT_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ISR_IRAM_SAFE "") +set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_RMT_ENABLE_DEBUG_LOG "") +set(CONFIG_MCPWM_ISR_IRAM_SAFE "") +set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +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_DS_PERIPHERAL "y") +set(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER "") +set(CONFIG_ESP_TLS_PSK_VERIFICATION "") +set(CONFIG_ESP_TLS_INSECURE "") +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_ESP_ERR_TO_NAME_LOOKUP "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_HTTP_CLIENT_ENABLE_HTTPS "y") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH "") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH "") +set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "512") +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_ESP_HTTPS_OTA_DECRYPT_CB "") +set(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_HTTPS_SERVER_ENABLE "") +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_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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +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_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB "y") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE "32") +set(CONFIG_LCD_ENABLE_DEBUG_LOG "") +set(CONFIG_LCD_RGB_ISR_IRAM_SAFE "") +set(CONFIG_LCD_RGB_RESTART_IN_VSYNC "") +set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") +set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") +set(CONFIG_ESP_NETIF_LOOPBACK "") +set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "") +set(CONFIG_ESP_NETIF_L2_TAP "") +set(CONFIG_ESP_NETIF_BRIDGE_EN "") +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_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_PM_ENABLE "") +set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") +set(CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP "y") +set(CONFIG_SPIRAM "") +set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") +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_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_GDBSTUB_RUNTIME "") +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 "") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "y") +set(CONFIG_ESP_CONSOLE_MULTIPLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "-1") +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_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_SYSTEM_BROWNOUT_INTR "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_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_SUPPORTS_ISR_DISPATCH_METHOD "") +set(CONFIG_ESP_TIMER_IMPL_SYSTIMER "y") +set(CONFIG_ESP32_WIFI_ENABLED "y") +set(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_CSI_ENABLED "") +set(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP32_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP32_WIFI_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA "y") +set(CONFIG_ESP_WIFI_SLP_IRAM_OPT "") +set(CONFIG_ESP_WIFI_FTM_ENABLE "") +set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") +set(CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE "") +set(CONFIG_ESP_WIFI_GCMP_SUPPORT "") +set(CONFIG_ESP_WIFI_GMAC_SUPPORT "") +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_WPS_PASSPHRASE "") +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_SECTOR_512 "") +set(CONFIG_FATFS_SECTOR_1024 "") +set(CONFIG_FATFS_SECTOR_2048 "") +set(CONFIG_FATFS_SECTOR_4096 "y") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_1 "y") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_2 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_4 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_8 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_16 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_32 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_64 "") +set(CONFIG_FATFS_SECTORS_PER_CLUSTER_128 "") +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_AUTO_TYPE "y") +set(CONFIG_FATFS_FAT12 "") +set(CONFIG_FATFS_FAT16 "") +set(CONFIG_FATFS_CODEPAGE "437") +set(CONFIG_FATFS_LFN_NONE "y") +set(CONFIG_FATFS_LFN_HEAP "") +set(CONFIG_FATFS_LFN_STACK "") +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_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_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_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +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_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_PLACE_SNAPSHOT_FUNS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "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_ABORT_WHEN_ALLOCATION_FAILS "") +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_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") +set(CONFIG_LWIP_NETIF_API "") +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_TIMERS_ONDEMAND "y") +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_IP4_FRAG "y") +set(CONFIG_LWIP_IP6_FRAG "y") +set(CONFIG_LWIP_IP4_REASSEMBLY "") +set(CONFIG_LWIP_IP6_REASSEMBLY "") +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_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 "68") +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_AUTOIP "") +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 "5744") +set(CONFIG_LWIP_TCP_WND_DEFAULT "5744") +set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") +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_PPP_SUPPORT "") +set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") +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_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_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_IP6_INPUT_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "") +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_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_MAX_CERTS "200") +set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_CMAC_C "") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_AES_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") +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_SHA512_C "y") +set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") +set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") +set(CONFIG_MBEDTLS_TLS_DISABLED "") +set(CONFIG_MBEDTLS_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_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 "y") +set(CONFIG_MBEDTLS_POLY1305_C "") +set(CONFIG_MBEDTLS_CHACHA20_C "") +set(CONFIG_MBEDTLS_HKDF_C "") +set(CONFIG_MBEDTLS_THREADING_C "") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "") +set(CONFIG_MBEDTLS_SECURITY_RISKS "") +set(CONFIG_MQTT_PROTOCOL_311 "y") +set(CONFIG_MQTT_PROTOCOL_5 "") +set(CONFIG_MQTT_TRANSPORT_SSL "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE "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 "") +set(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED "") +set(CONFIG_MQTT_CUSTOM_OUTBOX "") +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_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_NVS_ASSERT_ERROR_CHECK "") +set(CONFIG_OPENTHREAD_ENABLED "") +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_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_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_HAS_ROM_IMPL "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_SHARE_SPI1_BUS "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "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 "3") +set(CONFIG_SPIFFS_CACHE "y") +set(CONFIG_SPIFFS_CACHE_WR "y") +set(CONFIG_SPIFFS_CACHE_STATS "") +set(CONFIG_SPIFFS_PAGE_CHECK "y") +set(CONFIG_SPIFFS_GC_MAX_RUNS "10") +set(CONFIG_SPIFFS_GC_STATS "") +set(CONFIG_SPIFFS_PAGE_SIZE "256") +set(CONFIG_SPIFFS_OBJ_NAME_LEN "32") +set(CONFIG_SPIFFS_FOLLOW_SYMLINKS "") +set(CONFIG_SPIFFS_USE_MAGIC "y") +set(CONFIG_SPIFFS_USE_MAGIC_LENGTH "y") +set(CONFIG_SPIFFS_META_LENGTH "4") +set(CONFIG_SPIFFS_USE_MTIME "y") +set(CONFIG_SPIFFS_DBG "") +set(CONFIG_SPIFFS_API_DBG "") +set(CONFIG_SPIFFS_GC_DBG "") +set(CONFIG_SPIFFS_CACHE_DBG "") +set(CONFIG_SPIFFS_CHECK_DBG "") +set(CONFIG_SPIFFS_TEST_VISUALISATION "") +set(CONFIG_WS_TRANSPORT "y") +set(CONFIG_WS_BUFFER_SIZE "1024") +set(CONFIG_WS_DYNAMIC_BUFFER "") +set(CONFIG_ULP_COPROC_ENABLED "") +set(CONFIG_UNITY_ENABLE_FLOAT "y") +set(CONFIG_UNITY_ENABLE_DOUBLE "y") +set(CONFIG_UNITY_ENABLE_64BIT "") +set(CONFIG_UNITY_ENABLE_COLOR "") +set(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER "y") +set(CONFIG_UNITY_ENABLE_FIXTURE "") +set(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL "") +set(CONFIG_USB_OTG_SUPPORTED "y") +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_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_SUPPORT_TERMIOS "y") +set(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS "1") +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_BLE_FORCE_ENCRYPTION "") +set(CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN "y") +set(CONFIG_WIFI_PROV_STA_FAST_SCAN "") +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_DEBUG_PRINT "") +set(CONFIG_WPA_TESTING_OPTIONS "") +set(CONFIG_WPA_WPS_STRICT "") +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(CONFIGS_LIST CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_SIZE;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_GDMA_GROUPS;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC;CONFIG_SOC_I2S_SUPPORTS_TDM;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_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_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_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_MEMSPI_SRC_FREQ_120M;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TOUCH_VERSION_2;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_REQUIRE_CORE_RESET;CONFIG_SOC_USB_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_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_MODEM_PD;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;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_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;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_NEEDS_SET_CACHE_MMU_SIZE;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_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_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_ESP_WIFI_SSID;CONFIG_ESP_WIFI_PASSWORD;CONFIG_ESP_MAXIMUM_RETRY;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_APPTRACE_DEST_JTAG;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_DEST_UART0;CONFIG_APPTRACE_DEST_UART1;CONFIG_APPTRACE_DEST_UART2;CONFIG_APPTRACE_DEST_USB_CDC;CONFIG_APPTRACE_DEST_UART_NONE;CONFIG_APPTRACE_UART_TASK_PRIO;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_ISR_IN_IRAM;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_DS_PERIPHERAL;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_SPI_ETHERNET_W5500;CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL;CONFIG_ETH_USE_OPENETH;CONFIG_ETH_TRANSMIT_MUTEX;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_HTTPD_QUEUE_WORK_BLOCKING;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_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_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_LCD_RGB_ISR_IRAM_SAFE;CONFIG_LCD_RGB_RESTART_IN_VSYNC;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP_PHY_MAX_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP_PHY_REDUCE_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_ESP_PHY_ENABLE_USB;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_PM_ENABLE;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP;CONFIG_SPIRAM;CONFIG_ESP32S3_SPIRAM_SUPPORT;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_SYSTEM_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_MULTIPLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;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_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_ESP32_WIFI_ENABLED;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_FTM_ENABLE;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE;CONFIG_EXTERNAL_COEX_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_WPS_PASSPHRASE;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_SECTOR_512;CONFIG_FATFS_SECTOR_1024;CONFIG_FATFS_SECTOR_2048;CONFIG_FATFS_SECTOR_4096;CONFIG_FATFS_SECTORS_PER_CLUSTER_1;CONFIG_FATFS_SECTORS_PER_CLUSTER_2;CONFIG_FATFS_SECTORS_PER_CLUSTER_4;CONFIG_FATFS_SECTORS_PER_CLUSTER_8;CONFIG_FATFS_SECTORS_PER_CLUSTER_16;CONFIG_FATFS_SECTORS_PER_CLUSTER_32;CONFIG_FATFS_SECTORS_PER_CLUSTER_64;CONFIG_FATFS_SECTORS_PER_CLUSTER_128;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_AUTO_TYPE;CONFIG_FATFS_FAT12;CONFIG_FATFS_FAT16;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FATFS_USE_FASTSEEK;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_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_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_NETIF_API;CONFIG_LWIP_TCPIP_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_TIMERS_ONDEMAND;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_LINGER;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_FORWARD;CONFIG_LWIP_STATS;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_ESP_MLDV6_REPORT;CONFIG_LWIP_MLDV6_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID;CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCP_OPTIONS_LEN;CONFIG_LWIP_NUM_NETIF_CLIENT_DATA;CONFIG_LWIP_DHCP_COARSE_TIMER_SECS;CONFIG_LWIP_DHCPS;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_TCP_RTO_TIME;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_CHECKSUM_CHECK_IP;CONFIG_LWIP_CHECKSUM_CHECK_UDP;CONFIG_LWIP_CHECKSUM_CHECK_ICMP;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_SLIP_SUPPORT;CONFIG_LWIP_ICMP;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_SNTP_MAX_SERVERS;CONFIG_LWIP_DHCP_GET_NTP_SRV;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_LWIP_BRIDGEIF_MAX_PORTS;CONFIG_LWIP_ESP_LWIP_ASSERT;CONFIG_LWIP_HOOK_TCP_ISN_NONE;CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT;CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM;CONFIG_LWIP_HOOK_IP6_ROUTE_NONE;CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT;CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM;CONFIG_LWIP_HOOK_ND6_GET_GW_NONE;CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT;CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_IP6_INPUT_NONE;CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT;CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM;CONFIG_LWIP_DEBUG;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_SECURITY_RISKS;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_PROTOCOL_5;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_MSG_ID_INCREMENTAL;CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED;CONFIG_MQTT_REPORT_DELETED_MESSAGES;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_OPENTHREAD_ENABLED;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_HAS_ROM_IMPL;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_SHARE_SPI1_BUS;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_WS_TRANSPORT;CONFIG_WS_BUFFER_SIZE;CONFIG_WS_DYNAMIC_BUFFER;CONFIG_ULP_COPROC_ENABLED;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_64BIT;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_USB_OTG_SUPPORTED;CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE;CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED;CONFIG_USB_HOST_HW_BUFFER_BIAS_IN;CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT;CONFIG_USB_HOST_DEBOUNCE_DELAY_MS;CONFIG_USB_HOST_RESET_HOLD_MS;CONFIG_USB_HOST_RESET_RECOVERY_MS;CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS;CONFIG_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION;CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_WPA_MBEDTLS_TLS_CLIENT;CONFIG_WPA_WAPI_PSK;CONFIG_WPA_SUITE_B_192;CONFIG_WPA_DEBUG_PRINT;CONFIG_WPA_TESTING_OPTIONS;CONFIG_WPA_WPS_STRICT;CONFIG_WPA_11KV_SUPPORT;CONFIG_WPA_MBO_SUPPORT;CONFIG_WPA_DPP_SUPPORT;CONFIG_WPA_11R_SUPPORT;CONFIG_WPA_WPS_SOFTAP_REGISTRAR) +# List of deprecated options for backward compatibility +set(CONFIG_NO_BLOBS "") +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_APP_ROLLBACK_ENABLE "") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_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_MCPWM_ISR_IN_IRAM "") +set(CONFIG_EVENT_LOOP_PROFILING "") +set(CONFIG_POST_EVENTS_FROM_ISR "y") +set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") +set(CONFIG_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32S3_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_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_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 "") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART_NUM "-1") +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_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_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_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_EXTERNAL_COEX_ENABLE "") +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 "5744") +set(CONFIG_TCP_WND_DEFAULT "5744") +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_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +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..448372e --- /dev/null +++ b/build/config/sdkconfig.h @@ -0,0 +1,779 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) Configuration Header + */ +#pragma once +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM 14 +#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_GDMA_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256 1 +#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 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_CPU_BREAKPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINT_SIZE 64 +#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_GDMA_GROUPS 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN 16 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#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_VALID_DIGITAL_IO_PAD_MASK 0x0001FFFFFC000000 +#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_I2C_FIFO_LEN 32 +#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_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 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_PDM_RX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC 1 +#define CONFIG_SOC_I2S_SUPPORTS_TDM 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_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_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_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#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_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_MEMSPI_SRC_FREQ_120M 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_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_TOUCH_VERSION_2 1 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM 3 +#define CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX 0x1FFFFF +#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF +#define CONFIG_SOC_UART_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_REQUIRE_CORE_RESET 1 +#define CONFIG_SOC_USB_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_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_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_MODEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 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_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_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_COEX_HW_PTI 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_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_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_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32s3" +#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_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#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_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#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 16 +#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_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_ETS_PRINTF_BUG 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_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 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_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_ESP_WIFI_SSID "CMCC-xRSZ" +#define CONFIG_ESP_WIFI_PASSWORD "dughk9gm" +#define CONFIG_ESP_MAXIMUM_RETRY 5 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_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_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 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_ERR_TO_NAME_LOOKUP 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_HTTP_CLIENT_ENABLE_HTTPS 1 +#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 512 +#define CONFIG_HTTPD_MAX_URI_LEN 512 +#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 +#define CONFIG_HTTPD_PURGE_BUF_LEN 32 +#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_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_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_DEEP_SLEEP_WAKEUP_DELAY 2000 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE 32 +#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 +#define CONFIG_ESP_NETIF_TCPIP_LWIP 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_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 +#define CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP 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_PANIC_PRINT_REBOOT 1 +#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_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_NONE 1 +#define CONFIG_ESP_CONSOLE_MULTIPLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM -1 +#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_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 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_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_IMPL_SYSTIMER 1 +#define CONFIG_ESP32_WIFI_ENABLED 1 +#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM 10 +#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM 32 +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER 1 +#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE 1 +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM 32 +#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED 1 +#define CONFIG_ESP32_WIFI_TX_BA_WIN 6 +#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED 1 +#define CONFIG_ESP32_WIFI_RX_BA_WIN 6 +#define CONFIG_ESP32_WIFI_NVS_ENABLED 1 +#define CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 1 +#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN 752 +#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM 32 +#define CONFIG_ESP32_WIFI_IRAM_OPT 1 +#define CONFIG_ESP32_WIFI_RX_IRAM_OPT 1 +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE 1 +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA 1 +#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1 +#define CONFIG_ESP_WIFI_SOFTAP_SUPPORT 1 +#define CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM 7 +#define CONFIG_ESP_COREDUMP_ENABLE_TO_NONE 1 +#define CONFIG_FATFS_VOLUME_COUNT 2 +#define CONFIG_FATFS_SECTOR_4096 1 +#define CONFIG_FATFS_SECTORS_PER_CLUSTER_1 1 +#define CONFIG_FATFS_CODEPAGE_437 1 +#define CONFIG_FATFS_AUTO_TYPE 1 +#define CONFIG_FATFS_CODEPAGE 437 +#define CONFIG_FATFS_LFN_NONE 1 +#define CONFIG_FATFS_FS_LOCK 0 +#define CONFIG_FATFS_TIMEOUT_MS 10000 +#define CONFIG_FATFS_PER_FILE_CACHE 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_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_FUNCTION_WRAPPER 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_ASSERT_ON_UNTESTED_FUNCTION 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 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_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_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" +#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 +#define CONFIG_LWIP_TIMERS_ONDEMAND 1 +#define CONFIG_LWIP_MAX_SOCKETS 10 +#define CONFIG_LWIP_SO_REUSE 1 +#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 +#define CONFIG_LWIP_IP4_FRAG 1 +#define CONFIG_LWIP_IP6_FRAG 1 +#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 +#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 +#define CONFIG_LWIP_ESP_MLDV6_REPORT 1 +#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40 +#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 +#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 +#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1 +#define CONFIG_LWIP_DHCP_OPTIONS_LEN 68 +#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_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 5744 +#define CONFIG_LWIP_TCP_WND_DEFAULT 5744 +#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 +#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_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_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_NETCONN_EXT_RESOLVE_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_INPUT_NONE 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_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 +#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_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_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_ECP_FIXED_POINT_OPTIM 1 +#define CONFIG_MQTT_PROTOCOL_311 1 +#define CONFIG_MQTT_TRANSPORT_SSL 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE 1 +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 +#define CONFIG_NEWLIB_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_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_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_HAS_ROM_IMPL 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_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 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 3 +#define CONFIG_SPIFFS_CACHE 1 +#define CONFIG_SPIFFS_CACHE_WR 1 +#define CONFIG_SPIFFS_PAGE_CHECK 1 +#define CONFIG_SPIFFS_GC_MAX_RUNS 10 +#define CONFIG_SPIFFS_PAGE_SIZE 256 +#define CONFIG_SPIFFS_OBJ_NAME_LEN 32 +#define CONFIG_SPIFFS_USE_MAGIC 1 +#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1 +#define CONFIG_SPIFFS_META_LENGTH 4 +#define CONFIG_SPIFFS_USE_MTIME 1 +#define CONFIG_WS_TRANSPORT 1 +#define CONFIG_WS_BUFFER_SIZE 1024 +#define CONFIG_UNITY_ENABLE_FLOAT 1 +#define CONFIG_UNITY_ENABLE_DOUBLE 1 +#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1 +#define CONFIG_USB_OTG_SUPPORTED 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_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_SEMIHOSTFS_MAX_MOUNT_POINTS 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 +#define CONFIG_WPA_MBEDTLS_CRYPTO 1 +#define CONFIG_WPA_MBEDTLS_TLS_CLIENT 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_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_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_DEEP_SLEEP_WAKEUP_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_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_NEWLIB_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_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP +#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_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL +#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_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_DEFAULT +#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 diff --git a/build/config/sdkconfig.json b/build/config/sdkconfig.json new file mode 100644 index 0000000..fc823a9 --- /dev/null +++ b/build/config/sdkconfig.json @@ -0,0 +1,1095 @@ +{ + "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, + "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, + "ADC_SUPPRESS_DEPRECATE_WARN": false, + "APPTRACE_DEST_JTAG": false, + "APPTRACE_DEST_NONE": true, + "APPTRACE_DEST_UART0": false, + "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_ELF_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": 16, + "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_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "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_OFFSET_IN_FLASH": 0, + "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_ENABLED": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "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_DEFAULT": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "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_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, + "ESP32_WIFI_AMPDU_RX_ENABLED": true, + "ESP32_WIFI_AMPDU_TX_ENABLED": true, + "ESP32_WIFI_CSI_ENABLED": false, + "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, + "ESP32_WIFI_DYNAMIC_TX_BUFFER": true, + "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, + "ESP32_WIFI_ENABLED": true, + "ESP32_WIFI_ENABLE_WPA3_OWE_STA": true, + "ESP32_WIFI_ENABLE_WPA3_SAE": true, + "ESP32_WIFI_IRAM_OPT": true, + "ESP32_WIFI_MGMT_SBUF_NUM": 32, + "ESP32_WIFI_NVS_ENABLED": true, + "ESP32_WIFI_RX_BA_WIN": 6, + "ESP32_WIFI_RX_IRAM_OPT": true, + "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN": 752, + "ESP32_WIFI_STATIC_RX_BUFFER_NUM": 10, + "ESP32_WIFI_STATIC_TX_BUFFER": false, + "ESP32_WIFI_TASK_PINNED_TO_CORE_0": true, + "ESP32_WIFI_TASK_PINNED_TO_CORE_1": false, + "ESP32_WIFI_TX_BA_WIN": 6, + "ESP32_WIFI_TX_BUFFER_TYPE": 1, + "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": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "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_CONSOLE_MULTIPLE_UART": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_SECONDARY_NONE": true, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": false, + "ESP_CONSOLE_UART_NUM": -1, + "ESP_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": 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_ERR_TO_NAME_LOOKUP": true, + "ESP_EVENT_LOOP_PROFILING": false, + "ESP_EVENT_POST_FROM_IRAM_ISR": true, + "ESP_EVENT_POST_FROM_ISR": true, + "ESP_HTTPS_OTA_ALLOW_HTTP": false, + "ESP_HTTPS_OTA_DECRYPT_CB": false, + "ESP_HTTPS_SERVER_ENABLE": false, + "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "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_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_MAXIMUM_RETRY": 5, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_NETIF_BRIDGE_EN": false, + "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, + "ESP_NETIF_L2_TAP": false, + "ESP_NETIF_LOOPBACK": false, + "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, + "ESP_NETIF_TCPIP_LWIP": true, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, + "ESP_PHY_CALIBRATION_MODE": 0, + "ESP_PHY_ENABLE_USB": true, + "ESP_PHY_INIT_DATA_IN_PARTITION": false, + "ESP_PHY_MAX_TX_POWER": 20, + "ESP_PHY_MAX_WIFI_TX_POWER": 20, + "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_VERSION_0": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, + "ESP_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "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_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_MZ_CRC32": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY": 2000, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": 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_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BROWNOUT_INTR": 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_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_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_PROFILING": false, + "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "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_INSECURE": false, + "ESP_TLS_PSK_VERIFICATION": false, + "ESP_TLS_SERVER": false, + "ESP_TLS_USE_DS_PERIPHERAL": true, + "ESP_TLS_USING_MBEDTLS": true, + "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, + "ESP_WIFI_EXTERNAL_COEXIST_ENABLE": false, + "ESP_WIFI_FTM_ENABLE": false, + "ESP_WIFI_GCMP_SUPPORT": false, + "ESP_WIFI_GMAC_SUPPORT": false, + "ESP_WIFI_PASSWORD": "dughk9gm", + "ESP_WIFI_SLP_BEACON_LOST_OPT": false, + "ESP_WIFI_SLP_IRAM_OPT": false, + "ESP_WIFI_SOFTAP_SUPPORT": true, + "ESP_WIFI_SSID": "CMCC-xRSZ", + "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, + "ESP_WIFI_WPS_PASSPHRASE": 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_AUTO_TYPE": 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_FAT12": false, + "FATFS_FAT16": false, + "FATFS_FS_LOCK": 0, + "FATFS_LFN_HEAP": false, + "FATFS_LFN_NONE": true, + "FATFS_LFN_STACK": false, + "FATFS_PER_FILE_CACHE": true, + "FATFS_SECTORS_PER_CLUSTER_1": true, + "FATFS_SECTORS_PER_CLUSTER_128": false, + "FATFS_SECTORS_PER_CLUSTER_16": false, + "FATFS_SECTORS_PER_CLUSTER_2": false, + "FATFS_SECTORS_PER_CLUSTER_32": false, + "FATFS_SECTORS_PER_CLUSTER_4": false, + "FATFS_SECTORS_PER_CLUSTER_64": false, + "FATFS_SECTORS_PER_CLUSTER_8": false, + "FATFS_SECTOR_1024": false, + "FATFS_SECTOR_2048": false, + "FATFS_SECTOR_4096": true, + "FATFS_SECTOR_512": false, + "FATFS_TIMEOUT_MS": 10000, + "FATFS_USE_FASTSEEK": false, + "FATFS_VOLUME_COUNT": 2, + "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION": true, + "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_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": false, + "GDMA_ISR_IRAM_SAFE": false, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_ENABLE_DEBUG_LOG": false, + "GPTIMER_ISR_IRAM_SAFE": 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_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HTTPD_ERR_RESP_NO_DELAY": true, + "HTTPD_LOG_PURGE_DATA": false, + "HTTPD_MAX_REQ_HDR_LEN": 512, + "HTTPD_MAX_URI_LEN": 512, + "HTTPD_PURGE_BUF_LEN": 32, + "HTTPD_QUEUE_WORK_BLOCKING": false, + "HTTPD_WS_SUPPORT": false, + "I2S_ENABLE_DEBUG_LOG": false, + "I2S_ISR_IRAM_SAFE": false, + "I2S_SUPPRESS_DEPRECATE_WARN": false, + "IDF_CMAKE": true, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "LCD_ENABLE_DEBUG_LOG": false, + "LCD_PANEL_IO_FORMAT_BUF_SIZE": 32, + "LCD_RGB_ISR_IRAM_SAFE": false, + "LCD_RGB_RESTART_IN_VSYNC": false, + "LOG_COLORS": true, + "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_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LWIP_AUTOIP": false, + "LWIP_BRIDGEIF_MAX_PORTS": 7, + "LWIP_BROADCAST_PING": false, + "LWIP_CHECKSUM_CHECK_ICMP": true, + "LWIP_CHECKSUM_CHECK_IP": false, + "LWIP_CHECKSUM_CHECK_UDP": false, + "LWIP_CHECK_THREAD_SAFETY": false, + "LWIP_DEBUG": false, + "LWIP_DHCPS": true, + "LWIP_DHCPS_LEASE_UNIT": 60, + "LWIP_DHCPS_MAX_STATION_NUM": 8, + "LWIP_DHCP_COARSE_TIMER_SECS": 1, + "LWIP_DHCP_DISABLE_CLIENT_ID": false, + "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, + "LWIP_DHCP_DOES_ARP_CHECK": true, + "LWIP_DHCP_GET_NTP_SRV": false, + "LWIP_DHCP_OPTIONS_LEN": 68, + "LWIP_DHCP_RESTORE_LAST_IP": false, + "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, + "LWIP_ESP_GRATUITOUS_ARP": true, + "LWIP_ESP_LWIP_ASSERT": true, + "LWIP_ESP_MLDV6_REPORT": true, + "LWIP_GARP_TMR_INTERVAL": 60, + "LWIP_HOOK_IP6_INPUT_CUSTOM": false, + "LWIP_HOOK_IP6_INPUT_DEFAULT": false, + "LWIP_HOOK_IP6_INPUT_NONE": true, + "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, + "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, + "LWIP_HOOK_IP6_ROUTE_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_IPV6": true, + "LWIP_IPV6_AUTOCONFIG": false, + "LWIP_IPV6_FORWARD": false, + "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, + "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, + "LWIP_IPV6_NUM_ADDRESSES": 3, + "LWIP_IP_FORWARD": false, + "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_NETBUF_RECVINFO": false, + "LWIP_NETIF_API": 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_MAX_SERVERS": 1, + "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_STACK_SIZE": 3072, + "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_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": 5744, + "LWIP_TCP_SYNMAXRTX": 12, + "LWIP_TCP_TMR_INTERVAL": 250, + "LWIP_TCP_WND_DEFAULT": 5744, + "LWIP_TIMERS_ONDEMAND": true, + "LWIP_UDP_RECVMBOX_SIZE": 6, + "LWIP_USE_ONLY_LWIP_SELECT": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_AES_USE_INTERRUPT": true, + "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_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": false, + "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": true, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_GCM_C": 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_USE_INTERRUPT": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_SECURITY_RISKS": false, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "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_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_IRAM_SAFE": false, + "MCPWM_SUPPRESS_DEPRECATE_WARN": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "MQTT_CUSTOM_OUTBOX": false, + "MQTT_MSG_ID_INCREMENTAL": false, + "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_TRANSPORT_SSL": true, + "MQTT_TRANSPORT_WEBSOCKET": true, + "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, + "MQTT_USE_CUSTOM_CONFIG": false, + "NEWLIB_NANO_FORMAT": false, + "NEWLIB_STDIN_LINE_ENDING_CR": true, + "NEWLIB_STDIN_LINE_ENDING_CRLF": false, + "NEWLIB_STDIN_LINE_ENDING_LF": false, + "NEWLIB_STDOUT_LINE_ENDING_CR": false, + "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, + "NEWLIB_STDOUT_LINE_ENDING_LF": false, + "NEWLIB_TIME_SYSCALL_USE_HRT": false, + "NEWLIB_TIME_SYSCALL_USE_NONE": false, + "NEWLIB_TIME_SYSCALL_USE_RTC": false, + "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, + "NVS_ASSERT_ERROR_CHECK": false, + "OPENTHREAD_ENABLED": false, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PCNT_CTRL_FUNC_IN_IRAM": false, + "PCNT_ENABLE_DEBUG_LOG": false, + "PCNT_ISR_IRAM_SAFE": false, + "PCNT_SUPPRESS_DEPRECATE_WARN": false, + "PERIPH_CTRL_FUNC_IN_IRAM": false, + "PM_ENABLE": false, + "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, + "PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP": 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_ISR_IRAM_SAFE": false, + "RMT_SUPPRESS_DEPRECATE_WARN": 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, + "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB": true, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": 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_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_FILTER_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_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_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_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_COEX_HW_PTI": 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_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_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_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_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_GROUPS": true, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PSRAM_MIN_ALIGN": 16, + "SOC_GDMA_SUPPORTED": true, + "SOC_GDMA_SUPPORT_PSRAM": true, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_HMAC_SUPPORTED": true, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "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_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_CODEC": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_TDM": true, + "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_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDE_NUM": 14, + "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_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_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_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_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_CLOCK_SUPPORT_8MD256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "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_GROUPS": true, + "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_SPIRAM_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_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIME_TUNING": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": 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_PAD_MEASURE_WAIT_MAX": 255, + "SOC_TOUCH_PAD_THRESHOLD_MAX": 2097151, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_VERSION_2": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_NUM": 3, + "SOC_UART_REQUIRE_CORE_RESET": 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_ULP_SUPPORTED": true, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_PERIPH_NUM": true, + "SOC_USB_SERIAL_JTAG_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_SUPPORTED": 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": 3, + "SPIFFS_META_LENGTH": 4, + "SPIFFS_OBJ_NAME_LEN": 32, + "SPIFFS_PAGE_CHECK": true, + "SPIFFS_PAGE_SIZE": 256, + "SPIFFS_TEST_VISUALISATION": false, + "SPIFFS_USE_MAGIC": true, + "SPIFFS_USE_MAGIC_LENGTH": true, + "SPIFFS_USE_MTIME": true, + "SPIRAM": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_HAS_ROM_IMPL": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SHARE_SPI1_BUS": 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_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_SUPPRESS_DEPRECATE_WARN": false, + "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, + "TWAI_ISR_IN_IRAM": false, + "UART_ISR_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, + "USB_HOST_CONTROL_TRANSFER_MAX_SIZE": 256, + "USB_HOST_DEBOUNCE_DELAY_MS": 250, + "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, + "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_BLE_FORCE_ENCRYPTION": false, + "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, + "WPA_11KV_SUPPORT": false, + "WPA_11R_SUPPORT": false, + "WPA_DEBUG_PRINT": false, + "WPA_DPP_SUPPORT": false, + "WPA_MBEDTLS_CRYPTO": true, + "WPA_MBEDTLS_TLS_CLIENT": true, + "WPA_MBO_SUPPORT": false, + "WPA_SUITE_B_192": false, + "WPA_TESTING_OPTIONS": false, + "WPA_WAPI_PSK": false, + "WPA_WPS_SOFTAP_REGISTRAR": false, + "WPA_WPS_STRICT": 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..a42c486 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..3872e78 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/gcov/gcov_rtio.c.obj b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj new file mode 100644 index 0000000..af80450 Binary files /dev/null and b/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.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..1212d84 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..6c34d80 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..be84446 --- /dev/null +++ b/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..d205645 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..2f07cb6 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..14f7036 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..8e3cb2c --- /dev/null +++ b/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..fd7076f Binary files /dev/null and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/esp-idf/bootloader/bootloader-flash_args.in b/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..46c4661 --- /dev/null +++ b/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +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..a181014 --- /dev/null +++ b/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..618be26 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..206cf8e 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..7879e34 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..eece20a 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..d6ad969 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..d1a73f1 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..d75a253 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..483c8b5 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..b0e101e 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..04c6695 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_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..67c5c70 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/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..e8e844a 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..770fe75 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..10e8baf 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/idf/bootloader_sha.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj new file mode 100644 index 0000000..c7b1d0e Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.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..b85c1a7 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..09ce37a --- /dev/null +++ b/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..ed35bdb 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..cd0ae0b --- /dev/null +++ b/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..13653f7 --- /dev/null +++ b/build/esp-idf/cmake_install.cmake @@ -0,0 +1,399 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_psram/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/idf_test/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/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..12d2595 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..ccbd511 --- /dev/null +++ b/build/esp-idf/cmock/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..21eb4f8 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..82c34ec 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..9f0fc4c 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..72a4e91 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..aa5ab38 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..04b96d1 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..845a247 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..136ee28 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..e45f65c 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..f8a4033 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..c6376b3 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..8d96123 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..9c6e5e9 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..15d3ee7 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..75d77b4 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..4b2f7ba 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_repl.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj new file mode 100644 index 0000000..aea3aa5 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.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..c11d43b 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..c4ced9c 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..2a2a9b9 --- /dev/null +++ b/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..b000b9b 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..f6f5aec 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..4f7d3dd 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/cmake_install.cmake b/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..312ac13 --- /dev/null +++ b/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..17728f8 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..92b494d 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..8f3177b 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..17571d6 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..c3566cd 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..1eb0352 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..d41a85c 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..09a8b8d 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..b733f78 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..dad5a23 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/esp32s3/touch_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj new file mode 100644 index 0000000..a4a9b2b Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj new file mode 100644 index 0000000..bbfaafe Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj new file mode 100644 index 0000000..e24f75a Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj new file mode 100644 index 0000000..636acc3 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj new file mode 100644 index 0000000..996bd7c Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj new file mode 100644 index 0000000..cb140c5 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj new file mode 100644 index 0000000..f8c397e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj new file mode 100644 index 0000000..b4ff6ec Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj new file mode 100644 index 0000000..eb789f0 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj new file mode 100644 index 0000000..815913f Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj new file mode 100644 index 0000000..9db18e9 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj new file mode 100644 index 0000000..36fe4f6 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj new file mode 100644 index 0000000..7e26585 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj new file mode 100644 index 0000000..132e89e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj new file mode 100644 index 0000000..181e3b5 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj new file mode 100644 index 0000000..af7c26e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj new file mode 100644 index 0000000..a2d9d16 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj new file mode 100644 index 0000000..ddb2b2c Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj new file mode 100644 index 0000000..be3873e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj new file mode 100644 index 0000000..d7b61ce Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj new file mode 100644 index 0000000..666d894 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj new file mode 100644 index 0000000..b5eea33 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj new file mode 100644 index 0000000..699da31 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj new file mode 100644 index 0000000..a519db4 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj new file mode 100644 index 0000000..6480084 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj new file mode 100644 index 0000000..6f7a94a Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj new file mode 100644 index 0000000..976352f Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj new file mode 100644 index 0000000..0f9129c Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj new file mode 100644 index 0000000..26a57aa Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj new file mode 100644 index 0000000..ae79708 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj new file mode 100644 index 0000000..ffc8415 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj new file mode 100644 index 0000000..a8374b2 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj new file mode 100644 index 0000000..89cbfb9 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj new file mode 100644 index 0000000..35c4a68 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj new file mode 100644 index 0000000..51fd5a5 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj new file mode 100644 index 0000000..df78efa Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj new file mode 100644 index 0000000..0f6ba79 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj new file mode 100644 index 0000000..480fe0e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj new file mode 100644 index 0000000..19c6d3d Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj new file mode 100644 index 0000000..d3cad7f Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.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..4cbf7c9 --- /dev/null +++ b/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..4be3f94 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..cd448fe 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..f2abc1a 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..c484512 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..71ef3d0 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..40be689 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..28f3cea 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..14780ac 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_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..3175040 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..a328e8c --- /dev/null +++ b/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..832851c 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..faea8da 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..a273080 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..e49ea84 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..27fd4c5 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/cmake_install.cmake b/build/esp-idf/esp-tls/cmake_install.cmake new file mode 100644 index 0000000..2ff958d --- /dev/null +++ b/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..3504e97 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..fff85f7 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..fe5ba31 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..d587384 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..1f58e51 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj new file mode 100644 index 0000000..4642d17 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..9179762 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..6b707fb 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..6f658f5 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/cmake_install.cmake b/build/esp-idf/esp_adc/cmake_install.cmake new file mode 100644 index 0000000..22cc1b8 --- /dev/null +++ b/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..0b80406 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..294e4b1 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..3fa9479 --- /dev/null +++ b/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..f95f328 Binary files /dev/null and b/build/esp-idf/esp_app_format/libesp_app_format.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..6d74398 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..392a15f --- /dev/null +++ b/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..168132f Binary files /dev/null and b/build/esp-idf/esp_common/libesp_common.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..c6f18fa 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..1ecd4d7 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/esp_eth_phy_802_3.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj new file mode 100644 index 0000000..ad4d795 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/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..74273c2 --- /dev/null +++ b/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..82b95fa 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..966ba9d 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..b1e7145 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..df8202b 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..a3b88e6 --- /dev/null +++ b/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..e9a6f49 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/esp_common/gdbstub_common.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj new file mode 100644 index 0000000..2ccf82a Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj 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..1fbbcde 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/packet.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj new file mode 100644 index 0000000..9115086 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/xtensa/gdbstub-entry.S.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj new file mode 100644 index 0000000..5c1761c Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj new file mode 100644 index 0000000..50b6ccd Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj new file mode 100644 index 0000000..66f79b1 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/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..9409315 --- /dev/null +++ b/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7fcd80c 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..eb08627 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..dbc9b12 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..feb9c57 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..83434c3 --- /dev/null +++ b/build/esp-idf/esp_hid/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..be39b3d 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..4890b7e 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..7563552 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..4d18862 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..5f5f329 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..f350166 --- /dev/null +++ b/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..12c63b9 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..6bde4e5 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..512f79e 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..bdc9c13 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..caa6762 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..fecfb00 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..45c1234 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..4ea4c35 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..da22686 --- /dev/null +++ b/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..9c25139 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..b90cda6 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..60e8cf6 --- /dev/null +++ b/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..ba908b4 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/cmake_install.cmake b/build/esp-idf/esp_https_server/cmake_install.cmake new file mode 100644 index 0000000..05d4223 --- /dev/null +++ b/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..b84c961 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..51b5e41 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/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..5f6ea8a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj new file mode 100644 index 0000000..520664e Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.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..d3b385b 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_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..5e0be0d 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/gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.c.obj new file mode 100644 index 0000000..8a43131 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.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..d3f9cd5 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..721c24b Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj new file mode 100644 index 0000000..1326322 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/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..e2888d4 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/async_memcpy_impl_gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.c.obj new file mode 100644 index 0000000..b1b3a97 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.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..e65d224 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/esp_crypto_lock.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj new file mode 100644 index 0000000..a87c113 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj new file mode 100644 index 0000000..497e7a9 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj new file mode 100644 index 0000000..28668a9 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.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..a62087f 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/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..4715ac8 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..43a381d 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..0c1facb 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_pm.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj new file mode 100644 index 0000000..780514b Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.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..b9dc021 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..48b0e9f 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..97918c5 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..9949195 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_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..7be7c96 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/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..7707617 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..9edfe51 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..14e0aa8 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..0a4aa52 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_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..7c86aaa 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_mac_bb.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj new file mode 100644 index 0000000..9657f43 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.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..9f8b314 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_retention.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj new file mode 100644 index 0000000..99889bc Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.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..72e9563 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/cmake_install.cmake b/build/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..eb90e96 --- /dev/null +++ b/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/port/esp32s3/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..ad007b1 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/port/esp32s3/cmake_install.cmake b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..d2bd27f --- /dev/null +++ b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..f3e37d6 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..6f4d9d5 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_io_i2c.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj new file mode 100644 index 0000000..3194692 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj new file mode 100644 index 0000000..6c19d40 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj new file mode 100644 index 0000000..a291217 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.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..f71f225 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..167343b 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_rgb.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj new file mode 100644 index 0000000..a9d5966 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.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..9b63362 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..85f5f40 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..29c993d --- /dev/null +++ b/build/esp-idf/esp_lcd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..17d4462 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..aa7f729 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..b820d9b 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..eb6b242 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..4f0e298 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..4e125ac --- /dev/null +++ b/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..58fd73b Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.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..13484eb 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..15e031e 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..f5c4ee0 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..388c9cd 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..bf5cc0c 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/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..35f5c82 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..c5672e7 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..fe3b7c8 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..4ca7be6 --- /dev/null +++ b/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..126ca90 Binary files /dev/null and b/build/esp-idf/esp_netif/libesp_netif.a differ 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..d49746d 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..b72c502 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..21ca70f --- /dev/null +++ b/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..fd0b58e 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/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..40ca7ab 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_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..717798a 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..4b54b4b 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..4237ccd --- /dev/null +++ b/build/esp-idf/esp_phy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..386c434 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..c85f06e 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..ccaeb1b 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..57df6e3 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..b50fa96 --- /dev/null +++ b/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..f0c8eb4 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..5d39c7b --- /dev/null +++ b/build/esp-idf/esp_psram/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..4082de4 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..cd6cb97 --- /dev/null +++ b/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..63bd9c3 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..56af4f5 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..8a10f8b 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..781e1df 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..18e8838 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_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..ea08b40 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_mmap.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj new file mode 100644 index 0000000..b2233d5 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj new file mode 100644 index 0000000..5a2dbc3 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.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..9b4a312 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..c21c56d 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..5f6bbdd 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..cc73749 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/cmake_install.cmake b/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..f7da772 --- /dev/null +++ b/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..00e3bf9 Binary files /dev/null and b/build/esp-idf/esp_rom/libesp_rom.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..d6bd5a4 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/debug_stubs.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj new file mode 100644 index 0000000..02890ce Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.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..9e5c5b7 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..bb0cfe1 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..6803b08 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj new file mode 100644 index 0000000..088a8c3 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..b18140e 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..84af4dc 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..8cd3c66 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..e241ed5 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..96755e1 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.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj new file mode 100644 index 0000000..d77759e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.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..bf7be66 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_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..ea9077b 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..abf0e0c 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..40a3549 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..311b95b 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..d137a6d 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..98030b2 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/brownout.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj new file mode 100644 index 0000000..5e7190e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.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..63620e1 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/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..62bd70b 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..dd37f6d 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..54e204a 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..6df3755 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..ebfa304 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..86027fa 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..3488da9 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..a44052d 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..32746d8 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/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..770dc95 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..df40024 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..d6be8ea 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..d4ada53 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..fcafcf4 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..9cc09c2 --- /dev/null +++ b/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_system/ld/memory.ld b/build/esp-idf/esp_system/ld/memory.ld new file mode 100644 index 0000000..20ca5de --- /dev/null +++ b/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,163 @@ +/* + + * 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) Configuration Header + + */ + +/* List of deprecated options */ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +_esp_flash_mmap_prefetch_pad_size = 16; +/* CPU instruction prefetch padding size for memory protection scenario */ +_esp_memprot_prefetch_pad_size = 16; +/* Memory alignment size for PMS */ +_esp_memprot_align_size = 256; +_esp_mmu_block_size = (0x10000); + /* 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 = (((0x403CC700 - (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 = ((0x403CC700 - (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 - ((0x0) + (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 - ((0x0) + (24)), len = ((0x0) + (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 +} +_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..7f4637e --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,722 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: E:\Espressif\frameworks\esp-idf-v5.0.4\components\esp_system\ld\esp32s3\sections.ld.in */ + +/* + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/* Default entry point */ +ENTRY(call_start_cpu0); + +_diram_i_start = 0x40378000; + +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(.); + _rtc_text_start = ABSOLUTE(.); + *(.rtc.entry.text) + + *(.rtc.literal .rtc.text .rtc.text.*) + + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + + /* 16B padding for possible CPU prefetch and 4B alignment for PMS split lines */ + . += _esp_memprot_prefetch_pad_size; + . = 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; + _invalid_pc_placeholder = ABSOLUTE(.); + *(.*Vector.literal) + + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + } > 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.*) + *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: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_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) + *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_mmap.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_regi2c.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_system.*(.literal.esp_system_abort .text.esp_system_abort) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.*) .text.*) + *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: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: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.*) + *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_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_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_align_size .text.tlsf_align_size) + *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_block_size_max .text.tlsf_block_size_max) + *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min) + *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.esp_log_write .text.esp_log_write) + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *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: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: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_timing_tuning.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_timing_config.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *libxtensa.a:eri.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr_asm.*(.literal .literal.* .text .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) + + *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .data EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .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.*) + . = ALIGN(4); + _bt_data_start = ABSOLUTE(.); + *libbt.a:(.data .data.*) + . = ALIGN(4); + _bt_data_end = ABSOLUTE(.); + . = ALIGN(4); + _btdm_data_start = ABSOLUTE(.); + *libbtdm_app.a:(.data .data.*) + . = ALIGN(4); + _btdm_data_end = ABSOLUTE(.); + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:systimer.*(.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_mmap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_regi2c.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libfreertos.a:FreeRTOS-openocd.*(.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.*) + *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.*) + . = ALIGN(4); + _nimble_data_start = ABSOLUTE(.); + *libnimble.a:(.data .data.*) + . = ALIGN(4); + _nimble_data_end = ABSOLUTE(.); + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_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_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + + _data_end = ABSOLUTE(.); + . = ALIGN(4); + } > 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(.); + + *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .bss EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .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.*) + *(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) COMMON) + . = ALIGN(4); + _bt_bss_start = ABSOLUTE(.); + *libbt.a:(.bss .bss.*) + . = ALIGN(4); + _bt_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _bt_common_start = ABSOLUTE(.); + *libbt.a:(COMMON) + . = ALIGN(4); + _bt_common_end = ABSOLUTE(.); + . = ALIGN(4); + _btdm_bss_start = ABSOLUTE(.); + *libbtdm_app.a:(.bss .bss.*) + . = ALIGN(4); + _btdm_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _btdm_common_start = ABSOLUTE(.); + *libbtdm_app.a:(COMMON) + . = ALIGN(4); + _btdm_common_end = ABSOLUTE(.); + . = ALIGN(4); + _nimble_bss_start = ABSOLUTE(.); + *libnimble.a:(.bss .bss.*) + . = ALIGN(4); + _nimble_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _nimble_common_start = ABSOLUTE(.); + *libnimble.a:(COMMON) + . = ALIGN(4); + _nimble_common_end = ABSOLUTE(.); + + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + + . = 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 = .; + _instruction_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.text start, this can be used for mmu driver to maintain virtual address */ + _text_start = ABSOLUTE(.); + + *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.* *libxtensa.a:eri.* *libxtensa.a:xtensa_intr_asm.*) .text.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*) + *(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_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.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_configure_region_protection .literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_configure_region_protection .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *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.rtc_vddsdio_get_config .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.rtc_vddsdio_get_config .text.set_ocode_by_efuse) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_power_disable .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *libesp_system.a:esp_system.*(.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 .literal.esp_register_shutdown_handler .literal.esp_unregister_shutdown_handler .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 .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler) + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_block_owner .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *liblog.a:log.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.heap_bubble_down .literal.s_log_level_get_and_unlock .text .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.heap_bubble_down .text.s_log_level_get_and_unlock) + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + + /** CPU will try to prefetch up to 16 bytes of + * of instructions. This means that any configuration (e.g. MMU, PMS) must allow + * safe access to up to 16 bytes after the last real instruction, add + * dummy bytes to ensure this + */ + . += _esp_flash_mmap_prefetch_pad_size; + + _text_end = ABSOLUTE(.); + _instruction_reserved_end = ABSOLUTE(.); /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */ + _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 + + /** + * This 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(.); + /* Start at the same alignment constraint than .flash.text */ + . = ALIGN(ALIGNOF(.flash.text)); + /* Create an empty gap as big as .flash.text section */ + . = . + SIZEOF(.flash.text); + /* Prepare the alignment of the section above. Few bytes (0x20) must be + * added for the mapping header. */ + . = ALIGN(0x10000) + 0x20; + } > default_rodata_seg + + .flash.appdesc : ALIGN(0x10) + { + _rodata_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.rodata start, this can be used for mmu driver to maintain virtual address */ + _rodata_start = ABSOLUTE(.); + + *(.rodata_desc .rodata_desc.*) /* Should be the first. App version info. DO NOT PUT ANYTHING BEFORE IT! */ + *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */ + + /* 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 + + .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.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:systimer.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_systimer.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libfreertos.a:FreeRTOS-openocd.* *libgcc.a:_divsf3.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:systimer_hal.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_mxic_opi.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_hpm_enable.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_timing_config.*) .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) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + __eh_frame = ABSOLUTE(.); + KEEP(*(.eh_frame)) + . = (. + 7) & ~ 3; + /* C++ constructor and destructor tables */ + /* Don't include anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt */ + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_array_end = ABSOLUTE(.); + KEEP (*crtbegin.*(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + /* C++ exception handlers table: */ + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + 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 */ + _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(.); + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + . = ALIGN(4); + } > default_rodata_seg + + _flash_rodata_align = ALIGNOF(.flash.rodata); + + /* + This section is a place where we dump all the rodata which aren't used at runtime, + so as to avoid binary size increase + */ + .flash.rodata_noload (NOLOAD) : + { + /* + This is a symbol marking the flash.rodata end, this can be used for mmu driver to maintain virtual address + We don't need to include the noload rodata in this section + */ + _rodata_reserved_end = ABSOLUTE(.); + . = ALIGN (4); + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + } > default_rodata_seg + + /** + * This section is required to skip flash rodata sections, because `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 + + /* This section holds .ext_ram.bss data, and will be put in PSRAM */ + .ext_ram.bss (NOLOAD) : + { + _ext_ram_bss_start = ABSOLUTE(.); + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* iram_end_test section exists for use by memprot unit tests only */ + *(.iram_end_test) + /* ESP32-S3 memprot requires 16B padding for possible CPU prefetch and 256B alignment for PMS split lines */ + . += _esp_memprot_prefetch_pad_size; + . = ALIGN(_esp_memprot_align_size); + _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(.); + + _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) : + { + . = ALIGN (8); + /* Lowest possible start address for the heap */ + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + + /** This section will be used by the debugger and disassembler to get more information + * about raw data present in the code. + * Indeed, it may be required to add some padding at some points in the code + * in order to align a branch/jump destination on a particular bound. + * Padding these instructions will generate null bytes that shall be + * interpreted as data, and not code by the debugger or disassembler. + * This section will only be present in the ELF file, not in the final binary + * For more details, check GCC-212 + */ + .xt.prop 0 : + { + KEEP (*(.xt.prop .gnu.linkonce.prop.*)) + } + + .xt.lit 0 : + { + KEEP (*(.xt.lit .gnu.linkonce.p.*)) + } +} + +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..bb85afe 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..1578ce2 --- /dev/null +++ b/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..40027a7 --- /dev/null +++ b/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..820605c 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..6a531fe 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..7671730 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/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..f764818 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..b4153d0 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..2bd6a15 --- /dev/null +++ b/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..5fad3a7 Binary files /dev/null and b/build/esp-idf/esp_timer/libesp_timer.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..c0c1616 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/src/coexist.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj new file mode 100644 index 0000000..523aa25 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.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..cbf3e1b 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..0f60014 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..8b38b2c 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..63b89e5 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..93948cf 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..29e3ef5 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..d6782d8 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..cc65d28 --- /dev/null +++ b/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..29c600f 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..e29ab29 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_checksum.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj new file mode 100644 index 0000000..5c62fbe Binary files /dev/null and b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.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..ff747b9 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_elf.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj new file mode 100644 index 0000000..66c3ba0 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..1ddc241 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_uart.c.obj b/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj new file mode 100644 index 0000000..69f3370 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..93b7c1c 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..2daeb47 --- /dev/null +++ b/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..74b7e23 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..b3f3b57 --- /dev/null +++ b/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 $.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..5b77e25 --- /dev/null +++ b/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..f32f086 --- /dev/null +++ b/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "$.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "$.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.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..4e7f692 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..aa0ec79 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..7f7e8cd 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..eae4051 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..2b2723c 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..bdc5370 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..0cf8f5d 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..8c990b6 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..acea20f 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..5d5b21d 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..443d9a7 --- /dev/null +++ b/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..530fcb6 Binary files /dev/null and b/build/esp-idf/fatfs/libfatfs.a differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj new file mode 100644 index 0000000..a426308 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj 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..bdff73f 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..44938cb 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/port_systick.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj new file mode 100644 index 0000000..663ad50 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.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..8e8104c 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..5d25e56 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_context.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj new file mode 100644 index 0000000..628d226 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.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..62396a0 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..632fbee 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/portable/xtensa/xtensa_vector_defaults.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj new file mode 100644 index 0000000..a168c6a Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj new file mode 100644 index 0000000..6d22285 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.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..82d1b53 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..1743be5 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..13c6c7d 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..1d6bd76 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/FreeRTOS-openocd.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj new file mode 100644 index 0000000..26f9245 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.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..28f1ab9 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_v8_compat.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj new file mode 100644 index 0000000..3cda1b3 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.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..95faa0f 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/cmake_install.cmake b/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..b559769 --- /dev/null +++ b/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..ebc37de Binary files /dev/null and b/build/esp-idf/freertos/libfreertos.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..2511597 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..fa04979 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..b8ed3db 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..c1391d9 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/cache_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..e3d9c5d 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/ds_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj new file mode 100644 index 0000000..7b6edae 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..1dd2346 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/brownout_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_hal.c.obj new file mode 100644 index 0000000..c3d6475 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_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..99c39c8 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/hmac_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_hal.c.obj new file mode 100644 index 0000000..5615be9 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_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..9ea627d 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..7f65e09 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.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj new file mode 100644 index 0000000..2c6e779 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.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..ea3f5db 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/i2c_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj new file mode 100644 index 0000000..d6ab200 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..bdc0323 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..6bf70d9 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..17062e2 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..b61bbad 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..19dd775 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..17c3f31 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..ba95051 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/mpu_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..612c1fa 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..9b6500b 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..b7df9fd 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..104371b 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..cddc1af 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/sha_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj new file mode 100644 index 0000000..749a68b 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..86bcd1d 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..1132e0a 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..7a652dd 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..68eb80a 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..90418fa 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..ab9fcd3 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..ccad209 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..ece978d 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..1bcc7d6 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..595a789 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..007205c 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/timer_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj new file mode 100644 index 0000000..9df1d51 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.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..95e323d 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.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj new file mode 100644 index 0000000..165f5d9 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj new file mode 100644 index 0000000..431903e Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.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..26a9765 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..e37b2d4 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/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..083c177 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_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj new file mode 100644 index 0000000..c6e2fe6 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj new file mode 100644 index 0000000..7d58add Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_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..3fc17c9 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..de8176a --- /dev/null +++ b/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..f16eda9 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..505b414 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_init.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..733e88f 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..14f1ba6 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..00e3470 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..54c69f0 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..7268626 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..816dc8b --- /dev/null +++ b/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..bfa6821 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..c17999b 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..552ae22 --- /dev/null +++ b/build/esp-idf/http_parser/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..17e0166 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..701e26d --- /dev/null +++ b/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..d1ae1d7 --- /dev/null +++ b/build/esp-idf/ieee802154/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..7f28cf7 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..194f1d0 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..75dd6c6 --- /dev/null +++ b/build/esp-idf/json/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/json + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..85b6167 Binary files /dev/null and b/build/esp-idf/json/libjson.a differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..7879c91 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..7d61258 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj new file mode 100644 index 0000000..962a69a Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.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..d87e10f --- /dev/null +++ b/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..dfa78e4 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..2f839a2 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..6afd87c 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..e87cd92 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..93b42cc 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..7feb3d5 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..8902217 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..a6c2cbd 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..8428618 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..d080850 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..9e8ca8b 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..f2d5605 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..9c4b016 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..95aea50 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..df20497 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..5ca3f0a 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..7d156d0 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..45da56a 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..d2b1cd3 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..3566bf5 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..ac6a773 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..b35c3e9 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..d5eda98 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..6b3e482 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..ed66666 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..feb9f66 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..de34036 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..8089a1d 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..c7c211b 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..6834d8f 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..9948820 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..0a7699b 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..8017f6b 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..d57a8ac 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..f20775b 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..1c4260a 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..0833430 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..27f61ff 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..b3aa8b5 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..6b6f3d7 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..b9c2061 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..435c0aa 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..57efd2f 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..c0a9838 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..d331696 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..d151aeb 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..e480782 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..b4c0778 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..58a9a23 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..ec898bf 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..ba55bab 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..16ca954 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..715697b 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..296f018 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..24c2a1a 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..36fe296 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..dabb5f9 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..8e3a647 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..e7f8e6f 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..a63b4fe 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..d99991f 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..4861137 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..cd1cfe5 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..73761f0 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..4ba1512 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..a7c291a 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..89b6084 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..1797342 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..d2ffb5e 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..a4e917a 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..42239f7 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/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..5bc3472 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..7f32972 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..5d70c3c 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..bb2475a 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..e12f386 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..e28ed87 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..6291d3b 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..41ee25c 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..60e08fe 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..f3ce24d 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/esp32/debug/lwip_debug.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj new file mode 100644 index 0000000..cde5b01 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj new file mode 100644 index 0000000..b2c9c92 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj new file mode 100644 index 0000000..1fad6e2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj new file mode 100644 index 0000000..1725ab5 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj new file mode 100644 index 0000000..960db47 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj new file mode 100644 index 0000000..3d98d7d Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.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..7e87cf3 --- /dev/null +++ b/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..4b871fe Binary files /dev/null and b/build/esp-idf/lwip/liblwip.a differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj new file mode 100644 index 0000000..6492d5d Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj new file mode 100644 index 0000000..fc5a263 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj new file mode 100644 index 0000000..b0c847b Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj new file mode 100644 index 0000000..f3b6dc7 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj new file mode 100644 index 0000000..72c179e Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj new file mode 100644 index 0000000..1f13e90 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj new file mode 100644 index 0000000..f9d6820 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj new file mode 100644 index 0000000..5258673 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.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..da24573 --- /dev/null +++ b/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..e324791 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..07dfc20 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..4553c8e 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..0b5e255 --- /dev/null +++ b/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..8e2cd1f 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..76311dd --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/3rdparty + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + 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..f18f5ca --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,47 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/mbedtls/library/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..24eb81d --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,131 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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 + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/des.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/error.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/legacy_or_psa.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/lms.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/md.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/private_access.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/version.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/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 + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_compat.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_config.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_extra.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_platform.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_struct.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_types.h" + "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/include/psa/crypto_values.h" + ) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj new file mode 100644 index 0000000..2fa6c80 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj new file mode 100644 index 0000000..8bf7976 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..653b93d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..11de6d4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..dd772ca Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj new file mode 100644 index 0000000..ee7291e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/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/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj new file mode 100644 index 0000000..adcadd3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj new file mode 100644 index 0000000..5fa6ec0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj new file mode 100644 index 0000000..d0d1e8e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..60c2627 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..413a4be Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..26dd6c4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj new file mode 100644 index 0000000..7b54a9c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj new file mode 100644 index 0000000..94d3a8a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj new file mode 100644 index 0000000..0c42d3a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj new file mode 100644 index 0000000..e9d605c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj new file mode 100644 index 0000000..ad38ae5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj new file mode 100644 index 0000000..3f318fa Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..a03e05d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/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..be8310c 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..8e0e12b 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..1aacbc3 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..ac3e70f 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..9832c44 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..3d6ded3 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..f7e75fc 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..94d1984 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..39c7d65 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..d538bb9 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..1b7ef64 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/camellia.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..4f11512 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..d9ac285 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..a657afa 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..c7ca755 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..e977fcf 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..706cdc5 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..9cf9262 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..6909559 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..13169c5 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..4ddfc74 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..943028b 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..39bbf8e 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..4c537f2 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..2cc095e 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..7be4d52 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..e99fac9 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/entropy.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..6d3e820 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..18a7213 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..3337a5f 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..f9dbc0b 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/hash_info.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hash_info.c.obj new file mode 100644 index 0000000..25882a5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hash_info.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..0b20a0f 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..14b5211 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..53a19d1 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..bd4d55c 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..0030503 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..a0d87a2 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..bdd8be0 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..75e5a67 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..f516b18 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..ee03df7 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..ded7dbe 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..fa1f535 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_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..9b057b5 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..8b84af2 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..965f119 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..d896aee 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..00fd33a 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..d6ffede 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..f41f1df 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..f66f4f0 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..19f075c 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..9998417 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..ae519bf 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..8337593 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.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj new file mode 100644 index 0000000..977c2e6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.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..0877c63 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_hash.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj new file mode 100644 index 0000000..e6e2a83 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..3a7e515 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..c3a7b5e 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..d444453 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..b5f28d8 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..82bb0ca 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..76a967b 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..5593f8b 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..b1b06c0 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..164b25a 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..1962c5e 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..f44a1e2 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..62c3529 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..9dce266 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/sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..fa27fc4 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..bec833a 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..e228776 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..94a8ace 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..e0543c5 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/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..b3a8d57 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj new file mode 100644 index 0000000..4996a7c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/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..f46f871 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..1fc442f 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..c0298fb 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..cd9e196 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..aa06353 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..ad10a0f 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..0190099 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..64d1254 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..7d91996 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..683dc6e 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..e05f59e 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..515f2b1 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..78d4ee8 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..5023d51 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..36e54ff 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..71d7060 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..e25900f 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..32f46e0 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..fb49bc2 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..a059aac 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..e0673eb 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..9c27f8c 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..6e07d2c 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_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..9a0c73c 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..936981d 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..a6c8d50 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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 "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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..85e3154 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/error.c @@ -0,0 +1,879 @@ +/* + * Error message information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#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_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 - * Received NewSessionTicket Post Handshake Message. This error code is experimental and may be changed or removed without notice" ); + case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): + return( "SSL - Not possible to read early data" ); + case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA): + return( "SSL - Not possible to write early data" ); + 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" ); +#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_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 */ + +#if defined(MBEDTLS_TEST_HOOKS) +void (*mbedtls_test_hook_error_add)(int, int, const char *, int); +#endif + +#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..fdaa782 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..b0dfdc0 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..66912c6 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.c b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers.c new file mode 100644 index 0000000..9e946e3 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers.c @@ -0,0 +1,2987 @@ +/* + * 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 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +/* 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.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 */ +#if defined(MBEDTLS_PSA_CRYPTO_DRIVERS) +/* 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 + +#endif /* MBEDTLS_PSA_CRYPTO_DRIVERS */ +/* 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) + +/* 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 + +psa_status_t psa_driver_wrapper_init( void ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + status = psa_init_all_se_drivers( ); + if( status != PSA_SUCCESS ) + return( status ); +#endif + +#if defined(PSA_CRYPTO_DRIVER_TEST) + status = mbedtls_test_transparent_init( ); + if( status != PSA_SUCCESS ) + return( status ); + + status = mbedtls_test_opaque_init( ); + if( status != PSA_SUCCESS ) + return( status ); +#endif + + (void) status; + return( PSA_SUCCESS ); +} + +void psa_driver_wrapper_free( void ) +{ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + /* Unregister all secure element drivers, so that we restart from + * a pristine state. */ + psa_unregister_all_se_drivers( ); +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + +#if defined(PSA_CRYPTO_DRIVER_TEST) + mbedtls_test_transparent_free( ); + mbedtls_test_opaque_free( ); +#endif +} + +/* Start delegation functions */ +psa_status_t psa_driver_wrapper_sign_message( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *signature, + size_t signature_size, + size_t *signature_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_signature_sign_message( + attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_size, + signature_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + break; + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_signature_sign_message( + attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_size, + signature_length ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); + break; +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + break; + } + + return( psa_sign_message_builtin( attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_size, + signature_length ) ); +} + +psa_status_t psa_driver_wrapper_verify_message( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *signature, + size_t signature_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_signature_verify_message( + attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + break; + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_signature_verify_message( + attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_length ) ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); + break; +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + break; + } + + return( psa_verify_message_builtin( attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + signature, + signature_length ) ); +} + +psa_status_t psa_driver_wrapper_sign_hash( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, + uint8_t *signature, size_t signature_size, size_t *signature_length ) +{ + /* 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( attributes->core.lifetime, &drv, &drv_context ) ) + { + if( drv->asymmetric == NULL || + drv->asymmetric->p_sign == NULL ) + { + /* Key is defined in SE, but we have no way to exercise it */ + return( PSA_ERROR_NOT_SUPPORTED ); + } + return( drv->asymmetric->p_sign( + drv_context, *( (psa_key_slot_number_t *)key_buffer ), + alg, hash, hash_length, + signature, signature_size, signature_length ) ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_signature_sign_hash( attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_size, + signature_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + /* Fell through, meaning no accelerator supports this operation */ + return( psa_sign_hash_builtin( attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_size, + signature_length ) ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_signature_sign_hash( attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_size, + signature_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_verify_hash( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, + const uint8_t *signature, size_t signature_length ) +{ + /* 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( attributes->core.lifetime, &drv, &drv_context ) ) + { + if( drv->asymmetric == NULL || + drv->asymmetric->p_verify == NULL ) + { + /* Key is defined in SE, but we have no way to exercise it */ + return( PSA_ERROR_NOT_SUPPORTED ); + } + return( drv->asymmetric->p_verify( + drv_context, *( (psa_key_slot_number_t *)key_buffer ), + alg, hash, hash_length, + signature, signature_length ) ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_signature_verify_hash( + attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + return( psa_verify_hash_builtin( attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_length ) ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_signature_verify_hash( attributes, + key_buffer, + key_buffer_size, + alg, + hash, + hash_length, + signature, + signature_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +uint32_t psa_driver_wrapper_sign_hash_get_num_ops( + psa_sign_hash_interruptible_operation_t *operation ) +{ + switch( operation->id ) + { + /* If uninitialised, return 0, as no work can have been done. */ + case 0: + return 0; + + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return(mbedtls_psa_sign_hash_get_num_ops(&operation->ctx.mbedtls_ctx)); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +uint32_t psa_driver_wrapper_verify_hash_get_num_ops( + psa_verify_hash_interruptible_operation_t *operation ) +{ + switch( operation->id ) + { + /* If uninitialised, return 0, as no work can have been done. */ + case 0: + return 0; + + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return (mbedtls_psa_verify_hash_get_num_ops(&operation->ctx.mbedtls_ctx)); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_sign_hash_start( + psa_sign_hash_interruptible_operation_t *operation, + const psa_key_attributes_t *attributes, const uint8_t *key_buffer, + size_t key_buffer_size, psa_algorithm_t alg, + const uint8_t *hash, size_t hash_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( + attributes->core.lifetime ); + + 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) + + /* Add test driver tests here */ + + /* Declared with fallback == true */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + return( mbedtls_psa_sign_hash_start( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, key_buffer_size, + alg, hash, hash_length ) ); + break; + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + ( void ) status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } + + ( void ) operation; + ( void ) key_buffer; + ( void ) key_buffer_size; + ( void ) alg; + ( void ) hash; + ( void ) hash_length; + + return( status ); +} + +psa_status_t psa_driver_wrapper_sign_hash_complete( + psa_sign_hash_interruptible_operation_t *operation, + uint8_t *signature, size_t signature_size, + size_t *signature_length ) +{ + switch( operation->id ) + { + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_sign_hash_complete( &operation->ctx.mbedtls_ctx, + signature, signature_size, + signature_length ) ); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + ( void ) signature; + ( void ) signature_size; + ( void ) signature_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_sign_hash_abort( + psa_sign_hash_interruptible_operation_t *operation ) +{ + switch( operation->id ) + { + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_sign_hash_abort( &operation->ctx.mbedtls_ctx ) ); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_verify_hash_start( + psa_verify_hash_interruptible_operation_t *operation, + const psa_key_attributes_t *attributes, const uint8_t *key_buffer, + size_t key_buffer_size, psa_algorithm_t alg, + const uint8_t *hash, size_t hash_length, + const uint8_t *signature, size_t signature_length ) +{ + + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( + attributes->core.lifetime ); + + 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) + + /* Add test driver tests here */ + + /* Declared with fallback == true */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + return( mbedtls_psa_verify_hash_start( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, key_buffer_size, + alg, hash, hash_length, + signature, signature_length + ) ); + break; + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + ( void ) status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } + + ( void ) operation; + ( void ) key_buffer; + ( void ) key_buffer_size; + ( void ) alg; + ( void ) hash; + ( void ) hash_length; + ( void ) signature; + ( void ) signature_length; + + return( status ); +} + +psa_status_t psa_driver_wrapper_verify_hash_complete( + psa_verify_hash_interruptible_operation_t *operation ) +{ + switch( operation->id ) + { + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_verify_hash_complete( + &operation->ctx.mbedtls_ctx + ) ); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_verify_hash_abort( + psa_verify_hash_interruptible_operation_t *operation ) +{ + switch( operation->id ) + { + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_verify_hash_abort( &operation->ctx.mbedtls_ctx + ) ); + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + /* Add test driver tests here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +/** Calculate the key buffer size required to store the key material of a key + * associated with an opaque driver from input key data. + * + * \param[in] attributes The key attributes + * \param[in] data The input key data. + * \param[in] data_length The input data length. + * \param[out] key_buffer_size Minimum buffer size to contain the key material. + * + * \retval #PSA_SUCCESS \emptydescription + * \retval #PSA_ERROR_INVALID_ARGUMENT \emptydescription + * \retval #PSA_ERROR_NOT_SUPPORTED \emptydescription + */ +psa_status_t psa_driver_wrapper_get_key_buffer_size_from_key_data( + const psa_key_attributes_t *attributes, + const uint8_t *data, + size_t data_length, + size_t *key_buffer_size ) +{ + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + psa_key_type_t key_type = attributes->core.type; + + *key_buffer_size = 0; + switch( location ) + { +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + *key_buffer_size = mbedtls_test_opaque_size_function( key_type, + PSA_BYTES_TO_BITS( data_length ) ); + return( ( *key_buffer_size != 0 ) ? + PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ + + default: + (void)key_type; + (void)data; + (void)data_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +/** 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( attributes->core.lifetime ); + psa_key_type_t key_type = attributes->core.type; + size_t key_bits = attributes->core.bits; + + *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_generate_key( + const psa_key_attributes_t *attributes, + uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION(attributes->core.lifetime); + + /* 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( attributes->core.lifetime, &drv, &drv_context ) ) + { + size_t pubkey_length = 0; /* We don't support this feature yet */ + if( drv->key_management == NULL || + drv->key_management->p_generate == NULL ) + { + /* Key is defined as being in SE, but we have no way to generate it */ + return( PSA_ERROR_NOT_SUPPORTED ); + } + return( drv->key_management->p_generate( + drv_context, + *( (psa_key_slot_number_t *)key_buffer ), + attributes, NULL, 0, &pubkey_length ) ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + switch( location ) + { + case PSA_KEY_LOCATION_LOCAL_STORAGE: +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + /* Transparent drivers are limited to generating asymmetric keys */ + if( PSA_KEY_TYPE_IS_ASYMMETRIC( attributes->core.type ) ) + { + /* Cycle through all known transparent accelerators */ +#if defined(PSA_CRYPTO_DRIVER_TEST) + status = mbedtls_test_transparent_generate_key( + attributes, key_buffer, key_buffer_size, + key_buffer_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + break; +#endif /* PSA_CRYPTO_DRIVER_TEST */ + } +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Software fallback */ + status = psa_generate_key_internal( + attributes, key_buffer, key_buffer_size, key_buffer_length ); + break; + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_generate_key( + attributes, key_buffer, key_buffer_size, key_buffer_length ); + break; +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + /* Key is declared with a lifetime not known to us */ + status = PSA_ERROR_INVALID_ARGUMENT; + break; + } + + return( status ); +} + +psa_status_t psa_driver_wrapper_import_key( + const psa_key_attributes_t *attributes, + const uint8_t *data, + size_t data_length, + uint8_t *key_buffer, + size_t key_buffer_size, + size_t *key_buffer_length, + size_t *bits ) +{ + + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + 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( attributes->core.lifetime, &drv, &drv_context ) ) + { + if( drv->key_management == NULL || + drv->key_management->p_import == NULL ) + return( PSA_ERROR_NOT_SUPPORTED ); + + /* The driver should set the number of key bits, however in + * case it doesn't, we initialize bits to an invalid value. */ + *bits = PSA_MAX_KEY_BITS + 1; + status = drv->key_management->p_import( + drv_context, + *( (psa_key_slot_number_t *)key_buffer ), + attributes, data, data_length, bits ); + + if( status != PSA_SUCCESS ) + return( status ); + + if( (*bits) > PSA_MAX_KEY_BITS ) + return( PSA_ERROR_NOT_SUPPORTED ); + + return( PSA_SUCCESS ); + } +#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_import_key + (attributes, + data, + data_length, + key_buffer, + key_buffer_size, + key_buffer_length, + bits + ); + + 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_import_key_into_slot( attributes, + data, data_length, + key_buffer, key_buffer_size, + key_buffer_length, bits ) ); + /* 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_import_key + (attributes, + data, + data_length, + key_buffer, + key_buffer_size, + key_buffer_length, + bits + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } + +} + +psa_status_t psa_driver_wrapper_export_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( attributes->core.lifetime, &drv, &drv_context ) ) + { + if( ( drv->key_management == NULL ) || + ( drv->key_management->p_export == NULL ) ) + { + return( PSA_ERROR_NOT_SUPPORTED ); + } + + return( drv->key_management->p_export( + 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: + return( psa_export_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_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_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( attributes->core.lifetime, &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 + + +#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( attributes->core.lifetime ); + switch( location ) + { +#if defined(PSA_CRYPTO_DRIVER_TEST) + +#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_DRIVER_TEST */ + default: + (void) slot_number; + (void) key_buffer; + (void) key_buffer_size; + (void) key_buffer_length; + return( PSA_ERROR_DOES_NOT_EXIST ); + } + +} + +psa_status_t psa_driver_wrapper_copy_key( + psa_key_attributes_t *attributes, + const uint8_t *source_key, size_t source_key_length, + uint8_t *target_key_buffer, size_t target_key_buffer_size, + size_t *target_key_buffer_length ) +{ + + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + +#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( attributes->core.lifetime, &drv, &drv_context ) ) + { + /* Copying to a secure element is not implemented yet. */ + return( PSA_ERROR_NOT_SUPPORTED ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + switch( location ) + { +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + case 0x7fffff: + return( mbedtls_test_opaque_copy_key + (attributes, + source_key, + source_key_length, + target_key_buffer, + target_key_buffer_size, + target_key_buffer_length + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void)source_key; + (void)source_key_length; + (void)target_key_buffer; + (void)target_key_buffer_size; + (void)target_key_buffer_length; + status = PSA_ERROR_INVALID_ARGUMENT; + } + return( status ); + +} + +/* + * Cipher functions + */ +psa_status_t psa_driver_wrapper_cipher_encrypt( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *iv, + size_t iv_length, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_cipher_encrypt( attributes, + key_buffer, + key_buffer_size, + alg, + iv, + iv_length, + input, + input_length, + output, + output_size, + output_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + return( mbedtls_psa_cipher_encrypt( attributes, + key_buffer, + key_buffer_size, + alg, + iv, + iv_length, + input, + input_length, + output, + output_size, + output_length ) ); +#else + return( PSA_ERROR_NOT_SUPPORTED ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_cipher_encrypt( attributes, + key_buffer, + key_buffer_size, + alg, + iv, + iv_length, + input, + input_length, + output, + output_size, + output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + (void)iv; + (void)iv_length; + (void)input; + (void)input_length; + (void)output; + (void)output_size; + (void)output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_cipher_decrypt( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_cipher_decrypt( attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + output, + output_size, + output_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + return( mbedtls_psa_cipher_decrypt( attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + output, + output_size, + output_length ) ); +#else + return( PSA_ERROR_NOT_SUPPORTED ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_cipher_decrypt( attributes, + key_buffer, + key_buffer_size, + alg, + input, + input_length, + output, + output_size, + output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + (void)input; + (void)input_length; + (void)output; + (void)output_size; + (void)output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_cipher_encrypt_setup( + psa_cipher_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_cipher_encrypt_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, + key_buffer, + key_buffer_size, + alg ); + /* Declared with fallback == true */ + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + /* Fell through, meaning no accelerator supports this operation */ + status = mbedtls_psa_cipher_encrypt_setup( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, + key_buffer_size, + alg ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + return( PSA_ERROR_NOT_SUPPORTED ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_cipher_encrypt_setup( + &operation->ctx.opaque_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_OPAQUE_DRIVER_ID; + + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)operation; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_cipher_decrypt_setup( + psa_cipher_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_cipher_decrypt_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, + key_buffer, + key_buffer_size, + alg ); + /* Declared with fallback == true */ + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + /* Fell through, meaning no accelerator supports this operation */ + status = mbedtls_psa_cipher_decrypt_setup( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, + key_buffer_size, + alg ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + + return( status ); +#else /* MBEDTLS_PSA_BUILTIN_CIPHER */ + return( PSA_ERROR_NOT_SUPPORTED ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_cipher_decrypt_setup( + &operation->ctx.opaque_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_OPAQUE_DRIVER_ID; + + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)operation; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_cipher_set_iv( + psa_cipher_operation_t *operation, + const uint8_t *iv, + size_t iv_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_cipher_set_iv( &operation->ctx.mbedtls_ctx, + iv, + iv_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_cipher_set_iv( + &operation->ctx.transparent_test_driver_ctx, + iv, iv_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_cipher_set_iv( + &operation->ctx.opaque_test_driver_ctx, + iv, iv_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)iv; + (void)iv_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_cipher_update( + psa_cipher_operation_t *operation, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_cipher_update( &operation->ctx.mbedtls_ctx, + input, + input_length, + output, + output_size, + output_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_cipher_update( + &operation->ctx.transparent_test_driver_ctx, + input, input_length, + output, output_size, output_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_cipher_update( + &operation->ctx.opaque_test_driver_ctx, + input, input_length, + output, output_size, output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)input; + (void)input_length; + (void)output; + (void)output_size; + (void)output_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_cipher_finish( + psa_cipher_operation_t *operation, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_cipher_finish( &operation->ctx.mbedtls_ctx, + output, + output_size, + output_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_cipher_finish( + &operation->ctx.transparent_test_driver_ctx, + output, output_size, output_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_cipher_finish( + &operation->ctx.opaque_test_driver_ctx, + output, output_size, output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)output; + (void)output_size; + (void)output_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_cipher_abort( + psa_cipher_operation_t *operation ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_CIPHER) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_cipher_abort( &operation->ctx.mbedtls_ctx ) ); +#endif /* MBEDTLS_PSA_BUILTIN_CIPHER */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + status = mbedtls_test_transparent_cipher_abort( + &operation->ctx.transparent_test_driver_ctx ); + mbedtls_platform_zeroize( + &operation->ctx.transparent_test_driver_ctx, + sizeof( operation->ctx.transparent_test_driver_ctx ) ); + return( status ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + status = mbedtls_test_opaque_cipher_abort( + &operation->ctx.opaque_test_driver_ctx ); + mbedtls_platform_zeroize( + &operation->ctx.opaque_test_driver_ctx, + sizeof( operation->ctx.opaque_test_driver_ctx ) ); + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +/* + * Hashing functions + */ +psa_status_t psa_driver_wrapper_hash_compute( + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *hash, + size_t hash_size, + size_t *hash_length) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + + /* Try accelerators first */ +#if defined(PSA_CRYPTO_DRIVER_TEST) + status = mbedtls_test_transparent_hash_compute( + alg, input, input_length, hash, hash_size, hash_length ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + + /* If software fallback is compiled in, try fallback */ +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + status = mbedtls_psa_hash_compute( alg, input, input_length, + hash, hash_size, hash_length ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + (void) status; + (void) alg; + (void) input; + (void) input_length; + (void) hash; + (void) hash_size; + (void) hash_length; + + return( PSA_ERROR_NOT_SUPPORTED ); +} + +psa_status_t psa_driver_wrapper_hash_setup( + psa_hash_operation_t *operation, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + + /* Try setup on accelerators first */ +#if defined(PSA_CRYPTO_DRIVER_TEST) + status = mbedtls_test_transparent_hash_setup( + &operation->ctx.test_driver_ctx, alg ); + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + + /* If software fallback is compiled in, try fallback */ +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + status = mbedtls_psa_hash_setup( &operation->ctx.mbedtls_ctx, alg ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + /* Nothing left to try if we fall through here */ + (void) status; + (void) operation; + (void) alg; + return( PSA_ERROR_NOT_SUPPORTED ); +} + +psa_status_t psa_driver_wrapper_hash_clone( + const psa_hash_operation_t *source_operation, + psa_hash_operation_t *target_operation ) +{ + switch( source_operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + target_operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + return( mbedtls_psa_hash_clone( &source_operation->ctx.mbedtls_ctx, + &target_operation->ctx.mbedtls_ctx ) ); +#endif +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + target_operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + return( mbedtls_test_transparent_hash_clone( + &source_operation->ctx.test_driver_ctx, + &target_operation->ctx.test_driver_ctx ) ); +#endif + default: + (void) target_operation; + return( PSA_ERROR_BAD_STATE ); + } +} + +psa_status_t psa_driver_wrapper_hash_update( + psa_hash_operation_t *operation, + const uint8_t *input, + size_t input_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_hash_update( &operation->ctx.mbedtls_ctx, + input, input_length ) ); +#endif +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_hash_update( + &operation->ctx.test_driver_ctx, + input, input_length ) ); +#endif + default: + (void) input; + (void) input_length; + return( PSA_ERROR_BAD_STATE ); + } +} + +psa_status_t psa_driver_wrapper_hash_finish( + psa_hash_operation_t *operation, + uint8_t *hash, + size_t hash_size, + size_t *hash_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_hash_finish( &operation->ctx.mbedtls_ctx, + hash, hash_size, hash_length ) ); +#endif +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_hash_finish( + &operation->ctx.test_driver_ctx, + hash, hash_size, hash_length ) ); +#endif + default: + (void) hash; + (void) hash_size; + (void) hash_length; + return( PSA_ERROR_BAD_STATE ); + } +} + +psa_status_t psa_driver_wrapper_hash_abort( + psa_hash_operation_t *operation ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_HASH) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_hash_abort( &operation->ctx.mbedtls_ctx ) ); +#endif +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_hash_abort( + &operation->ctx.test_driver_ctx ) ); +#endif + default: + return( PSA_ERROR_BAD_STATE ); + } +} + +psa_status_t psa_driver_wrapper_aead_encrypt( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *nonce, size_t nonce_length, + const uint8_t *additional_data, size_t additional_data_length, + const uint8_t *plaintext, size_t plaintext_length, + uint8_t *ciphertext, size_t ciphertext_size, size_t *ciphertext_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_aead_encrypt( + attributes, key_buffer, key_buffer_size, + alg, + nonce, nonce_length, + additional_data, additional_data_length, + plaintext, plaintext_length, + ciphertext, ciphertext_size, ciphertext_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + return( mbedtls_psa_aead_encrypt( + attributes, key_buffer, key_buffer_size, + alg, + nonce, nonce_length, + additional_data, additional_data_length, + plaintext, plaintext_length, + ciphertext, ciphertext_size, ciphertext_length ) ); + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_aead_decrypt( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *nonce, size_t nonce_length, + const uint8_t *additional_data, size_t additional_data_length, + const uint8_t *ciphertext, size_t ciphertext_length, + uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_aead_decrypt( + attributes, key_buffer, key_buffer_size, + alg, + nonce, nonce_length, + additional_data, additional_data_length, + ciphertext, ciphertext_length, + plaintext, plaintext_size, plaintext_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + return( mbedtls_psa_aead_decrypt( + attributes, key_buffer, key_buffer_size, + alg, + nonce, nonce_length, + additional_data, additional_data_length, + ciphertext, ciphertext_length, + plaintext, plaintext_size, plaintext_length ) ); + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_aead_encrypt_setup( + psa_aead_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + status = mbedtls_test_transparent_aead_encrypt_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, key_buffer, key_buffer_size, + alg ); + + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + status = mbedtls_psa_aead_encrypt_setup( + &operation->ctx.mbedtls_ctx, attributes, + key_buffer, key_buffer_size, + alg ); + + return( status ); + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_aead_decrypt_setup( + psa_aead_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + status = mbedtls_test_transparent_aead_decrypt_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Fell through, meaning no accelerator supports this operation */ + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + status = mbedtls_psa_aead_decrypt_setup( + &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + return( status ); + + /* Add cases for opaque driver here */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_aead_set_nonce( + psa_aead_operation_t *operation, + const uint8_t *nonce, + size_t nonce_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_set_nonce( &operation->ctx.mbedtls_ctx, + nonce, + nonce_length ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_set_nonce( + &operation->ctx.transparent_test_driver_ctx, + nonce, nonce_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)nonce; + (void)nonce_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_set_lengths( + psa_aead_operation_t *operation, + size_t ad_length, + size_t plaintext_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_set_lengths( &operation->ctx.mbedtls_ctx, + ad_length, + plaintext_length ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_set_lengths( + &operation->ctx.transparent_test_driver_ctx, + ad_length, plaintext_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)ad_length; + (void)plaintext_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_update_ad( + psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_update_ad( &operation->ctx.mbedtls_ctx, + input, + input_length ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_update_ad( + &operation->ctx.transparent_test_driver_ctx, + input, input_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)input; + (void)input_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_update( + psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_update( &operation->ctx.mbedtls_ctx, + input, input_length, + output, output_size, + output_length ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_update( + &operation->ctx.transparent_test_driver_ctx, + input, input_length, output, output_size, + output_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)input; + (void)input_length; + (void)output; + (void)output_size; + (void)output_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_finish( + psa_aead_operation_t *operation, + uint8_t *ciphertext, + size_t ciphertext_size, + size_t *ciphertext_length, + uint8_t *tag, + size_t tag_size, + size_t *tag_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_finish( &operation->ctx.mbedtls_ctx, + ciphertext, + ciphertext_size, + ciphertext_length, tag, + tag_size, tag_length ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_finish( + &operation->ctx.transparent_test_driver_ctx, + ciphertext, ciphertext_size, + ciphertext_length, tag, tag_size, tag_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)ciphertext; + (void)ciphertext_size; + (void)ciphertext_length; + (void)tag; + (void)tag_size; + (void)tag_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_verify( + psa_aead_operation_t *operation, + uint8_t *plaintext, + size_t plaintext_size, + size_t *plaintext_length, + const uint8_t *tag, + size_t tag_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + { + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + uint8_t check_tag[PSA_AEAD_TAG_MAX_SIZE]; + size_t check_tag_length; + + status = mbedtls_psa_aead_finish( &operation->ctx.mbedtls_ctx, + plaintext, + plaintext_size, + plaintext_length, + check_tag, + sizeof( check_tag ), + &check_tag_length ); + + if( status == PSA_SUCCESS ) + { + if( tag_length != check_tag_length || + mbedtls_psa_safer_memcmp( tag, check_tag, tag_length ) + != 0 ) + status = PSA_ERROR_INVALID_SIGNATURE; + } + + mbedtls_platform_zeroize( check_tag, sizeof( check_tag ) ); + + return( status ); + } + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_verify( + &operation->ctx.transparent_test_driver_ctx, + plaintext, plaintext_size, + plaintext_length, tag, tag_length ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + (void)plaintext; + (void)plaintext_size; + (void)plaintext_length; + (void)tag; + (void)tag_length; + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +psa_status_t psa_driver_wrapper_aead_abort( + psa_aead_operation_t *operation ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_AEAD) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_aead_abort( &operation->ctx.mbedtls_ctx ) ); + +#endif /* MBEDTLS_PSA_BUILTIN_AEAD */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_aead_abort( + &operation->ctx.transparent_test_driver_ctx ) ); + + /* Add cases for opaque driver here */ + +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + } + + return( PSA_ERROR_INVALID_ARGUMENT ); +} + +/* + * MAC functions + */ +psa_status_t psa_driver_wrapper_mac_compute( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *mac, + size_t mac_size, + size_t *mac_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_mac_compute( + attributes, key_buffer, key_buffer_size, alg, + input, input_length, + mac, mac_size, mac_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + /* Fell through, meaning no accelerator supports this operation */ + status = mbedtls_psa_mac_compute( + attributes, key_buffer, key_buffer_size, alg, + input, input_length, + mac, mac_size, mac_length ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + return( PSA_ERROR_NOT_SUPPORTED ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_mac_compute( + attributes, key_buffer, key_buffer_size, alg, + input, input_length, + mac, mac_size, mac_length ); + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void) key_buffer; + (void) key_buffer_size; + (void) alg; + (void) input; + (void) input_length; + (void) mac; + (void) mac_size; + (void) mac_length; + (void) status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_sign_setup( + psa_mac_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_mac_sign_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + /* Declared with fallback == true */ + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + /* Fell through, meaning no accelerator supports this operation */ + status = mbedtls_psa_mac_sign_setup( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + return( PSA_ERROR_NOT_SUPPORTED ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_mac_sign_setup( + &operation->ctx.opaque_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_OPAQUE_DRIVER_ID; + + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void) status; + (void) operation; + (void) key_buffer; + (void) key_buffer_size; + (void) alg; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_verify_setup( + psa_mac_operation_t *operation, + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_mac_verify_setup( + &operation->ctx.transparent_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + /* Declared with fallback == true */ + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + /* Fell through, meaning no accelerator supports this operation */ + status = mbedtls_psa_mac_verify_setup( &operation->ctx.mbedtls_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + return( PSA_ERROR_NOT_SUPPORTED ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + status = mbedtls_test_opaque_mac_verify_setup( + &operation->ctx.opaque_test_driver_ctx, + attributes, + key_buffer, key_buffer_size, + alg ); + + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_OPAQUE_DRIVER_ID; + + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + (void) status; + (void) operation; + (void) key_buffer; + (void) key_buffer_size; + (void) alg; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_update( + psa_mac_operation_t *operation, + const uint8_t *input, + size_t input_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_mac_update( &operation->ctx.mbedtls_ctx, + input, input_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_mac_update( + &operation->ctx.transparent_test_driver_ctx, + input, input_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_mac_update( + &operation->ctx.opaque_test_driver_ctx, + input, input_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) input; + (void) input_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_sign_finish( + psa_mac_operation_t *operation, + uint8_t *mac, + size_t mac_size, + size_t *mac_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_mac_sign_finish( &operation->ctx.mbedtls_ctx, + mac, mac_size, mac_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_mac_sign_finish( + &operation->ctx.transparent_test_driver_ctx, + mac, mac_size, mac_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_mac_sign_finish( + &operation->ctx.opaque_test_driver_ctx, + mac, mac_size, mac_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) mac; + (void) mac_size; + (void) mac_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_verify_finish( + psa_mac_operation_t *operation, + const uint8_t *mac, + size_t mac_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_mac_verify_finish( &operation->ctx.mbedtls_ctx, + mac, mac_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_mac_verify_finish( + &operation->ctx.transparent_test_driver_ctx, + mac, mac_length ) ); + + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_mac_verify_finish( + &operation->ctx.opaque_test_driver_ctx, + mac, mac_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) mac; + (void) mac_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_mac_abort( + psa_mac_operation_t *operation ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_MAC) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_mac_abort( &operation->ctx.mbedtls_ctx ) ); +#endif /* MBEDTLS_PSA_BUILTIN_MAC */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_mac_abort( + &operation->ctx.transparent_test_driver_ctx ) ); + case MBEDTLS_TEST_OPAQUE_DRIVER_ID: + return( mbedtls_test_opaque_mac_abort( + &operation->ctx.opaque_test_driver_ctx ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +/* + * Asymmetric cryptography + */ +psa_status_t psa_driver_wrapper_asymmetric_encrypt( + const psa_key_attributes_t *attributes, const uint8_t *key_buffer, + size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, + size_t input_length, const uint8_t *salt, size_t salt_length, + uint8_t *output, size_t output_size, size_t *output_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_asymmetric_encrypt( attributes, + key_buffer, key_buffer_size, alg, input, input_length, + salt, salt_length, output, output_size, + output_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + return( mbedtls_psa_asymmetric_encrypt( attributes, + key_buffer, key_buffer_size, alg, input, input_length, + salt, salt_length, output, output_size, output_length ) + ); + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_asymmetric_encrypt( attributes, + key_buffer, key_buffer_size, alg, input, input_length, + salt, salt_length, output, output_size, output_length ) + ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + (void)input; + (void)input_length; + (void)salt; + (void)salt_length; + (void)output; + (void)output_size; + (void)output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_asymmetric_decrypt( + const psa_key_attributes_t *attributes, const uint8_t *key_buffer, + size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, + size_t input_length, const uint8_t *salt, size_t salt_length, + uint8_t *output, size_t output_size, size_t *output_length ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_asymmetric_decrypt( attributes, + key_buffer, key_buffer_size, alg, input, input_length, + salt, salt_length, output, output_size, + output_length ); + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + return( mbedtls_psa_asymmetric_decrypt( attributes, + key_buffer, key_buffer_size, alg,input, input_length, + salt, salt_length, output, output_size, + output_length ) ); + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_asymmetric_decrypt( attributes, + key_buffer, key_buffer_size, alg, input, input_length, + salt, salt_length, output, output_size, + output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + /* Key is declared with a lifetime not known to us */ + (void)status; + (void)key_buffer; + (void)key_buffer_size; + (void)alg; + (void)input; + (void)input_length; + (void)salt; + (void)salt_length; + (void)output; + (void)output_size; + (void)output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_key_agreement( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, + size_t key_buffer_size, + psa_algorithm_t alg, + const uint8_t *peer_key, + size_t peer_key_length, + uint8_t *shared_secret, + size_t shared_secret_size, + size_t *shared_secret_length + ) + { + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( attributes->core.lifetime ); + + 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_key_agreement( attributes, + key_buffer, key_buffer_size, alg, peer_key, + peer_key_length, shared_secret, shared_secret_size, + shared_secret_length ); + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + /* Software Fallback */ + status = psa_key_agreement_raw_builtin( attributes, + key_buffer, + key_buffer_size, + alg, + peer_key, + peer_key_length, + shared_secret, + shared_secret_size, + shared_secret_length ); + return( status ); +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: + return( mbedtls_test_opaque_key_agreement( attributes, + key_buffer, key_buffer_size, alg, peer_key, + peer_key_length, shared_secret, shared_secret_size, + shared_secret_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + + default: + (void) attributes; + (void) key_buffer; + (void) key_buffer_size; + (void) peer_key; + (void) peer_key_length; + (void) shared_secret; + (void) shared_secret_size; + (void) shared_secret_length; + return( PSA_ERROR_NOT_SUPPORTED ); + + } + } + +psa_status_t psa_driver_wrapper_pake_setup( + psa_pake_operation_t *operation, + const psa_crypto_driver_pake_inputs_t *inputs ) +{ + psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; + + psa_key_location_t location = + PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime( &inputs->attributes ) ); + + 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_pake_setup( + &operation->data.ctx.transparent_test_driver_ctx, + inputs ); + if( status == PSA_SUCCESS ) + operation->id = MBEDTLS_TEST_TRANSPARENT_DRIVER_ID; + /* Declared with fallback == true */ + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ +#if defined(MBEDTLS_PSA_BUILTIN_PAKE) + status = mbedtls_psa_pake_setup( &operation->data.ctx.mbedtls_ctx, + inputs ); + if( status == PSA_SUCCESS ) + operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; + return status; +#endif + return( PSA_ERROR_NOT_SUPPORTED ); + /* Add cases for opaque driver here */ + default: + /* Key is declared with a lifetime not known to us */ + (void)operation; + (void)inputs; + (void)status; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} +psa_status_t psa_driver_wrapper_pake_output( + psa_pake_operation_t *operation, + psa_crypto_driver_pake_step_t step, + uint8_t *output, + size_t output_size, + size_t *output_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_PAKE) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_pake_output( &operation->data.ctx.mbedtls_ctx, step, + output, output_size, output_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_PAKE */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_pake_output( + &operation->data.ctx.transparent_test_driver_ctx, + step, output, output_size, output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) step; + (void) output; + (void) output_size; + (void) output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_pake_input( + psa_pake_operation_t *operation, + psa_crypto_driver_pake_step_t step, + const uint8_t *input, + size_t input_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_PAKE) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_pake_input( &operation->data.ctx.mbedtls_ctx, + step, input, + input_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_PAKE */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_pake_input( + &operation->data.ctx.transparent_test_driver_ctx, + step, + input, input_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) step; + (void) input; + (void) input_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_pake_get_implicit_key( + psa_pake_operation_t *operation, + uint8_t *output, size_t output_size, + size_t *output_length ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_PAKE) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_pake_get_implicit_key( &operation->data.ctx.mbedtls_ctx, + output, output_size, output_length ) ); +#endif /* MBEDTLS_PSA_BUILTIN_PAKE */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_pake_get_implicit_key( + &operation->data.ctx.transparent_test_driver_ctx, + output, output_size, output_length ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) output; + (void) output_size; + (void) output_length; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_pake_abort( + psa_pake_operation_t * operation ) +{ + switch( operation->id ) + { +#if defined(MBEDTLS_PSA_BUILTIN_PAKE) + case PSA_CRYPTO_MBED_TLS_DRIVER_ID: + return( mbedtls_psa_pake_abort( &operation->data.ctx.mbedtls_ctx ) ); +#endif /* MBEDTLS_PSA_BUILTIN_PAKE */ + +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) +#if defined(PSA_CRYPTO_DRIVER_TEST) + case MBEDTLS_TEST_TRANSPARENT_DRIVER_ID: + return( mbedtls_test_transparent_pake_abort( + &operation->data.ctx.transparent_test_driver_ctx ) ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +#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..9add9db --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c @@ -0,0 +1,225 @@ +/* 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 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "common.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 "UNKOWN"; +} +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 ) +{ + const char * in_to_str[]= + { + [MBEDTLS_SSL_HELLO_REQUEST] = "MBEDTLS_SSL_HELLO_REQUEST", + [MBEDTLS_SSL_CLIENT_HELLO] = "MBEDTLS_SSL_CLIENT_HELLO", + [MBEDTLS_SSL_SERVER_HELLO] = "MBEDTLS_SSL_SERVER_HELLO", + [MBEDTLS_SSL_SERVER_CERTIFICATE] = "MBEDTLS_SSL_SERVER_CERTIFICATE", + [MBEDTLS_SSL_SERVER_KEY_EXCHANGE] = "MBEDTLS_SSL_SERVER_KEY_EXCHANGE", + [MBEDTLS_SSL_CERTIFICATE_REQUEST] = "MBEDTLS_SSL_CERTIFICATE_REQUEST", + [MBEDTLS_SSL_SERVER_HELLO_DONE] = "MBEDTLS_SSL_SERVER_HELLO_DONE", + [MBEDTLS_SSL_CLIENT_CERTIFICATE] = "MBEDTLS_SSL_CLIENT_CERTIFICATE", + [MBEDTLS_SSL_CLIENT_KEY_EXCHANGE] = "MBEDTLS_SSL_CLIENT_KEY_EXCHANGE", + [MBEDTLS_SSL_CERTIFICATE_VERIFY] = "MBEDTLS_SSL_CERTIFICATE_VERIFY", + [MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC] = "MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC", + [MBEDTLS_SSL_CLIENT_FINISHED] = "MBEDTLS_SSL_CLIENT_FINISHED", + [MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC] = "MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC", + [MBEDTLS_SSL_SERVER_FINISHED] = "MBEDTLS_SSL_SERVER_FINISHED", + [MBEDTLS_SSL_FLUSH_BUFFERS] = "MBEDTLS_SSL_FLUSH_BUFFERS", + [MBEDTLS_SSL_HANDSHAKE_WRAPUP] = "MBEDTLS_SSL_HANDSHAKE_WRAPUP", + [MBEDTLS_SSL_NEW_SESSION_TICKET] = "MBEDTLS_SSL_NEW_SESSION_TICKET", + [MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT] = "MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT", + [MBEDTLS_SSL_HELLO_RETRY_REQUEST] = "MBEDTLS_SSL_HELLO_RETRY_REQUEST", + [MBEDTLS_SSL_ENCRYPTED_EXTENSIONS] = "MBEDTLS_SSL_ENCRYPTED_EXTENSIONS", + [MBEDTLS_SSL_END_OF_EARLY_DATA] = "MBEDTLS_SSL_END_OF_EARLY_DATA", + [MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY] = "MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY", + [MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED] = "MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED", + [MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO] = "MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO", + [MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO] = "MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO", + [MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO] = "MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO", + [MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST] = "MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST", + [MBEDTLS_SSL_HANDSHAKE_OVER] = "MBEDTLS_SSL_HANDSHAKE_OVER", + [MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET] = "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET", + [MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH] = "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH", + }; + + if( in > ( sizeof( in_to_str )/sizeof( in_to_str[0]) - 1 ) || + in_to_str[ in ] == NULL ) + { + return "UNKNOWN_VALUE"; + } + return in_to_str[ in ]; +} + +const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in ) +{ + const char * in_to_str[]= + { + [MBEDTLS_SSL_VERSION_UNKNOWN] = "MBEDTLS_SSL_VERSION_UNKNOWN", + [MBEDTLS_SSL_VERSION_TLS1_2] = "MBEDTLS_SSL_VERSION_TLS1_2", + [MBEDTLS_SSL_VERSION_TLS1_3] = "MBEDTLS_SSL_VERSION_TLS1_3", + }; + + if( in > ( sizeof( in_to_str )/sizeof( in_to_str[0]) - 1 ) || + in_to_str[ in ] == NULL ) + { + return "UNKNOWN_VALUE"; + } + return in_to_str[ in ]; +} + +const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in ) +{ + const char * in_to_str[]= + { + [MBEDTLS_SSL_TLS_PRF_NONE] = "MBEDTLS_SSL_TLS_PRF_NONE", + [MBEDTLS_SSL_TLS_PRF_SHA384] = "MBEDTLS_SSL_TLS_PRF_SHA384", + [MBEDTLS_SSL_TLS_PRF_SHA256] = "MBEDTLS_SSL_TLS_PRF_SHA256", + [MBEDTLS_SSL_HKDF_EXPAND_SHA384] = "MBEDTLS_SSL_HKDF_EXPAND_SHA384", + [MBEDTLS_SSL_HKDF_EXPAND_SHA256] = "MBEDTLS_SSL_HKDF_EXPAND_SHA256", + }; + + if( in > ( sizeof( in_to_str )/sizeof( in_to_str[0]) - 1 ) || + in_to_str[ in ] == NULL ) + { + return "UNKNOWN_VALUE"; + } + return in_to_str[ in ]; +} + +const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in ) +{ + const char * in_to_str[]= + { + [MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET", +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET", + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET", + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET", + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET", + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET", + [MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET] = "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET", +#endif + }; + + if( in > ( sizeof( in_to_str )/sizeof( in_to_str[0]) - 1 ) || + in_to_str[ in ] == NULL ) + { + return "UNKNOWN_VALUE"; + } + return in_to_str[ in ]; +} + + + +#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..0a6ff22 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/version_features.c @@ -0,0 +1,808 @@ +/* + * Version feature information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#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) + "MBEDTLS_HAVE_ASM", +#endif /* MBEDTLS_HAVE_ASM */ +#if defined(MBEDTLS_NO_UDBL_DIVISION) + "MBEDTLS_NO_UDBL_DIVISION", +#endif /* MBEDTLS_NO_UDBL_DIVISION */ +#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION) + "MBEDTLS_NO_64BIT_MULTIPLICATION", +#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */ +#if defined(MBEDTLS_HAVE_SSE2) + "MBEDTLS_HAVE_SSE2", +#endif /* MBEDTLS_HAVE_SSE2 */ +#if defined(MBEDTLS_HAVE_TIME) + "MBEDTLS_HAVE_TIME", +#endif /* MBEDTLS_HAVE_TIME */ +#if defined(MBEDTLS_HAVE_TIME_DATE) + "MBEDTLS_HAVE_TIME_DATE", +#endif /* MBEDTLS_HAVE_TIME_DATE */ +#if defined(MBEDTLS_PLATFORM_MEMORY) + "MBEDTLS_PLATFORM_MEMORY", +#endif /* MBEDTLS_PLATFORM_MEMORY */ +#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) + "MBEDTLS_PLATFORM_NO_STD_FUNCTIONS", +#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */ +#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) + "MBEDTLS_PLATFORM_SETBUF_ALT", +#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */ +#if defined(MBEDTLS_PLATFORM_EXIT_ALT) + "MBEDTLS_PLATFORM_EXIT_ALT", +#endif /* MBEDTLS_PLATFORM_EXIT_ALT */ +#if defined(MBEDTLS_PLATFORM_TIME_ALT) + "MBEDTLS_PLATFORM_TIME_ALT", +#endif /* MBEDTLS_PLATFORM_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) + "MBEDTLS_PLATFORM_FPRINTF_ALT", +#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) + "MBEDTLS_PLATFORM_PRINTF_ALT", +#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) + "MBEDTLS_PLATFORM_SNPRINTF_ALT", +#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) + "MBEDTLS_PLATFORM_VSNPRINTF_ALT", +#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) + "MBEDTLS_PLATFORM_NV_SEED_ALT", +#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */ +#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT) + "MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT", +#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */ +#if defined(MBEDTLS_DEPRECATED_WARNING) + "MBEDTLS_DEPRECATED_WARNING", +#endif /* MBEDTLS_DEPRECATED_WARNING */ +#if defined(MBEDTLS_DEPRECATED_REMOVED) + "MBEDTLS_DEPRECATED_REMOVED", +#endif /* MBEDTLS_DEPRECATED_REMOVED */ +#if defined(MBEDTLS_TIMING_ALT) + "MBEDTLS_TIMING_ALT", +#endif /* MBEDTLS_TIMING_ALT */ +#if defined(MBEDTLS_AES_ALT) + "MBEDTLS_AES_ALT", +#endif /* MBEDTLS_AES_ALT */ +#if defined(MBEDTLS_ARIA_ALT) + "MBEDTLS_ARIA_ALT", +#endif /* MBEDTLS_ARIA_ALT */ +#if defined(MBEDTLS_CAMELLIA_ALT) + "MBEDTLS_CAMELLIA_ALT", +#endif /* MBEDTLS_CAMELLIA_ALT */ +#if defined(MBEDTLS_CCM_ALT) + "MBEDTLS_CCM_ALT", +#endif /* MBEDTLS_CCM_ALT */ +#if defined(MBEDTLS_CHACHA20_ALT) + "MBEDTLS_CHACHA20_ALT", +#endif /* MBEDTLS_CHACHA20_ALT */ +#if defined(MBEDTLS_CHACHAPOLY_ALT) + "MBEDTLS_CHACHAPOLY_ALT", +#endif /* MBEDTLS_CHACHAPOLY_ALT */ +#if defined(MBEDTLS_CMAC_ALT) + "MBEDTLS_CMAC_ALT", +#endif /* MBEDTLS_CMAC_ALT */ +#if defined(MBEDTLS_DES_ALT) + "MBEDTLS_DES_ALT", +#endif /* MBEDTLS_DES_ALT */ +#if defined(MBEDTLS_DHM_ALT) + "MBEDTLS_DHM_ALT", +#endif /* MBEDTLS_DHM_ALT */ +#if defined(MBEDTLS_ECJPAKE_ALT) + "MBEDTLS_ECJPAKE_ALT", +#endif /* MBEDTLS_ECJPAKE_ALT */ +#if defined(MBEDTLS_GCM_ALT) + "MBEDTLS_GCM_ALT", +#endif /* MBEDTLS_GCM_ALT */ +#if defined(MBEDTLS_NIST_KW_ALT) + "MBEDTLS_NIST_KW_ALT", +#endif /* MBEDTLS_NIST_KW_ALT */ +#if defined(MBEDTLS_MD5_ALT) + "MBEDTLS_MD5_ALT", +#endif /* MBEDTLS_MD5_ALT */ +#if defined(MBEDTLS_POLY1305_ALT) + "MBEDTLS_POLY1305_ALT", +#endif /* MBEDTLS_POLY1305_ALT */ +#if defined(MBEDTLS_RIPEMD160_ALT) + "MBEDTLS_RIPEMD160_ALT", +#endif /* MBEDTLS_RIPEMD160_ALT */ +#if defined(MBEDTLS_RSA_ALT) + "MBEDTLS_RSA_ALT", +#endif /* MBEDTLS_RSA_ALT */ +#if defined(MBEDTLS_SHA1_ALT) + "MBEDTLS_SHA1_ALT", +#endif /* MBEDTLS_SHA1_ALT */ +#if defined(MBEDTLS_SHA256_ALT) + "MBEDTLS_SHA256_ALT", +#endif /* MBEDTLS_SHA256_ALT */ +#if defined(MBEDTLS_SHA512_ALT) + "MBEDTLS_SHA512_ALT", +#endif /* MBEDTLS_SHA512_ALT */ +#if defined(MBEDTLS_ECP_ALT) + "MBEDTLS_ECP_ALT", +#endif /* MBEDTLS_ECP_ALT */ +#if defined(MBEDTLS_MD5_PROCESS_ALT) + "MBEDTLS_MD5_PROCESS_ALT", +#endif /* MBEDTLS_MD5_PROCESS_ALT */ +#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT) + "MBEDTLS_RIPEMD160_PROCESS_ALT", +#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */ +#if defined(MBEDTLS_SHA1_PROCESS_ALT) + "MBEDTLS_SHA1_PROCESS_ALT", +#endif /* MBEDTLS_SHA1_PROCESS_ALT */ +#if defined(MBEDTLS_SHA256_PROCESS_ALT) + "MBEDTLS_SHA256_PROCESS_ALT", +#endif /* MBEDTLS_SHA256_PROCESS_ALT */ +#if defined(MBEDTLS_SHA512_PROCESS_ALT) + "MBEDTLS_SHA512_PROCESS_ALT", +#endif /* MBEDTLS_SHA512_PROCESS_ALT */ +#if defined(MBEDTLS_DES_SETKEY_ALT) + "MBEDTLS_DES_SETKEY_ALT", +#endif /* MBEDTLS_DES_SETKEY_ALT */ +#if defined(MBEDTLS_DES_CRYPT_ECB_ALT) + "MBEDTLS_DES_CRYPT_ECB_ALT", +#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT) + "MBEDTLS_DES3_CRYPT_ECB_ALT", +#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_AES_SETKEY_ENC_ALT) + "MBEDTLS_AES_SETKEY_ENC_ALT", +#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */ +#if defined(MBEDTLS_AES_SETKEY_DEC_ALT) + "MBEDTLS_AES_SETKEY_DEC_ALT", +#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */ +#if defined(MBEDTLS_AES_ENCRYPT_ALT) + "MBEDTLS_AES_ENCRYPT_ALT", +#endif /* MBEDTLS_AES_ENCRYPT_ALT */ +#if defined(MBEDTLS_AES_DECRYPT_ALT) + "MBEDTLS_AES_DECRYPT_ALT", +#endif /* MBEDTLS_AES_DECRYPT_ALT */ +#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) + "MBEDTLS_ECDH_GEN_PUBLIC_ALT", +#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */ +#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) + "MBEDTLS_ECDH_COMPUTE_SHARED_ALT", +#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */ +#if defined(MBEDTLS_ECDSA_VERIFY_ALT) + "MBEDTLS_ECDSA_VERIFY_ALT", +#endif /* MBEDTLS_ECDSA_VERIFY_ALT */ +#if defined(MBEDTLS_ECDSA_SIGN_ALT) + "MBEDTLS_ECDSA_SIGN_ALT", +#endif /* MBEDTLS_ECDSA_SIGN_ALT */ +#if defined(MBEDTLS_ECDSA_GENKEY_ALT) + "MBEDTLS_ECDSA_GENKEY_ALT", +#endif /* MBEDTLS_ECDSA_GENKEY_ALT */ +#if defined(MBEDTLS_ECP_INTERNAL_ALT) + "MBEDTLS_ECP_INTERNAL_ALT", +#endif /* MBEDTLS_ECP_INTERNAL_ALT */ +#if defined(MBEDTLS_ECP_NO_FALLBACK) + "MBEDTLS_ECP_NO_FALLBACK", +#endif /* MBEDTLS_ECP_NO_FALLBACK */ +#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) + "MBEDTLS_ECP_RANDOMIZE_JAC_ALT", +#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) + "MBEDTLS_ECP_ADD_MIXED_ALT", +#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) + "MBEDTLS_ECP_DOUBLE_JAC_ALT", +#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) + "MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT", +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) + "MBEDTLS_ECP_NORMALIZE_JAC_ALT", +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) + "MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT", +#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */ +#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) + "MBEDTLS_ECP_RANDOMIZE_MXZ_ALT", +#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) + "MBEDTLS_ECP_NORMALIZE_MXZ_ALT", +#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */ +#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) + "MBEDTLS_ENTROPY_HARDWARE_ALT", +#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */ +#if defined(MBEDTLS_AES_ROM_TABLES) + "MBEDTLS_AES_ROM_TABLES", +#endif /* MBEDTLS_AES_ROM_TABLES */ +#if defined(MBEDTLS_AES_FEWER_TABLES) + "MBEDTLS_AES_FEWER_TABLES", +#endif /* MBEDTLS_AES_FEWER_TABLES */ +#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY) + "MBEDTLS_CAMELLIA_SMALL_MEMORY", +#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */ +#if defined(MBEDTLS_CHECK_RETURN_WARNING) + "MBEDTLS_CHECK_RETURN_WARNING", +#endif /* MBEDTLS_CHECK_RETURN_WARNING */ +#if defined(MBEDTLS_CIPHER_MODE_CBC) + "MBEDTLS_CIPHER_MODE_CBC", +#endif /* MBEDTLS_CIPHER_MODE_CBC */ +#if defined(MBEDTLS_CIPHER_MODE_CFB) + "MBEDTLS_CIPHER_MODE_CFB", +#endif /* MBEDTLS_CIPHER_MODE_CFB */ +#if defined(MBEDTLS_CIPHER_MODE_CTR) + "MBEDTLS_CIPHER_MODE_CTR", +#endif /* MBEDTLS_CIPHER_MODE_CTR */ +#if defined(MBEDTLS_CIPHER_MODE_OFB) + "MBEDTLS_CIPHER_MODE_OFB", +#endif /* MBEDTLS_CIPHER_MODE_OFB */ +#if defined(MBEDTLS_CIPHER_MODE_XTS) + "MBEDTLS_CIPHER_MODE_XTS", +#endif /* MBEDTLS_CIPHER_MODE_XTS */ +#if defined(MBEDTLS_CIPHER_NULL_CIPHER) + "MBEDTLS_CIPHER_NULL_CIPHER", +#endif /* MBEDTLS_CIPHER_NULL_CIPHER */ +#if defined(MBEDTLS_CIPHER_PADDING_PKCS7) + "MBEDTLS_CIPHER_PADDING_PKCS7", +#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ +#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) + "MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS", +#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) + "MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN", +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS) + "MBEDTLS_CIPHER_PADDING_ZEROS", +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ +#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) + "MBEDTLS_CTR_DRBG_USE_128_BIT_KEY", +#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ +#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) + "MBEDTLS_ECP_DP_SECP192R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) + "MBEDTLS_ECP_DP_SECP224R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) + "MBEDTLS_ECP_DP_SECP256R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) + "MBEDTLS_ECP_DP_SECP384R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) + "MBEDTLS_ECP_DP_SECP521R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) + "MBEDTLS_ECP_DP_SECP192K1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) + "MBEDTLS_ECP_DP_SECP224K1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) + "MBEDTLS_ECP_DP_SECP256K1_ENABLED", +#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) + "MBEDTLS_ECP_DP_BP256R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) + "MBEDTLS_ECP_DP_BP384R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) + "MBEDTLS_ECP_DP_BP512R1_ENABLED", +#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) + "MBEDTLS_ECP_DP_CURVE25519_ENABLED", +#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) + "MBEDTLS_ECP_DP_CURVE448_ENABLED", +#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */ +#if defined(MBEDTLS_ECP_NIST_OPTIM) + "MBEDTLS_ECP_NIST_OPTIM", +#endif /* MBEDTLS_ECP_NIST_OPTIM */ +#if defined(MBEDTLS_ECP_RESTARTABLE) + "MBEDTLS_ECP_RESTARTABLE", +#endif /* MBEDTLS_ECP_RESTARTABLE */ +#if defined(MBEDTLS_ECDSA_DETERMINISTIC) + "MBEDTLS_ECDSA_DETERMINISTIC", +#endif /* MBEDTLS_ECDSA_DETERMINISTIC */ +#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) + "MBEDTLS_KEY_EXCHANGE_PSK_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) + "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) + "MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_RSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) + "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED", +#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */ +#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED) + "MBEDTLS_PK_PARSE_EC_EXTENDED", +#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */ +#if defined(MBEDTLS_ERROR_STRERROR_DUMMY) + "MBEDTLS_ERROR_STRERROR_DUMMY", +#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */ +#if defined(MBEDTLS_GENPRIME) + "MBEDTLS_GENPRIME", +#endif /* MBEDTLS_GENPRIME */ +#if defined(MBEDTLS_FS_IO) + "MBEDTLS_FS_IO", +#endif /* MBEDTLS_FS_IO */ +#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) + "MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES", +#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */ +#if defined(MBEDTLS_NO_PLATFORM_ENTROPY) + "MBEDTLS_NO_PLATFORM_ENTROPY", +#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */ +#if defined(MBEDTLS_ENTROPY_FORCE_SHA256) + "MBEDTLS_ENTROPY_FORCE_SHA256", +#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */ +#if defined(MBEDTLS_ENTROPY_NV_SEED) + "MBEDTLS_ENTROPY_NV_SEED", +#endif /* MBEDTLS_ENTROPY_NV_SEED */ +#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) + "MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER", +#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ +#if defined(MBEDTLS_MEMORY_DEBUG) + "MBEDTLS_MEMORY_DEBUG", +#endif /* MBEDTLS_MEMORY_DEBUG */ +#if defined(MBEDTLS_MEMORY_BACKTRACE) + "MBEDTLS_MEMORY_BACKTRACE", +#endif /* MBEDTLS_MEMORY_BACKTRACE */ +#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT) + "MBEDTLS_PK_RSA_ALT_SUPPORT", +#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */ +#if defined(MBEDTLS_PKCS1_V15) + "MBEDTLS_PKCS1_V15", +#endif /* MBEDTLS_PKCS1_V15 */ +#if defined(MBEDTLS_PKCS1_V21) + "MBEDTLS_PKCS1_V21", +#endif /* MBEDTLS_PKCS1_V21 */ +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + "MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS", +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ +#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) + "MBEDTLS_PSA_CRYPTO_CLIENT", +#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ +#if defined(MBEDTLS_PSA_CRYPTO_DRIVERS) + "MBEDTLS_PSA_CRYPTO_DRIVERS", +#endif /* MBEDTLS_PSA_CRYPTO_DRIVERS */ +#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) + "MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG", +#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ +#if defined(MBEDTLS_PSA_CRYPTO_SPM) + "MBEDTLS_PSA_CRYPTO_SPM", +#endif /* MBEDTLS_PSA_CRYPTO_SPM */ +#if defined(MBEDTLS_PSA_INJECT_ENTROPY) + "MBEDTLS_PSA_INJECT_ENTROPY", +#endif /* MBEDTLS_PSA_INJECT_ENTROPY */ +#if defined(MBEDTLS_RSA_NO_CRT) + "MBEDTLS_RSA_NO_CRT", +#endif /* MBEDTLS_RSA_NO_CRT */ +#if defined(MBEDTLS_SELF_TEST) + "MBEDTLS_SELF_TEST", +#endif /* MBEDTLS_SELF_TEST */ +#if defined(MBEDTLS_SHA256_SMALLER) + "MBEDTLS_SHA256_SMALLER", +#endif /* MBEDTLS_SHA256_SMALLER */ +#if defined(MBEDTLS_SHA512_SMALLER) + "MBEDTLS_SHA512_SMALLER", +#endif /* MBEDTLS_SHA512_SMALLER */ +#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES) + "MBEDTLS_SSL_ALL_ALERT_MESSAGES", +#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) + "MBEDTLS_SSL_DTLS_CONNECTION_ID", +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) + "MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT", +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */ +#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) + "MBEDTLS_SSL_ASYNC_PRIVATE", +#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */ +#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) + "MBEDTLS_SSL_CONTEXT_SERIALIZATION", +#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */ +#if defined(MBEDTLS_SSL_DEBUG_ALL) + "MBEDTLS_SSL_DEBUG_ALL", +#endif /* MBEDTLS_SSL_DEBUG_ALL */ +#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) + "MBEDTLS_SSL_ENCRYPT_THEN_MAC", +#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */ +#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) + "MBEDTLS_SSL_EXTENDED_MASTER_SECRET", +#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */ +#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", +#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */ +#if defined(MBEDTLS_SSL_RENEGOTIATION) + "MBEDTLS_SSL_RENEGOTIATION", +#endif /* MBEDTLS_SSL_RENEGOTIATION */ +#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) + "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH", +#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */ +#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT) + "MBEDTLS_SSL_RECORD_SIZE_LIMIT", +#endif /* MBEDTLS_SSL_RECORD_SIZE_LIMIT */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_2) + "MBEDTLS_SSL_PROTO_TLS1_2", +#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + "MBEDTLS_SSL_PROTO_TLS1_3", +#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */ +#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE) + "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", +#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED) + "MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED", +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED) + "MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED", +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED) + "MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED", +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_EARLY_DATA) + "MBEDTLS_SSL_EARLY_DATA", +#endif /* MBEDTLS_SSL_EARLY_DATA */ +#if defined(MBEDTLS_SSL_MAX_EARLY_DATA_SIZE) + "MBEDTLS_SSL_MAX_EARLY_DATA_SIZE", +#endif /* MBEDTLS_SSL_MAX_EARLY_DATA_SIZE */ +#if defined(MBEDTLS_SSL_PROTO_DTLS) + "MBEDTLS_SSL_PROTO_DTLS", +#endif /* MBEDTLS_SSL_PROTO_DTLS */ +#if defined(MBEDTLS_SSL_ALPN) + "MBEDTLS_SSL_ALPN", +#endif /* MBEDTLS_SSL_ALPN */ +#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) + "MBEDTLS_SSL_DTLS_ANTI_REPLAY", +#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */ +#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) + "MBEDTLS_SSL_DTLS_HELLO_VERIFY", +#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */ +#if defined(MBEDTLS_SSL_DTLS_SRTP) + "MBEDTLS_SSL_DTLS_SRTP", +#endif /* MBEDTLS_SSL_DTLS_SRTP */ +#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) + "MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE", +#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */ +#if defined(MBEDTLS_SSL_SESSION_TICKETS) + "MBEDTLS_SSL_SESSION_TICKETS", +#endif /* MBEDTLS_SSL_SESSION_TICKETS */ +#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) + "MBEDTLS_SSL_SERVER_NAME_INDICATION", +#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */ +#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH) + "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", +#endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) + "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN", +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND) + "MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND", +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND */ +#if defined(MBEDTLS_TEST_HOOKS) + "MBEDTLS_TEST_HOOKS", +#endif /* MBEDTLS_TEST_HOOKS */ +#if defined(MBEDTLS_THREADING_ALT) + "MBEDTLS_THREADING_ALT", +#endif /* MBEDTLS_THREADING_ALT */ +#if defined(MBEDTLS_THREADING_PTHREAD) + "MBEDTLS_THREADING_PTHREAD", +#endif /* MBEDTLS_THREADING_PTHREAD */ +#if defined(MBEDTLS_USE_PSA_CRYPTO) + "MBEDTLS_USE_PSA_CRYPTO", +#endif /* MBEDTLS_USE_PSA_CRYPTO */ +#if defined(MBEDTLS_PSA_CRYPTO_CONFIG) + "MBEDTLS_PSA_CRYPTO_CONFIG", +#endif /* MBEDTLS_PSA_CRYPTO_CONFIG */ +#if defined(MBEDTLS_VERSION_FEATURES) + "MBEDTLS_VERSION_FEATURES", +#endif /* MBEDTLS_VERSION_FEATURES */ +#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) + "MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK", +#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */ +#if defined(MBEDTLS_X509_REMOVE_INFO) + "MBEDTLS_X509_REMOVE_INFO", +#endif /* MBEDTLS_X509_REMOVE_INFO */ +#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) + "MBEDTLS_X509_RSASSA_PSS_SUPPORT", +#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */ +#if defined(MBEDTLS_AESNI_C) + "MBEDTLS_AESNI_C", +#endif /* MBEDTLS_AESNI_C */ +#if defined(MBEDTLS_AESCE_C) + "MBEDTLS_AESCE_C", +#endif /* MBEDTLS_AESCE_C */ +#if defined(MBEDTLS_AES_C) + "MBEDTLS_AES_C", +#endif /* MBEDTLS_AES_C */ +#if defined(MBEDTLS_ASN1_PARSE_C) + "MBEDTLS_ASN1_PARSE_C", +#endif /* MBEDTLS_ASN1_PARSE_C */ +#if defined(MBEDTLS_ASN1_WRITE_C) + "MBEDTLS_ASN1_WRITE_C", +#endif /* MBEDTLS_ASN1_WRITE_C */ +#if defined(MBEDTLS_BASE64_C) + "MBEDTLS_BASE64_C", +#endif /* MBEDTLS_BASE64_C */ +#if defined(MBEDTLS_BIGNUM_C) + "MBEDTLS_BIGNUM_C", +#endif /* MBEDTLS_BIGNUM_C */ +#if defined(MBEDTLS_CAMELLIA_C) + "MBEDTLS_CAMELLIA_C", +#endif /* MBEDTLS_CAMELLIA_C */ +#if defined(MBEDTLS_ARIA_C) + "MBEDTLS_ARIA_C", +#endif /* MBEDTLS_ARIA_C */ +#if defined(MBEDTLS_CCM_C) + "MBEDTLS_CCM_C", +#endif /* MBEDTLS_CCM_C */ +#if defined(MBEDTLS_CHACHA20_C) + "MBEDTLS_CHACHA20_C", +#endif /* MBEDTLS_CHACHA20_C */ +#if defined(MBEDTLS_CHACHAPOLY_C) + "MBEDTLS_CHACHAPOLY_C", +#endif /* MBEDTLS_CHACHAPOLY_C */ +#if defined(MBEDTLS_CIPHER_C) + "MBEDTLS_CIPHER_C", +#endif /* MBEDTLS_CIPHER_C */ +#if defined(MBEDTLS_CMAC_C) + "MBEDTLS_CMAC_C", +#endif /* MBEDTLS_CMAC_C */ +#if defined(MBEDTLS_CTR_DRBG_C) + "MBEDTLS_CTR_DRBG_C", +#endif /* MBEDTLS_CTR_DRBG_C */ +#if defined(MBEDTLS_DEBUG_C) + "MBEDTLS_DEBUG_C", +#endif /* MBEDTLS_DEBUG_C */ +#if defined(MBEDTLS_DES_C) + "MBEDTLS_DES_C", +#endif /* MBEDTLS_DES_C */ +#if defined(MBEDTLS_DHM_C) + "MBEDTLS_DHM_C", +#endif /* MBEDTLS_DHM_C */ +#if defined(MBEDTLS_ECDH_C) + "MBEDTLS_ECDH_C", +#endif /* MBEDTLS_ECDH_C */ +#if defined(MBEDTLS_ECDSA_C) + "MBEDTLS_ECDSA_C", +#endif /* MBEDTLS_ECDSA_C */ +#if defined(MBEDTLS_ECJPAKE_C) + "MBEDTLS_ECJPAKE_C", +#endif /* MBEDTLS_ECJPAKE_C */ +#if defined(MBEDTLS_ECP_C) + "MBEDTLS_ECP_C", +#endif /* MBEDTLS_ECP_C */ +#if defined(MBEDTLS_ENTROPY_C) + "MBEDTLS_ENTROPY_C", +#endif /* MBEDTLS_ENTROPY_C */ +#if defined(MBEDTLS_ERROR_C) + "MBEDTLS_ERROR_C", +#endif /* MBEDTLS_ERROR_C */ +#if defined(MBEDTLS_GCM_C) + "MBEDTLS_GCM_C", +#endif /* MBEDTLS_GCM_C */ +#if defined(MBEDTLS_HKDF_C) + "MBEDTLS_HKDF_C", +#endif /* MBEDTLS_HKDF_C */ +#if defined(MBEDTLS_HMAC_DRBG_C) + "MBEDTLS_HMAC_DRBG_C", +#endif /* MBEDTLS_HMAC_DRBG_C */ +#if defined(MBEDTLS_LMS_C) + "MBEDTLS_LMS_C", +#endif /* MBEDTLS_LMS_C */ +#if defined(MBEDTLS_LMS_PRIVATE) + "MBEDTLS_LMS_PRIVATE", +#endif /* MBEDTLS_LMS_PRIVATE */ +#if defined(MBEDTLS_NIST_KW_C) + "MBEDTLS_NIST_KW_C", +#endif /* MBEDTLS_NIST_KW_C */ +#if defined(MBEDTLS_MD_C) + "MBEDTLS_MD_C", +#endif /* MBEDTLS_MD_C */ +#if defined(MBEDTLS_MD5_C) + "MBEDTLS_MD5_C", +#endif /* MBEDTLS_MD5_C */ +#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) + "MBEDTLS_MEMORY_BUFFER_ALLOC_C", +#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */ +#if defined(MBEDTLS_NET_C) + "MBEDTLS_NET_C", +#endif /* MBEDTLS_NET_C */ +#if defined(MBEDTLS_OID_C) + "MBEDTLS_OID_C", +#endif /* MBEDTLS_OID_C */ +#if defined(MBEDTLS_PADLOCK_C) + "MBEDTLS_PADLOCK_C", +#endif /* MBEDTLS_PADLOCK_C */ +#if defined(MBEDTLS_PEM_PARSE_C) + "MBEDTLS_PEM_PARSE_C", +#endif /* MBEDTLS_PEM_PARSE_C */ +#if defined(MBEDTLS_PEM_WRITE_C) + "MBEDTLS_PEM_WRITE_C", +#endif /* MBEDTLS_PEM_WRITE_C */ +#if defined(MBEDTLS_PK_C) + "MBEDTLS_PK_C", +#endif /* MBEDTLS_PK_C */ +#if defined(MBEDTLS_PK_PARSE_C) + "MBEDTLS_PK_PARSE_C", +#endif /* MBEDTLS_PK_PARSE_C */ +#if defined(MBEDTLS_PK_WRITE_C) + "MBEDTLS_PK_WRITE_C", +#endif /* MBEDTLS_PK_WRITE_C */ +#if defined(MBEDTLS_PKCS5_C) + "MBEDTLS_PKCS5_C", +#endif /* MBEDTLS_PKCS5_C */ +#if defined(MBEDTLS_PKCS7_C) + "MBEDTLS_PKCS7_C", +#endif /* MBEDTLS_PKCS7_C */ +#if defined(MBEDTLS_PKCS12_C) + "MBEDTLS_PKCS12_C", +#endif /* MBEDTLS_PKCS12_C */ +#if defined(MBEDTLS_PLATFORM_C) + "MBEDTLS_PLATFORM_C", +#endif /* MBEDTLS_PLATFORM_C */ +#if defined(MBEDTLS_POLY1305_C) + "MBEDTLS_POLY1305_C", +#endif /* MBEDTLS_POLY1305_C */ +#if defined(MBEDTLS_PSA_CRYPTO_C) + "MBEDTLS_PSA_CRYPTO_C", +#endif /* MBEDTLS_PSA_CRYPTO_C */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + "MBEDTLS_PSA_CRYPTO_SE_C", +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ +#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) + "MBEDTLS_PSA_CRYPTO_STORAGE_C", +#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ +#if defined(MBEDTLS_PSA_ITS_FILE_C) + "MBEDTLS_PSA_ITS_FILE_C", +#endif /* MBEDTLS_PSA_ITS_FILE_C */ +#if defined(MBEDTLS_RIPEMD160_C) + "MBEDTLS_RIPEMD160_C", +#endif /* MBEDTLS_RIPEMD160_C */ +#if defined(MBEDTLS_RSA_C) + "MBEDTLS_RSA_C", +#endif /* MBEDTLS_RSA_C */ +#if defined(MBEDTLS_SHA1_C) + "MBEDTLS_SHA1_C", +#endif /* MBEDTLS_SHA1_C */ +#if defined(MBEDTLS_SHA224_C) + "MBEDTLS_SHA224_C", +#endif /* MBEDTLS_SHA224_C */ +#if defined(MBEDTLS_SHA256_C) + "MBEDTLS_SHA256_C", +#endif /* MBEDTLS_SHA256_C */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) + "MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT", +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) + "MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY", +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SHA384_C) + "MBEDTLS_SHA384_C", +#endif /* MBEDTLS_SHA384_C */ +#if defined(MBEDTLS_SHA512_C) + "MBEDTLS_SHA512_C", +#endif /* MBEDTLS_SHA512_C */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) + "MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT", +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY) + "MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY", +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SSL_CACHE_C) + "MBEDTLS_SSL_CACHE_C", +#endif /* MBEDTLS_SSL_CACHE_C */ +#if defined(MBEDTLS_SSL_COOKIE_C) + "MBEDTLS_SSL_COOKIE_C", +#endif /* MBEDTLS_SSL_COOKIE_C */ +#if defined(MBEDTLS_SSL_TICKET_C) + "MBEDTLS_SSL_TICKET_C", +#endif /* MBEDTLS_SSL_TICKET_C */ +#if defined(MBEDTLS_SSL_CLI_C) + "MBEDTLS_SSL_CLI_C", +#endif /* MBEDTLS_SSL_CLI_C */ +#if defined(MBEDTLS_SSL_SRV_C) + "MBEDTLS_SSL_SRV_C", +#endif /* MBEDTLS_SSL_SRV_C */ +#if defined(MBEDTLS_SSL_TLS_C) + "MBEDTLS_SSL_TLS_C", +#endif /* MBEDTLS_SSL_TLS_C */ +#if defined(MBEDTLS_THREADING_C) + "MBEDTLS_THREADING_C", +#endif /* MBEDTLS_THREADING_C */ +#if defined(MBEDTLS_TIMING_C) + "MBEDTLS_TIMING_C", +#endif /* MBEDTLS_TIMING_C */ +#if defined(MBEDTLS_VERSION_C) + "MBEDTLS_VERSION_C", +#endif /* MBEDTLS_VERSION_C */ +#if defined(MBEDTLS_X509_USE_C) + "MBEDTLS_X509_USE_C", +#endif /* MBEDTLS_X509_USE_C */ +#if defined(MBEDTLS_X509_CRT_PARSE_C) + "MBEDTLS_X509_CRT_PARSE_C", +#endif /* MBEDTLS_X509_CRT_PARSE_C */ +#if defined(MBEDTLS_X509_CRL_PARSE_C) + "MBEDTLS_X509_CRL_PARSE_C", +#endif /* MBEDTLS_X509_CRL_PARSE_C */ +#if defined(MBEDTLS_X509_CSR_PARSE_C) + "MBEDTLS_X509_CSR_PARSE_C", +#endif /* MBEDTLS_X509_CSR_PARSE_C */ +#if defined(MBEDTLS_X509_CREATE_C) + "MBEDTLS_X509_CREATE_C", +#endif /* MBEDTLS_X509_CREATE_C */ +#if defined(MBEDTLS_X509_CRT_WRITE_C) + "MBEDTLS_X509_CRT_WRITE_C", +#endif /* MBEDTLS_X509_CRT_WRITE_C */ +#if defined(MBEDTLS_X509_CSR_WRITE_C) + "MBEDTLS_X509_CSR_WRITE_C", +#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; + } + + while (*idx != NULL) { + if (!strcmp(*idx, feature)) { + return 0; + } + idx++; + } + return -1; +} + +#endif /* MBEDTLS_VERSION_C */ diff --git a/build/esp-idf/mbedtls/x509_crt_bundle b/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..839012f 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..030ea11 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..df90047 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..fd685b8 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..f882be9 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..08b067d --- /dev/null +++ b/build/esp-idf/mqtt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..bb494c7 Binary files /dev/null and b/build/esp-idf/mqtt/libmqtt.a differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj new file mode 100644 index 0000000..2580a32 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj new file mode 100644 index 0000000..0cdaa82 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj new file mode 100644 index 0000000..f8d7aab Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj new file mode 100644 index 0000000..6a37b62 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj new file mode 100644 index 0000000..15eee16 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj new file mode 100644 index 0000000..e2e0540 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj new file mode 100644 index 0000000..85e1f57 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj new file mode 100644 index 0000000..a68f657 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj new file mode 100644 index 0000000..ee6f932 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj new file mode 100644 index 0000000..ef3f8cf Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj new file mode 100644 index 0000000..86d1e9c Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj new file mode 100644 index 0000000..90342da Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj new file mode 100644 index 0000000..17d77de Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj new file mode 100644 index 0000000..5518c16 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj new file mode 100644 index 0000000..2845606 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj new file mode 100644 index 0000000..80f1c92 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/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..883bd3f --- /dev/null +++ b/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/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..4ed46a4 Binary files /dev/null and b/build/esp-idf/newlib/libnewlib.a differ diff --git a/build/esp-idf/newlib/port/cmake_install.cmake b/build/esp-idf/newlib/port/cmake_install.cmake new file mode 100644 index 0000000..fd3d49b --- /dev/null +++ b/build/esp-idf/newlib/port/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..198bf0f 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_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..43230e9 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_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..888c8b3 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..5282b66 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..cf39c6d 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..532fe91 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..32c619a 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..ad3a3d9 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..ae53e82 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..1346594 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_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..f408573 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..7099991 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..d1c595d --- /dev/null +++ b/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..9db297b Binary files /dev/null and b/build/esp-idf/nvs_flash/libnvs_flash.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..d5d2fa1 --- /dev/null +++ b/build/esp-idf/openthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..2d36af0 --- /dev/null +++ b/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..ecfd9ba --- /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 2MB +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj new file mode 100644 index 0000000..4b4d474 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..0ec9894 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..ef14e87 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..37828ec --- /dev/null +++ b/build/esp-idf/perfmon/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..0105d11 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..9fa31b5 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..a562bab --- /dev/null +++ b/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..efa4d6c 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..a61359b 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..07a4757 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..751752b 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..86126c6 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..1465930 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..5ff7914 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..2298d76 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..532a5f0 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..e4c61aa 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..3712061 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..c6c0f00 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..c0ae14f 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..3219378 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..f3287ba --- /dev/null +++ b/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..3dc12f4 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..a33c798 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..87ec5fd 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..18d5dbd 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..8402cdd 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/cmake_install.cmake b/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..d3253d7 --- /dev/null +++ b/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..e687a86 Binary files /dev/null and b/build/esp-idf/pthread/libpthread.a 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..1417e7e 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..e396ea7 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..13f1067 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..4027e1d 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..7e2e956 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..6081c22 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..a62f911 --- /dev/null +++ b/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..3182a16 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..3691957 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..983e8c2 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/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..8befd69 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..a282007 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..de9a504 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..b3f096d 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..bf952de 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..eae7225 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..bba9087 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..b31ba68 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..000edff 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/pcnt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj new file mode 100644 index 0000000..6817a79 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/rmt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj new file mode 100644 index 0000000..9a7842c 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..9048bde 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/sdio_slave_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj new file mode 100644 index 0000000..0c4854b Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_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..270951d 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..39f8832 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..f5f0207 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..eab94c5 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..2ede7ad 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..1c488cb 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/uart_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj new file mode 100644 index 0000000..c326665 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_otg_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj new file mode 100644 index 0000000..9e381c0 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj new file mode 100644 index 0000000..64ba124 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_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..875b489 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..b7f1465 --- /dev/null +++ b/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/esp32s3/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/soc/esp32s3/cmake_install.cmake b/build/esp-idf/soc/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..723df68 --- /dev/null +++ b/build/esp-idf/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..3bfce22 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..8041f9f 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/flash_ops_esp32s3.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/flash_ops_esp32s3.c.obj new file mode 100644 index 0000000..856b9ae Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/flash_ops_esp32s3.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.c.obj new file mode 100644 index 0000000..1ba160f Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.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..111bef5 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..3ae6a7d 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..8296cb5 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..5ca69ce 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..04f4e5f 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..70db2eb 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..c0b0959 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..aa2bfd7 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..a44419c 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..626d2f1 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..fd1df9d 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..5f88923 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..c0ec835 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..3d290b8 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..4583911 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..1723a15 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..ceaed85 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..c7b01e8 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_timing_tuning.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.c.obj new file mode 100644 index 0000000..9ea22bf Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.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..6415e5b --- /dev/null +++ b/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..cf5f051 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..2a8aa16 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..d9d3fcc 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..06d8232 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..bf78452 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..4cfa624 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..f234266 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..a78d92a 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..1d05d76 --- /dev/null +++ b/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..e53c51a 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..93dfa1e 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..81fa3da 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_ssl.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj new file mode 100644 index 0000000..4135bb1 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..1033257 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..9981595 --- /dev/null +++ b/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..d60ed0b 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..032dd89 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..b463599 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..797379c 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..0fcdb60 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..0dbc847 --- /dev/null +++ b/build/esp-idf/touch_element/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..8631e9e Binary files /dev/null and b/build/esp-idf/touch_element/libtouch_element.a differ diff --git a/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj new file mode 100644 index 0000000..216767d Binary files /dev/null and b/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj 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..e41d90f --- /dev/null +++ b/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/ulp/libulp.a b/build/esp-idf/ulp/libulp.a new file mode 100644 index 0000000..5dd7949 Binary files /dev/null and b/build/esp-idf/ulp/libulp.a differ 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..16f7adc 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..7dad108 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_port_esp32.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..a189b40 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..2c1c490 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..4b91c4a 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..0381059 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..f0f7078 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..b1050e6 --- /dev/null +++ b/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..9ded9db Binary files /dev/null and b/build/esp-idf/unity/libunity.a 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..b7a6636 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..d1e9884 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..63d0f0a 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..6d4a458 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..ab2e232 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..9f4e3ef 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..2b16ffb 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..3ad7862 --- /dev/null +++ b/build/esp-idf/usb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..2042c5f Binary files /dev/null and b/build/esp-idf/usb/libusb.a 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..4989147 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_console.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj new file mode 100644 index 0000000..44dd463 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.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..c66b649 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..8b623e0 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/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj new file mode 100644 index 0000000..d19930e Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj new file mode 100644 index 0000000..b75ceab Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.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..6346dd1 --- /dev/null +++ b/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..c20e371 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..6321ded 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..e8bc5c4 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..d7eb934 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..d6392e2 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..5ad01e3 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..9ba8b91 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..88edf58 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..d1c3482 --- /dev/null +++ b/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..1604643 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..999c57e 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..7ca1ae7 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_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..85d5d67 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..79ced82 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..6147883 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..3470eb6 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..2b12368 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..fb6df26 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_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..a0d614c 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..d9bc44b --- /dev/null +++ b/build/esp-idf/wifi_provisioning/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..45740d4 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..a34caeb 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..b234fb2 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..2c5520e 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..d440fa6 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/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..8837f3e 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..d5018b2 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_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..383212d 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..c05a38d 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.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj new file mode 100644 index 0000000..01d2d0a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.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..9b97a8a 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..283d0e9 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..153a572 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..db97534 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..636f303 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..0df6064 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..e6dc8d9 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/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..88f532a 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/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..b269ae8 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..c3eaa65 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..02c4cb6 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..0c40f14 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..64d3021 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..c58f08b 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/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..b7d6944 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..31af666 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..c9ee23f 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-omac1.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj new file mode 100644 index 0000000..4a02fd3 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.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..9134b82 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..fea39ca 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..784145b 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..bcd24a4 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..aa07be6 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..bd1b5ec 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..ea05e8f 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..989612e 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..b81ec5b 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..d64c184 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..ec09cb9 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..ac54fdd 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..abab240 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..9fef119 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..ac62bcd 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..963ab46 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..c740f0a 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..13cdf40 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..7fb9509 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..c2b9681 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..441d0b8 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..f4b9d7f 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..c27f16c 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..cad08b3 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..d6b58cb 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..4da0224 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..01d502c 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..eb8d6d9 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..23a651a 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..e69b2cb 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..3bc9ca3 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..5aaca68 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..804608e 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..b7f8707 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..9205620 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..b93fb27 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..e15f831 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..2bfdd43 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..d6e89fc 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..46f58ee 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..06edbe5 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..1e48737 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..a28f9c8 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..d8897c7 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..fecbb51 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..47f770d 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..2a6107d 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..c03c405 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..94c6af7 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..dd36df4 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..b5e7108 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..52f6001 --- /dev/null +++ b/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..93ea6fe 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..fa4b5e1 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..416e566 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_intr.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj new file mode 100644 index 0000000..8fca3f0 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..2a6b440 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/cmake_install.cmake b/build/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..0359ead --- /dev/null +++ b/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/wifi_station") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-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..cd79677 Binary files /dev/null and b/build/esp-idf/xtensa/libxtensa.a differ diff --git a/build/flash_app_args b/build/flash_app_args new file mode 100644 index 0000000..f83ac13 --- /dev/null +++ b/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 wifi_station.bin diff --git a/build/flash_args b/build/flash_args new file mode 100644 index 0000000..09a17e7 --- /dev/null +++ b/build/flash_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 wifi_station.bin +0x8000 partition_table/partition-table.bin diff --git a/build/flash_args.in b/build/flash_args.in new file mode 100644 index 0000000..880728a --- /dev/null +++ b/build/flash_args.in @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 $.bin +0x8000 partition_table/partition-table.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..7b1a5bd --- /dev/null +++ b/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin diff --git a/build/flash_project_args b/build/flash_project_args new file mode 100644 index 0000000..09a17e7 --- /dev/null +++ b/build/flash_project_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 wifi_station.bin +0x8000 partition_table/partition-table.bin diff --git a/build/flasher_args.json b/build/flasher_args.json new file mode 100644 index 0000000..0296aa9 --- /dev/null +++ b/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "wifi_station.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "wifi_station.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32s3" + } +} diff --git a/build/kconfigs.in b/build/kconfigs.in new file mode 100644 index 0000000..bc136fc --- /dev/null +++ b/build/kconfigs.in @@ -0,0 +1,50 @@ +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/Kconfig" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/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..e7b4536 --- /dev/null +++ b/build/kconfigs_projbuild.in @@ -0,0 +1,6 @@ +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/Kconfig.projbuild" +source "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/Kconfig.projbuild" \ No newline at end of file diff --git a/build/ldgen_libraries b/build/ldgen_libraries new file mode 100644 index 0000000..82a64f6 --- /dev/null +++ b/build/ldgen_libraries @@ -0,0 +1,63 @@ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/libxtensa.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/libefuse.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/libdriver.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/libesp_pm.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/libmbedtls.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/libesp_app_format.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/libbootloader_support.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/libesp_partition.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/libapp_update.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/libspi_flash.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/libpthread.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/libesp_system.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/libesp_rom.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/libhal.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/liblog.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/libheap.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/libsoc.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/libesp_hw_support.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/libfreertos.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/libnewlib.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/libcxx.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/libesp_common.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/libesp_timer.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/libapp_trace.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/libesp_event.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/libnvs_flash.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/libesp_phy.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/libvfs.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/liblwip.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/libesp_netif.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/libesp_wifi.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/libunity.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/libcmock.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/libconsole.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/libhttp_parser.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/libesp-tls.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/libesp_adc.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/libesp_eth.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/libesp_hid.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/libtcp_transport.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/libesp_http_client.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/libesp_http_server.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/libesp_https_ota.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/libesp_lcd.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/libprotobuf-c.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/libprotocomm.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/libespcoredump.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/libwear_levelling.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/libsdmmc.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/libfatfs.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/libjson.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/libmqtt.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/libperfmon.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/libspiffs.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/libtouch_element.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/libulp.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/libusb.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/libwifi_provisioning.a +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/libmain.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in new file mode 100644 index 0000000..9c76653 --- /dev/null +++ b/build/ldgen_libraries.in @@ -0,0 +1,63 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/build/log/idf_py_stderr_output_10164 b/build/log/idf_py_stderr_output_10164 new file mode 100644 index 0000000..129d16c --- /dev/null +++ b/build/log/idf_py_stderr_output_10164 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_11556 b/build/log/idf_py_stderr_output_11556 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_11556 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_13024 b/build/log/idf_py_stderr_output_13024 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_13024 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_13028 b/build/log/idf_py_stderr_output_13028 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_13204 b/build/log/idf_py_stderr_output_13204 new file mode 100644 index 0000000..3d3324c --- /dev/null +++ b/build/log/idf_py_stderr_output_13204 @@ -0,0 +1,16 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +Exception in thread Thread-2 (_run_outer): +Traceback (most recent call last): + File "threading.py", line 1038, in _bootstrap_inner + File "threading.py", line 975, in run + File "E:\Espressif\frameworks\esp-idf-v5.0.4\tools\idf_monitor_base\stoppable_thread.py", line 47, in _run_outer + self.run() + File "E:\Espressif\frameworks\esp-idf-v5.0.4\tools\idf_monitor_base\serial_reader.py", line 52, in run + self.serial.open() + File "E:\Espressif\python_env\idf5.0_py3.11_env\Lib\site-packages\serial\serialwin32.py", line 64, in open + raise SerialException("could not open port {!r}: {!r}".format(self.portstr, ctypes.WinError())) +serial.serialutil.SerialException: could not open port '\\\\.\\COM6': FileNotFoundError(2, '系统找不到指定的文件。', None, 2) + diff --git a/build/log/idf_py_stderr_output_1356 b/build/log/idf_py_stderr_output_1356 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_13852 b/build/log/idf_py_stderr_output_13852 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_14300 b/build/log/idf_py_stderr_output_14300 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_14324 b/build/log/idf_py_stderr_output_14324 new file mode 100644 index 0000000..b789b41 --- /dev/null +++ b/build/log/idf_py_stderr_output_14324 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_14624 b/build/log/idf_py_stderr_output_14624 new file mode 100644 index 0000000..7e6e9c0 --- /dev/null +++ b/build/log/idf_py_stderr_output_14624 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +ClearCommError failed (PermissionError(13, '设备不识别此命令。', None, 22)) +Waiting for the device to reconnect....... +ClearCommError failed (PermissionError(13, '设备不识别此命令。', None, 22)) +Waiting for the device to reconnect........................ + diff --git a/build/log/idf_py_stderr_output_14660 b/build/log/idf_py_stderr_output_14660 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_14664 b/build/log/idf_py_stderr_output_14664 new file mode 100644 index 0000000..428841e --- /dev/null +++ b/build/log/idf_py_stderr_output_14664 @@ -0,0 +1,6 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +To exit from IDF monitor please use "Ctrl+]". Alternatively, you can use Ctrl-T Ctrl-X to exit. + diff --git a/build/log/idf_py_stderr_output_14896 b/build/log/idf_py_stderr_output_14896 new file mode 100644 index 0000000..dfb449d --- /dev/null +++ b/build/log/idf_py_stderr_output_14896 @@ -0,0 +1,7 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +ClearCommError failed (PermissionError(13, '设备不识别此命令。', None, 22)) +Waiting for the device to reconnect.... + diff --git a/build/log/idf_py_stderr_output_14996 b/build/log/idf_py_stderr_output_14996 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_14996 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_15008 b/build/log/idf_py_stderr_output_15008 new file mode 100644 index 0000000..ef56aa0 --- /dev/null +++ b/build/log/idf_py_stderr_output_15008 @@ -0,0 +1,11 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037b97a: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + +ClearCommError failed (PermissionError(13, '设备不识别此命令。', None, 22)) +Waiting for the device to reconnect............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. + diff --git a/build/log/idf_py_stderr_output_15076 b/build/log/idf_py_stderr_output_15076 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_15104 b/build/log/idf_py_stderr_output_15104 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_15128 b/build/log/idf_py_stderr_output_15128 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_15128 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stderr_output_15308 b/build/log/idf_py_stderr_output_15308 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_15816 b/build/log/idf_py_stderr_output_15816 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_15816 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_15876 b/build/log/idf_py_stderr_output_15876 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_16240 b/build/log/idf_py_stderr_output_16240 new file mode 100644 index 0000000..d1bca29 --- /dev/null +++ b/build/log/idf_py_stderr_output_16240 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_16604 b/build/log/idf_py_stderr_output_16604 new file mode 100644 index 0000000..b789b41 --- /dev/null +++ b/build/log/idf_py_stderr_output_16604 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_16732 b/build/log/idf_py_stderr_output_16732 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_16912 b/build/log/idf_py_stderr_output_16912 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_16912 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stderr_output_16972 b/build/log/idf_py_stderr_output_16972 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_17236 b/build/log/idf_py_stderr_output_17236 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_17276 b/build/log/idf_py_stderr_output_17276 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_17276 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stderr_output_17480 b/build/log/idf_py_stderr_output_17480 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_17680 b/build/log/idf_py_stderr_output_17680 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_17768 b/build/log/idf_py_stderr_output_17768 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_17856 b/build/log/idf_py_stderr_output_17856 new file mode 100644 index 0000000..d1bca29 --- /dev/null +++ b/build/log/idf_py_stderr_output_17856 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_18004 b/build/log/idf_py_stderr_output_18004 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_18004 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stderr_output_18224 b/build/log/idf_py_stderr_output_18224 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_18224 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_18516 b/build/log/idf_py_stderr_output_18516 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_18624 b/build/log/idf_py_stderr_output_18624 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_18760 b/build/log/idf_py_stderr_output_18760 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_18796 b/build/log/idf_py_stderr_output_18796 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_18828 b/build/log/idf_py_stderr_output_18828 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_19028 b/build/log/idf_py_stderr_output_19028 new file mode 100644 index 0000000..d1bca29 --- /dev/null +++ b/build/log/idf_py_stderr_output_19028 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_19236 b/build/log/idf_py_stderr_output_19236 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_19280 b/build/log/idf_py_stderr_output_19280 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_19568 b/build/log/idf_py_stderr_output_19568 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_19688 b/build/log/idf_py_stderr_output_19688 new file mode 100644 index 0000000..d1bca29 --- /dev/null +++ b/build/log/idf_py_stderr_output_19688 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_20056 b/build/log/idf_py_stderr_output_20056 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_20076 b/build/log/idf_py_stderr_output_20076 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_20080 b/build/log/idf_py_stderr_output_20080 new file mode 100644 index 0000000..82ea29e --- /dev/null +++ b/build/log/idf_py_stderr_output_20080 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_20192 b/build/log/idf_py_stderr_output_20192 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_20236 b/build/log/idf_py_stderr_output_20236 new file mode 100644 index 0000000..b789b41 --- /dev/null +++ b/build/log/idf_py_stderr_output_20236 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_20560 b/build/log/idf_py_stderr_output_20560 new file mode 100644 index 0000000..129d16c --- /dev/null +++ b/build/log/idf_py_stderr_output_20560 @@ -0,0 +1,5 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- idf_monitor on \\.\COM6 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- + diff --git a/build/log/idf_py_stderr_output_20756 b/build/log/idf_py_stderr_output_20756 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_20792 b/build/log/idf_py_stderr_output_20792 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_21068 b/build/log/idf_py_stderr_output_21068 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_21176 b/build/log/idf_py_stderr_output_21176 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_2336 b/build/log/idf_py_stderr_output_2336 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_2416 b/build/log/idf_py_stderr_output_2416 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_288 b/build/log/idf_py_stderr_output_288 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_5032 b/build/log/idf_py_stderr_output_5032 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_6156 b/build/log/idf_py_stderr_output_6156 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_6300 b/build/log/idf_py_stderr_output_6300 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_6732 b/build/log/idf_py_stderr_output_6732 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stderr_output_8900 b/build/log/idf_py_stderr_output_8900 new file mode 100644 index 0000000..b789b41 --- /dev/null +++ b/build/log/idf_py_stderr_output_8900 @@ -0,0 +1,9 @@ +--- WARNING: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM5 instead... +--- idf_monitor on \\.\COM5 115200 --- +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- +0x4037ba4e: esp_cpu_wait_for_intr at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c:110 + +0x40375370: call_start_cpu1 at E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c:143 + + diff --git a/build/log/idf_py_stderr_output_9128 b/build/log/idf_py_stderr_output_9128 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_9128 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stderr_output_9720 b/build/log/idf_py_stderr_output_9720 new file mode 100644 index 0000000..af6b2ac --- /dev/null +++ b/build/log/idf_py_stderr_output_9720 @@ -0,0 +1,6 @@ +CMake Error at run_serial_tool.cmake:58 (message): + + E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 + failed + + diff --git a/build/log/idf_py_stdout_output_10164 b/build/log/idf_py_stdout_output_10164 new file mode 100644 index 0000000..1a353c1 --- /dev/null +++ b/build/log/idf_py_stdout_output_10164 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a79 +waiting for download diff --git a/build/log/idf_py_stdout_output_11556 b/build/log/idf_py_stdout_output_11556 new file mode 100644 index 0000000..1a353c1 --- /dev/null +++ b/build/log/idf_py_stdout_output_11556 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a79 +waiting for download diff --git a/build/log/idf_py_stdout_output_13024 b/build/log/idf_py_stdout_output_13024 new file mode 100644 index 0000000..b939d4a --- /dev/null +++ b/build/log/idf_py_stdout_output_13024 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a76 +waiting for download diff --git a/build/log/idf_py_stdout_output_13028 b/build/log/idf_py_stdout_output_13028 new file mode 100644 index 0000000..68bf4ef --- /dev/null +++ b/build/log/idf_py_stdout_output_13028 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a70 bytes. Smallest app partition is 0x100000 bytes. 0x4d590 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 434.3 kbit/s)... +Hash of data verified. +Compressed 731760 bytes to 462205... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd5a... (6 %) +Writing at 0x00026289... (10 %) +Writing at 0x0002b793... (13 %) +Writing at 0x00035c1c... (17 %) +Writing at 0x0003b9d0... (20 %) +Writing at 0x00041534... (24 %) +Writing at 0x000476a6... (27 %) +Writing at 0x0004dc48... (31 %) +Writing at 0x00053601... (34 %) +Writing at 0x00058c24... (37 %) +Writing at 0x0005e46c... (41 %) +Writing at 0x00063d7e... (44 %) +Writing at 0x0006991a... (48 %) +Writing at 0x0006f517... (51 %) +Writing at 0x000743ab... (55 %) +Writing at 0x00079457... (58 %) +Writing at 0x0007e4c5... (62 %) +Writing at 0x000837b4... (65 %) +Writing at 0x00088c9d... (68 %) +Writing at 0x0008e72f... (72 %) +Writing at 0x00093eda... (75 %) +Writing at 0x0009984a... (79 %) +Writing at 0x0009f894... (82 %) +Writing at 0x000a50bd... (86 %) +Writing at 0x000aae3f... (89 %) +Writing at 0x000b4e39... (93 %) +Writing at 0x000bb8c1... (96 %) +Writing at 0x000c1194... (100 %) +Wrote 731760 bytes (462205 compressed) at 0x00010000 in 7.8 seconds (effective 752.4 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 472.6 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_13204 b/build/log/idf_py_stdout_output_13204 new file mode 100644 index 0000000..e69de29 diff --git a/build/log/idf_py_stdout_output_1356 b/build/log/idf_py_stdout_output_1356 new file mode 100644 index 0000000..0853c4d --- /dev/null +++ b/build/log/idf_py_stdout_output_1356 @@ -0,0 +1,5 @@ +[1/4] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b60 bytes. Smallest app partition is 0x100000 bytes. 0x4d4a0 bytes (30%) free. +[2/4] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. diff --git a/build/log/idf_py_stdout_output_13852 b/build/log/idf_py_stdout_output_13852 new file mode 100644 index 0000000..4fe17dc --- /dev/null +++ b/build/log/idf_py_stdout_output_13852 @@ -0,0 +1,32 @@ +[1/10] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/8] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c: In function 'ModbusSlaveProcess': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:144:11: warning: unused variable 'tlv_len' [-Wunused-variable] + 144 | uint8_t tlv_len = 0; + | ^~~~~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:142:12: warning: unused variable 'pVar' [-Wunused-variable] + 142 | uint8_t *pVar; + | ^~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:138:12: warning: unused variable 'temp_cnt' [-Wunused-variable] + 138 | uint16_t temp_cnt; + | ^~~~~~~~ +[3/8] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[4/8] Linking C static library esp-idf\main\libmain.a +[5/8] Generating ld/sections.ld +[6/8] Linking CXX executable wifi_station.elf +[7/8] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[8/8] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2ba0 bytes. Smallest app partition is 0x100000 bytes. 0x4d460 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_14300 b/build/log/idf_py_stdout_output_14300 new file mode 100644 index 0000000..5d603cb --- /dev/null +++ b/build/log/idf_py_stdout_output_14300 @@ -0,0 +1,21 @@ +[1/9] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[2/9] Linking C static library esp-idf\main\libmain.a +[3/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2bb0 bytes. Smallest app partition is 0x100000 bytes. 0x4d450 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_14324 b/build/log/idf_py_stdout_output_14324 new file mode 100644 index 0000000..862d76c --- /dev/null +++ b/build/log/idf_py_stdout_output_14324 @@ -0,0 +1,8284 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21570h (136560) map +I (121) esp_image: segment 1: paddr=00031598 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353a0 vaddr=40374000 size=0ac78h ( 44152) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ad80h (503168) map +I (227) esp_image: segment 4: paddr=000bada8 vaddr=4037ec78 size=07c9ch ( 31900) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (266) cpu_start: Pro cpu start user code +I (266) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: f76bde08b89fdf9d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (268) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42F0 len 00045420 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (271) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (273) app_start: Starting scheduler on CPU1 +I (273) main_task: Started on CPU0 +I (283) main_task: Calling app_main() +I (303) wifi station: ESP_WIFI_MODE_STA +I (303) pp: pp rom version: e7ae62f +I (303) net80211: net80211 rom version: e7ae62f +I (313) wifi:wifi driver task: 3fcae328, prio:23, stack:6656, core=0 +I (313) system_api: Base MAC address is not set +I (313) system_api: read default base MAC address from EFUSE +I (323) wifi:wifi firmware version: e2d0ad8 +I (323) wifi:wifi certification version: v7.0 +I (323) wifi:config NVS flash: enabled +I (323) wifi:config nano formating: disabled +I (323) wifi:Init data frame dynamic rx buffer num: 32 +I (323) wifi:Init management frame dynamic rx buffer num: 32 +I (323) wifi:Init management short buffer num: 32 +I (323) wifi:Init dynamic tx buffer num: 32 +I (323) wifi:Init static tx FG buffer num: 2 +I (323) wifi:Init static rx buffer size: 1600 +I (323) wifi:Init static rx buffer num: 10 +I (323) wifi:Init dynamic rx buffer num: 32 +I (323) wifi_init: rx ba win: 6 +I (323) wifi_init: tcpip mbox: 32 +I (323) wifi_init: udp mbox: 6 +I (323) wifi_init: tcp mbox: 6 +I (323) wifi_init: tcp tx win: 5744 +I (323) wifi_init: tcp rx win: 5744 +I (323) wifi_init: tcp mss: 1440 +I (323) wifi_init: WiFi IRAM OP enabled +I (323) wifi_init: WiFi RX IRAM OP enabled +I (333) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (363) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (363) wifi:enable tsf +I (373) wifi station: wifi_init_sta finished. +I (373) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (383) wifi:state: init -> auth (b0) +I (383) wifi:state: auth -> assoc (0) +I (393) wifi:state: assoc -> run (10) +I (423) wifi:connected with CMCC-xRSZ, aid = 134, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (423) wifi:security: WPA2-PSK, phy: bgn, rssi: -46 +I (423) wifi:pm start, type: 1 + +I (423) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (433) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (433) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (493) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1423) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1423) wifi station: got ip:192.168.1.156 +I (1423) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1423) modbus tcp: ModBusTCPSlave_init() +I (1423) bdc_control: Create DC motor +I (1423) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1423) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1423) bdc_control: Init pcnt driver to decode rotary signal +I (1423) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1423) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1423) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1423) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1423) bdc_control: Create PID control block +I (1423) bdc_control: Create a timer to do PID calculation periodically +I (1423) bdc_control: Enable motor and forward +I (1423) bdc_control: Start motor speed loop +I (4613) modbus tcp: accept assess +I (4793) modbus tcp: ModBusSlave_recv() +I (4793) modbus: ModbusSlaveProcess()--------------------------- +I (4793) modbus: check id... +I (4793) modbus: ok +I (4793) modbus: add: 0, length: 10 +I (4793) modbus: Read Holding Registers +I (4833) modbus tcp: ModBusSlave_recv() +I (4833) modbus: ModbusSlaveProcess()--------------------------- +I (4833) modbus: check id... +I (4833) modbus: ok +I (4833) modbus: add: 0, length: 10 +I (4833) modbus: Read Holding Registers +I (4993) modbus tcp: ModBusSlave_recv() +I (4993) modbus: ModbusSlaveProcess()--------------------------- +I (4993) modbus: check id... +I (4993) modbus: ok +I (4993) modbus: add: 0, length: 10 +I (4993) modbus: Read Holding Registers +I (5043) modbus tcp: ModBusSlave_recv() +I (5043) modbus: ModbusSlaveProcess()--------------------------- +I (5043) modbus: check id... +I (5043) modbus: ok +I (5043) modbus: add: 0, length: 10 +I (5043) modbus: Read Holding Registers +I (5203) modbus tcp: ModBusSlave_recv() +I (5203) modbus: ModbusSlaveProcess()--------------------------- +I (5203) modbus: check id... +I (5203) modbus: ok +I (5203) modbus: add: 0, length: 10 +I (5203) modbus: Read Holding Registers +I (5303) modbus tcp: ModBusSlave_recv() +I (5303) modbus: ModbusSlaveProcess()--------------------------- +I (5303) modbus: check id... +I (5303) modbus: ok +I (5303) modbus: add: 0, length: 10 +I (5303) modbus: Read Holding Registers +I (5373) modbus tcp: ModBusSlave_recv() +I (5373) modbus: ModbusSlaveProcess()--------------------------- +I (5373) modbus: check id... +I (5373) modbus: ok +I (5373) modbus: add: 0, length: 10 +I (5373) modbus: Read Holding Registers +I (5503) modbus tcp: ModBusSlave_recv() +I (5513) modbus: ModbusSlaveProcess()--------------------------- +I (5513) modbus: check id... +I (5513) modbus: ok +I (5513) modbus: add: 0, length: 10 +I (5513) modbus: Read Holding Registers +I (5593) modbus tcp: ModBusSlave_recv() +I (5593) modbus: ModbusSlaveProcess()--------------------------- +I (5593) modbus: check id... +I (5593) modbus: ok +I (5593) modbus: add: 0, length: 10 +I (5593) modbus: Read Holding Registers +I (5713) modbus tcp: ModBusSlave_recv() +I (5713) modbus: ModbusSlaveProcess()--------------------------- +I (5713) modbus: check id... +I (5713) modbus: ok +I (5713) modbus: add: 0, length: 10 +I (5713) modbus: Read Holding Registers +I (5913) modbus tcp: ModBusSlave_recv() +I (5913) modbus: ModbusSlaveProcess()--------------------------- +I (5913) modbus: check id... +I (5923) modbus: ok +I (5923) modbus: add: 0, length: 10 +I (5923) modbus: Read Holding Registers +I (5933) modbus tcp: ModBusSlave_recv() +I (5933) modbus: ModbusSlaveProcess()--------------------------- +I (5933) modbus: check id... +I (5933) modbus: ok +I (5933) modbus: add: 0, length: 10 +I (5933) modbus: Read Holding Registers +I (6123) modbus tcp: ModBusSlave_recv() +I (6123) modbus: ModbusSlaveProcess()--------------------------- +I (6123) modbus: check id... +I (6123) modbus: ok +I (6123) modbus: add: 0, length: 10 +I (6123) modbus: Read Holding Registers +I (6153) modbus tcp: ModBusSlave_recv() +I (6153) modbus: ModbusSlaveProcess()--------------------------- +I (6153) modbus: check id... +I (6153) modbus: ok +I (6153) modbus: add: 0, length: 10 +I (6153) modbus: Read Holding Registers +I (6323) modbus tcp: ModBusSlave_recv() +I (6323) modbus: ModbusSlaveProcess()--------------------------- +I (6323) modbus: check id... +I (6323) modbus: ok +I (6323) modbus: add: 0, length: 10 +I (6323) modbus: Read Holding Registers +I (6433) modbus tcp: ModBusSlave_recv() +I (6433) modbus: ModbusSlaveProcess()--------------------------- +I (6433) modbus: check id... +I (6433) modbus: ok +I (6433) modbus: add: 0, length: 10 +I (6433) modbus: Read Holding Registers +I (6533) modbus tcp: ModBusSlave_recv() +I (6533) modbus: ModbusSlaveProcess()--------------------------- +I (6533) modbus: check id... +I (6533) modbus: ok +I (6533) modbus: add: 0, length: 10 +I (6533) modbus: Read Holding Registers +I (6603) modbus tcp: ModBusSlave_recv() +I (6603) modbus: ModbusSlaveProcess()--------------------------- +I (6603) modbus: check id... +I (6603) modbus: ok +I (6603) modbus: add: 0, length: 10 +I (6603) modbus: Read Holding Registers +I (6743) modbus tcp: ModBusSlave_recv() +I (6743) modbus: ModbusSlaveProcess()--------------------------- +I (6743) modbus: check id... +I (6743) modbus: ok +I (6743) modbus: add: 0, length: 10 +I (6743) modbus: Read Holding Registers +I (6823) modbus tcp: ModBusSlave_recv() +I (6823) modbus: ModbusSlaveProcess()--------------------------- +I (6823) modbus: check id... +I (6823) modbus: ok +I (6823) modbus: add: 0, length: 10 +I (6823) modbus: Read Holding Registers +I (6943) modbus tcp: ModBusSlave_recv() +I (6943) modbus: ModbusSlaveProcess()--------------------------- +I (6943) modbus: check id... +I (6943) modbus: ok +I (6943) modbus: add: 0, length: 10 +I (6943) modbus: Read Holding Registers +I (7043) modbus tcp: ModBusSlave_recv() +I (7043) modbus: ModbusSlaveProcess()--------------------------- +I (7043) modbus: check id... +I (7043) modbus: ok +I (7043) modbus: add: 0, length: 10 +I (7043) modbus: Read Holding Registers +I (7153) modbus tcp: ModBusSlave_recv() +I (7153) modbus: ModbusSlaveProcess()--------------------------- +I (7153) modbus: check id... +I (7153) modbus: ok +I (7153) modbus: add: 0, length: 10 +I (7153) modbus: Read Holding Registers +I (7353) modbus tcp: ModBusSlave_recv() +I (7353) modbus: ModbusSlaveProcess()--------------------------- +I (7353) modbus: check id... +I (7353) modbus: ok +I (7353) modbus: add: 0, length: 10 +I (7353) modbus: Read Holding Registers +I (7373) modbus tcp: ModBusSlave_recv() +I (7373) modbus: ModbusSlaveProcess()--------------------------- +I (7373) modbus: check id... +I (7373) modbus: ok +I (7373) modbus: add: 0, length: 10 +I (7373) modbus: Read Holding Registers +I (7553) modbus tcp: ModBusSlave_recv() +I (7553) modbus: ModbusSlaveProcess()--------------------------- +I (7553) modbus: check id... +I (7553) modbus: ok +I (7553) modbus: add: 0, length: 10 +I (7553) modbus: Read Holding Registers +I (7593) modbus tcp: ModBusSlave_recv() +I (7593) modbus: ModbusSlaveProcess()--------------------------- +I (7593) modbus: check id... +I (7593) modbus: ok +I (7593) modbus: add: 0, length: 10 +I (7593) modbus: Read Holding Registers +I (7763) modbus tcp: ModBusSlave_recv() +I (7763) modbus: ModbusSlaveProcess()--------------------------- +I (7763) modbus: check id... +I (7763) modbus: ok +I (7763) modbus: add: 0, length: 10 +I (7763) modbus: Read Holding Registers +I (7813) modbus tcp: ModBusSlave_recv() +I (7813) modbus: ModbusSlaveProcess()--------------------------- +I (7813) modbus: check id... +I (7813) modbus: ok +I (7813) modbus: add: 0, length: 10 +I (7813) modbus: Read Holding Registers +I (7963) modbus tcp: ModBusSlave_recv() +I (7963) modbus: ModbusSlaveProcess()--------------------------- +I (7963) modbus: check id... +I (7963) modbus: ok +I (7963) modbus: add: 0, length: 10 +I (7963) modbus: Read Holding Registers +I (8033) modbus tcp: ModBusSlave_recv() +I (8033) modbus: ModbusSlaveProcess()--------------------------- +I (8033) modbus: check id... +I (8033) modbus: ok +I (8033) modbus: add: 0, length: 10 +I (8033) modbus: Read Holding Registers +I (8173) modbus tcp: ModBusSlave_recv() +I (8173) modbus: ModbusSlaveProcess()--------------------------- +I (8173) modbus: check id... +I (8173) modbus: ok +I (8173) modbus: add: 0, length: 10 +I (8173) modbus: Read Holding Registers +I (8253) modbus tcp: ModBusSlave_recv() +I (8253) modbus: ModbusSlaveProcess()--------------------------- +I (8253) modbus: check id... +I (8253) modbus: ok +I (8253) modbus: add: 0, length: 10 +I (8253) modbus: Read Holding Registers +I (8353) modbus tcp: ModBusSlave_recv() +I (8363) modbus: ModbusSlaveProcess()--------------------------- +I (8363) modbus: check id... +I (8363) modbus: ok +I (8363) modbus: add: 0, length: 10 +I (8363) modbus: Read Holding Registers +I (8473) modbus tcp: ModBusSlave_recv() +I (8473) modbus: ModbusSlaveProcess()--------------------------- +I (8473) modbus: check id... +I (8473) modbus: ok +I (8473) modbus: add: 0, length: 10 +I (8473) modbus: Read Holding Registers +I (8683) modbus tcp: ModBusSlave_recv() +I (8683) modbus: ModbusSlaveProcess()--------------------------- +I (8683) modbus: check id... +I (8683) modbus: ok +I (8683) modbus: add: 0, length: 10 +I (8683) modbus: Read Holding Registers +I (8703) modbus tcp: ModBusSlave_recv() +I (8703) modbus: ModbusSlaveProcess()--------------------------- +I (8703) modbus: check id... +I (8703) modbus: ok +I (8703) modbus: add: 0, length: 10 +I (8703) modbus: Read Holding Registers +I (8803) modbus tcp: ModBusSlave_recv() +I (8803) modbus: ModbusSlaveProcess()--------------------------- +I (8803) modbus: check id... +I (8803) modbus: ok +I (8803) modbus: add: 0, length: 10 +I (8803) modbus: Read Holding Registers +I (8993) modbus tcp: ModBusSlave_recv() +I (8993) modbus: ModbusSlaveProcess()--------------------------- +I (8993) modbus: check id... +I (8993) modbus: ok +I (8993) modbus: add: 0, length: 10 +I (8993) modbus: Read Holding Registers +I (9023) modbus tcp: ModBusSlave_recv() +I (9023) modbus: ModbusSlaveProcess()--------------------------- +I (9023) modbus: check id... +I (9023) modbus: ok +I (9023) modbus: add: 0, length: 10 +I (9023) modbus: Read Holding Registers +I (9193) modbus tcp: ModBusSlave_recv() +I (9193) modbus: ModbusSlaveProcess()--------------------------- +I (9193) modbus: check id... +I (9193) modbus: ok +I (9193) modbus: add: 0, length: 10 +I (9193) modbus: Read Holding Registers +I (9243) modbus tcp: ModBusSlave_recv() +I (9243) modbus: ModbusSlaveProcess()--------------------------- +I (9243) modbus: check id... +I (9243) modbus: ok +I (9243) modbus: add: 0, length: 10 +I (9243) modbus: Read Holding Registers +I (9403) modbus tcp: ModBusSlave_recv() +I (9403) modbus: ModbusSlaveProcess()--------------------------- +I (9403) modbus: check id... +I (9403) modbus: ok +I (9403) modbus: add: 0, length: 10 +I (9403) modbus: Read Holding Registers +I (9473) modbus tcp: ModBusSlave_recv() +I (9473) modbus: ModbusSlaveProcess()--------------------------- +I (9473) modbus: check id... +I (9473) modbus: ok +I (9473) modbus: add: 0, length: 10 +I (9473) modbus: Read Holding Registers +I (9603) modbus tcp: ModBusSlave_recv() +I (9603) modbus: ModbusSlaveProcess()--------------------------- +I (9603) modbus: check id... +I (9603) modbus: ok +I (9603) modbus: add: 0, length: 10 +I (9603) modbus: Read Holding Registers +I (9683) modbus tcp: ModBusSlave_recv() +I (9683) modbus: ModbusSlaveProcess()--------------------------- +I (9683) modbus: check id... +I (9683) modbus: ok +I (9683) modbus: add: 0, length: 10 +I (9683) modbus: Read Holding Registers +I (9803) modbus tcp: ModBusSlave_recv() +I (9803) modbus: ModbusSlaveProcess()--------------------------- +I (9803) modbus: check id... +I (9803) modbus: ok +I (9803) modbus: add: 0, length: 10 +I (9813) modbus: Read Holding Registers +I (9903) modbus tcp: ModBusSlave_recv() +I (9903) modbus: ModbusSlaveProcess()--------------------------- +I (9903) modbus: check id... +I (9903) modbus: ok +I (9903) modbus: add: 0, length: 10 +I (9903) modbus: Read Holding Registers +I (10013) modbus tcp: ModBusSlave_recv() +I (10013) modbus: ModbusSlaveProcess()--------------------------- +I (10013) modbus: check id... +I (10013) modbus: ok +I (10013) modbus: add: 0, length: 10 +I (10013) modbus: Read Holding Registers +I (10213) modbus tcp: ModBusSlave_recv() +I (10213) modbus: ModbusSlaveProcess()--------------------------- +I (10213) modbus: check id... +I (10213) modbus: ok +I (10213) modbus: add: 0, length: 10 +I (10213) modbus: Read Holding Registers +I (10253) modbus tcp: ModBusSlave_recv() +I (10253) modbus: ModbusSlaveProcess()--------------------------- +I (10253) modbus: check id... +I (10253) modbus: ok +I (10253) modbus: add: 0, length: 10 +I (10253) modbus: Read Holding Registers +I (10423) modbus tcp: ModBusSlave_recv() +I (10423) modbus: ModbusSlaveProcess()--------------------------- +I (10423) modbus: check id... +I (10423) modbus: ok +I (10423) modbus: add: 0, length: 10 +I (10423) modbus: Read Holding Registers +I (10453) modbus tcp: ModBusSlave_recv() +I (10453) modbus: ModbusSlaveProcess()--------------------------- +I (10453) modbus: check id... +I (10453) modbus: ok +I (10453) modbus: add: 0, length: 10 +I (10453) modbus: Read Holding Registers +I (10633) modbus tcp: ModBusSlave_recv() +I (10633) modbus: ModbusSlaveProcess()--------------------------- +I (10633) modbus: check id... +I (10633) modbus: ok +I (10633) modbus: add: 0, length: 10 +I (10633) modbus: Read Holding Registers +I (10733) modbus tcp: ModBusSlave_recv() +I (10733) modbus: ModbusSlaveProcess()--------------------------- +I (10733) modbus: check id... +I (10733) modbus: ok +I (10733) modbus: add: 0, length: 10 +I (10733) modbus: Read Holding Registers +I (10833) modbus tcp: ModBusSlave_recv() +I (10833) modbus: ModbusSlaveProcess()--------------------------- +I (10833) modbus: check id... +I (10833) modbus: ok +I (10833) modbus: add: 0, length: 10 +I (10833) modbus: Read Holding Registers +I (10923) modbus tcp: ModBusSlave_recv() +I (10923) modbus: ModbusSlaveProcess()--------------------------- +I (10923) modbus: check id... +I (10923) modbus: ok +I (10923) modbus: add: 0, length: 10 +I (10923) modbus: Read Holding Registers +I (11143) modbus tcp: ModBusSlave_recv() +I (11143) modbus: ModbusSlaveProcess()--------------------------- +I (11143) modbus: check id... +I (11143) modbus: ok +I (11143) modbus: add: 0, length: 10 +I (11143) modbus: Read Holding Registers +I (11163) modbus tcp: ModBusSlave_recv() +I (11163) modbus: ModbusSlaveProcess()--------------------------- +I (11163) modbus: check id... +I (11163) modbus: ok +I (11163) modbus: add: 0, length: 10 +I (11163) modbus: Read Holding Registers +I (11343) modbus tcp: ModBusSlave_recv() +I (11343) modbus: ModbusSlaveProcess()--------------------------- +I (11343) modbus: check id... +I (11343) modbus: ok +I (11343) modbus: add: 0, length: 10 +I (11343) modbus: Read Holding Registers +I (11383) modbus tcp: ModBusSlave_recv() +I (11383) modbus: ModbusSlaveProcess()--------------------------- +I (11383) modbus: check id... +I (11383) modbus: ok +I (11383) modbus: add: 0, length: 10 +I (11383) modbus: Read Holding Registers +I (11553) modbus tcp: ModBusSlave_recv() +I (11553) modbus: ModbusSlaveProcess()--------------------------- +I (11553) modbus: check id... +I (11553) modbus: ok +I (11553) modbus: add: 0, length: 10 +I (11553) modbus: Read Holding Registers +I (11653) modbus tcp: ModBusSlave_recv() +I (11653) modbus: ModbusSlaveProcess()--------------------------- +I (11653) modbus: check id... +I (11653) modbus: ok +I (11653) modbus: add: 0, length: 10 +I (11653) modbus: Read Holding Registers +I (11723) modbus tcp: ModBusSlave_recv() +I (11723) modbus: ModbusSlaveProcess()--------------------------- +I (11723) modbus: check id... +I (11723) modbus: ok +I (11723) modbus: add: 0, length: 10 +I (11723) modbus: Read Holding Registers +I (11853) modbus tcp: ModBusSlave_recv() +I (11853) modbus: ModbusSlaveProcess()--------------------------- +I (11853) modbus: check id... +I (11853) modbus: ok +I (11853) modbus: add: 0, length: 10 +I (11863) modbus: Read Holding Registers +I (11933) modbus tcp: ModBusSlave_recv() +I (11933) modbus: ModbusSlaveProcess()--------------------------- +I (11933) modbus: check id... +I (11933) modbus: ok +I (11933) modbus: add: 0, length: 10 +I (11933) modbus: Read Holding Registers +I (12063) modbus tcp: ModBusSlave_recv() +I (12063) modbus: ModbusSlaveProcess()--------------------------- +I (12063) modbus: check id... +I (12063) modbus: ok +I (12063) modbus: add: 0, length: 10 +I (12063) modbus: Read Holding Registers +I (12153) modbus tcp: ModBusSlave_recv() +I (12153) modbus: ModbusSlaveProcess()--------------------------- +I (12153) modbus: check id... +I (12153) modbus: ok +I (12153) modbus: add: 0, length: 10 +I (12153) modbus: Read Holding Registers +I (12263) modbus tcp: ModBusSlave_recv() +I (12263) modbus: ModbusSlaveProcess()--------------------------- +I (12263) modbus: check id... +I (12273) modbus: ok +I (12273) modbus: add: 0, length: 10 +I (12273) modbus: Read Holding Registers +I (12363) modbus tcp: ModBusSlave_recv() +I (12373) modbus: ModbusSlaveProcess()--------------------------- +I (12373) modbus: check id... +I (12373) modbus: ok +I (12373) modbus: add: 0, length: 10 +I (12373) modbus: Read Holding Registers +I (12473) modbus tcp: ModBusSlave_recv() +I (12473) modbus: ModbusSlaveProcess()--------------------------- +I (12473) modbus: check id... +I (12473) modbus: ok +I (12473) modbus: add: 0, length: 10 +I (12473) modbus: Read Holding Registers +I (12673) modbus tcp: ModBusSlave_recv() +I (12673) modbus: ModbusSlaveProcess()--------------------------- +I (12673) modbus: check id... +I (12673) modbus: ok +I (12673) modbus: add: 0, length: 10 +I (12673) modbus: Read Holding Registers +I (12693) modbus tcp: ModBusSlave_recv() +I (12693) modbus: ModbusSlaveProcess()--------------------------- +I (12693) modbus: check id... +I (12693) modbus: ok +I (12693) modbus: add: 0, length: 10 +I (12693) modbus: Read Holding Registers +I (12803) modbus tcp: ModBusSlave_recv() +I (12803) modbus: ModbusSlaveProcess()--------------------------- +I (12803) modbus: check id... +I (12803) modbus: ok +I (12803) modbus: add: 0, length: 10 +I (12803) modbus: Read Holding Registers +I (12983) modbus tcp: ModBusSlave_recv() +I (12983) modbus: ModbusSlaveProcess()--------------------------- +I (12983) modbus: check id... +I (12983) modbus: ok +I (12983) modbus: add: 0, length: 10 +I (12983) modbus: Read Holding Registers +I (13033) modbus tcp: ModBusSlave_recv() +I (13033) modbus: ModbusSlaveProcess()--------------------------- +I (13033) modbus: check id... +I (13033) modbus: ok +I (13033) modbus: add: 0, length: 10 +I (13033) modbus: Read Holding Registers +I (13183) modbus tcp: ModBusSlave_recv() +I (13183) modbus: ModbusSlaveProcess()--------------------------- +I (13183) modbus: check id... +I (13183) modbus: ok +I (13183) modbus: add: 0, length: 10 +I (13183) modbus: Read Holding Registers +I (13253) modbus tcp: ModBusSlave_recv() +I (13253) modbus: ModbusSlaveProcess()--------------------------- +I (13253) modbus: check id... +I (13253) modbus: ok +I (13253) modbus: add: 0, length: 10 +I (13253) modbus: Read Holding Registers +I (13363) modbus tcp: ModBusSlave_recv() +I (13363) modbus: ModbusSlaveProcess()--------------------------- +I (13363) modbus: check id... +I (13363) modbus: ok +I (13363) modbus: add: 0, length: 10 +I (13363) modbus: Read Holding Registers +I (13473) modbus tcp: ModBusSlave_recv() +I (13473) modbus: ModbusSlaveProcess()--------------------------- +I (13473) modbus: check id... +I (13473) modbus: ok +I (13473) modbus: add: 0, length: 10 +I (13473) modbus: Read Holding Registers +I (13593) modbus tcp: ModBusSlave_recv() +I (13603) modbus: ModbusSlaveProcess()--------------------------- +I (13603) modbus: check id... +I (13603) modbus: ok +I (13603) modbus: add: 0, length: 10 +I (13603) modbus: Read Holding Registers +I (13693) modbus tcp: ModBusSlave_recv() +I (13693) modbus: ModbusSlaveProcess()--------------------------- +I (13693) modbus: check id... +I (13693) modbus: ok +I (13693) modbus: add: 0, length: 10 +I (13693) modbus: Read Holding Registers +I (13783) modbus tcp: ModBusSlave_recv() +I (13783) modbus: ModbusSlaveProcess()--------------------------- +I (13783) modbus: check id... +I (13783) modbus: ok +I (13783) modbus: add: 0, length: 10 +I (13783) modbus: Read Holding Registers +I (13893) modbus tcp: ModBusSlave_recv() +I (13893) modbus: ModbusSlaveProcess()--------------------------- +I (13893) modbus: check id... +I (13893) modbus: ok +I (13893) modbus: add: 0, length: 10 +I (13893) modbus: Read Holding Registers +I (14003) modbus tcp: ModBusSlave_recv() +I (14003) modbus: ModbusSlaveProcess()--------------------------- +I (14003) modbus: check id... +I (14003) modbus: ok +I (14003) modbus: add: 0, length: 10 +I (14003) modbus: Read Holding Registers +I (14213) modbus tcp: ModBusSlave_recv() +I (14213) modbus: ModbusSlaveProcess()--------------------------- +I (14213) modbus: check id... +I (14213) modbus: ok +I (14213) modbus: add: 0, length: 10 +I (14213) modbus: Read Holding Registers +I (14243) modbus tcp: ModBusSlave_recv() +I (14243) modbus: ModbusSlaveProcess()--------------------------- +I (14243) modbus: check id... +I (14243) modbus: ok +I (14243) modbus: add: 0, length: 10 +I (14243) modbus: Read Holding Registers +I (14343) modbus tcp: ModBusSlave_recv() +I (14343) modbus: ModbusSlaveProcess()--------------------------- +I (14343) modbus: check id... +I (14343) modbus: ok +I (14343) modbus: add: 0, length: 10 +I (14343) modbus: Read Holding Registers +I (14453) modbus tcp: ModBusSlave_recv() +I (14453) modbus: ModbusSlaveProcess()--------------------------- +I (14453) modbus: check id... +I (14453) modbus: ok +I (14453) modbus: add: 0, length: 10 +I (14453) modbus: Read Holding Registers +I (14623) modbus tcp: ModBusSlave_recv() +I (14623) modbus: ModbusSlaveProcess()--------------------------- +I (14623) modbus: check id... +I (14623) modbus: ok +I (14623) modbus: add: 0, length: 10 +I (14623) modbus: Read Holding Registers +I (14673) modbus tcp: ModBusSlave_recv() +I (14673) modbus: ModbusSlaveProcess()--------------------------- +I (14683) modbus: check id... +I (14683) modbus: ok +I (14683) modbus: add: 0, length: 10 +I (14683) modbus: Read Holding Registers +I (14823) modbus tcp: ModBusSlave_recv() +I (14823) modbus: ModbusSlaveProcess()--------------------------- +I (14823) modbus: check id... +I (14823) modbus: ok +I (14823) modbus: add: 0, length: 10 +I (14823) modbus: Read Holding Registers +I (14893) modbus tcp: ModBusSlave_recv() +I (14893) modbus: ModbusSlaveProcess()--------------------------- +I (14893) modbus: check id... +I (14893) modbus: ok +I (14893) modbus: add: 0, length: 10 +I (14893) modbus: Read Holding Registers +I (15033) modbus tcp: ModBusSlave_recv() +I (15033) modbus: ModbusSlaveProcess()--------------------------- +I (15033) modbus: check id... +I (15033) modbus: ok +I (15033) modbus: add: 0, length: 10 +I (15033) modbus: Read Holding Registers +I (15113) modbus tcp: ModBusSlave_recv() +I (15113) modbus: ModbusSlaveProcess()--------------------------- +I (15113) modbus: check id... +I (15113) modbus: ok +I (15113) modbus: add: 0, length: 10 +I (15113) modbus: Read Holding Registers +I (15203) modbus tcp: ModBusSlave_recv() +I (15203) modbus: ModbusSlaveProcess()--------------------------- +I (15203) modbus: check id... +I (15203) modbus: ok +I (15203) modbus: add: 0, length: 10 +I (15203) modbus: Read Holding Registers +I (15333) modbus tcp: ModBusSlave_recv() +I (15343) modbus: ModbusSlaveProcess()--------------------------- +I (15343) modbus: check id... +I (15343) modbus: ok +I (15343) modbus: add: 0, length: 10 +I (15343) modbus: Read Holding Registers +I (15433) modbus tcp: ModBusSlave_recv() +I (15433) modbus: ModbusSlaveProcess()--------------------------- +I (15433) modbus: check id... +I (15433) modbus: ok +I (15433) modbus: add: 0, length: 10 +I (15433) modbus: Read Holding Registers +I (15643) modbus tcp: ModBusSlave_recv() +I (15643) modbus: ModbusSlaveProcess()--------------------------- +I (15643) modbus: check id... +I (15643) modbus: ok +I (15643) modbus: add: 0, length: 10 +I (15643) modbus: Read Holding Registers +I (15663) modbus tcp: ModBusSlave_recv() +I (15663) modbus: ModbusSlaveProcess()--------------------------- +I (15663) modbus: check id... +I (15663) modbus: ok +I (15663) modbus: add: 0, length: 10 +I (15663) modbus: Read Holding Registers +I (15853) modbus tcp: ModBusSlave_recv() +I (15853) modbus: ModbusSlaveProcess()--------------------------- +I (15853) modbus: check id... +I (15853) modbus: ok +I (15853) modbus: add: 0, length: 10 +I (15853) modbus: Read Holding Registers +I (15883) modbus tcp: ModBusSlave_recv() +I (15883) modbus: ModbusSlaveProcess()--------------------------- +I (15883) modbus: check id... +I (15883) modbus: ok +I (15883) modbus: add: 0, length: 10 +I (15883) modbus: Read Holding Registers +I (16053) modbus tcp: ModBusSlave_recv() +I (16053) modbus: ModbusSlaveProcess()--------------------------- +I (16053) modbus: check id... +I (16053) modbus: ok +I (16053) modbus: add: 0, length: 10 +I (16053) modbus: Read Holding Registers +I (16153) modbus tcp: ModBusSlave_recv() +I (16153) modbus: ModbusSlaveProcess()--------------------------- +I (16163) modbus: check id... +I (16163) modbus: ok +I (16163) modbus: add: 0, length: 10 +I (16163) modbus: Read Holding Registers +I (16253) modbus tcp: ModBusSlave_recv() +I (16263) modbus: ModbusSlaveProcess()--------------------------- +I (16263) modbus: check id... +I (16263) modbus: ok +I (16263) modbus: add: 0, length: 10 +I (16263) modbus: Read Holding Registers +I (16323) modbus tcp: ModBusSlave_recv() +I (16323) modbus: ModbusSlaveProcess()--------------------------- +I (16333) modbus: check id... +I (16333) modbus: ok +I (16333) modbus: add: 0, length: 10 +I (16333) modbus: Read Holding Registers +I (16463) modbus tcp: ModBusSlave_recv() +I (16463) modbus: ModbusSlaveProcess()--------------------------- +I (16463) modbus: check id... +I (16463) modbus: ok +I (16463) modbus: add: 0, length: 10 +I (16463) modbus: Read Holding Registers +I (16543) modbus tcp: ModBusSlave_recv() +I (16543) modbus: ModbusSlaveProcess()--------------------------- +I (16543) modbus: check id... +I (16543) modbus: ok +I (16543) modbus: add: 0, length: 10 +I (16543) modbus: Read Holding Registers +I (16673) modbus tcp: ModBusSlave_recv() +I (16673) modbus: ModbusSlaveProcess()--------------------------- +I (16673) modbus: check id... +I (16673) modbus: ok +I (16673) modbus: add: 0, length: 10 +I (16673) modbus: Read Holding Registers +I (16773) modbus tcp: ModBusSlave_recv() +I (16773) modbus: ModbusSlaveProcess()--------------------------- +I (16773) modbus: check id... +I (16773) modbus: ok +I (16773) modbus: add: 0, length: 10 +I (16773) modbus: Read Holding Registers +I (16873) modbus tcp: ModBusSlave_recv() +I (16873) modbus: ModbusSlaveProcess()--------------------------- +I (16873) modbus: check id... +I (16873) modbus: ok +I (16873) modbus: add: 0, length: 10 +I (16873) modbus: Read Holding Registers +I (16973) modbus tcp: ModBusSlave_recv() +I (16973) modbus: ModbusSlaveProcess()--------------------------- +I (16973) modbus: check id... +I (16973) modbus: ok +I (16973) modbus: add: 0, length: 10 +I (16973) modbus: Read Holding Registers +I (17093) modbus tcp: ModBusSlave_recv() +I (17093) modbus: ModbusSlaveProcess()--------------------------- +I (17093) modbus: check id... +I (17093) modbus: ok +I (17093) modbus: add: 0, length: 10 +I (17093) modbus: Read Holding Registers +I (17193) modbus tcp: ModBusSlave_recv() +I (17193) modbus: ModbusSlaveProcess()--------------------------- +I (17193) modbus: check id... +I (17193) modbus: ok +I (17193) modbus: add: 0, length: 10 +I (17193) modbus: Read Holding Registers +I (17383) modbus tcp: ModBusSlave_recv() +I (17383) modbus: ModbusSlaveProcess()--------------------------- +I (17383) modbus: check id... +I (17383) modbus: ok +I (17383) modbus: add: 0, length: 10 +I (17383) modbus: Read Holding Registers +I (17433) modbus tcp: ModBusSlave_recv() +I (17433) modbus: ModbusSlaveProcess()--------------------------- +I (17433) modbus: check id... +I (17433) modbus: ok +I (17433) modbus: add: 0, length: 10 +I (17433) modbus: Read Holding Registers +I (17593) modbus tcp: ModBusSlave_recv() +I (17593) modbus: ModbusSlaveProcess()--------------------------- +I (17593) modbus: check id... +I (17593) modbus: ok +I (17593) modbus: add: 0, length: 10 +I (17593) modbus: Read Holding Registers +I (17693) modbus tcp: ModBusSlave_recv() +I (17693) modbus: ModbusSlaveProcess()--------------------------- +I (17693) modbus: check id... +I (17693) modbus: ok +I (17693) modbus: add: 0, length: 10 +I (17693) modbus: Read Holding Registers +I (17763) modbus tcp: ModBusSlave_recv() +I (17763) modbus: ModbusSlaveProcess()--------------------------- +I (17763) modbus: check id... +I (17763) modbus: ok +I (17763) modbus: add: 0, length: 10 +I (17763) modbus: Read Holding Registers +I (17903) modbus tcp: ModBusSlave_recv() +I (17903) modbus: ModbusSlaveProcess()--------------------------- +I (17903) modbus: check id... +I (17903) modbus: ok +I (17903) modbus: add: 0, length: 10 +I (17903) modbus: Read Holding Registers +I (17973) modbus tcp: ModBusSlave_recv() +I (17983) modbus: ModbusSlaveProcess()--------------------------- +I (17983) modbus: check id... +I (17983) modbus: ok +I (17983) modbus: add: 0, length: 10 +I (17983) modbus: Read Holding Registers +I (18103) modbus tcp: ModBusSlave_recv() +I (18103) modbus: ModbusSlaveProcess()--------------------------- +I (18103) modbus: check id... +I (18103) modbus: ok +I (18103) modbus: add: 0, length: 10 +I (18103) modbus: Read Holding Registers +I (18193) modbus tcp: ModBusSlave_recv() +I (18203) modbus: ModbusSlaveProcess()--------------------------- +I (18203) modbus: check id... +I (18203) modbus: ok +I (18203) modbus: add: 0, length: 10 +I (18203) modbus: Read Holding Registers +I (18313) modbus tcp: ModBusSlave_recv() +I (18313) modbus: ModbusSlaveProcess()--------------------------- +I (18313) modbus: check id... +I (18313) modbus: ok +I (18313) modbus: add: 0, length: 10 +I (18313) modbus: Read Holding Registers +I (18413) modbus tcp: ModBusSlave_recv() +I (18413) modbus: ModbusSlaveProcess()--------------------------- +I (18413) modbus: check id... +I (18413) modbus: ok +I (18413) modbus: add: 0, length: 10 +I (18413) modbus: Read Holding Registers +I (18623) modbus tcp: ModBusSlave_recv() +I (18623) modbus: ModbusSlaveProcess()--------------------------- +I (18623) modbus: check id... +I (18623) modbus: ok +I (18623) modbus: add: 0, length: 10 +I (18623) modbus: Read Holding Registers +I (18653) modbus tcp: ModBusSlave_recv() +I (18653) modbus: ModbusSlaveProcess()--------------------------- +I (18653) modbus: check id... +I (18653) modbus: ok +I (18653) modbus: add: 0, length: 10 +I (18653) modbus: Read Holding Registers +I (18743) modbus tcp: ModBusSlave_recv() +I (18743) modbus: ModbusSlaveProcess()--------------------------- +I (18743) modbus: check id... +I (18743) modbus: ok +I (18743) modbus: add: 0, length: 10 +I (18743) modbus: Read Holding Registers +I (18923) modbus tcp: ModBusSlave_recv() +I (18923) modbus: ModbusSlaveProcess()--------------------------- +I (18923) modbus: check id... +I (18923) modbus: ok +I (18923) modbus: add: 0, length: 10 +I (18923) modbus: Read Holding Registers +I (18963) modbus tcp: ModBusSlave_recv() +I (18963) modbus: ModbusSlaveProcess()--------------------------- +I (18963) modbus: check id... +I (18963) modbus: ok +I (18963) modbus: add: 0, length: 10 +I (18963) modbus: Read Holding Registers +I (19123) modbus tcp: ModBusSlave_recv() +I (19123) modbus: ModbusSlaveProcess()--------------------------- +I (19123) modbus: check id... +I (19123) modbus: ok +I (19133) modbus: add: 0, length: 10 +I (19133) modbus: Read Holding Registers +I (19233) modbus tcp: ModBusSlave_recv() +I (19233) modbus: ModbusSlaveProcess()--------------------------- +I (19233) modbus: check id... +I (19233) modbus: ok +I (19233) modbus: add: 0, length: 10 +I (19233) modbus: Read Holding Registers +I (19303) modbus tcp: ModBusSlave_recv() +I (19303) modbus: ModbusSlaveProcess()--------------------------- +I (19303) modbus: check id... +I (19303) modbus: ok +I (19303) modbus: add: 0, length: 10 +I (19303) modbus: Read Holding Registers +I (19433) modbus tcp: ModBusSlave_recv() +I (19433) modbus: ModbusSlaveProcess()--------------------------- +I (19433) modbus: check id... +I (19433) modbus: ok +I (19433) modbus: add: 0, length: 10 +I (19433) modbus: Read Holding Registers +I (19523) modbus tcp: ModBusSlave_recv() +I (19523) modbus: ModbusSlaveProcess()--------------------------- +I (19523) modbus: check id... +I (19523) modbus: ok +I (19523) modbus: add: 0, length: 10 +I (19523) modbus: Read Holding Registers +I (19643) modbus tcp: ModBusSlave_recv() +I (19643) modbus: ModbusSlaveProcess()--------------------------- +I (19643) modbus: check id... +I (19643) modbus: ok +I (19643) modbus: add: 0, length: 10 +I (19643) modbus: Read Holding Registers +I (19843) modbus tcp: ModBusSlave_recv() +I (19843) modbus: ModbusSlaveProcess()--------------------------- +I (19843) modbus: check id... +I (19843) modbus: ok +I (19843) modbus: add: 0, length: 10 +I (19843) modbus: Read Holding Registers +I (19863) modbus tcp: ModBusSlave_recv() +I (19863) modbus: ModbusSlaveProcess()--------------------------- +I (19863) modbus: check id... +I (19873) modbus: ok +I (19873) modbus: add: 0, length: 10 +I (19873) modbus: Read Holding Registers +I (19973) modbus tcp: ModBusSlave_recv() +I (19973) modbus: ModbusSlaveProcess()--------------------------- +I (19973) modbus: check id... +I (19973) modbus: ok +I (19973) modbus: add: 0, length: 10 +I (19973) modbus: Read Holding Registers +I (20153) modbus tcp: ModBusSlave_recv() +I (20153) modbus: ModbusSlaveProcess()--------------------------- +I (20153) modbus: check id... +I (20153) modbus: ok +I (20153) modbus: add: 0, length: 10 +I (20153) modbus: Read Holding Registers +I (20193) modbus tcp: ModBusSlave_recv() +I (20193) modbus: ModbusSlaveProcess()--------------------------- +I (20193) modbus: check id... +I (20193) modbus: ok +I (20193) modbus: add: 0, length: 10 +I (20193) modbus: Read Holding Registers +I (20353) modbus tcp: ModBusSlave_recv() +I (20353) modbus: ModbusSlaveProcess()--------------------------- +I (20353) modbus: check id... +I (20353) modbus: ok +I (20353) modbus: add: 0, length: 10 +I (20353) modbus: Read Holding Registers +I (20463) modbus tcp: ModBusSlave_recv() +I (20463) modbus: ModbusSlaveProcess()--------------------------- +I (20463) modbus: check id... +I (20463) modbus: ok +I (20463) modbus: add: 0, length: 10 +I (20463) modbus: Read Holding Registers +I (20523) modbus tcp: ModBusSlave_recv() +I (20523) modbus: ModbusSlaveProcess()--------------------------- +I (20523) modbus: check id... +I (20523) modbus: ok +I (20523) modbus: add: 0, length: 10 +I (20523) modbus: Read Holding Registers +I (20663) modbus tcp: ModBusSlave_recv() +I (20663) modbus: ModbusSlaveProcess()--------------------------- +I (20663) modbus: check id... +I (20663) modbus: ok +I (20663) modbus: add: 0, length: 10 +I (20663) modbus: Read Holding Registers +I (20763) modbus tcp: ModBusSlave_recv() +I (20763) modbus: ModbusSlaveProcess()--------------------------- +I (20763) modbus: check id... +I (20763) modbus: ok +I (20763) modbus: add: 0, length: 10 +I (20763) modbus: Read Holding Registers +I (20973) modbus tcp: ModBusSlave_recv() +I (20973) modbus: ModbusSlaveProcess()--------------------------- +I (20973) modbus: check id... +I (20973) modbus: ok +I (20973) modbus: add: 0, length: 10 +I (20973) modbus: Read Holding Registers +I (21003) modbus tcp: ModBusSlave_recv() +I (21003) modbus: ModbusSlaveProcess()--------------------------- +I (21003) modbus: check id... +I (21003) modbus: ok +I (21003) modbus: add: 0, length: 10 +I (21003) modbus: Read Holding Registers +I (21173) modbus tcp: ModBusSlave_recv() +I (21173) modbus: ModbusSlaveProcess()--------------------------- +I (21173) modbus: check id... +I (21173) modbus: ok +I (21173) modbus: add: 0, length: 10 +I (21173) modbus: Read Holding Registers +I (21223) modbus tcp: ModBusSlave_recv() +I (21223) modbus: ModbusSlaveProcess()--------------------------- +I (21223) modbus: check id... +I (21223) modbus: ok +I (21223) modbus: add: 0, length: 10 +I (21223) modbus: Read Holding Registers +I (21383) modbus tcp: ModBusSlave_recv() +I (21383) modbus: ModbusSlaveProcess()--------------------------- +I (21383) modbus: check id... +I (21383) modbus: ok +I (21383) modbus: add: 0, length: 10 +I (21383) modbus: Read Holding Registers +I (21483) modbus tcp: ModBusSlave_recv() +I (21483) modbus: ModbusSlaveProcess()--------------------------- +I (21483) modbus: check id... +I (21483) modbus: ok +I (21483) modbus: add: 0, length: 10 +I (21483) modbus: Read Holding Registers +I (21553) modbus tcp: ModBusSlave_recv() +I (21553) modbus: ModbusSlaveProcess()--------------------------- +I (21553) modbus: check id... +I (21553) modbus: ok +I (21553) modbus: add: 0, length: 10 +I (21553) modbus: Read Holding Registers +I (21693) modbus tcp: ModBusSlave_recv() +I (21693) modbus: ModbusSlaveProcess()--------------------------- +I (21693) modbus: check id... +I (21693) modbus: ok +I (21693) modbus: add: 0, length: 10 +I (21693) modbus: Read Holding Registers +I (21773) modbus tcp: ModBusSlave_recv() +I (21773) modbus: ModbusSlaveProcess()--------------------------- +I (21773) modbus: check id... +I (21773) modbus: ok +I (21773) modbus: add: 0, length: 10 +I (21773) modbus: Read Holding Registers +I (21893) modbus tcp: ModBusSlave_recv() +I (21893) modbus: ModbusSlaveProcess()--------------------------- +I (21893) modbus: check id... +I (21893) modbus: ok +I (21893) modbus: add: 0, length: 10 +I (21893) modbus: Read Holding Registers +I (21973) modbus tcp: ModBusSlave_recv() +I (21973) modbus: ModbusSlaveProcess()--------------------------- +I (21973) modbus: check id... +I (21973) modbus: ok +I (21973) modbus: add: 0, length: 10 +I (21973) modbus: Read Holding Registers +I (22093) modbus tcp: ModBusSlave_recv() +I (22103) modbus: ModbusSlaveProcess()--------------------------- +I (22103) modbus: check id... +I (22103) modbus: ok +I (22103) modbus: add: 0, length: 10 +I (22103) modbus: Read Holding Registers +I (22193) modbus tcp: ModBusSlave_recv() +I (22203) modbus: ModbusSlaveProcess()--------------------------- +I (22203) modbus: check id... +I (22203) modbus: ok +I (22203) modbus: add: 0, length: 10 +I (22203) modbus: Read Holding Registers +I (22303) modbus tcp: ModBusSlave_recv() +I (22303) modbus: ModbusSlaveProcess()--------------------------- +I (22303) modbus: check id... +I (22303) modbus: ok +I (22303) modbus: add: 0, length: 10 +I (22303) modbus: Read Holding Registers +I (22543) modbus tcp: ModBusSlave_recv() +I (22543) modbus: ModbusSlaveProcess()--------------------------- +I (22543) modbus: check id... +I (22543) modbus: ok +I (22543) modbus: add: 0, length: 10 +I (22543) modbus: Read Holding Registers +I (22573) modbus tcp: ModBusSlave_recv() +I (22583) modbus: ModbusSlaveProcess()--------------------------- +I (22583) modbus: check id... +I (22583) modbus: ok +I (22583) modbus: add: 0, length: 10 +I (22583) modbus: Read Holding Registers +I (22713) modbus tcp: ModBusSlave_recv() +I (22713) modbus: ModbusSlaveProcess()--------------------------- +I (22713) modbus: check id... +I (22713) modbus: ok +I (22713) modbus: add: 0, length: 10 +I (22713) modbus: Read Holding Registers +I (22793) modbus tcp: ModBusSlave_recv() +I (22793) modbus: ModbusSlaveProcess()--------------------------- +I (22793) modbus: check id... +I (22793) modbus: ok +I (22793) modbus: add: 0, length: 10 +I (22793) modbus: Read Holding Registers +I (22913) modbus tcp: ModBusSlave_recv() +I (22913) modbus: ModbusSlaveProcess()--------------------------- +I (22913) modbus: check id... +I (22913) modbus: ok +I (22913) modbus: add: 0, length: 10 +I (22923) modbus: Read Holding Registers +I (23023) modbus tcp: ModBusSlave_recv() +I (23023) modbus: ModbusSlaveProcess()--------------------------- +I (23023) modbus: check id... +I (23023) modbus: ok +I (23023) modbus: add: 0, length: 10 +I (23023) modbus: Read Holding Registers +I (23223) modbus tcp: ModBusSlave_recv() +I (23223) modbus: ModbusSlaveProcess()--------------------------- +I (23223) modbus: check id... +I (23223) modbus: ok +I (23223) modbus: add: 0, length: 10 +I (23223) modbus: Read Holding Registers +I (23243) modbus tcp: ModBusSlave_recv() +I (23243) modbus: ModbusSlaveProcess()--------------------------- +I (23243) modbus: check id... +I (23243) modbus: ok +I (23243) modbus: add: 0, length: 10 +I (23243) modbus: Read Holding Registers +I (23353) modbus tcp: ModBusSlave_recv() +I (23353) modbus: ModbusSlaveProcess()--------------------------- +I (23353) modbus: check id... +I (23353) modbus: ok +I (23353) modbus: add: 0, length: 10 +I (23353) modbus: Read Holding Registers +I (23463) modbus tcp: ModBusSlave_recv() +I (23463) modbus: ModbusSlaveProcess()--------------------------- +I (23463) modbus: check id... +I (23463) modbus: ok +I (23463) modbus: add: 0, length: 10 +I (23463) modbus: Read Holding Registers +I (23633) modbus tcp: ModBusSlave_recv() +I (23633) modbus: ModbusSlaveProcess()--------------------------- +I (23633) modbus: check id... +I (23633) modbus: ok +I (23633) modbus: add: 0, length: 10 +I (23633) modbus: Read Holding Registers +I (23683) modbus tcp: ModBusSlave_recv() +I (23683) modbus: ModbusSlaveProcess()--------------------------- +I (23683) modbus: check id... +I (23683) modbus: ok +I (23683) modbus: add: 0, length: 10 +I (23683) modbus: Read Holding Registers +I (23843) modbus tcp: ModBusSlave_recv() +I (23843) modbus: ModbusSlaveProcess()--------------------------- +I (23843) modbus: check id... +I (23843) modbus: ok +I (23843) modbus: add: 0, length: 10 +I (23843) modbus: Read Holding Registers +I (23913) modbus tcp: ModBusSlave_recv() +I (23913) modbus: ModbusSlaveProcess()--------------------------- +I (23913) modbus: check id... +I (23913) modbus: ok +I (23913) modbus: add: 0, length: 10 +I (23913) modbus: Read Holding Registers +I (24013) modbus tcp: ModBusSlave_recv() +I (24013) modbus: ModbusSlaveProcess()--------------------------- +I (24013) modbus: check id... +I (24013) modbus: ok +I (24013) modbus: add: 0, length: 10 +I (24013) modbus: Read Holding Registers +I (24143) modbus tcp: ModBusSlave_recv() +I (24143) modbus: ModbusSlaveProcess()--------------------------- +I (24143) modbus: check id... +I (24143) modbus: ok +I (24143) modbus: add: 0, length: 10 +I (24143) modbus: Read Holding Registers +I (24233) modbus tcp: ModBusSlave_recv() +I (24233) modbus: ModbusSlaveProcess()--------------------------- +I (24233) modbus: check id... +I (24233) modbus: ok +I (24233) modbus: add: 0, length: 10 +I (24233) modbus: Read Holding Registers +I (24343) modbus tcp: ModBusSlave_recv() +I (24343) modbus: ModbusSlaveProcess()--------------------------- +I (24343) modbus: check id... +I (24343) modbus: ok +I (24343) modbus: add: 0, length: 10 +I (24343) modbus: Read Holding Registers +I (24453) modbus tcp: ModBusSlave_recv() +I (24453) modbus: ModbusSlaveProcess()--------------------------- +I (24453) modbus: check id... +I (24453) modbus: ok +I (24453) modbus: add: 0, length: 10 +I (24453) modbus: Read Holding Registers +I (24653) modbus tcp: ModBusSlave_recv() +I (24653) modbus: ModbusSlaveProcess()--------------------------- +I (24653) modbus: check id... +I (24653) modbus: ok +I (24653) modbus: add: 0, length: 10 +I (24653) modbus: Read Holding Registers +I (24673) modbus tcp: ModBusSlave_recv() +I (24673) modbus: ModbusSlaveProcess()--------------------------- +I (24673) modbus: check id... +I (24673) modbus: ok +I (24673) modbus: add: 0, length: 10 +I (24673) modbus: Read Holding Registers +I (24863) modbus tcp: ModBusSlave_recv() +I (24863) modbus: ModbusSlaveProcess()--------------------------- +I (24863) modbus: check id... +I (24863) modbus: ok +I (24863) modbus: add: 0, length: 10 +I (24863) modbus: Read Holding Registers +I (24903) modbus tcp: ModBusSlave_recv() +I (24903) modbus: ModbusSlaveProcess()--------------------------- +I (24903) modbus: check id... +I (24903) modbus: ok +I (24903) modbus: add: 0, length: 10 +I (24903) modbus: Read Holding Registers +I (25063) modbus tcp: ModBusSlave_recv() +I (25063) modbus: ModbusSlaveProcess()--------------------------- +I (25063) modbus: check id... +I (25063) modbus: ok +I (25063) modbus: add: 0, length: 10 +I (25063) modbus: Read Holding Registers +I (25173) modbus tcp: ModBusSlave_recv() +I (25173) modbus: ModbusSlaveProcess()--------------------------- +I (25173) modbus: check id... +I (25173) modbus: ok +I (25173) modbus: add: 0, length: 10 +I (25173) modbus: Read Holding Registers +I (25233) modbus tcp: ModBusSlave_recv() +I (25233) modbus: ModbusSlaveProcess()--------------------------- +I (25233) modbus: check id... +I (25233) modbus: ok +I (25233) modbus: add: 0, length: 10 +I (25233) modbus: Read Holding Registers +I (25373) modbus tcp: ModBusSlave_recv() +I (25373) modbus: ModbusSlaveProcess()--------------------------- +I (25373) modbus: check id... +I (25373) modbus: ok +I (25373) modbus: add: 0, length: 10 +I (25373) modbus: Read Holding Registers +I (25453) modbus tcp: ModBusSlave_recv() +I (25453) modbus: ModbusSlaveProcess()--------------------------- +I (25453) modbus: check id... +I (25453) modbus: ok +I (25453) modbus: add: 0, length: 10 +I (25453) modbus: Read Holding Registers +I (25563) modbus tcp: ModBusSlave_recv() +I (25563) modbus: ModbusSlaveProcess()--------------------------- +I (25563) modbus: check id... +I (25563) modbus: ok +I (25563) modbus: add: 0, length: 10 +I (25563) modbus: Read Holding Registers +I (25783) modbus tcp: ModBusSlave_recv() +I (25783) modbus: ModbusSlaveProcess()--------------------------- +I (25783) modbus: check id... +I (25783) modbus: ok +I (25783) modbus: add: 0, length: 10 +I (25783) modbus: Read Holding Registers +I (25803) modbus tcp: ModBusSlave_recv() +I (25803) modbus: ModbusSlaveProcess()--------------------------- +I (25803) modbus: check id... +I (25803) modbus: ok +I (25803) modbus: add: 0, length: 10 +I (25803) modbus: Read Holding Registers +I (25993) modbus tcp: ModBusSlave_recv() +I (25993) modbus: ModbusSlaveProcess()--------------------------- +I (25993) modbus: check id... +I (25993) modbus: ok +I (25993) modbus: add: 0, length: 10 +I (25993) modbus: Read Holding Registers +I (26023) modbus tcp: ModBusSlave_recv() +I (26023) modbus: ModbusSlaveProcess()--------------------------- +I (26023) modbus: check id... +I (26023) modbus: ok +I (26023) modbus: add: 0, length: 10 +I (26023) modbus: Read Holding Registers +I (26193) modbus tcp: ModBusSlave_recv() +I (26193) modbus: ModbusSlaveProcess()--------------------------- +I (26193) modbus: check id... +I (26193) modbus: ok +I (26193) modbus: add: 0, length: 10 +I (26193) modbus: Read Holding Registers +I (26243) modbus tcp: ModBusSlave_recv() +I (26243) modbus: ModbusSlaveProcess()--------------------------- +I (26243) modbus: check id... +I (26243) modbus: ok +I (26243) modbus: add: 0, length: 10 +I (26243) modbus: Read Holding Registers +I (26393) modbus tcp: ModBusSlave_recv() +I (26393) modbus: ModbusSlaveProcess()--------------------------- +I (26393) modbus: check id... +I (26393) modbus: ok +I (26393) modbus: add: 0, length: 10 +I (26393) modbus: Read Holding Registers +I (26463) modbus tcp: ModBusSlave_recv() +I (26463) modbus: ModbusSlaveProcess()--------------------------- +I (26463) modbus: check id... +I (26463) modbus: ok +I (26463) modbus: add: 0, length: 10 +I (26463) modbus: Read Holding Registers +I (26603) modbus tcp: ModBusSlave_recv() +I (26603) modbus: ModbusSlaveProcess()--------------------------- +I (26603) modbus: check id... +I (26603) modbus: ok +I (26603) modbus: add: 0, length: 10 +I (26603) modbus: Read Holding Registers +I (26683) modbus tcp: ModBusSlave_recv() +I (26683) modbus: ModbusSlaveProcess()--------------------------- +I (26683) modbus: check id... +I (26683) modbus: ok +I (26683) modbus: add: 0, length: 10 +I (26683) modbus: Read Holding Registers +I (26803) modbus tcp: ModBusSlave_recv() +I (26803) modbus: ModbusSlaveProcess()--------------------------- +I (26803) modbus: check id... +I (26803) modbus: ok +I (26803) modbus: add: 0, length: 10 +I (26803) modbus: Read Holding Registers +I (26913) modbus tcp: ModBusSlave_recv() +I (26913) modbus: ModbusSlaveProcess()--------------------------- +I (26913) modbus: check id... +I (26913) modbus: ok +I (26913) modbus: add: 0, length: 10 +I (26913) modbus: Read Holding Registers +I (27123) modbus tcp: ModBusSlave_recv() +I (27123) modbus: ModbusSlaveProcess()--------------------------- +I (27123) modbus: check id... +I (27123) modbus: ok +I (27123) modbus: add: 0, length: 10 +I (27123) modbus: Read Holding Registers +I (27133) modbus tcp: ModBusSlave_recv() +I (27133) modbus: ModbusSlaveProcess()--------------------------- +I (27133) modbus: check id... +I (27133) modbus: ok +I (27133) modbus: add: 0, length: 10 +I (27143) modbus: Read Holding Registers +I (27243) modbus tcp: ModBusSlave_recv() +I (27243) modbus: ModbusSlaveProcess()--------------------------- +I (27243) modbus: check id... +I (27243) modbus: ok +I (27243) modbus: add: 0, length: 10 +I (27243) modbus: Read Holding Registers +I (27423) modbus tcp: ModBusSlave_recv() +I (27423) modbus: ModbusSlaveProcess()--------------------------- +I (27423) modbus: check id... +I (27423) modbus: ok +I (27423) modbus: add: 0, length: 10 +I (27423) modbus: Read Holding Registers +I (27473) modbus tcp: ModBusSlave_recv() +I (27473) modbus: ModbusSlaveProcess()--------------------------- +I (27473) modbus: check id... +I (27473) modbus: ok +I (27473) modbus: add: 0, length: 10 +I (27473) modbus: Read Holding Registers +I (27623) modbus tcp: ModBusSlave_recv() +I (27623) modbus: ModbusSlaveProcess()--------------------------- +I (27623) modbus: check id... +I (27623) modbus: ok +I (27623) modbus: add: 0, length: 10 +I (27623) modbus: Read Holding Registers +I (27763) modbus tcp: ModBusSlave_recv() +I (27763) modbus: ModbusSlaveProcess()--------------------------- +I (27763) modbus: check id... +I (27763) modbus: ok +I (27763) modbus: add: 0, length: 10 +I (27763) modbus: Read Holding Registers +I (27813) modbus tcp: ModBusSlave_recv() +I (27813) modbus: ModbusSlaveProcess()--------------------------- +I (27813) modbus: check id... +I (27813) modbus: ok +I (27813) modbus: add: 0, length: 10 +I (27813) modbus: Read Holding Registers +I (27933) modbus tcp: ModBusSlave_recv() +I (27933) modbus: ModbusSlaveProcess()--------------------------- +I (27933) modbus: check id... +I (27933) modbus: ok +I (27933) modbus: add: 0, length: 10 +I (27933) modbus: Read Holding Registers +I (28023) modbus tcp: ModBusSlave_recv() +I (28033) modbus: ModbusSlaveProcess()--------------------------- +I (28033) modbus: check id... +I (28033) modbus: ok +I (28033) modbus: add: 0, length: 10 +I (28033) modbus: Read Holding Registers +I (28143) modbus tcp: ModBusSlave_recv() +I (28143) modbus: ModbusSlaveProcess()--------------------------- +I (28143) modbus: check id... +I (28143) modbus: ok +I (28143) modbus: add: 0, length: 10 +I (28143) modbus: Read Holding Registers +I (28343) modbus tcp: ModBusSlave_recv() +I (28343) modbus: ModbusSlaveProcess()--------------------------- +I (28343) modbus: check id... +I (28343) modbus: ok +I (28343) modbus: add: 0, length: 10 +I (28343) modbus: Read Holding Registers +I (28373) modbus tcp: ModBusSlave_recv() +I (28373) modbus: ModbusSlaveProcess()--------------------------- +I (28373) modbus: check id... +I (28373) modbus: ok +I (28373) modbus: add: 0, length: 10 +I (28373) modbus: Read Holding Registers +I (28553) modbus tcp: ModBusSlave_recv() +I (28553) modbus: ModbusSlaveProcess()--------------------------- +I (28553) modbus: check id... +I (28553) modbus: ok +I (28553) modbus: add: 0, length: 10 +I (28553) modbus: Read Holding Registers +I (28593) modbus tcp: ModBusSlave_recv() +I (28593) modbus: ModbusSlaveProcess()--------------------------- +I (28593) modbus: check id... +I (28593) modbus: ok +I (28593) modbus: add: 0, length: 10 +I (28593) modbus: Read Holding Registers +I (28753) modbus tcp: ModBusSlave_recv() +I (28753) modbus: ModbusSlaveProcess()--------------------------- +I (28753) modbus: check id... +I (28753) modbus: ok +I (28753) modbus: add: 0, length: 10 +I (28753) modbus: Read Holding Registers +I (28863) modbus tcp: ModBusSlave_recv() +I (28863) modbus: ModbusSlaveProcess()--------------------------- +I (28863) modbus: check id... +I (28863) modbus: ok +I (28863) modbus: add: 0, length: 10 +I (28863) modbus: Read Holding Registers +I (28923) modbus tcp: ModBusSlave_recv() +I (28923) modbus: ModbusSlaveProcess()--------------------------- +I (28923) modbus: check id... +I (28923) modbus: ok +I (28923) modbus: add: 0, length: 10 +I (28923) modbus: Read Holding Registers +I (29063) modbus tcp: ModBusSlave_recv() +I (29063) modbus: ModbusSlaveProcess()--------------------------- +I (29063) modbus: check id... +I (29063) modbus: ok +I (29063) modbus: add: 0, length: 10 +I (29063) modbus: Read Holding Registers +I (29143) modbus tcp: ModBusSlave_recv() +I (29143) modbus: ModbusSlaveProcess()--------------------------- +I (29143) modbus: check id... +I (29143) modbus: ok +I (29143) modbus: add: 0, length: 10 +I (29143) modbus: Read Holding Registers +I (29263) modbus tcp: ModBusSlave_recv() +I (29263) modbus: ModbusSlaveProcess()--------------------------- +I (29263) modbus: check id... +I (29263) modbus: ok +I (29263) modbus: add: 0, length: 10 +I (29263) modbus: Read Holding Registers +I (29363) modbus tcp: ModBusSlave_recv() +I (29363) modbus: ModbusSlaveProcess()--------------------------- +I (29363) modbus: check id... +I (29363) modbus: ok +I (29363) modbus: add: 0, length: 10 +I (29363) modbus: Read Holding Registers +I (29473) modbus tcp: ModBusSlave_recv() +I (29473) modbus: ModbusSlaveProcess()--------------------------- +I (29473) modbus: check id... +I (29473) modbus: ok +I (29473) modbus: add: 0, length: 10 +I (29473) modbus: Read Holding Registers +I (29573) modbus tcp: ModBusSlave_recv() +I (29573) modbus: ModbusSlaveProcess()--------------------------- +I (29573) modbus: check id... +I (29573) modbus: ok +I (29573) modbus: add: 0, length: 10 +I (29573) modbus: Read Holding Registers +I (29773) modbus tcp: ModBusSlave_recv() +I (29773) modbus: ModbusSlaveProcess()--------------------------- +I (29783) modbus: check id... +I (29783) modbus: ok +I (29783) modbus: add: 0, length: 10 +I (29783) modbus: Read Holding Registers +I (29803) modbus tcp: ModBusSlave_recv() +I (29803) modbus: ModbusSlaveProcess()--------------------------- +I (29803) modbus: check id... +I (29803) modbus: ok +I (29803) modbus: add: 0, length: 10 +I (29803) modbus: Read Holding Registers +I (29903) modbus tcp: ModBusSlave_recv() +I (29903) modbus: ModbusSlaveProcess()--------------------------- +I (29903) modbus: check id... +I (29903) modbus: ok +I (29903) modbus: add: 0, length: 10 +I (29903) modbus: Read Holding Registers +I (30083) modbus tcp: ModBusSlave_recv() +I (30083) modbus: ModbusSlaveProcess()--------------------------- +I (30083) modbus: check id... +I (30083) modbus: ok +I (30083) modbus: add: 0, length: 10 +I (30083) modbus: Read Holding Registers +I (30123) modbus tcp: ModBusSlave_recv() +I (30123) modbus: ModbusSlaveProcess()--------------------------- +I (30123) modbus: check id... +I (30123) modbus: ok +I (30123) modbus: add: 0, length: 10 +I (30123) modbus: Read Holding Registers +I (30293) modbus tcp: ModBusSlave_recv() +I (30293) modbus: ModbusSlaveProcess()--------------------------- +I (30293) modbus: check id... +I (30293) modbus: ok +I (30293) modbus: add: 0, length: 10 +I (30293) modbus: Read Holding Registers +I (30393) modbus tcp: ModBusSlave_recv() +I (30393) modbus: ModbusSlaveProcess()--------------------------- +I (30393) modbus: check id... +I (30393) modbus: ok +I (30393) modbus: add: 0, length: 10 +I (30393) modbus: Read Holding Registers +I (30493) modbus tcp: ModBusSlave_recv() +I (30493) modbus: ModbusSlaveProcess()--------------------------- +I (30493) modbus: check id... +I (30493) modbus: ok +I (30493) modbus: add: 0, length: 10 +I (30493) modbus: Read Holding Registers +I (30593) modbus tcp: ModBusSlave_recv() +I (30593) modbus: ModbusSlaveProcess()--------------------------- +I (30593) modbus: check id... +I (30593) modbus: ok +I (30593) modbus: add: 0, length: 10 +I (30593) modbus: Read Holding Registers +I (30663) modbus tcp: ModBusSlave_recv() +I (30663) modbus: ModbusSlaveProcess()--------------------------- +I (30663) modbus: check id... +I (30663) modbus: ok +I (30663) modbus: add: 0, length: 10 +I (30663) modbus: Read Holding Registers +I (30803) modbus tcp: ModBusSlave_recv() +I (30803) modbus: ModbusSlaveProcess()--------------------------- +I (30803) modbus: check id... +I (30803) modbus: ok +I (30803) modbus: add: 0, length: 10 +I (30803) modbus: Read Holding Registers +I (30903) modbus tcp: ModBusSlave_recv() +I (30903) modbus: ModbusSlaveProcess()--------------------------- +I (30903) modbus: check id... +I (30903) modbus: ok +I (30903) modbus: add: 0, length: 10 +I (30903) modbus: Read Holding Registers +I (30993) modbus tcp: ModBusSlave_recv() +I (30993) modbus: ModbusSlaveProcess()--------------------------- +I (30993) modbus: check id... +I (30993) modbus: ok +I (30993) modbus: add: 0, length: 10 +I (30993) modbus: Read Holding Registers +I (31113) modbus tcp: ModBusSlave_recv() +I (31113) modbus: ModbusSlaveProcess()--------------------------- +I (31113) modbus: check id... +I (31113) modbus: ok +I (31113) modbus: add: 0, length: 10 +I (31113) modbus: Read Holding Registers +I (31213) modbus tcp: ModBusSlave_recv() +I (31213) modbus: ModbusSlaveProcess()--------------------------- +I (31213) modbus: check id... +I (31213) modbus: ok +I (31213) modbus: add: 0, length: 10 +I (31213) modbus: Read Holding Registers +I (31413) modbus tcp: ModBusSlave_recv() +I (31413) modbus: ModbusSlaveProcess()--------------------------- +I (31413) modbus: check id... +I (31413) modbus: ok +I (31413) modbus: add: 0, length: 10 +I (31413) modbus: Read Holding Registers +I (31433) modbus tcp: ModBusSlave_recv() +I (31433) modbus: ModbusSlaveProcess()--------------------------- +I (31443) modbus: check id... +I (31443) modbus: ok +I (31443) modbus: add: 0, length: 10 +I (31443) modbus: Read Holding Registers +I (31623) modbus tcp: ModBusSlave_recv() +I (31623) modbus: ModbusSlaveProcess()--------------------------- +I (31623) modbus: check id... +I (31623) modbus: ok +I (31623) modbus: add: 0, length: 10 +I (31623) modbus: Read Holding Registers +I (31663) modbus tcp: ModBusSlave_recv() +I (31663) modbus: ModbusSlaveProcess()--------------------------- +I (31663) modbus: check id... +I (31663) modbus: ok +I (31663) modbus: add: 0, length: 10 +I (31663) modbus: Read Holding Registers +I (31823) modbus tcp: ModBusSlave_recv() +I (31823) modbus: ModbusSlaveProcess()--------------------------- +I (31823) modbus: check id... +I (31823) modbus: ok +I (31823) modbus: add: 0, length: 10 +I (31823) modbus: Read Holding Registers +I (31883) modbus tcp: ModBusSlave_recv() +I (31883) modbus: ModbusSlaveProcess()--------------------------- +I (31883) modbus: check id... +I (31883) modbus: ok +I (31883) modbus: add: 0, length: 10 +I (31883) modbus: Read Holding Registers +I (32033) modbus tcp: ModBusSlave_recv() +I (32033) modbus: ModbusSlaveProcess()--------------------------- +I (32033) modbus: check id... +I (32033) modbus: ok +I (32033) modbus: add: 0, length: 10 +I (32033) modbus: Read Holding Registers +I (32133) modbus tcp: ModBusSlave_recv() +I (32133) modbus: ModbusSlaveProcess()--------------------------- +I (32133) modbus: check id... +I (32133) modbus: ok +I (32133) modbus: add: 0, length: 10 +I (32133) modbus: Read Holding Registers +I (32213) modbus tcp: ModBusSlave_recv() +I (32213) modbus: ModbusSlaveProcess()--------------------------- +I (32213) modbus: check id... +I (32213) modbus: ok +I (32213) modbus: add: 0, length: 10 +I (32213) modbus: Read Holding Registers +I (32333) modbus tcp: ModBusSlave_recv() +I (32333) modbus: ModbusSlaveProcess()--------------------------- +I (32333) modbus: check id... +I (32333) modbus: ok +I (32333) modbus: add: 0, length: 10 +I (32333) modbus: Read Holding Registers +I (32543) modbus tcp: ModBusSlave_recv() +I (32543) modbus: ModbusSlaveProcess()--------------------------- +I (32543) modbus: check id... +I (32543) modbus: ok +I (32543) modbus: add: 0, length: 10 +I (32543) modbus: Read Holding Registers +I (32563) modbus tcp: ModBusSlave_recv() +I (32563) modbus: ModbusSlaveProcess()--------------------------- +I (32563) modbus: check id... +I (32563) modbus: ok +I (32563) modbus: add: 0, length: 10 +I (32563) modbus: Read Holding Registers +I (32743) modbus tcp: ModBusSlave_recv() +I (32743) modbus: ModbusSlaveProcess()--------------------------- +I (32743) modbus: check id... +I (32743) modbus: ok +I (32743) modbus: add: 0, length: 10 +I (32743) modbus: Read Holding Registers +I (32783) modbus tcp: ModBusSlave_recv() +I (32783) modbus: ModbusSlaveProcess()--------------------------- +I (32783) modbus: check id... +I (32783) modbus: ok +I (32783) modbus: add: 0, length: 10 +I (32783) modbus: Read Holding Registers +I (32953) modbus tcp: ModBusSlave_recv() +I (32953) modbus: ModbusSlaveProcess()--------------------------- +I (32953) modbus: check id... +I (32953) modbus: ok +I (32953) modbus: add: 0, length: 10 +I (32953) modbus: Read Holding Registers +I (32993) modbus tcp: ModBusSlave_recv() +I (32993) modbus: ModbusSlaveProcess()--------------------------- +I (32993) modbus: check id... +I (32993) modbus: ok +I (32993) modbus: add: 0, length: 10 +I (32993) modbus: Read Holding Registers +I (33153) modbus tcp: ModBusSlave_recv() +I (33153) modbus: ModbusSlaveProcess()--------------------------- +I (33153) modbus: check id... +I (33153) modbus: ok +I (33153) modbus: add: 0, length: 10 +I (33153) modbus: Read Holding Registers +I (33213) modbus tcp: ModBusSlave_recv() +I (33213) modbus: ModbusSlaveProcess()--------------------------- +I (33213) modbus: check id... +I (33213) modbus: ok +I (33213) modbus: add: 0, length: 10 +I (33213) modbus: Read Holding Registers +I (33363) modbus tcp: ModBusSlave_recv() +I (33363) modbus: ModbusSlaveProcess()--------------------------- +I (33363) modbus: check id... +I (33363) modbus: ok +I (33363) modbus: add: 0, length: 10 +I (33363) modbus: Read Holding Registers +I (33463) modbus tcp: ModBusSlave_recv() +I (33463) modbus: ModbusSlaveProcess()--------------------------- +I (33463) modbus: check id... +I (33463) modbus: ok +I (33463) modbus: add: 0, length: 10 +I (33463) modbus: Read Holding Registers +I (33543) modbus tcp: ModBusSlave_recv() +I (33543) modbus: ModbusSlaveProcess()--------------------------- +I (33543) modbus: check id... +I (33543) modbus: ok +I (33543) modbus: add: 0, length: 10 +I (33543) modbus: Read Holding Registers +I (33663) modbus tcp: ModBusSlave_recv() +I (33663) modbus: ModbusSlaveProcess()--------------------------- +I (33663) modbus: check id... +I (33673) modbus: ok +I (33673) modbus: add: 0, length: 10 +I (33673) modbus: Read Holding Registers +I (33873) modbus tcp: ModBusSlave_recv() +I (33873) modbus: ModbusSlaveProcess()--------------------------- +I (33873) modbus: check id... +I (33873) modbus: ok +I (33873) modbus: add: 0, length: 10 +I (33873) modbus: Read Holding Registers +I (33893) modbus tcp: ModBusSlave_recv() +I (33903) modbus: ModbusSlaveProcess()--------------------------- +I (33903) modbus: check id... +I (33903) modbus: ok +I (33903) modbus: add: 0, length: 10 +I (33903) modbus: Read Holding Registers +I (33993) modbus tcp: ModBusSlave_recv() +I (33993) modbus: ModbusSlaveProcess()--------------------------- +I (33993) modbus: check id... +I (33993) modbus: ok +I (33993) modbus: add: 0, length: 10 +I (33993) modbus: Read Holding Registers +I (34183) modbus tcp: ModBusSlave_recv() +I (34183) modbus: ModbusSlaveProcess()--------------------------- +I (34183) modbus: check id... +I (34183) modbus: ok +I (34183) modbus: add: 0, length: 10 +I (34183) modbus: Read Holding Registers +I (34223) modbus tcp: ModBusSlave_recv() +I (34233) modbus: ModbusSlaveProcess()--------------------------- +I (34233) modbus: check id... +I (34233) modbus: ok +I (34233) modbus: add: 0, length: 10 +I (34233) modbus: Read Holding Registers +I (34383) modbus tcp: ModBusSlave_recv() +I (34383) modbus: ModbusSlaveProcess()--------------------------- +I (34383) modbus: check id... +I (34383) modbus: ok +I (34383) modbus: add: 0, length: 10 +I (34383) modbus: Read Holding Registers +I (34453) modbus tcp: ModBusSlave_recv() +I (34453) modbus: ModbusSlaveProcess()--------------------------- +I (34453) modbus: check id... +I (34453) modbus: ok +I (34453) modbus: add: 0, length: 10 +I (34453) modbus: Read Holding Registers +I (34593) modbus tcp: ModBusSlave_recv() +I (34593) modbus: ModbusSlaveProcess()--------------------------- +I (34593) modbus: check id... +I (34593) modbus: ok +I (34593) modbus: add: 0, length: 10 +I (34593) modbus: Read Holding Registers +I (34673) modbus tcp: ModBusSlave_recv() +I (34673) modbus: ModbusSlaveProcess()--------------------------- +I (34673) modbus: check id... +I (34673) modbus: ok +I (34673) modbus: add: 0, length: 10 +I (34673) modbus: Read Holding Registers +I (34793) modbus tcp: ModBusSlave_recv() +I (34793) modbus: ModbusSlaveProcess()--------------------------- +I (34793) modbus: check id... +I (34793) modbus: ok +I (34793) modbus: add: 0, length: 10 +I (34793) modbus: Read Holding Registers +I (34883) modbus tcp: ModBusSlave_recv() +I (34883) modbus: ModbusSlaveProcess()--------------------------- +I (34883) modbus: check id... +I (34883) modbus: ok +I (34883) modbus: add: 0, length: 10 +I (34883) modbus: Read Holding Registers +I (34993) modbus tcp: ModBusSlave_recv() +I (34993) modbus: ModbusSlaveProcess()--------------------------- +I (35003) modbus: check id... +I (35003) modbus: ok +I (35003) modbus: add: 0, length: 10 +I (35003) modbus: Read Holding Registers +I (35103) modbus tcp: ModBusSlave_recv() +I (35103) modbus: ModbusSlaveProcess()--------------------------- +I (35103) modbus: check id... +I (35103) modbus: ok +I (35103) modbus: add: 0, length: 10 +I (35103) modbus: Read Holding Registers +I (35303) modbus tcp: ModBusSlave_recv() +I (35303) modbus: ModbusSlaveProcess()--------------------------- +I (35303) modbus: check id... +I (35303) modbus: ok +I (35303) modbus: add: 0, length: 10 +I (35303) modbus: Read Holding Registers +I (35323) modbus tcp: ModBusSlave_recv() +I (35323) modbus: ModbusSlaveProcess()--------------------------- +I (35333) modbus: check id... +I (35333) modbus: ok +I (35333) modbus: add: 0, length: 10 +I (35333) modbus: Read Holding Registers +I (35433) modbus tcp: ModBusSlave_recv() +I (35433) modbus: ModbusSlaveProcess()--------------------------- +I (35433) modbus: check id... +I (35433) modbus: ok +I (35433) modbus: add: 0, length: 10 +I (35433) modbus: Read Holding Registers +I (35543) modbus tcp: ModBusSlave_recv() +I (35543) modbus: ModbusSlaveProcess()--------------------------- +I (35543) modbus: check id... +I (35543) modbus: ok +I (35543) modbus: add: 0, length: 10 +I (35543) modbus: Read Holding Registers +I (35713) modbus tcp: ModBusSlave_recv() +I (35713) modbus: ModbusSlaveProcess()--------------------------- +I (35713) modbus: check id... +I (35713) modbus: ok +I (35713) modbus: add: 0, length: 10 +I (35713) modbus: Read Holding Registers +I (35753) modbus tcp: ModBusSlave_recv() +I (35763) modbus: ModbusSlaveProcess()--------------------------- +I (35763) modbus: check id... +I (35763) modbus: ok +I (35763) modbus: add: 0, length: 10 +I (35763) modbus: Read Holding Registers +I (35923) modbus tcp: ModBusSlave_recv() +I (35923) modbus: ModbusSlaveProcess()--------------------------- +I (35923) modbus: check id... +I (35923) modbus: ok +I (35923) modbus: add: 0, length: 10 +I (35923) modbus: Read Holding Registers +I (35973) modbus tcp: ModBusSlave_recv() +I (35973) modbus: ModbusSlaveProcess()--------------------------- +I (35973) modbus: check id... +I (35973) modbus: ok +I (35973) modbus: add: 0, length: 10 +I (35973) modbus: Read Holding Registers +I (36123) modbus tcp: ModBusSlave_recv() +I (36123) modbus: ModbusSlaveProcess()--------------------------- +I (36123) modbus: check id... +I (36123) modbus: ok +I (36123) modbus: add: 0, length: 10 +I (36123) modbus: Read Holding Registers +I (36203) modbus tcp: ModBusSlave_recv() +I (36203) modbus: ModbusSlaveProcess()--------------------------- +I (36203) modbus: check id... +I (36203) modbus: ok +I (36203) modbus: add: 0, length: 10 +I (36203) modbus: Read Holding Registers +I (36333) modbus tcp: ModBusSlave_recv() +I (36333) modbus: ModbusSlaveProcess()--------------------------- +I (36333) modbus: check id... +I (36333) modbus: ok +I (36333) modbus: add: 0, length: 10 +I (36333) modbus: Read Holding Registers +I (36433) modbus tcp: ModBusSlave_recv() +I (36433) modbus: ModbusSlaveProcess()--------------------------- +I (36433) modbus: check id... +I (36433) modbus: ok +I (36433) modbus: add: 0, length: 10 +I (36433) modbus: Read Holding Registers +I (36643) modbus tcp: ModBusSlave_recv() +I (36643) modbus: ModbusSlaveProcess()--------------------------- +I (36643) modbus: check id... +I (36643) modbus: ok +I (36643) modbus: add: 0, length: 10 +I (36643) modbus: Read Holding Registers +I (36653) modbus tcp: ModBusSlave_recv() +I (36653) modbus: ModbusSlaveProcess()--------------------------- +I (36653) modbus: check id... +I (36653) modbus: ok +I (36653) modbus: add: 0, length: 10 +I (36653) modbus: Read Holding Registers +I (36763) modbus tcp: ModBusSlave_recv() +I (36763) modbus: ModbusSlaveProcess()--------------------------- +I (36763) modbus: check id... +I (36763) modbus: ok +I (36763) modbus: add: 0, length: 10 +I (36763) modbus: Read Holding Registers +I (36943) modbus tcp: ModBusSlave_recv() +I (36943) modbus: ModbusSlaveProcess()--------------------------- +I (36943) modbus: check id... +I (36943) modbus: ok +I (36943) modbus: add: 0, length: 10 +I (36943) modbus: Read Holding Registers +I (36983) modbus tcp: ModBusSlave_recv() +I (36993) modbus: ModbusSlaveProcess()--------------------------- +I (36993) modbus: check id... +I (36993) modbus: ok +I (36993) modbus: add: 0, length: 10 +I (36993) modbus: Read Holding Registers +I (37153) modbus tcp: ModBusSlave_recv() +I (37153) modbus: ModbusSlaveProcess()--------------------------- +I (37153) modbus: check id... +I (37153) modbus: ok +I (37153) modbus: add: 0, length: 10 +I (37153) modbus: Read Holding Registers +I (37253) modbus tcp: ModBusSlave_recv() +I (37253) modbus: ModbusSlaveProcess()--------------------------- +I (37253) modbus: check id... +I (37253) modbus: ok +I (37253) modbus: add: 0, length: 10 +I (37253) modbus: Read Holding Registers +I (37353) modbus tcp: ModBusSlave_recv() +I (37353) modbus: ModbusSlaveProcess()--------------------------- +I (37353) modbus: check id... +I (37353) modbus: ok +I (37353) modbus: add: 0, length: 10 +I (37353) modbus: Read Holding Registers +I (37433) modbus tcp: ModBusSlave_recv() +I (37433) modbus: ModbusSlaveProcess()--------------------------- +I (37433) modbus: check id... +I (37433) modbus: ok +I (37433) modbus: add: 0, length: 10 +I (37433) modbus: Read Holding Registers +I (37543) modbus tcp: ModBusSlave_recv() +I (37543) modbus: ModbusSlaveProcess()--------------------------- +I (37543) modbus: check id... +I (37543) modbus: ok +I (37543) modbus: add: 0, length: 10 +I (37543) modbus: Read Holding Registers +I (37763) modbus tcp: ModBusSlave_recv() +I (37763) modbus: ModbusSlaveProcess()--------------------------- +I (37763) modbus: check id... +I (37763) modbus: ok +I (37763) modbus: add: 0, length: 10 +I (37763) modbus: Read Holding Registers +I (37783) modbus tcp: ModBusSlave_recv() +I (37783) modbus: ModbusSlaveProcess()--------------------------- +I (37783) modbus: check id... +I (37783) modbus: ok +I (37783) modbus: add: 0, length: 10 +I (37783) modbus: Read Holding Registers +I (37893) modbus tcp: ModBusSlave_recv() +I (37893) modbus: ModbusSlaveProcess()--------------------------- +I (37893) modbus: check id... +I (37893) modbus: ok +I (37893) modbus: add: 0, length: 10 +I (37893) modbus: Read Holding Registers +I (38003) modbus tcp: ModBusSlave_recv() +I (38003) modbus: ModbusSlaveProcess()--------------------------- +I (38003) modbus: check id... +I (38003) modbus: ok +I (38003) modbus: add: 0, length: 10 +I (38003) modbus: Read Holding Registers +I (38113) modbus tcp: ModBusSlave_recv() +I (38113) modbus: ModbusSlaveProcess()--------------------------- +I (38113) modbus: check id... +I (38113) modbus: ok +I (38113) modbus: add: 0, length: 10 +I (38113) modbus: Read Holding Registers +I (38273) modbus tcp: ModBusSlave_recv() +I (38273) modbus: ModbusSlaveProcess()--------------------------- +I (38273) modbus: check id... +I (38273) modbus: ok +I (38273) modbus: add: 0, length: 10 +I (38273) modbus: Read Holding Registers +I (38333) modbus tcp: ModBusSlave_recv() +I (38333) modbus: ModbusSlaveProcess()--------------------------- +I (38333) modbus: check id... +I (38333) modbus: ok +I (38333) modbus: add: 0, length: 10 +I (38333) modbus: Read Holding Registers +I (38483) modbus tcp: ModBusSlave_recv() +I (38483) modbus: ModbusSlaveProcess()--------------------------- +I (38483) modbus: check id... +I (38483) modbus: ok +I (38483) modbus: add: 0, length: 10 +I (38483) modbus: Read Holding Registers +I (38583) modbus tcp: ModBusSlave_recv() +I (38583) modbus: ModbusSlaveProcess()--------------------------- +I (38583) modbus: check id... +I (38583) modbus: ok +I (38583) modbus: add: 0, length: 10 +I (38583) modbus: Read Holding Registers +I (38663) modbus tcp: ModBusSlave_recv() +I (38663) modbus: ModbusSlaveProcess()--------------------------- +I (38663) modbus: check id... +I (38663) modbus: ok +I (38663) modbus: add: 0, length: 10 +I (38663) modbus: Read Holding Registers +I (38783) modbus tcp: ModBusSlave_recv() +I (38793) modbus: ModbusSlaveProcess()--------------------------- +I (38793) modbus: check id... +I (38793) modbus: ok +I (38793) modbus: add: 0, length: 10 +I (38793) modbus: Read Holding Registers +I (38893) modbus tcp: ModBusSlave_recv() +I (38893) modbus: ModbusSlaveProcess()--------------------------- +I (38893) modbus: check id... +I (38893) modbus: ok +I (38893) modbus: add: 0, length: 10 +I (38893) modbus: Read Holding Registers +I (39093) modbus tcp: ModBusSlave_recv() +I (39093) modbus: ModbusSlaveProcess()--------------------------- +I (39093) modbus: check id... +I (39093) modbus: ok +I (39093) modbus: add: 0, length: 10 +I (39093) modbus: Read Holding Registers +I (39133) modbus tcp: ModBusSlave_recv() +I (39133) modbus: ModbusSlaveProcess()--------------------------- +I (39133) modbus: check id... +I (39133) modbus: ok +I (39133) modbus: add: 0, length: 10 +I (39133) modbus: Read Holding Registers +I (39223) modbus tcp: ModBusSlave_recv() +I (39223) modbus: ModbusSlaveProcess()--------------------------- +I (39223) modbus: check id... +I (39223) modbus: ok +I (39223) modbus: add: 0, length: 10 +I (39223) modbus: Read Holding Registers +I (39403) modbus tcp: ModBusSlave_recv() +I (39403) modbus: ModbusSlaveProcess()--------------------------- +I (39403) modbus: check id... +I (39403) modbus: ok +I (39403) modbus: add: 0, length: 10 +I (39403) modbus: Read Holding Registers +I (39443) modbus tcp: ModBusSlave_recv() +I (39443) modbus: ModbusSlaveProcess()--------------------------- +I (39443) modbus: check id... +I (39443) modbus: ok +I (39443) modbus: add: 0, length: 10 +I (39443) modbus: Read Holding Registers +I (39603) modbus tcp: ModBusSlave_recv() +I (39613) modbus: ModbusSlaveProcess()--------------------------- +I (39613) modbus: check id... +I (39613) modbus: ok +I (39613) modbus: add: 0, length: 10 +I (39613) modbus: Read Holding Registers +I (39703) modbus tcp: ModBusSlave_recv() +I (39703) modbus: ModbusSlaveProcess()--------------------------- +I (39713) modbus: check id... +I (39713) modbus: ok +I (39713) modbus: add: 0, length: 10 +I (39713) modbus: Read Holding Registers +I (39813) modbus tcp: ModBusSlave_recv() +I (39813) modbus: ModbusSlaveProcess()--------------------------- +I (39813) modbus: check id... +I (39813) modbus: ok +I (39813) modbus: add: 0, length: 10 +I (39813) modbus: Read Holding Registers +I (39893) modbus tcp: ModBusSlave_recv() +I (39893) modbus: ModbusSlaveProcess()--------------------------- +I (39893) modbus: check id... +I (39893) modbus: ok +I (39893) modbus: add: 0, length: 10 +I (39893) modbus: Read Holding Registers +I (40013) modbus tcp: ModBusSlave_recv() +I (40013) modbus: ModbusSlaveProcess()--------------------------- +I (40013) modbus: check id... +I (40013) modbus: ok +I (40013) modbus: add: 0, length: 10 +I (40013) modbus: Read Holding Registers +I (40123) modbus tcp: ModBusSlave_recv() +I (40123) modbus: ModbusSlaveProcess()--------------------------- +I (40123) modbus: check id... +I (40123) modbus: ok +I (40123) modbus: add: 0, length: 10 +I (40123) modbus: Read Holding Registers +I (40223) modbus tcp: ModBusSlave_recv() +I (40223) modbus: ModbusSlaveProcess()--------------------------- +I (40223) modbus: check id... +I (40223) modbus: ok +I (40223) modbus: add: 0, length: 10 +I (40223) modbus: Read Holding Registers +I (40423) modbus tcp: ModBusSlave_recv() +I (40423) modbus: ModbusSlaveProcess()--------------------------- +I (40423) modbus: check id... +I (40423) modbus: ok +I (40433) modbus: add: 0, length: 10 +I (40433) modbus: Read Holding Registers +I (40453) modbus tcp: ModBusSlave_recv() +I (40453) modbus: ModbusSlaveProcess()--------------------------- +I (40453) modbus: check id... +I (40453) modbus: ok +I (40453) modbus: add: 0, length: 10 +I (40453) modbus: Read Holding Registers +I (40553) modbus tcp: ModBusSlave_recv() +I (40553) modbus: ModbusSlaveProcess()--------------------------- +I (40553) modbus: check id... +I (40553) modbus: ok +I (40553) modbus: add: 0, length: 10 +I (40553) modbus: Read Holding Registers +I (40733) modbus tcp: ModBusSlave_recv() +I (40733) modbus: ModbusSlaveProcess()--------------------------- +I (40733) modbus: check id... +I (40733) modbus: ok +I (40733) modbus: add: 0, length: 10 +I (40733) modbus: Read Holding Registers +I (40773) modbus tcp: ModBusSlave_recv() +I (40773) modbus: ModbusSlaveProcess()--------------------------- +I (40773) modbus: check id... +I (40773) modbus: ok +I (40773) modbus: add: 0, length: 10 +I (40773) modbus: Read Holding Registers +I (40943) modbus tcp: ModBusSlave_recv() +I (40943) modbus: ModbusSlaveProcess()--------------------------- +I (40943) modbus: check id... +I (40943) modbus: ok +I (40943) modbus: add: 0, length: 10 +I (40943) modbus: Read Holding Registers +I (40993) modbus tcp: ModBusSlave_recv() +I (40993) modbus: ModbusSlaveProcess()--------------------------- +I (40993) modbus: check id... +I (40993) modbus: ok +I (40993) modbus: add: 0, length: 10 +I (40993) modbus: Read Holding Registers +I (41143) modbus tcp: ModBusSlave_recv() +I (41143) modbus: ModbusSlaveProcess()--------------------------- +I (41143) modbus: check id... +I (41143) modbus: ok +I (41143) modbus: add: 0, length: 10 +I (41143) modbus: Read Holding Registers +I (41243) modbus tcp: ModBusSlave_recv() +I (41243) modbus: ModbusSlaveProcess()--------------------------- +I (41243) modbus: check id... +I (41243) modbus: ok +I (41243) modbus: add: 0, length: 10 +I (41243) modbus: Read Holding Registers +I (41343) modbus tcp: ModBusSlave_recv() +I (41343) modbus: ModbusSlaveProcess()--------------------------- +I (41353) modbus: check id... +I (41353) modbus: ok +I (41353) modbus: add: 0, length: 10 +I (41353) modbus: Read Holding Registers +I (41453) modbus tcp: ModBusSlave_recv() +I (41453) modbus: ModbusSlaveProcess()--------------------------- +I (41453) modbus: check id... +I (41453) modbus: ok +I (41453) modbus: add: 0, length: 10 +I (41453) modbus: Read Holding Registers +I (41653) modbus tcp: ModBusSlave_recv() +I (41653) modbus: ModbusSlaveProcess()--------------------------- +I (41653) modbus: check id... +I (41653) modbus: ok +I (41653) modbus: add: 0, length: 10 +I (41653) modbus: Read Holding Registers +I (41673) modbus tcp: ModBusSlave_recv() +I (41673) modbus: ModbusSlaveProcess()--------------------------- +I (41673) modbus: check id... +I (41673) modbus: ok +I (41673) modbus: add: 0, length: 10 +I (41673) modbus: Read Holding Registers +I (41783) modbus tcp: ModBusSlave_recv() +I (41783) modbus: ModbusSlaveProcess()--------------------------- +I (41783) modbus: check id... +I (41783) modbus: ok +I (41783) modbus: add: 0, length: 10 +I (41783) modbus: Read Holding Registers +I (41963) modbus tcp: ModBusSlave_recv() +I (41963) modbus: ModbusSlaveProcess()--------------------------- +I (41963) modbus: check id... +I (41963) modbus: ok +I (41963) modbus: add: 0, length: 10 +I (41963) modbus: Read Holding Registers +I (41983) modbus tcp: ModBusSlave_recv() +I (41983) modbus: ModbusSlaveProcess()--------------------------- +I (41983) modbus: check id... +I (41983) modbus: ok +I (41993) modbus: add: 0, length: 10 +I (41993) modbus: Read Holding Registers +I (42163) modbus tcp: ModBusSlave_recv() +I (42163) modbus: ModbusSlaveProcess()--------------------------- +I (42173) modbus: check id... +I (42173) modbus: ok +I (42173) modbus: add: 0, length: 10 +I (42173) modbus: Read Holding Registers +I (42213) modbus tcp: ModBusSlave_recv() +I (42213) modbus: ModbusSlaveProcess()--------------------------- +I (42213) modbus: check id... +I (42213) modbus: ok +I (42213) modbus: add: 0, length: 10 +I (42213) modbus: Read Holding Registers +I (42373) modbus tcp: ModBusSlave_recv() +I (42373) modbus: ModbusSlaveProcess()--------------------------- +I (42373) modbus: check id... +I (42373) modbus: ok +I (42373) modbus: add: 0, length: 10 +I (42373) modbus: Read Holding Registers +I (42433) modbus tcp: ModBusSlave_recv() +I (42433) modbus: ModbusSlaveProcess()--------------------------- +I (42433) modbus: check id... +I (42433) modbus: ok +I (42433) modbus: add: 0, length: 10 +I (42433) modbus: Read Holding Registers +I (42543) modbus tcp: ModBusSlave_recv() +I (42543) modbus: ModbusSlaveProcess()--------------------------- +I (42543) modbus: check id... +I (42543) modbus: ok +I (42543) modbus: add: 0, length: 10 +I (42543) modbus: Read Holding Registers +I (42683) modbus tcp: ModBusSlave_recv() +I (42683) modbus: ModbusSlaveProcess()--------------------------- +I (42683) modbus: check id... +I (42683) modbus: ok +I (42683) modbus: add: 0, length: 10 +I (42683) modbus: Read Holding Registers +I (42763) modbus tcp: ModBusSlave_recv() +I (42763) modbus: ModbusSlaveProcess()--------------------------- +I (42763) modbus: check id... +I (42763) modbus: ok +I (42763) modbus: add: 0, length: 10 +I (42763) modbus: Read Holding Registers +I (42873) modbus tcp: ModBusSlave_recv() +I (42873) modbus: ModbusSlaveProcess()--------------------------- +I (42873) modbus: check id... +I (42873) modbus: ok +I (42873) modbus: add: 0, length: 10 +I (42873) modbus: Read Holding Registers +I (42983) modbus tcp: ModBusSlave_recv() +I (42983) modbus: ModbusSlaveProcess()--------------------------- +I (42983) modbus: check id... +I (42983) modbus: ok +I (42983) modbus: add: 0, length: 10 +I (42983) modbus: Read Holding Registers +I (43093) modbus tcp: ModBusSlave_recv() +I (43093) modbus: ModbusSlaveProcess()--------------------------- +I (43093) modbus: check id... +I (43093) modbus: ok +I (43093) modbus: add: 0, length: 10 +I (43093) modbus: Read Holding Registers +I (43213) modbus tcp: ModBusSlave_recv() +I (43213) modbus: ModbusSlaveProcess()--------------------------- +I (43213) modbus: check id... +I (43213) modbus: ok +I (43213) modbus: add: 0, length: 10 +I (43213) modbus: Read Holding Registers +I (43393) modbus tcp: ModBusSlave_recv() +I (43393) modbus: ModbusSlaveProcess()--------------------------- +I (43393) modbus: check id... +I (43393) modbus: ok +I (43393) modbus: add: 0, length: 10 +I (43393) modbus: Read Holding Registers +I (43423) modbus tcp: ModBusSlave_recv() +I (43423) modbus: ModbusSlaveProcess()--------------------------- +I (43433) modbus: check id... +I (43433) modbus: ok +I (43433) modbus: add: 0, length: 10 +I (43433) modbus: Read Holding Registers +I (43603) modbus tcp: ModBusSlave_recv() +I (43603) modbus: ModbusSlaveProcess()--------------------------- +I (43603) modbus: check id... +I (43603) modbus: ok +I (43603) modbus: add: 0, length: 10 +I (43603) modbus: Read Holding Registers +I (43653) modbus tcp: ModBusSlave_recv() +I (43653) modbus: ModbusSlaveProcess()--------------------------- +I (43653) modbus: check id... +I (43653) modbus: ok +I (43653) modbus: add: 0, length: 10 +I (43653) modbus: Read Holding Registers +I (43803) modbus tcp: ModBusSlave_recv() +I (43803) modbus: ModbusSlaveProcess()--------------------------- +I (43803) modbus: check id... +I (43803) modbus: ok +I (43803) modbus: add: 0, length: 10 +I (43803) modbus: Read Holding Registers +I (43873) modbus tcp: ModBusSlave_recv() +I (43873) modbus: ModbusSlaveProcess()--------------------------- +I (43873) modbus: check id... +I (43873) modbus: ok +I (43873) modbus: add: 0, length: 10 +I (43873) modbus: Read Holding Registers +I (44013) modbus tcp: ModBusSlave_recv() +I (44013) modbus: ModbusSlaveProcess()--------------------------- +I (44013) modbus: check id... +I (44013) modbus: ok +I (44013) modbus: add: 0, length: 10 +I (44013) modbus: Read Holding Registers +I (44093) modbus tcp: ModBusSlave_recv() +I (44093) modbus: ModbusSlaveProcess()--------------------------- +I (44093) modbus: check id... +I (44093) modbus: ok +I (44093) modbus: add: 0, length: 10 +I (44093) modbus: Read Holding Registers +I (44213) modbus tcp: ModBusSlave_recv() +I (44213) modbus: ModbusSlaveProcess()--------------------------- +I (44213) modbus: check id... +I (44213) modbus: ok +I (44213) modbus: add: 0, length: 10 +I (44213) modbus: Read Holding Registers +I (44313) modbus tcp: ModBusSlave_recv() +I (44313) modbus: ModbusSlaveProcess()--------------------------- +I (44313) modbus: check id... +I (44313) modbus: ok +I (44313) modbus: add: 0, length: 10 +I (44313) modbus: Read Holding Registers +I (44413) modbus tcp: ModBusSlave_recv() +I (44413) modbus: ModbusSlaveProcess()--------------------------- +I (44413) modbus: check id... +I (44413) modbus: ok +I (44413) modbus: add: 0, length: 10 +I (44413) modbus: Read Holding Registers +I (44623) modbus tcp: ModBusSlave_recv() +I (44623) modbus: ModbusSlaveProcess()--------------------------- +I (44623) modbus: check id... +I (44623) modbus: ok +I (44623) modbus: add: 0, length: 10 +I (44623) modbus: Read Holding Registers +I (44643) modbus tcp: ModBusSlave_recv() +I (44643) modbus: ModbusSlaveProcess()--------------------------- +I (44643) modbus: check id... +I (44643) modbus: ok +I (44643) modbus: add: 0, length: 10 +I (44643) modbus: Read Holding Registers +I (44833) modbus tcp: ModBusSlave_recv() +I (44833) modbus: ModbusSlaveProcess()--------------------------- +I (44833) modbus: check id... +I (44833) modbus: ok +I (44833) modbus: add: 0, length: 10 +I (44833) modbus: Read Holding Registers +I (44883) modbus tcp: ModBusSlave_recv() +I (44883) modbus: ModbusSlaveProcess()--------------------------- +I (44883) modbus: check id... +I (44883) modbus: ok +I (44883) modbus: add: 0, length: 10 +I (44883) modbus: Read Holding Registers +I (44993) modbus tcp: ModBusSlave_recv() +I (44993) modbus: ModbusSlaveProcess()--------------------------- +I (44993) modbus: check id... +I (44993) modbus: ok +I (44993) modbus: add: 0, length: 10 +I (44993) modbus: Read Holding Registers +I (45133) modbus tcp: ModBusSlave_recv() +I (45143) modbus: ModbusSlaveProcess()--------------------------- +I (45143) modbus: check id... +I (45143) modbus: ok +I (45143) modbus: add: 0, length: 10 +I (45143) modbus: Read Holding Registers +I (45243) modbus tcp: ModBusSlave_recv() +I (45243) modbus: ModbusSlaveProcess()--------------------------- +I (45243) modbus: check id... +I (45243) modbus: ok +I (45243) modbus: add: 0, length: 10 +I (45243) modbus: Read Holding Registers +I (45323) modbus tcp: ModBusSlave_recv() +I (45323) modbus: ModbusSlaveProcess()--------------------------- +I (45323) modbus: check id... +I (45323) modbus: ok +I (45323) modbus: add: 0, length: 10 +I (45323) modbus: Read Holding Registers +I (45443) modbus tcp: ModBusSlave_recv() +I (45443) modbus: ModbusSlaveProcess()--------------------------- +I (45443) modbus: check id... +I (45443) modbus: ok +I (45443) modbus: add: 0, length: 10 +I (45443) modbus: Read Holding Registers +I (45653) modbus tcp: ModBusSlave_recv() +I (45653) modbus: ModbusSlaveProcess()--------------------------- +I (45653) modbus: check id... +I (45653) modbus: ok +I (45653) modbus: add: 0, length: 10 +I (45653) modbus: Read Holding Registers +I (45683) modbus tcp: ModBusSlave_recv() +I (45683) modbus: ModbusSlaveProcess()--------------------------- +I (45683) modbus: check id... +I (45683) modbus: ok +I (45683) modbus: add: 0, length: 10 +I (45683) modbus: Read Holding Registers +I (45773) modbus tcp: ModBusSlave_recv() +I (45773) modbus: ModbusSlaveProcess()--------------------------- +I (45773) modbus: check id... +I (45773) modbus: ok +I (45773) modbus: add: 0, length: 10 +I (45773) modbus: Read Holding Registers +I (45953) modbus tcp: ModBusSlave_recv() +I (45953) modbus: ModbusSlaveProcess()--------------------------- +I (45953) modbus: check id... +I (45953) modbus: ok +I (45953) modbus: add: 0, length: 10 +I (45953) modbus: Read Holding Registers +I (45993) modbus tcp: ModBusSlave_recv() +I (45993) modbus: ModbusSlaveProcess()--------------------------- +I (45993) modbus: check id... +I (45993) modbus: ok +I (45993) modbus: add: 0, length: 10 +I (45993) modbus: Read Holding Registers +I (46163) modbus tcp: ModBusSlave_recv() +I (46163) modbus: ModbusSlaveProcess()--------------------------- +I (46163) modbus: check id... +I (46163) modbus: ok +I (46163) modbus: add: 0, length: 10 +I (46163) modbus: Read Holding Registers +I (46213) modbus tcp: ModBusSlave_recv() +I (46213) modbus: ModbusSlaveProcess()--------------------------- +I (46213) modbus: check id... +I (46213) modbus: ok +I (46213) modbus: add: 0, length: 10 +I (46213) modbus: Read Holding Registers +I (46363) modbus tcp: ModBusSlave_recv() +I (46363) modbus: ModbusSlaveProcess()--------------------------- +I (46363) modbus: check id... +I (46363) modbus: ok +I (46363) modbus: add: 0, length: 10 +I (46363) modbus: Read Holding Registers +I (46463) modbus tcp: ModBusSlave_recv() +I (46473) modbus: ModbusSlaveProcess()--------------------------- +I (46473) modbus: check id... +I (46473) modbus: ok +I (46473) modbus: add: 0, length: 10 +I (46473) modbus: Read Holding Registers +I (46543) modbus tcp: ModBusSlave_recv() +I (46543) modbus: ModbusSlaveProcess()--------------------------- +I (46543) modbus: check id... +I (46543) modbus: ok +I (46543) modbus: add: 0, length: 10 +I (46543) modbus: Read Holding Registers +I (46653) modbus tcp: ModBusSlave_recv() +I (46653) modbus: ModbusSlaveProcess()--------------------------- +I (46653) modbus: check id... +I (46653) modbus: ok +I (46653) modbus: add: 0, length: 10 +I (46653) modbus: Read Holding Registers +I (46773) modbus tcp: ModBusSlave_recv() +I (46773) modbus: ModbusSlaveProcess()--------------------------- +I (46773) modbus: check id... +I (46773) modbus: ok +I (46773) modbus: add: 0, length: 10 +I (46773) modbus: Read Holding Registers +I (46873) modbus tcp: ModBusSlave_recv() +I (46873) modbus: ModbusSlaveProcess()--------------------------- +I (46873) modbus: check id... +I (46873) modbus: ok +I (46873) modbus: add: 0, length: 10 +I (46873) modbus: Read Holding Registers +I (46973) modbus tcp: ModBusSlave_recv() +I (46973) modbus: ModbusSlaveProcess()--------------------------- +I (46973) modbus: check id... +I (46973) modbus: ok +I (46973) modbus: add: 0, length: 10 +I (46973) modbus: Read Holding Registers +I (47183) modbus tcp: ModBusSlave_recv() +I (47183) modbus: ModbusSlaveProcess()--------------------------- +I (47183) modbus: check id... +I (47183) modbus: ok +I (47183) modbus: add: 0, length: 10 +I (47183) modbus: Read Holding Registers +I (47203) modbus tcp: ModBusSlave_recv() +I (47203) modbus: ModbusSlaveProcess()--------------------------- +I (47203) modbus: check id... +I (47203) modbus: ok +I (47203) modbus: add: 0, length: 10 +I (47213) modbus: Read Holding Registers +I (47393) modbus tcp: ModBusSlave_recv() +I (47393) modbus: ModbusSlaveProcess()--------------------------- +I (47393) modbus: check id... +I (47393) modbus: ok +I (47393) modbus: add: 0, length: 10 +I (47393) modbus: Read Holding Registers +I (47433) modbus tcp: ModBusSlave_recv() +I (47433) modbus: ModbusSlaveProcess()--------------------------- +I (47433) modbus: check id... +I (47433) modbus: ok +I (47433) modbus: add: 0, length: 10 +I (47433) modbus: Read Holding Registers +I (47593) modbus tcp: ModBusSlave_recv() +I (47593) modbus: ModbusSlaveProcess()--------------------------- +I (47593) modbus: check id... +I (47593) modbus: ok +I (47593) modbus: add: 0, length: 10 +I (47593) modbus: Read Holding Registers +I (47703) modbus tcp: ModBusSlave_recv() +I (47703) modbus: ModbusSlaveProcess()--------------------------- +I (47703) modbus: check id... +I (47703) modbus: ok +I (47703) modbus: add: 0, length: 10 +I (47703) modbus: Read Holding Registers +I (47763) modbus tcp: ModBusSlave_recv() +I (47763) modbus: ModbusSlaveProcess()--------------------------- +I (47763) modbus: check id... +I (47763) modbus: ok +I (47763) modbus: add: 0, length: 10 +I (47763) modbus: Read Holding Registers +I (47873) modbus tcp: ModBusSlave_recv() +I (47873) modbus: ModbusSlaveProcess()--------------------------- +I (47873) modbus: check id... +I (47873) modbus: ok +I (47873) modbus: add: 0, length: 10 +I (47873) modbus: Read Holding Registers +I (48003) modbus tcp: ModBusSlave_recv() +I (48003) modbus: ModbusSlaveProcess()--------------------------- +I (48003) modbus: check id... +I (48003) modbus: ok +I (48003) modbus: add: 0, length: 10 +I (48003) modbus: Read Holding Registers +I (48143) modbus tcp: ModBusSlave_recv() +I (48143) modbus: ModbusSlaveProcess()--------------------------- +I (48143) modbus: check id... +I (48143) modbus: ok +I (48143) modbus: add: 0, length: 10 +I (48143) modbus: Read Holding Registers +I (48193) modbus tcp: ModBusSlave_recv() +I (48193) modbus: ModbusSlaveProcess()--------------------------- +I (48193) modbus: check id... +I (48193) modbus: ok +I (48193) modbus: add: 0, length: 10 +I (48193) modbus: Read Holding Registers +I (48313) modbus tcp: ModBusSlave_recv() +I (48313) modbus: ModbusSlaveProcess()--------------------------- +I (48313) modbus: check id... +I (48313) modbus: ok +I (48313) modbus: add: 0, length: 10 +I (48313) modbus: Read Holding Registers +I (48413) modbus tcp: ModBusSlave_recv() +I (48423) modbus: ModbusSlaveProcess()--------------------------- +I (48423) modbus: check id... +I (48423) modbus: ok +I (48423) modbus: add: 0, length: 10 +I (48423) modbus: Read Holding Registers +I (48623) modbus tcp: ModBusSlave_recv() +I (48623) modbus: ModbusSlaveProcess()--------------------------- +I (48623) modbus: check id... +I (48623) modbus: ok +I (48623) modbus: add: 0, length: 10 +I (48623) modbus: Read Holding Registers +I (48633) modbus tcp: ModBusSlave_recv() +I (48633) modbus: ModbusSlaveProcess()--------------------------- +I (48633) modbus: check id... +I (48633) modbus: ok +I (48633) modbus: add: 0, length: 10 +I (48633) modbus: Read Holding Registers +I (48743) modbus tcp: ModBusSlave_recv() +I (48743) modbus: ModbusSlaveProcess()--------------------------- +I (48743) modbus: check id... +I (48743) modbus: ok +I (48743) modbus: add: 0, length: 10 +I (48743) modbus: Read Holding Registers +I (48933) modbus tcp: ModBusSlave_recv() +I (48933) modbus: ModbusSlaveProcess()--------------------------- +I (48933) modbus: check id... +I (48933) modbus: ok +I (48933) modbus: add: 0, length: 10 +I (48933) modbus: Read Holding Registers +I (48973) modbus tcp: ModBusSlave_recv() +I (48973) modbus: ModbusSlaveProcess()--------------------------- +I (48973) modbus: check id... +I (48973) modbus: ok +I (48973) modbus: add: 0, length: 10 +I (48973) modbus: Read Holding Registers +I (49083) modbus tcp: ModBusSlave_recv() +I (49083) modbus: ModbusSlaveProcess()--------------------------- +I (49083) modbus: check id... +I (49083) modbus: ok +I (49083) modbus: add: 0, length: 10 +I (49083) modbus: Read Holding Registers +I (49173) modbus tcp: ModBusSlave_recv() +I (49173) modbus: ModbusSlaveProcess()--------------------------- +I (49173) modbus: check id... +I (49173) modbus: ok +I (49173) modbus: add: 0, length: 10 +I (49173) modbus: Read Holding Registers +I (49333) modbus tcp: ModBusSlave_recv() +I (49333) modbus: ModbusSlaveProcess()--------------------------- +I (49333) modbus: check id... +I (49333) modbus: ok +I (49333) modbus: add: 0, length: 10 +I (49333) modbus: Read Holding Registers +I (49403) modbus tcp: ModBusSlave_recv() +I (49403) modbus: ModbusSlaveProcess()--------------------------- +I (49403) modbus: check id... +I (49403) modbus: ok +I (49403) modbus: add: 0, length: 10 +I (49403) modbus: Read Holding Registers +I (49513) modbus tcp: ModBusSlave_recv() +I (49513) modbus: ModbusSlaveProcess()--------------------------- +I (49513) modbus: check id... +I (49513) modbus: ok +I (49513) modbus: add: 0, length: 10 +I (49513) modbus: Read Holding Registers +I (49643) modbus tcp: ModBusSlave_recv() +I (49643) modbus: ModbusSlaveProcess()--------------------------- +I (49643) modbus: check id... +I (49643) modbus: ok +I (49643) modbus: add: 0, length: 10 +I (49643) modbus: Read Holding Registers +I (49743) modbus tcp: ModBusSlave_recv() +I (49743) modbus: ModbusSlaveProcess()--------------------------- +I (49743) modbus: check id... +I (49743) modbus: ok +I (49743) modbus: add: 0, length: 10 +I (49753) modbus: Read Holding Registers +I (49953) modbus tcp: ModBusSlave_recv() +I (49953) modbus: ModbusSlaveProcess()--------------------------- +I (49953) modbus: check id... +I (49953) modbus: ok +I (49953) modbus: add: 0, length: 10 +I (49953) modbus: Read Holding Registers +I (49983) modbus tcp: ModBusSlave_recv() +I (49983) modbus: ModbusSlaveProcess()--------------------------- +I (49983) modbus: check id... +I (49983) modbus: ok +I (49983) modbus: add: 0, length: 10 +I (49983) modbus: Read Holding Registers +I (50073) modbus tcp: ModBusSlave_recv() +I (50073) modbus: ModbusSlaveProcess()--------------------------- +I (50073) modbus: check id... +I (50073) modbus: ok +I (50073) modbus: add: 0, length: 10 +I (50073) modbus: Read Holding Registers +I (50263) modbus tcp: ModBusSlave_recv() +I (50263) modbus: ModbusSlaveProcess()--------------------------- +I (50263) modbus: check id... +I (50263) modbus: ok +I (50263) modbus: add: 0, length: 10 +I (50263) modbus: Read Holding Registers +I (50293) modbus tcp: ModBusSlave_recv() +I (50293) modbus: ModbusSlaveProcess()--------------------------- +I (50293) modbus: check id... +I (50293) modbus: ok +I (50293) modbus: add: 0, length: 10 +I (50293) modbus: Read Holding Registers +I (50463) modbus tcp: ModBusSlave_recv() +I (50463) modbus: ModbusSlaveProcess()--------------------------- +I (50463) modbus: check id... +I (50463) modbus: ok +I (50463) modbus: add: 0, length: 10 +I (50463) modbus: Read Holding Registers +I (50513) modbus tcp: ModBusSlave_recv() +I (50513) modbus: ModbusSlaveProcess()--------------------------- +I (50513) modbus: check id... +I (50513) modbus: ok +I (50513) modbus: add: 0, length: 10 +I (50513) modbus: Read Holding Registers +I (50623) modbus tcp: ModBusSlave_recv() +I (50623) modbus: ModbusSlaveProcess()--------------------------- +I (50623) modbus: check id... +I (50623) modbus: ok +I (50623) modbus: add: 0, length: 10 +I (50623) modbus: Read Holding Registers +I (50733) modbus tcp: ModBusSlave_recv() +I (50733) modbus: ModbusSlaveProcess()--------------------------- +I (50733) modbus: check id... +I (50733) modbus: ok +I (50733) modbus: add: 0, length: 10 +I (50733) modbus: Read Holding Registers +I (50873) modbus tcp: ModBusSlave_recv() +I (50873) modbus: ModbusSlaveProcess()--------------------------- +I (50873) modbus: check id... +I (50873) modbus: ok +I (50873) modbus: add: 0, length: 10 +I (50873) modbus: Read Holding Registers +I (50953) modbus tcp: ModBusSlave_recv() +I (50953) modbus: ModbusSlaveProcess()--------------------------- +I (50953) modbus: check id... +I (50953) modbus: ok +I (50953) modbus: add: 0, length: 10 +I (50953) modbus: Read Holding Registers +I (51053) modbus tcp: ModBusSlave_recv() +I (51053) modbus: ModbusSlaveProcess()--------------------------- +I (51053) modbus: check id... +I (51053) modbus: ok +I (51053) modbus: add: 0, length: 10 +I (51053) modbus: Read Holding Registers +I (51163) modbus tcp: ModBusSlave_recv() +I (51163) modbus: ModbusSlaveProcess()--------------------------- +I (51163) modbus: check id... +I (51163) modbus: ok +I (51163) modbus: add: 0, length: 10 +I (51163) modbus: Read Holding Registers +I (51283) modbus tcp: ModBusSlave_recv() +I (51283) modbus: ModbusSlaveProcess()--------------------------- +I (51283) modbus: check id... +I (51283) modbus: ok +I (51283) modbus: add: 0, length: 10 +I (51283) modbus: Read Holding Registers +I (51483) modbus tcp: ModBusSlave_recv() +I (51483) modbus: ModbusSlaveProcess()--------------------------- +I (51483) modbus: check id... +I (51483) modbus: ok +I (51483) modbus: add: 0, length: 10 +I (51483) modbus: Read Holding Registers +I (51503) modbus tcp: ModBusSlave_recv() +I (51503) modbus: ModbusSlaveProcess()--------------------------- +I (51503) modbus: check id... +I (51503) modbus: ok +I (51503) modbus: add: 0, length: 10 +I (51503) modbus: Read Holding Registers +I (51693) modbus tcp: ModBusSlave_recv() +I (51693) modbus: ModbusSlaveProcess()--------------------------- +I (51693) modbus: check id... +I (51693) modbus: ok +I (51693) modbus: add: 0, length: 10 +I (51693) modbus: Read Holding Registers +I (51733) modbus tcp: ModBusSlave_recv() +I (51733) modbus: ModbusSlaveProcess()--------------------------- +I (51733) modbus: check id... +I (51733) modbus: ok +I (51733) modbus: add: 0, length: 10 +I (51733) modbus: Read Holding Registers +I (51903) modbus tcp: ModBusSlave_recv() +I (51903) modbus: ModbusSlaveProcess()--------------------------- +I (51903) modbus: check id... +I (51903) modbus: ok +I (51903) modbus: add: 0, length: 10 +I (51903) modbus: Read Holding Registers +I (52923) modbus tcp: ModBusSlave_recv() +I (52923) modbus: ModbusSlaveProcess()--------------------------- +I (52923) modbus: check id... +I (52923) modbus: ok +I (52923) modbus: add: 0, length: 10 +I (52923) modbus: Read Holding Registers +I (53943) modbus tcp: ModBusSlave_recv() +I (53943) modbus: ModbusSlaveProcess()--------------------------- +I (53943) modbus: check id... +I (53943) modbus: ok +I (53943) modbus: add: 0, length: 10 +I (53943) modbus: Read Holding Registers +I (54973) modbus tcp: ModBusSlave_recv() +I (54973) modbus: ModbusSlaveProcess()--------------------------- +I (54973) modbus: check id... +I (54973) modbus: ok +I (54973) modbus: add: 0, length: 10 +I (54973) modbus: Read Holding Registers +I (55993) modbus tcp: ModBusSlave_recv() +I (55993) modbus: ModbusSlaveProcess()--------------------------- +I (55993) modbus: check id... +I (55993) modbus: ok +I (55993) modbus: add: 0, length: 10 +I (55993) modbus: Read Holding Registers +I (56913) modbus tcp: ModBusSlave_recv() +I (56913) modbus: ModbusSlaveProcess()--------------------------- +I (56913) modbus: check id... +I (56913) modbus: ok +I (56913) modbus: add: 0, length: 10 +I (56913) modbus: Read Holding Registers +I (57943) modbus tcp: ModBusSlave_recv() +I (57943) modbus: ModbusSlaveProcess()--------------------------- +I (57943) modbus: check id... +I (57943) modbus: ok +I (57943) modbus: add: 0, length: 10 +I (57943) modbus: Read Holding Registers +I (58963) modbus tcp: ModBusSlave_recv() +I (58963) modbus: ModbusSlaveProcess()--------------------------- +I (58963) modbus: check id... +I (58963) modbus: ok +I (58963) modbus: add: 0, length: 10 +I (58963) modbus: Read Holding Registers +I (59983) modbus tcp: ModBusSlave_recv() +I (59983) modbus: ModbusSlaveProcess()--------------------------- +I (59983) modbus: check id... +I (59983) modbus: ok +I (59983) modbus: add: 0, length: 10 +I (59983) modbus: Read Holding Registers +I (61013) modbus tcp: ModBusSlave_recv() +I (61013) modbus: ModbusSlaveProcess()--------------------------- +I (61013) modbus: check id... +I (61013) modbus: ok +I (61013) modbus: add: 0, length: 10 +I (61013) modbus: Read Holding Registers +I (62033) modbus tcp: ModBusSlave_recv() +I (62033) modbus: ModbusSlaveProcess()--------------------------- +I (62033) modbus: check id... +I (62033) modbus: ok +I (62033) modbus: add: 0, length: 10 +I (62033) modbus: Read Holding Registers +I (63053) modbus tcp: ModBusSlave_recv() +I (63053) modbus: ModbusSlaveProcess()--------------------------- +I (63053) modbus: check id... +I (63053) modbus: ok +I (63053) modbus: add: 0, length: 10 +I (63053) modbus: Read Holding Registers +I (64083) modbus tcp: ModBusSlave_recv() +I (64083) modbus: ModbusSlaveProcess()--------------------------- +I (64083) modbus: check id... +I (64083) modbus: ok +I (64083) modbus: add: 0, length: 10 +I (64083) modbus: Read Holding Registers +I (65103) modbus tcp: ModBusSlave_recv() +I (65103) modbus: ModbusSlaveProcess()--------------------------- +I (65103) modbus: check id... +I (65103) modbus: ok +I (65103) modbus: add: 0, length: 10 +I (65103) modbus: Read Holding Registers +I (66123) modbus tcp: ModBusSlave_recv() +I (66123) modbus: ModbusSlaveProcess()--------------------------- +I (66123) modbus: check id... +I (66123) modbus: ok +I (66123) modbus: add: 0, length: 10 +I (66123) modbus: Read Holding Registers +I (67153) modbus tcp: ModBusSlave_recv() +I (67153) modbus: ModbusSlaveProcess()--------------------------- +I (67153) modbus: check id... +I (67153) modbus: ok +I (67153) modbus: add: 0, length: 10 +I (67153) modbus: Read Holding Registers +I (68173) modbus tcp: ModBusSlave_recv() +I (68173) modbus: ModbusSlaveProcess()--------------------------- +I (68173) modbus: check id... +I (68173) modbus: ok +I (68173) modbus: add: 0, length: 10 +I (68173) modbus: Read Holding Registers +I (69203) modbus tcp: ModBusSlave_recv() +I (69203) modbus: ModbusSlaveProcess()--------------------------- +I (69203) modbus: check id... +I (69203) modbus: ok +I (69203) modbus: add: 0, length: 10 +I (69203) modbus: Read Holding Registers +I (70223) modbus tcp: ModBusSlave_recv() +I (70223) modbus: ModbusSlaveProcess()--------------------------- +I (70223) modbus: check id... +I (70223) modbus: ok +I (70223) modbus: add: 0, length: 10 +I (70223) modbus: Read Holding Registers +I (71143) modbus tcp: ModBusSlave_recv() +I (71143) modbus: ModbusSlaveProcess()--------------------------- +I (71143) modbus: check id... +I (71143) modbus: ok +I (71143) modbus: add: 0, length: 10 +I (71143) modbus: Read Holding Registers +I (72173) modbus tcp: ModBusSlave_recv() +I (72173) modbus: ModbusSlaveProcess()--------------------------- +I (72173) modbus: check id... +I (72173) modbus: ok +I (72173) modbus: add: 0, length: 10 +I (72173) modbus: Read Holding Registers +I (73193) modbus tcp: ModBusSlave_recv() +I (73193) modbus: ModbusSlaveProcess()--------------------------- +I (73193) modbus: check id... +I (73193) modbus: ok +I (73193) modbus: add: 0, length: 10 +I (73193) modbus: Read Holding Registers +I (74213) modbus tcp: ModBusSlave_recv() +I (74213) modbus: ModbusSlaveProcess()--------------------------- +I (74213) modbus: check id... +I (74213) modbus: ok +I (74213) modbus: add: 0, length: 10 +I (74213) modbus: Read Holding Registers +I (75243) modbus tcp: ModBusSlave_recv() +I (75253) modbus: ModbusSlaveProcess()--------------------------- +I (75253) modbus: check id... +I (75253) modbus: ok +I (75253) modbus: add: 0, length: 10 +I (75253) modbus: Read Holding Registers +I (76263) modbus tcp: ModBusSlave_recv() +I (76263) modbus: ModbusSlaveProcess()--------------------------- +I (76263) modbus: check id... +I (76263) modbus: ok +I (76263) modbus: add: 0, length: 10 +I (76263) modbus: Read Holding Registers +I (77293) modbus tcp: ModBusSlave_recv() +I (77293) modbus: ModbusSlaveProcess()--------------------------- +I (77293) modbus: check id... +I (77293) modbus: ok +I (77293) modbus: add: 0, length: 10 +I (77293) modbus: Read Holding Registers +I (78323) modbus tcp: ModBusSlave_recv() +I (78323) modbus: ModbusSlaveProcess()--------------------------- +I (78323) modbus: check id... +I (78323) modbus: ok +I (78323) modbus: add: 0, length: 10 +I (78323) modbus: Read Holding Registers +I (79333) modbus tcp: ModBusSlave_recv() +I (79343) modbus: ModbusSlaveProcess()--------------------------- +I (79343) modbus: check id... +I (79343) modbus: ok +I (79343) modbus: add: 0, length: 10 +I (79343) modbus: Read Holding Registers +I (80363) modbus tcp: ModBusSlave_recv() +I (80363) modbus: ModbusSlaveProcess()--------------------------- +I (80363) modbus: check id... +I (80363) modbus: ok +I (80363) modbus: add: 0, length: 10 +I (80363) modbus: Read Holding Registers +I (81383) modbus tcp: ModBusSlave_recv() +I (81383) modbus: ModbusSlaveProcess()--------------------------- +I (81383) modbus: check id... +I (81383) modbus: ok +I (81383) modbus: add: 0, length: 10 +I (81383) modbus: Read Holding Registers +I (82413) modbus tcp: ModBusSlave_recv() +I (82413) modbus: ModbusSlaveProcess()--------------------------- +I (82413) modbus: check id... +I (82413) modbus: ok +I (82413) modbus: add: 0, length: 10 +I (82413) modbus: Read Holding Registers +I (83333) modbus tcp: ModBusSlave_recv() +I (83333) modbus: ModbusSlaveProcess()--------------------------- +I (83333) modbus: check id... +I (83333) modbus: ok +I (83333) modbus: add: 0, length: 10 +I (83333) modbus: Read Holding Registers +I (84353) modbus tcp: ModBusSlave_recv() +I (84353) modbus: ModbusSlaveProcess()--------------------------- +I (84353) modbus: check id... +I (84353) modbus: ok +I (84353) modbus: add: 0, length: 10 +I (84353) modbus: Read Holding Registers +I (85383) modbus tcp: ModBusSlave_recv() +I (85383) modbus: ModbusSlaveProcess()--------------------------- +I (85383) modbus: check id... +I (85383) modbus: ok +I (85383) modbus: add: 0, length: 10 +I (85383) modbus: Read Holding Registers +I (86403) modbus tcp: ModBusSlave_recv() +I (86403) modbus: ModbusSlaveProcess()--------------------------- +I (86403) modbus: check id... +I (86403) modbus: ok +I (86403) modbus: add: 0, length: 10 +I (86403) modbus: Read Holding Registers +I (87433) modbus tcp: ModBusSlave_recv() +I (87433) modbus: ModbusSlaveProcess()--------------------------- +I (87433) modbus: check id... +I (87433) modbus: ok +I (87433) modbus: add: 0, length: 10 +I (87433) modbus: Read Holding Registers +I (88453) modbus tcp: ModBusSlave_recv() +I (88453) modbus: ModbusSlaveProcess()--------------------------- +I (88453) modbus: check id... +I (88453) modbus: ok +I (88453) modbus: add: 0, length: 10 +I (88453) modbus: Read Holding Registers +I (89473) modbus tcp: ModBusSlave_recv() +I (89473) modbus: ModbusSlaveProcess()--------------------------- +I (89473) modbus: check id... +I (89473) modbus: ok +I (89473) modbus: add: 0, length: 10 +I (89473) modbus: Read Holding Registers +I (90503) modbus tcp: ModBusSlave_recv() +I (90503) modbus: ModbusSlaveProcess()--------------------------- +I (90503) modbus: check id... +I (90503) modbus: ok +I (90503) modbus: add: 0, length: 10 +I (90503) modbus: Read Holding Registers +I (91523) modbus tcp: ModBusSlave_recv() +I (91523) modbus: ModbusSlaveProcess()--------------------------- +I (91523) modbus: check id... +I (91523) modbus: ok +I (91523) modbus: add: 0, length: 10 +I (91523) modbus: Read Holding Registers +I (92543) modbus tcp: ModBusSlave_recv() +I (92553) modbus: ModbusSlaveProcess()--------------------------- +I (92553) modbus: check id... +I (92553) modbus: ok +I (92553) modbus: add: 0, length: 10 +I (92553) modbus: Read Holding Registers +I (93573) modbus tcp: ModBusSlave_recv() +I (93573) modbus: ModbusSlaveProcess()--------------------------- +I (93573) modbus: check id... +I (93573) modbus: ok +I (93573) modbus: add: 0, length: 10 +I (93573) modbus: Read Holding Registers +I (94593) modbus tcp: ModBusSlave_recv() +I (94593) modbus: ModbusSlaveProcess()--------------------------- +I (94593) modbus: check id... +I (94593) modbus: ok +I (94593) modbus: add: 0, length: 10 +I (94593) modbus: Read Holding Registers +I (95513) modbus tcp: ModBusSlave_recv() +I (95513) modbus: ModbusSlaveProcess()--------------------------- +I (95513) modbus: check id... +I (95513) modbus: ok +I (95513) modbus: add: 0, length: 10 +I (95513) modbus: Read Holding Registers +I (96543) modbus tcp: ModBusSlave_recv() +I (96543) modbus: ModbusSlaveProcess()--------------------------- +I (96543) modbus: check id... +I (96543) modbus: ok +I (96543) modbus: add: 0, length: 10 +I (96543) modbus: Read Holding Registers +I (97563) modbus tcp: ModBusSlave_recv() +I (97563) modbus: ModbusSlaveProcess()--------------------------- +I (97563) modbus: check id... +I (97563) modbus: ok +I (97563) modbus: add: 0, length: 10 +I (97563) modbus: Read Holding Registers +I (98593) modbus tcp: ModBusSlave_recv() +I (98593) modbus: ModbusSlaveProcess()--------------------------- +I (98593) modbus: check id... +I (98593) modbus: ok +I (98593) modbus: add: 0, length: 10 +I (98593) modbus: Read Holding Registers +I (99613) modbus tcp: ModBusSlave_recv() +I (99613) modbus: ModbusSlaveProcess()--------------------------- +I (99613) modbus: check id... +I (99613) modbus: ok +I (99613) modbus: add: 0, length: 10 +I (99613) modbus: Read Holding Registers +I (100643) modbus tcp: ModBusSlave_recv() +I (100643) modbus: ModbusSlaveProcess()--------------------------- +I (100643) modbus: check id... +I (100643) modbus: ok +I (100643) modbus: add: 0, length: 10 +I (100643) modbus: Read Holding Registers +I (101663) modbus tcp: ModBusSlave_recv() +I (101663) modbus: ModbusSlaveProcess()--------------------------- +I (101663) modbus: check id... +I (101663) modbus: ok +I (101663) modbus: add: 0, length: 10 +I (101663) modbus: Read Holding Registers +I (102683) modbus tcp: ModBusSlave_recv() +I (102683) modbus: ModbusSlaveProcess()--------------------------- +I (102683) modbus: check id... +I (102683) modbus: ok +I (102683) modbus: add: 0, length: 10 +I (102683) modbus: Read Holding Registers +I (103713) modbus tcp: ModBusSlave_recv() +I (103713) modbus: ModbusSlaveProcess()--------------------------- +I (103713) modbus: check id... +I (103713) modbus: ok +I (103713) modbus: add: 0, length: 10 +I (103713) modbus: Read Holding Registers +I (104733) modbus tcp: ModBusSlave_recv() +I (104733) modbus: ModbusSlaveProcess()--------------------------- +I (104733) modbus: check id... +I (104733) modbus: ok +I (104733) modbus: add: 0, length: 10 +I (104733) modbus: Read Holding Registers +I (105753) modbus tcp: ModBusSlave_recv() +I (105753) modbus: ModbusSlaveProcess()--------------------------- +I (105763) modbus: check id... +I (105763) modbus: ok +I (105763) modbus: add: 0, length: 10 +I (105763) modbus: Read Holding Registers +I (106783) modbus tcp: ModBusSlave_recv() +I (106783) modbus: ModbusSlaveProcess()--------------------------- +I (106783) modbus: check id... +I (106783) modbus: ok +I (106783) modbus: add: 0, length: 10 +I (106783) modbus: Read Holding Registers +I (107703) modbus tcp: ModBusSlave_recv() +I (107703) modbus: ModbusSlaveProcess()--------------------------- +I (107703) modbus: check id... +I (107703) modbus: ok +I (107703) modbus: add: 0, length: 10 +I (107703) modbus: Read Holding Registers +I (108723) modbus tcp: ModBusSlave_recv() +I (108723) modbus: ModbusSlaveProcess()--------------------------- +I (108723) modbus: check id... +I (108723) modbus: ok +I (108723) modbus: add: 0, length: 10 +I (108723) modbus: Read Holding Registers +I (109783) modbus tcp: ModBusSlave_recv() +I (109783) modbus: ModbusSlaveProcess()--------------------------- +I (109783) modbus: check id... +I (109783) modbus: ok +I (109783) modbus: add: 0, length: 10 +I (109783) modbus: Read Holding Registers +I (110773) modbus tcp: ModBusSlave_recv() +I (110773) modbus: ModbusSlaveProcess()--------------------------- +I (110773) modbus: check id... +I (110773) modbus: ok +I (110773) modbus: add: 0, length: 10 +I (110773) modbus: Read Holding Registers +I (111803) modbus tcp: ModBusSlave_recv() +I (111803) modbus: ModbusSlaveProcess()--------------------------- +I (111803) modbus: check id... +I (111803) modbus: ok +I (111803) modbus: add: 0, length: 10 +I (111803) modbus: Read Holding Registers +I (112823) modbus tcp: ModBusSlave_recv() +I (112823) modbus: ModbusSlaveProcess()--------------------------- +I (112823) modbus: check id... +I (112823) modbus: ok +I (112823) modbus: add: 0, length: 10 +I (112823) modbus: Read Holding Registers +I (113843) modbus tcp: ModBusSlave_recv() +I (113853) modbus: ModbusSlaveProcess()--------------------------- +I (113853) modbus: check id... +I (113853) modbus: ok +I (113853) modbus: add: 0, length: 10 +I (113853) modbus: Read Holding Registers +I (114873) modbus tcp: ModBusSlave_recv() +I (114873) modbus: ModbusSlaveProcess()--------------------------- +I (114873) modbus: check id... +I (114873) modbus: ok +I (114873) modbus: add: 0, length: 10 +I (114873) modbus: Read Holding Registers +I (115893) modbus tcp: ModBusSlave_recv() +I (115893) modbus: ModbusSlaveProcess()--------------------------- +I (115893) modbus: check id... +I (115893) modbus: ok +I (115893) modbus: add: 0, length: 10 +I (115893) modbus: Read Holding Registers +I (116913) modbus tcp: ModBusSlave_recv() +I (116923) modbus: ModbusSlaveProcess()--------------------------- +I (116923) modbus: check id... +I (116923) modbus: ok +I (116923) modbus: add: 0, length: 10 +I (116923) modbus: Read Holding Registers +I (117943) modbus tcp: ModBusSlave_recv() +I (117943) modbus: ModbusSlaveProcess()--------------------------- +I (117943) modbus: check id... +I (117943) modbus: ok +I (117943) modbus: add: 0, length: 10 +I (117943) modbus: Read Holding Registers +I (118963) modbus tcp: ModBusSlave_recv() +I (118963) modbus: ModbusSlaveProcess()--------------------------- +I (118963) modbus: check id... +I (118963) modbus: ok +I (118973) modbus: add: 0, length: 10 +I (118973) modbus: Read Holding Registers +I (119993) modbus tcp: ModBusSlave_recv() +I (119993) modbus: ModbusSlaveProcess()--------------------------- +I (119993) modbus: check id... +I (119993) modbus: ok +I (119993) modbus: add: 0, length: 10 +I (119993) modbus: Read Holding Registers +I (120913) modbus tcp: ModBusSlave_recv() +I (120913) modbus: ModbusSlaveProcess()--------------------------- +I (120913) modbus: check id... +I (120913) modbus: ok +I (120913) modbus: add: 0, length: 10 +I (120913) modbus: Read Holding Registers +I (121933) modbus tcp: ModBusSlave_recv() +I (121933) modbus: ModbusSlaveProcess()--------------------------- +I (121933) modbus: check id... +I (121933) modbus: ok +I (121933) modbus: add: 0, length: 10 +I (121933) modbus: Read Holding Registers +I (122963) modbus tcp: ModBusSlave_recv() +I (122963) modbus: ModbusSlaveProcess()--------------------------- +I (122963) modbus: check id... +I (122963) modbus: ok +I (122963) modbus: add: 0, length: 10 +I (122963) modbus: Read Holding Registers +I (123983) modbus tcp: ModBusSlave_recv() +I (123983) modbus: ModbusSlaveProcess()--------------------------- +I (123983) modbus: check id... +I (123983) modbus: ok +I (123983) modbus: add: 0, length: 10 +I (123983) modbus: Read Holding Registers +I (125013) modbus tcp: ModBusSlave_recv() +I (125013) modbus: ModbusSlaveProcess()--------------------------- +I (125013) modbus: check id... +I (125013) modbus: ok +I (125013) modbus: add: 0, length: 10 +I (125013) modbus: Read Holding Registers +I (126033) modbus tcp: ModBusSlave_recv() +I (126033) modbus: ModbusSlaveProcess()--------------------------- +I (126033) modbus: check id... +I (126033) modbus: ok +I (126033) modbus: add: 0, length: 10 +I (126033) modbus: Read Holding Registers +I (127053) modbus tcp: ModBusSlave_recv() +I (127053) modbus: ModbusSlaveProcess()--------------------------- +I (127053) modbus: check id... +I (127063) modbus: ok +I (127063) modbus: add: 0, length: 10 +I (127063) modbus: Read Holding Registers +I (128083) modbus tcp: ModBusSlave_recv() +I (128083) modbus: ModbusSlaveProcess()--------------------------- +I (128083) modbus: check id... +I (128083) modbus: ok +I (128083) modbus: add: 0, length: 10 +I (128083) modbus: Read Holding Registers +I (129103) modbus tcp: ModBusSlave_recv() +I (129103) modbus: ModbusSlaveProcess()--------------------------- +I (129103) modbus: check id... +I (129103) modbus: ok +I (129103) modbus: add: 0, length: 10 +I (129103) modbus: Read Holding Registers +I (130133) modbus tcp: ModBusSlave_recv() +I (130133) modbus: ModbusSlaveProcess()--------------------------- +I (130133) modbus: check id... +I (130133) modbus: ok +I (130133) modbus: add: 0, length: 10 +I (130133) modbus: Read Holding Registers +I (131153) modbus tcp: ModBusSlave_recv() +I (131153) modbus: ModbusSlaveProcess()--------------------------- +I (131153) modbus: check id... +I (131153) modbus: ok +I (131153) modbus: add: 0, length: 10 +I (131153) modbus: Read Holding Registers +I (132073) modbus tcp: ModBusSlave_recv() +I (132073) modbus: ModbusSlaveProcess()--------------------------- +I (132073) modbus: check id... +I (132073) modbus: ok +I (132073) modbus: add: 0, length: 10 +I (132073) modbus: Read Holding Registers +I (133103) modbus tcp: ModBusSlave_recv() +I (133113) modbus: ModbusSlaveProcess()--------------------------- +I (133113) modbus: check id... +I (133113) modbus: ok +I (133113) modbus: add: 0, length: 10 +I (133113) modbus: Read Holding Registers +I (134123) modbus tcp: ModBusSlave_recv() +I (134123) modbus: ModbusSlaveProcess()--------------------------- +I (134123) modbus: check id... +I (134123) modbus: ok +I (134123) modbus: add: 0, length: 10 +I (134123) modbus: Read Holding Registers +I (135153) modbus tcp: ModBusSlave_recv() +I (135153) modbus: ModbusSlaveProcess()--------------------------- +I (135153) modbus: check id... +I (135153) modbus: ok +I (135153) modbus: add: 0, length: 10 +I (135153) modbus: Read Holding Registers +I (136173) modbus tcp: ModBusSlave_recv() +I (136173) modbus: ModbusSlaveProcess()--------------------------- +I (136173) modbus: check id... +I (136173) modbus: ok +I (136173) modbus: add: 0, length: 10 +I (136173) modbus: Read Holding Registers +I (137193) modbus tcp: ModBusSlave_recv() +I (137193) modbus: ModbusSlaveProcess()--------------------------- +I (137193) modbus: check id... +I (137193) modbus: ok +I (137193) modbus: add: 0, length: 10 +I (137193) modbus: Read Holding Registers +I (138223) modbus tcp: ModBusSlave_recv() +I (138223) modbus: ModbusSlaveProcess()--------------------------- +I (138223) modbus: check id... +I (138223) modbus: ok +I (138223) modbus: add: 0, length: 10 +I (138223) modbus: Read Holding Registers +I (139243) modbus tcp: ModBusSlave_recv() +I (139243) modbus: ModbusSlaveProcess()--------------------------- +I (139243) modbus: check id... +I (139243) modbus: ok +I (139243) modbus: add: 0, length: 10 +I (139243) modbus: Read Holding Registers +I (140273) modbus tcp: ModBusSlave_recv() +I (140273) modbus: ModbusSlaveProcess()--------------------------- +I (140273) modbus: check id... +I (140273) modbus: ok +I (140273) modbus: add: 0, length: 10 +I (140273) modbus: Read Holding Registers +I (141293) modbus tcp: ModBusSlave_recv() +I (141293) modbus: ModbusSlaveProcess()--------------------------- +I (141293) modbus: check id... +I (141293) modbus: ok +I (141293) modbus: add: 0, length: 10 +I (141293) modbus: Read Holding Registers +I (142313) modbus tcp: ModBusSlave_recv() +I (142313) modbus: ModbusSlaveProcess()--------------------------- +I (142313) modbus: check id... +I (142313) modbus: ok +I (142313) modbus: add: 0, length: 10 +I (142313) modbus: Read Holding Registers +I (143343) modbus tcp: ModBusSlave_recv() +I (143343) modbus: ModbusSlaveProcess()--------------------------- +I (143343) modbus: check id... +I (143343) modbus: ok +I (143343) modbus: add: 0, length: 10 +I (143343) modbus: Read Holding Registers +I (144263) modbus tcp: ModBusSlave_recv() +I (144263) modbus: ModbusSlaveProcess()--------------------------- +I (144263) modbus: check id... +I (144263) modbus: ok +I (144263) modbus: add: 0, length: 10 +I (144263) modbus: Read Holding Registers +I (145383) modbus tcp: ModBusSlave_recv() +I (145383) modbus: ModbusSlaveProcess()--------------------------- +I (145383) modbus: check id... +I (145383) modbus: ok +I (145383) modbus: add: 0, length: 10 +I (145383) modbus: Read Holding Registers +I (146303) modbus tcp: ModBusSlave_recv() +I (146313) modbus: ModbusSlaveProcess()--------------------------- +I (146313) modbus: check id... +I (146313) modbus: ok +I (146313) modbus: add: 0, length: 10 +I (146313) modbus: Read Holding Registers +I (147333) modbus tcp: ModBusSlave_recv() +I (147333) modbus: ModbusSlaveProcess()--------------------------- +I (147333) modbus: check id... +I (147333) modbus: ok +I (147333) modbus: add: 0, length: 10 +I (147333) modbus: Read Holding Registers +I (148353) modbus tcp: ModBusSlave_recv() +I (148353) modbus: ModbusSlaveProcess()--------------------------- +I (148353) modbus: check id... +I (148353) modbus: ok +I (148353) modbus: add: 0, length: 10 +I (148353) modbus: Read Holding Registers +I (149373) modbus tcp: ModBusSlave_recv() +I (149383) modbus: ModbusSlaveProcess()--------------------------- +I (149383) modbus: check id... +I (149383) modbus: ok +I (149383) modbus: add: 0, length: 10 +I (149383) modbus: Read Holding Registers +I (150403) modbus tcp: ModBusSlave_recv() +I (150403) modbus: ModbusSlaveProcess()--------------------------- +I (150403) modbus: check id... +I (150403) modbus: ok +I (150403) modbus: add: 0, length: 10 +I (150403) modbus: Read Holding Registers +I (151433) modbus tcp: ModBusSlave_recv() +I (151433) modbus: ModbusSlaveProcess()--------------------------- +I (151433) modbus: check id... +I (151433) modbus: ok +I (151433) modbus: add: 0, length: 10 +I (151433) modbus: Read Holding Registers +I (152453) modbus tcp: ModBusSlave_recv() +I (152453) modbus: ModbusSlaveProcess()--------------------------- +I (152453) modbus: check id... +I (152453) modbus: ok +I (152453) modbus: add: 0, length: 10 +I (152453) modbus: Read Holding Registers +I (153473) modbus tcp: ModBusSlave_recv() +I (153473) modbus: ModbusSlaveProcess()--------------------------- +I (153473) modbus: check id... +I (153473) modbus: ok +I (153473) modbus: add: 0, length: 10 +I (153473) modbus: Read Holding Registers +I (154503) modbus tcp: ModBusSlave_recv() +I (154503) modbus: ModbusSlaveProcess()--------------------------- +I (154503) modbus: check id... +I (154503) modbus: ok +I (154503) modbus: add: 0, length: 10 +I (154503) modbus: Read Holding Registers +I (155523) modbus tcp: ModBusSlave_recv() +I (155523) modbus: ModbusSlaveProcess()--------------------------- +I (155523) modbus: check id... +I (155523) modbus: ok +I (155523) modbus: add: 0, length: 10 +I (155523) modbus: Read Holding Registers +I (156553) modbus tcp: ModBusSlave_recv() +I (156553) modbus: ModbusSlaveProcess()--------------------------- +I (156553) modbus: check id... +I (156553) modbus: ok +I (156553) modbus: add: 0, length: 10 +I (156553) modbus: Read Holding Registers +I (157473) modbus tcp: ModBusSlave_recv() +I (157473) modbus: ModbusSlaveProcess()--------------------------- +I (157473) modbus: check id... +I (157473) modbus: ok +I (157473) modbus: add: 0, length: 10 +I (157473) modbus: Read Holding Registers +I (158493) modbus tcp: ModBusSlave_recv() +I (158493) modbus: ModbusSlaveProcess()--------------------------- +I (158493) modbus: check id... +I (158493) modbus: ok +I (158493) modbus: add: 0, length: 10 +I (158493) modbus: Read Holding Registers +I (159513) modbus tcp: ModBusSlave_recv() +I (159513) modbus: ModbusSlaveProcess()--------------------------- +I (159523) modbus: check id... +I (159523) modbus: ok +I (159523) modbus: add: 0, length: 10 +I (159523) modbus: Read Holding Registers +I (160543) modbus tcp: ModBusSlave_recv() +I (160543) modbus: ModbusSlaveProcess()--------------------------- +I (160543) modbus: check id... +I (160543) modbus: ok +I (160543) modbus: add: 0, length: 10 +I (160543) modbus: Read Holding Registers +I (161563) modbus tcp: ModBusSlave_recv() +I (161563) modbus: ModbusSlaveProcess()--------------------------- +I (161563) modbus: check id... +I (161563) modbus: ok +I (161563) modbus: add: 0, length: 10 +I (161563) modbus: Read Holding Registers +I (162593) modbus tcp: ModBusSlave_recv() +I (162593) modbus: ModbusSlaveProcess()--------------------------- +I (162593) modbus: check id... +I (162593) modbus: ok +I (162593) modbus: add: 0, length: 10 +I (162593) modbus: Read Holding Registers +I (163613) modbus tcp: ModBusSlave_recv() +I (163613) modbus: ModbusSlaveProcess()--------------------------- +I (163613) modbus: check id... +I (163613) modbus: ok +I (163613) modbus: add: 0, length: 10 +I (163613) modbus: Read Holding Registers +I (164643) modbus tcp: ModBusSlave_recv() +I (164643) modbus: ModbusSlaveProcess()--------------------------- +I (164643) modbus: check id... +I (164643) modbus: ok +I (164643) modbus: add: 0, length: 10 +I (164643) modbus: Read Holding Registers +I (165663) modbus tcp: ModBusSlave_recv() +I (165663) modbus: ModbusSlaveProcess()--------------------------- +I (165663) modbus: check id... +I (165663) modbus: ok +I (165663) modbus: add: 0, length: 10 +I (165663) modbus: Read Holding Registers +I (166683) modbus tcp: ModBusSlave_recv() +I (166683) modbus: ModbusSlaveProcess()--------------------------- +I (166683) modbus: check id... +I (166683) modbus: ok +I (166683) modbus: add: 0, length: 10 +I (166683) modbus: Read Holding Registers +I (167713) modbus tcp: ModBusSlave_recv() +I (167713) modbus: ModbusSlaveProcess()--------------------------- +I (167713) modbus: check id... +I (167713) modbus: ok +I (167713) modbus: add: 0, length: 10 +I (167713) modbus: Read Holding Registers +I (168733) modbus tcp: ModBusSlave_recv() +I (168733) modbus: ModbusSlaveProcess()--------------------------- +I (168733) modbus: check id... +I (168733) modbus: ok +I (168733) modbus: add: 0, length: 10 +I (168733) modbus: Read Holding Registers +I (169653) modbus tcp: ModBusSlave_recv() +I (169653) modbus: ModbusSlaveProcess()--------------------------- +I (169653) modbus: check id... +I (169653) modbus: ok +I (169653) modbus: add: 0, length: 10 +I (169653) modbus: Read Holding Registers +I (170683) modbus tcp: ModBusSlave_recv() +I (170683) modbus: ModbusSlaveProcess()--------------------------- +I (170683) modbus: check id... +I (170683) modbus: ok +I (170683) modbus: add: 0, length: 10 +I (170683) modbus: Read Holding Registers +I (171703) modbus tcp: ModBusSlave_recv() +I (171703) modbus: ModbusSlaveProcess()--------------------------- +I (171703) modbus: check id... +I (171703) modbus: ok +I (171703) modbus: add: 0, length: 10 +I (171703) modbus: Read Holding Registers +I (172723) modbus tcp: ModBusSlave_recv() +I (172723) modbus: ModbusSlaveProcess()--------------------------- +I (172723) modbus: check id... +I (172723) modbus: ok +I (172723) modbus: add: 0, length: 10 +I (172723) modbus: Read Holding Registers +I (173753) modbus tcp: ModBusSlave_recv() +I (173753) modbus: ModbusSlaveProcess()--------------------------- +I (173753) modbus: check id... +I (173753) modbus: ok +I (173753) modbus: add: 0, length: 10 +I (173753) modbus: Read Holding Registers +I (174773) modbus tcp: ModBusSlave_recv() +I (174773) modbus: ModbusSlaveProcess()--------------------------- +I (174773) modbus: check id... +I (174773) modbus: ok +I (174773) modbus: add: 0, length: 10 +I (174773) modbus: Read Holding Registers +I (175793) modbus tcp: ModBusSlave_recv() +I (175803) modbus: ModbusSlaveProcess()--------------------------- +I (175803) modbus: check id... +I (175803) modbus: ok +I (175803) modbus: add: 0, length: 10 +I (175803) modbus: Read Holding Registers +I (176833) modbus tcp: ModBusSlave_recv() +I (176833) modbus: ModbusSlaveProcess()--------------------------- +I (176833) modbus: check id... +I (176833) modbus: ok +I (176833) modbus: add: 0, length: 10 +I (176833) modbus: Read Holding Registers +I (177843) modbus tcp: ModBusSlave_recv() +I (177843) modbus: ModbusSlaveProcess()--------------------------- +I (177843) modbus: check id... +I (177843) modbus: ok +I (177843) modbus: add: 0, length: 10 +I (177843) modbus: Read Holding Registers +I (178873) modbus tcp: ModBusSlave_recv() +I (178873) modbus: ModbusSlaveProcess()--------------------------- +I (178873) modbus: check id... +I (178873) modbus: ok +I (178873) modbus: add: 0, length: 10 +I (178873) modbus: Read Holding Registers +I (179893) modbus tcp: ModBusSlave_recv() +I (179893) modbus: ModbusSlaveProcess()--------------------------- +I (179893) modbus: check id... +I (179893) modbus: ok +I (179893) modbus: add: 0, length: 10 +I (179893) modbus: Read Holding Registers +I (180923) modbus tcp: ModBusSlave_recv() +I (180923) modbus: ModbusSlaveProcess()--------------------------- +I (180923) modbus: check id... +I (180923) modbus: ok +I (180923) modbus: add: 0, length: 10 +I (180923) modbus: Read Holding Registers +I (181943) modbus tcp: ModBusSlave_recv() +I (181943) modbus: ModbusSlaveProcess()--------------------------- +I (181943) modbus: check id... +I (181943) modbus: ok +I (181943) modbus: add: 0, length: 10 +I (181943) modbus: Read Holding Registers +I (182963) modbus tcp: ModBusSlave_recv() +I (182963) modbus: ModbusSlaveProcess()--------------------------- +I (182963) modbus: check id... +I (182963) modbus: ok +I (182963) modbus: add: 0, length: 10 +I (182963) modbus: Read Holding Registers +I (183893) modbus tcp: ModBusSlave_recv() +I (183893) modbus: ModbusSlaveProcess()--------------------------- +I (183893) modbus: check id... +I (183893) modbus: ok +I (183893) modbus: add: 0, length: 10 +I (183893) modbus: Read Holding Registers +I (184913) modbus tcp: ModBusSlave_recv() +I (184913) modbus: ModbusSlaveProcess()--------------------------- +I (184913) modbus: check id... +I (184913) modbus: ok +I (184913) modbus: add: 0, length: 10 +I (184913) modbus: Read Holding Registers +I (185933) modbus tcp: ModBusSlave_recv() +I (185933) modbus: ModbusSlaveProcess()--------------------------- +I (185933) modbus: check id... +I (185933) modbus: ok +I (185933) modbus: add: 0, length: 10 +I (185933) modbus: Read Holding Registers +I (186963) modbus tcp: ModBusSlave_recv() +I (186963) modbus: ModbusSlaveProcess()--------------------------- +I (186963) modbus: check id... +I (186963) modbus: ok +I (186963) modbus: add: 0, length: 10 +I (186963) modbus: Read Holding Registers +I (187983) modbus tcp: ModBusSlave_recv() +I (187983) modbus: ModbusSlaveProcess()--------------------------- +I (187983) modbus: check id... +I (187983) modbus: ok +I (187983) modbus: add: 0, length: 10 +I (187983) modbus: Read Holding Registers +I (189013) modbus tcp: ModBusSlave_recv() +I (189013) modbus: ModbusSlaveProcess()--------------------------- +I (189013) modbus: check id... +I (189013) modbus: ok +I (189013) modbus: add: 0, length: 10 +I (189013) modbus: Read Holding Registers +I (190033) modbus tcp: ModBusSlave_recv() +I (190033) modbus: ModbusSlaveProcess()--------------------------- +I (190033) modbus: check id... +I (190033) modbus: ok +I (190033) modbus: add: 0, length: 10 +I (190033) modbus: Read Holding Registers +I (191053) modbus tcp: ModBusSlave_recv() +I (191053) modbus: ModbusSlaveProcess()--------------------------- +I (191053) modbus: check id... +I (191053) modbus: ok +I (191053) modbus: add: 0, length: 10 +I (191053) modbus: Read Holding Registers +I (192083) modbus tcp: ModBusSlave_recv() +I (192083) modbus: ModbusSlaveProcess()--------------------------- +I (192083) modbus: check id... +I (192083) modbus: ok +I (192083) modbus: add: 0, length: 10 +I (192083) modbus: Read Holding Registers +I (193103) modbus tcp: ModBusSlave_recv() +I (193103) modbus: ModbusSlaveProcess()--------------------------- +I (193103) modbus: check id... +I (193103) modbus: ok +I (193103) modbus: add: 0, length: 10 +I (193103) modbus: Read Holding Registers +I (194133) modbus tcp: ModBusSlave_recv() +I (194133) modbus: ModbusSlaveProcess()--------------------------- +I (194133) modbus: check id... +I (194133) modbus: ok +I (194133) modbus: add: 0, length: 10 +I (194133) modbus: Read Holding Registers +I (195153) modbus tcp: ModBusSlave_recv() +I (195153) modbus: ModbusSlaveProcess()--------------------------- +I (195153) modbus: check id... +I (195153) modbus: ok +I (195153) modbus: add: 0, length: 10 +I (195153) modbus: Read Holding Registers +I (196073) modbus tcp: ModBusSlave_recv() +I (196073) modbus: ModbusSlaveProcess()--------------------------- +I (196073) modbus: check id... +I (196073) modbus: ok +I (196073) modbus: add: 0, length: 10 +I (196073) modbus: Read Holding Registers +I (197133) modbus tcp: ModBusSlave_recv() +I (197133) modbus: ModbusSlaveProcess()--------------------------- +I (197133) modbus: check id... +I (197133) modbus: ok +I (197133) modbus: add: 0, length: 10 +I (197133) modbus: Read Holding Registers +I (198123) modbus tcp: ModBusSlave_recv() +I (198123) modbus: ModbusSlaveProcess()--------------------------- +I (198123) modbus: check id... +I (198123) modbus: ok +I (198123) modbus: add: 0, length: 10 +I (198123) modbus: Read Holding Registers +I (199143) modbus tcp: ModBusSlave_recv() +I (199143) modbus: ModbusSlaveProcess()--------------------------- +I (199143) modbus: check id... +I (199143) modbus: ok +I (199143) modbus: add: 0, length: 10 +I (199143) modbus: Read Holding Registers +I (200173) modbus tcp: ModBusSlave_recv() +I (200173) modbus: ModbusSlaveProcess()--------------------------- +I (200173) modbus: check id... +I (200173) modbus: ok +I (200173) modbus: add: 0, length: 10 +I (200173) modbus: Read Holding Registers +I (201193) modbus tcp: ModBusSlave_recv() +I (201193) modbus: ModbusSlaveProcess()--------------------------- +I (201193) modbus: check id... +I (201193) modbus: ok +I (201193) modbus: add: 0, length: 10 +I (201193) modbus: Read Holding Registers +I (202223) modbus tcp: ModBusSlave_recv() +I (202223) modbus: ModbusSlaveProcess()--------------------------- +I (202223) modbus: check id... +I (202223) modbus: ok +I (202223) modbus: add: 0, length: 10 +I (202223) modbus: Read Holding Registers +I (203243) modbus tcp: ModBusSlave_recv() +I (203243) modbus: ModbusSlaveProcess()--------------------------- +I (203243) modbus: check id... +I (203243) modbus: ok +I (203243) modbus: add: 0, length: 10 +I (203243) modbus: Read Holding Registers +I (204273) modbus tcp: ModBusSlave_recv() +I (204273) modbus: ModbusSlaveProcess()--------------------------- +I (204273) modbus: check id... +I (204273) modbus: ok +I (204273) modbus: add: 0, length: 10 +I (204273) modbus: Read Holding Registers +I (205303) modbus tcp: ModBusSlave_recv() +I (205303) modbus: ModbusSlaveProcess()--------------------------- +I (205303) modbus: check id... +I (205303) modbus: ok +I (205303) modbus: add: 0, length: 10 +I (205303) modbus: Read Holding Registers +I (206313) modbus tcp: ModBusSlave_recv() +I (206313) modbus: ModbusSlaveProcess()--------------------------- +I (206313) modbus: check id... +I (206313) modbus: ok +I (206313) modbus: add: 0, length: 10 +I (206313) modbus: Read Holding Registers +I (207343) modbus tcp: ModBusSlave_recv() +I (207343) modbus: ModbusSlaveProcess()--------------------------- +I (207343) modbus: check id... +I (207343) modbus: ok +I (207343) modbus: add: 0, length: 10 +I (207343) modbus: Read Holding Registers +I (208363) modbus tcp: ModBusSlave_recv() +I (208363) modbus: ModbusSlaveProcess()--------------------------- +I (208363) modbus: check id... +I (208363) modbus: ok +I (208363) modbus: add: 0, length: 10 +I (208363) modbus: Read Holding Registers +I (209383) modbus tcp: ModBusSlave_recv() +I (209383) modbus: ModbusSlaveProcess()--------------------------- +I (209383) modbus: check id... +I (209383) modbus: ok +I (209383) modbus: add: 0, length: 10 +I (209383) modbus: Read Holding Registers +I (210413) modbus tcp: ModBusSlave_recv() +I (210413) modbus: ModbusSlaveProcess()--------------------------- +I (210413) modbus: check id... +I (210413) modbus: ok +I (210413) modbus: add: 0, length: 10 +I (210413) modbus: Read Holding Registers +I (211333) modbus tcp: ModBusSlave_recv() +I (211333) modbus: ModbusSlaveProcess()--------------------------- +I (211333) modbus: check id... +I (211333) modbus: ok +I (211333) modbus: add: 0, length: 10 +I (211333) modbus: Read Holding Registers +I (212353) modbus tcp: ModBusSlave_recv() +I (212363) modbus: ModbusSlaveProcess()--------------------------- +I (212363) modbus: check id... +I (212363) modbus: ok +I (212363) modbus: add: 0, length: 10 +I (212363) modbus: Read Holding Registers +I (213383) modbus tcp: ModBusSlave_recv() +I (213383) modbus: ModbusSlaveProcess()--------------------------- +I (213383) modbus: check id... +I (213383) modbus: ok +I (213383) modbus: add: 0, length: 10 +I (213383) modbus: Read Holding Registers +I (214403) modbus tcp: ModBusSlave_recv() +I (214403) modbus: ModbusSlaveProcess()--------------------------- +I (214403) modbus: check id... +I (214403) modbus: ok +I (214403) modbus: add: 0, length: 10 +I (214403) modbus: Read Holding Registers +I (215423) modbus tcp: ModBusSlave_recv() +I (215423) modbus: ModbusSlaveProcess()--------------------------- +I (215423) modbus: check id... +I (215423) modbus: ok +I (215423) modbus: add: 0, length: 10 +I (215423) modbus: Read Holding Registers +I (216453) modbus tcp: ModBusSlave_recv() +I (216453) modbus: ModbusSlaveProcess()--------------------------- +I (216453) modbus: check id... +I (216453) modbus: ok +I (216453) modbus: add: 0, length: 10 +I (216453) modbus: Read Holding Registers +I (217473) modbus tcp: ModBusSlave_recv() +I (217473) modbus: ModbusSlaveProcess()--------------------------- +I (217473) modbus: check id... +I (217473) modbus: ok +I (217473) modbus: add: 0, length: 10 +I (217473) modbus: Read Holding Registers +I (218503) modbus tcp: ModBusSlave_recv() +I (218503) modbus: ModbusSlaveProcess()--------------------------- +I (218503) modbus: check id... +I (218503) modbus: ok +I (218503) modbus: add: 0, length: 10 +I (218503) modbus: Read Holding Registers +I (219523) modbus tcp: ModBusSlave_recv() +I (219523) modbus: ModbusSlaveProcess()--------------------------- +I (219523) modbus: check id... +I (219523) modbus: ok +I (219523) modbus: add: 0, length: 10 +I (219523) modbus: Read Holding Registers +I (220543) modbus tcp: ModBusSlave_recv() +I (220543) modbus: ModbusSlaveProcess()--------------------------- +I (220543) modbus: check id... +I (220543) modbus: ok +I (220543) modbus: add: 0, length: 10 +I (220543) modbus: Read Holding Registers +I (221573) modbus tcp: ModBusSlave_recv() +I (221573) modbus: ModbusSlaveProcess()--------------------------- +I (221573) modbus: check id... +I (221573) modbus: ok +I (221573) modbus: add: 0, length: 10 +I (221573) modbus: Read Holding Registers +I (222593) modbus tcp: ModBusSlave_recv() +I (222593) modbus: ModbusSlaveProcess()--------------------------- +I (222593) modbus: check id... +I (222593) modbus: ok +I (222593) modbus: add: 0, length: 10 +I (222593) modbus: Read Holding Registers +I (223523) modbus tcp: ModBusSlave_recv() +I (223523) modbus: ModbusSlaveProcess()--------------------------- +I (223523) modbus: check id... +I (223523) modbus: ok +I (223523) modbus: add: 0, length: 10 +I (223523) modbus: Read Holding Registers +I (224543) modbus tcp: ModBusSlave_recv() +I (224543) modbus: ModbusSlaveProcess()--------------------------- +I (224543) modbus: check id... +I (224543) modbus: ok +I (224543) modbus: add: 0, length: 10 +I (224543) modbus: Read Holding Registers +I (225563) modbus tcp: ModBusSlave_recv() +I (225563) modbus: ModbusSlaveProcess()--------------------------- +I (225563) modbus: check id... +I (225563) modbus: ok +I (225563) modbus: add: 0, length: 10 +I (225563) modbus: Read Holding Registers +I (226593) modbus tcp: ModBusSlave_recv() +I (226593) modbus: ModbusSlaveProcess()--------------------------- +I (226593) modbus: check id... +I (226593) modbus: ok +I (226593) modbus: add: 0, length: 10 +I (226593) modbus: Read Holding Registers +I (227613) modbus tcp: ModBusSlave_recv() +I (227613) modbus: ModbusSlaveProcess()--------------------------- +I (227613) modbus: check id... +I (227613) modbus: ok +I (227613) modbus: add: 0, length: 10 +I (227613) modbus: Read Holding Registers +I (228633) modbus tcp: ModBusSlave_recv() +I (228633) modbus: ModbusSlaveProcess()--------------------------- +I (228633) modbus: check id... +I (228633) modbus: ok +I (228643) modbus: add: 0, length: 10 +I (228643) modbus: Read Holding Registers +I (229663) modbus tcp: ModBusSlave_recv() +I (229663) modbus: ModbusSlaveProcess()--------------------------- +I (229663) modbus: check id... +I (229663) modbus: ok +I (229663) modbus: add: 0, length: 10 +I (229663) modbus: Read Holding Registers +I (230683) modbus tcp: ModBusSlave_recv() +I (230683) modbus: ModbusSlaveProcess()--------------------------- +I (230683) modbus: check id... +I (230683) modbus: ok +I (230683) modbus: add: 0, length: 10 +I (230683) modbus: Read Holding Registers +I (231703) modbus tcp: ModBusSlave_recv() +I (231713) modbus: ModbusSlaveProcess()--------------------------- +I (231713) modbus: check id... +I (231713) modbus: ok +I (231713) modbus: add: 0, length: 10 +I (231713) modbus: Read Holding Registers +I (232733) modbus tcp: ModBusSlave_recv() +I (232733) modbus: ModbusSlaveProcess()--------------------------- +I (232733) modbus: check id... +I (232733) modbus: ok +I (232733) modbus: add: 0, length: 10 +I (232733) modbus: Read Holding Registers +I (233753) modbus tcp: ModBusSlave_recv() +I (233753) modbus: ModbusSlaveProcess()--------------------------- +I (233753) modbus: check id... +I (233753) modbus: ok +I (233753) modbus: add: 0, length: 10 +I (233763) modbus: Read Holding Registers +I (234683) modbus tcp: ModBusSlave_recv() +I (234683) modbus: ModbusSlaveProcess()--------------------------- +I (234683) modbus: check id... +I (234683) modbus: ok +I (234683) modbus: add: 0, length: 10 +I (234683) modbus: Read Holding Registers +I (235803) modbus tcp: ModBusSlave_recv() +I (235803) modbus: ModbusSlaveProcess()--------------------------- +I (235803) modbus: check id... +I (235803) modbus: ok +I (235803) modbus: add: 0, length: 10 +I (235803) modbus: Read Holding Registers +I (236733) modbus tcp: ModBusSlave_recv() +I (236733) modbus: ModbusSlaveProcess()--------------------------- +I (236733) modbus: check id... +I (236733) modbus: ok +I (236733) modbus: add: 0, length: 10 +I (236733) modbus: Read Holding Registers +I (237753) modbus tcp: ModBusSlave_recv() +I (237753) modbus: ModbusSlaveProcess()--------------------------- +I (237753) modbus: check id... +I (237753) modbus: ok +I (237753) modbus: add: 0, length: 10 +I (237753) modbus: Read Holding Registers +I (238773) modbus tcp: ModBusSlave_recv() +I (238773) modbus: ModbusSlaveProcess()--------------------------- +I (238773) modbus: check id... +I (238773) modbus: ok +I (238773) modbus: add: 0, length: 10 +I (238773) modbus: Read Holding Registers +I (239803) modbus tcp: ModBusSlave_recv() +I (239803) modbus: ModbusSlaveProcess()--------------------------- +I (239803) modbus: check id... +I (239803) modbus: ok +I (239803) modbus: add: 0, length: 10 +I (239803) modbus: Read Holding Registers +I (240823) modbus tcp: ModBusSlave_recv() +I (240823) modbus: ModbusSlaveProcess()--------------------------- +I (240823) modbus: check id... +I (240823) modbus: ok +I (240823) modbus: add: 0, length: 10 +I (240823) modbus: Read Holding Registers +I (241843) modbus tcp: ModBusSlave_recv() +I (241843) modbus: ModbusSlaveProcess()--------------------------- +I (241843) modbus: check id... +I (241843) modbus: ok +I (241843) modbus: add: 0, length: 10 +I (241853) modbus: Read Holding Registers +I (242873) modbus tcp: ModBusSlave_recv() +I (242873) modbus: ModbusSlaveProcess()--------------------------- +I (242873) modbus: check id... +I (242873) modbus: ok +I (242873) modbus: add: 0, length: 10 +I (242873) modbus: Read Holding Registers +I (243893) modbus tcp: ModBusSlave_recv() +I (243893) modbus: ModbusSlaveProcess()--------------------------- +I (243893) modbus: check id... +I (243893) modbus: ok +I (243893) modbus: add: 0, length: 10 +I (243893) modbus: Read Holding Registers +I (244923) modbus tcp: ModBusSlave_recv() +I (244923) modbus: ModbusSlaveProcess()--------------------------- +I (244923) modbus: check id... +I (244923) modbus: ok +I (244923) modbus: add: 0, length: 10 +I (244923) modbus: Read Holding Registers +I (245943) modbus tcp: ModBusSlave_recv() +I (245943) modbus: ModbusSlaveProcess()--------------------------- +I (245943) modbus: check id... +I (245943) modbus: ok +I (245943) modbus: add: 0, length: 10 +I (245943) modbus: Read Holding Registers +I (246963) modbus tcp: ModBusSlave_recv() +I (246973) modbus: ModbusSlaveProcess()--------------------------- +I (246973) modbus: check id... +I (246973) modbus: ok +I (246973) modbus: add: 0, length: 10 +I (246973) modbus: Read Holding Registers +I (247993) modbus tcp: ModBusSlave_recv() +I (247993) modbus: ModbusSlaveProcess()--------------------------- +I (247993) modbus: check id... +I (247993) modbus: ok +I (247993) modbus: add: 0, length: 10 +I (247993) modbus: Read Holding Registers +I (248913) modbus tcp: ModBusSlave_recv() +I (248913) modbus: ModbusSlaveProcess()--------------------------- +I (248913) modbus: check id... +I (248913) modbus: ok +I (248913) modbus: add: 0, length: 10 +I (248913) modbus: Read Holding Registers +I (249933) modbus tcp: ModBusSlave_recv() +I (249933) modbus: ModbusSlaveProcess()--------------------------- +I (249933) modbus: check id... +I (249933) modbus: ok +I (249933) modbus: add: 0, length: 10 +I (249933) modbus: Read Holding Registers +I (250963) modbus tcp: ModBusSlave_recv() +I (250963) modbus: ModbusSlaveProcess()--------------------------- +I (250963) modbus: check id... +I (250963) modbus: ok +I (250963) modbus: add: 0, length: 10 +I (250963) modbus: Read Holding Registers +I (251983) modbus tcp: ModBusSlave_recv() +I (251983) modbus: ModbusSlaveProcess()--------------------------- +I (251983) modbus: check id... +I (251983) modbus: ok +I (251983) modbus: add: 0, length: 10 +I (251983) modbus: Read Holding Registers +I (253013) modbus tcp: ModBusSlave_recv() +I (253013) modbus: ModbusSlaveProcess()--------------------------- +I (253013) modbus: check id... +I (253013) modbus: ok +I (253013) modbus: add: 0, length: 10 +I (253013) modbus: Read Holding Registers +I (254033) modbus tcp: ModBusSlave_recv() +I (254033) modbus: ModbusSlaveProcess()--------------------------- +I (254033) modbus: check id... +I (254033) modbus: ok +I (254033) modbus: add: 0, length: 10 +I (254033) modbus: Read Holding Registers +I (255053) modbus tcp: ModBusSlave_recv() +I (255053) modbus: ModbusSlaveProcess()--------------------------- +I (255053) modbus: check id... +I (255053) modbus: ok +I (255053) modbus: add: 0, length: 10 +I (255063) modbus: Read Holding Registers +I (256083) modbus tcp: ModBusSlave_recv() +I (256083) modbus: ModbusSlaveProcess()--------------------------- +I (256083) modbus: check id... +I (256083) modbus: ok +I (256083) modbus: add: 0, length: 10 +I (256083) modbus: Read Holding Registers +I (257103) modbus tcp: ModBusSlave_recv() +I (257103) modbus: ModbusSlaveProcess()--------------------------- +I (257103) modbus: check id... +I (257103) modbus: ok +I (257103) modbus: add: 0, length: 10 +I (257103) modbus: Read Holding Registers +I (258133) modbus tcp: ModBusSlave_recv() +I (258133) modbus: ModbusSlaveProcess()--------------------------- +I (258133) modbus: check id... +I (258133) modbus: ok +I (258133) modbus: add: 0, length: 10 +I (258133) modbus: Read Holding Registers +I (259153) modbus tcp: ModBusSlave_recv() +I (259153) modbus: ModbusSlaveProcess()--------------------------- +I (259153) modbus: check id... +I (259153) modbus: ok +I (259163) modbus: add: 0, length: 10 +I (259163) modbus: Read Holding Registers +I (260073) modbus tcp: ModBusSlave_recv() +I (260073) modbus: ModbusSlaveProcess()--------------------------- +I (260073) modbus: check id... +I (260073) modbus: ok +I (260073) modbus: add: 0, length: 10 +I (260073) modbus: Read Holding Registers +I (261203) modbus tcp: ModBusSlave_recv() +I (261203) modbus: ModbusSlaveProcess()--------------------------- +I (261203) modbus: check id... +I (261203) modbus: ok +I (261203) modbus: add: 0, length: 10 +I (261203) modbus: Read Holding Registers +I (262223) modbus tcp: ModBusSlave_recv() +I (262223) modbus: ModbusSlaveProcess()--------------------------- +I (262223) modbus: check id... +I (262223) modbus: ok +I (262223) modbus: add: 0, length: 10 +I (262223) modbus: Read Holding Registers +I (263143) modbus tcp: ModBusSlave_recv() +I (263143) modbus: ModbusSlaveProcess()--------------------------- +I (263143) modbus: check id... +I (263143) modbus: ok +I (263143) modbus: add: 0, length: 10 +I (263143) modbus: Read Holding Registers +I (264173) modbus tcp: ModBusSlave_recv() +I (264173) modbus: ModbusSlaveProcess()--------------------------- +I (264173) modbus: check id... +I (264173) modbus: ok +I (264173) modbus: add: 0, length: 10 +I (264173) modbus: Read Holding Registers +I (265193) modbus tcp: ModBusSlave_recv() +I (265193) modbus: ModbusSlaveProcess()--------------------------- +I (265193) modbus: check id... +I (265193) modbus: ok +I (265193) modbus: add: 0, length: 10 +I (265193) modbus: Read Holding Registers +I (266223) modbus tcp: ModBusSlave_recv() +I (266233) modbus: ModbusSlaveProcess()--------------------------- +I (266233) modbus: check id... +I (266233) modbus: ok +I (266233) modbus: add: 0, length: 10 +I (266233) modbus: Read Holding Registers +I (267243) modbus tcp: ModBusSlave_recv() +I (267243) modbus: ModbusSlaveProcess()--------------------------- +I (267243) modbus: check id... +I (267243) modbus: ok +I (267243) modbus: add: 0, length: 10 +I (267243) modbus: Read Holding Registers +I (268273) modbus tcp: ModBusSlave_recv() +I (268273) modbus: ModbusSlaveProcess()--------------------------- +I (268273) modbus: check id... +I (268273) modbus: ok +I (268273) modbus: add: 0, length: 10 +I (268273) modbus: Read Holding Registers +I (269293) modbus tcp: ModBusSlave_recv() +I (269293) modbus: ModbusSlaveProcess()--------------------------- +I (269293) modbus: check id... +I (269293) modbus: ok +I (269293) modbus: add: 0, length: 10 +I (269293) modbus: Read Holding Registers +I (270313) modbus tcp: ModBusSlave_recv() +I (270313) modbus: ModbusSlaveProcess()--------------------------- +I (270313) modbus: check id... +I (270313) modbus: ok +I (270313) modbus: add: 0, length: 10 +I (270313) modbus: Read Holding Registers +I (271343) modbus tcp: ModBusSlave_recv() +I (271343) modbus: ModbusSlaveProcess()--------------------------- +I (271343) modbus: check id... +I (271343) modbus: ok +I (271343) modbus: add: 0, length: 10 +I (271343) modbus: Read Holding Registers +I (272363) modbus tcp: ModBusSlave_recv() +I (272363) modbus: ModbusSlaveProcess()--------------------------- +I (272363) modbus: check id... +I (272363) modbus: ok +I (272363) modbus: add: 0, length: 10 +I (272363) modbus: Read Holding Registers +I (273383) modbus tcp: ModBusSlave_recv() +I (273383) modbus: ModbusSlaveProcess()--------------------------- +I (273383) modbus: check id... +I (273383) modbus: ok +I (273383) modbus: add: 0, length: 10 +I (273383) modbus: Read Holding Registers +I (274303) modbus tcp: ModBusSlave_recv() +I (274303) modbus: ModbusSlaveProcess()--------------------------- +I (274303) modbus: check id... +I (274303) modbus: ok +I (274303) modbus: add: 0, length: 10 +I (274303) modbus: Read Holding Registers +I (275333) modbus tcp: ModBusSlave_recv() +I (275333) modbus: ModbusSlaveProcess()--------------------------- +I (275333) modbus: check id... +I (275333) modbus: ok +I (275333) modbus: add: 0, length: 10 +I (275333) modbus: Read Holding Registers +I (276353) modbus tcp: ModBusSlave_recv() +I (276363) modbus: ModbusSlaveProcess()--------------------------- +I (276363) modbus: check id... +I (276363) modbus: ok +I (276363) modbus: add: 0, length: 10 +I (276363) modbus: Read Holding Registers +I (277383) modbus tcp: ModBusSlave_recv() +I (277383) modbus: ModbusSlaveProcess()--------------------------- +I (277383) modbus: check id... +I (277383) modbus: ok +I (277383) modbus: add: 0, length: 10 +I (277383) modbus: Read Holding Registers +I (278403) modbus tcp: ModBusSlave_recv() +I (278403) modbus: ModbusSlaveProcess()--------------------------- +I (278403) modbus: check id... +I (278403) modbus: ok +I (278403) modbus: add: 0, length: 10 +I (278403) modbus: Read Holding Registers +I (279433) modbus tcp: ModBusSlave_recv() +I (279433) modbus: ModbusSlaveProcess()--------------------------- +I (279433) modbus: check id... +I (279433) modbus: ok +I (279433) modbus: add: 0, length: 10 +I (279433) modbus: Read Holding Registers +I (280453) modbus tcp: ModBusSlave_recv() +I (280453) modbus: ModbusSlaveProcess()--------------------------- +I (280453) modbus: check id... +I (280453) modbus: ok +I (280453) modbus: add: 0, length: 10 +I (280453) modbus: Read Holding Registers +I (281473) modbus tcp: ModBusSlave_recv() +I (281473) modbus: ModbusSlaveProcess()--------------------------- +I (281473) modbus: check id... +I (281473) modbus: ok +I (281473) modbus: add: 0, length: 10 +I (281473) modbus: Read Holding Registers +I (282503) modbus tcp: ModBusSlave_recv() +I (282503) modbus: ModbusSlaveProcess()--------------------------- +I (282503) modbus: check id... +I (282503) modbus: ok +I (282503) modbus: add: 0, length: 10 +I (282503) modbus: Read Holding Registers +I (283523) modbus tcp: ModBusSlave_recv() +I (283523) modbus: ModbusSlaveProcess()--------------------------- +I (283523) modbus: check id... +I (283523) modbus: ok +I (283523) modbus: add: 0, length: 10 +I (283523) modbus: Read Holding Registers +I (284553) modbus tcp: ModBusSlave_recv() +I (284553) modbus: ModbusSlaveProcess()--------------------------- +I (284553) modbus: check id... +I (284553) modbus: ok +I (284553) modbus: add: 0, length: 10 +I (284553) modbus: Read Holding Registers +I (285483) modbus tcp: ModBusSlave_recv() +I (285483) modbus: ModbusSlaveProcess()--------------------------- +I (285483) modbus: check id... +I (285483) modbus: ok +I (285483) modbus: add: 0, length: 10 +I (285483) modbus: Read Holding Registers +I (286593) modbus tcp: ModBusSlave_recv() +I (286593) modbus: ModbusSlaveProcess()--------------------------- +I (286593) modbus: check id... +I (286593) modbus: ok +I (286593) modbus: add: 0, length: 10 +I (286593) modbus: Read Holding Registers +I (287513) modbus tcp: ModBusSlave_recv() +I (287513) modbus: ModbusSlaveProcess()--------------------------- +I (287513) modbus: check id... +I (287513) modbus: ok +I (287513) modbus: add: 0, length: 10 +I (287523) modbus: Read Holding Registers +I (288543) modbus tcp: ModBusSlave_recv() +I (288543) modbus: ModbusSlaveProcess()--------------------------- +I (288543) modbus: check id... +I (288543) modbus: ok +I (288543) modbus: add: 0, length: 10 +I (288543) modbus: Read Holding Registers +I (289593) modbus tcp: ModBusSlave_recv() +I (289603) modbus: ModbusSlaveProcess()--------------------------- +I (289603) modbus: check id... +I (289603) modbus: ok +I (289603) modbus: add: 0, length: 10 +I (289603) modbus: Read Holding Registers +I (290593) modbus tcp: ModBusSlave_recv() +I (290593) modbus: ModbusSlaveProcess()--------------------------- +I (290593) modbus: check id... +I (290593) modbus: ok +I (290593) modbus: add: 0, length: 10 +I (290593) modbus: Read Holding Registers +I (291613) modbus tcp: ModBusSlave_recv() +I (291613) modbus: ModbusSlaveProcess()--------------------------- +I (291613) modbus: check id... +I (291613) modbus: ok +I (291613) modbus: add: 0, length: 10 +I (291613) modbus: Read Holding Registers +I (292633) modbus tcp: ModBusSlave_recv() +I (292633) modbus: ModbusSlaveProcess()--------------------------- +I (292633) modbus: check id... +I (292633) modbus: ok +I (292633) modbus: add: 0, length: 10 +I (292633) modbus: Read Holding Registers +I (293453) modbus tcp: ModBusSlave_recv() +I (293453) modbus: ModbusSlaveProcess()--------------------------- +I (293463) modbus: check id... +I (293463) modbus: ok +I (293463) modbus: add: 0, length: 10 +I (293463) modbus: Read Holding Registers +I (293483) modbus tcp: ModBusSlave_recv() +I (293483) modbus: ModbusSlaveProcess()--------------------------- +I (293483) modbus: check id... +I (293483) modbus: ok +I (293483) modbus: add: 0, length: 10 +I (293483) modbus: Read Holding Registers +I (293663) modbus tcp: ModBusSlave_recv() +I (293663) modbus: ModbusSlaveProcess()--------------------------- +I (293663) modbus: check id... +I (293663) modbus: ok +I (293663) modbus: add: 0, length: 10 +I (293663) modbus: Read Holding Registers +I (293703) modbus tcp: ModBusSlave_recv() +I (293703) modbus: ModbusSlaveProcess()--------------------------- +I (293703) modbus: check id... +I (293703) modbus: ok +I (293713) modbus: add: 0, length: 10 +I (293713) modbus: Read Holding Registers +I (293863) modbus tcp: ModBusSlave_recv() +I (293863) modbus: ModbusSlaveProcess()--------------------------- +I (293863) modbus: check id... +I (293863) modbus: ok +I (293863) modbus: add: 0, length: 10 +I (293863) modbus: Read Holding Registers +I (293973) modbus tcp: ModBusSlave_recv() +I (293973) modbus: ModbusSlaveProcess()--------------------------- +I (293973) modbus: check id... +I (293973) modbus: ok +I (293973) modbus: add: 0, length: 10 +I (293973) modbus: Read Holding Registers +I (294043) modbus tcp: ModBusSlave_recv() +I (294043) modbus: ModbusSlaveProcess()--------------------------- +I (294043) modbus: check id... +I (294043) modbus: ok +I (294043) modbus: add: 0, length: 10 +I (294043) modbus: Read Holding Registers +I (294173) modbus tcp: ModBusSlave_recv() +I (294173) modbus: ModbusSlaveProcess()--------------------------- +I (294173) modbus: check id... +I (294173) modbus: ok +I (294173) modbus: add: 0, length: 10 +I (294173) modbus: Read Holding Registers +I (294253) modbus tcp: ModBusSlave_recv() +I (294253) modbus: ModbusSlaveProcess()--------------------------- +I (294253) modbus: check id... +I (294253) modbus: ok +I (294253) modbus: add: 0, length: 10 +I (294253) modbus: Read Holding Registers +I (294383) modbus tcp: ModBusSlave_recv() +I (294383) modbus: ModbusSlaveProcess()--------------------------- +I (294383) modbus: check id... +I (294383) modbus: ok +I (294383) modbus: add: 0, length: 10 +I (294383) modbus: Read Holding Registers +I (294583) modbus tcp: ModBusSlave_recv() +I (294583) modbus: ModbusSlaveProcess()--------------------------- +I (294583) modbus: check id... +I (294583) modbus: ok +I (294583) modbus: add: 0, length: 10 +I (294583) modbus: Read Holding Registers +I (294603) modbus tcp: ModBusSlave_recv() +I (294603) modbus: ModbusSlaveProcess()--------------------------- +I (294603) modbus: check id... +I (294603) modbus: ok +I (294603) modbus: add: 0, length: 10 +I (294603) modbus: Read Holding Registers +I (294713) modbus tcp: ModBusSlave_recv() +I (294713) modbus: ModbusSlaveProcess()--------------------------- +I (294713) modbus: check id... +I (294713) modbus: ok +I (294713) modbus: add: 0, length: 10 +I (294713) modbus: Read Holding Registers +I (294823) modbus tcp: ModBusSlave_recv() +I (294823) modbus: ModbusSlaveProcess()--------------------------- +I (294823) modbus: check id... +I (294823) modbus: ok +I (294823) modbus: add: 0, length: 10 +I (294823) modbus: Read Holding Registers +I (294993) modbus tcp: ModBusSlave_recv() +I (294993) modbus: ModbusSlaveProcess()--------------------------- +I (294993) modbus: check id... +I (294993) modbus: ok +I (294993) modbus: add: 0, length: 10 +I (294993) modbus: Read Holding Registers +I (295043) modbus tcp: ModBusSlave_recv() +I (295043) modbus: ModbusSlaveProcess()--------------------------- +I (295043) modbus: check id... +I (295043) modbus: ok +I (295043) modbus: add: 0, length: 10 +I (295043) modbus: Read Holding Registers +I (295203) modbus tcp: ModBusSlave_recv() +I (295203) modbus: ModbusSlaveProcess()--------------------------- +I (295203) modbus: check id... +I (295203) modbus: ok +I (295203) modbus: add: 0, length: 10 +I (295203) modbus: Read Holding Registers +I (295263) modbus tcp: ModBusSlave_recv() +I (295263) modbus: ModbusSlaveProcess()--------------------------- +I (295263) modbus: check id... +I (295263) modbus: ok +I (295263) modbus: add: 0, length: 10 +I (295263) modbus: Read Holding Registers +I (295403) modbus tcp: ModBusSlave_recv() +I (295403) modbus: ModbusSlaveProcess()--------------------------- +I (295403) modbus: check id... +I (295403) modbus: ok +I (295403) modbus: add: 0, length: 10 +I (295403) modbus: Read Holding Registers +I (295483) modbus tcp: ModBusSlave_recv() +I (295483) modbus: ModbusSlaveProcess()--------------------------- +I (295483) modbus: check id... +I (295483) modbus: ok +I (295483) modbus: add: 0, length: 10 +I (295483) modbus: Read Holding Registers +I (295613) modbus tcp: ModBusSlave_recv() +I (295613) modbus: ModbusSlaveProcess()--------------------------- +I (295613) modbus: check id... +I (295613) modbus: ok +I (295613) modbus: add: 0, length: 10 +I (295613) modbus: Read Holding Registers +I (295713) modbus tcp: ModBusSlave_recv() +I (295713) modbus: ModbusSlaveProcess()--------------------------- +I (295713) modbus: check id... +I (295713) modbus: ok +I (295713) modbus: add: 0, length: 10 +I (295713) modbus: Read Holding Registers +I (295813) modbus tcp: ModBusSlave_recv() +I (295813) modbus: ModbusSlaveProcess()--------------------------- +I (295813) modbus: check id... +I (295813) modbus: ok +I (295813) modbus: add: 0, length: 10 +I (295813) modbus: Read Holding Registers +I (295913) modbus tcp: ModBusSlave_recv() +I (295913) modbus: ModbusSlaveProcess()--------------------------- +I (295913) modbus: check id... +I (295913) modbus: ok +I (295913) modbus: add: 0, length: 10 +I (295913) modbus: Read Holding Registers +I (296023) modbus tcp: ModBusSlave_recv() +I (296023) modbus: ModbusSlaveProcess()--------------------------- +I (296023) modbus: check id... +I (296023) modbus: ok +I (296023) modbus: add: 0, length: 10 +I (296023) modbus: Read Holding Registers +I (296223) modbus tcp: ModBusSlave_recv() +I (296223) modbus: ModbusSlaveProcess()--------------------------- +I (296223) modbus: check id... +I (296223) modbus: ok +I (296223) modbus: add: 0, length: 10 +I (296223) modbus: Read Holding Registers +I (296243) modbus tcp: ModBusSlave_recv() +I (296243) modbus: ModbusSlaveProcess()--------------------------- +I (296243) modbus: check id... +I (296243) modbus: ok +I (296243) modbus: add: 0, length: 10 +I (296243) modbus: Read Holding Registers +I (296423) modbus tcp: ModBusSlave_recv() +I (296423) modbus: ModbusSlaveProcess()--------------------------- +I (296423) modbus: check id... +I (296433) modbus: ok +I (296433) modbus: add: 0, length: 10 +I (296433) modbus: Read Holding Registers +I (296463) modbus tcp: ModBusSlave_recv() +I (296463) modbus: ModbusSlaveProcess()--------------------------- +I (296463) modbus: check id... +I (296463) modbus: ok +I (296463) modbus: add: 0, length: 10 +I (296463) modbus: Read Holding Registers +I (296633) modbus tcp: ModBusSlave_recv() +I (296633) modbus: ModbusSlaveProcess()--------------------------- +I (296633) modbus: check id... +I (296633) modbus: ok +I (296633) modbus: add: 0, length: 10 +I (296633) modbus: Read Holding Registers +I (296683) modbus tcp: ModBusSlave_recv() +I (296683) modbus: ModbusSlaveProcess()--------------------------- +I (296683) modbus: check id... +I (296683) modbus: ok +I (296683) modbus: add: 0, length: 10 +I (296683) modbus: Read Holding Registers +I (296833) modbus tcp: ModBusSlave_recv() +I (296833) modbus: ModbusSlaveProcess()--------------------------- +I (296833) modbus: check id... +I (296833) modbus: ok +I (296833) modbus: add: 0, length: 10 +I (296833) modbus: Read Holding Registers +I (296903) modbus tcp: ModBusSlave_recv() +I (296903) modbus: ModbusSlaveProcess()--------------------------- +I (296903) modbus: check id... +I (296903) modbus: ok +I (296903) modbus: add: 0, length: 10 +I (296903) modbus: Read Holding Registers +I (297043) modbus tcp: ModBusSlave_recv() +I (297043) modbus: ModbusSlaveProcess()--------------------------- +I (297043) modbus: check id... +I (297043) modbus: ok +I (297043) modbus: add: 0, length: 10 +I (297043) modbus: Read Holding Registers +I (297123) modbus tcp: ModBusSlave_recv() +I (297123) modbus: ModbusSlaveProcess()--------------------------- +I (297123) modbus: check id... +I (297123) modbus: ok +I (297123) modbus: add: 0, length: 10 +I (297123) modbus: Read Holding Registers +I (297253) modbus tcp: ModBusSlave_recv() +I (297253) modbus: ModbusSlaveProcess()--------------------------- +I (297253) modbus: check id... +I (297253) modbus: ok +I (297253) modbus: add: 0, length: 10 +I (297253) modbus: Read Holding Registers +I (297453) modbus tcp: ModBusSlave_recv() +I (297453) modbus: ModbusSlaveProcess()--------------------------- +I (297453) modbus: check id... +I (297453) modbus: ok +I (297453) modbus: add: 0, length: 10 +I (297453) modbus: Read Holding Registers +I (297483) modbus tcp: ModBusSlave_recv() +I (297483) modbus: ModbusSlaveProcess()--------------------------- +I (297483) modbus: check id... +I (297483) modbus: ok +I (297483) modbus: add: 0, length: 10 +I (297483) modbus: Read Holding Registers +I (297653) modbus tcp: ModBusSlave_recv() +I (297653) modbus: ModbusSlaveProcess()--------------------------- +I (297653) modbus: check id... +I (297653) modbus: ok +I (297653) modbus: add: 0, length: 10 +I (297653) modbus: Read Holding Registers +I (297703) modbus tcp: ModBusSlave_recv() +I (297703) modbus: ModbusSlaveProcess()--------------------------- +I (297703) modbus: check id... +I (297703) modbus: ok +I (297703) modbus: add: 0, length: 10 +I (297703) modbus: Read Holding Registers +I (297863) modbus tcp: ModBusSlave_recv() +I (297863) modbus: ModbusSlaveProcess()--------------------------- +I (297863) modbus: check id... +I (297863) modbus: ok +I (297863) modbus: add: 0, length: 10 +I (297863) modbus: Read Holding Registers +I (297963) modbus tcp: ModBusSlave_recv() +I (297963) modbus: ModbusSlaveProcess()--------------------------- +I (297963) modbus: check id... +I (297963) modbus: ok +I (297963) modbus: add: 0, length: 10 +I (297963) modbus: Read Holding Registers +I (298033) modbus tcp: ModBusSlave_recv() +I (298033) modbus: ModbusSlaveProcess()--------------------------- +I (298033) modbus: check id... +I (298033) modbus: ok +I (298033) modbus: add: 0, length: 10 +I (298033) modbus: Read Holding Registers +I (298133) modbus tcp: ModBusSlave_recv() +I (298143) modbus: ModbusSlaveProcess()--------------------------- +I (298143) modbus: check id... +I (298143) modbus: ok +I (298143) modbus: add: 0, length: 10 +I (298143) modbus: Read Holding Registers +I (298273) modbus tcp: ModBusSlave_recv() +I (298273) modbus: ModbusSlaveProcess()--------------------------- +I (298273) modbus: check id... +I (298273) modbus: ok +I (298273) modbus: add: 0, length: 10 +I (298273) modbus: Read Holding Registers +I (298363) modbus tcp: ModBusSlave_recv() +I (298363) modbus: ModbusSlaveProcess()--------------------------- +I (298363) modbus: check id... +I (298363) modbus: ok +I (298363) modbus: add: 0, length: 10 +I (298363) modbus: Read Holding Registers +I (298473) modbus tcp: ModBusSlave_recv() +I (298473) modbus: ModbusSlaveProcess()--------------------------- +I (298473) modbus: check id... +I (298473) modbus: ok +I (298473) modbus: add: 0, length: 10 +I (298473) modbus: Read Holding Registers +I (298583) modbus tcp: ModBusSlave_recv() +I (298583) modbus: ModbusSlaveProcess()--------------------------- +I (298583) modbus: check id... +I (298583) modbus: ok +I (298583) modbus: add: 0, length: 10 +I (298583) modbus: Read Holding Registers +I (298783) modbus tcp: ModBusSlave_recv() +I (298783) modbus: ModbusSlaveProcess()--------------------------- +I (298783) modbus: check id... +I (298783) modbus: ok +I (298783) modbus: add: 0, length: 10 +I (298783) modbus: Read Holding Registers +I (298803) modbus tcp: ModBusSlave_recv() +I (298803) modbus: ModbusSlaveProcess()--------------------------- +I (298803) modbus: check id... +I (298803) modbus: ok +I (298803) modbus: add: 0, length: 10 +I (298803) modbus: Read Holding Registers +I (298983) modbus tcp: ModBusSlave_recv() +I (298983) modbus: ModbusSlaveProcess()--------------------------- +I (298983) modbus: check id... +I (298983) modbus: ok +I (298983) modbus: add: 0, length: 10 +I (298983) modbus: Read Holding Registers +I (299023) modbus tcp: ModBusSlave_recv() +I (299023) modbus: ModbusSlaveProcess()--------------------------- +I (299023) modbus: check id... +I (299023) modbus: ok +I (299023) modbus: add: 0, length: 10 +I (299023) modbus: Read Holding Registers +I (299193) modbus tcp: ModBusSlave_recv() +I (299193) modbus: ModbusSlaveProcess()--------------------------- +I (299193) modbus: check id... +I (299193) modbus: ok +I (299193) modbus: add: 0, length: 10 +I (299193) modbus: Read Holding Registers +I (299243) modbus tcp: ModBusSlave_recv() +I (299243) modbus: ModbusSlaveProcess()--------------------------- +I (299243) modbus: check id... +I (299243) modbus: ok +I (299243) modbus: add: 0, length: 10 +I (299243) modbus: Read Holding Registers +I (299393) modbus tcp: ModBusSlave_recv() +I (299393) modbus: ModbusSlaveProcess()--------------------------- +I (299393) modbus: check id... +I (299393) modbus: ok +I (299393) modbus: add: 0, length: 10 +I (299393) modbus: Read Holding Registers +I (299463) modbus tcp: ModBusSlave_recv() +I (299463) modbus: ModbusSlaveProcess()--------------------------- +I (299463) modbus: check id... +I (299463) modbus: ok +I (299463) modbus: add: 0, length: 10 +I (299463) modbus: Read Holding Registers +I (299603) modbus tcp: ModBusSlave_recv() +I (299603) modbus: ModbusSlaveProcess()--------------------------- +I (299603) modbus: check id... +I (299603) modbus: ok +I (299603) modbus: add: 0, length: 10 +I (299603) modbus: Read Holding Registers +I (299683) modbus tcp: ModBusSlave_recv() +I (299683) modbus: ModbusSlaveProcess()--------------------------- +I (299683) modbus: check id... +I (299683) modbus: ok +I (299683) modbus: add: 0, length: 10 +I (299683) modbus: Read Holding Registers +I (299843) modbus tcp: ModBusSlave_recv() +I (299843) modbus: ModbusSlaveProcess()--------------------------- +I (299843) modbus: check id... +I (299843) modbus: ok +I (299843) modbus: add: 0, length: 10 +I (299843) modbus: Read Holding Registers +I (299903) modbus tcp: ModBusSlave_recv() +I (299903) modbus: ModbusSlaveProcess()--------------------------- +I (299903) modbus: check id... +I (299903) modbus: ok +I (299903) modbus: add: 0, length: 10 +I (299903) modbus: Read Holding Registers +I (300013) modbus tcp: ModBusSlave_recv() +I (300013) modbus: ModbusSlaveProcess()--------------------------- +I (300013) modbus: check id... +I (300013) modbus: ok +I (300013) modbus: add: 0, length: 10 +I (300013) modbus: Read Holding Registers +I (300213) modbus tcp: ModBusSlave_recv() +I (300213) modbus: ModbusSlaveProcess()--------------------------- +I (300223) modbus: check id... +I (300223) modbus: ok +I (300223) modbus: add: 0, length: 10 +I (300223) modbus: Read Holding Registers +I (300243) modbus tcp: ModBusSlave_recv() +I (300243) modbus: ModbusSlaveProcess()--------------------------- +I (300243) modbus: check id... +I (300243) modbus: ok +I (300243) modbus: add: 0, length: 10 +I (300243) modbus: Read Holding Registers +I (300373) modbus tcp: ModBusSlave_recv() +I (300373) modbus: ModbusSlaveProcess()--------------------------- +I (300373) modbus: check id... +I (300373) modbus: ok +I (300373) modbus: add: 0, length: 10 +I (300373) modbus: Read Holding Registers +I (300523) modbus tcp: ModBusSlave_recv() +I (300523) modbus: ModbusSlaveProcess()--------------------------- +I (300523) modbus: check id... +I (300523) modbus: ok +I (300523) modbus: add: 0, length: 10 +I (300523) modbus: Read Holding Registers +I (300573) modbus tcp: ModBusSlave_recv() +I (300573) modbus: ModbusSlaveProcess()--------------------------- +I (300573) modbus: check id... +I (300573) modbus: ok +I (300573) modbus: add: 0, length: 10 +I (300583) modbus: Read Holding Registers +I (300733) modbus tcp: ModBusSlave_recv() +I (300733) modbus: ModbusSlaveProcess()--------------------------- +I (300733) modbus: check id... +I (300733) modbus: ok +I (300733) modbus: add: 0, length: 10 +I (300733) modbus: Read Holding Registers +I (300793) modbus tcp: ModBusSlave_recv() +I (300793) modbus: ModbusSlaveProcess()--------------------------- +I (300793) modbus: check id... +I (300793) modbus: ok +I (300793) modbus: add: 0, length: 10 +I (300793) modbus: Read Holding Registers +I (300933) modbus tcp: ModBusSlave_recv() +I (300933) modbus: ModbusSlaveProcess()--------------------------- +I (300933) modbus: check id... +I (300933) modbus: ok +I (300933) modbus: add: 0, length: 10 +I (300933) modbus: Read Holding Registers +I (301033) modbus tcp: ModBusSlave_recv() +I (301033) modbus: ModbusSlaveProcess()--------------------------- +I (301033) modbus: check id... +I (301033) modbus: ok +I (301033) modbus: add: 0, length: 10 +I (301033) modbus: Read Holding Registers +I (301113) modbus tcp: ModBusSlave_recv() +I (301113) modbus: ModbusSlaveProcess()--------------------------- +I (301113) modbus: check id... +I (301113) modbus: ok +I (301113) modbus: add: 0, length: 10 +I (301113) modbus: Read Holding Registers +I (301243) modbus tcp: ModBusSlave_recv() +I (301243) modbus: ModbusSlaveProcess()--------------------------- +I (301243) modbus: check id... +I (301243) modbus: ok +I (301243) modbus: add: 0, length: 10 +I (301243) modbus: Read Holding Registers +I (301333) modbus tcp: ModBusSlave_recv() +I (301333) modbus: ModbusSlaveProcess()--------------------------- +I (301333) modbus: check id... +I (301333) modbus: ok +I (301333) modbus: add: 0, length: 10 +I (301333) modbus: Read Holding Registers +I (301443) modbus tcp: ModBusSlave_recv() +I (301443) modbus: ModbusSlaveProcess()--------------------------- +I (301443) modbus: check id... +I (301443) modbus: ok +I (301443) modbus: add: 0, length: 10 +I (301443) modbus: Read Holding Registers +I (301653) modbus tcp: ModBusSlave_recv() +I (301653) modbus: ModbusSlaveProcess()--------------------------- +I (301653) modbus: check id... +I (301653) modbus: ok +I (301653) modbus: add: 0, length: 10 +I (301653) modbus: Read Holding Registers +I (301673) modbus tcp: ModBusSlave_recv() +I (301673) modbus: ModbusSlaveProcess()--------------------------- +I (301673) modbus: check id... +I (301673) modbus: ok +I (301673) modbus: add: 0, length: 10 +I (301673) modbus: Read Holding Registers +I (301773) modbus tcp: ModBusSlave_recv() +I (301773) modbus: ModbusSlaveProcess()--------------------------- +I (301773) modbus: check id... +I (301773) modbus: ok +I (301773) modbus: add: 0, length: 10 +I (301773) modbus: Read Holding Registers +I (301953) modbus tcp: ModBusSlave_recv() +I (301953) modbus: ModbusSlaveProcess()--------------------------- +I (301953) modbus: check id... +I (301953) modbus: ok +I (301953) modbus: add: 0, length: 10 +I (301953) modbus: Read Holding Registers +I (301993) modbus tcp: ModBusSlave_recv() +I (301993) modbus: ModbusSlaveProcess()--------------------------- +I (301993) modbus: check id... +I (301993) modbus: ok +I (301993) modbus: add: 0, length: 10 +I (301993) modbus: Read Holding Registers +I (302163) modbus tcp: ModBusSlave_recv() +I (302163) modbus: ModbusSlaveProcess()--------------------------- +I (302163) modbus: check id... +I (302163) modbus: ok +I (302163) modbus: add: 0, length: 10 +I (302163) modbus: Read Holding Registers +I (302213) modbus tcp: ModBusSlave_recv() +I (302213) modbus: ModbusSlaveProcess()--------------------------- +I (302213) modbus: check id... +I (302213) modbus: ok +I (302213) modbus: add: 0, length: 10 +I (302213) modbus: Read Holding Registers +I (302363) modbus tcp: ModBusSlave_recv() +I (302363) modbus: ModbusSlaveProcess()--------------------------- +I (302363) modbus: check id... +I (302363) modbus: ok +I (302363) modbus: add: 0, length: 10 +I (302363) modbus: Read Holding Registers +I (302433) modbus tcp: ModBusSlave_recv() +I (302433) modbus: ModbusSlaveProcess()--------------------------- +I (302433) modbus: check id... +I (302433) modbus: ok +I (302433) modbus: add: 0, length: 10 +I (302433) modbus: Read Holding Registers +I (302573) modbus tcp: ModBusSlave_recv() +I (302573) modbus: ModbusSlaveProcess()--------------------------- +I (302573) modbus: check id... +I (302573) modbus: ok +I (302573) modbus: add: 0, length: 10 +I (302573) modbus: Read Holding Registers +I (302653) modbus tcp: ModBusSlave_recv() +I (302653) modbus: ModbusSlaveProcess()--------------------------- +I (302653) modbus: check id... +I (302653) modbus: ok +I (302653) modbus: add: 0, length: 10 +I (302653) modbus: Read Holding Registers +I (302773) modbus tcp: ModBusSlave_recv() +I (302773) modbus: ModbusSlaveProcess()--------------------------- +I (302773) modbus: check id... +I (302773) modbus: ok +I (302773) modbus: add: 0, length: 10 +I (302783) modbus: Read Holding Registers +I (302873) modbus tcp: ModBusSlave_recv() +I (302873) modbus: ModbusSlaveProcess()--------------------------- +I (302873) modbus: check id... +I (302873) modbus: ok +I (302873) modbus: add: 0, length: 10 +I (302873) modbus: Read Holding Registers +I (302983) modbus tcp: ModBusSlave_recv() +I (302983) modbus: ModbusSlaveProcess()--------------------------- +I (302983) modbus: check id... +I (302983) modbus: ok +I (302983) modbus: add: 0, length: 10 +I (302983) modbus: Read Holding Registers +I (303183) modbus tcp: ModBusSlave_recv() +I (303183) modbus: ModbusSlaveProcess()--------------------------- +I (303183) modbus: check id... +I (303183) modbus: ok +I (303183) modbus: add: 0, length: 10 +I (303183) modbus: Read Holding Registers +I (303203) modbus tcp: ModBusSlave_recv() +I (303203) modbus: ModbusSlaveProcess()--------------------------- +I (303203) modbus: check id... +I (303203) modbus: ok +I (303203) modbus: add: 0, length: 10 +I (303203) modbus: Read Holding Registers +I (303313) modbus tcp: ModBusSlave_recv() +I (303313) modbus: ModbusSlaveProcess()--------------------------- +I (303313) modbus: check id... +I (303313) modbus: ok +I (303313) modbus: add: 0, length: 10 +I (303313) modbus: Read Holding Registers +I (303493) modbus tcp: ModBusSlave_recv() +I (303493) modbus: ModbusSlaveProcess()--------------------------- +I (303493) modbus: check id... +I (303493) modbus: ok +I (303493) modbus: add: 0, length: 10 +I (303493) modbus: Read Holding Registers +I (303563) modbus tcp: ModBusSlave_recv() +I (303563) modbus: ModbusSlaveProcess()--------------------------- +I (303563) modbus: check id... +I (303563) modbus: ok +I (303563) modbus: add: 0, length: 10 +I (303563) modbus: Read Holding Registers +I (303673) modbus tcp: ModBusSlave_recv() +I (303673) modbus: ModbusSlaveProcess()--------------------------- +I (303673) modbus: check id... +I (303673) modbus: ok +I (303673) modbus: add: 0, length: 10 +I (303673) modbus: Read Holding Registers +I (303803) modbus tcp: ModBusSlave_recv() +I (303803) modbus: ModbusSlaveProcess()--------------------------- +I (303803) modbus: check id... +I (303803) modbus: ok +I (303803) modbus: add: 0, length: 10 +I (303803) modbus: Read Holding Registers +I (303883) modbus tcp: ModBusSlave_recv() +I (303883) modbus: ModbusSlaveProcess()--------------------------- +I (303883) modbus: check id... +I (303883) modbus: ok +I (303883) modbus: add: 0, length: 10 +I (303883) modbus: Read Holding Registers +I (304003) modbus tcp: ModBusSlave_recv() +I (304003) modbus: ModbusSlaveProcess()--------------------------- +I (304003) modbus: check id... +I (304003) modbus: ok +I (304003) modbus: add: 0, length: 10 +I (304003) modbus: Read Holding Registers +I (304103) modbus tcp: ModBusSlave_recv() +I (304103) modbus: ModbusSlaveProcess()--------------------------- +I (304103) modbus: check id... +I (304103) modbus: ok +I (304103) modbus: add: 0, length: 10 +I (304103) modbus: Read Holding Registers +I (304213) modbus tcp: ModBusSlave_recv() +I (304213) modbus: ModbusSlaveProcess()--------------------------- +I (304213) modbus: check id... +I (304213) modbus: ok +I (304213) modbus: add: 0, length: 10 +I (304213) modbus: Read Holding Registers +I (304313) modbus tcp: ModBusSlave_recv() +I (304313) modbus: ModbusSlaveProcess()--------------------------- +I (304313) modbus: check id... +I (304313) modbus: ok +I (304313) modbus: add: 0, length: 10 +I (304313) modbus: Read Holding Registers +I (304523) modbus tcp: ModBusSlave_recv() +I (304523) modbus: ModbusSlaveProcess()--------------------------- +I (304523) modbus: check id... +I (304523) modbus: ok +I (304523) modbus: add: 0, length: 10 +I (304523) modbus: Read Holding Registers +I (304543) modbus tcp: ModBusSlave_recv() +I (304543) modbus: ModbusSlaveProcess()--------------------------- +I (304543) modbus: check id... +I (304543) modbus: ok +I (304543) modbus: add: 0, length: 10 +I (304543) modbus: Read Holding Registers +I (304723) modbus tcp: ModBusSlave_recv() +I (304723) modbus: ModbusSlaveProcess()--------------------------- +I (304723) modbus: check id... +I (304723) modbus: ok +I (304723) modbus: add: 0, length: 10 +I (304733) modbus: Read Holding Registers +I (304773) modbus tcp: ModBusSlave_recv() +I (304773) modbus: ModbusSlaveProcess()--------------------------- +I (304773) modbus: check id... +I (304773) modbus: ok +I (304773) modbus: add: 0, length: 10 +I (304773) modbus: Read Holding Registers +I (304963) modbus tcp: ModBusSlave_recv() +I (304963) modbus: ModbusSlaveProcess()--------------------------- +I (304963) modbus: check id... +I (304963) modbus: ok +I (304963) modbus: add: 0, length: 10 +I (304963) modbus: Read Holding Registers +I (305003) modbus tcp: ModBusSlave_recv() +I (305003) modbus: ModbusSlaveProcess()--------------------------- +I (305003) modbus: check id... +I (305003) modbus: ok +I (305013) modbus: add: 0, length: 10 +I (305013) modbus: Read Holding Registers +I (305133) modbus tcp: ModBusSlave_recv() +I (305133) modbus: ModbusSlaveProcess()--------------------------- +I (305133) modbus: check id... +I (305133) modbus: ok +I (305133) modbus: add: 0, length: 10 +I (305133) modbus: Read Holding Registers +I (305333) modbus tcp: ModBusSlave_recv() +I (305333) modbus: ModbusSlaveProcess()--------------------------- +I (305333) modbus: check id... +I (305333) modbus: ok +I (305333) modbus: add: 0, length: 10 +I (305333) modbus: Read Holding Registers +I (305353) modbus tcp: ModBusSlave_recv() +I (305353) modbus: ModbusSlaveProcess()--------------------------- +I (305353) modbus: check id... +I (305353) modbus: ok +I (305353) modbus: add: 0, length: 10 +I (305353) modbus: Read Holding Registers +I (305543) modbus tcp: ModBusSlave_recv() +I (305543) modbus: ModbusSlaveProcess()--------------------------- +I (305543) modbus: check id... +I (305543) modbus: ok +I (305543) modbus: add: 0, length: 10 +I (305543) modbus: Read Holding Registers +I (305573) modbus tcp: ModBusSlave_recv() +I (305573) modbus: ModbusSlaveProcess()--------------------------- +I (305573) modbus: check id... +I (305573) modbus: ok +I (305573) modbus: add: 0, length: 10 +I (305573) modbus: Read Holding Registers +I (305743) modbus tcp: ModBusSlave_recv() +I (305743) modbus: ModbusSlaveProcess()--------------------------- +I (305743) modbus: check id... +I (305743) modbus: ok +I (305743) modbus: add: 0, length: 10 +I (305743) modbus: Read Holding Registers +I (305793) modbus tcp: ModBusSlave_recv() +I (305793) modbus: ModbusSlaveProcess()--------------------------- +I (305793) modbus: check id... +I (305793) modbus: ok +I (305793) modbus: add: 0, length: 10 +I (305793) modbus: Read Holding Registers +I (305953) modbus tcp: ModBusSlave_recv() +I (305953) modbus: ModbusSlaveProcess()--------------------------- +I (305953) modbus: check id... +I (305953) modbus: ok +I (305953) modbus: add: 0, length: 10 +I (305953) modbus: Read Holding Registers +I (306023) modbus tcp: ModBusSlave_recv() +I (306023) modbus: ModbusSlaveProcess()--------------------------- +I (306023) modbus: check id... +I (306023) modbus: ok +I (306023) modbus: add: 0, length: 10 +I (306023) modbus: Read Holding Registers +I (306153) modbus tcp: ModBusSlave_recv() +I (306153) modbus: ModbusSlaveProcess()--------------------------- +I (306153) modbus: check id... +I (306153) modbus: ok +I (306153) modbus: add: 0, length: 10 +I (306153) modbus: Read Holding Registers +I (306233) modbus tcp: ModBusSlave_recv() +I (306233) modbus: ModbusSlaveProcess()--------------------------- +I (306233) modbus: check id... +I (306233) modbus: ok +I (306233) modbus: add: 0, length: 10 +I (306233) modbus: Read Holding Registers +I (306333) modbus tcp: ModBusSlave_recv() +I (306333) modbus: ModbusSlaveProcess()--------------------------- +I (306333) modbus: check id... +I (306333) modbus: ok +I (306333) modbus: add: 0, length: 10 +I (306333) modbus: Read Holding Registers +I (306463) modbus tcp: ModBusSlave_recv() +I (306463) modbus: ModbusSlaveProcess()--------------------------- +I (306463) modbus: check id... +I (306463) modbus: ok +I (306463) modbus: add: 0, length: 10 +I (306463) modbus: Read Holding Registers +I (306563) modbus tcp: ModBusSlave_recv() +I (306563) modbus: ModbusSlaveProcess()--------------------------- +I (306563) modbus: check id... +I (306563) modbus: ok +I (306563) modbus: add: 0, length: 10 +I (306563) modbus: Read Holding Registers +I (306663) modbus tcp: ModBusSlave_recv() +I (306663) modbus: ModbusSlaveProcess()--------------------------- +I (306663) modbus: check id... +I (306663) modbus: ok +I (306663) modbus: add: 0, length: 10 +I (306663) modbus: Read Holding Registers +I (306873) modbus tcp: ModBusSlave_recv() +I (306873) modbus: ModbusSlaveProcess()--------------------------- +I (306873) modbus: check id... +I (306873) modbus: ok +I (306873) modbus: add: 0, length: 10 +I (306873) modbus: Read Holding Registers +I (306893) modbus tcp: ModBusSlave_recv() +I (306893) modbus: ModbusSlaveProcess()--------------------------- +I (306893) modbus: check id... +I (306893) modbus: ok +I (306893) modbus: add: 0, length: 10 +I (306893) modbus: Read Holding Registers +I (307083) modbus tcp: ModBusSlave_recv() +I (307083) modbus: ModbusSlaveProcess()--------------------------- +I (307083) modbus: check id... +I (307083) modbus: ok +I (307083) modbus: add: 0, length: 10 +I (307083) modbus: Read Holding Registers +I (307123) modbus tcp: ModBusSlave_recv() +I (307123) modbus: ModbusSlaveProcess()--------------------------- +I (307123) modbus: check id... +I (307123) modbus: ok +I (307123) modbus: add: 0, length: 10 +I (307123) modbus: Read Holding Registers +I (307293) modbus tcp: ModBusSlave_recv() +I (307293) modbus: ModbusSlaveProcess()--------------------------- +I (307293) modbus: check id... +I (307293) modbus: ok +I (307293) modbus: add: 0, length: 10 +I (307293) modbus: Read Holding Registers +I (307333) modbus tcp: ModBusSlave_recv() +I (307333) modbus: ModbusSlaveProcess()--------------------------- +I (307333) modbus: check id... +I (307333) modbus: ok +I (307333) modbus: add: 0, length: 10 +I (307333) modbus: Read Holding Registers +I (307453) modbus tcp: ModBusSlave_recv() +I (307453) modbus: ModbusSlaveProcess()--------------------------- +I (307453) modbus: check id... +I (307453) modbus: ok +I (307453) modbus: add: 0, length: 10 +I (307453) modbus: Read Holding Registers +I (307593) modbus tcp: ModBusSlave_recv() +I (307593) modbus: ModbusSlaveProcess()--------------------------- +I (307593) modbus: check id... +I (307593) modbus: ok +I (307593) modbus: add: 0, length: 10 +I (307593) modbus: Read Holding Registers +I (307673) modbus tcp: ModBusSlave_recv() +I (307673) modbus: ModbusSlaveProcess()--------------------------- +I (307673) modbus: check id... +I (307673) modbus: ok +I (307673) modbus: add: 0, length: 10 +I (307673) modbus: Read Holding Registers +I (307793) modbus tcp: ModBusSlave_recv() +I (307793) modbus: ModbusSlaveProcess()--------------------------- +I (307793) modbus: check id... +I (307793) modbus: ok +I (307793) modbus: add: 0, length: 10 +I (307793) modbus: Read Holding Registers +I (307893) modbus tcp: ModBusSlave_recv() +I (307893) modbus: ModbusSlaveProcess()--------------------------- +I (307893) modbus: check id... +I (307893) modbus: ok +I (307893) modbus: add: 0, length: 10 +I (307893) modbus: Read Holding Registers +I (307993) modbus tcp: ModBusSlave_recv() +I (307993) modbus: ModbusSlaveProcess()--------------------------- +I (307993) modbus: check id... +I (307993) modbus: ok +I (307993) modbus: add: 0, length: 10 +I (307993) modbus: Read Holding Registers +I (308203) modbus tcp: ModBusSlave_recv() +I (308203) modbus: ModbusSlaveProcess()--------------------------- +I (308203) modbus: check id... +I (308203) modbus: ok +I (308203) modbus: add: 0, length: 10 +I (308203) modbus: Read Holding Registers +I (308233) modbus tcp: ModBusSlave_recv() +I (308233) modbus: ModbusSlaveProcess()--------------------------- +I (308233) modbus: check id... +I (308233) modbus: ok +I (308233) modbus: add: 0, length: 10 +I (308233) modbus: Read Holding Registers +I (308343) modbus tcp: ModBusSlave_recv() +I (308343) modbus: ModbusSlaveProcess()--------------------------- +I (308343) modbus: check id... +I (308343) modbus: ok +I (308343) modbus: add: 0, length: 10 +I (308343) modbus: Read Holding Registers +I (308513) modbus tcp: ModBusSlave_recv() +I (308513) modbus: ModbusSlaveProcess()--------------------------- +I (308513) modbus: check id... +I (308513) modbus: ok +I (308513) modbus: add: 0, length: 10 +I (308513) modbus: Read Holding Registers +I (308563) modbus tcp: ModBusSlave_recv() +I (308563) modbus: ModbusSlaveProcess()--------------------------- +I (308563) modbus: check id... +I (308563) modbus: ok +I (308563) modbus: add: 0, length: 10 +I (308563) modbus: Read Holding Registers +I (308713) modbus tcp: ModBusSlave_recv() +I (308713) modbus: ModbusSlaveProcess()--------------------------- +I (308713) modbus: check id... +I (308713) modbus: ok +I (308713) modbus: add: 0, length: 10 +I (308713) modbus: Read Holding Registers +I (308783) modbus tcp: ModBusSlave_recv() +I (308783) modbus: ModbusSlaveProcess()--------------------------- +I (308783) modbus: check id... +I (308783) modbus: ok +I (308783) modbus: add: 0, length: 10 +I (308783) modbus: Read Holding Registers +I (308903) modbus tcp: ModBusSlave_recv() +I (308903) modbus: ModbusSlaveProcess()--------------------------- +I (308903) modbus: check id... +I (308903) modbus: ok +I (308903) modbus: add: 0, length: 10 +I (308903) modbus: Read Holding Registers +I (309023) modbus tcp: ModBusSlave_recv() +I (309023) modbus: ModbusSlaveProcess()--------------------------- +I (309023) modbus: check id... +I (309023) modbus: ok +I (309023) modbus: add: 0, length: 10 +I (309023) modbus: Read Holding Registers +I (309123) modbus tcp: ModBusSlave_recv() +I (309123) modbus: ModbusSlaveProcess()--------------------------- +I (309123) modbus: check id... +I (309123) modbus: ok +I (309123) modbus: add: 0, length: 10 +I (309123) modbus: Read Holding Registers +I (309203) modbus tcp: ModBusSlave_recv() +I (309203) modbus: ModbusSlaveProcess()--------------------------- +I (309203) modbus: check id... +I (309203) modbus: ok +I (309203) modbus: add: 0, length: 10 +I (309203) modbus: Read Holding Registers +I (309323) modbus tcp: ModBusSlave_recv() +I (309323) modbus: ModbusSlaveProcess()--------------------------- +I (309323) modbus: check id... +I (309323) modbus: ok +I (309323) modbus: add: 0, length: 10 +I (309323) modbus: Read Holding Registers +I (309433) modbus tcp: ModBusSlave_recv() +I (309433) modbus: ModbusSlaveProcess()--------------------------- +I (309433) modbus: check id... +I (309433) modbus: ok +I (309433) modbus: add: 0, length: 10 +I (309433) modbus: Read Holding Registers +I (309633) modbus tcp: ModBusSlave_recv() +I (309633) modbus: ModbusSlaveProcess()--------------------------- +I (309633) modbus: check id... +I (309633) modbus: ok +I (309633) modbus: add: 0, length: 10 +I (309633) modbus: Read Holding Registers +I (309663) modbus tcp: ModBusSlave_recv() +I (309663) modbus: ModbusSlaveProcess()--------------------------- +I (309663) modbus: check id... +I (309663) modbus: ok +I (309663) modbus: add: 0, length: 10 +I (309663) modbus: Read Holding Registers +I (309753) modbus tcp: ModBusSlave_recv() +I (309753) modbus: ModbusSlaveProcess()--------------------------- +I (309753) modbus: check id... +I (309753) modbus: ok +I (309753) modbus: add: 0, length: 10 +I (309753) modbus: Read Holding Registers +I (309863) modbus tcp: ModBusSlave_recv() +I (309863) modbus: ModbusSlaveProcess()--------------------------- +I (309863) modbus: check id... +I (309863) modbus: ok +I (309863) modbus: add: 0, length: 10 +I (309863) modbus: Read Holding Registers +I (309973) modbus tcp: ModBusSlave_recv() +I (309973) modbus: ModbusSlaveProcess()--------------------------- +I (309973) modbus: check id... +I (309973) modbus: ok +I (309973) modbus: add: 0, length: 10 +I (309973) modbus: Read Holding Registers +I (310143) modbus tcp: ModBusSlave_recv() +I (310143) modbus: ModbusSlaveProcess()--------------------------- +I (310143) modbus: check id... +I (310153) modbus: ok +I (310153) modbus: add: 0, length: 10 +I (310153) modbus: Read Holding Registers +I (310193) modbus tcp: ModBusSlave_recv() +I (310193) modbus: ModbusSlaveProcess()--------------------------- +I (310193) modbus: check id... +I (310193) modbus: ok +I (310193) modbus: add: 0, length: 10 +I (310193) modbus: Read Holding Registers +I (310353) modbus tcp: ModBusSlave_recv() +I (310353) modbus: ModbusSlaveProcess()--------------------------- +I (310353) modbus: check id... +I (310353) modbus: ok +I (310353) modbus: add: 0, length: 10 +I (310353) modbus: Read Holding Registers +I (310413) modbus tcp: ModBusSlave_recv() +I (310413) modbus: ModbusSlaveProcess()--------------------------- +I (310413) modbus: check id... +I (310413) modbus: ok +I (310413) modbus: add: 0, length: 10 +I (310413) modbus: Read Holding Registers +I (310563) modbus tcp: ModBusSlave_recv() +I (310563) modbus: ModbusSlaveProcess()--------------------------- +I (310563) modbus: check id... +I (310563) modbus: ok +I (310563) modbus: add: 0, length: 10 +I (310563) modbus: Read Holding Registers +I (310643) modbus tcp: ModBusSlave_recv() +I (310643) modbus: ModbusSlaveProcess()--------------------------- +I (310643) modbus: check id... +I (310643) modbus: ok +I (310643) modbus: add: 0, length: 10 +I (310643) modbus: Read Holding Registers +I (310793) modbus tcp: ModBusSlave_recv() +I (310793) modbus: ModbusSlaveProcess()--------------------------- +I (310793) modbus: check id... +I (310793) modbus: ok +I (310793) modbus: add: 0, length: 10 +I (310793) modbus: Read Holding Registers +I (310873) modbus tcp: ModBusSlave_recv() +I (310873) modbus: ModbusSlaveProcess()--------------------------- +I (310873) modbus: check id... +I (310873) modbus: ok +I (310873) modbus: add: 0, length: 10 +I (310873) modbus: Read Holding Registers +I (311073) modbus tcp: ModBusSlave_recv() +I (311073) modbus: ModbusSlaveProcess()--------------------------- +I (311073) modbus: check id... +I (311073) modbus: ok +I (311073) modbus: add: 0, length: 10 +I (311073) modbus: Read Holding Registers +I (311093) modbus tcp: ModBusSlave_recv() +I (311093) modbus: ModbusSlaveProcess()--------------------------- +I (311093) modbus: check id... +I (311093) modbus: ok +I (311093) modbus: add: 0, length: 10 +I (311093) modbus: Read Holding Registers +I (311273) modbus tcp: ModBusSlave_recv() +I (311273) modbus: ModbusSlaveProcess()--------------------------- +I (311273) modbus: check id... +I (311273) modbus: ok +I (311273) modbus: add: 0, length: 10 +I (311273) modbus: Read Holding Registers +I (311343) modbus tcp: ModBusSlave_recv() +I (311343) modbus: ModbusSlaveProcess()--------------------------- +I (311343) modbus: check id... +I (311343) modbus: ok +I (311343) modbus: add: 0, length: 10 +I (311343) modbus: Read Holding Registers +I (311483) modbus tcp: ModBusSlave_recv() +I (311483) modbus: ModbusSlaveProcess()--------------------------- +I (311483) modbus: check id... +I (311483) modbus: ok +I (311483) modbus: add: 0, length: 10 +I (311483) modbus: Read Holding Registers +I (311563) modbus tcp: ModBusSlave_recv() +I (311563) modbus: ModbusSlaveProcess()--------------------------- +I (311563) modbus: check id... +I (311563) modbus: ok +I (311563) modbus: add: 0, length: 10 +I (311563) modbus: Read Holding Registers +I (311673) modbus tcp: ModBusSlave_recv() +I (311673) modbus: ModbusSlaveProcess()--------------------------- +I (311673) modbus: check id... +I (311673) modbus: ok +I (311673) modbus: add: 0, length: 10 +I (311673) modbus: Read Holding Registers +I (311763) modbus tcp: ModBusSlave_recv() +I (311773) modbus: ModbusSlaveProcess()--------------------------- +I (311773) modbus: check id... +I (311773) modbus: ok +I (311773) modbus: add: 0, length: 10 +I (311773) modbus: Read Holding Registers +I (311893) modbus tcp: ModBusSlave_recv() +I (311893) modbus: ModbusSlaveProcess()--------------------------- +I (311893) modbus: check id... +I (311893) modbus: ok +I (311893) modbus: add: 0, length: 10 +I (311893) modbus: Read Holding Registers +I (311993) modbus tcp: ModBusSlave_recv() +I (311993) modbus: ModbusSlaveProcess()--------------------------- +I (311993) modbus: check id... +I (311993) modbus: ok +I (311993) modbus: add: 0, length: 10 +I (311993) modbus: Read Holding Registers +I (312193) modbus tcp: ModBusSlave_recv() +I (312193) modbus: ModbusSlaveProcess()--------------------------- +I (312193) modbus: check id... +I (312193) modbus: ok +I (312193) modbus: add: 0, length: 10 +I (312193) modbus: Read Holding Registers +I (312223) modbus tcp: ModBusSlave_recv() +I (312223) modbus: ModbusSlaveProcess()--------------------------- +I (312223) modbus: check id... +I (312223) modbus: ok +I (312223) modbus: add: 0, length: 10 +I (312223) modbus: Read Holding Registers +I (312353) modbus tcp: ModBusSlave_recv() +I (312353) modbus: ModbusSlaveProcess()--------------------------- +I (312353) modbus: check id... +I (312353) modbus: ok +I (312353) modbus: add: 0, length: 10 +I (312353) modbus: Read Holding Registers +I (312443) modbus tcp: ModBusSlave_recv() +I (312443) modbus: ModbusSlaveProcess()--------------------------- +I (312443) modbus: check id... +I (312443) modbus: ok +I (312443) modbus: add: 0, length: 10 +I (312443) modbus: Read Holding Registers +I (312603) modbus tcp: ModBusSlave_recv() +I (312603) modbus: ModbusSlaveProcess()--------------------------- +I (312603) modbus: check id... +I (312613) modbus: ok +I (312613) modbus: add: 0, length: 10 +I (312613) modbus: Read Holding Registers +I (312663) modbus tcp: ModBusSlave_recv() +I (312663) modbus: ModbusSlaveProcess()--------------------------- +I (312663) modbus: check id... +I (312663) modbus: ok +I (312663) modbus: add: 0, length: 10 +I (312663) modbus: Read Holding Registers +I (312773) modbus tcp: ModBusSlave_recv() +I (312783) modbus: ModbusSlaveProcess()--------------------------- +I (312783) modbus: check id... +I (312783) modbus: ok +I (312783) modbus: add: 0, length: 10 +I (312783) modbus: Read Holding Registers +I (312893) modbus tcp: ModBusSlave_recv() +I (312893) modbus: ModbusSlaveProcess()--------------------------- +I (312893) modbus: check id... +I (312893) modbus: ok +I (312893) modbus: add: 0, length: 10 +I (312893) modbus: Read Holding Registers +I (313013) modbus tcp: ModBusSlave_recv() +I (313013) modbus: ModbusSlaveProcess()--------------------------- +I (313013) modbus: check id... +I (313013) modbus: ok +I (313013) modbus: add: 0, length: 10 +I (313013) modbus: Read Holding Registers +I (313103) modbus tcp: ModBusSlave_recv() +I (313103) modbus: ModbusSlaveProcess()--------------------------- +I (313103) modbus: check id... +I (313103) modbus: ok +I (313103) modbus: add: 0, length: 10 +I (313103) modbus: Read Holding Registers +I (313223) modbus tcp: ModBusSlave_recv() +I (313223) modbus: ModbusSlaveProcess()--------------------------- +I (313223) modbus: check id... +I (313223) modbus: ok +I (313223) modbus: add: 0, length: 10 +I (313223) modbus: Read Holding Registers +I (313323) modbus tcp: ModBusSlave_recv() +I (313323) modbus: ModbusSlaveProcess()--------------------------- +I (313323) modbus: check id... +I (313323) modbus: ok +I (313323) modbus: add: 0, length: 10 +I (313323) modbus: Read Holding Registers +I (313533) modbus tcp: ModBusSlave_recv() +I (313533) modbus: ModbusSlaveProcess()--------------------------- +I (313533) modbus: check id... +I (313533) modbus: ok +I (313533) modbus: add: 0, length: 10 +I (313533) modbus: Read Holding Registers +I (313563) modbus tcp: ModBusSlave_recv() +I (313563) modbus: ModbusSlaveProcess()--------------------------- +I (313563) modbus: check id... +I (313563) modbus: ok +I (313563) modbus: add: 0, length: 10 +I (313563) modbus: Read Holding Registers +I (313733) modbus tcp: ModBusSlave_recv() +I (313733) modbus: ModbusSlaveProcess()--------------------------- +I (313733) modbus: check id... +I (313733) modbus: ok +I (313733) modbus: add: 0, length: 10 +I (313733) modbus: Read Holding Registers +I (313773) modbus tcp: ModBusSlave_recv() +I (313773) modbus: ModbusSlaveProcess()--------------------------- +I (313773) modbus: check id... +I (313773) modbus: ok +I (313773) modbus: add: 0, length: 10 +I (313773) modbus: Read Holding Registers +I (313943) modbus tcp: ModBusSlave_recv() +I (313943) modbus: ModbusSlaveProcess()--------------------------- +I (313943) modbus: check id... +I (313943) modbus: ok +I (313943) modbus: add: 0, length: 10 +I (313943) modbus: Read Holding Registers +I (313993) modbus tcp: ModBusSlave_recv() +I (313993) modbus: ModbusSlaveProcess()--------------------------- +I (313993) modbus: check id... +I (313993) modbus: ok +I (313993) modbus: add: 0, length: 10 +I (313993) modbus: Read Holding Registers +I (314143) modbus tcp: ModBusSlave_recv() +I (314143) modbus: ModbusSlaveProcess()--------------------------- +I (314143) modbus: check id... +I (314143) modbus: ok +I (314143) modbus: add: 0, length: 10 +I (314143) modbus: Read Holding Registers +I (314213) modbus tcp: ModBusSlave_recv() +I (314213) modbus: ModbusSlaveProcess()--------------------------- +I (314213) modbus: check id... +I (314213) modbus: ok +I (314213) modbus: add: 0, length: 10 +I (314213) modbus: Read Holding Registers +I (314343) modbus tcp: ModBusSlave_recv() +I (314343) modbus: ModbusSlaveProcess()--------------------------- +I (314343) modbus: check id... +I (314343) modbus: ok +I (314343) modbus: add: 0, length: 10 +I (314353) modbus: Read Holding Registers +I (314433) modbus tcp: ModBusSlave_recv() +I (314433) modbus: ModbusSlaveProcess()--------------------------- +I (314433) modbus: check id... +I (314433) modbus: ok +I (314433) modbus: add: 0, length: 10 +I (314433) modbus: Read Holding Registers +I (314553) modbus tcp: ModBusSlave_recv() +I (314553) modbus: ModbusSlaveProcess()--------------------------- +I (314553) modbus: check id... +I (314553) modbus: ok +I (314553) modbus: add: 0, length: 10 +I (314553) modbus: Read Holding Registers +I (314653) modbus tcp: ModBusSlave_recv() +I (314653) modbus: ModbusSlaveProcess()--------------------------- +I (314653) modbus: check id... +I (314653) modbus: ok +I (314653) modbus: add: 0, length: 10 +I (314653) modbus: Read Holding Registers +I (314753) modbus tcp: ModBusSlave_recv() +I (314753) modbus: ModbusSlaveProcess()--------------------------- +I (314753) modbus: check id... +I (314753) modbus: ok +I (314753) modbus: add: 0, length: 10 +I (314753) modbus: Read Holding Registers +I (314963) modbus tcp: ModBusSlave_recv() +I (314963) modbus: ModbusSlaveProcess()--------------------------- +I (314963) modbus: check id... +I (314963) modbus: ok +I (314963) modbus: add: 0, length: 10 +I (314963) modbus: Read Holding Registers +I (314973) modbus tcp: ModBusSlave_recv() +I (314973) modbus: ModbusSlaveProcess()--------------------------- +I (314973) modbus: check id... +I (314973) modbus: ok +I (314973) modbus: add: 0, length: 10 +I (314973) modbus: Read Holding Registers +I (315083) modbus tcp: ModBusSlave_recv() +I (315083) modbus: ModbusSlaveProcess()--------------------------- +I (315083) modbus: check id... +I (315083) modbus: ok +I (315083) modbus: add: 0, length: 10 +I (315083) modbus: Read Holding Registers +I (315193) modbus tcp: ModBusSlave_recv() +I (315193) modbus: ModbusSlaveProcess()--------------------------- +I (315193) modbus: check id... +I (315193) modbus: ok +I (315193) modbus: add: 0, length: 10 +I (315203) modbus: Read Holding Registers +I (315313) modbus tcp: ModBusSlave_recv() +I (315313) modbus: ModbusSlaveProcess()--------------------------- +I (315313) modbus: check id... +I (315313) modbus: ok +I (315313) modbus: add: 0, length: 10 +I (315313) modbus: Read Holding Registers +I (315473) modbus tcp: ModBusSlave_recv() +I (315473) modbus: ModbusSlaveProcess()--------------------------- +I (315473) modbus: check id... +I (315473) modbus: ok +I (315473) modbus: add: 0, length: 10 +I (315473) modbus: Read Holding Registers +I (315533) modbus tcp: ModBusSlave_recv() +I (315533) modbus: ModbusSlaveProcess()--------------------------- +I (315533) modbus: check id... +I (315533) modbus: ok +I (315533) modbus: add: 0, length: 10 +I (315533) modbus: Read Holding Registers +I (315653) modbus tcp: ModBusSlave_recv() +I (315653) modbus: ModbusSlaveProcess()--------------------------- +I (315653) modbus: check id... +I (315653) modbus: ok +I (315653) modbus: add: 0, length: 10 +I (315653) modbus: Read Holding Registers +I (315743) modbus tcp: ModBusSlave_recv() +I (315743) modbus: ModbusSlaveProcess()--------------------------- +I (315753) modbus: check id... +I (315753) modbus: ok +I (315753) modbus: add: 0, length: 10 +I (315753) modbus: Read Holding Registers +I (315883) modbus tcp: ModBusSlave_recv() +I (315883) modbus: ModbusSlaveProcess()--------------------------- +I (315883) modbus: check id... +I (315883) modbus: ok +I (315883) modbus: add: 0, length: 10 +I (315883) modbus: Read Holding Registers +I (315983) modbus tcp: ModBusSlave_recv() +I (315983) modbus: ModbusSlaveProcess()--------------------------- +I (315983) modbus: check id... +I (315993) modbus: ok +I (315993) modbus: add: 0, length: 10 +I (315993) modbus: Read Holding Registers +I (316083) modbus tcp: ModBusSlave_recv() +I (316083) modbus: ModbusSlaveProcess()--------------------------- +I (316083) modbus: check id... +I (316083) modbus: ok +I (316083) modbus: add: 0, length: 10 +I (316083) modbus: Read Holding Registers +I (316193) modbus tcp: ModBusSlave_recv() +I (316193) modbus: ModbusSlaveProcess()--------------------------- +I (316193) modbus: check id... +I (316193) modbus: ok +I (316193) modbus: add: 0, length: 10 +I (316193) modbus: Read Holding Registers +I (316293) modbus tcp: ModBusSlave_recv() +I (316293) modbus: ModbusSlaveProcess()--------------------------- +I (316293) modbus: check id... +I (316293) modbus: ok +I (316293) modbus: add: 0, length: 10 +I (316293) modbus: Read Holding Registers +I (316503) modbus tcp: ModBusSlave_recv() +I (316503) modbus: ModbusSlaveProcess()--------------------------- +I (316503) modbus: check id... +I (316503) modbus: ok +I (316503) modbus: add: 0, length: 10 +I (316503) modbus: Read Holding Registers +I (316513) modbus tcp: ModBusSlave_recv() +I (316513) modbus: ModbusSlaveProcess()--------------------------- +I (316513) modbus: check id... +I (316513) modbus: ok +I (316513) modbus: add: 0, length: 10 +I (316513) modbus: Read Holding Registers +I (316703) modbus tcp: ModBusSlave_recv() +I (316703) modbus: ModbusSlaveProcess()--------------------------- +I (316703) modbus: check id... +I (316703) modbus: ok +I (316703) modbus: add: 0, length: 10 +I (316703) modbus: Read Holding Registers +I (316733) modbus tcp: ModBusSlave_recv() +I (316733) modbus: ModbusSlaveProcess()--------------------------- +I (316733) modbus: check id... +I (316733) modbus: ok +I (316733) modbus: add: 0, length: 10 +I (316733) modbus: Read Holding Registers +I (316903) modbus tcp: ModBusSlave_recv() +I (316903) modbus: ModbusSlaveProcess()--------------------------- +I (316903) modbus: check id... +I (316903) modbus: ok +I (316903) modbus: add: 0, length: 10 +I (316903) modbus: Read Holding Registers +I (316953) modbus tcp: ModBusSlave_recv() +I (316953) modbus: ModbusSlaveProcess()--------------------------- +I (316953) modbus: check id... +I (316953) modbus: ok +I (316953) modbus: add: 0, length: 10 +I (316963) modbus: Read Holding Registers +I (317113) modbus tcp: ModBusSlave_recv() +I (317113) modbus: ModbusSlaveProcess()--------------------------- +I (317113) modbus: check id... +I (317113) modbus: ok +I (317113) modbus: add: 0, length: 10 +I (317113) modbus: Read Holding Registers +I (317183) modbus tcp: ModBusSlave_recv() +I (317183) modbus: ModbusSlaveProcess()--------------------------- +I (317183) modbus: check id... +I (317183) modbus: ok +I (317183) modbus: add: 0, length: 10 +I (317183) modbus: Read Holding Registers +I (317313) modbus tcp: ModBusSlave_recv() +I (317313) modbus: ModbusSlaveProcess()--------------------------- +I (317313) modbus: check id... +I (317323) modbus: ok +I (317323) modbus: add: 0, length: 10 +I (317323) modbus: Read Holding Registers +I (317393) modbus tcp: ModBusSlave_recv() +I (317393) modbus: ModbusSlaveProcess()--------------------------- +I (317403) modbus: check id... +I (317403) modbus: ok +I (317403) modbus: add: 0, length: 10 +I (317403) modbus: Read Holding Registers +I (317523) modbus tcp: ModBusSlave_recv() +I (317523) modbus: ModbusSlaveProcess()--------------------------- +I (317523) modbus: check id... +I (317523) modbus: ok +I (317523) modbus: add: 0, length: 10 +I (317523) modbus: Read Holding Registers +I (317723) modbus tcp: ModBusSlave_recv() +I (317723) modbus: ModbusSlaveProcess()--------------------------- +I (317723) modbus: check id... +I (317723) modbus: ok +I (317723) modbus: add: 0, length: 10 +I (317723) modbus: Read Holding Registers +I (317743) modbus tcp: ModBusSlave_recv() +I (317743) modbus: ModbusSlaveProcess()--------------------------- +I (317743) modbus: check id... +I (317743) modbus: ok +I (317743) modbus: add: 0, length: 10 +I (317743) modbus: Read Holding Registers +I (317853) modbus tcp: ModBusSlave_recv() +I (317853) modbus: ModbusSlaveProcess()--------------------------- +I (317853) modbus: check id... +I (317853) modbus: ok +I (317853) modbus: add: 0, length: 10 +I (317853) modbus: Read Holding Registers +I (317963) modbus tcp: ModBusSlave_recv() +I (317963) modbus: ModbusSlaveProcess()--------------------------- +I (317963) modbus: check id... +I (317963) modbus: ok +I (317963) modbus: add: 0, length: 10 +I (317963) modbus: Read Holding Registers +I (318073) modbus tcp: ModBusSlave_recv() +I (318073) modbus: ModbusSlaveProcess()--------------------------- +I (318073) modbus: check id... +I (318073) modbus: ok +I (318073) modbus: add: 0, length: 10 +I (318073) modbus: Read Holding Registers +I (318183) modbus tcp: ModBusSlave_recv() +I (318183) modbus: ModbusSlaveProcess()--------------------------- +I (318183) modbus: check id... +I (318183) modbus: ok +I (318183) modbus: add: 0, length: 10 +I (318183) modbus: Read Holding Registers +I (318353) modbus tcp: ModBusSlave_recv() +I (318353) modbus: ModbusSlaveProcess()--------------------------- +I (318353) modbus: check id... +I (318353) modbus: ok +I (318353) modbus: add: 0, length: 10 +I (318353) modbus: Read Holding Registers +I (318403) modbus tcp: ModBusSlave_recv() +I (318403) modbus: ModbusSlaveProcess()--------------------------- +I (318403) modbus: check id... +I (318403) modbus: ok +I (318403) modbus: add: 0, length: 10 +I (318403) modbus: Read Holding Registers +I (318543) modbus tcp: ModBusSlave_recv() +I (318543) modbus: ModbusSlaveProcess()--------------------------- +I (318543) modbus: check id... +I (318543) modbus: ok +I (318543) modbus: add: 0, length: 10 +I (318543) modbus: Read Holding Registers +I (318643) modbus tcp: ModBusSlave_recv() +I (318643) modbus: ModbusSlaveProcess()--------------------------- +I (318653) modbus: check id... +I (318653) modbus: ok +I (318653) modbus: add: 0, length: 10 +I (318653) modbus: Read Holding Registers +I (318733) modbus tcp: ModBusSlave_recv() +I (318733) modbus: ModbusSlaveProcess()--------------------------- +I (318733) modbus: check id... +I (318733) modbus: ok +I (318733) modbus: add: 0, length: 10 +I (318733) modbus: Read Holding Registers +I (318853) modbus tcp: ModBusSlave_recv() +I (318853) modbus: ModbusSlaveProcess()--------------------------- +I (318853) modbus: check id... +I (318853) modbus: ok +I (318853) modbus: add: 0, length: 10 +I (318853) modbus: Read Holding Registers +I (318943) modbus tcp: ModBusSlave_recv() +I (318943) modbus: ModbusSlaveProcess()--------------------------- +I (318943) modbus: check id... +I (318943) modbus: ok +I (318943) modbus: add: 0, length: 10 +I (318943) modbus: Read Holding Registers +I (319063) modbus tcp: ModBusSlave_recv() +I (319063) modbus: ModbusSlaveProcess()--------------------------- +I (319063) modbus: check id... +I (319063) modbus: ok +I (319063) modbus: add: 0, length: 10 +I (319063) modbus: Read Holding Registers +I (319263) modbus tcp: ModBusSlave_recv() +I (319263) modbus: ModbusSlaveProcess()--------------------------- +I (319263) modbus: check id... +I (319263) modbus: ok +I (319263) modbus: add: 0, length: 10 +I (319263) modbus: Read Holding Registers +I (319293) modbus tcp: ModBusSlave_recv() +I (319293) modbus: ModbusSlaveProcess()--------------------------- +I (319293) modbus: check id... +I (319293) modbus: ok +I (319293) modbus: add: 0, length: 10 +I (319293) modbus: Read Holding Registers +I (319463) modbus tcp: ModBusSlave_recv() +I (319463) modbus: ModbusSlaveProcess()--------------------------- +I (319463) modbus: check id... +I (319463) modbus: ok +I (319463) modbus: add: 0, length: 10 +I (319463) modbus: Read Holding Registers +I (319513) modbus tcp: ModBusSlave_recv() +I (319513) modbus: ModbusSlaveProcess()--------------------------- +I (319513) modbus: check id... +I (319513) modbus: ok +I (319513) modbus: add: 0, length: 10 +I (319513) modbus: Read Holding Registers +I (319673) modbus tcp: ModBusSlave_recv() +I (319673) modbus: ModbusSlaveProcess()--------------------------- +I (319673) modbus: check id... +I (319673) modbus: ok +I (319673) modbus: add: 0, length: 10 +I (319673) modbus: Read Holding Registers +I (319733) modbus tcp: ModBusSlave_recv() +I (319733) modbus: ModbusSlaveProcess()--------------------------- +I (319733) modbus: check id... +I (319733) modbus: ok +I (319733) modbus: add: 0, length: 10 +I (319733) modbus: Read Holding Registers +I (319873) modbus tcp: ModBusSlave_recv() +I (319873) modbus: ModbusSlaveProcess()--------------------------- +I (319873) modbus: check id... +I (319873) modbus: ok +I (319883) modbus: add: 0, length: 10 +I (319883) modbus: Read Holding Registers +I (319983) modbus tcp: ModBusSlave_recv() +I (319983) modbus: ModbusSlaveProcess()--------------------------- +I (319983) modbus: check id... +I (319983) modbus: ok +I (319983) modbus: add: 0, length: 10 +I (319983) modbus: Read Holding Registers +I (320083) modbus tcp: ModBusSlave_recv() +I (320083) modbus: ModbusSlaveProcess()--------------------------- +I (320083) modbus: check id... +I (320083) modbus: ok +I (320083) modbus: add: 0, length: 10 +I (320083) modbus: Read Holding Registers +I (320173) modbus tcp: ModBusSlave_recv() +I (320173) modbus: ModbusSlaveProcess()--------------------------- +I (320173) modbus: check id... +I (320173) modbus: ok +I (320173) modbus: add: 0, length: 10 +I (320173) modbus: Read Holding Registers +I (320323) modbus tcp: ModBusSlave_recv() +I (320323) modbus: ModbusSlaveProcess()--------------------------- +I (320323) modbus: check id... +I (320323) modbus: ok +I (320323) modbus: add: 0, length: 10 +I (320323) modbus: Read Holding Registers +I (320393) modbus tcp: ModBusSlave_recv() +I (320393) modbus: ModbusSlaveProcess()--------------------------- +I (320393) modbus: check id... +I (320393) modbus: ok +I (320393) modbus: add: 0, length: 10 +I (320393) modbus: Read Holding Registers +I (320493) modbus tcp: ModBusSlave_recv() +I (320493) modbus: ModbusSlaveProcess()--------------------------- +I (320493) modbus: check id... +I (320493) modbus: ok +I (320493) modbus: add: 0, length: 10 +I (320493) modbus: Read Holding Registers +I (320693) modbus tcp: ModBusSlave_recv() +I (320693) modbus: ModbusSlaveProcess()--------------------------- +I (320693) modbus: check id... +I (320693) modbus: ok +I (320693) modbus: add: 0, length: 10 +I (320693) modbus: Read Holding Registers +I (320713) modbus tcp: ModBusSlave_recv() +I (320713) modbus: ModbusSlaveProcess()--------------------------- +I (320713) modbus: check id... +I (320713) modbus: ok +I (320713) modbus: add: 0, length: 10 +I (320713) modbus: Read Holding Registers +I (320903) modbus tcp: ModBusSlave_recv() +I (320903) modbus: ModbusSlaveProcess()--------------------------- +I (320903) modbus: check id... +I (320903) modbus: ok +I (320903) modbus: add: 0, length: 10 +I (320903) modbus: Read Holding Registers +I (320933) modbus tcp: ModBusSlave_recv() +I (320933) modbus: ModbusSlaveProcess()--------------------------- +I (320933) modbus: check id... +I (320933) modbus: ok +I (320933) modbus: add: 0, length: 10 +I (320933) modbus: Read Holding Registers +I (321103) modbus tcp: ModBusSlave_recv() +I (321103) modbus: ModbusSlaveProcess()--------------------------- +I (321103) modbus: check id... +I (321103) modbus: ok +I (321103) modbus: add: 0, length: 10 +I (321103) modbus: Read Holding Registers +I (321153) modbus tcp: ModBusSlave_recv() +I (321153) modbus: ModbusSlaveProcess()--------------------------- +I (321153) modbus: check id... +I (321153) modbus: ok +I (321153) modbus: add: 0, length: 10 +I (321153) modbus: Read Holding Registers +I (321313) modbus tcp: ModBusSlave_recv() +I (321313) modbus: ModbusSlaveProcess()--------------------------- +I (321313) modbus: check id... +I (321313) modbus: ok +I (321313) modbus: add: 0, length: 10 +I (321313) modbus: Read Holding Registers +I (321373) modbus tcp: ModBusSlave_recv() +I (321373) modbus: ModbusSlaveProcess()--------------------------- +I (321373) modbus: check id... +I (321373) modbus: ok +I (321373) modbus: add: 0, length: 10 +I (321373) modbus: Read Holding Registers +I (321513) modbus tcp: ModBusSlave_recv() +I (321513) modbus: ModbusSlaveProcess()--------------------------- +I (321513) modbus: check id... +I (321513) modbus: ok +I (321513) modbus: add: 0, length: 10 +I (321513) modbus: Read Holding Registers +I (321593) modbus tcp: ModBusSlave_recv() +I (321593) modbus: ModbusSlaveProcess()--------------------------- +I (321593) modbus: check id... +I (321593) modbus: ok +I (321593) modbus: add: 0, length: 10 +I (321593) modbus: Read Holding Registers +I (321723) modbus tcp: ModBusSlave_recv() +I (321723) modbus: ModbusSlaveProcess()--------------------------- +I (321723) modbus: check id... +I (321723) modbus: ok +I (321723) modbus: add: 0, length: 10 +I (321723) modbus: Read Holding Registers +I (321823) modbus tcp: ModBusSlave_recv() +I (321823) modbus: ModbusSlaveProcess()--------------------------- +I (321823) modbus: check id... +I (321823) modbus: ok +I (321823) modbus: add: 0, length: 10 +I (321823) modbus: Read Holding Registers +I (321923) modbus tcp: ModBusSlave_recv() +I (321923) modbus: ModbusSlaveProcess()--------------------------- +I (321923) modbus: check id... +I (321923) modbus: ok +I (321923) modbus: add: 0, length: 10 +I (321923) modbus: Read Holding Registers +I (322033) modbus tcp: ModBusSlave_recv() +I (322033) modbus: ModbusSlaveProcess()--------------------------- +I (322033) modbus: check id... +I (322033) modbus: ok +I (322033) modbus: add: 0, length: 10 +I (322033) modbus: Read Holding Registers +I (322233) modbus tcp: ModBusSlave_recv() +I (322233) modbus: ModbusSlaveProcess()--------------------------- +I (322233) modbus: check id... +I (322233) modbus: ok +I (322233) modbus: add: 0, length: 10 +I (322233) modbus: Read Holding Registers +I (322263) modbus tcp: ModBusSlave_recv() +I (322263) modbus: ModbusSlaveProcess()--------------------------- +I (322263) modbus: check id... +I (322263) modbus: ok +I (322263) modbus: add: 0, length: 10 +I (322263) modbus: Read Holding Registers +I (322443) modbus tcp: ModBusSlave_recv() +I (322443) modbus: ModbusSlaveProcess()--------------------------- +I (322443) modbus: check id... +I (322443) modbus: ok +I (322443) modbus: add: 0, length: 10 +I (322443) modbus: Read Holding Registers +I (322483) modbus tcp: ModBusSlave_recv() +I (322483) modbus: ModbusSlaveProcess()--------------------------- +I (322483) modbus: check id... +I (322483) modbus: ok +I (322483) modbus: add: 0, length: 10 +I (322483) modbus: Read Holding Registers +I (322583) modbus tcp: ModBusSlave_recv() +I (322583) modbus: ModbusSlaveProcess()--------------------------- +I (322583) modbus: check id... +I (322583) modbus: ok +I (322583) modbus: add: 0, length: 10 +I (322583) modbus: Read Holding Registers +I (322743) modbus tcp: ModBusSlave_recv() +I (322743) modbus: ModbusSlaveProcess()--------------------------- +I (322743) modbus: check id... +I (322743) modbus: ok +I (322743) modbus: add: 0, length: 10 +I (322743) modbus: Read Holding Registers +I (322843) modbus tcp: ModBusSlave_recv() +I (322843) modbus: ModbusSlaveProcess()--------------------------- +I (322843) modbus: check id... +I (322843) modbus: ok +I (322843) modbus: add: 0, length: 10 +I (322843) modbus: Read Holding Registers +I (322913) modbus tcp: ModBusSlave_recv() +I (322913) modbus: ModbusSlaveProcess()--------------------------- +I (322913) modbus: check id... +I (322913) modbus: ok +I (322913) modbus: add: 0, length: 10 +I (322913) modbus: Read Holding Registers +I (323053) modbus tcp: ModBusSlave_recv() +I (323053) modbus: ModbusSlaveProcess()--------------------------- +I (323053) modbus: check id... +I (323053) modbus: ok +I (323053) modbus: add: 0, length: 10 +I (323053) modbus: Read Holding Registers +I (323153) modbus tcp: ModBusSlave_recv() +I (323153) modbus: ModbusSlaveProcess()--------------------------- +I (323153) modbus: check id... +I (323153) modbus: ok +I (323153) modbus: add: 0, length: 10 +I (323153) modbus: Read Holding Registers +I (323243) modbus tcp: ModBusSlave_recv() +I (323243) modbus: ModbusSlaveProcess()--------------------------- +I (323243) modbus: check id... +I (323243) modbus: ok +I (323243) modbus: add: 0, length: 10 +I (323243) modbus: Read Holding Registers +I (323353) modbus tcp: ModBusSlave_recv() +I (323353) modbus: ModbusSlaveProcess()--------------------------- +I (323353) modbus: check id... +I (323353) modbus: ok +I (323353) modbus: add: 0, length: 10 +I (323353) modbus: Read Holding Registers +I (323563) modbus tcp: ModBusSlave_recv() +I (323563) modbus: ModbusSlaveProcess()--------------------------- +I (323563) modbus: check id... +I (323563) modbus: ok +I (323563) modbus: add: 0, length: 10 +I (323563) modbus: Read Holding Registers +I (323593) modbus tcp: ModBusSlave_recv() +I (323593) modbus: ModbusSlaveProcess()--------------------------- +I (323593) modbus: check id... +I (323593) modbus: ok +I (323593) modbus: add: 0, length: 10 +I (323593) modbus: Read Holding Registers +I (323763) modbus tcp: ModBusSlave_recv() +I (323763) modbus: ModbusSlaveProcess()--------------------------- +I (323763) modbus: check id... +I (323763) modbus: ok +I (323763) modbus: add: 0, length: 10 +I (323773) modbus: Read Holding Registers +I (323803) modbus tcp: ModBusSlave_recv() +I (323803) modbus: ModbusSlaveProcess()--------------------------- +I (323803) modbus: check id... +I (323803) modbus: ok +I (323803) modbus: add: 0, length: 10 +I (323803) modbus: Read Holding Registers +I (323973) modbus tcp: ModBusSlave_recv() +I (323973) modbus: ModbusSlaveProcess()--------------------------- +I (323973) modbus: check id... +I (323973) modbus: ok +I (323973) modbus: add: 0, length: 10 +I (323973) modbus: Read Holding Registers +I (324073) modbus tcp: ModBusSlave_recv() +I (324073) modbus: ModbusSlaveProcess()--------------------------- +I (324073) modbus: check id... +I (324073) modbus: ok +I (324073) modbus: add: 0, length: 10 +I (324073) modbus: Read Holding Registers +I (324173) modbus tcp: ModBusSlave_recv() +I (324173) modbus: ModbusSlaveProcess()--------------------------- +I (324173) modbus: check id... +I (324183) modbus: ok +I (324183) modbus: add: 0, length: 10 +I (324183) modbus: Read Holding Registers +I (324243) modbus tcp: ModBusSlave_recv() +I (324243) modbus: ModbusSlaveProcess()--------------------------- +I (324243) modbus: check id... +I (324243) modbus: ok +I (324243) modbus: add: 0, length: 10 +I (324243) modbus: Read Holding Registers +I (324363) modbus tcp: ModBusSlave_recv() +I (324363) modbus: ModbusSlaveProcess()--------------------------- +I (324363) modbus: check id... +I (324363) modbus: ok +I (324363) modbus: add: 0, length: 10 +I (324363) modbus: Read Holding Registers +I (324463) modbus tcp: ModBusSlave_recv() +I (324463) modbus: ModbusSlaveProcess()--------------------------- +I (324463) modbus: check id... +I (324463) modbus: ok +I (324463) modbus: add: 0, length: 10 +I (324463) modbus: Read Holding Registers +I (324593) modbus tcp: ModBusSlave_recv() +I (324593) modbus: ModbusSlaveProcess()--------------------------- +I (324593) modbus: check id... +I (324593) modbus: ok +I (324593) modbus: add: 0, length: 10 +I (324593) modbus: Read Holding Registers +I (324693) modbus tcp: ModBusSlave_recv() +I (324693) modbus: ModbusSlaveProcess()--------------------------- +I (324693) modbus: check id... +I (324693) modbus: ok +I (324693) modbus: add: 0, length: 10 +I (324693) modbus: Read Holding Registers +I (324893) modbus tcp: ModBusSlave_recv() +I (324893) modbus: ModbusSlaveProcess()--------------------------- +I (324893) modbus: check id... +I (324893) modbus: ok +I (324893) modbus: add: 0, length: 10 +I (324893) modbus: Read Holding Registers +I (324913) modbus tcp: ModBusSlave_recv() +I (324913) modbus: ModbusSlaveProcess()--------------------------- +I (324913) modbus: check id... +I (324913) modbus: ok +I (324913) modbus: add: 0, length: 10 +I (324913) modbus: Read Holding Registers +I (325023) modbus tcp: ModBusSlave_recv() +I (325023) modbus: ModbusSlaveProcess()--------------------------- +I (325023) modbus: check id... +I (325023) modbus: ok +I (325023) modbus: add: 0, length: 10 +I (325023) modbus: Read Holding Registers +I (325133) modbus tcp: ModBusSlave_recv() +I (325133) modbus: ModbusSlaveProcess()--------------------------- +I (325133) modbus: check id... +I (325133) modbus: ok +I (325133) modbus: add: 0, length: 10 +I (325133) modbus: Read Holding Registers +I (325243) modbus tcp: ModBusSlave_recv() +I (325243) modbus: ModbusSlaveProcess()--------------------------- +I (325243) modbus: check id... +I (325243) modbus: ok +I (325243) modbus: add: 0, length: 10 +I (325243) modbus: Read Holding Registers +I (325353) modbus tcp: ModBusSlave_recv() +I (325353) modbus: ModbusSlaveProcess()--------------------------- +I (325353) modbus: check id... +I (325353) modbus: ok +I (325353) modbus: add: 0, length: 10 +I (325353) modbus: Read Holding Registers +I (325503) modbus tcp: ModBusSlave_recv() +I (325503) modbus: ModbusSlaveProcess()--------------------------- +I (325503) modbus: check id... +I (325503) modbus: ok +I (325513) modbus: add: 0, length: 10 +I (325513) modbus: Read Holding Registers +I (325573) modbus tcp: ModBusSlave_recv() +I (325573) modbus: ModbusSlaveProcess()--------------------------- +I (325573) modbus: check id... +I (325573) modbus: ok +I (325573) modbus: add: 0, length: 10 +I (325573) modbus: Read Holding Registers +I (325683) modbus tcp: ModBusSlave_recv() +I (325683) modbus: ModbusSlaveProcess()--------------------------- +I (325683) modbus: check id... +I (325683) modbus: ok +I (325683) modbus: add: 0, length: 10 +I (325683) modbus: Read Holding Registers +I (325813) modbus tcp: ModBusSlave_recv() +I (325813) modbus: ModbusSlaveProcess()--------------------------- +I (325813) modbus: check id... +I (325813) modbus: ok +I (325813) modbus: add: 0, length: 10 +I (325813) modbus: Read Holding Registers +I (325923) modbus tcp: ModBusSlave_recv() +I (325923) modbus: ModbusSlaveProcess()--------------------------- +I (325923) modbus: check id... +I (325923) modbus: ok +I (325923) modbus: add: 0, length: 10 +I (325923) modbus: Read Holding Registers +I (326123) modbus tcp: ModBusSlave_recv() +I (326123) modbus: ModbusSlaveProcess()--------------------------- +I (326123) modbus: check id... +I (326123) modbus: ok +I (326123) modbus: add: 0, length: 10 +I (326123) modbus: Read Holding Registers +I (326143) modbus tcp: ModBusSlave_recv() +I (326143) modbus: ModbusSlaveProcess()--------------------------- +I (326143) modbus: check id... +I (326143) modbus: ok +I (326143) modbus: add: 0, length: 10 +I (326143) modbus: Read Holding Registers +I (326263) modbus tcp: ModBusSlave_recv() +I (326273) modbus: ModbusSlaveProcess()--------------------------- +I (326273) modbus: check id... +I (326273) modbus: ok +I (326273) modbus: add: 0, length: 10 +I (326273) modbus: Read Holding Registers +I (326433) modbus tcp: ModBusSlave_recv() +I (326433) modbus: ModbusSlaveProcess()--------------------------- +I (326433) modbus: check id... +I (326433) modbus: ok +I (326433) modbus: add: 0, length: 10 +I (326433) modbus: Read Holding Registers +I (326483) modbus tcp: ModBusSlave_recv() +I (326483) modbus: ModbusSlaveProcess()--------------------------- +I (326483) modbus: check id... +I (326483) modbus: ok +I (326483) modbus: add: 0, length: 10 +I (326483) modbus: Read Holding Registers +I (326633) modbus tcp: ModBusSlave_recv() +I (326633) modbus: ModbusSlaveProcess()--------------------------- +I (326633) modbus: check id... +I (326633) modbus: ok +I (326633) modbus: add: 0, length: 10 +I (326633) modbus: Read Holding Registers +I (326703) modbus tcp: ModBusSlave_recv() +I (326703) modbus: ModbusSlaveProcess()--------------------------- +I (326703) modbus: check id... +I (326703) modbus: ok +I (326703) modbus: add: 0, length: 10 +I (326703) modbus: Read Holding Registers +I (326843) modbus tcp: ModBusSlave_recv() +I (326843) modbus: ModbusSlaveProcess()--------------------------- +I (326843) modbus: check id... +I (326843) modbus: ok +I (326843) modbus: add: 0, length: 10 +I (326843) modbus: Read Holding Registers +I (326913) modbus tcp: ModBusSlave_recv() +I (326913) modbus: ModbusSlaveProcess()--------------------------- +I (326913) modbus: check id... +I (326913) modbus: ok +I (326913) modbus: add: 0, length: 10 +I (326913) modbus: Read Holding Registers +I (327043) modbus tcp: ModBusSlave_recv() +I (327043) modbus: ModbusSlaveProcess()--------------------------- +I (327043) modbus: check id... +I (327043) modbus: ok +I (327043) modbus: add: 0, length: 10 +I (327043) modbus: Read Holding Registers +I (327143) modbus tcp: ModBusSlave_recv() +I (327143) modbus: ModbusSlaveProcess()--------------------------- +I (327153) modbus: check id... +I (327153) modbus: ok +I (327153) modbus: add: 0, length: 10 +I (327153) modbus: Read Holding Registers +I (327253) modbus tcp: ModBusSlave_recv() +I (327253) modbus: ModbusSlaveProcess()--------------------------- +I (327253) modbus: check id... +I (327253) modbus: ok +I (327253) modbus: add: 0, length: 10 +I (327253) modbus: Read Holding Registers +I (327453) modbus tcp: ModBusSlave_recv() +I (327453) modbus: ModbusSlaveProcess()--------------------------- +I (327453) modbus: check id... +I (327453) modbus: ok +I (327453) modbus: add: 0, length: 10 +I (327453) modbus: Read Holding Registers +I (327473) modbus tcp: ModBusSlave_recv() +I (327473) modbus: ModbusSlaveProcess()--------------------------- +I (327473) modbus: check id... +I (327473) modbus: ok +I (327473) modbus: add: 0, length: 10 +I (327473) modbus: Read Holding Registers +I (327663) modbus tcp: ModBusSlave_recv() +I (327663) modbus: ModbusSlaveProcess()--------------------------- +I (327663) modbus: check id... +I (327663) modbus: ok +I (327663) modbus: add: 0, length: 10 +I (327663) modbus: Read Holding Registers +I (327693) modbus tcp: ModBusSlave_recv() +I (327693) modbus: ModbusSlaveProcess()--------------------------- +I (327693) modbus: check id... +I (327693) modbus: ok +I (327693) modbus: add: 0, length: 10 +I (327693) modbus: Read Holding Registers +I (327863) modbus tcp: ModBusSlave_recv() +I (327863) modbus: ModbusSlaveProcess()--------------------------- +I (327863) modbus: check id... +I (327863) modbus: ok +I (327863) modbus: add: 0, length: 10 +I (327863) modbus: Read Holding Registers +I (327913) modbus tcp: ModBusSlave_recv() +I (327913) modbus: ModbusSlaveProcess()--------------------------- +I (327913) modbus: check id... +I (327913) modbus: ok +I (327913) modbus: add: 0, length: 10 +I (327923) modbus: Read Holding Registers +I (328073) modbus tcp: ModBusSlave_recv() +I (328073) modbus: ModbusSlaveProcess()--------------------------- +I (328073) modbus: check id... +I (328073) modbus: ok +I (328073) modbus: add: 0, length: 10 +I (328073) modbus: Read Holding Registers +I (328173) modbus tcp: ModBusSlave_recv() +I (328173) modbus: ModbusSlaveProcess()--------------------------- +I (328173) modbus: check id... +I (328173) modbus: ok +I (328173) modbus: add: 0, length: 10 +I (328173) modbus: Read Holding Registers +I (328253) modbus tcp: ModBusSlave_recv() +I (328253) modbus: ModbusSlaveProcess()--------------------------- +I (328253) modbus: check id... +I (328253) modbus: ok +I (328253) modbus: add: 0, length: 10 +I (328253) modbus: Read Holding Registers +I (328353) modbus tcp: ModBusSlave_recv() +I (328353) modbus: ModbusSlaveProcess()--------------------------- +I (328353) modbus: check id... +I (328353) modbus: ok +I (328353) modbus: add: 0, length: 10 +I (328353) modbus: Read Holding Registers +I (328473) modbus tcp: ModBusSlave_recv() +I (328473) modbus: ModbusSlaveProcess()--------------------------- +I (328473) modbus: check id... +I (328473) modbus: ok +I (328473) modbus: add: 0, length: 10 +I (328473) modbus: Read Holding Registers +I (328683) modbus tcp: ModBusSlave_recv() +I (328683) modbus: ModbusSlaveProcess()--------------------------- +I (328683) modbus: check id... +I (328683) modbus: ok +I (328683) modbus: add: 0, length: 10 +I (328683) modbus: Read Holding Registers +I (328703) modbus tcp: ModBusSlave_recv() +I (328703) modbus: ModbusSlaveProcess()--------------------------- +I (328703) modbus: check id... +I (328703) modbus: ok +I (328703) modbus: add: 0, length: 10 +I (328703) modbus: Read Holding Registers +I (328883) modbus tcp: ModBusSlave_recv() +I (328883) modbus: ModbusSlaveProcess()--------------------------- +I (328883) modbus: check id... +I (328883) modbus: ok +I (328883) modbus: add: 0, length: 10 +I (328883) modbus: Read Holding Registers +I (328923) modbus tcp: ModBusSlave_recv() +I (328923) modbus: ModbusSlaveProcess()--------------------------- +I (328923) modbus: check id... +I (328923) modbus: ok +I (328923) modbus: add: 0, length: 10 +I (328923) modbus: Read Holding Registers +I (329093) modbus tcp: ModBusSlave_recv() +I (329093) modbus: ModbusSlaveProcess()--------------------------- +I (329093) modbus: check id... +I (329093) modbus: ok +I (329093) modbus: add: 0, length: 10 +I (329093) modbus: Read Holding Registers +I (329143) modbus tcp: ModBusSlave_recv() +I (329143) modbus: ModbusSlaveProcess()--------------------------- +I (329143) modbus: check id... +I (329143) modbus: ok +I (329143) modbus: add: 0, length: 10 +I (329143) modbus: Read Holding Registers +I (329293) modbus tcp: ModBusSlave_recv() +I (329293) modbus: ModbusSlaveProcess()--------------------------- +I (329303) modbus: check id... +I (329303) modbus: ok +I (329303) modbus: add: 0, length: 10 +I (329303) modbus: Read Holding Registers +I (329353) modbus tcp: ModBusSlave_recv() +I (329363) modbus: ModbusSlaveProcess()--------------------------- +I (329363) modbus: check id... +I (329363) modbus: ok +I (329363) modbus: add: 0, length: 10 +I (329363) modbus: Read Holding Registers +I (329503) modbus tcp: ModBusSlave_recv() +I (329503) modbus: ModbusSlaveProcess()--------------------------- +I (329503) modbus: check id... +I (329503) modbus: ok +I (329503) modbus: add: 0, length: 10 +I (329503) modbus: Read Holding Registers +I (329573) modbus tcp: ModBusSlave_recv() +I (329573) modbus: ModbusSlaveProcess()--------------------------- +I (329573) modbus: check id... +I (329573) modbus: ok +I (329573) modbus: add: 0, length: 10 +I (329573) modbus: Read Holding Registers +I (329703) modbus tcp: ModBusSlave_recv() +I (329713) modbus: ModbusSlaveProcess()--------------------------- +I (329713) modbus: check id... +I (329713) modbus: ok +I (329713) modbus: add: 0, length: 10 +I (329713) modbus: Read Holding Registers +I (329783) modbus tcp: ModBusSlave_recv() +I (329783) modbus: ModbusSlaveProcess()--------------------------- +I (329783) modbus: check id... +I (329783) modbus: ok +I (329783) modbus: add: 0, length: 10 +I (329783) modbus: Read Holding Registers +I (329913) modbus tcp: ModBusSlave_recv() +I (329913) modbus: ModbusSlaveProcess()--------------------------- +I (329913) modbus: check id... +I (329913) modbus: ok +I (329913) modbus: add: 0, length: 10 +I (329913) modbus: Read Holding Registers +I (330113) modbus tcp: ModBusSlave_recv() +I (330113) modbus: ModbusSlaveProcess()--------------------------- +I (330113) modbus: check id... +I (330113) modbus: ok +I (330113) modbus: add: 0, length: 10 +I (330113) modbus: Read Holding Registers +I (330133) modbus tcp: ModBusSlave_recv() +I (330133) modbus: ModbusSlaveProcess()--------------------------- +I (330133) modbus: check id... +I (330133) modbus: ok +I (330133) modbus: add: 0, length: 10 +I (330133) modbus: Read Holding Registers +I (330323) modbus tcp: ModBusSlave_recv() +I (330323) modbus: ModbusSlaveProcess()--------------------------- +I (330323) modbus: check id... +I (330323) modbus: ok +I (330323) modbus: add: 0, length: 10 +I (330323) modbus: Read Holding Registers +I (330353) modbus tcp: ModBusSlave_recv() +I (330353) modbus: ModbusSlaveProcess()--------------------------- +I (330353) modbus: check id... +I (330353) modbus: ok +I (330353) modbus: add: 0, length: 10 +I (330353) modbus: Read Holding Registers +I (330523) modbus tcp: ModBusSlave_recv() +I (330523) modbus: ModbusSlaveProcess()--------------------------- +I (330523) modbus: check id... +I (330523) modbus: ok +I (330533) modbus: add: 0, length: 10 +I (330533) modbus: Read Holding Registers +I (330603) modbus tcp: ModBusSlave_recv() +I (330603) modbus: ModbusSlaveProcess()--------------------------- +I (330603) modbus: check id... +I (330603) modbus: ok +I (330603) modbus: add: 0, length: 10 +I (330603) modbus: Read Holding Registers +I (330693) modbus tcp: ModBusSlave_recv() +I (330693) modbus: ModbusSlaveProcess()--------------------------- +I (330693) modbus: check id... +I (330693) modbus: ok +I (330693) modbus: add: 0, length: 10 +I (330703) modbus: Read Holding Registers +I (330833) modbus tcp: ModBusSlave_recv() +I (330833) modbus: ModbusSlaveProcess()--------------------------- +I (330833) modbus: check id... +I (330833) modbus: ok +I (330833) modbus: add: 0, length: 10 +I (330833) modbus: Read Holding Registers +I (330933) modbus tcp: ModBusSlave_recv() +I (330933) modbus: ModbusSlaveProcess()--------------------------- +I (330933) modbus: check id... +I (330933) modbus: ok +I (330933) modbus: add: 0, length: 10 +I (330933) modbus: Read Holding Registers +I (331043) modbus tcp: ModBusSlave_recv() +I (331043) modbus: ModbusSlaveProcess()--------------------------- +I (331043) modbus: check id... +I (331043) modbus: ok +I (331043) modbus: add: 0, length: 10 +I (331043) modbus: Read Holding Registers +I (331123) modbus tcp: ModBusSlave_recv() +I (331123) modbus: ModbusSlaveProcess()--------------------------- +I (331123) modbus: check id... +I (331123) modbus: ok +I (331123) modbus: add: 0, length: 10 +I (331123) modbus: Read Holding Registers +I (331343) modbus tcp: ModBusSlave_recv() +I (331343) modbus: ModbusSlaveProcess()--------------------------- +I (331343) modbus: check id... +I (331343) modbus: ok +I (331343) modbus: add: 0, length: 10 +I (331343) modbus: Read Holding Registers +I (331363) modbus tcp: ModBusSlave_recv() +I (331363) modbus: ModbusSlaveProcess()--------------------------- +I (331363) modbus: check id... +I (331363) modbus: ok +I (331363) modbus: add: 0, length: 10 +I (331363) modbus: Read Holding Registers +I (331553) modbus tcp: ModBusSlave_recv() +I (331553) modbus: ModbusSlaveProcess()--------------------------- +I (331553) modbus: check id... +I (331553) modbus: ok +I (331553) modbus: add: 0, length: 10 +I (331553) modbus: Read Holding Registers +I (331583) modbus tcp: ModBusSlave_recv() +I (331583) modbus: ModbusSlaveProcess()--------------------------- +I (331583) modbus: check id... +I (331583) modbus: ok +I (331583) modbus: add: 0, length: 10 +I (331583) modbus: Read Holding Registers +I (331753) modbus tcp: ModBusSlave_recv() +I (331753) modbus: ModbusSlaveProcess()--------------------------- +I (331753) modbus: check id... +I (331753) modbus: ok +I (331753) modbus: add: 0, length: 10 +I (331753) modbus: Read Holding Registers +I (331853) modbus tcp: ModBusSlave_recv() +I (331853) modbus: ModbusSlaveProcess()--------------------------- +I (331853) modbus: check id... +I (331853) modbus: ok +I (331853) modbus: add: 0, length: 10 +I (331853) modbus: Read Holding Registers +I (331913) modbus tcp: ModBusSlave_recv() +I (331913) modbus: ModbusSlaveProcess()--------------------------- +I (331913) modbus: check id... +I (331913) modbus: ok +I (331913) modbus: add: 0, length: 10 +I (331913) modbus: Read Holding Registers +I (332023) modbus tcp: ModBusSlave_recv() +I (332023) modbus: ModbusSlaveProcess()--------------------------- +I (332023) modbus: check id... +I (332023) modbus: ok +I (332023) modbus: add: 0, length: 10 +I (332023) modbus: Read Holding Registers +I (332143) modbus tcp: ModBusSlave_recv() +I (332143) modbus: ModbusSlaveProcess()--------------------------- +I (332143) modbus: check id... +I (332143) modbus: ok +I (332143) modbus: add: 0, length: 10 +I (332143) modbus: Read Holding Registers +I (332263) modbus tcp: ModBusSlave_recv() +I (332263) modbus: ModbusSlaveProcess()--------------------------- +I (332263) modbus: check id... +I (332263) modbus: ok +I (332263) modbus: add: 0, length: 10 +I (332263) modbus: Read Holding Registers +I (332363) modbus tcp: ModBusSlave_recv() +I (332363) modbus: ModbusSlaveProcess()--------------------------- +I (332363) modbus: check id... +I (332363) modbus: ok +I (332363) modbus: add: 0, length: 10 +I (332363) modbus: Read Holding Registers +I (332573) modbus tcp: ModBusSlave_recv() +I (332573) modbus: ModbusSlaveProcess()--------------------------- +I (332573) modbus: check id... +I (332573) modbus: ok +I (332573) modbus: add: 0, length: 10 +I (332573) modbus: Read Holding Registers +I (332593) modbus tcp: ModBusSlave_recv() +I (332593) modbus: ModbusSlaveProcess()--------------------------- +I (332593) modbus: check id... +I (332593) modbus: ok +I (332593) modbus: add: 0, length: 10 +I (332593) modbus: Read Holding Registers +I (332703) modbus tcp: ModBusSlave_recv() +I (332703) modbus: ModbusSlaveProcess()--------------------------- +I (332703) modbus: check id... +I (332703) modbus: ok +I (332703) modbus: add: 0, length: 10 +I (332703) modbus: Read Holding Registers +I (332803) modbus tcp: ModBusSlave_recv() +I (332803) modbus: ModbusSlaveProcess()--------------------------- +I (332803) modbus: check id... +I (332803) modbus: ok +I (332803) modbus: add: 0, length: 10 +I (332803) modbus: Read Holding Registers +I (332983) modbus tcp: ModBusSlave_recv() +I (332983) modbus: ModbusSlaveProcess()--------------------------- +I (332983) modbus: check id... +I (332983) modbus: ok +I (332983) modbus: add: 0, length: 10 +I (332983) modbus: Read Holding Registers +I (333023) modbus tcp: ModBusSlave_recv() +I (333023) modbus: ModbusSlaveProcess()--------------------------- +I (333023) modbus: check id... +I (333023) modbus: ok +I (333023) modbus: add: 0, length: 10 +I (333023) modbus: Read Holding Registers +I (333183) modbus tcp: ModBusSlave_recv() +I (333183) modbus: ModbusSlaveProcess()--------------------------- +I (333183) modbus: check id... +I (333183) modbus: ok +I (333183) modbus: add: 0, length: 10 +I (333183) modbus: Read Holding Registers +I (333293) modbus tcp: ModBusSlave_recv() +I (333293) modbus: ModbusSlaveProcess()--------------------------- +I (333303) modbus: check id... +I (333303) modbus: ok +I (333303) modbus: add: 0, length: 10 +I (333303) modbus: Read Holding Registers +I (333363) modbus tcp: ModBusSlave_recv() +I (333363) modbus: ModbusSlaveProcess()--------------------------- +I (333363) modbus: check id... +I (333363) modbus: ok +I (333363) modbus: add: 0, length: 10 +I (333363) modbus: Read Holding Registers +I (333463) modbus tcp: ModBusSlave_recv() +I (333463) modbus: ModbusSlaveProcess()--------------------------- +I (333463) modbus: check id... +I (333463) modbus: ok +I (333463) modbus: add: 0, length: 10 +I (333463) modbus: Read Holding Registers +I (333603) modbus tcp: ModBusSlave_recv() +I (333603) modbus: ModbusSlaveProcess()--------------------------- +I (333603) modbus: check id... +I (333603) modbus: ok +I (333603) modbus: add: 0, length: 10 +I (333603) modbus: Read Holding Registers +I (333703) modbus tcp: ModBusSlave_recv() +I (333703) modbus: ModbusSlaveProcess()--------------------------- +I (333703) modbus: check id... +I (333703) modbus: ok +I (333703) modbus: add: 0, length: 10 +I (333703) modbus: Read Holding Registers +I (333793) modbus tcp: ModBusSlave_recv() +I (333793) modbus: ModbusSlaveProcess()--------------------------- +I (333793) modbus: check id... +I (333793) modbus: ok +I (333793) modbus: add: 0, length: 10 +I (333793) modbus: Read Holding Registers +I (334013) modbus tcp: ModBusSlave_recv() +I (334013) modbus: ModbusSlaveProcess()--------------------------- +I (334013) modbus: check id... +I (334013) modbus: ok +I (334013) modbus: add: 0, length: 10 +I (334013) modbus: Read Holding Registers +I (334033) modbus tcp: ModBusSlave_recv() +I (334033) modbus: ModbusSlaveProcess()--------------------------- +I (334033) modbus: check id... +I (334033) modbus: ok +I (334033) modbus: add: 0, length: 10 +I (334033) modbus: Read Holding Registers +I (334143) modbus tcp: ModBusSlave_recv() +I (334143) modbus: ModbusSlaveProcess()--------------------------- +I (334143) modbus: check id... +I (334143) modbus: ok +I (334143) modbus: add: 0, length: 10 +I (334143) modbus: Read Holding Registers +I (334253) modbus tcp: ModBusSlave_recv() +I (334253) modbus: ModbusSlaveProcess()--------------------------- +I (334253) modbus: check id... +I (334253) modbus: ok +I (334253) modbus: add: 0, length: 10 +I (334253) modbus: Read Holding Registers +I (334343) modbus tcp: ModBusSlave_recv() +I (334343) modbus: ModbusSlaveProcess()--------------------------- +I (334343) modbus: check id... +I (334343) modbus: ok +I (334343) modbus: add: 0, length: 10 +I (334343) modbus: Read Holding Registers +I (334523) modbus tcp: ModBusSlave_recv() +I (334523) modbus: ModbusSlaveProcess()--------------------------- +I (334523) modbus: check id... +I (334523) modbus: ok +I (334523) modbus: add: 0, length: 10 +I (334523) modbus: Read Holding Registers +I (334573) modbus tcp: ModBusSlave_recv() +I (334573) modbus: ModbusSlaveProcess()--------------------------- +I (334573) modbus: check id... +I (334573) modbus: ok +I (334573) modbus: add: 0, length: 10 +I (334573) modbus: Read Holding Registers +I (334723) modbus tcp: ModBusSlave_recv() +I (334723) modbus: ModbusSlaveProcess()--------------------------- +I (334733) modbus: check id... +I (334733) modbus: ok +I (334733) modbus: add: 0, length: 10 +I (334733) modbus: Read Holding Registers +I (334783) modbus tcp: ModBusSlave_recv() +I (334783) modbus: ModbusSlaveProcess()--------------------------- +I (334783) modbus: check id... +I (334783) modbus: ok +I (334783) modbus: add: 0, length: 10 +I (334783) modbus: Read Holding Registers +I (334933) modbus tcp: ModBusSlave_recv() +I (334933) modbus: ModbusSlaveProcess()--------------------------- +I (334933) modbus: check id... +I (334933) modbus: ok +I (334933) modbus: add: 0, length: 10 +I (334933) modbus: Read Holding Registers +I (335033) modbus tcp: ModBusSlave_recv() +I (335033) modbus: ModbusSlaveProcess()--------------------------- +I (335033) modbus: check id... +I (335033) modbus: ok +I (335033) modbus: add: 0, length: 10 +I (335033) modbus: Read Holding Registers +I (335133) modbus tcp: ModBusSlave_recv() +I (335133) modbus: ModbusSlaveProcess()--------------------------- +I (335133) modbus: check id... +I (335133) modbus: ok +I (335133) modbus: add: 0, length: 10 +I (335133) modbus: Read Holding Registers +I (335223) modbus tcp: ModBusSlave_recv() +I (335223) modbus: ModbusSlaveProcess()--------------------------- +I (335223) modbus: check id... +I (335233) modbus: ok +I (335233) modbus: add: 0, length: 10 +I (335233) modbus: Read Holding Registers +I (335443) modbus tcp: ModBusSlave_recv() +I (335443) modbus: ModbusSlaveProcess()--------------------------- +I (335443) modbus: check id... +I (335443) modbus: ok +I (335443) modbus: add: 0, length: 10 +I (335443) modbus: Read Holding Registers +I (335463) modbus tcp: ModBusSlave_recv() +I (335463) modbus: ModbusSlaveProcess()--------------------------- +I (335463) modbus: check id... +I (335463) modbus: ok +I (335463) modbus: add: 0, length: 10 +I (335463) modbus: Read Holding Registers +I (335673) modbus tcp: ModBusSlave_recv() +I (335673) modbus: ModbusSlaveProcess()--------------------------- +I (335673) modbus: check id... +I (335673) modbus: ok +I (335673) modbus: add: 0, length: 10 +I (335683) modbus: Read Holding Registers +I (335703) modbus tcp: ModBusSlave_recv() +I (335703) modbus: ModbusSlaveProcess()--------------------------- +I (335703) modbus: check id... +I (335703) modbus: ok +I (335703) modbus: add: 0, length: 10 +I (335703) modbus: Read Holding Registers +I (335853) modbus tcp: ModBusSlave_recv() +I (335853) modbus: ModbusSlaveProcess()--------------------------- +I (335853) modbus: check id... +I (335853) modbus: ok +I (335853) modbus: add: 0, length: 10 +I (335853) modbus: Read Holding Registers +I (335953) modbus tcp: ModBusSlave_recv() +I (335953) modbus: ModbusSlaveProcess()--------------------------- +I (335953) modbus: check id... +I (335953) modbus: ok +I (335953) modbus: add: 0, length: 10 +I (335953) modbus: Read Holding Registers +I (336023) modbus tcp: ModBusSlave_recv() +I (336023) modbus: ModbusSlaveProcess()--------------------------- +I (336023) modbus: check id... +I (336023) modbus: ok +I (336023) modbus: add: 0, length: 10 +I (336023) modbus: Read Holding Registers +I (336153) modbus tcp: ModBusSlave_recv() +I (336163) modbus: ModbusSlaveProcess()--------------------------- +I (336163) modbus: check id... +I (336163) modbus: ok +I (336163) modbus: add: 0, length: 10 +I (336163) modbus: Read Holding Registers +I (336263) modbus tcp: ModBusSlave_recv() +I (336263) modbus: ModbusSlaveProcess()--------------------------- +I (336263) modbus: check id... +I (336263) modbus: ok +I (336263) modbus: add: 0, length: 10 +I (336263) modbus: Read Holding Registers +I (336353) modbus tcp: ModBusSlave_recv() +I (336353) modbus: ModbusSlaveProcess()--------------------------- +I (336353) modbus: check id... +I (336353) modbus: ok +I (336353) modbus: add: 0, length: 10 +I (336353) modbus: Read Holding Registers +I (336463) modbus tcp: ModBusSlave_recv() +I (336463) modbus: ModbusSlaveProcess()--------------------------- +I (336463) modbus: check id... +I (336463) modbus: ok +I (336463) modbus: add: 0, length: 10 +I (336463) modbus: Read Holding Registers +I (336573) modbus tcp: ModBusSlave_recv() +I (336573) modbus: ModbusSlaveProcess()--------------------------- +I (336573) modbus: check id... +I (336573) modbus: ok +I (336573) modbus: add: 0, length: 10 +I (336573) modbus: Read Holding Registers +I (336773) modbus tcp: ModBusSlave_recv() +I (336773) modbus: ModbusSlaveProcess()--------------------------- +I (336773) modbus: check id... +I (336773) modbus: ok +I (336773) modbus: add: 0, length: 10 +I (336773) modbus: Read Holding Registers +I (336793) modbus tcp: ModBusSlave_recv() +I (336793) modbus: ModbusSlaveProcess()--------------------------- +I (336793) modbus: check id... +I (336793) modbus: ok +I (336793) modbus: add: 0, length: 10 +I (336793) modbus: Read Holding Registers +I (336973) modbus tcp: ModBusSlave_recv() +I (336973) modbus: ModbusSlaveProcess()--------------------------- +I (336973) modbus: check id... +I (336973) modbus: ok +I (336973) modbus: add: 0, length: 10 +I (336973) modbus: Read Holding Registers +I (337023) modbus tcp: ModBusSlave_recv() +I (337023) modbus: ModbusSlaveProcess()--------------------------- +I (337023) modbus: check id... +I (337023) modbus: ok +I (337023) modbus: add: 0, length: 10 +I (337023) modbus: Read Holding Registers +I (337183) modbus tcp: ModBusSlave_recv() +I (337183) modbus: ModbusSlaveProcess()--------------------------- +I (337183) modbus: check id... +I (337183) modbus: ok +I (337183) modbus: add: 0, length: 10 +I (337183) modbus: Read Holding Registers +I (337233) modbus tcp: ModBusSlave_recv() +I (337243) modbus: ModbusSlaveProcess()--------------------------- +I (337243) modbus: check id... +I (337243) modbus: ok +I (337243) modbus: add: 0, length: 10 +I (337243) modbus: Read Holding Registers +I (337343) modbus tcp: ModBusSlave_recv() +I (337343) modbus: ModbusSlaveProcess()--------------------------- +I (337343) modbus: check id... +I (337343) modbus: ok +I (337343) modbus: add: 0, length: 10 +I (337343) modbus: Read Holding Registers +I (337453) modbus tcp: ModBusSlave_recv() +I (337453) modbus: ModbusSlaveProcess()--------------------------- +I (337453) modbus: check id... +I (337453) modbus: ok +I (337453) modbus: add: 0, length: 10 +I (337453) modbus: Read Holding Registers +I (337593) modbus tcp: ModBusSlave_recv() +I (337593) modbus: ModbusSlaveProcess()--------------------------- +I (337593) modbus: check id... +I (337593) modbus: ok +I (337593) modbus: add: 0, length: 10 +I (337593) modbus: Read Holding Registers +I (337693) modbus tcp: ModBusSlave_recv() +I (337693) modbus: ModbusSlaveProcess()--------------------------- +I (337693) modbus: check id... +I (337693) modbus: ok +I (337693) modbus: add: 0, length: 10 +I (337693) modbus: Read Holding Registers +I (337903) modbus tcp: ModBusSlave_recv() +I (337903) modbus: ModbusSlaveProcess()--------------------------- +I (337903) modbus: check id... +I (337903) modbus: ok +I (337903) modbus: add: 0, length: 10 +I (337903) modbus: Read Holding Registers +I (337913) modbus tcp: ModBusSlave_recv() +I (337913) modbus: ModbusSlaveProcess()--------------------------- +I (337913) modbus: check id... +I (337913) modbus: ok +I (337913) modbus: add: 0, length: 10 +I (337913) modbus: Read Holding Registers +I (338103) modbus tcp: ModBusSlave_recv() +I (338103) modbus: ModbusSlaveProcess()--------------------------- +I (338103) modbus: check id... +I (338103) modbus: ok +I (338103) modbus: add: 0, length: 10 +I (338103) modbus: Read Holding Registers +I (338143) modbus tcp: ModBusSlave_recv() +I (338143) modbus: ModbusSlaveProcess()--------------------------- +I (338143) modbus: check id... +I (338143) modbus: ok +I (338143) modbus: add: 0, length: 10 +I (338143) modbus: Read Holding Registers +I (338313) modbus tcp: ModBusSlave_recv() +I (338313) modbus: ModbusSlaveProcess()--------------------------- +I (338313) modbus: check id... +I (338313) modbus: ok +I (338313) modbus: add: 0, length: 10 +I (338313) modbus: Read Holding Registers +I (338363) modbus tcp: ModBusSlave_recv() +I (338363) modbus: ModbusSlaveProcess()--------------------------- +I (338363) modbus: check id... +I (338363) modbus: ok +I (338363) modbus: add: 0, length: 10 +I (338363) modbus: Read Holding Registers +I (338473) modbus tcp: ModBusSlave_recv() +I (338473) modbus: ModbusSlaveProcess()--------------------------- +I (338473) modbus: check id... +I (338473) modbus: ok +I (338473) modbus: add: 0, length: 10 +I (338473) modbus: Read Holding Registers +I (338613) modbus tcp: ModBusSlave_recv() +I (338613) modbus: ModbusSlaveProcess()--------------------------- +I (338613) modbus: check id... +I (338613) modbus: ok +I (338613) modbus: add: 0, length: 10 +I (338613) modbus: Read Holding Registers +I (338693) modbus tcp: ModBusSlave_recv() +I (338693) modbus: ModbusSlaveProcess()--------------------------- +I (338693) modbus: check id... +I (338693) modbus: ok +I (338693) modbus: add: 0, length: 10 +I (338693) modbus: Read Holding Registers +I (338823) modbus tcp: ModBusSlave_recv() +I (338823) modbus: ModbusSlaveProcess()--------------------------- +I (338823) modbus: check id... +I (338823) modbus: ok +I (338823) modbus: add: 0, length: 10 +I (338823) modbus: Read Holding Registers +I (338913) modbus tcp: ModBusSlave_recv() +I (338913) modbus: ModbusSlaveProcess()--------------------------- +I (338913) modbus: check id... +I (338913) modbus: ok +I (338913) modbus: add: 0, length: 10 +I (338913) modbus: Read Holding Registers +I (339033) modbus tcp: ModBusSlave_recv() +I (339033) modbus: ModbusSlaveProcess()--------------------------- +I (339033) modbus: check id... +I (339033) modbus: ok +I (339033) modbus: add: 0, length: 10 +I (339033) modbus: Read Holding Registers +I (339133) modbus tcp: ModBusSlave_recv() +I (339133) modbus: ModbusSlaveProcess()--------------------------- +I (339133) modbus: check id... +I (339133) modbus: ok +I (339133) modbus: add: 0, length: 10 +I (339133) modbus: Read Holding Registers +I (339333) modbus tcp: ModBusSlave_recv() +I (339333) modbus: ModbusSlaveProcess()--------------------------- +I (339333) modbus: check id... +I (339333) modbus: ok +I (339333) modbus: add: 0, length: 10 +I (339333) modbus: Read Holding Registers +I (339353) modbus tcp: ModBusSlave_recv() +I (339353) modbus: ModbusSlaveProcess()--------------------------- +I (339353) modbus: check id... +I (339353) modbus: ok +I (339353) modbus: add: 0, length: 10 +I (339353) modbus: Read Holding Registers +I (339533) modbus tcp: ModBusSlave_recv() +I (339533) modbus: ModbusSlaveProcess()--------------------------- +I (339533) modbus: check id... +I (339533) modbus: ok +I (339533) modbus: add: 0, length: 10 +I (339533) modbus: Read Holding Registers +I (339573) modbus tcp: ModBusSlave_recv() +I (339573) modbus: ModbusSlaveProcess()--------------------------- +I (339573) modbus: check id... +I (339573) modbus: ok +I (339573) modbus: add: 0, length: 10 +I (339573) modbus: Read Holding Registers +I (339743) modbus tcp: ModBusSlave_recv() +I (339743) modbus: ModbusSlaveProcess()--------------------------- +I (339743) modbus: check id... +I (339743) modbus: ok +I (339743) modbus: add: 0, length: 10 +I (339743) modbus: Read Holding Registers +I (339843) modbus tcp: ModBusSlave_recv() +I (339843) modbus: ModbusSlaveProcess()--------------------------- +I (339843) modbus: check id... +I (339843) modbus: ok +I (339843) modbus: add: 0, length: 10 +I (339843) modbus: Read Holding Registers +I (339903) modbus tcp: ModBusSlave_recv() +I (339903) modbus: ModbusSlaveProcess()--------------------------- +I (339903) modbus: check id... +I (339903) modbus: ok +I (339903) modbus: add: 0, length: 10 +I (339903) modbus: Read Holding Registers +I (340013) modbus tcp: ModBusSlave_recv() +I (340013) modbus: ModbusSlaveProcess()--------------------------- +I (340013) modbus: check id... +I (340013) modbus: ok +I (340013) modbus: add: 0, length: 10 +I (340013) modbus: Read Holding Registers +I (340123) modbus tcp: ModBusSlave_recv() +I (340123) modbus: ModbusSlaveProcess()--------------------------- +I (340123) modbus: check id... +I (340123) modbus: ok +I (340123) modbus: add: 0, length: 10 +I (340123) modbus: Read Holding Registers +I (340253) modbus tcp: ModBusSlave_recv() +I (340253) modbus: ModbusSlaveProcess()--------------------------- +I (340253) modbus: check id... +I (340253) modbus: ok +I (340253) modbus: add: 0, length: 10 +I (340253) modbus: Read Holding Registers +I (340353) modbus tcp: ModBusSlave_recv() +I (340353) modbus: ModbusSlaveProcess()--------------------------- +I (340353) modbus: check id... +I (340363) modbus: ok +I (340363) modbus: add: 0, length: 10 +I (340363) modbus: Read Holding Registers +I (340453) modbus tcp: ModBusSlave_recv() +I (340453) modbus: ModbusSlaveProcess()--------------------------- +I (340453) modbus: check id... +I (340453) modbus: ok +I (340453) modbus: add: 0, length: 10 +I (340453) modbus: Read Holding Registers +I (340563) modbus tcp: ModBusSlave_recv() +I (340563) modbus: ModbusSlaveProcess()--------------------------- +I (340563) modbus: check id... +I (340563) modbus: ok +I (340563) modbus: add: 0, length: 10 +I (340563) modbus: Read Holding Registers +I (340793) modbus tcp: ModBusSlave_recv() +I (340803) modbus: ModbusSlaveProcess()--------------------------- +I (340803) modbus: check id... +I (340803) modbus: ok +I (340803) modbus: add: 0, length: 10 +I (340803) modbus: Read Holding Registers +I (340813) modbus tcp: ModBusSlave_recv() +I (340813) modbus: ModbusSlaveProcess()--------------------------- +I (340813) modbus: check id... +I (340813) modbus: ok +I (340813) modbus: add: 0, length: 10 +I (340813) modbus: Read Holding Registers +I (340923) modbus tcp: ModBusSlave_recv() +I (340923) modbus: ModbusSlaveProcess()--------------------------- +I (340923) modbus: check id... +I (340923) modbus: ok +I (340923) modbus: add: 0, length: 10 +I (340923) modbus: Read Holding Registers +I (341073) modbus tcp: ModBusSlave_recv() +I (341073) modbus: ModbusSlaveProcess()--------------------------- +I (341073) modbus: check id... +I (341073) modbus: ok +I (341073) modbus: add: 0, length: 10 +I (341073) modbus: Read Holding Registers +I (341173) modbus tcp: ModBusSlave_recv() +I (341173) modbus: ModbusSlaveProcess()--------------------------- +I (341173) modbus: check id... +I (341173) modbus: ok +I (341173) modbus: add: 0, length: 10 +I (341173) modbus: Read Holding Registers +I (341253) modbus tcp: ModBusSlave_recv() +I (341263) modbus: ModbusSlaveProcess()--------------------------- +I (341263) modbus: check id... +I (341263) modbus: ok +I (341263) modbus: add: 0, length: 10 +I (341263) modbus: Read Holding Registers +I (341383) modbus tcp: ModBusSlave_recv() +I (341383) modbus: ModbusSlaveProcess()--------------------------- +I (341383) modbus: check id... +I (341383) modbus: ok +I (341383) modbus: add: 0, length: 10 +I (341383) modbus: Read Holding Registers +I (341583) modbus tcp: ModBusSlave_recv() +I (341583) modbus: ModbusSlaveProcess()--------------------------- +I (341583) modbus: check id... +I (341583) modbus: ok +I (341583) modbus: add: 0, length: 10 +I (341583) modbus: Read Holding Registers +I (341603) modbus tcp: ModBusSlave_recv() +I (341603) modbus: ModbusSlaveProcess()--------------------------- +I (341603) modbus: check id... +I (341603) modbus: ok +I (341603) modbus: add: 0, length: 10 +I (341603) modbus: Read Holding Registers +I (341793) modbus tcp: ModBusSlave_recv() +I (341793) modbus: ModbusSlaveProcess()--------------------------- +I (341793) modbus: check id... +I (341793) modbus: ok +I (341793) modbus: add: 0, length: 10 +I (341793) modbus: Read Holding Registers +I (341823) modbus tcp: ModBusSlave_recv() +I (341823) modbus: ModbusSlaveProcess()--------------------------- +I (341823) modbus: check id... +I (341823) modbus: ok +I (341823) modbus: add: 0, length: 10 +I (341823) modbus: Read Holding Registers +I (341993) modbus tcp: ModBusSlave_recv() +I (341993) modbus: ModbusSlaveProcess()--------------------------- +I (341993) modbus: check id... +I (341993) modbus: ok +I (341993) modbus: add: 0, length: 10 +I (341993) modbus: Read Holding Registers +I (342033) modbus tcp: ModBusSlave_recv() +I (342033) modbus: ModbusSlaveProcess()--------------------------- +I (342033) modbus: check id... +I (342033) modbus: ok +I (342033) modbus: add: 0, length: 10 +I (342033) modbus: Read Holding Registers +I (342203) modbus tcp: ModBusSlave_recv() +I (342203) modbus: ModbusSlaveProcess()--------------------------- +I (342203) modbus: check id... +I (342203) modbus: ok +I (342203) modbus: add: 0, length: 10 +I (342203) modbus: Read Holding Registers +I (342263) modbus tcp: ModBusSlave_recv() +I (342273) modbus: ModbusSlaveProcess()--------------------------- +I (342273) modbus: check id... +I (342273) modbus: ok +I (342273) modbus: add: 0, length: 10 +I (342273) modbus: Read Holding Registers +I (342403) modbus tcp: ModBusSlave_recv() +I (342403) modbus: ModbusSlaveProcess()--------------------------- +I (342403) modbus: check id... +I (342403) modbus: ok +I (342403) modbus: add: 0, length: 10 +I (342403) modbus: Read Holding Registers +I (342483) modbus tcp: ModBusSlave_recv() +I (342483) modbus: ModbusSlaveProcess()--------------------------- +I (342483) modbus: check id... +I (342483) modbus: ok +I (342483) modbus: add: 0, length: 10 +I (342483) modbus: Read Holding Registers +I (342603) modbus tcp: ModBusSlave_recv() +I (342603) modbus: ModbusSlaveProcess()--------------------------- +I (342603) modbus: check id... +I (342603) modbus: ok +I (342613) modbus: add: 0, length: 10 +I (342613) modbus: Read Holding Registers +I (342813) modbus tcp: ModBusSlave_recv() +I (342813) modbus: ModbusSlaveProcess()--------------------------- +I (342813) modbus: check id... +I (342813) modbus: ok +I (342813) modbus: add: 0, length: 10 +I (342813) modbus: Read Holding Registers +I (342843) modbus tcp: ModBusSlave_recv() +I (342843) modbus: ModbusSlaveProcess()--------------------------- +I (342843) modbus: check id... +I (342843) modbus: ok +I (342843) modbus: add: 0, length: 10 +I (342843) modbus: Read Holding Registers +I (343023) modbus tcp: ModBusSlave_recv() +I (343023) modbus: ModbusSlaveProcess()--------------------------- +I (343023) modbus: check id... +I (343023) modbus: ok +I (343023) modbus: add: 0, length: 10 +I (343023) modbus: Read Holding Registers +I (343063) modbus tcp: ModBusSlave_recv() +I (343063) modbus: ModbusSlaveProcess()--------------------------- +I (343063) modbus: check id... +I (343063) modbus: ok +I (343063) modbus: add: 0, length: 10 +I (343063) modbus: Read Holding Registers +I (343233) modbus tcp: ModBusSlave_recv() +I (343233) modbus: ModbusSlaveProcess()--------------------------- +I (343233) modbus: check id... +I (343233) modbus: ok +I (343233) modbus: add: 0, length: 10 +I (343233) modbus: Read Holding Registers +I (343263) modbus tcp: ModBusSlave_recv() +I (343263) modbus: ModbusSlaveProcess()--------------------------- +I (343273) modbus: check id... +I (343273) modbus: ok +I (343273) modbus: add: 0, length: 10 +I (343273) modbus: Read Holding Registers +I (343423) modbus tcp: ModBusSlave_recv() +I (343433) modbus: ModbusSlaveProcess()--------------------------- +I (343433) modbus: check id... +I (343433) modbus: ok +I (343433) modbus: add: 0, length: 10 +I (343433) modbus: Read Holding Registers +I (343493) modbus tcp: ModBusSlave_recv() +I (343493) modbus: ModbusSlaveProcess()--------------------------- +I (343493) modbus: check id... +I (343493) modbus: ok +I (343493) modbus: add: 0, length: 10 +I (343493) modbus: Read Holding Registers +I (343633) modbus tcp: ModBusSlave_recv() +I (343633) modbus: ModbusSlaveProcess()--------------------------- +I (343633) modbus: check id... +I (343633) modbus: ok +I (343633) modbus: add: 0, length: 10 +I (343633) modbus: Read Holding Registers +I (343733) modbus tcp: ModBusSlave_recv() +I (343733) modbus: ModbusSlaveProcess()--------------------------- +I (343733) modbus: check id... +I (343733) modbus: ok +I (343733) modbus: add: 0, length: 10 +I (343733) modbus: Read Holding Registers +I (343823) modbus tcp: ModBusSlave_recv() +I (343823) modbus: ModbusSlaveProcess()--------------------------- +I (343823) modbus: check id... +I (343823) modbus: ok +I (343823) modbus: add: 0, length: 10 +I (343823) modbus: Read Holding Registers +I (343943) modbus tcp: ModBusSlave_recv() +I (343943) modbus: ModbusSlaveProcess()--------------------------- +I (343943) modbus: check id... +I (343943) modbus: ok +I (343943) modbus: add: 0, length: 10 +I (343943) modbus: Read Holding Registers +I (344143) modbus tcp: ModBusSlave_recv() +I (344143) modbus: ModbusSlaveProcess()--------------------------- +I (344143) modbus: check id... +I (344143) modbus: ok +I (344143) modbus: add: 0, length: 10 +I (344143) modbus: Read Holding Registers +I (344163) modbus tcp: ModBusSlave_recv() +I (344163) modbus: ModbusSlaveProcess()--------------------------- +I (344163) modbus: check id... +I (344163) modbus: ok +I (344163) modbus: add: 0, length: 10 +I (344163) modbus: Read Holding Registers +I (344273) modbus tcp: ModBusSlave_recv() +I (344273) modbus: ModbusSlaveProcess()--------------------------- +I (344273) modbus: check id... +I (344273) modbus: ok +I (344273) modbus: add: 0, length: 10 +I (344273) modbus: Read Holding Registers +I (344453) modbus tcp: ModBusSlave_recv() +I (344453) modbus: ModbusSlaveProcess()--------------------------- +I (344453) modbus: check id... +I (344453) modbus: ok +I (344453) modbus: add: 0, length: 10 +I (344453) modbus: Read Holding Registers +I (344493) modbus tcp: ModBusSlave_recv() +I (344493) modbus: ModbusSlaveProcess()--------------------------- +I (344493) modbus: check id... +I (344493) modbus: ok +I (344493) modbus: add: 0, length: 10 +I (344493) modbus: Read Holding Registers +I (344653) modbus tcp: ModBusSlave_recv() +I (344663) modbus: ModbusSlaveProcess()--------------------------- +I (344663) modbus: check id... +I (344663) modbus: ok +I (344663) modbus: add: 0, length: 10 +I (344663) modbus: Read Holding Registers +I (344763) modbus tcp: ModBusSlave_recv() +I (344763) modbus: ModbusSlaveProcess()--------------------------- +I (344763) modbus: check id... +I (344763) modbus: ok +I (344763) modbus: add: 0, length: 10 +I (344763) modbus: Read Holding Registers +I (344823) modbus tcp: ModBusSlave_recv() +I (344823) modbus: ModbusSlaveProcess()--------------------------- +I (344823) modbus: check id... +I (344823) modbus: ok +I (344823) modbus: add: 0, length: 10 +I (344823) modbus: Read Holding Registers +I (344963) modbus tcp: ModBusSlave_recv() +I (344963) modbus: ModbusSlaveProcess()--------------------------- +I (344963) modbus: check id... +I (344963) modbus: ok +I (344963) modbus: add: 0, length: 10 +I (344963) modbus: Read Holding Registers +I (345043) modbus tcp: ModBusSlave_recv() +I (345043) modbus: ModbusSlaveProcess()--------------------------- +I (345043) modbus: check id... +I (345043) modbus: ok +I (345043) modbus: add: 0, length: 10 +I (345043) modbus: Read Holding Registers +I (345173) modbus tcp: ModBusSlave_recv() +I (345173) modbus: ModbusSlaveProcess()--------------------------- +I (345173) modbus: check id... +I (345173) modbus: ok +I (345173) modbus: add: 0, length: 10 +I (345173) modbus: Read Holding Registers +I (345263) modbus tcp: ModBusSlave_recv() +I (345263) modbus: ModbusSlaveProcess()--------------------------- +I (345263) modbus: check id... +I (345263) modbus: ok +I (345263) modbus: add: 0, length: 10 +I (345263) modbus: Read Holding Registers +I (345473) modbus tcp: ModBusSlave_recv() +I (345483) modbus: ModbusSlaveProcess()--------------------------- +I (345483) modbus: check id... +I (345483) modbus: ok +I (345483) modbus: add: 0, length: 10 +I (345483) modbus: Read Holding Registers +I (345503) modbus tcp: ModBusSlave_recv() +I (345503) modbus: ModbusSlaveProcess()--------------------------- +I (345503) modbus: check id... +I (345503) modbus: ok +I (345503) modbus: add: 0, length: 10 +I (345503) modbus: Read Holding Registers +I (345683) modbus tcp: ModBusSlave_recv() +I (345683) modbus: ModbusSlaveProcess()--------------------------- +I (345683) modbus: check id... +I (345683) modbus: ok +I (345683) modbus: add: 0, length: 10 +I (345683) modbus: Read Holding Registers +I (345713) modbus tcp: ModBusSlave_recv() +I (345713) modbus: ModbusSlaveProcess()--------------------------- +I (345713) modbus: check id... +I (345713) modbus: ok +I (345713) modbus: add: 0, length: 10 +I (345713) modbus: Read Holding Registers +I (345893) modbus tcp: ModBusSlave_recv() +I (345893) modbus: ModbusSlaveProcess()--------------------------- +I (345893) modbus: check id... +I (345893) modbus: ok +I (345893) modbus: add: 0, length: 10 +I (345893) modbus: Read Holding Registers +I (345933) modbus tcp: ModBusSlave_recv() +I (345933) modbus: ModbusSlaveProcess()--------------------------- +I (345933) modbus: check id... +I (345933) modbus: ok +I (345933) modbus: add: 0, length: 10 +I (345933) modbus: Read Holding Registers +I (346093) modbus tcp: ModBusSlave_recv() +I (346093) modbus: ModbusSlaveProcess()--------------------------- +I (346093) modbus: check id... +I (346093) modbus: ok +I (346093) modbus: add: 0, length: 10 +I (346093) modbus: Read Holding Registers +I (346153) modbus tcp: ModBusSlave_recv() +I (346153) modbus: ModbusSlaveProcess()--------------------------- +I (346153) modbus: check id... +I (346153) modbus: ok +I (346153) modbus: add: 0, length: 10 +I (346153) modbus: Read Holding Registers +I (346263) modbus tcp: ModBusSlave_recv() +I (346263) modbus: ModbusSlaveProcess()--------------------------- +I (346263) modbus: check id... +I (346263) modbus: ok +I (346263) modbus: add: 0, length: 10 +I (346263) modbus: Read Holding Registers +I (346373) modbus tcp: ModBusSlave_recv() +I (346373) modbus: ModbusSlaveProcess()--------------------------- +I (346373) modbus: check id... +I (346373) modbus: ok +I (346373) modbus: add: 0, length: 10 +I (346373) modbus: Read Holding Registers +I (346503) modbus tcp: ModBusSlave_recv() +I (346503) modbus: ModbusSlaveProcess()--------------------------- +I (346503) modbus: check id... +I (346503) modbus: ok +I (346503) modbus: add: 0, length: 10 +I (346503) modbus: Read Holding Registers +I (346593) modbus tcp: ModBusSlave_recv() +I (346593) modbus: ModbusSlaveProcess()--------------------------- +I (346593) modbus: check id... +I (346593) modbus: ok +I (346593) modbus: add: 0, length: 10 +I (346593) modbus: Read Holding Registers +I (346703) modbus tcp: ModBusSlave_recv() +I (346703) modbus: ModbusSlaveProcess()--------------------------- +I (346703) modbus: check id... +I (346703) modbus: ok +I (346703) modbus: add: 0, length: 10 +I (346703) modbus: Read Holding Registers +I (346913) modbus tcp: ModBusSlave_recv() +I (346913) modbus: ModbusSlaveProcess()--------------------------- +I (346913) modbus: check id... +I (346913) modbus: ok +I (346913) modbus: add: 0, length: 10 +I (346913) modbus: Read Holding Registers +I (346943) modbus tcp: ModBusSlave_recv() +I (346943) modbus: ModbusSlaveProcess()--------------------------- +I (346943) modbus: check id... +I (346943) modbus: ok +I (346943) modbus: add: 0, length: 10 +I (346943) modbus: Read Holding Registers +I (347033) modbus tcp: ModBusSlave_recv() +I (347043) modbus: ModbusSlaveProcess()--------------------------- +I (347043) modbus: check id... +I (347043) modbus: ok +I (347043) modbus: add: 0, length: 10 +I (347043) modbus: Read Holding Registers +I (347213) modbus tcp: ModBusSlave_recv() +I (347213) modbus: ModbusSlaveProcess()--------------------------- +I (347213) modbus: check id... +I (347213) modbus: ok +I (347213) modbus: add: 0, length: 10 +I (347213) modbus: Read Holding Registers +I (347263) modbus tcp: ModBusSlave_recv() +I (347263) modbus: ModbusSlaveProcess()--------------------------- +I (347263) modbus: check id... +I (347263) modbus: ok +I (347263) modbus: add: 0, length: 10 +I (347263) modbus: Read Holding Registers +I (347423) modbus tcp: ModBusSlave_recv() +I (347423) modbus: ModbusSlaveProcess()--------------------------- +I (347423) modbus: check id... +I (347423) modbus: ok +I (347423) modbus: add: 0, length: 10 +I (347423) modbus: Read Holding Registers +I (347523) modbus tcp: ModBusSlave_recv() +I (347523) modbus: ModbusSlaveProcess()--------------------------- +I (347523) modbus: check id... +I (347523) modbus: ok +I (347523) modbus: add: 0, length: 10 +I (347523) modbus: Read Holding Registers +I (347593) modbus tcp: ModBusSlave_recv() +I (347593) modbus: ModbusSlaveProcess()--------------------------- +I (347593) modbus: check id... +I (347593) modbus: ok +I (347593) modbus: add: 0, length: 10 +I (347593) modbus: Read Holding Registers +I (347723) modbus tcp: ModBusSlave_recv() +I (347723) modbus: ModbusSlaveProcess()--------------------------- +I (347733) modbus: check id... +I (347733) modbus: ok +I (347733) modbus: add: 0, length: 10 +I (347733) modbus: Read Holding Registers +I (347833) modbus tcp: ModBusSlave_recv() +I (347833) modbus: ModbusSlaveProcess()--------------------------- +I (347833) modbus: check id... +I (347833) modbus: ok +I (347833) modbus: add: 0, length: 10 +I (347833) modbus: Read Holding Registers +I (347933) modbus tcp: ModBusSlave_recv() +I (347933) modbus: ModbusSlaveProcess()--------------------------- +I (347933) modbus: check id... +I (347933) modbus: ok +I (347933) modbus: add: 0, length: 10 +I (347933) modbus: Read Holding Registers +I (348013) modbus tcp: ModBusSlave_recv() +I (348013) modbus: ModbusSlaveProcess()--------------------------- +I (348013) modbus: check id... +I (348013) modbus: ok +I (348023) modbus: add: 0, length: 10 +I (348023) modbus: Read Holding Registers +I (348253) modbus tcp: ModBusSlave_recv() +I (348253) modbus: ModbusSlaveProcess()--------------------------- +I (348253) modbus: check id... +I (348253) modbus: ok +I (348253) modbus: add: 0, length: 10 +I (348253) modbus: Read Holding Registers +I (348273) modbus tcp: ModBusSlave_recv() +I (348273) modbus: ModbusSlaveProcess()--------------------------- +I (348273) modbus: check id... +I (348273) modbus: ok +I (348273) modbus: add: 0, length: 10 +I (348273) modbus: Read Holding Registers +I (348383) modbus tcp: ModBusSlave_recv() +I (348383) modbus: ModbusSlaveProcess()--------------------------- +I (348383) modbus: check id... +I (348383) modbus: ok +I (348383) modbus: add: 0, length: 10 +I (348383) modbus: Read Holding Registers +I (348543) modbus tcp: ModBusSlave_recv() +I (348553) modbus: ModbusSlaveProcess()--------------------------- +I (348553) modbus: check id... +I (348553) modbus: ok +I (348553) modbus: add: 0, length: 10 +I (348553) modbus: Read Holding Registers +I (348603) modbus tcp: ModBusSlave_recv() +I (348603) modbus: ModbusSlaveProcess()--------------------------- +I (348603) modbus: check id... +I (348603) modbus: ok +I (348603) modbus: add: 0, length: 10 +I (348603) modbus: Read Holding Registers +I (348753) modbus tcp: ModBusSlave_recv() +I (348753) modbus: ModbusSlaveProcess()--------------------------- +I (348753) modbus: check id... +I (348753) modbus: ok +I (348753) modbus: add: 0, length: 10 +I (348753) modbus: Read Holding Registers +I (348863) modbus tcp: ModBusSlave_recv() +I (348863) modbus: ModbusSlaveProcess()--------------------------- +I (348863) modbus: check id... +I (348863) modbus: ok +I (348863) modbus: add: 0, length: 10 +I (348863) modbus: Read Holding Registers +I (348923) modbus tcp: ModBusSlave_recv() +I (348923) modbus: ModbusSlaveProcess()--------------------------- +I (348923) modbus: check id... +I (348923) modbus: ok +I (348923) modbus: add: 0, length: 10 +I (348923) modbus: Read Holding Registers +I (349063) modbus tcp: ModBusSlave_recv() +I (349063) modbus: ModbusSlaveProcess()--------------------------- +I (349063) modbus: check id... +I (349063) modbus: ok +I (349063) modbus: add: 0, length: 10 +I (349063) modbus: Read Holding Registers +I (349163) modbus tcp: ModBusSlave_recv() +I (349163) modbus: ModbusSlaveProcess()--------------------------- +I (349163) modbus: check id... +I (349163) modbus: ok +I (349163) modbus: add: 0, length: 10 +I (349163) modbus: Read Holding Registers +I (349263) modbus tcp: ModBusSlave_recv() +I (349263) modbus: ModbusSlaveProcess()--------------------------- +I (349263) modbus: check id... +I (349263) modbus: ok +I (349263) modbus: add: 0, length: 10 +I (349263) modbus: Read Holding Registers +I (349473) modbus tcp: ModBusSlave_recv() +I (349473) modbus: ModbusSlaveProcess()--------------------------- +I (349473) modbus: check id... +I (349473) modbus: ok +I (349473) modbus: add: 0, length: 10 +I (349473) modbus: Read Holding Registers +I (349493) modbus tcp: ModBusSlave_recv() +I (349493) modbus: ModbusSlaveProcess()--------------------------- +I (349493) modbus: check id... +I (349493) modbus: ok +I (349493) modbus: add: 0, length: 10 +I (349493) modbus: Read Holding Registers +I (349673) modbus tcp: ModBusSlave_recv() +I (349673) modbus: ModbusSlaveProcess()--------------------------- +I (349673) modbus: check id... +I (349673) modbus: ok +I (349673) modbus: add: 0, length: 10 +I (349673) modbus: Read Holding Registers +I (349713) modbus tcp: ModBusSlave_recv() +I (349713) modbus: ModbusSlaveProcess()--------------------------- +I (349713) modbus: check id... +I (349713) modbus: ok +I (349713) modbus: add: 0, length: 10 +I (349713) modbus: Read Holding Registers +I (349883) modbus tcp: ModBusSlave_recv() +I (349883) modbus: ModbusSlaveProcess()--------------------------- +I (349883) modbus: check id... +I (349883) modbus: ok +I (349883) modbus: add: 0, length: 10 +I (349883) modbus: Read Holding Registers +I (349983) modbus tcp: ModBusSlave_recv() +I (349983) modbus: ModbusSlaveProcess()--------------------------- +I (349983) modbus: check id... +I (349983) modbus: ok +I (349983) modbus: add: 0, length: 10 +I (349983) modbus: Read Holding Registers +I (350083) modbus tcp: ModBusSlave_recv() +I (350083) modbus: ModbusSlaveProcess()--------------------------- +I (350083) modbus: check id... +I (350083) modbus: ok +I (350083) modbus: add: 0, length: 10 +I (350083) modbus: Read Holding Registers +I (350183) modbus tcp: ModBusSlave_recv() +I (350183) modbus: ModbusSlaveProcess()--------------------------- +I (350183) modbus: check id... +I (350183) modbus: ok +I (350183) modbus: add: 0, length: 10 +I (350183) modbus: Read Holding Registers +I (350293) modbus tcp: ModBusSlave_recv() +I (350293) modbus: ModbusSlaveProcess()--------------------------- +I (350293) modbus: check id... +I (350293) modbus: ok +I (350293) modbus: add: 0, length: 10 +I (350293) modbus: Read Holding Registers +I (350373) modbus tcp: ModBusSlave_recv() +I (350373) modbus: ModbusSlaveProcess()--------------------------- +I (350373) modbus: check id... +I (350373) modbus: ok +I (350373) modbus: add: 0, length: 10 +I (350373) modbus: Read Holding Registers +I (350473) modbus tcp: ModBusSlave_recv() +I (350473) modbus: ModbusSlaveProcess()--------------------------- +I (350473) modbus: check id... +I (350473) modbus: ok +I (350473) modbus: add: 0, length: 10 +I (350473) modbus: Read Holding Registers +I (350593) modbus tcp: ModBusSlave_recv() +I (350593) modbus: ModbusSlaveProcess()--------------------------- +I (350593) modbus: check id... +I (350593) modbus: ok +I (350593) modbus: add: 0, length: 10 +I (350593) modbus: Read Holding Registers +I (350803) modbus tcp: ModBusSlave_recv() +I (350803) modbus: ModbusSlaveProcess()--------------------------- +I (350803) modbus: check id... +I (350803) modbus: ok +I (350803) modbus: add: 0, length: 10 +I (350803) modbus: Read Holding Registers +I (350833) modbus tcp: ModBusSlave_recv() +I (350833) modbus: ModbusSlaveProcess()--------------------------- +I (350833) modbus: check id... +I (350833) modbus: ok +I (350833) modbus: add: 0, length: 10 +I (350833) modbus: Read Holding Registers +I (350933) modbus tcp: ModBusSlave_recv() +I (350933) modbus: ModbusSlaveProcess()--------------------------- +I (350933) modbus: check id... +I (350933) modbus: ok +I (350933) modbus: add: 0, length: 10 +I (350933) modbus: Read Holding Registers +I (351103) modbus tcp: ModBusSlave_recv() +I (351113) modbus: ModbusSlaveProcess()--------------------------- +I (351113) modbus: check id... +I (351113) modbus: ok +I (351113) modbus: add: 0, length: 10 +I (351113) modbus: Read Holding Registers +I (351153) modbus tcp: ModBusSlave_recv() +I (351153) modbus: ModbusSlaveProcess()--------------------------- +I (351153) modbus: check id... +I (351153) modbus: ok +I (351153) modbus: add: 0, length: 10 +I (351153) modbus: Read Holding Registers +I (351313) modbus tcp: ModBusSlave_recv() +I (351313) modbus: ModbusSlaveProcess()--------------------------- +I (351313) modbus: check id... +I (351313) modbus: ok +I (351313) modbus: add: 0, length: 10 +I (351313) modbus: Read Holding Registers +I (351373) modbus tcp: ModBusSlave_recv() +I (351373) modbus: ModbusSlaveProcess()--------------------------- +I (351373) modbus: check id... +I (351373) modbus: ok +I (351373) modbus: add: 0, length: 10 +I (351373) modbus: Read Holding Registers +I (351473) modbus tcp: ModBusSlave_recv() +I (351473) modbus: ModbusSlaveProcess()--------------------------- +I (351473) modbus: check id... +I (351473) modbus: ok +I (351473) modbus: add: 0, length: 10 +I (351473) modbus: Read Holding Registers +I (351623) modbus tcp: ModBusSlave_recv() +I (351623) modbus: ModbusSlaveProcess()--------------------------- +I (351623) modbus: check id... +I (351623) modbus: ok +I (351623) modbus: add: 0, length: 10 +I (351623) modbus: Read Holding Registers +I (351693) modbus tcp: ModBusSlave_recv() +I (351693) modbus: ModbusSlaveProcess()--------------------------- +I (351693) modbus: check id... +I (351693) modbus: ok +I (351693) modbus: add: 0, length: 10 +I (351693) modbus: Read Holding Registers +I (351843) modbus tcp: ModBusSlave_recv() +I (351843) modbus: ModbusSlaveProcess()--------------------------- +I (351843) modbus: check id... +I (351843) modbus: ok +I (351843) modbus: add: 0, length: 10 +I (351843) modbus: Read Holding Registers +I (351933) modbus tcp: ModBusSlave_recv() +I (351933) modbus: ModbusSlaveProcess()--------------------------- +I (351933) modbus: check id... +I (351933) modbus: ok +I (351933) modbus: add: 0, length: 10 +I (351933) modbus: Read Holding Registers +I (352033) modbus tcp: ModBusSlave_recv() +I (352033) modbus: ModbusSlaveProcess()--------------------------- +I (352033) modbus: check id... +I (352033) modbus: ok +I (352033) modbus: add: 0, length: 10 +I (352033) modbus: Read Holding Registers +I (352133) modbus tcp: ModBusSlave_recv() +I (352133) modbus: ModbusSlaveProcess()--------------------------- +I (352133) modbus: check id... +I (352133) modbus: ok +I (352143) modbus: add: 0, length: 10 +I (352143) modbus: Read Holding Registers +I (352343) modbus tcp: ModBusSlave_recv() +I (352343) modbus: ModbusSlaveProcess()--------------------------- +I (352343) modbus: check id... +I (352343) modbus: ok +I (352343) modbus: add: 0, length: 10 +I (352343) modbus: Read Holding Registers +I (352373) modbus tcp: ModBusSlave_recv() +I (352373) modbus: ModbusSlaveProcess()--------------------------- +I (352373) modbus: check id... +I (352373) modbus: ok +I (352373) modbus: add: 0, length: 10 +I (352373) modbus: Read Holding Registers +I (352543) modbus tcp: ModBusSlave_recv() +I (352543) modbus: ModbusSlaveProcess()--------------------------- +I (352543) modbus: check id... +I (352543) modbus: ok +I (352543) modbus: add: 0, length: 10 +I (352543) modbus: Read Holding Registers +I (352593) modbus tcp: ModBusSlave_recv() +I (352593) modbus: ModbusSlaveProcess()--------------------------- +I (352593) modbus: check id... +I (352593) modbus: ok +I (352593) modbus: add: 0, length: 10 +I (352593) modbus: Read Holding Registers +I (352743) modbus tcp: ModBusSlave_recv() +I (352743) modbus: ModbusSlaveProcess()--------------------------- +I (352743) modbus: check id... +I (352743) modbus: ok +I (352743) modbus: add: 0, length: 10 +I (352743) modbus: Read Holding Registers +I (352813) modbus tcp: ModBusSlave_recv() +I (352813) modbus: ModbusSlaveProcess()--------------------------- +I (352813) modbus: check id... +I (352813) modbus: ok +I (352813) modbus: add: 0, length: 10 +I (352813) modbus: Read Holding Registers +I (352903) modbus tcp: ModBusSlave_recv() +I (352903) modbus: ModbusSlaveProcess()--------------------------- +I (352903) modbus: check id... +I (352913) modbus: ok +I (352913) modbus: add: 0, length: 10 +I (352913) modbus: Read Holding Registers +I (353053) modbus tcp: ModBusSlave_recv() +I (353053) modbus: ModbusSlaveProcess()--------------------------- +I (353053) modbus: check id... +I (353053) modbus: ok +I (353053) modbus: add: 0, length: 10 +I (353053) modbus: Read Holding Registers +I (353153) modbus tcp: ModBusSlave_recv() +I (353153) modbus: ModbusSlaveProcess()--------------------------- +I (353153) modbus: check id... +I (353153) modbus: ok +I (353153) modbus: add: 0, length: 10 +I (353163) modbus: Read Holding Registers +I (353243) modbus tcp: ModBusSlave_recv() +I (353243) modbus: ModbusSlaveProcess()--------------------------- +I (353243) modbus: check id... +I (353243) modbus: ok +I (353243) modbus: add: 0, length: 10 +I (353243) modbus: Read Holding Registers +I (353363) modbus tcp: ModBusSlave_recv() +I (353363) modbus: ModbusSlaveProcess()--------------------------- +I (353363) modbus: check id... +I (353363) modbus: ok +I (353363) modbus: add: 0, length: 10 +I (353363) modbus: Read Holding Registers +I (353563) modbus tcp: ModBusSlave_recv() +I (353563) modbus: ModbusSlaveProcess()--------------------------- +I (353563) modbus: check id... +I (353563) modbus: ok +I (353563) modbus: add: 0, length: 10 +I (353563) modbus: Read Holding Registers +I (353583) modbus tcp: ModBusSlave_recv() +I (353583) modbus: ModbusSlaveProcess()--------------------------- +I (353583) modbus: check id... +I (353583) modbus: ok +I (353583) modbus: add: 0, length: 10 +I (353583) modbus: Read Holding Registers +I (353773) modbus tcp: ModBusSlave_recv() +I (353773) modbus: ModbusSlaveProcess()--------------------------- +I (353773) modbus: check id... +I (353773) modbus: ok +I (353773) modbus: add: 0, length: 10 +I (353773) modbus: Read Holding Registers +I (353803) modbus tcp: ModBusSlave_recv() +I (353803) modbus: ModbusSlaveProcess()--------------------------- +I (353803) modbus: check id... +I (353803) modbus: ok +I (353803) modbus: add: 0, length: 10 +I (353803) modbus: Read Holding Registers +I (353973) modbus tcp: ModBusSlave_recv() +I (353973) modbus: ModbusSlaveProcess()--------------------------- +I (353973) modbus: check id... +I (353983) modbus: ok +I (353983) modbus: add: 0, length: 10 +I (353983) modbus: Read Holding Registers +I (354023) modbus tcp: ModBusSlave_recv() +I (354023) modbus: ModbusSlaveProcess()--------------------------- +I (354023) modbus: check id... +I (354023) modbus: ok +I (354023) modbus: add: 0, length: 10 +I (354023) modbus: Read Holding Registers +I (354183) modbus tcp: ModBusSlave_recv() +I (354183) modbus: ModbusSlaveProcess()--------------------------- +I (354183) modbus: check id... +I (354183) modbus: ok +I (354183) modbus: add: 0, length: 10 +I (354193) modbus: Read Holding Registers +I (354253) modbus tcp: ModBusSlave_recv() +I (354253) modbus: ModbusSlaveProcess()--------------------------- +I (354253) modbus: check id... +I (354253) modbus: ok +I (354253) modbus: add: 0, length: 10 +I (354253) modbus: Read Holding Registers +I (354363) modbus tcp: ModBusSlave_recv() +I (354363) modbus: ModbusSlaveProcess()--------------------------- +I (354363) modbus: check id... +I (354363) modbus: ok +I (354363) modbus: add: 0, length: 10 +I (354363) modbus: Read Holding Registers +I (354483) modbus tcp: ModBusSlave_recv() +I (354493) modbus: ModbusSlaveProcess()--------------------------- +I (354493) modbus: check id... +I (354493) modbus: ok +I (354493) modbus: add: 0, length: 10 +I (354493) modbus: Read Holding Registers +I (354593) modbus tcp: ModBusSlave_recv() +I (354593) modbus: ModbusSlaveProcess()--------------------------- +I (354593) modbus: check id... +I (354593) modbus: ok +I (354593) modbus: add: 0, length: 10 +I (354593) modbus: Read Holding Registers +I (354703) modbus tcp: ModBusSlave_recv() +I (354703) modbus: ModbusSlaveProcess()--------------------------- +I (354703) modbus: check id... +I (354703) modbus: ok +I (354703) modbus: add: 0, length: 10 +I (354703) modbus: Read Holding Registers +I (354783) modbus tcp: ModBusSlave_recv() +I (354783) modbus: ModbusSlaveProcess()--------------------------- +I (354783) modbus: check id... +I (354783) modbus: ok +I (354783) modbus: add: 0, length: 10 +I (354783) modbus: Read Holding Registers +I (354893) modbus tcp: ModBusSlave_recv() +I (354893) modbus: ModbusSlaveProcess()--------------------------- +I (354893) modbus: check id... +I (354893) modbus: ok +I (354893) modbus: add: 0, length: 10 +I (354893) modbus: Read Holding Registers +I (355103) modbus tcp: ModBusSlave_recv() +I (355103) modbus: ModbusSlaveProcess()--------------------------- +I (355103) modbus: check id... +I (355103) modbus: ok +I (355103) modbus: add: 0, length: 10 +I (355103) modbus: Read Holding Registers +I (355133) modbus tcp: ModBusSlave_recv() +I (355133) modbus: ModbusSlaveProcess()--------------------------- +I (355133) modbus: check id... +I (355133) modbus: ok +I (355133) modbus: add: 0, length: 10 +I (355133) modbus: Read Holding Registers +I (355223) modbus tcp: ModBusSlave_recv() +I (355223) modbus: ModbusSlaveProcess()--------------------------- +I (355223) modbus: check id... +I (355223) modbus: ok +I (355223) modbus: add: 0, length: 10 +I (355223) modbus: Read Holding Registers +I (355413) modbus tcp: ModBusSlave_recv() +I (355413) modbus: ModbusSlaveProcess()--------------------------- +I (355413) modbus: check id... +I (355413) modbus: ok +I (355413) modbus: add: 0, length: 10 +I (355413) modbus: Read Holding Registers +I (355443) modbus tcp: ModBusSlave_recv() +I (355443) modbus: ModbusSlaveProcess()--------------------------- +I (355443) modbus: check id... +I (355443) modbus: ok +I (355443) modbus: add: 0, length: 10 +I (355443) modbus: Read Holding Registers +I (355613) modbus tcp: ModBusSlave_recv() +I (355613) modbus: ModbusSlaveProcess()--------------------------- +I (355613) modbus: check id... +I (355613) modbus: ok +I (355613) modbus: add: 0, length: 10 +I (355613) modbus: Read Holding Registers +I (355663) modbus tcp: ModBusSlave_recv() +I (355663) modbus: ModbusSlaveProcess()--------------------------- +I (355663) modbus: check id... +I (355663) modbus: ok +I (355663) modbus: add: 0, length: 10 +I (355663) modbus: Read Holding Registers +I (355823) modbus tcp: ModBusSlave_recv() +I (355823) modbus: ModbusSlaveProcess()--------------------------- +I (355823) modbus: check id... +I (355823) modbus: ok +I (355823) modbus: add: 0, length: 10 +I (355823) modbus: Read Holding Registers +I (355883) modbus tcp: ModBusSlave_recv() +I (355883) modbus: ModbusSlaveProcess()--------------------------- +I (355893) modbus: check id... +I (355893) modbus: ok +I (355893) modbus: add: 0, length: 10 +I (355893) modbus: Read Holding Registers +I (356003) modbus tcp: ModBusSlave_recv() +I (356003) modbus: ModbusSlaveProcess()--------------------------- +I (356003) modbus: check id... +I (356003) modbus: ok +I (356003) modbus: add: 0, length: 10 +I (356003) modbus: Read Holding Registers +I (356163) modbus tcp: ModBusSlave_recv() +I (356173) modbus: ModbusSlaveProcess()--------------------------- +I (356173) modbus: check id... +I (356173) modbus: ok +I (356173) modbus: add: 0, length: 10 +I (356173) modbus: Read Holding Registers +I (356223) modbus tcp: ModBusSlave_recv() +I (356223) modbus: ModbusSlaveProcess()--------------------------- +I (356223) modbus: check id... +I (356223) modbus: ok +I (356223) modbus: add: 0, length: 10 +I (356223) modbus: Read Holding Registers +I (356433) modbus tcp: ModBusSlave_recv() +I (356433) modbus: ModbusSlaveProcess()--------------------------- +I (356433) modbus: check id... +I (356433) modbus: ok +I (356433) modbus: add: 0, length: 10 +I (356433) modbus: Read Holding Registers +I (356453) modbus tcp: ModBusSlave_recv() +I (356453) modbus: ModbusSlaveProcess()--------------------------- +I (356453) modbus: check id... +I (356463) modbus: ok +I (356463) modbus: add: 0, length: 10 +I (356463) modbus: Read Holding Registers +I (356553) modbus tcp: ModBusSlave_recv() +I (356553) modbus: ModbusSlaveProcess()--------------------------- +I (356553) modbus: check id... +I (356553) modbus: ok +I (356553) modbus: add: 0, length: 10 +I (356553) modbus: Read Holding Registers +I (356743) modbus tcp: ModBusSlave_recv() +I (356743) modbus: ModbusSlaveProcess()--------------------------- +I (356743) modbus: check id... +I (356743) modbus: ok +I (356743) modbus: add: 0, length: 10 +I (356743) modbus: Read Holding Registers +I (356793) modbus tcp: ModBusSlave_recv() +I (356793) modbus: ModbusSlaveProcess()--------------------------- +I (356793) modbus: check id... +I (356793) modbus: ok +I (356793) modbus: add: 0, length: 10 +I (356793) modbus: Read Holding Registers +I (356953) modbus tcp: ModBusSlave_recv() +I (356953) modbus: ModbusSlaveProcess()--------------------------- +I (356953) modbus: check id... +I (356953) modbus: ok +I (356953) modbus: add: 0, length: 10 +I (356953) modbus: Read Holding Registers +I (357053) modbus tcp: ModBusSlave_recv() +I (357053) modbus: ModbusSlaveProcess()--------------------------- +I (357053) modbus: check id... +I (357053) modbus: ok +I (357053) modbus: add: 0, length: 10 +I (357053) modbus: Read Holding Registers +I (357113) modbus tcp: ModBusSlave_recv() +I (357113) modbus: ModbusSlaveProcess()--------------------------- +I (357113) modbus: check id... +I (357113) modbus: ok +I (357113) modbus: add: 0, length: 10 +I (357113) modbus: Read Holding Registers +I (357253) modbus tcp: ModBusSlave_recv() +I (357253) modbus: ModbusSlaveProcess()--------------------------- +I (357253) modbus: check id... +I (357253) modbus: ok +I (357253) modbus: add: 0, length: 10 +I (357253) modbus: Read Holding Registers +I (357333) modbus tcp: ModBusSlave_recv() +I (357333) modbus: ModbusSlaveProcess()--------------------------- +I (357333) modbus: check id... +I (357343) modbus: ok +I (357343) modbus: add: 0, length: 10 +I (357343) modbus: Read Holding Registers +I (357463) modbus tcp: ModBusSlave_recv() +I (357463) modbus: ModbusSlaveProcess()--------------------------- +I (357463) modbus: check id... +I (357463) modbus: ok +I (357463) modbus: add: 0, length: 10 +I (357463) modbus: Read Holding Registers +I (357663) modbus tcp: ModBusSlave_recv() +I (357663) modbus: ModbusSlaveProcess()--------------------------- +I (357663) modbus: check id... +I (357663) modbus: ok +I (357663) modbus: add: 0, length: 10 +I (357663) modbus: Read Holding Registers +I (357683) modbus tcp: ModBusSlave_recv() +I (357683) modbus: ModbusSlaveProcess()--------------------------- +I (357683) modbus: check id... +I (357683) modbus: ok +I (357683) modbus: add: 0, length: 10 +I (357683) modbus: Read Holding Registers +I (357873) modbus tcp: ModBusSlave_recv() +I (357873) modbus: ModbusSlaveProcess()--------------------------- +I (357873) modbus: check id... +I (357873) modbus: ok +I (357873) modbus: add: 0, length: 10 +I (357873) modbus: Read Holding Registers +I (357913) modbus tcp: ModBusSlave_recv() +I (357913) modbus: ModbusSlaveProcess()--------------------------- +I (357913) modbus: check id... +I (357913) modbus: ok +I (357913) modbus: add: 0, length: 10 +I (357913) modbus: Read Holding Registers +I (358073) modbus tcp: ModBusSlave_recv() +I (358073) modbus: ModbusSlaveProcess()--------------------------- +I (358073) modbus: check id... +I (358073) modbus: ok +I (358073) modbus: add: 0, length: 10 +I (358073) modbus: Read Holding Registers +I (358113) modbus tcp: ModBusSlave_recv() +I (358113) modbus: ModbusSlaveProcess()--------------------------- +I (358113) modbus: check id... +I (358113) modbus: ok +I (358113) modbus: add: 0, length: 10 +I (358113) modbus: Read Holding Registers +I (358283) modbus tcp: ModBusSlave_recv() +I (358283) modbus: ModbusSlaveProcess()--------------------------- +I (358283) modbus: check id... +I (358283) modbus: ok +I (358283) modbus: add: 0, length: 10 +I (358283) modbus: Read Holding Registers +I (358333) modbus tcp: ModBusSlave_recv() +I (358333) modbus: ModbusSlaveProcess()--------------------------- +I (358333) modbus: check id... +I (358333) modbus: ok +I (358333) modbus: add: 0, length: 10 +I (358333) modbus: Read Holding Registers +I (358483) modbus tcp: ModBusSlave_recv() +I (358483) modbus: ModbusSlaveProcess()--------------------------- +I (358483) modbus: check id... +I (358483) modbus: ok +I (358483) modbus: add: 0, length: 10 +I (358483) modbus: Read Holding Registers +I (358583) modbus tcp: ModBusSlave_recv() +I (358583) modbus: ModbusSlaveProcess()--------------------------- +I (358583) modbus: check id... +I (358583) modbus: ok +I (358583) modbus: add: 0, length: 10 +I (358583) modbus: Read Holding Registers +I (358663) modbus tcp: ModBusSlave_recv() +I (358663) modbus: ModbusSlaveProcess()--------------------------- +I (358663) modbus: check id... +I (358663) modbus: ok +I (358663) modbus: add: 0, length: 10 +I (358663) modbus: Read Holding Registers +I (358793) modbus tcp: ModBusSlave_recv() +I (358793) modbus: ModbusSlaveProcess()--------------------------- +I (358793) modbus: check id... +I (358793) modbus: ok +I (358793) modbus: add: 0, length: 10 +I (358793) modbus: Read Holding Registers +I (358893) modbus tcp: ModBusSlave_recv() +I (358893) modbus: ModbusSlaveProcess()--------------------------- +I (358893) modbus: check id... +I (358893) modbus: ok +I (358893) modbus: add: 0, length: 10 +I (358893) modbus: Read Holding Registers +I (359093) modbus tcp: ModBusSlave_recv() +I (359093) modbus: ModbusSlaveProcess()--------------------------- +I (359093) modbus: check id... +I (359093) modbus: ok +I (359093) modbus: add: 0, length: 10 +I (359103) modbus: Read Holding Registers +I (359123) modbus tcp: ModBusSlave_recv() +I (359123) modbus: ModbusSlaveProcess()--------------------------- +I (359123) modbus: check id... +I (359123) modbus: ok +I (359123) modbus: add: 0, length: 10 +I (359123) modbus: Read Holding Registers +I (359223) modbus tcp: ModBusSlave_recv() +I (359223) modbus: ModbusSlaveProcess()--------------------------- +I (359223) modbus: check id... +I (359223) modbus: ok +I (359223) modbus: add: 0, length: 10 +I (359223) modbus: Read Holding Registers +I (359403) modbus tcp: ModBusSlave_recv() +I (359403) modbus: ModbusSlaveProcess()--------------------------- +I (359403) modbus: check id... +I (359403) modbus: ok +I (359403) modbus: add: 0, length: 10 +I (359403) modbus: Read Holding Registers +I (359453) modbus tcp: ModBusSlave_recv() +I (359453) modbus: ModbusSlaveProcess()--------------------------- +I (359453) modbus: check id... +I (359453) modbus: ok +I (359453) modbus: add: 0, length: 10 +I (359453) modbus: Read Holding Registers +I (359623) modbus tcp: ModBusSlave_recv() +I (359623) modbus: ModbusSlaveProcess()--------------------------- +I (359623) modbus: check id... +I (359623) modbus: ok +I (359623) modbus: add: 0, length: 10 +I (359623) modbus: Read Holding Registers +I (359713) modbus tcp: ModBusSlave_recv() +I (359713) modbus: ModbusSlaveProcess()--------------------------- +I (359713) modbus: check id... +I (359713) modbus: ok +I (359713) modbus: add: 0, length: 10 +I (359713) modbus: Read Holding Registers +I (359783) modbus tcp: ModBusSlave_recv() +I (359783) modbus: ModbusSlaveProcess()--------------------------- +I (359783) modbus: check id... +I (359783) modbus: ok +I (359783) modbus: add: 0, length: 10 +I (359783) modbus: Read Holding Registers +I (359913) modbus tcp: ModBusSlave_recv() +I (359913) modbus: ModbusSlaveProcess()--------------------------- +I (359913) modbus: check id... +I (359913) modbus: ok +I (359913) modbus: add: 0, length: 10 +I (359913) modbus: Read Holding Registers +I (360003) modbus tcp: ModBusSlave_recv() +I (360013) modbus: ModbusSlaveProcess()--------------------------- +I (360013) modbus: check id... +I (360013) modbus: ok +I (360013) modbus: add: 0, length: 10 +I (360013) modbus: Read Holding Registers +I (360223) modbus tcp: ModBusSlave_recv() +I (360223) modbus: ModbusSlaveProcess()--------------------------- +I (360223) modbus: check id... +I (360223) modbus: ok +I (360223) modbus: add: 0, length: 10 +I (360223) modbus: Read Holding Registers +I (360243) modbus tcp: ModBusSlave_recv() +I (360243) modbus: ModbusSlaveProcess()--------------------------- +I (360243) modbus: check id... +I (360243) modbus: ok +I (360243) modbus: add: 0, length: 10 +I (360243) modbus: Read Holding Registers +I (360373) modbus tcp: ModBusSlave_recv() +I (360373) modbus: ModbusSlaveProcess()--------------------------- +I (360373) modbus: check id... +I (360373) modbus: ok +I (360373) modbus: add: 0, length: 10 +I (360373) modbus: Read Holding Registers +I (360533) modbus tcp: ModBusSlave_recv() +I (360533) modbus: ModbusSlaveProcess()--------------------------- +I (360533) modbus: check id... +I (360533) modbus: ok +I (360533) modbus: add: 0, length: 10 +I (360533) modbus: Read Holding Registers +I (360573) modbus tcp: ModBusSlave_recv() +I (360573) modbus: ModbusSlaveProcess()--------------------------- +I (360573) modbus: check id... +I (360573) modbus: ok +I (360573) modbus: add: 0, length: 10 +I (360573) modbus: Read Holding Registers +I (360733) modbus tcp: ModBusSlave_recv() +I (360743) modbus: ModbusSlaveProcess()--------------------------- +I (360743) modbus: check id... +I (360743) modbus: ok +I (360743) modbus: add: 0, length: 10 +I (360743) modbus: Read Holding Registers +I (360843) modbus tcp: ModBusSlave_recv() +I (360843) modbus: ModbusSlaveProcess()--------------------------- +I (360843) modbus: check id... +I (360843) modbus: ok +I (360843) modbus: add: 0, length: 10 +I (360843) modbus: Read Holding Registers +I (360913) modbus tcp: ModBusSlave_recv() +I (360913) modbus: ModbusSlaveProcess()--------------------------- +I (360913) modbus: check id... +I (360913) modbus: ok +I (360913) modbus: add: 0, length: 10 +I (360913) modbus: Read Holding Registers +I (361043) modbus tcp: ModBusSlave_recv() +I (361043) modbus: ModbusSlaveProcess()--------------------------- +I (361043) modbus: check id... +I (361043) modbus: ok +I (361043) modbus: add: 0, length: 10 +I (361043) modbus: Read Holding Registers +I (361143) modbus tcp: ModBusSlave_recv() +I (361143) modbus: ModbusSlaveProcess()--------------------------- +I (361143) modbus: check id... +I (361143) modbus: ok +I (361143) modbus: add: 0, length: 10 +I (361143) modbus: Read Holding Registers +I (361253) modbus tcp: ModBusSlave_recv() +I (361253) modbus: ModbusSlaveProcess()--------------------------- +I (361253) modbus: check id... +I (361253) modbus: ok +I (361253) modbus: add: 0, length: 10 +I (361253) modbus: Read Holding Registers +I (361333) modbus tcp: ModBusSlave_recv() +I (361333) modbus: ModbusSlaveProcess()--------------------------- +I (361333) modbus: check id... +I (361333) modbus: ok +I (361333) modbus: add: 0, length: 10 +I (361333) modbus: Read Holding Registers +I (361453) modbus tcp: ModBusSlave_recv() +I (361453) modbus: ModbusSlaveProcess()--------------------------- +I (361453) modbus: check id... +I (361453) modbus: ok +I (361453) modbus: add: 0, length: 10 +I (361453) modbus: Read Holding Registers +I (361553) modbus tcp: ModBusSlave_recv() +I (361553) modbus: ModbusSlaveProcess()--------------------------- +I (361553) modbus: check id... +I (361553) modbus: ok +I (361553) modbus: add: 0, length: 10 +I (361553) modbus: Read Holding Registers +I (361663) modbus tcp: ModBusSlave_recv() +I (361663) modbus: ModbusSlaveProcess()--------------------------- +I (361663) modbus: check id... +I (361663) modbus: ok +I (361663) modbus: add: 0, length: 10 +I (361663) modbus: Read Holding Registers +I (361773) modbus tcp: ModBusSlave_recv() +I (361773) modbus: ModbusSlaveProcess()--------------------------- +I (361773) modbus: check id... +I (361773) modbus: ok +I (361773) modbus: add: 0, length: 10 +I (361773) modbus: Read Holding Registers +I (361963) modbus tcp: ModBusSlave_recv() +I (361963) modbus: ModbusSlaveProcess()--------------------------- +I (361963) modbus: check id... +I (361963) modbus: ok +I (361963) modbus: add: 0, length: 10 +I (361963) modbus: Read Holding Registers +I (361993) modbus tcp: ModBusSlave_recv() +I (361993) modbus: ModbusSlaveProcess()--------------------------- +I (361993) modbus: check id... +I (361993) modbus: ok +I (361993) modbus: add: 0, length: 10 +I (361993) modbus: Read Holding Registers +I (362173) modbus tcp: ModBusSlave_recv() +I (362173) modbus: ModbusSlaveProcess()--------------------------- +I (362173) modbus: check id... +I (362173) modbus: ok +I (362173) modbus: add: 0, length: 10 +I (362173) modbus: Read Holding Registers +I (362213) modbus tcp: ModBusSlave_recv() +I (362213) modbus: ModbusSlaveProcess()--------------------------- +I (362213) modbus: check id... +I (362213) modbus: ok +I (362213) modbus: add: 0, length: 10 +I (362213) modbus: Read Holding Registers +I (362373) modbus tcp: ModBusSlave_recv() +I (362373) modbus: ModbusSlaveProcess()--------------------------- +I (362373) modbus: check id... +I (362373) modbus: ok +I (362373) modbus: add: 0, length: 10 +I (362373) modbus: Read Holding Registers +I (362433) modbus tcp: ModBusSlave_recv() +I (362433) modbus: ModbusSlaveProcess()--------------------------- +I (362433) modbus: check id... +I (362433) modbus: ok +I (362433) modbus: add: 0, length: 10 +I (362433) modbus: Read Holding Registers +I (362583) modbus tcp: ModBusSlave_recv() +I (362583) modbus: ModbusSlaveProcess()--------------------------- +I (362583) modbus: check id... +I (362583) modbus: ok +I (362583) modbus: add: 0, length: 10 +I (362583) modbus: Read Holding Registers +I (362683) modbus tcp: ModBusSlave_recv() +I (362683) modbus: ModbusSlaveProcess()--------------------------- +I (362683) modbus: check id... +I (362683) modbus: ok +I (362683) modbus: add: 0, length: 10 +I (362683) modbus: Read Holding Registers +I (362793) modbus tcp: ModBusSlave_recv() +I (362793) modbus: ModbusSlaveProcess()--------------------------- +I (362793) modbus: check id... +I (362793) modbus: ok +I (362793) modbus: add: 0, length: 10 +I (362793) modbus: Read Holding Registers +I (362883) modbus tcp: ModBusSlave_recv() +I (362883) modbus: ModbusSlaveProcess()--------------------------- +I (362883) modbus: check id... +I (362883) modbus: ok +I (362883) modbus: add: 0, length: 10 +I (362883) modbus: Read Holding Registers +I (362973) modbus tcp: ModBusSlave_recv() +I (362973) modbus: ModbusSlaveProcess()--------------------------- +I (362983) modbus: check id... +I (362983) modbus: ok +I (362983) modbus: add: 0, length: 10 +I (362983) modbus: Read Holding Registers +I (363193) modbus tcp: ModBusSlave_recv() +I (363193) modbus: ModbusSlaveProcess()--------------------------- +I (363193) modbus: check id... +I (363193) modbus: ok +I (363193) modbus: add: 0, length: 10 +I (363193) modbus: Read Holding Registers +I (363213) modbus tcp: ModBusSlave_recv() +I (363213) modbus: ModbusSlaveProcess()--------------------------- +I (363213) modbus: check id... +I (363213) modbus: ok +I (363213) modbus: add: 0, length: 10 +I (363213) modbus: Read Holding Registers +I (363323) modbus tcp: ModBusSlave_recv() +I (363323) modbus: ModbusSlaveProcess()--------------------------- +I (363323) modbus: check id... +I (363323) modbus: ok +I (363323) modbus: add: 0, length: 10 +I (363323) modbus: Read Holding Registers +I (363503) modbus tcp: ModBusSlave_recv() +I (363503) modbus: ModbusSlaveProcess()--------------------------- +I (363503) modbus: check id... +I (363503) modbus: ok +I (363503) modbus: add: 0, length: 10 +I (363503) modbus: Read Holding Registers +I (363543) modbus tcp: ModBusSlave_recv() +I (363543) modbus: ModbusSlaveProcess()--------------------------- +I (363543) modbus: check id... +I (363543) modbus: ok +I (363543) modbus: add: 0, length: 10 +I (363543) modbus: Read Holding Registers +I (363703) modbus tcp: ModBusSlave_recv() +I (363703) modbus: ModbusSlaveProcess()--------------------------- +I (363703) modbus: check id... +I (363703) modbus: ok +I (363703) modbus: add: 0, length: 10 +I (363703) modbus: Read Holding Registers +I (363773) modbus tcp: ModBusSlave_recv() +I (363773) modbus: ModbusSlaveProcess()--------------------------- +I (363773) modbus: check id... +I (363773) modbus: ok +I (363773) modbus: add: 0, length: 10 +I (363773) modbus: Read Holding Registers +I (363863) modbus tcp: ModBusSlave_recv() +I (363863) modbus: ModbusSlaveProcess()--------------------------- +I (363863) modbus: check id... +I (363863) modbus: ok +I (363863) modbus: add: 0, length: 10 +I (363863) modbus: Read Holding Registers +I (364013) modbus tcp: ModBusSlave_recv() +I (364013) modbus: ModbusSlaveProcess()--------------------------- +I (364013) modbus: check id... +I (364013) modbus: ok +I (364013) modbus: add: 0, length: 10 +I (364013) modbus: Read Holding Registers +I (364113) modbus tcp: ModBusSlave_recv() +I (364113) modbus: ModbusSlaveProcess()--------------------------- +I (364113) modbus: check id... +I (364113) modbus: ok +I (364113) modbus: add: 0, length: 10 +I (364113) modbus: Read Holding Registers +I (364193) modbus tcp: ModBusSlave_recv() +I (364193) modbus: ModbusSlaveProcess()--------------------------- +I (364193) modbus: check id... +I (364193) modbus: ok +I (364193) modbus: add: 0, length: 10 +I (364193) modbus: Read Holding Registers +I (364323) modbus tcp: ModBusSlave_recv() +I (364323) modbus: ModbusSlaveProcess()--------------------------- +I (364323) modbus: check id... +I (364323) modbus: ok +I (364323) modbus: add: 0, length: 10 +I (364323) modbus: Read Holding Registers +I (364523) modbus tcp: ModBusSlave_recv() +I (364523) modbus: ModbusSlaveProcess()--------------------------- +I (364523) modbus: check id... +I (364523) modbus: ok +I (364523) modbus: add: 0, length: 10 +I (364523) modbus: Read Holding Registers +I (364543) modbus tcp: ModBusSlave_recv() +I (364543) modbus: ModbusSlaveProcess()--------------------------- +I (364543) modbus: check id... +I (364543) modbus: ok +I (364543) modbus: add: 0, length: 10 +I (364543) modbus: Read Holding Registers +I (364733) modbus tcp: ModBusSlave_recv() +I (364733) modbus: ModbusSlaveProcess()--------------------------- +I (364733) modbus: check id... +I (364733) modbus: ok +I (364733) modbus: add: 0, length: 10 +I (364733) modbus: Read Holding Registers +I (364763) modbus tcp: ModBusSlave_recv() +I (364763) modbus: ModbusSlaveProcess()--------------------------- +I (364763) modbus: check id... +I (364763) modbus: ok +I (364763) modbus: add: 0, length: 10 +I (364763) modbus: Read Holding Registers +I (364873) modbus tcp: ModBusSlave_recv() +I (364873) modbus: ModbusSlaveProcess()--------------------------- +I (364873) modbus: check id... +I (364873) modbus: ok +I (364873) modbus: add: 0, length: 10 +I (364873) modbus: Read Holding Registers +I (365043) modbus tcp: ModBusSlave_recv() +I (365043) modbus: ModbusSlaveProcess()--------------------------- +I (365043) modbus: check id... +I (365043) modbus: ok +I (365043) modbus: add: 0, length: 10 +I (365043) modbus: Read Holding Registers +I (365083) modbus tcp: ModBusSlave_recv() +I (365083) modbus: ModbusSlaveProcess()--------------------------- +I (365083) modbus: check id... +I (365083) modbus: ok +I (365083) modbus: add: 0, length: 10 +I (365083) modbus: Read Holding Registers +I (365243) modbus tcp: ModBusSlave_recv() +I (365243) modbus: ModbusSlaveProcess()--------------------------- +I (365243) modbus: check id... +I (365243) modbus: ok +I (365243) modbus: add: 0, length: 10 +I (365243) modbus: Read Holding Registers +I (365343) modbus tcp: ModBusSlave_recv() +I (365343) modbus: ModbusSlaveProcess()--------------------------- +I (365343) modbus: check id... +I (365343) modbus: ok +I (365343) modbus: add: 0, length: 10 +I (365343) modbus: Read Holding Registers +I (365443) modbus tcp: ModBusSlave_recv() +I (365443) modbus: ModbusSlaveProcess()--------------------------- +I (365443) modbus: check id... +I (365443) modbus: ok +I (365443) modbus: add: 0, length: 10 +I (365443) modbus: Read Holding Registers +I (365523) modbus tcp: ModBusSlave_recv() +I (365533) modbus: ModbusSlaveProcess()--------------------------- +I (365533) modbus: check id... +I (365533) modbus: ok +I (365533) modbus: add: 0, length: 10 +I (365533) modbus: Read Holding Registers +I (365653) modbus tcp: ModBusSlave_recv() +I (365653) modbus: ModbusSlaveProcess()--------------------------- +I (365653) modbus: check id... +I (365653) modbus: ok +I (365653) modbus: add: 0, length: 10 +I (365653) modbus: Read Holding Registers +I (365853) modbus tcp: ModBusSlave_recv() +I (365853) modbus: ModbusSlaveProcess()--------------------------- +I (365853) modbus: check id... +I (365853) modbus: ok +I (365853) modbus: add: 0, length: 10 +I (365853) modbus: Read Holding Registers +I (365873) modbus tcp: ModBusSlave_recv() +I (365873) modbus: ModbusSlaveProcess()--------------------------- +I (365873) modbus: check id... +I (365873) modbus: ok +I (365873) modbus: add: 0, length: 10 +I (365873) modbus: Read Holding Registers +I (365983) modbus tcp: ModBusSlave_recv() +I (365983) modbus: ModbusSlaveProcess()--------------------------- +I (365983) modbus: check id... +I (365983) modbus: ok +I (365983) modbus: add: 0, length: 10 +I (365983) modbus: Read Holding Registers +I (366163) modbus tcp: ModBusSlave_recv() +I (366163) modbus: ModbusSlaveProcess()--------------------------- +I (366163) modbus: check id... +I (366163) modbus: ok +I (366163) modbus: add: 0, length: 10 +I (366163) modbus: Read Holding Registers +I (366203) modbus tcp: ModBusSlave_recv() +I (366203) modbus: ModbusSlaveProcess()--------------------------- +I (366203) modbus: check id... +I (366203) modbus: ok +I (366203) modbus: add: 0, length: 10 +I (366203) modbus: Read Holding Registers +I (366393) modbus tcp: ModBusSlave_recv() +I (366393) modbus: ModbusSlaveProcess()--------------------------- +I (366403) modbus: check id... +I (366403) modbus: ok +I (366403) modbus: add: 0, length: 10 +I (366403) modbus: Read Holding Registers +I (366423) modbus tcp: ModBusSlave_recv() +I (366423) modbus: ModbusSlaveProcess()--------------------------- +I (366423) modbus: check id... +I (366423) modbus: ok +I (366423) modbus: add: 0, length: 10 +I (366423) modbus: Read Holding Registers +I (366573) modbus tcp: ModBusSlave_recv() +I (366573) modbus: ModbusSlaveProcess()--------------------------- +I (366573) modbus: check id... +I (366573) modbus: ok +I (366573) modbus: add: 0, length: 10 +I (366573) modbus: Read Holding Registers +I (366673) modbus tcp: ModBusSlave_recv() +I (366673) modbus: ModbusSlaveProcess()--------------------------- +I (366673) modbus: check id... +I (366673) modbus: ok +I (366673) modbus: add: 0, length: 10 +I (366673) modbus: Read Holding Registers +I (366753) modbus tcp: ModBusSlave_recv() +I (366753) modbus: ModbusSlaveProcess()--------------------------- +I (366753) modbus: check id... +I (366753) modbus: ok +I (366753) modbus: add: 0, length: 10 +I (366753) modbus: Read Holding Registers +I (366873) modbus tcp: ModBusSlave_recv() +I (366883) modbus: ModbusSlaveProcess()--------------------------- +I (366883) modbus: check id... +I (366883) modbus: ok +I (366883) modbus: add: 0, length: 10 +I (366883) modbus: Read Holding Registers +I (367083) modbus tcp: ModBusSlave_recv() +I (367083) modbus: ModbusSlaveProcess()--------------------------- +I (367083) modbus: check id... +I (367083) modbus: ok +I (367083) modbus: add: 0, length: 10 +I (367083) modbus: Read Holding Registers +I (367113) modbus tcp: ModBusSlave_recv() +I (367113) modbus: ModbusSlaveProcess()--------------------------- +I (367113) modbus: check id... +I (367123) modbus: ok +I (367123) modbus: add: 0, length: 10 +I (367123) modbus: Read Holding Registers +I (367213) modbus tcp: ModBusSlave_recv() +I (367213) modbus: ModbusSlaveProcess()--------------------------- +I (367213) modbus: check id... +I (367213) modbus: ok +I (367213) modbus: add: 0, length: 10 +I (367213) modbus: Read Holding Registers +I (367393) modbus tcp: ModBusSlave_recv() +I (367393) modbus: ModbusSlaveProcess()--------------------------- +I (367393) modbus: check id... +I (367393) modbus: ok +I (367393) modbus: add: 0, length: 10 +I (367393) modbus: Read Holding Registers +I (367433) modbus tcp: ModBusSlave_recv() +I (367433) modbus: ModbusSlaveProcess()--------------------------- +I (367433) modbus: check id... +I (367433) modbus: ok +I (367433) modbus: add: 0, length: 10 +I (367433) modbus: Read Holding Registers +I (367593) modbus tcp: ModBusSlave_recv() +I (367593) modbus: ModbusSlaveProcess()--------------------------- +I (367593) modbus: check id... +I (367593) modbus: ok +I (367593) modbus: add: 0, length: 10 +I (367593) modbus: Read Holding Registers +I (367693) modbus tcp: ModBusSlave_recv() +I (367703) modbus: ModbusSlaveProcess()--------------------------- +I (367703) modbus: check id... +I (367703) modbus: ok +I (367703) modbus: add: 0, length: 10 +I (367703) modbus: Read Holding Registers +I (367763) modbus tcp: ModBusSlave_recv() +I (367763) modbus: ModbusSlaveProcess()--------------------------- +I (367763) modbus: check id... +I (367763) modbus: ok +I (367763) modbus: add: 0, length: 10 +I (367763) modbus: Read Holding Registers +I (367903) modbus tcp: ModBusSlave_recv() +I (367903) modbus: ModbusSlaveProcess()--------------------------- +I (367903) modbus: check id... +I (367903) modbus: ok +I (367903) modbus: add: 0, length: 10 +I (367903) modbus: Read Holding Registers +I (367973) modbus tcp: ModBusSlave_recv() +I (367973) modbus: ModbusSlaveProcess()--------------------------- +I (367973) modbus: check id... +I (367973) modbus: ok +I (367973) modbus: add: 0, length: 10 +I (367973) modbus: Read Holding Registers +I (368083) modbus tcp: ModBusSlave_recv() +I (368083) modbus: ModbusSlaveProcess()--------------------------- +I (368083) modbus: check id... +I (368083) modbus: ok +I (368083) modbus: add: 0, length: 10 +I (368083) modbus: Read Holding Registers +I (368213) modbus tcp: ModBusSlave_recv() +I (368213) modbus: ModbusSlaveProcess()--------------------------- +I (368213) modbus: check id... +I (368213) modbus: ok +I (368213) modbus: add: 0, length: 10 +I (368213) modbus: Read Holding Registers +I (368313) modbus tcp: ModBusSlave_recv() +I (368313) modbus: ModbusSlaveProcess()--------------------------- +I (368313) modbus: check id... +I (368313) modbus: ok +I (368313) modbus: add: 0, length: 10 +I (368313) modbus: Read Holding Registers +I (368513) modbus tcp: ModBusSlave_recv() +I (368513) modbus: ModbusSlaveProcess()--------------------------- +I (368513) modbus: check id... +I (368513) modbus: ok +I (368513) modbus: add: 0, length: 10 +I (368513) modbus: Read Holding Registers +I (368543) modbus tcp: ModBusSlave_recv() +I (368543) modbus: ModbusSlaveProcess()--------------------------- +I (368543) modbus: check id... +I (368543) modbus: ok +I (368543) modbus: add: 0, length: 10 +I (368543) modbus: Read Holding Registers +I (368723) modbus tcp: ModBusSlave_recv() +I (368723) modbus: ModbusSlaveProcess()--------------------------- +I (368723) modbus: check id... +I (368723) modbus: ok +I (368723) modbus: add: 0, length: 10 +I (368723) modbus: Read Holding Registers +I (368763) modbus tcp: ModBusSlave_recv() +I (368763) modbus: ModbusSlaveProcess()--------------------------- +I (368763) modbus: check id... +I (368763) modbus: ok +I (368763) modbus: add: 0, length: 10 +I (368763) modbus: Read Holding Registers +I (368923) modbus tcp: ModBusSlave_recv() +I (368923) modbus: ModbusSlaveProcess()--------------------------- +I (368923) modbus: check id... +I (368923) modbus: ok +I (368923) modbus: add: 0, length: 10 +I (368923) modbus: Read Holding Registers +I (369033) modbus tcp: ModBusSlave_recv() +I (369033) modbus: ModbusSlaveProcess()--------------------------- +I (369033) modbus: check id... +I (369033) modbus: ok +I (369033) modbus: add: 0, length: 10 +I (369033) modbus: Read Holding Registers +I (369133) modbus tcp: ModBusSlave_recv() +I (369133) modbus: ModbusSlaveProcess()--------------------------- +I (369133) modbus: check id... +I (369133) modbus: ok +I (369133) modbus: add: 0, length: 10 +I (369133) modbus: Read Holding Registers +I (369213) modbus tcp: ModBusSlave_recv() +I (369213) modbus: ModbusSlaveProcess()--------------------------- +I (369213) modbus: check id... +I (369213) modbus: ok +I (369213) modbus: add: 0, length: 10 +I (369213) modbus: Read Holding Registers +I (369333) modbus tcp: ModBusSlave_recv() +I (369333) modbus: ModbusSlaveProcess()--------------------------- +I (369333) modbus: check id... +I (369333) modbus: ok +I (369333) modbus: add: 0, length: 10 +I (369333) modbus: Read Holding Registers +I (369443) modbus tcp: ModBusSlave_recv() +I (369443) modbus: ModbusSlaveProcess()--------------------------- +I (369443) modbus: check id... +I (369443) modbus: ok +I (369443) modbus: add: 0, length: 10 +I (369453) modbus: Read Holding Registers +I (369543) modbus tcp: ModBusSlave_recv() +I (369543) modbus: ModbusSlaveProcess()--------------------------- +I (369543) modbus: check id... +I (369543) modbus: ok +I (369543) modbus: add: 0, length: 10 +I (369543) modbus: Read Holding Registers +I (369643) modbus tcp: ModBusSlave_recv() +I (369643) modbus: ModbusSlaveProcess()--------------------------- +I (369643) modbus: check id... +I (369643) modbus: ok +I (369643) modbus: add: 0, length: 10 +I (369643) modbus: Read Holding Registers +I (369763) modbus tcp: ModBusSlave_recv() +I (369763) modbus: ModbusSlaveProcess()--------------------------- +I (369763) modbus: check id... +I (369763) modbus: ok +I (369763) modbus: add: 0, length: 10 +I (369763) modbus: Read Holding Registers +I (369863) modbus tcp: ModBusSlave_recv() +I (369863) modbus: ModbusSlaveProcess()--------------------------- +I (369863) modbus: check id... +I (369863) modbus: ok +I (369863) modbus: add: 0, length: 10 +I (369863) modbus: Read Holding Registers +I (370053) modbus tcp: ModBusSlave_recv() +I (370053) modbus: ModbusSlaveProcess()--------------------------- +I (370053) modbus: check id... +I (370053) modbus: ok +I (370053) modbus: add: 0, length: 10 +I (370053) modbus: Read Holding Registers +I (370083) modbus tcp: ModBusSlave_recv() +I (370093) modbus: ModbusSlaveProcess()--------------------------- +I (370093) modbus: check id... +I (370093) modbus: ok +I (370093) modbus: add: 0, length: 10 +I (370093) modbus: Read Holding Registers +I (370253) modbus tcp: ModBusSlave_recv() +I (370253) modbus: ModbusSlaveProcess()--------------------------- +I (370253) modbus: check id... +I (370253) modbus: ok +I (370253) modbus: add: 0, length: 10 +I (370253) modbus: Read Holding Registers +I (370303) modbus tcp: ModBusSlave_recv() +I (370303) modbus: ModbusSlaveProcess()--------------------------- +I (370303) modbus: check id... +I (370303) modbus: ok +I (370303) modbus: add: 0, length: 10 +I (370313) modbus: Read Holding Registers +I (370463) modbus tcp: ModBusSlave_recv() +I (370463) modbus: ModbusSlaveProcess()--------------------------- +I (370463) modbus: check id... +I (370463) modbus: ok +I (370463) modbus: add: 0, length: 10 +I (370463) modbus: Read Holding Registers +I (370533) modbus tcp: ModBusSlave_recv() +I (370533) modbus: ModbusSlaveProcess()--------------------------- +I (370533) modbus: check id... +I (370533) modbus: ok +I (370533) modbus: add: 0, length: 10 +I (370533) modbus: Read Holding Registers +I (370633) modbus tcp: ModBusSlave_recv() +I (370633) modbus: ModbusSlaveProcess()--------------------------- +I (370643) modbus: check id... +I (370643) modbus: ok +I (370643) modbus: add: 0, length: 10 +I (370643) modbus: Read Holding Registers diff --git a/build/log/idf_py_stdout_output_14624 b/build/log/idf_py_stdout_output_14624 new file mode 100644 index 0000000..95c5168 --- /dev/null +++ b/build/log/idf_py_stdout_output_14624 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a7c +waiting for download diff --git a/build/log/idf_py_stdout_output_14660 b/build/log/idf_py_stdout_output_14660 new file mode 100644 index 0000000..d0a5b0d --- /dev/null +++ b/build/log/idf_py_stdout_output_14660 @@ -0,0 +1,21 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2bb0 bytes. Smallest app partition is 0x100000 bytes. 0x4d450 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_14664 b/build/log/idf_py_stdout_output_14664 new file mode 100644 index 0000000..b939d4a --- /dev/null +++ b/build/log/idf_py_stdout_output_14664 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a76 +waiting for download diff --git a/build/log/idf_py_stdout_output_14896 b/build/log/idf_py_stdout_output_14896 new file mode 100644 index 0000000..3db9b7c --- /dev/null +++ b/build/log/idf_py_stdout_output_14896 @@ -0,0 +1,28 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x22 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a79 +waiting for download +I (367) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +W (367) phy_init: failed to load RF calibration data (0xffffffff), falling back to full calibration +I (417) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (417) wifi:enable tsf +I (417) wifi station: wifi_init_sta finished. +I (427) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (1477) wifi:state: init -> auth (b0) +I (1487) wifi:state: auth -> assoc (0) +I (1487) wifi:state: assoc -> run (10) +I (1517) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (1517) wifi:security: WPA2-PSK, phy: bgn, rssi: -49 +I (1537) wifi:pm start, type: 1 + +I (1537) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (1537) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (1537) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1557) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1977) wifi:idx +I (1977) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (2537) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (2537) wifi station: got ip:192.168.1.156 +I (2537) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (2537) main_task: Returned from app_main() diff --git a/build/log/idf_py_stdout_output_14996 b/build/log/idf_py_stdout_output_14996 new file mode 100644 index 0000000..95c5168 --- /dev/null +++ b/build/log/idf_py_stdout_output_14996 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a7c +waiting for download diff --git a/build/log/idf_py_stdout_output_15008 b/build/log/idf_py_stdout_output_15008 new file mode 100644 index 0000000..f2e45b4 --- /dev/null +++ b/build/log/idf_py_stdout_output_15008 @@ -0,0 +1,105 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0xa (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037b97a +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=1ec40h (126016) map +I (119) esp_image: segment 1: paddr=0002ec68 vaddr=3fc96900 size=013b0h ( 5040) load +I (121) esp_image: segment 2: paddr=00030020 vaddr=42000020 size=758f8h (481528) map +I (211) esp_image: segment 3: paddr=000a5920 vaddr=3fc97cb0 size=02a20h ( 10784) load +I (214) esp_image: segment 4: paddr=000a8348 vaddr=40374000 size=12840h ( 75840) load +I (241) boot: Loaded app from partition at offset 0x10000 +I (242) boot: Disabling RNG early entropy source... +I (242) cpu_start: Multicore app +I (246) cpu_start: Pro cpu up. +I (249) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (265) cpu_start: Pro cpu start user code +I (265) cpu_start: cpu freq: 160000000 Hz +I (266) cpu_start: Application information: +I (266) cpu_start: Project name: wifi_station +I (266) cpu_start: App version: v5.0.4-dirty +I (266) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (266) cpu_start: ELF file SHA256: 072b417740c9ec0c... +I (267) cpu_start: ESP-IDF: v5.0.4-dirty +I (267) cpu_start: Min chip rev: v0.0 +I (267) cpu_start: Max chip rev: v0.99  +I (267) cpu_start: Chip rev: v0.1 +I (267) heap_init: Initializing. RAM available for dynamic allocation: +I (268) heap_init: At 3FCA4180 len 00045590 (277 KiB): DRAM +I (268) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (268) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (269) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (270) spi_flash: detected chip: gd +I (270) spi_flash: flash io: dio +W (271) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (272) app_start: Starting scheduler on CPU0 +I (272) app_start: Starting scheduler on CPU1 +I (272) main_task: Started on CPU0 +I (282) main_task: Calling app_main() +I (302) wifi station: ESP_WIFI_MODE_STA +I (302) pp: pp rom version: e7ae62f +I (302) net80211: net80211 rom version: e7ae62f +I (312) wifi:wifi driver task: 3fcae1b8, prio:23, stack:6656, core=0 +I (312) system_api: Base MAC address is not set +I (312) system_api: read default base MAC address from EFUSE +I (322) wifi:wifi firmware version: e2d0ad8 +I (322) wifi:wifi certification version: v7.0 +I (322) wifi:config NVS flash: enabled +I (322) wifi:config nano formating: disabled +I (322) wifi:Init data frame dynamic rx buffer num: 32 +I (322) wifi:Init management frame dynamic rx buffer num: 32 +I (322) wifi:Init management short buffer num: 32 +I (322) wifi:Init dynamic tx buffer num: 32 +I (322) wifi:Init static tx FG buffer num: 2 +I (322) wifi:Init static rx buffer size: 1600 +I (322) wifi:Init static rx buffer num: 10 +I (322) wifi:Init dynamic rx buffer num: 32 +I (322) wifi_init: rx ba win: 6 +I (322) wifi_init: tcpip mbox: 32 +I (322) wifi_init: udp mbox: 6 +I (322) wifi_init: tcp mbox: 6 +I (322) wifi_init: tcp tx win: 5744 +I (322) wifi_init: tcp rx win: 5744 +I (322) wifi_init: tcp mss: 1440 +I (322) wifi_init: WiFi IRAM OP enabled +I (322) wifi_init: WiFi RX IRAM OP enabled +I (352) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (382) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (392) wifi:enable tsf +I (392) wifi station: wifi_init_sta finished. +I (392) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (402) wifi:state: init -> auth (b0) +I (402) wifi:state: auth -> assoc (0) +I (402) wifi:state: assoc -> run (10) +I (432) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (432) wifi:security: WPA2-PSK, phy: bgn, rssi: -52 +I (442) wifi:pm start, type: 1 + +I (442) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (442) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (442) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (452) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1442) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1442) wifi station: got ip:192.168.1.156 +I (1442) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1442) main_task: Returned from app_main() diff --git a/build/log/idf_py_stdout_output_15076 b/build/log/idf_py_stdout_output_15076 new file mode 100644 index 0000000..fb44963 --- /dev/null +++ b/build/log/idf_py_stdout_output_15076 @@ -0,0 +1,65 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xaabb0 bytes. Smallest app partition is 0x100000 bytes. 0x55450 bytes (33%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000bafff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 437.5 kbit/s)... +Hash of data verified. +Compressed 699312 bytes to 446349... +Writing at 0x00010000... (3 %) +Writing at 0x0001c4b8... (7 %) +Writing at 0x0002483a... (10 %) +Writing at 0x00029d79... (14 %) +Writing at 0x000328fe... (17 %) +Writing at 0x000387fc... (21 %) +Writing at 0x0003e14d... (25 %) +Writing at 0x0004378c... (28 %) +Writing at 0x00048fb8... (32 %) +Writing at 0x0004e7d8... (35 %) +Writing at 0x000543ce... (39 %) +Writing at 0x0005a001... (42 %) +Writing at 0x0005eef7... (46 %) +Writing at 0x0006403a... (50 %) +Writing at 0x0006901b... (53 %) +Writing at 0x0006e3ae... (57 %) +Writing at 0x000737ec... (60 %) +Writing at 0x0007920c... (64 %) +Writing at 0x0007e9c8... (67 %) +Writing at 0x00084378... (71 %) +Writing at 0x0008a41b... (75 %) +Writing at 0x0008fc7d... (78 %) +Writing at 0x0009576b... (82 %) +Writing at 0x0009f2f1... (85 %) +Writing at 0x000a76cf... (89 %) +Writing at 0x000ada16... (92 %) +Writing at 0x000b3775... (96 %) +Writing at 0x000b9002... (100 %) +Wrote 699312 bytes (446349 compressed) at 0x00010000 in 7.4 seconds (effective 753.9 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 456.3 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_15104 b/build/log/idf_py_stdout_output_15104 new file mode 100644 index 0000000..3a3f76f --- /dev/null +++ b/build/log/idf_py_stdout_output_15104 @@ -0,0 +1,33 @@ +[0/1] Re-running CMake... +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +-- Project sdkconfig file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig +-- App "wifi_station" version: v5.0.4-dirty +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_common esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_netif esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_system esp_timer esp_wifi espcoredump esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lwip main mbedtls mqtt newlib nvs_flash openthread partition_table perfmon protobuf-c protocomm pthread sdmmc soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock E:/Espressif/frameworks/esp-idf-v5.0.4/components/console E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/json E:/Espressif/frameworks/esp-idf-v5.0.4/components/log E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a30 bytes. Smallest app partition is 0x100000 bytes. 0x4d5d0 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_15128 b/build/log/idf_py_stdout_output_15128 new file mode 100644 index 0000000..a6f5c57 --- /dev/null +++ b/build/log/idf_py_stdout_output_15128 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a30 bytes. Smallest app partition is 0x100000 bytes. 0x4d5d0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 + +A fatal error occurred: Could not open COM5, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_15308 b/build/log/idf_py_stdout_output_15308 new file mode 100644 index 0000000..0da1007 --- /dev/null +++ b/build/log/idf_py_stdout_output_15308 @@ -0,0 +1,11 @@ +[1/6] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/4] Linking CXX executable wifi_station.elf +FAILED: wifi_station.elf +cmd.exe /C "cd . && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe -mlongcalls @CMakeFiles\wifi_station.elf.rsp -o wifi_station.elf && cd ." +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ld.exe: esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj):(.literal.bdc_control_main+0x94): undefined reference to `bdc_motor_new_mcpwm_device' +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ld.exe: esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj): in function `bdc_control_main': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:144: undefined reference to `bdc_motor_new_mcpwm_device' +collect2.exe: error: ld returned 1 exit status +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_15816 b/build/log/idf_py_stdout_output_15816 new file mode 100644 index 0000000..95c5168 --- /dev/null +++ b/build/log/idf_py_stdout_output_15816 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a7c +waiting for download diff --git a/build/log/idf_py_stdout_output_15876 b/build/log/idf_py_stdout_output_15876 new file mode 100644 index 0000000..f6e8da7 --- /dev/null +++ b/build/log/idf_py_stdout_output_15876 @@ -0,0 +1,414 @@ +[0/1] Re-running CMake... +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +-- Project sdkconfig file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig +-- App "wifi_station" version: v5.0.4-dirty +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_common esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_netif esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_system esp_timer esp_wifi espcoredump esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lwip main mbedtls mqtt newlib nvs_flash openthread partition_table perfmon protobuf-c protocomm pthread sdmmc soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock E:/Espressif/frameworks/esp-idf-v5.0.4/components/console E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/json E:/Espressif/frameworks/esp-idf-v5.0.4/components/log E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build +[1/907] Generating project_elf_src_esp32s3.c +[2/907] Generating memory.ld linker script... +[3/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj +[4/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj +[5/907] Generating ../../partition_table/partition-table.bin +Partition table binary generated. Contents: +******************************************************************************* +# ESP-IDF Partition Table +# Name, Type, SubType, Offset, Size, Flags +nvs,data,nvs,0x9000,24K, +phy_init,data,phy,0xf000,4K, +factory,app,factory,0x10000,1M, +******************************************************************************* +[6/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj +[7/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj +[8/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj +[9/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj +[10/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj +[11/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj +[12/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj +[13/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj +[14/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj +[15/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj +[16/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj +[17/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj +[18/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj +[19/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj +[20/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj +[21/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj +[22/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj +[23/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj +[24/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj +[25/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj +[26/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj +[27/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj +[28/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj +[29/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj +[30/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj +[31/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj +[32/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj +[33/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj +[34/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj +[35/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj +[36/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj +[37/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hash_info.c.obj +[38/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj +[39/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj +[40/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj +[41/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj +[42/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj +[43/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj +[44/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj +[45/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj +[46/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj +[47/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj +[48/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj +[49/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj +[50/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj +[51/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj +[52/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj +[53/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj +[54/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj +[55/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj +[56/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj +[57/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj +[58/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj +[59/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers.c.obj +[60/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj +[61/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj +[62/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj +[63/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj +[64/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj +[65/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj +[66/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj +[67/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj +[68/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj +[69/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj +[70/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj +[71/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj +[72/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj +[73/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj +[74/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj +[75/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj +[76/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj +[77/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj +[78/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj +[79/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha_gdma_impl.c.obj +[80/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj +[81/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_timing.c.obj +[82/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj +[83/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_mem.c.obj +[84/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj +[85/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/esp_sha.c.obj +[86/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_hardware.c.obj +[87/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj +[88/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_xts.c.obj +[89/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_common.c.obj +[90/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha256.c.obj +[91/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha512.c.obj +[92/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj +[93/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_bignum.c.obj +[94/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj +[95/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/dma/esp_aes.c.obj +[96/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/sha.c.obj +[97/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/sha/dma/esp_sha1.c.obj +[98/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/aes/esp_aes_gcm.c.obj +[99/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/esp32s3/bignum.c.obj +[100/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/md/esp_md.c.obj +[101/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj +[102/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj +[103/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj +[104/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj +[105/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj +[106/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj +[107/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj +[108/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj +[109/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj +[110/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj +[111/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj +[112/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj +[113/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj +[114/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj +[115/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj +[116/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj +[117/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj +[118/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj +[119/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj +[120/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj +[121/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj +[122/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj +[123/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj +[124/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj +[125/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj +[126/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj +[127/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/mbedtls_debug.c.obj +[128/907] Building C object esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj +[129/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj +[130/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj +[131/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj +[132/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj +[133/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj +[134/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj +[135/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj +[136/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj +[137/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/E_/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/port/net_sockets.c.obj +[138/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj +[139/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj +[140/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj +[141/907] Creating directories for 'bootloader' +[142/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj +[143/907] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj +[144/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj +[145/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj +[146/907] No download step for 'bootloader' +[147/907] Building C object esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj +[148/907] Building C object esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj +[149/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj +[150/907] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj +[151/907] Building C object esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj +[152/907] Building C object esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj +[153/907] No update step for 'bootloader' +[154/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_timing_config.c.obj +[155/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj +[156/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_timing_tuning.c.obj +[157/907] No patch step for 'bootloader' +[158/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj +[159/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj +[160/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj +[161/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj +[162/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj +[163/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj +[164/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj +[165/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj +[166/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj +[167/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj +[168/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj +[169/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj +[170/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj +[171/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj +[172/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj +[173/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/flash_ops_esp32s3.c.obj +[174/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj +[175/907] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj +[176/907] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj +[177/907] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj +[178/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj +[179/907] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj +[180/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj +[181/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj +[182/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj +[183/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj +[184/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj +[185/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj +[186/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj +[187/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj +[188/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj +[189/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj +[190/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj +[191/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj +[192/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj +[193/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj +[194/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj +[195/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj +[196/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj +[197/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj +[198/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj +[199/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj +[200/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj +[201/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj +[202/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj +[203/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj +[204/907] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj +[205/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj +[206/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj +[207/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj +[208/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj +[209/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj +[210/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj +[211/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj +[212/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj +[213/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj +[214/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj +[215/907] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj +[216/907] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj +[217/907] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj +[218/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj +[219/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj +[220/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj +[221/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj +[222/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj +[223/907] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj +[224/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj +[225/907] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj +[226/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj +[227/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj +[228/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj +[229/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj +[230/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj +[231/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj +[232/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj +[233/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal_iram.c.obj +[234/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj +[235/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj +[236/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj +[237/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj +[238/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj +[239/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj +[240/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj +[241/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj +[242/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj +[243/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj +[244/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_async_memcpy.c.obj +[245/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/gdma.c.obj +[246/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj +[247/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj +[248/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/async_memcpy_impl_gdma.c.obj +[249/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj +[250/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj +[251/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj +[252/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj +[253/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj +[254/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj +[255/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj +[256/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj +[257/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj +[258/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj +[259/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj +[260/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal.c.obj +[261/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj +[262/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj +[263/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj +[264/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj +[265/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj +[266/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_hal.c.obj +[267/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_phy_hal.c.obj +[268/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/hmac_hal.c.obj +[269/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj +[270/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj +[271/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj +[272/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/brownout_hal.c.obj +[273/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj +[274/907] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj +[275/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj +[276/907] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj +[277/907] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj +[278/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj +[279/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj +[280/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj +[281/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj +[282/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj +[283/907] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj +[284/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj +[285/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj +[286/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj +[287/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj +[288/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj +[289/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj +[290/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj +[291/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj +[292/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj +[293/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj +[294/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj +[295/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj +[296/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj +[297/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj +[298/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj +[299/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj +[300/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj +[301/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj +[302/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj +[303/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj +[304/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj +[305/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj +[306/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj +[307/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj +[308/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj +[309/907] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj +[310/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj +[311/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj +[312/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj +[313/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj +[314/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj +[315/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj +[316/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj +[317/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj +[318/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mac_bb.c.obj +[319/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj +[320/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj +[321/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj +[322/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj +[323/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj +[324/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj +[325/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj +[326/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj +[327/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj +[328/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj +[329/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj +[330/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj +[331/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_hmac.c.obj +[332/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj +[333/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj +[334/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_crypto_lock.c.obj +[335/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj +[336/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_ds.c.obj +[337/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj +[338/907] Building ASM object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj +[339/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj +[340/907] Building ASM object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj +[341/907] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj +[342/907] Building ASM object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj +[343/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj +[344/907] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj +[345/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj +[346/907] Building ASM object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S.obj +[347/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj +[348/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj +[349/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj +[350/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj +[351/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj +[352/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj +[353/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj +[354/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj +[355/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj +[356/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj +[357/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj +[358/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj +[359/907] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj +[360/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj +[361/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj +[362/907] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj +[363/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj +[364/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj +[365/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj +[366/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj +[367/907] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj +[368/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj +[369/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj +[370/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj +[371/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj +[372/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj +[373/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj +[374/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj +[375/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj +[376/907] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj +[377/907] Building CXX object esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj +[378/907] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj +[379/907] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj +[380/907] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj +[381/907] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj +[382/907] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj +[383/907] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj +[384/907] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj +[385/907] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj +[386/907] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj +[387/907] Building C object esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj +ninja: build stopped: interrupted by user. diff --git a/build/log/idf_py_stdout_output_16240 b/build/log/idf_py_stdout_output_16240 new file mode 100644 index 0000000..5a59961 --- /dev/null +++ b/build/log/idf_py_stdout_output_16240 @@ -0,0 +1,876 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=215c8h (136648) map +I (121) esp_image: segment 1: paddr=000315f0 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353f8 vaddr=40374000 size=0ac20h ( 44064) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7aeb8h (503480) map +I (227) esp_image: segment 4: paddr=000baee0 vaddr=4037ec20 size=07cf4h ( 31988) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (268) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: fe04f198dfa1f74d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (269) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (270) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (374) wifi station: wifi_init_sta finished. +I (384) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (384) wifi:state: init -> auth (b0) +I (394) wifi:state: auth -> assoc (0) +I (414) wifi:state: assoc -> run (10) +I (3494) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (3494) wifi:security: WPA2-PSK, phy: bgn, rssi: -88 +I (3504) wifi:pm start, type: 1 + +I (3504) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (3584) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (3584) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:3, ssn:0, winSize:64 +I (3624) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (17504) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (17504) wifi station: got ip:192.168.1.107 +I (17504) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (17504) modbus tcp: ModBusTCPSlave_init() +I (17504) example: Create DC motor +I (17504) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (17504) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (17504) example: Init pcnt driver to decode rotary signal +I (17504) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (17504) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (17504) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (17504) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (17504) example: Create PID control block +I (17504) example: Create a timer to do PID calculation periodically +I (17504) example: Enable motor +I (17504) example: Forward motor +I (17504) example: Start motor speed loop +I (18514) example: expect speed: 0.000000 real_pulses:0 +I (18514) example: new speed:0.000000 +I (18784) modbus tcp: accept assess +I (18804) modbus tcp: ModBusSlave_recv() +I (18804) modbus: ModbusSlaveProcess()--------------------------- +I (18804) modbus: check id... +I (18804) modbus: ok +I (18804) modbus: add: 0, length: 10 +I (18804) modbus: Read Holding Registers +I (19514) example: expect speed: 0.000000 real_pulses:0 +I (19514) example: new speed:0.000000 +I (19824) modbus tcp: ModBusSlave_recv() +I (19824) modbus: ModbusSlaveProcess()--------------------------- +I (19824) modbus: check id... +I (19824) modbus: ok +I (19824) modbus: add: 0, length: 10 +I (19824) modbus: Read Holding Registers +I (20514) example: expect speed: 0.000000 real_pulses:0 +I (20514) example: new speed:0.000000 +I (20924) modbus tcp: ModBusSlave_recv() +I (20924) modbus: ModbusSlaveProcess()--------------------------- +I (20924) modbus: check id... +I (20924) modbus: ok +I (20924) modbus: add: 0, length: 10 +I (20924) modbus: Read Holding Registers +I (21514) example: expect speed: 0.000000 real_pulses:0 +I (21514) example: new speed:0.000000 +I (21954) modbus tcp: ModBusSlave_recv() +I (21954) modbus: ModbusSlaveProcess()--------------------------- +I (21954) modbus: check id... +I (21954) modbus: ok +I (21954) modbus: add: 0, length: 10 +I (21954) modbus: Read Holding Registers +I (22514) example: expect speed: 0.000000 real_pulses:0 +I (22514) example: new speed:0.000000 +I (22874) modbus tcp: ModBusSlave_recv() +I (22874) modbus: ModbusSlaveProcess()--------------------------- +I (22874) modbus: check id... +I (22874) modbus: ok +I (22874) modbus: add: 0, length: 10 +I (22874) modbus: Read Holding Registers +I (23514) example: expect speed: 0.000000 real_pulses:0 +I (23514) example: new speed:0.000000 +I (24104) modbus tcp: ModBusSlave_recv() +I (24104) modbus: ModbusSlaveProcess()--------------------------- +I (24104) modbus: check id... +I (24104) modbus: ok +I (24104) modbus: add: 0, length: 10 +I (24104) modbus: Read Holding Registers +I (24514) example: expect speed: 0.000000 real_pulses:0 +I (24514) example: new speed:0.000000 +I (25374) modbus tcp: ModBusSlave_recv() +I (25374) modbus: ModbusSlaveProcess()--------------------------- +I (25374) modbus: check id... +I (25374) modbus: ok +I (25374) modbus: add: 0, length: 10 +I (25374) modbus: Read Holding Registers +I (25514) example: expect speed: 0.000000 real_pulses:0 +I (25514) example: new speed:0.000000 +I (26514) example: expect speed: 0.000000 real_pulses:0 +I (26514) example: new speed:0.000000 +I (26764) modbus tcp: ModBusSlave_recv() +I (26764) modbus: ModbusSlaveProcess()--------------------------- +I (26764) modbus: check id... +I (26764) modbus: ok +I (26764) modbus: add: 0, length: 10 +I (26774) modbus: Read Holding Registers +I (27074) modbus tcp: ModBusSlave_recv() +I (27074) modbus: ModbusSlaveProcess()--------------------------- +I (27074) modbus: check id... +I (27074) modbus: ok +I (27074) modbus: add: 0, length: 10 +I (27074) modbus: Read Holding Registers +I (27514) example: expect speed: 0.000000 real_pulses:0 +I (27514) example: new speed:0.000000 +I (28514) example: expect speed: 0.000000 real_pulses:0 +I (28514) example: new speed:0.000000 +I (28914) modbus tcp: ModBusSlave_recv() +I (28914) modbus: ModbusSlaveProcess()--------------------------- +I (28914) modbus: check id... +I (28914) modbus: ok +I (28914) modbus: add: 0, length: 10 +I (28914) modbus: Read Holding Registers +I (29514) example: expect speed: 0.000000 real_pulses:0 +I (29514) example: new speed:0.000000 +I (30514) example: expect speed: 0.000000 real_pulses:0 +I (30514) example: new speed:0.000000 +I (31274) modbus tcp: ModBusSlave_recv() +I (31274) modbus: ModbusSlaveProcess()--------------------------- +I (31274) modbus: check id... +I (31274) modbus: ok +I (31274) modbus: add: 0, length: 10 +I (31274) modbus: Read Holding Registers +I (31514) example: expect speed: 0.000000 real_pulses:0 +I (31514) example: new speed:0.000000 +I (32514) example: expect speed: 0.000000 real_pulses:0 +I (32514) example: new speed:0.000000 +I (32604) modbus tcp: ModBusSlave_recv() +I (32604) modbus: ModbusSlaveProcess()--------------------------- +I (32604) modbus: check id... +I (32604) modbus: ok +I (32604) modbus: add: 0, length: 10 +I (32604) modbus: Read Holding Registers +I (33514) example: expect speed: 0.000000 real_pulses:0 +I (33514) example: new speed:0.000000 +I (33864) modbus tcp: ModBusSlave_recv() +I (33874) modbus: ModbusSlaveProcess()--------------------------- +I (33874) modbus: check id... +I (33874) modbus: ok +I (33874) modbus: add: 0, length: 10 +I (33874) modbus: Read Holding Registers +I (34514) example: expect speed: 0.000000 real_pulses:0 +I (34514) example: new speed:0.000000 +I (35514) example: expect speed: 0.000000 real_pulses:0 +I (35514) example: new speed:0.000000 +I (36184) modbus tcp: ModBusSlave_recv() +I (36184) modbus: ModbusSlaveProcess()--------------------------- +I (36184) modbus: check id... +I (36184) modbus: ok +I (36184) modbus: add: 0, length: 10 +I (36184) modbus: Read Holding Registers +I (36514) example: expect speed: 0.000000 real_pulses:0 +I (36514) example: new speed:0.000000 +I (36654) modbus tcp: ModBusSlave_recv() +I (36654) modbus: ModbusSlaveProcess()--------------------------- +I (36654) modbus: check id... +I (36654) modbus: ok +I (36654) modbus: add: 0, length: 10 +I (36654) modbus: Read Holding Registers +I (37514) example: expect speed: 0.000000 real_pulses:0 +I (37514) example: new speed:0.000000 +I (37624) modbus tcp: ModBusSlave_recv() +I (37624) modbus: ModbusSlaveProcess()--------------------------- +I (37624) modbus: check id... +I (37624) modbus: ok +I (37624) modbus: add: 0, length: 10 +I (37624) modbus: Read Holding Registers +I (38514) example: expect speed: 0.000000 real_pulses:0 +I (38514) example: new speed:0.000000 +I (38744) modbus tcp: ModBusSlave_recv() +I (38744) modbus: ModbusSlaveProcess()--------------------------- +I (38744) modbus: check id... +I (38744) modbus: ok +I (38744) modbus: add: 0, length: 10 +I (38744) modbus: Read Holding Registers +I (39514) example: expect speed: 0.000000 real_pulses:0 +I (39514) example: new speed:0.000000 +I (39974) modbus tcp: ModBusSlave_recv() +I (39974) modbus: ModbusSlaveProcess()--------------------------- +I (39974) modbus: check id... +I (39974) modbus: ok +I (39974) modbus: add: 0, length: 10 +I (39974) modbus: Read Holding Registers +I (40514) example: expect speed: 0.000000 real_pulses:0 +I (40514) example: new speed:0.000000 +I (40804) modbus tcp: ModBusSlave_recv() +I (40804) modbus: ModbusSlaveProcess()--------------------------- +I (40804) modbus: check id... +I (40804) modbus: ok +I (40804) modbus: add: 0, length: 10 +I (40804) modbus: Read Holding Registers +I (41514) example: expect speed: 0.000000 real_pulses:0 +I (41514) example: new speed:0.000000 +I (41714) modbus tcp: ModBusSlave_recv() +I (41714) modbus: ModbusSlaveProcess()--------------------------- +I (41714) modbus: check id... +I (41714) modbus: ok +I (41714) modbus: add: 0, length: 10 +I (41714) modbus: Read Holding Registers +I (42514) example: expect speed: 0.000000 real_pulses:0 +I (42514) example: new speed:0.000000 +I (42734) modbus tcp: ModBusSlave_recv() +I (42744) modbus: ModbusSlaveProcess()--------------------------- +I (42744) modbus: check id... +I (42744) modbus: ok +I (42744) modbus: add: 0, length: 10 +I (42744) modbus: Read Holding Registers +I (43514) example: expect speed: 0.000000 real_pulses:0 +I (43514) example: new speed:0.000000 +I (43764) modbus tcp: ModBusSlave_recv() +I (43764) modbus: ModbusSlaveProcess()--------------------------- +I (43764) modbus: check id... +I (43764) modbus: ok +I (43764) modbus: add: 0, length: 10 +I (43764) modbus: Read Holding Registers +I (44514) example: expect speed: 0.000000 real_pulses:0 +I (44514) example: new speed:0.000000 +I (44784) modbus tcp: ModBusSlave_recv() +I (44784) modbus: ModbusSlaveProcess()--------------------------- +I (44784) modbus: check id... +I (44784) modbus: ok +I (44784) modbus: add: 0, length: 10 +I (44784) modbus: Read Holding Registers +I (45514) example: expect speed: 0.000000 real_pulses:0 +I (45514) example: new speed:0.000000 +I (45814) modbus tcp: ModBusSlave_recv() +I (45814) modbus: ModbusSlaveProcess()--------------------------- +I (45814) modbus: check id... +I (45814) modbus: ok +I (45814) modbus: add: 0, length: 10 +I (45814) modbus: Read Holding Registers +I (46514) example: expect speed: 0.000000 real_pulses:0 +I (46514) example: new speed:0.000000 +I (46834) modbus tcp: ModBusSlave_recv() +I (46834) modbus: ModbusSlaveProcess()--------------------------- +I (46834) modbus: check id... +I (46834) modbus: ok +I (46834) modbus: add: 0, length: 10 +I (46834) modbus: Read Holding Registers +I (47514) example: expect speed: 0.000000 real_pulses:0 +I (47514) example: new speed:0.000000 +I (47864) modbus tcp: ModBusSlave_recv() +I (47864) modbus: ModbusSlaveProcess()--------------------------- +I (47864) modbus: check id... +I (47864) modbus: ok +I (47864) modbus: add: 0, length: 10 +I (47864) modbus: Read Holding Registers +I (48514) example: expect speed: 0.000000 real_pulses:0 +I (48514) example: new speed:0.000000 +I (48884) modbus tcp: ModBusSlave_recv() +I (48884) modbus: ModbusSlaveProcess()--------------------------- +I (48884) modbus: check id... +I (48884) modbus: ok +I (48884) modbus: add: 0, length: 10 +I (48884) modbus: Read Holding Registers +I (49514) example: expect speed: 0.000000 real_pulses:0 +I (49514) example: new speed:0.000000 +I (50424) modbus tcp: ModBusSlave_recv() +I (50424) modbus: ModbusSlaveProcess()--------------------------- +I (50424) modbus: check id... +I (50424) modbus: ok +I (50424) modbus: add: 0, length: 10 +I (50424) modbus: Read Holding Registers +I (50514) example: expect speed: 0.000000 real_pulses:0 +I (50514) example: new speed:0.000000 +I (51514) example: expect speed: 0.000000 real_pulses:0 +I (51514) example: new speed:0.000000 +I (51544) modbus tcp: ModBusSlave_recv() +I (51544) modbus: ModbusSlaveProcess()--------------------------- +I (51544) modbus: check id... +I (51544) modbus: ok +I (51544) modbus: add: 0, length: 10 +I (51544) modbus: Read Holding Registers +I (52514) example: expect speed: 0.000000 real_pulses:0 +I (52514) example: new speed:0.000000 +I (52774) modbus tcp: ModBusSlave_recv() +I (52774) modbus: ModbusSlaveProcess()--------------------------- +I (52774) modbus: check id... +I (52774) modbus: ok +I (52774) modbus: add: 0, length: 10 +I (52774) modbus: Read Holding Registers +I (53514) example: expect speed: 0.000000 real_pulses:0 +I (53514) example: new speed:0.000000 +I (54514) example: expect speed: 0.000000 real_pulses:0 +I (54514) example: new speed:0.000000 +I (54824) modbus tcp: ModBusSlave_recv() +I (54824) modbus: ModbusSlaveProcess()--------------------------- +I (54824) modbus: check id... +I (54824) modbus: ok +I (54824) modbus: add: 0, length: 10 +I (54824) modbus: Read Holding Registers +I (55514) example: expect speed: 0.000000 real_pulses:0 +I (55514) example: new speed:0.000000 +I (55954) modbus tcp: ModBusSlave_recv() +I (55954) modbus: ModbusSlaveProcess()--------------------------- +I (55954) modbus: check id... +I (55954) modbus: ok +I (55954) modbus: add: 0, length: 10 +I (55954) modbus: Read Holding Registers +I (56514) example: expect speed: 0.000000 real_pulses:0 +I (56514) example: new speed:0.000000 +I (56974) modbus tcp: ModBusSlave_recv() +I (56974) modbus: ModbusSlaveProcess()--------------------------- +I (56974) modbus: check id... +I (56974) modbus: ok +I (56974) modbus: add: 0, length: 10 +I (56974) modbus: Read Holding Registers +I (57514) example: expect speed: 0.000000 real_pulses:0 +I (57514) example: new speed:0.000000 +I (57994) modbus tcp: ModBusSlave_recv() +I (57994) modbus: ModbusSlaveProcess()--------------------------- +I (57994) modbus: check id... +I (57994) modbus: ok +I (57994) modbus: add: 0, length: 10 +I (57994) modbus: Read Holding Registers +I (58514) example: expect speed: 0.000000 real_pulses:0 +I (58514) example: new speed:0.000000 +I (58924) modbus tcp: ModBusSlave_recv() +I (58924) modbus: ModbusSlaveProcess()--------------------------- +I (58924) modbus: check id... +I (58924) modbus: ok +I (58924) modbus: add: 0, length: 10 +I (58924) modbus: Read Holding Registers +I (59514) example: expect speed: 0.000000 real_pulses:0 +I (59514) example: new speed:0.000000 +I (60044) modbus tcp: ModBusSlave_recv() +I (60044) modbus: ModbusSlaveProcess()--------------------------- +I (60044) modbus: check id... +I (60044) modbus: ok +I (60044) modbus: add: 0, length: 10 +I (60044) modbus: Read Holding Registers +I (60514) example: expect speed: 0.000000 real_pulses:0 +I (60514) example: new speed:0.000000 +I (61184) modbus tcp: ModBusSlave_recv() +I (61184) modbus: ModbusSlaveProcess()--------------------------- +I (61184) modbus: check id... +I (61184) modbus: ok +I (61184) modbus: add: 0, length: 10 +I (61184) modbus: Read Holding Registers +I (61514) example: expect speed: 0.000000 real_pulses:0 +I (61514) example: new speed:0.000000 +I (62404) modbus tcp: ModBusSlave_recv() +I (62404) modbus: ModbusSlaveProcess()--------------------------- +I (62404) modbus: check id... +I (62404) modbus: ok +I (62404) modbus: add: 0, length: 10 +I (62404) modbus: Read Holding Registers +I (62514) example: expect speed: 0.000000 real_pulses:0 +I (62514) example: new speed:0.000000 +I (63514) example: expect speed: 0.000000 real_pulses:0 +I (63514) example: new speed:0.000000 +I (64244) modbus tcp: ModBusSlave_recv() +I (64244) modbus: ModbusSlaveProcess()--------------------------- +I (64244) modbus: check id... +I (64244) modbus: ok +I (64244) modbus: add: 0, length: 10 +I (64244) modbus: Read Holding Registers +I (64514) example: expect speed: 0.000000 real_pulses:0 +I (64514) example: new speed:0.000000 +I (65374) modbus tcp: ModBusSlave_recv() +I (65374) modbus: ModbusSlaveProcess()--------------------------- +I (65374) modbus: check id... +I (65374) modbus: ok +I (65374) modbus: add: 0, length: 10 +I (65374) modbus: Read Holding Registers +I (65514) example: expect speed: 0.000000 real_pulses:0 +I (65514) example: new speed:0.000000 +I (66444) modbus tcp: ModBusSlave_recv() +I (66444) modbus: ModbusSlaveProcess()--------------------------- +I (66444) modbus: check id... +I (66444) modbus: ok +I (66444) modbus: add: 0, length: 10 +I (66444) modbus: Read Holding Registers +I (66514) example: expect speed: 0.000000 real_pulses:0 +I (66514) example: new speed:0.000000 +I (67314) modbus tcp: ModBusSlave_recv() +I (67314) modbus: ModbusSlaveProcess()--------------------------- +I (67314) modbus: check id... +I (67314) modbus: ok +I (67314) modbus: add: 0, length: 10 +I (67314) modbus: Read Holding Registers +I (67514) example: expect speed: 0.000000 real_pulses:0 +I (67514) example: new speed:0.000000 +I (68344) modbus tcp: ModBusSlave_recv() +I (68344) modbus: ModbusSlaveProcess()--------------------------- +I (68344) modbus: check id... +I (68344) modbus: ok +I (68344) modbus: add: 0, length: 10 +I (68344) modbus: Read Holding Registers +I (68514) example: expect speed: 0.000000 real_pulses:0 +I (68514) example: new speed:0.000000 +I (69364) modbus tcp: ModBusSlave_recv() +I (69364) modbus: ModbusSlaveProcess()--------------------------- +I (69364) modbus: check id... +I (69364) modbus: ok +I (69364) modbus: add: 0, length: 10 +I (69364) modbus: Read Holding Registers +I (69514) example: expect speed: 0.000000 real_pulses:0 +I (69514) example: new speed:0.000000 +I (70424) modbus tcp: ModBusSlave_recv() +I (70424) modbus: ModbusSlaveProcess()--------------------------- +I (70424) modbus: check id... +I (70424) modbus: ok +I (70424) modbus: add: 0, length: 10 +I (70424) modbus: Read Holding Registers +I (70514) example: expect speed: 0.000000 real_pulses:0 +I (70514) example: new speed:0.000000 +I (71414) modbus tcp: ModBusSlave_recv() +I (71414) modbus: ModbusSlaveProcess()--------------------------- +I (71414) modbus: check id... +I (71414) modbus: ok +I (71414) modbus: add: 0, length: 10 +I (71414) modbus: Read Holding Registers +I (71514) example: expect speed: 0.000000 real_pulses:0 +I (71514) example: new speed:0.000000 +I (72434) modbus tcp: ModBusSlave_recv() +I (72434) modbus: ModbusSlaveProcess()--------------------------- +I (72444) modbus: check id... +I (72444) modbus: ok +I (72444) modbus: add: 0, length: 10 +I (72444) modbus: Read Holding Registers +I (72514) example: expect speed: 0.000000 real_pulses:0 +I (72514) example: new speed:0.000000 +I (73464) modbus tcp: ModBusSlave_recv() +I (73464) modbus: ModbusSlaveProcess()--------------------------- +I (73464) modbus: check id... +I (73464) modbus: ok +I (73464) modbus: add: 0, length: 10 +I (73464) modbus: Read Holding Registers +I (73514) example: expect speed: 0.000000 real_pulses:0 +I (73514) example: new speed:0.000000 +I (74514) example: expect speed: 0.000000 real_pulses:0 +I (74514) example: new speed:0.000000 +I (74694) modbus tcp: ModBusSlave_recv() +I (74694) modbus: ModbusSlaveProcess()--------------------------- +I (74694) modbus: check id... +I (74694) modbus: ok +I (74694) modbus: add: 0, length: 10 +I (74694) modbus: Read Holding Registers +I (75514) example: expect speed: 0.000000 real_pulses:0 +I (75514) example: new speed:0.000000 +I (75824) modbus tcp: ModBusSlave_recv() +I (75824) modbus: ModbusSlaveProcess()--------------------------- +I (75824) modbus: check id... +I (75824) modbus: ok +I (75824) modbus: add: 0, length: 10 +I (75824) modbus: Read Holding Registers +I (76514) example: expect speed: 0.000000 real_pulses:0 +I (76514) example: new speed:0.000000 +I (77514) example: expect speed: 0.000000 real_pulses:0 +I (77514) example: new speed:0.000000 +I (78274) modbus tcp: ModBusSlave_recv() +I (78274) modbus: ModbusSlaveProcess()--------------------------- +I (78274) modbus: check id... +I (78274) modbus: ok +I (78274) modbus: add: 0, length: 10 +I (78274) modbus: Read Holding Registers +I (78514) example: expect speed: 0.000000 real_pulses:0 +I (78514) example: new speed:0.000000 +I (79394) modbus tcp: ModBusSlave_recv() +I (79394) modbus: ModbusSlaveProcess()--------------------------- +I (79394) modbus: check id... +I (79394) modbus: ok +I (79394) modbus: add: 0, length: 200 +I (79404) modbus: Write Single Register +I (79404) modbus: gwordvar[0]=200 +I (79514) example: expect speed: 0.000000 real_pulses:0 +I (79514) example: new speed:0.000000 +I (80424) modbus tcp: ModBusSlave_recv() +I (80424) modbus: ModbusSlaveProcess()--------------------------- +I (80424) modbus: check id... +I (80424) modbus: ok +I (80424) modbus: add: 0, length: 10 +I (80424) modbus: Read Holding Registers +I (80514) example: expect speed: 0.000000 real_pulses:0 +I (80514) example: new speed:0.000000 +I (81514) example: expect speed: 0.000000 real_pulses:0 +I (81514) example: new speed:0.000000 +I (81654) modbus tcp: ModBusSlave_recv() +I (81654) modbus: ModbusSlaveProcess()--------------------------- +I (81654) modbus: check id... +I (81654) modbus: ok +I (81654) modbus: add: 0, length: 10 +I (81654) modbus: Read Holding Registers +I (82514) example: expect speed: 0.000000 real_pulses:0 +I (82514) example: new speed:0.000000 +I (82784) modbus tcp: ModBusSlave_recv() +I (82784) modbus: ModbusSlaveProcess()--------------------------- +I (82784) modbus: check id... +I (82784) modbus: ok +I (82784) modbus: add: 0, length: 10 +I (82784) modbus: Read Holding Registers +I (83514) example: expect speed: 0.000000 real_pulses:0 +I (83514) example: new speed:0.000000 +I (84514) example: expect speed: 0.000000 real_pulses:0 +I (84514) example: new speed:0.000000 +I (85234) modbus tcp: ModBusSlave_recv() +I (85234) modbus: ModbusSlaveProcess()--------------------------- +I (85234) modbus: check id... +I (85234) modbus: ok +I (85234) modbus: add: 0, length: 10 +I (85234) modbus: Read Holding Registers +I (85514) example: expect speed: 0.000000 real_pulses:0 +I (85514) example: new speed:0.000000 +I (86514) example: expect speed: 0.000000 real_pulses:0 +I (86514) example: new speed:0.000000 +I (87514) example: expect speed: 0.000000 real_pulses:0 +I (87514) example: new speed:0.000000 +I (87654) modbus tcp: ModBusSlave_recv() +I (87654) modbus: ModbusSlaveProcess()--------------------------- +I (87654) modbus: check id... +I (87654) modbus: ok +I (87654) modbus: add: 0, length: 10 +I (87654) modbus: Read Holding Registers +I (88514) example: expect speed: 0.000000 real_pulses:0 +I (88514) example: new speed:0.000000 +I (89514) example: expect speed: 0.000000 real_pulses:0 +I (89514) example: new speed:0.000000 +I (89744) modbus tcp: ModBusSlave_recv() +I (89744) modbus: ModbusSlaveProcess()--------------------------- +I (89744) modbus: check id... +I (89744) modbus: ok +I (89744) modbus: add: 0, length: 10 +I (89744) modbus: Read Holding Registers +I (90514) example: expect speed: 0.000000 real_pulses:0 +I (90514) example: new speed:0.000000 +I (91514) example: expect speed: 0.000000 real_pulses:0 +I (91514) example: new speed:0.000000 +I (92094) modbus tcp: ModBusSlave_recv() +I (92094) modbus: ModbusSlaveProcess()--------------------------- +I (92094) modbus: check id... +I (92094) modbus: ok +I (92094) modbus: add: 0, length: 10 +I (92094) modbus: Read Holding Registers +I (92514) example: expect speed: 0.000000 real_pulses:0 +I (92514) example: new speed:0.000000 +I (92714) modbus tcp: ModBusSlave_recv() +I (92714) modbus: ModbusSlaveProcess()--------------------------- +I (92714) modbus: check id... +I (92714) modbus: ok +I (92714) modbus: add: 0, length: 10 +I (92714) modbus: Read Holding Registers +I (93514) example: expect speed: 0.000000 real_pulses:0 +I (93514) example: new speed:0.000000 +I (93734) modbus tcp: ModBusSlave_recv() +I (93734) modbus: ModbusSlaveProcess()--------------------------- +I (93734) modbus: check id... +I (93734) modbus: ok +I (93734) modbus: add: 0, length: 10 +I (93734) modbus: Read Holding Registers +I (94514) example: expect speed: 0.000000 real_pulses:0 +I (94514) example: new speed:0.000000 +I (94864) modbus tcp: ModBusSlave_recv() +I (94864) modbus: ModbusSlaveProcess()--------------------------- +I (94864) modbus: check id... +I (94864) modbus: ok +I (94864) modbus: add: 0, length: 10 +I (94864) modbus: Read Holding Registers +I (95514) example: expect speed: 0.000000 real_pulses:0 +I (95514) example: new speed:0.000000 +I (96084) modbus tcp: ModBusSlave_recv() +I (96094) modbus: ModbusSlaveProcess()--------------------------- +I (96094) modbus: check id... +I (96094) modbus: ok +I (96094) modbus: add: 0, length: 10 +I (96094) modbus: Read Holding Registers +I (96514) example: expect speed: 0.000000 real_pulses:0 +I (96514) example: new speed:0.000000 +I (97024) modbus tcp: ModBusSlave_recv() +I (97024) modbus: ModbusSlaveProcess()--------------------------- +I (97024) modbus: check id... +I (97024) modbus: ok +I (97024) modbus: add: 0, length: 10 +I (97024) modbus: Read Holding Registers +I (97514) example: expect speed: 0.000000 real_pulses:0 +I (97514) example: new speed:0.000000 +I (98514) example: expect speed: 0.000000 real_pulses:0 +I (98514) example: new speed:0.000000 +I (99094) modbus tcp: ModBusSlave_recv() +I (99094) modbus: ModbusSlaveProcess()--------------------------- +I (99094) modbus: check id... +I (99094) modbus: ok +I (99094) modbus: add: 0, length: 10 +I (99094) modbus: Read Holding Registers +I (99514) example: expect speed: 0.000000 real_pulses:0 +I (99514) example: new speed:0.000000 +I (100514) example: expect speed: 0.000000 real_pulses:0 +I (100514) example: new speed:0.000000 +I (101514) example: expect speed: 0.000000 real_pulses:0 +I (101514) example: new speed:0.000000 +I (101524) modbus tcp: ModBusSlave_recv() +I (101524) modbus: ModbusSlaveProcess()--------------------------- +I (101524) modbus: check id... +I (101524) modbus: ok +I (101524) modbus: add: 0, length: 10 +I (101524) modbus: Read Holding Registers +I (102514) example: expect speed: 0.000000 real_pulses:0 +I (102514) example: new speed:0.000000 +I (102844) modbus tcp: ModBusSlave_recv() +I (102844) modbus: ModbusSlaveProcess()--------------------------- +I (102854) modbus: check id... +I (102854) modbus: ok +I (102854) modbus: add: 1, length: 1 +I (102854) modbus: Write Single Register +I (102854) modbus: gwordvar[1]=1 +I (103514) example: expect speed: 200.000000 real_pulses:0 +I (103514) example: new speed:240.000000 +I (104084) modbus tcp: ModBusSlave_recv() +I (104084) modbus: ModbusSlaveProcess()--------------------------- +I (104084) modbus: check id... +I (104084) modbus: ok +I (104084) modbus: add: 0, length: 10 +I (104084) modbus: Read Holding Registers +I (104514) example: expect speed: 200.000000 real_pulses:0 +I (104514) example: new speed:280.000000 +I (105514) example: expect speed: 200.000000 real_pulses:0 +I (105514) example: new speed:360.000000 +I (106514) example: expect speed: 200.000000 real_pulses:0 +I (106514) example: new speed:399.000000 +I (106534) modbus tcp: ModBusSlave_recv() +I (106534) modbus: ModbusSlaveProcess()--------------------------- +I (106534) modbus: check id... +I (106534) modbus: ok +I (106534) modbus: add: 0, length: 10 +I (106534) modbus: Read Holding Registers +I (107514) example: expect speed: 200.000000 real_pulses:0 +I (107514) example: new speed:399.000000 +I (108514) example: expect speed: 200.000000 real_pulses:0 +I (108514) example: new speed:399.000000 +I (109514) example: expect speed: 200.000000 real_pulses:0 +I (109514) example: new speed:399.000000 +I (110514) example: expect speed: 200.000000 real_pulses:0 +I (110514) example: new speed:399.000000 +I (111414) modbus tcp: ModBusSlave_recv() +I (111414) modbus: ModbusSlaveProcess()--------------------------- +I (111414) modbus: check id... +I (111414) modbus: ok +I (111414) modbus: add: 0, length: 10 +I (111414) modbus: Read Holding Registers +I (111514) example: expect speed: 200.000000 real_pulses:0 +I (111514) example: new speed:399.000000 +I (112514) example: expect speed: 200.000000 real_pulses:0 +I (112514) example: new speed:399.000000 +I (113514) example: expect speed: 200.000000 real_pulses:0 +I (113514) example: new speed:399.000000 +I (114514) example: expect speed: 200.000000 real_pulses:0 +I (114514) example: new speed:399.000000 +I (115514) example: expect speed: 200.000000 real_pulses:0 +I (115514) example: new speed:399.000000 +I (116514) example: expect speed: 200.000000 real_pulses:0 +I (116514) example: new speed:399.000000 +I (117514) example: expect speed: 200.000000 real_pulses:0 +I (117514) example: new speed:399.000000 +I (118514) example: expect speed: 200.000000 real_pulses:0 +I (118514) example: new speed:399.000000 +I (119514) example: expect speed: 200.000000 real_pulses:0 +I (119514) example: new speed:399.000000 +I (120514) example: expect speed: 200.000000 real_pulses:0 +I (120514) example: new speed:399.000000 +I (121514) example: expect speed: 200.000000 real_pulses:0 +I (121514) example: new speed:399.000000 +I (122514) example: expect speed: 200.000000 real_pulses:0 +I (122514) example: new speed:399.000000 +I (123514) example: expect speed: 200.000000 real_pulses:0 +I (123514) example: new speed:399.000000 +I (124514) example: expect speed: 200.000000 real_pulses:0 +I (124514) example: new speed:399.000000 +I (125064) modbus tcp: accept assess +I (125074) modbus tcp: ModBusSlave_recv() +I (125074) modbus: ModbusSlaveProcess()--------------------------- +I (125074) modbus: check id... +I (125074) modbus: ok +I (125074) modbus: add: 0, length: 10 +I (125074) modbus: Read Holding Registers +I (125514) example: expect speed: 200.000000 real_pulses:0 +I (125514) example: new speed:399.000000 +I (126094) modbus tcp: ModBusSlave_recv() +I (126094) modbus: ModbusSlaveProcess()--------------------------- +I (126094) modbus: check id... +I (126094) modbus: ok +I (126094) modbus: add: 0, length: 10 +I (126094) modbus: Read Holding Registers +I (126514) example: expect speed: 200.000000 real_pulses:0 +I (126514) example: new speed:399.000000 +I (127114) modbus tcp: ModBusSlave_recv() +I (127114) modbus: ModbusSlaveProcess()--------------------------- +I (127114) modbus: check id... +I (127114) modbus: ok +I (127114) modbus: add: 0, length: 10 +I (127114) modbus: Read Holding Registers +I (127514) example: expect speed: 200.000000 real_pulses:0 +I (127514) example: new speed:399.000000 +I (128154) modbus tcp: ModBusSlave_recv() +I (128154) modbus: ModbusSlaveProcess()--------------------------- +I (128154) modbus: check id... +I (128154) modbus: ok +I (128154) modbus: add: 0, length: 10 +I (128154) modbus: Read Holding Registers +I (128514) example: expect speed: 200.000000 real_pulses:0 +I (128514) example: new speed:399.000000 +I (129174) modbus tcp: ModBusSlave_recv() +I (129174) modbus: ModbusSlaveProcess()--------------------------- +I (129174) modbus: check id... +I (129174) modbus: ok +I (129174) modbus: add: 0, length: 10 +I (129174) modbus: Read Holding Registers +I (129514) example: expect speed: 200.000000 real_pulses:0 +I (129514) example: new speed:399.000000 +I (130194) modbus tcp: ModBusSlave_recv() +I (130194) modbus: ModbusSlaveProcess()--------------------------- +I (130194) modbus: check id... +I (130194) modbus: ok +I (130194) modbus: add: 0, length: 10 +I (130194) modbus: Read Holding Registers +I (130514) example: expect speed: 200.000000 real_pulses:0 +I (130514) example: new speed:399.000000 +I (131214) modbus tcp: ModBusSlave_recv() +I (131214) modbus: ModbusSlaveProcess()--------------------------- +I (131214) modbus: check id... +I (131214) modbus: ok +I (131214) modbus: add: 0, length: 10 +I (131214) modbus: Read Holding Registers +I (131514) example: expect speed: 200.000000 real_pulses:0 +I (131514) example: new speed:399.000000 +I (132234) modbus tcp: ModBusSlave_recv() +I (132234) modbus: ModbusSlaveProcess()--------------------------- +I (132234) modbus: check id... +I (132234) modbus: ok +I (132234) modbus: add: 0, length: 10 +I (132234) modbus: Read Holding Registers +I (132514) example: expect speed: 200.000000 real_pulses:0 +I (132514) example: new speed:399.000000 +I (133294) modbus tcp: ModBusSlave_recv() +I (133294) modbus: ModbusSlaveProcess()--------------------------- +I (133294) modbus: check id... +I (133294) modbus: ok +I (133294) modbus: add: 0, length: 10 +I (133294) modbus: Read Holding Registers +I (133514) example: expect speed: 200.000000 real_pulses:0 +I (133514) example: new speed:399.000000 +I (134184) modbus tcp: ModBusSlave_recv() +I (134184) modbus: ModbusSlaveProcess()--------------------------- +I (134184) modbus: check id... +I (134184) modbus: ok +I (134184) modbus: add: 0, length: 10 +I (134184) modbus: Read Holding Registers +I (134514) example: expect speed: 200.000000 real_pulses:0 +I (134514) example: new speed:399.000000 +I (135204) modbus tcp: ModBusSlave_recv() +I (135204) modbus: ModbusSlaveProcess()--------------------------- +I (135204) modbus: check id... +I (135204) modbus: ok +I (135204) modbus: add: 0, length: 10 +I (135204) modbus: Read Holding Registers +I (135514) example: expect speed: 200.000000 real_pulses:0 +I (135514) example: new speed:399.000000 +I (136244) modbus tcp: ModBusSlave_recv() +I (136244) modbus: ModbusSlaveProcess()--------------------------- +I (136244) modbus: check id... +I (136244) modbus: ok +I (136244) modbus: add: 0, length: 10 +I (136244) modbus: Read Holding Registers +I (136514) example: expect speed: 200.000000 real_pulses:0 +I (136514) example: new speed:399.000000 +I (137254) modbus tcp: ModBusSlave_recv() +I (137254) modbus: ModbusSlaveProcess()--------------------------- +I (137254) modbus: check id... +I (137254) modbus: ok +I (137254) modbus: add: 0, length: 10 +I (137254) modbus: Read Holding Registers +I (137514) example: expect speed: 200.000000 real_pulses:0 +I (137514) example: new speed:399.000000 +I (138274) modbus tcp: ModBusSlave_recv() +I (138274) modbus: ModbusSlaveProcess()--------------------------- +I (138284) modbus: check id... +I (138284) modbus: ok +I (138284) modbus: add: 0, length: 10 +I (138284) modbus: Read Holding Registers +I (138514) example: expect speed: 200.000000 real_pulses:0 +I (138514) example: new speed:399.000000 +I (139304) modbus tcp: ModBusSlave_recv() +I (139304) modbus: ModbusSlaveProcess()--------------------------- +I (139304) modbus: check id... +I (139304) modbus: ok +I (139304) modbus: add: 0, length: 10 +I (139304) modbus: Read Holding Registers +I (139514) example: expect speed: 200.000000 real_pulses:0 +I (139514) example: new speed:399.000000 diff --git a/build/log/idf_py_stdout_output_16604 b/build/log/idf_py_stdout_output_16604 new file mode 100644 index 0000000..3dd81ad --- /dev/null +++ b/build/log/idf_py_stdout_output_16604 @@ -0,0 +1,703 @@ +I (11976) example: expect speed: 0.000000 real_pulsesESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=215c8h (136648) map +I (121) esp_image: segment 1: paddr=000315f0 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353f8 vaddr=40374000 size=0ac20h ( 44064) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7aeb8h (503480) map +I (227) esp_image: segment 4: paddr=000baee0 vaddr=4037ec20 size=07cf4h ( 31988) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (266) cpu_start: Pro cpu start user code +I (266) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: fe04f198dfa1f74d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (268) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (273) app_start: Starting scheduler on CPU1 +I (273) main_task: Started on CPU0 +I (283) main_task: Calling app_main() +I (303) wifi station: ESP_WIFI_MODE_STA +I (303) pp: pp rom version: e7ae62f +I (303) net80211: net80211 rom version: e7ae62f +I (313) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (313) system_api: Base MAC address is not set +I (313) system_api: read default base MAC address from EFUSE +I (323) wifi:wifi firmware version: e2d0ad8 +I (323) wifi:wifi certification version: v7.0 +I (323) wifi:config NVS flash: enabled +I (323) wifi:config nano formating: disabled +I (323) wifi:Init data frame dynamic rx buffer num: 32 +I (323) wifi:Init management frame dynamic rx buffer num: 32 +I (323) wifi:Init management short buffer num: 32 +I (323) wifi:Init dynamic tx buffer num: 32 +I (323) wifi:Init static tx FG buffer num: 2 +I (323) wifi:Init static rx buffer size: 1600 +I (323) wifi:Init static rx buffer num: 10 +I (323) wifi:Init dynamic rx buffer num: 32 +I (323) wifi_init: rx ba win: 6 +I (323) wifi_init: tcpip mbox: 32 +I (323) wifi_init: udp mbox: 6 +I (323) wifi_init: tcp mbox: 6 +I (323) wifi_init: tcp tx win: 5744 +I (323) wifi_init: tcp rx win: 5744 +I (323) wifi_init: tcp mss: 1440 +I (323) wifi_init: WiFi IRAM OP enabled +I (323) wifi_init: WiFi RX IRAM OP enabled +I (333) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (363) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (363) wifi:enable tsf +I (363) wifi station: wifi_init_sta finished. +I (373) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (383) wifi:state: init -> auth (b0) +I (383) wifi:state: auth -> assoc (0) +I (393) wifi:state: assoc -> run (10) +I (443) wifi:connected with CMCC-xRSZ, aid = 134, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (443) wifi:security: WPA2-PSK, phy: bgn, rssi: -45 +I (443) wifi:pm start, type: 1 + +I (443) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (463) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (493) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (493) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1003) wifi:idx +I (1003) wifi:idx +I (1053) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1063) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (1453) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1453) wifi station: got ip:192.168.1.156 +I (1453) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1453) modbus tcp: ModBusTCPSlave_init() +I (1453) example: Create DC motor +I (1453) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1453) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1453) example: Init pcnt driver to decode rotary signal +I (1453) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1453) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1453) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1453) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1453) example: Create PID control block +I (1453) example: Create a timer to do PID calculation periodically +I (1453) example: Enable motor +I (1453) example: Forward motor +I (1453) example: Start motor speed loop +I (2453) example: expect speed: 0.000000 real_pulses:0 +I (2453) example: new speed:0.000000 +I (3453) example: expect speed: 0.000000 real_pulses:0 +I (3453) example: new speed:0.000000 +I (4453) example: expect speed: 0.000000 real_pulses:0 +I (4453) example: new speed:0.000000 +I (5453) example: expect speed: 0.000000 real_pulses:0 +I (5453) example: new speed:0.000000 +I (6453) example: expect speed: 0.000000 real_pulses:0 +I (6453) example: new speed:0.000000 +I (7453) example: expect speed: 0.000000 real_pulses:0 +I (7453) example: new speed:0.000000 +I (8453) example: expect speed: 0.000000 real_pulses:0 +I (8453) example: new speed:0.000000 +I (9453) example: expect speed: 0.000000 real_pulses:0 +I (9453) example: new speed:0.000000 +I (10453) example: expect speed: 0.000000 real_pulses:0 +I (10453) example: new speed:0.000000 +I (11453) example: expect speed: 0.000000 real_pulses:0 +I (11453) example: new speed:0.000000 +I (12453) example: expect speed: 0.000000 real_pulses:0 +I (12453) example: new speed:0.000000 +I (13453) example: expect speed: 0.000000 real_pulses:0 +I (13453) example: new speed:0.000000 +I (14453) example: expect speed: 0.000000 real_pulses:0 +I (14453) example: new speed:0.000000 +I (15453) example: expect speed: 0.000000 real_pulses:0 +I (15453) example: new speed:0.000000 +I (16453) example: expect speed: 0.000000 real_pulses:0 +I (16453) example: new speed:0.000000 +I (17453) example: expect speed: 0.000000 real_pulses:0 +I (17453) example: new speed:0.000000 +I (18453) example: expect speed: 0.000000 real_pulses:0 +I (18453) example: new speed:0.000000 +I (19453) example: expect speed: 0.000000 real_pulses:0 +I (19453) example: new speed:0.000000 +I (20453) example: expect speed: 0.000000 real_pulses:0 +I (20453) example: new speed:0.000000 +I (21453) example: expect speed: 0.000000 real_pulses:0 +I (21453) example: new speed:0.000000 +I (22453) example: expect speed: 0.000000 real_pulses:0 +I (22453) example: new speed:0.000000 +I (23453) example: expect speed: 0.000000 real_pulses:0 +I (23453) example: new speed:0.000000 +I (24453) example: expect speed: 0.000000 real_pulses:0 +I (24453) example: new speed:0.000000 +I (25453) example: expect speed: 0.000000 real_pulses:0 +I (25453) example: new speed:0.000000 +I (26453) example: expect speed: 0.000000 real_pulses:0 +I (26453) example: new speed:0.000000 +I (27453) example: expect speed: 0.000000 real_pulses:0 +I (27453) example: new speed:0.000000 +I (28453) example: expect speed: 0.000000 real_pulses:0 +I (28453) example: new speed:0.000000 +I (29453) example: expect speed: 0.000000 real_pulses:0 +I (29453) example: new speed:0.000000 +I (30453) example: expect speed: 0.000000 real_pulses:0 +I (30453) example: new speed:0.000000 +I (31453) example: expect speed: 0.000000 real_pulses:0 +I (31453) example: new speed:0.000000 +I (32453) example: expect speed: 0.000000 real_pulses:0 +I (32453) example: new speed:0.000000 +I (33453) example: expect speed: 0.000000 real_pulses:0 +I (33453) example: new speed:0.000000 +I (34453) example: expect speed: 0.000000 real_pulses:0 +I (34453) example: new speed:0.000000 +I (35453) example: expect speed: 0.000000 real_pulses:0 +I (35453) example: new speed:0.000000 +I (36453) example: expect speed: 0.000000 real_pulses:0 +I (36453) example: new speed:0.000000 +I (37453) example: expect speed: 0.000000 real_pulses:0 +I (37453) example: new speed:0.000000 +I (38453) example: expect speed: 0.000000 real_pulses:0 +I (38453) example: new speed:0.000000 +I (39453) example: expect speed: 0.000000 real_pulses:0 +I (39453) example: new speed:0.000000 +I (40453) example: expect speed: 0.000000 real_pulses:0 +I (40453) example: new speed:0.000000 +I (41453) example: expect speed: 0.000000 real_pulses:0 +I (41453) example: new speed:0.000000 +I (42453) example: expect speed: 0.000000 real_pulses:0 +I (42453) example: new speed:0.000000 +I (43453) example: expect speed: 0.000000 real_pulses:0 +I (43453) example: new speed:0.000000 +I (43783) modbus tcp: accept assess +I (43803) modbus tcp: ModBusSlave_recv() +I (43803) modbus: ModbusSlaveProcess()--------------------------- +I (43803) modbus: check id... +I (43803) modbus: ok +I (43803) modbus: add: 0, length: 10 +I (43803) modbus: Read Holding Registers +I (44453) example: expect speed: 0.000000 real_pulses:0 +I (44453) example: new speed:0.000000 +I (44903) modbus tcp: ModBusSlave_recv() +I (44903) modbus: ModbusSlaveProcess()--------------------------- +I (44903) modbus: check id... +I (44903) modbus: ok +I (44903) modbus: add: 0, length: 10 +I (44903) modbus: Read Holding Registers +I (45453) example: expect speed: 0.000000 real_pulses:0 +I (45453) example: new speed:0.000000 +I (45933) modbus tcp: ModBusSlave_recv() +I (45933) modbus: ModbusSlaveProcess()--------------------------- +I (45933) modbus: check id... +I (45933) modbus: ok +I (45933) modbus: add: 0, length: 10 +I (45933) modbus: Read Holding Registers +I (46453) example: expect speed: 0.000000 real_pulses:0 +I (46453) example: new speed:0.000000 +I (46953) modbus tcp: ModBusSlave_recv() +I (46953) modbus: ModbusSlaveProcess()--------------------------- +I (46953) modbus: check id... +I (46953) modbus: ok +I (46953) modbus: add: 0, length: 10 +I (46953) modbus: Read Holding Registers +I (47453) example: expect speed: 0.000000 real_pulses:0 +I (47453) example: new speed:0.000000 +I (47873) modbus tcp: ModBusSlave_recv() +I (47873) modbus: ModbusSlaveProcess()--------------------------- +I (47873) modbus: check id... +I (47873) modbus: ok +I (47873) modbus: add: 0, length: 10 +I (47873) modbus: Read Holding Registers +I (48453) example: expect speed: 0.000000 real_pulses:0 +I (48453) example: new speed:0.000000 +I (48903) modbus tcp: ModBusSlave_recv() +I (48903) modbus: ModbusSlaveProcess()--------------------------- +I (48903) modbus: check id... +I (48903) modbus: ok +I (48903) modbus: add: 0, length: 10 +I (48903) modbus: Read Holding Registers +I (49453) example: expect speed: 0.000000 real_pulses:0 +I (49453) example: new speed:0.000000 +I (49923) modbus tcp: ModBusSlave_recv() +I (49923) modbus: ModbusSlaveProcess()--------------------------- +I (49923) modbus: check id... +I (49923) modbus: ok +I (49923) modbus: add: 0, length: 10 +I (49923) modbus: Read Holding Registers +I (50453) example: expect speed: 0.000000 real_pulses:0 +I (50453) example: new speed:0.000000 +I (50983) modbus tcp: ModBusSlave_recv() +I (50983) modbus: ModbusSlaveProcess()--------------------------- +I (50983) modbus: check id... +I (50983) modbus: ok +I (50983) modbus: add: 0, length: 10 +I (50983) modbus: Read Holding Registers +I (51453) example: expect speed: 0.000000 real_pulses:0 +I (51453) example: new speed:0.000000 +I (51983) modbus tcp: ModBusSlave_recv() +I (51983) modbus: ModbusSlaveProcess()--------------------------- +I (51983) modbus: check id... +I (51983) modbus: ok +I (51983) modbus: add: 0, length: 10 +I (51983) modbus: Read Holding Registers +I (52453) example: expect speed: 0.000000 real_pulses:0 +I (52453) example: new speed:0.000000 +I (52993) modbus tcp: ModBusSlave_recv() +I (52993) modbus: ModbusSlaveProcess()--------------------------- +I (52993) modbus: check id... +I (52993) modbus: ok +I (52993) modbus: add: 0, length: 10 +I (52993) modbus: Read Holding Registers +I (53453) example: expect speed: 0.000000 real_pulses:0 +I (53453) example: new speed:0.000000 +I (54053) modbus tcp: ModBusSlave_recv() +I (54053) modbus: ModbusSlaveProcess()--------------------------- +I (54053) modbus: check id... +I (54053) modbus: ok +I (54053) modbus: add: 0, length: 10 +I (54053) modbus: Read Holding Registers +I (54453) example: expect speed: 0.000000 real_pulses:0 +I (54453) example: new speed:0.000000 +I (55043) modbus tcp: ModBusSlave_recv() +I (55043) modbus: ModbusSlaveProcess()--------------------------- +I (55043) modbus: check id... +I (55043) modbus: ok +I (55043) modbus: add: 0, length: 10 +I (55043) modbus: Read Holding Registers +I (55453) example: expect speed: 0.000000 real_pulses:0 +I (55453) example: new speed:0.000000 +I (56063) modbus tcp: ModBusSlave_recv() +I (56063) modbus: ModbusSlaveProcess()--------------------------- +I (56063) modbus: check id... +I (56063) modbus: ok +I (56063) modbus: add: 0, length: 10 +I (56063) modbus: Read Holding Registers +I (56453) example: expect speed: 0.000000 real_pulses:0 +I (56453) example: new speed:0.000000 +I (57093) modbus tcp: ModBusSlave_recv() +I (57093) modbus: ModbusSlaveProcess()--------------------------- +I (57093) modbus: check id... +I (57093) modbus: ok +I (57093) modbus: add: 0, length: 10 +I (57093) modbus: Read Holding Registers +I (57453) example: expect speed: 0.000000 real_pulses:0 +I (57453) example: new speed:0.000000 +I (58113) modbus tcp: ModBusSlave_recv() +I (58113) modbus: ModbusSlaveProcess()--------------------------- +I (58123) modbus: check id... +I (58123) modbus: ok +I (58123) modbus: add: 0, length: 10 +I (58123) modbus: Read Holding Registers +I (58453) example: expect speed: 0.000000 real_pulses:0 +I (58453) example: new speed:0.000000 +I (59143) modbus tcp: ModBusSlave_recv() +I (59143) modbus: ModbusSlaveProcess()--------------------------- +I (59143) modbus: check id... +I (59143) modbus: ok +I (59143) modbus: add: 0, length: 10 +I (59143) modbus: Read Holding Registers +I (59453) example: expect speed: 0.000000 real_pulses:0 +I (59453) example: new speed:0.000000 +I (60163) modbus tcp: ModBusSlave_recv() +I (60163) modbus: ModbusSlaveProcess()--------------------------- +I (60163) modbus: check id... +I (60163) modbus: ok +I (60163) modbus: add: 0, length: 10 +I (60163) modbus: Read Holding Registers +I (60453) example: expect speed: 0.000000 real_pulses:0 +I (60453) example: new speed:0.000000 +I (61183) modbus tcp: ModBusSlave_recv() +I (61183) modbus: ModbusSlaveProcess()--------------------------- +I (61183) modbus: check id... +I (61183) modbus: ok +I (61183) modbus: add: 0, length: 10 +I (61183) modbus: Read Holding Registers +I (61453) example: expect speed: 0.000000 real_pulses:0 +I (61453) example: new speed:0.000000 +I (62213) modbus tcp: ModBusSlave_recv() +I (62213) modbus: ModbusSlaveProcess()--------------------------- +I (62213) modbus: check id... +I (62213) modbus: ok +I (62213) modbus: add: 0, length: 10 +I (62213) modbus: Read Holding Registers +I (62453) example: expect speed: 0.000000 real_pulses:0 +I (62453) example: new speed:0.000000 +I (63133) modbus tcp: ModBusSlave_recv() +I (63133) modbus: ModbusSlaveProcess()--------------------------- +I (63133) modbus: check id... +I (63133) modbus: ok +I (63133) modbus: add: 0, length: 10 +I (63133) modbus: Read Holding Registers +I (63453) example: expect speed: 0.000000 real_pulses:0 +I (63453) example: new speed:0.000000 +I (64153) modbus tcp: ModBusSlave_recv() +I (64153) modbus: ModbusSlaveProcess()--------------------------- +I (64153) modbus: check id... +I (64153) modbus: ok +I (64153) modbus: add: 0, length: 10 +I (64153) modbus: Read Holding Registers +I (64453) example: expect speed: 0.000000 real_pulses:0 +I (64453) example: new speed:0.000000 +I (65183) modbus tcp: ModBusSlave_recv() +I (65183) modbus: ModbusSlaveProcess()--------------------------- +I (65183) modbus: check id... +I (65183) modbus: ok +I (65183) modbus: add: 0, length: 10 +I (65183) modbus: Read Holding Registers +I (65453) example: expect speed: 0.000000 real_pulses:0 +I (65453) example: new speed:0.000000 +I (66203) modbus tcp: ModBusSlave_recv() +I (66203) modbus: ModbusSlaveProcess()--------------------------- +I (66203) modbus: check id... +I (66203) modbus: ok +I (66203) modbus: add: 0, length: 10 +I (66203) modbus: Read Holding Registers +I (66453) example: expect speed: 0.000000 real_pulses:0 +I (66453) example: new speed:0.000000 +I (67243) modbus tcp: ModBusSlave_recv() +I (67243) modbus: ModbusSlaveProcess()--------------------------- +I (67243) modbus: check id... +I (67253) modbus: ok +I (67253) modbus: add: 0, length: 10 +I (67253) modbus: Read Holding Registers +I (67453) example: expect speed: 0.000000 real_pulses:0 +I (67453) example: new speed:0.000000 +I (68253) modbus tcp: ModBusSlave_recv() +I (68253) modbus: ModbusSlaveProcess()--------------------------- +I (68253) modbus: check id... +I (68253) modbus: ok +I (68253) modbus: add: 0, length: 10 +I (68253) modbus: Read Holding Registers +I (68453) example: expect speed: 0.000000 real_pulses:0 +I (68453) example: new speed:0.000000 +I (69273) modbus tcp: ModBusSlave_recv() +I (69273) modbus: ModbusSlaveProcess()--------------------------- +I (69273) modbus: check id... +I (69273) modbus: ok +I (69273) modbus: add: 0, length: 10 +I (69273) modbus: Read Holding Registers +I (69453) example: expect speed: 0.000000 real_pulses:0 +I (69453) example: new speed:0.000000 +I (70353) modbus tcp: ModBusSlave_recv() +I (70353) modbus: ModbusSlaveProcess()--------------------------- +I (70353) modbus: check id... +I (70353) modbus: ok +I (70353) modbus: add: 0, length: 10 +I (70353) modbus: Read Holding Registers +I (70453) example: expect speed: 0.000000 real_pulses:0 +I (70453) example: new speed:0.000000 +I (71323) modbus tcp: ModBusSlave_recv() +I (71323) modbus: ModbusSlaveProcess()--------------------------- +I (71323) modbus: check id... +I (71323) modbus: ok +I (71323) modbus: add: 0, length: 10 +I (71323) modbus: Read Holding Registers +I (71453) example: expect speed: 0.000000 real_pulses:0 +I (71453) example: new speed:0.000000 +I (72343) modbus tcp: ModBusSlave_recv() +I (72353) modbus: ModbusSlaveProcess()--------------------------- +I (72353) modbus: check id... +I (72353) modbus: ok +I (72353) modbus: add: 0, length: 10 +I (72353) modbus: Read Holding Registers +I (72453) example: expect speed: 0.000000 real_pulses:0 +I (72453) example: new speed:0.000000 +I (73373) modbus tcp: ModBusSlave_recv() +I (73373) modbus: ModbusSlaveProcess()--------------------------- +I (73373) modbus: check id... +I (73373) modbus: ok +I (73373) modbus: add: 0, length: 10 +I (73373) modbus: Read Holding Registers +I (73453) example: expect speed: 0.000000 real_pulses:0 +I (73453) example: new speed:0.000000 +I (74393) modbus tcp: ModBusSlave_recv() +I (74393) modbus: ModbusSlaveProcess()--------------------------- +I (74393) modbus: check id... +I (74393) modbus: ok +I (74393) modbus: add: 0, length: 10 +I (74393) modbus: Read Holding Registers +I (74453) example: expect speed: 0.000000 real_pulses:0 +I (74453) example: new speed:0.000000 +I (75453) example: expect speed: 0.000000 real_pulses:0 +I (75453) example: new speed:0.000000 +I (75523) modbus tcp: ModBusSlave_recv() +I (75523) modbus: ModbusSlaveProcess()--------------------------- +I (75523) modbus: check id... +I (75523) modbus: ok +I (75523) modbus: add: 0, length: 10 +I (75523) modbus: Read Holding Registers +I (76343) modbus tcp: ModBusSlave_recv() +I (76343) modbus: ModbusSlaveProcess()--------------------------- +I (76343) modbus: check id... +I (76343) modbus: ok +I (76343) modbus: add: 0, length: 10 +I (76343) modbus: Read Holding Registers +I (76453) example: expect speed: 0.000000 real_pulses:0 +I (76453) example: new speed:0.000000 +I (77393) modbus tcp: ModBusSlave_recv() +I (77403) modbus: ModbusSlaveProcess()--------------------------- +I (77403) modbus: check id... +I (77403) modbus: ok +I (77403) modbus: add: 0, length: 10 +I (77403) modbus: Read Holding Registers +I (77453) example: expect speed: 0.000000 real_pulses:0 +I (77453) example: new speed:0.000000 +I (78453) example: expect speed: 0.000000 real_pulses:0 +I (78453) example: new speed:0.000000 +I (78543) modbus tcp: ModBusSlave_recv() +I (78543) modbus: ModbusSlaveProcess()--------------------------- +I (78543) modbus: check id... +I (78543) modbus: ok +I (78543) modbus: add: 0, length: 10 +I (78543) modbus: Read Holding Registers +I (79413) modbus tcp: ModBusSlave_recv() +I (79413) modbus: ModbusSlaveProcess()--------------------------- +I (79413) modbus: check id... +I (79413) modbus: ok +I (79413) modbus: add: 0, length: 10 +I (79413) modbus: Read Holding Registers +I (79453) example: expect speed: 0.000000 real_pulses:0 +I (79453) example: new speed:0.000000 +I (80433) modbus tcp: ModBusSlave_recv() +I (80443) modbus: ModbusSlaveProcess()--------------------------- +I (80443) modbus: check id... +I (80443) modbus: ok +I (80443) modbus: add: 0, length: 10 +I (80443) modbus: Read Holding Registers +I (80453) example: expect speed: 0.000000 real_pulses:0 +I (80453) example: new speed:0.000000 +I (81453) example: expect speed: 0.000000 real_pulses:0 +I (81453) example: new speed:0.000000 +I (81463) modbus tcp: ModBusSlave_recv() +I (81463) modbus: ModbusSlaveProcess()--------------------------- +I (81463) modbus: check id... +I (81463) modbus: ok +I (81463) modbus: add: 0, length: 10 +I (81463) modbus: Read Holding Registers +I (82453) example: expect speed: 0.000000 real_pulses:0 +I (82453) example: new speed:0.000000 +I (82493) modbus tcp: ModBusSlave_recv() +I (82493) modbus: ModbusSlaveProcess()--------------------------- +I (82493) modbus: check id... +I (82493) modbus: ok +I (82493) modbus: add: 0, length: 10 +I (82493) modbus: Read Holding Registers +I (83453) example: expect speed: 0.000000 real_pulses:0 +I (83453) example: new speed:0.000000 +I (83513) modbus tcp: ModBusSlave_recv() +I (83513) modbus: ModbusSlaveProcess()--------------------------- +I (83513) modbus: check id... +I (83513) modbus: ok +I (83513) modbus: add: 0, length: 10 +I (83513) modbus: Read Holding Registers +I (84453) example: expect speed: 0.000000 real_pulses:0 +I (84453) example: new speed:0.000000 +I (84533) modbus tcp: ModBusSlave_recv() +I (84533) modbus: ModbusSlaveProcess()--------------------------- +I (84533) modbus: check id... +I (84533) modbus: ok +I (84533) modbus: add: 0, length: 10 +I (84533) modbus: Read Holding Registers +I (85453) example: expect speed: 0.000000 real_pulses:0 +I (85453) example: new speed:0.000000 +I (85553) modbus tcp: ModBusSlave_recv() +I (85553) modbus: ModbusSlaveProcess()--------------------------- +I (85553) modbus: check id... +I (85563) modbus: ok +I (85563) modbus: add: 0, length: 10 +I (85563) modbus: Read Holding Registers +I (86453) example: expect speed: 0.000000 real_pulses:0 +I (86453) example: new speed:0.000000 +I (86713) modbus tcp: ModBusSlave_recv() +I (86713) modbus: ModbusSlaveProcess()--------------------------- +I (86713) modbus: check id... +I (86713) modbus: ok +I (86713) modbus: add: 0, length: 10 +I (86713) modbus: Read Holding Registers +I (87453) example: expect speed: 0.000000 real_pulses:0 +I (87453) example: new speed:0.000000 +I (87503) modbus tcp: ModBusSlave_recv() +I (87503) modbus: ModbusSlaveProcess()--------------------------- +I (87503) modbus: check id... +I (87503) modbus: ok +I (87503) modbus: add: 0, length: 10 +I (87503) modbus: Read Holding Registers +I (88453) example: expect speed: 0.000000 real_pulses:0 +I (88453) example: new speed:0.000000 +I (88653) modbus tcp: ModBusSlave_recv() +I (88653) modbus: ModbusSlaveProcess()--------------------------- +I (88653) modbus: check id... +I (88653) modbus: ok +I (88653) modbus: add: 0, length: 10 +I (88653) modbus: Read Holding Registers +I (89453) example: expect speed: 0.000000 real_pulses:0 +I (89453) example: new speed:0.000000 +I (89553) modbus tcp: ModBusSlave_recv() +I (89553) modbus: ModbusSlaveProcess()--------------------------- +I (89553) modbus: check id... +I (89553) modbus: ok +I (89553) modbus: add: 0, length: 10 +I (89553) modbus: Read Holding Registers +I (90453) example: expect speed: 0.000000 real_pulses:0 +I (90453) example: new speed:0.000000 +I (90583) modbus tcp: ModBusSlave_recv() +I (90583) modbus: ModbusSlaveProcess()--------------------------- +I (90583) modbus: check id... +I (90583) modbus: ok +I (90583) modbus: add: 0, length: 10 +I (90583) modbus: Read Holding Registers +I (91453) example: expect speed: 0.000000 real_pulses:0 +I (91453) example: new speed:0.000000 +I (91663) modbus tcp: ModBusSlave_recv() +I (91663) modbus: ModbusSlaveProcess()--------------------------- +I (91663) modbus: check id... +I (91663) modbus: ok +I (91663) modbus: add: 0, length: 10 +I (91663) modbus: Read Holding Registers +I (92453) example: expect speed: 0.000000 real_pulses:0 +I (92453) example: new speed:0.000000 +I (92623) modbus tcp: ModBusSlave_recv() +I (92623) modbus: ModbusSlaveProcess()--------------------------- +I (92623) modbus: check id... +I (92623) modbus: ok +I (92623) modbus: add: 0, length: 10 +I (92623) modbus: Read Holding Registers +I (93453) example: expect speed: 0.000000 real_pulses:0 +I (93453) example: new speed:0.000000 +I (93643) modbus tcp: ModBusSlave_recv() +I (93643) modbus: ModbusSlaveProcess()--------------------------- +I (93643) modbus: check id... +I (93643) modbus: ok +I (93653) modbus: add: 0, length: 10 +I (93653) modbus: Read Holding Registers +I (94453) example: expect speed: 0.000000 real_pulses:0 +I (94453) example: new speed:0.000000 +I (94673) modbus tcp: ModBusSlave_recv() +I (94673) modbus: ModbusSlaveProcess()--------------------------- +I (94673) modbus: check id... +I (94673) modbus: ok +I (94673) modbus: add: 0, length: 10 +I (94673) modbus: Read Holding Registers +I (95453) example: expect speed: 0.000000 real_pulses:0 +I (95453) example: new speed:0.000000 +I (95693) modbus tcp: ModBusSlave_recv() +I (95693) modbus: ModbusSlaveProcess()--------------------------- +I (95693) modbus: check id... +I (95693) modbus: ok +I (95693) modbus: add: 0, length: 10 +I (95693) modbus: Read Holding Registers +I (96453) example: expect speed: 0.000000 real_pulses:0 +I (96453) example: new speed:0.000000 +I (96743) modbus tcp: ModBusSlave_recv() +I (96743) modbus: ModbusSlaveProcess()--------------------------- +I (96743) modbus: check id... +I (96743) modbus: ok +I (96743) modbus: add: 0, length: 10 +I (96743) modbus: Read Holding Registers +I (97453) example: expect speed: 0.000000 real_pulses:0 +I (97453) example: new speed:0.000000 +I (97743) modbus tcp: ModBusSlave_recv() +I (97743) modbus: ModbusSlaveProcess()--------------------------- +I (97743) modbus: check id... +I (97743) modbus: ok +I (97743) modbus: add: 0, length: 10 +I (97743) modbus: Read Holding Registers +I (98453) example: expect speed: 0.000000 real_pulses:0 +I (98453) example: new speed:0.000000 +I (98773) modbus tcp: ModBusSlave_recv() +I (98773) modbus: ModbusSlaveProcess()--------------------------- +I (98773) modbus: check id... +I (98773) modbus: ok +I (98773) modbus: add: 0, length: 10 +I (98773) modbus: Read Holding Registers +I (99453) example: expect speed: 0.000000 real_pulses:0 +I (99453) example: new speed:0.000000 +I (99693) modbus tcp: ModBusSlave_recv() +I (99693) modbus: ModbusSlaveProcess()--------------------------- +I (99693) modbus: check id... +I (99693) modbus: ok +I (99693) modbus: add: 0, length: 10 +I (99693) modbus: Read Holding Registers +I (100453) example: expect speed: 0.000000 real_pulses:0 +I (100453) example: new speed:0.000000 +I (100713) modbus tcp: ModBusSlave_recv() +I (100713) modbus: ModbusSlaveProcess()--------------------------- +I (100713) modbus: check id... +I (100713) modbus: ok +I (100713) modbus: add: 0, length: 10 +I (100713) modbus: Read Holding Registers +I (101453) example: expect speed: 0.000000 real_pulses:0 +I (101453) example: new speed:0.000000 +I (101733) modbus tcp: ModBusSlave_recv() +I (101733) modbus: ModbusSlaveProcess()--------------------------- +I (101733) modbus: check id... +I (101733) modbus: ok +I (101733) modbus: add: 0, length: 10 +I (101733) modbus: Read Holding Registers +I (102453) example: expect speed: 0.000000 real_pulses:0 +I (102453) example: new speed:0.000000 +I (102763) modbus tcp: ModBusSlave_recv() +I (102763) modbus: ModbusSlaveProcess()--------------------------- +I (102763) modbus: check id... +I (102763) modbus: ok +I (102763) modbus: add: 0, length: 10 +I (102763) modbus: Read Holding Registers +I (103453) example: expect speed: 0.000000 real_pulses:0 +I (103453) example: new speed:0.000000 +I (103783) modbus tcp: ModBusSlave_recv() +I (103783) modbus: ModbusSlaveProcess()--------------------------- +I (103783) modbus: check id... +I (103783) modbus: ok +I (103783) modbus: add: 0, length: 10 +I (103783) modbus: Read Holding Registers +I (104453) example: expect speed: 0.000000 real_pulses:0 +I (104453) example: new speed:0.000000 +I (104813) modbus tcp: ModBusSlave_recv() +I (104813) modbus: ModbusSlaveProcess()--------------------------- +I (104813) modbus: check id... +I (104813) modbus: ok +I (104813) modbus: add: 0, length: 10 +I (104813) modbus: Read Holding Registers +I (105453) example: expect speed: 0.000000 real_pulses:0 +I (105453) example: new speed:0.000000 +I (105893) modbus tcp: ModBusSlave_recv() +I (105893) modbus: ModbusSlaveProcess()--------------------------- +I (105893) modbus: check id... +I (105893) modbus: ok +I (105893) modbus: add: 0, length: 10 +I (105893) modbus: Read Holding Registers diff --git a/build/log/idf_py_stdout_output_16732 b/build/log/idf_py_stdout_output_16732 new file mode 100644 index 0000000..1787816 --- /dev/null +++ b/build/log/idf_py_stdout_output_16732 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b10 bytes. Smallest app partition is 0x100000 bytes. 0x4d4f0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 446.5 kbit/s)... +Hash of data verified. +Compressed 731920 bytes to 462320... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd1c... (6 %) +Writing at 0x00026249... (10 %) +Writing at 0x0002b756... (13 %) +Writing at 0x00035bc1... (17 %) +Writing at 0x0003b961... (20 %) +Writing at 0x000414d9... (24 %) +Writing at 0x0004762a... (27 %) +Writing at 0x0004dc7d... (31 %) +Writing at 0x0005360f... (34 %) +Writing at 0x00058c3a... (37 %) +Writing at 0x0005e47c... (41 %) +Writing at 0x00063d9f... (44 %) +Writing at 0x0006992d... (48 %) +Writing at 0x0006f548... (51 %) +Writing at 0x000743c8... (55 %) +Writing at 0x00079478... (58 %) +Writing at 0x0007e4cb... (62 %) +Writing at 0x000837c2... (65 %) +Writing at 0x00088cbc... (68 %) +Writing at 0x0008e734... (72 %) +Writing at 0x00093ec6... (75 %) +Writing at 0x00099869... (79 %) +Writing at 0x0009f878... (82 %) +Writing at 0x000a50c4... (86 %) +Writing at 0x000aae10... (89 %) +Writing at 0x000b4b91... (93 %) +Writing at 0x000bb8b8... (96 %) +Writing at 0x000c1180... (100 %) +Wrote 731920 bytes (462320 compressed) at 0x00010000 in 7.7 seconds (effective 763.1 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 481.9 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_16912 b/build/log/idf_py_stdout_output_16912 new file mode 100644 index 0000000..b191e6f --- /dev/null +++ b/build/log/idf_py_stdout_output_16912 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b80 bytes. Smallest app partition is 0x100000 bytes. 0x4d480 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 + +A fatal error occurred: Could not open COM6, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_16972 b/build/log/idf_py_stdout_output_16972 new file mode 100644 index 0000000..8dcef4a --- /dev/null +++ b/build/log/idf_py_stdout_output_16972 @@ -0,0 +1,36 @@ +[1/10] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/8] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c: In function 'ModbusSlaveProcess': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:144:11: warning: unused variable 'tlv_len' [-Wunused-variable] + 144 | uint8_t tlv_len = 0; + | ^~~~~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:142:12: warning: unused variable 'pVar' [-Wunused-variable] + 142 | uint8_t *pVar; + | ^~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:138:12: warning: unused variable 'temp_cnt' [-Wunused-variable] + 138 | uint16_t temp_cnt; + | ^~~~~~~~ +[3/8] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c: In function 'pid_loop_cb': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:109:11: warning: unused variable 'speed' [-Wunused-variable] + 109 | float speed = (float)(motor_control->speed * motor_control->foreward); + | ^~~~~ +[4/8] Linking C static library esp-idf\main\libmain.a +[5/8] Generating ld/sections.ld +[6/8] Linking CXX executable wifi_station.elf +[7/8] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[8/8] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b10 bytes. Smallest app partition is 0x100000 bytes. 0x4d4f0 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_17236 b/build/log/idf_py_stdout_output_17236 new file mode 100644 index 0000000..86f5616 --- /dev/null +++ b/build/log/idf_py_stdout_output_17236 @@ -0,0 +1,58220 @@ +I (26251) example: expect speed: 0.000000 real_pulsesESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21588h (136584) map +I (121) esp_image: segment 1: paddr=000315b0 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353b8 vaddr=40374000 size=0ac60h ( 44128) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae88h (503432) map +I (227) esp_image: segment 4: paddr=000baeb0 vaddr=4037ec60 size=07cb4h ( 31924) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 944620b54697f4b9... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (374) wifi station: wifi_init_sta finished. +I (454) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (464) wifi:state: init -> auth (b0) +I (464) wifi:state: auth -> assoc (0) +I (474) wifi:state: assoc -> run (10) +I (524) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (524) wifi:security: WPA2-PSK, phy: bgn, rssi: -80 +I (524) wifi:pm start, type: 1 + +I (524) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (524) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (524) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (564) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1524) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (1524) wifi station: got ip:192.168.1.107 +I (1524) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1524) modbus tcp: ModBusTCPSlave_init() +I (1524) example: Create DC motor +I (1524) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1524) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1524) example: Init pcnt driver to decode rotary signal +I (1524) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1524) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1524) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1524) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1524) example: Create PID control block +I (1524) example: Create a timer to do PID calculation periodically +I (1524) example: Enable motor +I (1524) example: Forward motor +I (1524) example: Start motor speed loop +I (1534) example: expect speed: 0.000000 real_pulses:0 +I (1534) example: new speed:399.000000 +I (1544) example: expect speed: 0.000000 real_pulses:0 +I (1544) example: new speed:399.000000 +I (1554) example: expect speed: 0.000000 real_pulses:0 +I (1554) example: new speed:399.000000 +I (1564) example: expect speed: 0.000000 real_pulses:0 +I (1564) example: new speed:399.000000 +I (1574) example: expect speed: 0.000000 real_pulses:0 +I (1574) example: new speed:399.000000 +I (1584) example: expect speed: 0.000000 real_pulses:0 +I (1594) example: new speed:399.000000 +I (1594) example: expect speed: 0.000000 real_pulses:0 +I (1594) example: new speed:399.000000 +I (1604) example: expect speed: 0.000000 real_pulses:0 +I (1604) example: new speed:399.000000 +I (1614) example: expect speed: 0.000000 real_pulses:0 +I (1614) example: new speed:399.000000 +I (1624) example: expect speed: 0.000000 real_pulses:0 +I (1624) example: new speed:399.000000 +I (1634) example: expect speed: 0.000000 real_pulses:0 +I (1634) example: new speed:399.000000 +I (1644) example: expect speed: 0.000000 real_pulses:0 +I (1644) example: new speed:399.000000 +I (1654) example: expect speed: 0.000000 real_pulses:0 +I (1654) example: new speed:399.000000 +I (1664) example: expect speed: 0.000000 real_pulses:0 +I (1664) example: new speed:399.000000 +I (1674) example: expect speed: 0.000000 real_pulses:0 +I (1674) example: new speed:399.000000 +I (1684) example: expect speed: 0.000000 real_pulses:0 +I (1684) example: new speed:399.000000 +I (1694) example: expect speed: 0.000000 real_pulses:0 +I (1694) example: new speed:399.000000 +I (1704) example: expect speed: 0.000000 real_pulses:0 +I (1704) example: new speed:399.000000 +I (1714) example: expect speed: 0.000000 real_pulses:0 +I (1714) example: new speed:399.000000 +I (1724) example: expect speed: 0.000000 real_pulses:0 +I (1724) example: new speed:399.000000 +I (1734) example: expect speed: 0.000000 real_pulses:0 +I (1734) example: new speed:399.000000 +I (1744) example: expect speed: 0.000000 real_pulses:0 +I (1744) example: new speed:399.000000 +I (1754) example: expect speed: 0.000000 real_pulses:0 +I (1754) example: new speed:399.000000 +I (1764) example: expect speed: 0.000000 real_pulses:0 +I (1764) example: new speed:399.000000 +I (1774) example: expect speed: 0.000000 real_pulses:0 +I (1774) example: new speed:399.000000 +I (1784) example: expect speed: 0.000000 real_pulses:0 +I (1784) example: new speed:399.000000 +I (1794) example: expect speed: 0.000000 real_pulses:0 +I (1794) example: new speed:399.000000 +I (1804) example: expect speed: 0.000000 real_pulses:0 +I (1804) example: new speed:399.000000 +I (1814) example: expect speed: 0.000000 real_pulses:0 +I (1814) example: new speed:399.000000 +I (1824) example: expect speed: 0.000000 real_pulses:0 +I (1824) example: new speed:399.000000 +I (1834) example: expect speed: 0.000000 real_pulses:0 +I (1834) example: new speed:399.000000 +I (1844) example: expect speed: 0.000000 real_pulses:0 +I (1844) example: new speed:399.000000 +I (1854) example: expect speed: 0.000000 real_pulses:0 +I (1854) example: new speed:399.000000 +I (1864) example: expect speed: 0.000000 real_pulses:0 +I (1864) example: new speed:399.000000 +I (1874) example: expect speed: 0.000000 real_pulses:0 +I (1874) example: new speed:399.000000 +I (1884) example: expect speed: 0.000000 real_pulses:0 +I (1884) example: new speed:399.000000 +I (1894) example: expect speed: 0.000000 real_pulses:0 +I (1904) example: new speed:399.000000 +I (1904) example: expect speed: 0.000000 real_pulses:0 +I (1914) example: new speed:399.000000 +I (1914) example: expect speed: 0.000000 real_pulses:0 +I (1924) example: new speed:399.000000 +I (1924) example: expect speed: 0.000000 real_pulses:0 +I (1924) example: new speed:399.000000 +I (1934) example: expect speed: 0.000000 real_pulses:0 +I (1934) example: new speed:399.000000 +I (1944) example: expect speed: 0.000000 real_pulses:0 +I (1944) example: new speed:399.000000 +I (1954) example: expect speed: 0.000000 real_pulses:0 +I (1954) example: new speed:399.000000 +I (1964) example: expect speed: 0.000000 real_pulses:0 +I (1964) example: new speed:399.000000 +I (1974) example: expect speed: 0.000000 real_pulses:0 +I (1984) example: new speed:399.000000 +I (1984) example: expect speed: 0.000000 real_pulses:0 +I (1984) example: new speed:399.000000 +I (1994) example: expect speed: 0.000000 real_pulses:0 +I (1994) example: new speed:399.000000 +I (2004) example: expect speed: 0.000000 real_pulses:0 +I (2004) example: new speed:399.000000 +I (2014) example: expect speed: 0.000000 real_pulses:0 +I (2014) example: new speed:399.000000 +I (2024) example: expect speed: 0.000000 real_pulses:0 +I (2024) example: new speed:399.000000 +I (2034) example: expect speed: 0.000000 real_pulses:0 +I (2034) example: new speed:399.000000 +I (2044) example: expect speed: 0.000000 real_pulses:0 +I (2044) example: new speed:399.000000 +I (2054) example: expect speed: 0.000000 real_pulses:0 +I (2054) example: new speed:399.000000 +I (2064) example: expect speed: 0.000000 real_pulses:0 +I (2064) example: new speed:399.000000 +I (2074) example: expect speed: 0.000000 real_pulses:0 +I (2074) example: new speed:399.000000 +I (2084) example: expect speed: 0.000000 real_pulses:0 +I (2094) example: new speed:399.000000 +I (2094) example: expect speed: 0.000000 real_pulses:0 +I (2094) example: new speed:399.000000 +I (2104) example: expect speed: 0.000000 real_pulses:0 +I (2104) example: new speed:399.000000 +I (2114) example: expect speed: 0.000000 real_pulses:0 +I (2114) example: new speed:399.000000 +I (2124) example: expect speed: 0.000000 real_pulses:0 +I (2124) example: new speed:399.000000 +I (2134) example: expect speed: 0.000000 real_pulses:0 +I (2134) example: new speed:399.000000 +I (2144) example: expect speed: 0.000000 real_pulses:0 +I (2144) example: new speed:399.000000 +I (2154) example: expect speed: 0.000000 real_pulses:0 +I (2154) example: new speed:399.000000 +I (2164) example: expect speed: 0.000000 real_pulses:0 +I (2164) example: new speed:399.000000 +I (2174) example: expect speed: 0.000000 real_pulses:0 +I (2174) example: new speed:399.000000 +I (2184) example: expect speed: 0.000000 real_pulses:0 +I (2184) example: new speed:399.000000 +I (2194) example: expect speed: 0.000000 real_pulses:0 +I (2194) example: new speed:399.000000 +I (2204) example: expect speed: 0.000000 real_pulses:0 +I (2204) example: new speed:399.000000 +I (2214) example: expect speed: 0.000000 real_pulses:0 +I (2214) example: new speed:399.000000 +I (2224) example: expect speed: 0.000000 real_pulses:0 +I (2224) example: new speed:399.000000 +I (2234) example: expect speed: 0.000000 real_pulses:0 +I (2234) example: new speed:399.000000 +I (2244) example: expect speed: 0.000000 real_pulses:0 +I (2244) example: new speed:399.000000 +I (2254) example: expect speed: 0.000000 real_pulses:0 +I (2254) example: new speed:399.000000 +I (2264) example: expect speed: 0.000000 real_pulses:0 +I (2264) example: new speed:399.000000 +I (2274) example: expect speed: 0.000000 real_pulses:0 +I (2274) example: new speed:399.000000 +I (2284) example: expect speed: 0.000000 real_pulses:0 +I (2284) example: new speed:399.000000 +I (2294) example: expect speed: 0.000000 real_pulses:0 +I (2294) example: new speed:399.000000 +I (2304) example: expect speed: 0.000000 real_pulses:0 +I (2314) example: new speed:399.000000 +I (2314) example: expect speed: 0.000000 real_pulses:0 +I (2314) example: new speed:399.000000 +I (2324) example: expect speed: 0.000000 real_pulses:0 +I (2324) example: new speed:399.000000 +I (2334) example: expect speed: 0.000000 real_pulses:0 +I (2334) example: new speed:399.000000 +I (2344) example: expect speed: 0.000000 real_pulses:0 +I (2344) example: new speed:399.000000 +I (2354) example: expect speed: 0.000000 real_pulses:0 +I (2354) example: new speed:399.000000 +I (2364) example: expect speed: 0.000000 real_pulses:0 +I (2374) example: new speed:399.000000 +I (2374) example: expect speed: 0.000000 real_pulses:0 +I (2374) example: new speed:399.000000 +I (2384) example: expect speed: 0.000000 real_pulses:0 +I (2384) example: new speed:399.000000 +I (2394) example: expect speed: 0.000000 real_pulses:0 +I (2394) example: new speed:399.000000 +I (2404) example: expect speed: 0.000000 real_pulses:0 +I (2414) example: new speed:399.000000 +I (2414) example: expect speed: 0.000000 real_pulses:0 +I (2414) example: new speed:399.000000 +I (2424) example: expect speed: 0.000000 real_pulses:0 +I (2424) example: new speed:399.000000 +I (2434) example: expect speed: 0.000000 real_pulses:0 +I (2434) example: new speed:399.000000 +I (2444) example: expect speed: 0.000000 real_pulses:0 +I (2444) example: new speed:399.000000 +I (2454) example: expect speed: 0.000000 real_pulses:0 +I (2454) example: new speed:399.000000 +I (2464) example: expect speed: 0.000000 real_pulses:0 +I (2464) example: new speed:399.000000 +I (2474) example: expect speed: 0.000000 real_pulses:0 +I (2474) example: new speed:399.000000 +I (2484) example: expect speed: 0.000000 real_pulses:0 +I (2484) example: new speed:399.000000 +I (2494) example: expect speed: 0.000000 real_pulses:0 +I (2494) example: new speed:399.000000 +I (2504) example: expect speed: 0.000000 real_pulses:0 +I (2504) example: new speed:399.000000 +I (2514) example: expect speed: 0.000000 real_pulses:0 +I (2514) example: new speed:399.000000 +I (2524) example: expect speed: 0.000000 real_pulses:0 +I (2524) example: new speed:399.000000 +I (2534) example: expect speed: 0.000000 real_pulses:0 +I (2534) example: new speed:399.000000 +I (2544) example: expect speed: 0.000000 real_pulses:0 +I (2544) example: new speed:399.000000 +I (2554) example: expect speed: 0.000000 real_pulses:0 +I (2554) example: new speed:399.000000 +I (2564) example: expect speed: 0.000000 real_pulses:0 +I (2564) example: new speed:399.000000 +I (2574) example: expect speed: 0.000000 real_pulses:0 +I (2574) example: new speed:399.000000 +I (2584) example: expect speed: 0.000000 real_pulses:0 +I (2584) example: new speed:399.000000 +I (2594) example: expect speed: 0.000000 real_pulses:0 +I (2594) example: new speed:399.000000 +I (2604) example: expect speed: 0.000000 real_pulses:0 +I (2604) example: new speed:399.000000 +I (2614) example: expect speed: 0.000000 real_pulses:0 +I (2614) example: new speed:399.000000 +I (2624) example: expect speed: 0.000000 real_pulses:0 +I (2624) example: new speed:399.000000 +I (2634) example: expect speed: 0.000000 real_pulses:0 +I (2634) example: new speed:399.000000 +I (2644) example: expect speed: 0.000000 real_pulses:0 +I (2644) example: new speed:399.000000 +I (2654) example: expect speed: 0.000000 real_pulses:0 +I (2654) example: new speed:399.000000 +I (2664) example: expect speed: 0.000000 real_pulses:0 +I (2664) example: new speed:399.000000 +I (2674) example: expect speed: 0.000000 real_pulses:0 +I (2674) example: new speed:399.000000 +I (2684) example: expect speed: 0.000000 real_pulses:0 +I (2684) example: new speed:399.000000 +I (2694) example: expect speed: 0.000000 real_pulses:0 +I (2694) example: new speed:399.000000 +I (2704) example: expect speed: 0.000000 real_pulses:0 +I (2704) example: new speed:399.000000 +I (2714) example: expect speed: 0.000000 real_pulses:0 +I (2714) example: new speed:399.000000 +I (2724) example: expect speed: 0.000000 real_pulses:0 +I (2724) example: new speed:399.000000 +I (2734) example: expect speed: 0.000000 real_pulses:0 +I (2734) example: new speed:399.000000 +I (2744) example: expect speed: 0.000000 real_pulses:0 +I (2744) example: new speed:399.000000 +I (2754) example: expect speed: 0.000000 real_pulses:0 +I (2754) example: new speed:399.000000 +I (2764) example: expect speed: 0.000000 real_pulses:0 +I (2764) example: new speed:399.000000 +I (2774) example: expect speed: 0.000000 real_pulses:0 +I (2774) example: new speed:399.000000 +I (2784) example: expect speed: 0.000000 real_pulses:0 +I (2784) example: new speed:399.000000 +I (2794) example: expect speed: 0.000000 real_pulses:0 +I (2794) example: new speed:399.000000 +I (2804) example: expect speed: 0.000000 real_pulses:0 +I (2804) example: new speed:399.000000 +I (2814) example: expect speed: 0.000000 real_pulses:0 +I (2814) example: new speed:399.000000 +I (2824) example: expect speed: 0.000000 real_pulses:0 +I (2824) example: new speed:399.000000 +I (2834) example: expect speed: 0.000000 real_pulses:0 +I (2834) example: new speed:399.000000 +I (2844) example: expect speed: 0.000000 real_pulses:0 +I (2844) example: new speed:399.000000 +I (2854) example: expect speed: 0.000000 real_pulses:0 +I (2854) example: new speed:399.000000 +I (2864) example: expect speed: 0.000000 real_pulses:0 +I (2864) example: new speed:399.000000 +I (2874) example: expect speed: 0.000000 real_pulses:0 +I (2874) example: new speed:399.000000 +I (2884) example: expect speed: 0.000000 real_pulses:0 +I (2884) example: new speed:399.000000 +I (2894) example: expect speed: 0.000000 real_pulses:0 +I (2894) example: new speed:399.000000 +I (2904) example: expect speed: 0.000000 real_pulses:0 +I (2904) example: new speed:399.000000 +I (2914) example: expect speed: 0.000000 real_pulses:0 +I (2914) example: new speed:399.000000 +I (2924) example: expect speed: 0.000000 real_pulses:0 +I (2924) example: new speed:399.000000 +I (2934) example: expect speed: 0.000000 real_pulses:0 +I (2934) example: new speed:399.000000 +I (2944) example: expect speed: 0.000000 real_pulses:0 +I (2944) example: new speed:399.000000 +I (2954) example: expect speed: 0.000000 real_pulses:0 +I (2954) example: new speed:399.000000 +I (2964) example: expect speed: 0.000000 real_pulses:0 +I (2964) example: new speed:399.000000 +I (2974) example: expect speed: 0.000000 real_pulses:0 +I (2974) example: new speed:399.000000 +I (2984) example: expect speed: 0.000000 real_pulses:0 +I (2984) example: new speed:399.000000 +I (2994) example: expect speed: 0.000000 real_pulses:0 +I (2994) example: new speed:399.000000 +I (3004) example: expect speed: 0.000000 real_pulses:0 +I (3004) example: new speed:399.000000 +I (3014) example: expect speed: 0.000000 real_pulses:0 +I (3014) example: new speed:399.000000 +I (3024) example: expect speed: 0.000000 real_pulses:0 +I (3024) example: new speed:399.000000 +I (3034) example: expect speed: 0.000000 real_pulses:0 +I (3034) example: new speed:399.000000 +I (3044) example: expect speed: 0.000000 real_pulses:0 +I (3044) example: new speed:399.000000 +I (3054) example: expect speed: 0.000000 real_pulses:0 +I (3054) example: new speed:399.000000 +I (3064) example: expect speed: 0.000000 real_pulses:0 +I (3064) example: new speed:399.000000 +I (3074) example: expect speed: 0.000000 real_pulses:0 +I (3074) example: new speed:399.000000 +I (3084) example: expect speed: 0.000000 real_pulses:0 +I (3084) example: new speed:399.000000 +I (3094) example: expect speed: 0.000000 real_pulses:0 +I (3094) example: new speed:399.000000 +I (3104) example: expect speed: 0.000000 real_pulses:0 +I (3104) example: new speed:399.000000 +I (3114) example: expect speed: 0.000000 real_pulses:0 +I (3124) example: new speed:399.000000 +I (3124) example: expect speed: 0.000000 real_pulses:0 +I (3124) example: new speed:399.000000 +I (3134) example: expect speed: 0.000000 real_pulses:0 +I (3134) example: new speed:399.000000 +I (3144) example: expect speed: 0.000000 real_pulses:0 +I (3144) example: new speed:399.000000 +I (3154) example: expect speed: 0.000000 real_pulses:0 +I (3154) example: new speed:399.000000 +I (3164) example: expect speed: 0.000000 real_pulses:0 +I (3164) example: new speed:399.000000 +I (3174) example: expect speed: 0.000000 real_pulses:0 +I (3174) example: new speed:399.000000 +I (3184) example: expect speed: 0.000000 real_pulses:0 +I (3184) example: new speed:399.000000 +I (3194) example: expect speed: 0.000000 real_pulses:0 +I (3194) example: new speed:399.000000 +I (3204) example: expect speed: 0.000000 real_pulses:0 +I (3204) example: new speed:399.000000 +I (3214) example: expect speed: 0.000000 real_pulses:0 +I (3214) example: new speed:399.000000 +I (3224) example: expect speed: 0.000000 real_pulses:0 +I (3224) example: new speed:399.000000 +I (3234) example: expect speed: 0.000000 real_pulses:0 +I (3234) example: new speed:399.000000 +I (3244) example: expect speed: 0.000000 real_pulses:0 +I (3244) example: new speed:399.000000 +I (3254) example: expect speed: 0.000000 real_pulses:0 +I (3254) example: new speed:399.000000 +I (3264) example: expect speed: 0.000000 real_pulses:0 +I (3264) example: new speed:399.000000 +I (3274) example: expect speed: 0.000000 real_pulses:0 +I (3274) example: new speed:399.000000 +I (3284) example: expect speed: 0.000000 real_pulses:0 +I (3284) example: new speed:399.000000 +I (3294) example: expect speed: 0.000000 real_pulses:0 +I (3294) example: new speed:399.000000 +I (3304) example: expect speed: 0.000000 real_pulses:0 +I (3314) example: new speed:399.000000 +I (3314) example: expect speed: 0.000000 real_pulses:0 +I (3314) example: new speed:399.000000 +I (3324) example: expect speed: 0.000000 real_pulses:0 +I (3334) example: new speed:399.000000 +I (3334) example: expect speed: 0.000000 real_pulses:0 +I (3334) example: new speed:399.000000 +I (3344) example: expect speed: 0.000000 real_pulses:0 +I (3344) example: new speed:399.000000 +I (3354) example: expect speed: 0.000000 real_pulses:0 +I (3364) example: new speed:399.000000 +I (3364) example: expect speed: 0.000000 real_pulses:0 +I (3364) example: new speed:399.000000 +I (3374) example: expect speed: 0.000000 real_pulses:0 +I (3374) example: new speed:399.000000 +I (3384) example: expect speed: 0.000000 real_pulses:0 +I (3384) example: new speed:399.000000 +I (3394) example: expect speed: 0.000000 real_pulses:0 +I (3394) example: new speed:399.000000 +I (3404) example: expect speed: 0.000000 real_pulses:0 +I (3404) example: new speed:399.000000 +I (3414) example: expect speed: 0.000000 real_pulses:0 +I (3414) example: new speed:399.000000 +I (3424) example: expect speed: 0.000000 real_pulses:0 +I (3424) example: new speed:399.000000 +I (3434) example: expect speed: 0.000000 real_pulses:0 +I (3434) example: new speed:399.000000 +I (3444) example: expect speed: 0.000000 real_pulses:0 +I (3444) example: new speed:399.000000 +I (3454) example: expect speed: 0.000000 real_pulses:0 +I (3454) example: new speed:399.000000 +I (3464) example: expect speed: 0.000000 real_pulses:0 +I (3464) example: new speed:399.000000 +I (3474) example: expect speed: 0.000000 real_pulses:0 +I (3474) example: new speed:399.000000 +I (3484) example: expect speed: 0.000000 real_pulses:0 +I (3484) example: new speed:399.000000 +I (3494) example: expect speed: 0.000000 real_pulses:0 +I (3494) example: new speed:399.000000 +I (3504) example: expect speed: 0.000000 real_pulses:0 +I (3504) example: new speed:399.000000 +I (3514) example: expect speed: 0.000000 real_pulses:0 +I (3514) example: new speed:399.000000 +I (3524) example: expect speed: 0.000000 real_pulses:0 +I (3524) example: new speed:399.000000 +I (3534) example: expect speed: 0.000000 real_pulses:0 +I (3534) example: new speed:399.000000 +I (3544) example: expect speed: 0.000000 real_pulses:0 +I (3544) example: new speed:399.000000 +I (3554) example: expect speed: 0.000000 real_pulses:0 +I (3554) example: new speed:399.000000 +I (3564) example: expect speed: 0.000000 real_pulses:0 +I (3564) example: new speed:399.000000 +I (3574) example: expect speed: 0.000000 real_pulses:0 +I (3574) example: new speed:399.000000 +I (3584) example: expect speed: 0.000000 real_pulses:0 +I (3584) example: new speed:399.000000 +I (3594) example: expect speed: 0.000000 real_pulses:0 +I (3594) example: new speed:399.000000 +I (3604) example: expect speed: 0.000000 real_pulses:0 +I (3604) example: new speed:399.000000 +I (3614) example: expect speed: 0.000000 real_pulses:0 +I (3614) example: new speed:399.000000 +I (3624) example: expect speed: 0.000000 real_pulses:0 +I (3624) example: new speed:399.000000 +I (3634) example: expect speed: 0.000000 real_pulses:0 +I (3634) example: new speed:399.000000 +I (3644) example: expect speed: 0.000000 real_pulses:0 +I (3644) example: new speed:399.000000 +I (3654) example: expect speed: 0.000000 real_pulses:0 +I (3654) example: new speed:399.000000 +I (3664) example: expect speed: 0.000000 real_pulses:0 +I (3664) example: new speed:399.000000 +I (3674) example: expect speed: 0.000000 real_pulses:0 +I (3674) example: new speed:399.000000 +I (3684) example: expect speed: 0.000000 real_pulses:0 +I (3684) example: new speed:399.000000 +I (3694) example: expect speed: 0.000000 real_pulses:0 +I (3694) example: new speed:399.000000 +I (3704) example: expect speed: 0.000000 real_pulses:0 +I (3704) example: new speed:399.000000 +I (3714) example: expect speed: 0.000000 real_pulses:0 +I (3714) example: new speed:399.000000 +I (3724) example: expect speed: 0.000000 real_pulses:0 +I (3724) example: new speed:399.000000 +I (3734) example: expect speed: 0.000000 real_pulses:0 +I (3734) example: new speed:399.000000 +I (3744) example: expect speed: 0.000000 real_pulses:0 +I (3744) example: new speed:399.000000 +I (3754) example: expect speed: 0.000000 real_pulses:0 +I (3754) example: new speed:399.000000 +I (3764) example: expect speed: 0.000000 real_pulses:0 +I (3764) example: new speed:399.000000 +I (3774) example: expect speed: 0.000000 real_pulses:0 +I (3774) example: new speed:399.000000 +I (3784) example: expect speed: 0.000000 real_pulses:0 +I (3784) example: new speed:399.000000 +I (3794) example: expect speed: 0.000000 real_pulses:0 +I (3794) example: new speed:399.000000 +I (3804) example: expect speed: 0.000000 real_pulses:0 +I (3804) example: new speed:399.000000 +I (3814) example: expect speed: 0.000000 real_pulses:0 +I (3814) example: new speed:399.000000 +I (3824) example: expect speed: 0.000000 real_pulses:0 +I (3824) example: new speed:399.000000 +I (3834) example: expect speed: 0.000000 real_pulses:0 +I (3834) example: new speed:399.000000 +I (3844) example: expect speed: 0.000000 real_pulses:0 +I (3844) example: new speed:399.000000 +I (3854) example: expect speed: 0.000000 real_pulses:0 +I (3854) example: new speed:399.000000 +I (3864) example: expect speed: 0.000000 real_pulses:0 +I (3864) example: new speed:399.000000 +I (3874) example: expect speed: 0.000000 real_pulses:0 +I (3874) example: new speed:399.000000 +I (3884) example: expect speed: 0.000000 real_pulses:0 +I (3884) example: new speed:399.000000 +I (3894) example: expect speed: 0.000000 real_pulses:0 +I (3894) example: new speed:399.000000 +I (3904) example: expect speed: 0.000000 real_pulses:0 +I (3904) example: new speed:399.000000 +I (3914) example: expect speed: 0.000000 real_pulses:0 +I (3914) example: new speed:399.000000 +I (3924) example: expect speed: 0.000000 real_pulses:0 +I (3924) example: new speed:399.000000 +I (3934) example: expect speed: 0.000000 real_pulses:0 +I (3934) example: new speed:399.000000 +I (3944) example: expect speed: 0.000000 real_pulses:0 +I (3944) example: new speed:399.000000 +I (3954) example: expect speed: 0.000000 real_pulses:0 +I (3954) example: new speed:399.000000 +I (3964) example: expect speed: 0.000000 real_pulses:0 +I (3964) example: new speed:399.000000 +I (3974) example: expect speed: 0.000000 real_pulses:0 +I (3974) example: new speed:399.000000 +I (3984) example: expect speed: 0.000000 real_pulses:0 +I (3984) example: new speed:399.000000 +I (3994) example: expect speed: 0.000000 real_pulses:0 +I (3994) example: new speed:399.000000 +I (4004) example: expect speed: 0.000000 real_pulses:0 +I (4004) example: new speed:399.000000 +I (4014) example: expect speed: 0.000000 real_pulses:0 +I (4014) example: new speed:399.000000 +I (4024) example: expect speed: 0.000000 real_pulses:0 +I (4024) example: new speed:399.000000 +I (4034) example: expect speed: 0.000000 real_pulses:0 +I (4034) example: new speed:399.000000 +I (4044) example: expect speed: 0.000000 real_pulses:0 +I (4054) example: new speed:399.000000 +I (4054) example: expect speed: 0.000000 real_pulses:0 +I (4064) example: new speed:399.000000 +I (4064) example: expect speed: 0.000000 real_pulses:0 +I (4074) example: new speed:399.000000 +I (4074) example: expect speed: 0.000000 real_pulses:0 +I (4074) example: new speed:399.000000 +I (4084) example: expect speed: 0.000000 real_pulses:0 +I (4084) example: new speed:399.000000 +I (4094) example: expect speed: 0.000000 real_pulses:0 +I (4094) example: new speed:399.000000 +I (4104) example: expect speed: 0.000000 real_pulses:0 +I (4104) example: new speed:399.000000 +I (4114) example: expect speed: 0.000000 real_pulses:0 +I (4114) example: new speed:399.000000 +I (4124) example: expect speed: 0.000000 real_pulses:0 +I (4124) example: new speed:399.000000 +I (4134) example: expect speed: 0.000000 real_pulses:0 +I (4134) example: new speed:399.000000 +I (4144) example: expect speed: 0.000000 real_pulses:0 +I (4144) example: new speed:399.000000 +I (4154) example: expect speed: 0.000000 real_pulses:0 +I (4154) example: new speed:399.000000 +I (4164) example: expect speed: 0.000000 real_pulses:0 +I (4164) example: new speed:399.000000 +I (4174) example: expect speed: 0.000000 real_pulses:0 +I (4174) example: new speed:399.000000 +I (4184) example: expect speed: 0.000000 real_pulses:0 +I (4184) example: new speed:399.000000 +I (4194) example: expect speed: 0.000000 real_pulses:0 +I (4194) example: new speed:399.000000 +I (4204) example: expect speed: 0.000000 real_pulses:0 +I (4204) example: new speed:399.000000 +I (4214) example: expect speed: 0.000000 real_pulses:0 +I (4214) example: new speed:399.000000 +I (4224) example: expect speed: 0.000000 real_pulses:0 +I (4224) example: new speed:399.000000 +I (4234) example: expect speed: 0.000000 real_pulses:0 +I (4234) example: new speed:399.000000 +I (4244) example: expect speed: 0.000000 real_pulses:0 +I (4244) example: new speed:399.000000 +I (4254) example: expect speed: 0.000000 real_pulses:0 +I (4254) example: new speed:399.000000 +I (4264) example: expect speed: 0.000000 real_pulses:0 +I (4264) example: new speed:399.000000 +I (4274) example: expect speed: 0.000000 real_pulses:0 +I (4274) example: new speed:399.000000 +I (4284) example: expect speed: 0.000000 real_pulses:0 +I (4284) example: new speed:399.000000 +I (4294) example: expect speed: 0.000000 real_pulses:0 +I (4294) example: new speed:399.000000 +I (4304) example: expect speed: 0.000000 real_pulses:0 +I (4314) example: new speed:399.000000 +I (4314) example: expect speed: 0.000000 real_pulses:0 +I (4314) example: new speed:399.000000 +I (4324) example: expect speed: 0.000000 real_pulses:0 +I (4324) example: new speed:399.000000 +I (4334) example: expect speed: 0.000000 real_pulses:0 +I (4334) example: new speed:399.000000 +I (4344) example: expect speed: 0.000000 real_pulses:0 +I (4354) example: new speed:399.000000 +I (4354) example: expect speed: 0.000000 real_pulses:0 +I (4364) example: new speed:399.000000 +I (4364) example: expect speed: 0.000000 real_pulses:0 +I (4364) example: new speed:399.000000 +I (4374) example: expect speed: 0.000000 real_pulses:0 +I (4374) example: new speed:399.000000 +I (4384) example: expect speed: 0.000000 real_pulses:0 +I (4384) example: new speed:399.000000 +I (4394) example: expect speed: 0.000000 real_pulses:0 +I (4394) example: new speed:399.000000 +I (4404) example: expect speed: 0.000000 real_pulses:0 +I (4404) example: new speed:399.000000 +I (4414) example: expect speed: 0.000000 real_pulses:0 +I (4414) example: new speed:399.000000 +I (4424) example: expect speed: 0.000000 real_pulses:0 +I (4424) example: new speed:399.000000 +I (4434) example: expect speed: 0.000000 real_pulses:0 +I (4434) example: new speed:399.000000 +I (4444) example: expect speed: 0.000000 real_pulses:0 +I (4444) example: new speed:399.000000 +I (4454) example: expect speed: 0.000000 real_pulses:0 +I (4454) example: new speed:399.000000 +I (4464) example: expect speed: 0.000000 real_pulses:0 +I (4464) example: new speed:399.000000 +I (4474) example: expect speed: 0.000000 real_pulses:0 +I (4474) example: new speed:399.000000 +I (4484) example: expect speed: 0.000000 real_pulses:0 +I (4484) example: new speed:399.000000 +I (4494) example: expect speed: 0.000000 real_pulses:0 +I (4494) example: new speed:399.000000 +I (4504) example: expect speed: 0.000000 real_pulses:0 +I (4504) example: new speed:399.000000 +I (4514) example: expect speed: 0.000000 real_pulses:0 +I (4514) example: new speed:399.000000 +I (4524) example: expect speed: 0.000000 real_pulses:0 +I (4524) example: new speed:399.000000 +I (4534) example: expect speed: 0.000000 real_pulses:0 +I (4534) example: new speed:399.000000 +I (4544) example: expect speed: 0.000000 real_pulses:0 +I (4544) example: new speed:399.000000 +I (4554) example: expect speed: 0.000000 real_pulses:0 +I (4554) example: new speed:399.000000 +I (4564) example: expect speed: 0.000000 real_pulses:0 +I (4564) example: new speed:399.000000 +I (4574) example: expect speed: 0.000000 real_pulses:0 +I (4574) example: new speed:399.000000 +I (4584) example: expect speed: 0.000000 real_pulses:0 +I (4584) example: new speed:399.000000 +I (4594) example: expect speed: 0.000000 real_pulses:0 +I (4594) example: new speed:399.000000 +I (4604) example: expect speed: 0.000000 real_pulses:0 +I (4604) example: new speed:399.000000 +I (4614) example: expect speed: 0.000000 real_pulses:0 +I (4614) example: new speed:399.000000 +I (4624) example: expect speed: 0.000000 real_pulses:0 +I (4624) example: new speed:399.000000 +I (4634) example: expect speed: 0.000000 real_pulses:0 +I (4634) example: new speed:399.000000 +I (4644) example: expect speed: 0.000000 real_pulses:0 +I (4644) example: new speed:399.000000 +I (4654) example: expect speed: 0.000000 real_pulses:0 +I (4654) example: new speed:399.000000 +I (4664) example: expect speed: 0.000000 real_pulses:0 +I (4664) example: new speed:399.000000 +I (4674) example: expect speed: 0.000000 real_pulses:0 +I (4674) example: new speed:399.000000 +I (4684) example: expect speed: 0.000000 real_pulses:0 +I (4684) example: new speed:399.000000 +I (4694) example: expect speed: 0.000000 real_pulses:0 +I (4694) example: new speed:399.000000 +I (4704) example: expect speed: 0.000000 real_pulses:0 +I (4704) example: new speed:399.000000 +I (4714) example: expect speed: 0.000000 real_pulses:0 +I (4714) example: new speed:399.000000 +I (4724) example: expect speed: 0.000000 real_pulses:0 +I (4724) example: new speed:399.000000 +I (4734) example: expect speed: 0.000000 real_pulses:0 +I (4734) example: new speed:399.000000 +I (4744) example: expect speed: 0.000000 real_pulses:0 +I (4744) example: new speed:399.000000 +I (4754) example: expect speed: 0.000000 real_pulses:0 +I (4754) example: new speed:399.000000 +I (4764) example: expect speed: 0.000000 real_pulses:0 +I (4764) example: new speed:399.000000 +I (4774) example: expect speed: 0.000000 real_pulses:0 +I (4774) example: new speed:399.000000 +I (4784) example: expect speed: 0.000000 real_pulses:0 +I (4784) example: new speed:399.000000 +I (4794) example: expect speed: 0.000000 real_pulses:0 +I (4794) example: new speed:399.000000 +I (4804) example: expect speed: 0.000000 real_pulses:0 +I (4804) example: new speed:399.000000 +I (4814) example: expect speed: 0.000000 real_pulses:0 +I (4814) example: new speed:399.000000 +I (4824) example: expect speed: 0.000000 real_pulses:0 +I (4824) example: new speed:399.000000 +I (4834) example: expect speed: 0.000000 real_pulses:0 +I (4834) example: new speed:399.000000 +I (4844) example: expect speed: 0.000000 real_pulses:0 +I (4844) example: new speed:399.000000 +I (4854) example: expect speed: 0.000000 real_pulses:0 +I (4854) example: new speed:399.000000 +I (4864) example: expect speed: 0.000000 real_pulses:0 +I (4864) example: new speed:399.000000 +I (4874) example: expect speed: 0.000000 real_pulses:0 +I (4874) example: new speed:399.000000 +I (4884) example: expect speed: 0.000000 real_pulses:0 +I (4884) example: new speed:399.000000 +I (4894) example: expect speed: 0.000000 real_pulses:0 +I (4894) example: new speed:399.000000 +I (4904) example: expect speed: 0.000000 real_pulses:0 +I (4904) example: new speed:399.000000 +I (4914) example: expect speed: 0.000000 real_pulses:0 +I (4914) example: new speed:399.000000 +I (4924) example: expect speed: 0.000000 real_pulses:0 +I (4924) example: new speed:399.000000 +I (4934) example: expect speed: 0.000000 real_pulses:0 +I (4934) example: new speed:399.000000 +I (4944) example: expect speed: 0.000000 real_pulses:0 +I (4944) example: new speed:399.000000 +I (4954) example: expect speed: 0.000000 real_pulses:0 +I (4954) example: new speed:399.000000 +I (4964) example: expect speed: 0.000000 real_pulses:0 +I (4964) example: new speed:399.000000 +I (4974) example: expect speed: 0.000000 real_pulses:0 +I (4974) example: new speed:399.000000 +I (4984) example: expect speed: 0.000000 real_pulses:0 +I (4984) example: new speed:399.000000 +I (4994) example: expect speed: 0.000000 real_pulses:0 +I (4994) example: new speed:399.000000 +I (5004) example: expect speed: 0.000000 real_pulses:0 +I (5004) example: new speed:399.000000 +I (5014) example: expect speed: 0.000000 real_pulses:0 +I (5014) example: new speed:399.000000 +I (5024) example: expect speed: 0.000000 real_pulses:0 +I (5024) example: new speed:399.000000 +I (5034) example: expect speed: 0.000000 real_pulses:0 +I (5034) example: new speed:399.000000 +I (5044) example: expect speed: 0.000000 real_pulses:0 +I (5044) example: new speed:399.000000 +I (5054) example: expect speed: 0.000000 real_pulses:0 +I (5054) example: new speed:399.000000 +I (5064) example: expect speed: 0.000000 real_pulses:0 +I (5064) example: new speed:399.000000 +I (5074) example: expect speed: 0.000000 real_pulses:0 +I (5074) example: new speed:399.000000 +I (5084) example: expect speed: 0.000000 real_pulses:0 +I (5084) example: new speed:399.000000 +I (5094) example: expect speed: 0.000000 real_pulses:0 +I (5094) example: new speed:399.000000 +I (5104) example: expect speed: 0.000000 real_pulses:0 +I (5104) example: new speed:399.000000 +I (5114) example: expect speed: 0.000000 real_pulses:0 +I (5114) example: new speed:399.000000 +I (5124) example: expect speed: 0.000000 real_pulses:0 +I (5124) example: new speed:399.000000 +I (5134) example: expect speed: 0.000000 real_pulses:0 +I (5134) example: new speed:399.000000 +I (5144) example: expect speed: 0.000000 real_pulses:0 +I (5144) example: new speed:399.000000 +I (5154) example: expect speed: 0.000000 real_pulses:0 +I (5154) example: new speed:399.000000 +I (5164) example: expect speed: 0.000000 real_pulses:0 +I (5164) example: new speed:399.000000 +I (5174) example: expect speed: 0.000000 real_pulses:0 +I (5174) example: new speed:399.000000 +I (5184) example: expect speed: 0.000000 real_pulses:0 +I (5184) example: new speed:399.000000 +I (5194) example: expect speed: 0.000000 real_pulses:0 +I (5194) example: new speed:399.000000 +I (5204) example: expect speed: 0.000000 real_pulses:0 +I (5204) example: new speed:399.000000 +I (5214) example: expect speed: 0.000000 real_pulses:0 +I (5214) example: new speed:399.000000 +I (5224) example: expect speed: 0.000000 real_pulses:0 +I (5224) example: new speed:399.000000 +I (5234) example: expect speed: 0.000000 real_pulses:0 +I (5234) example: new speed:399.000000 +I (5244) example: expect speed: 0.000000 real_pulses:0 +I (5244) example: new speed:399.000000 +I (5254) example: expect speed: 0.000000 real_pulses:0 +I (5254) example: new speed:399.000000 +I (5264) example: expect speed: 0.000000 real_pulses:0 +I (5264) example: new speed:399.000000 +I (5274) example: expect speed: 0.000000 real_pulses:0 +I (5274) example: new speed:399.000000 +I (5284) example: expect speed: 0.000000 real_pulses:0 +I (5284) example: new speed:399.000000 +I (5294) example: expect speed: 0.000000 real_pulses:0 +I (5294) example: new speed:399.000000 +I (5304) example: expect speed: 0.000000 real_pulses:0 +I (5314) example: new speed:399.000000 +I (5314) example: expect speed: 0.000000 real_pulses:0 +I (5314) example: new speed:399.000000 +I (5324) example: expect speed: 0.000000 real_pulses:0 +I (5324) example: new speed:399.000000 +I (5334) example: expect speed: 0.000000 real_pulses:0 +I (5334) example: new speed:399.000000 +I (5344) example: expect speed: 0.000000 real_pulses:0 +I (5344) example: new speed:399.000000 +I (5354) example: expect speed: 0.000000 real_pulses:0 +I (5354) example: new speed:399.000000 +I (5364) example: expect speed: 0.000000 real_pulses:0 +I (5364) example: new speed:399.000000 +I (5374) example: expect speed: 0.000000 real_pulses:0 +I (5374) example: new speed:399.000000 +I (5384) example: expect speed: 0.000000 real_pulses:0 +I (5384) example: new speed:399.000000 +I (5394) example: expect speed: 0.000000 real_pulses:0 +I (5394) example: new speed:399.000000 +I (5404) example: expect speed: 0.000000 real_pulses:0 +I (5404) example: new speed:399.000000 +I (5414) example: expect speed: 0.000000 real_pulses:0 +I (5414) example: new speed:399.000000 +I (5424) example: expect speed: 0.000000 real_pulses:0 +I (5424) example: new speed:399.000000 +I (5434) example: expect speed: 0.000000 real_pulses:0 +I (5434) example: new speed:399.000000 +I (5444) example: expect speed: 0.000000 real_pulses:0 +I (5444) example: new speed:399.000000 +I (5454) example: expect speed: 0.000000 real_pulses:0 +I (5454) example: new speed:399.000000 +I (5464) example: expect speed: 0.000000 real_pulses:0 +I (5464) example: new speed:399.000000 +I (5474) example: expect speed: 0.000000 real_pulses:0 +I (5484) example: new speed:399.000000 +I (5484) example: expect speed: 0.000000 real_pulses:0 +I (5484) example: new speed:399.000000 +I (5494) example: expect speed: 0.000000 real_pulses:0 +I (5494) example: new speed:399.000000 +I (5504) example: expect speed: 0.000000 real_pulses:0 +I (5504) example: new speed:399.000000 +I (5514) example: expect speed: 0.000000 real_pulses:0 +I (5514) example: new speed:399.000000 +I (5524) example: expect speed: 0.000000 real_pulses:0 +I (5524) example: new speed:399.000000 +I (5534) example: expect speed: 0.000000 real_pulses:0 +I (5534) example: new speed:399.000000 +I (5544) example: expect speed: 0.000000 real_pulses:0 +I (5544) example: new speed:399.000000 +I (5554) example: expect speed: 0.000000 real_pulses:0 +I (5554) example: new speed:399.000000 +I (5564) example: expect speed: 0.000000 real_pulses:0 +I (5564) example: new speed:399.000000 +I (5574) example: expect speed: 0.000000 real_pulses:0 +I (5574) example: new speed:399.000000 +I (5584) example: expect speed: 0.000000 real_pulses:0 +I (5584) example: new speed:399.000000 +I (5594) example: expect speed: 0.000000 real_pulses:0 +I (5594) example: new speed:399.000000 +I (5604) example: expect speed: 0.000000 real_pulses:0 +I (5604) example: new speed:399.000000 +I (5614) example: expect speed: 0.000000 real_pulses:0 +I (5614) example: new speed:399.000000 +I (5624) example: expect speed: 0.000000 real_pulses:0 +I (5624) example: new speed:399.000000 +I (5634) example: expect speed: 0.000000 real_pulses:0 +I (5634) example: new speed:399.000000 +I (5644) example: expect speed: 0.000000 real_pulses:0 +I (5644) example: new speed:399.000000 +I (5654) example: expect speed: 0.000000 real_pulses:0 +I (5654) example: new speed:399.000000 +I (5664) example: expect speed: 0.000000 real_pulses:0 +I (5664) example: new speed:399.000000 +I (5674) example: expect speed: 0.000000 real_pulses:0 +I (5684) example: new speed:399.000000 +I (5684) example: expect speed: 0.000000 real_pulses:0 +I (5684) example: new speed:399.000000 +I (5694) example: expect speed: 0.000000 real_pulses:0 +I (5704) example: new speed:399.000000 +I (5704) example: expect speed: 0.000000 real_pulses:0 +I (5714) example: new speed:399.000000 +I (5714) example: expect speed: 0.000000 real_pulses:0 +I (5714) example: new speed:399.000000 +I (5724) example: expect speed: 0.000000 real_pulses:0 +I (5724) example: new speed:399.000000 +I (5734) example: expect speed: 0.000000 real_pulses:0 +I (5734) example: new speed:399.000000 +I (5744) example: expect speed: 0.000000 real_pulses:0 +I (5744) example: new speed:399.000000 +I (5754) example: expect speed: 0.000000 real_pulses:0 +I (5754) example: new speed:399.000000 +I (5764) example: expect speed: 0.000000 real_pulses:0 +I (5764) example: new speed:399.000000 +I (5774) example: expect speed: 0.000000 real_pulses:0 +I (5784) example: new speed:399.000000 +I (5784) example: expect speed: 0.000000 real_pulses:0 +I (5784) example: new speed:399.000000 +I (5794) example: expect speed: 0.000000 real_pulses:0 +I (5794) example: new speed:399.000000 +I (5804) example: expect speed: 0.000000 real_pulses:0 +I (5804) example: new speed:399.000000 +I (5814) example: expect speed: 0.000000 real_pulses:0 +I (5814) example: new speed:399.000000 +I (5824) example: expect speed: 0.000000 real_pulses:0 +I (5824) example: new speed:399.000000 +I (5834) example: expect speed: 0.000000 real_pulses:0 +I (5834) example: new speed:399.000000 +I (5844) example: expect speed: 0.000000 real_pulses:0 +I (5844) example: new speed:399.000000 +I (5854) example: expect speed: 0.000000 real_pulses:0 +I (5854) example: new speed:399.000000 +I (5864) example: expect speed: 0.000000 real_pulses:0 +I (5864) example: new speed:399.000000 +I (5874) example: expect speed: 0.000000 real_pulses:0 +I (5874) example: new speed:399.000000 +I (5884) example: expect speed: 0.000000 real_pulses:0 +I (5884) example: new speed:399.000000 +I (5894) example: expect speed: 0.000000 real_pulses:0 +I (5894) example: new speed:399.000000 +I (5904) example: expect speed: 0.000000 real_pulses:0 +I (5904) example: new speed:399.000000 +I (5914) example: expect speed: 0.000000 real_pulses:0 +I (5914) example: new speed:399.000000 +I (5924) example: expect speed: 0.000000 real_pulses:0 +I (5924) example: new speed:399.000000 +I (5934) example: expect speed: 0.000000 real_pulses:0 +I (5934) example: new speed:399.000000 +I (5944) example: expect speed: 0.000000 real_pulses:0 +I (5944) example: new speed:399.000000 +I (5954) example: expect speed: 0.000000 real_pulses:0 +I (5954) example: new speed:399.000000 +I (5964) example: expect speed: 0.000000 real_pulses:0 +I (5964) example: new speed:399.000000 +I (5974) example: expect speed: 0.000000 real_pulses:0 +I (5974) example: new speed:399.000000 +I (5984) example: expect speed: 0.000000 real_pulses:0 +I (5984) example: new speed:399.000000 +I (5994) example: expect speed: 0.000000 real_pulses:0 +I (5994) example: new speed:399.000000 +I (6004) example: expect speed: 0.000000 real_pulses:0 +I (6004) example: new speed:399.000000 +I (6014) example: expect speed: 0.000000 real_pulses:0 +I (6014) example: new speed:399.000000 +I (6024) example: expect speed: 0.000000 real_pulses:0 +I (6024) example: new speed:399.000000 +I (6034) example: expect speed: 0.000000 real_pulses:0 +I (6034) example: new speed:399.000000 +I (6044) example: expect speed: 0.000000 real_pulses:0 +I (6044) example: new speed:399.000000 +I (6054) example: expect speed: 0.000000 real_pulses:0 +I (6054) example: new speed:399.000000 +I (6064) example: expect speed: 0.000000 real_pulses:0 +I (6064) example: new speed:399.000000 +I (6074) example: expect speed: 0.000000 real_pulses:0 +I (6074) example: new speed:399.000000 +I (6084) example: expect speed: 0.000000 real_pulses:0 +I (6084) example: new speed:399.000000 +I (6094) example: expect speed: 0.000000 real_pulses:0 +I (6094) example: new speed:399.000000 +I (6104) example: expect speed: 0.000000 real_pulses:0 +I (6104) example: new speed:399.000000 +I (6114) example: expect speed: 0.000000 real_pulses:0 +I (6114) example: new speed:399.000000 +I (6124) example: expect speed: 0.000000 real_pulses:0 +I (6124) example: new speed:399.000000 +I (6134) example: expect speed: 0.000000 real_pulses:0 +I (6134) example: new speed:399.000000 +I (6144) example: expect speed: 0.000000 real_pulses:0 +I (6144) example: new speed:399.000000 +I (6154) example: expect speed: 0.000000 real_pulses:0 +I (6154) example: new speed:399.000000 +I (6164) example: expect speed: 0.000000 real_pulses:0 +I (6164) example: new speed:399.000000 +I (6174) example: expect speed: 0.000000 real_pulses:0 +I (6174) example: new speed:399.000000 +I (6184) example: expect speed: 0.000000 real_pulses:0 +I (6184) example: new speed:399.000000 +I (6194) example: expect speed: 0.000000 real_pulses:0 +I (6194) example: new speed:399.000000 +I (6204) example: expect speed: 0.000000 real_pulses:0 +I (6204) example: new speed:399.000000 +I (6214) example: expect speed: 0.000000 real_pulses:0 +I (6214) example: new speed:399.000000 +I (6224) example: expect speed: 0.000000 real_pulses:0 +I (6224) example: new speed:399.000000 +I (6234) example: expect speed: 0.000000 real_pulses:0 +I (6234) example: new speed:399.000000 +I (6244) example: expect speed: 0.000000 real_pulses:0 +I (6244) example: new speed:399.000000 +I (6254) example: expect speed: 0.000000 real_pulses:0 +I (6254) example: new speed:399.000000 +I (6264) example: expect speed: 0.000000 real_pulses:0 +I (6264) example: new speed:399.000000 +I (6274) example: expect speed: 0.000000 real_pulses:0 +I (6274) example: new speed:399.000000 +I (6284) example: expect speed: 0.000000 real_pulses:0 +I (6284) example: new speed:399.000000 +I (6294) example: expect speed: 0.000000 real_pulses:0 +I (6294) example: new speed:399.000000 +I (6304) example: expect speed: 0.000000 real_pulses:0 +I (6304) example: new speed:399.000000 +I (6314) example: expect speed: 0.000000 real_pulses:0 +I (6314) example: new speed:399.000000 +I (6324) example: expect speed: 0.000000 real_pulses:0 +I (6324) example: new speed:399.000000 +I (6334) example: expect speed: 0.000000 real_pulses:0 +I (6334) example: new speed:399.000000 +I (6344) example: expect speed: 0.000000 real_pulses:0 +I (6344) example: new speed:399.000000 +I (6354) example: expect speed: 0.000000 real_pulses:0 +I (6354) example: new speed:399.000000 +I (6364) example: expect speed: 0.000000 real_pulses:0 +I (6364) example: new speed:399.000000 +I (6374) example: expect speed: 0.000000 real_pulses:0 +I (6374) example: new speed:399.000000 +I (6384) example: expect speed: 0.000000 real_pulses:0 +I (6384) example: new speed:399.000000 +I (6394) example: expect speed: 0.000000 real_pulses:0 +I (6394) example: new speed:399.000000 +I (6404) example: expect speed: 0.000000 real_pulses:0 +I (6404) example: new speed:399.000000 +I (6414) example: expect speed: 0.000000 real_pulses:0 +I (6414) example: new speed:399.000000 +I (6424) example: expect speed: 0.000000 real_pulses:0 +I (6424) example: new speed:399.000000 +I (6434) example: expect speed: 0.000000 real_pulses:0 +I (6434) example: new speed:399.000000 +I (6444) example: expect speed: 0.000000 real_pulses:0 +I (6444) example: new speed:399.000000 +I (6454) example: expect speed: 0.000000 real_pulses:0 +I (6454) example: new speed:399.000000 +I (6464) example: expect speed: 0.000000 real_pulses:0 +I (6464) example: new speed:399.000000 +I (6474) example: expect speed: 0.000000 real_pulses:0 +I (6474) example: new speed:399.000000 +I (6484) example: expect speed: 0.000000 real_pulses:0 +I (6484) example: new speed:399.000000 +I (6494) example: expect speed: 0.000000 real_pulses:0 +I (6494) example: new speed:399.000000 +I (6504) example: expect speed: 0.000000 real_pulses:0 +I (6504) example: new speed:399.000000 +I (6514) example: expect speed: 0.000000 real_pulses:0 +I (6514) example: new speed:399.000000 +I (6524) example: expect speed: 0.000000 real_pulses:0 +I (6524) example: new speed:399.000000 +I (6534) example: expect speed: 0.000000 real_pulses:0 +I (6534) example: new speed:399.000000 +I (6544) example: expect speed: 0.000000 real_pulses:0 +I (6544) example: new speed:399.000000 +I (6554) example: expect speed: 0.000000 real_pulses:0 +I (6554) example: new speed:399.000000 +I (6564) example: expect speed: 0.000000 real_pulses:0 +I (6564) example: new speed:399.000000 +I (6574) example: expect speed: 0.000000 real_pulses:0 +I (6574) example: new speed:399.000000 +I (6584) example: expect speed: 0.000000 real_pulses:0 +I (6584) example: new speed:399.000000 +I (6594) example: expect speed: 0.000000 real_pulses:0 +I (6594) example: new speed:399.000000 +I (6604) example: expect speed: 0.000000 real_pulses:0 +I (6614) example: new speed:399.000000 +I (6614) example: expect speed: 0.000000 real_pulses:0 +I (6614) example: new speed:399.000000 +I (6624) example: expect speed: 0.000000 real_pulses:0 +I (6624) example: new speed:399.000000 +I (6634) example: expect speed: 0.000000 real_pulses:0 +I (6634) example: new speed:399.000000 +I (6644) example: expect speed: 0.000000 real_pulses:0 +I (6644) example: new speed:399.000000 +I (6654) example: expect speed: 0.000000 real_pulses:0 +I (6654) example: new speed:399.000000 +I (6664) example: expect speed: 0.000000 real_pulses:0 +I (6664) example: new speed:399.000000 +I (6674) example: expect speed: 0.000000 real_pulses:0 +I (6674) example: new speed:399.000000 +I (6684) example: expect speed: 0.000000 real_pulses:0 +I (6684) example: new speed:399.000000 +I (6694) example: expect speed: 0.000000 real_pulses:0 +I (6694) example: new speed:399.000000 +I (6704) example: expect speed: 0.000000 real_pulses:0 +I (6714) example: new speed:399.000000 +I (6714) example: expect speed: 0.000000 real_pulses:0 +I (6714) example: new speed:399.000000 +I (6724) example: expect speed: 0.000000 real_pulses:0 +I (6724) example: new speed:399.000000 +I (6734) example: expect speed: 0.000000 real_pulses:0 +I (6734) example: new speed:399.000000 +I (6744) example: expect speed: 0.000000 real_pulses:0 +I (6744) example: new speed:399.000000 +I (6754) example: expect speed: 0.000000 real_pulses:0 +I (6754) example: new speed:399.000000 +I (6764) example: expect speed: 0.000000 real_pulses:0 +I (6774) example: new speed:399.000000 +I (6774) example: expect speed: 0.000000 real_pulses:0 +I (6774) example: new speed:399.000000 +I (6784) example: expect speed: 0.000000 real_pulses:0 +I (6784) example: new speed:399.000000 +I (6794) example: expect speed: 0.000000 real_pulses:0 +I (6794) example: new speed:399.000000 +I (6804) example: expect speed: 0.000000 real_pulses:0 +I (6804) example: new speed:399.000000 +I (6814) example: expect speed: 0.000000 real_pulses:0 +I (6814) example: new speed:399.000000 +I (6824) example: expect speed: 0.000000 real_pulses:0 +I (6824) example: new speed:399.000000 +I (6834) example: expect speed: 0.000000 real_pulses:0 +I (6834) example: new speed:399.000000 +I (6844) example: expect speed: 0.000000 real_pulses:0 +I (6844) example: new speed:399.000000 +I (6854) example: expect speed: 0.000000 real_pulses:0 +I (6854) example: new speed:399.000000 +I (6864) example: expect speed: 0.000000 real_pulses:0 +I (6864) example: new speed:399.000000 +I (6874) example: expect speed: 0.000000 real_pulses:0 +I (6874) example: new speed:399.000000 +I (6884) example: expect speed: 0.000000 real_pulses:0 +I (6884) example: new speed:399.000000 +I (6894) example: expect speed: 0.000000 real_pulses:0 +I (6894) example: new speed:399.000000 +I (6904) example: expect speed: 0.000000 real_pulses:0 +I (6904) example: new speed:399.000000 +I (6914) example: expect speed: 0.000000 real_pulses:0 +I (6914) example: new speed:399.000000 +I (6924) example: expect speed: 0.000000 real_pulses:0 +I (6924) example: new speed:399.000000 +I (6934) example: expect speed: 0.000000 real_pulses:0 +I (6934) example: new speed:399.000000 +I (6944) example: expect speed: 0.000000 real_pulses:0 +I (6944) example: new speed:399.000000 +I (6954) example: expect speed: 0.000000 real_pulses:0 +I (6954) example: new speed:399.000000 +I (6964) example: expect speed: 0.000000 real_pulses:0 +I (6964) example: new speed:399.000000 +I (6974) example: expect speed: 0.000000 real_pulses:0 +I (6974) example: new speed:399.000000 +I (6984) example: expect speed: 0.000000 real_pulses:0 +I (6984) example: new speed:399.000000 +I (6994) example: expect speed: 0.000000 real_pulses:0 +I (6994) example: new speed:399.000000 +I (7004) example: expect speed: 0.000000 real_pulses:0 +I (7004) example: new speed:399.000000 +I (7014) example: expect speed: 0.000000 real_pulses:0 +I (7014) example: new speed:399.000000 +I (7024) example: expect speed: 0.000000 real_pulses:0 +I (7024) example: new speed:399.000000 +I (7034) example: expect speed: 0.000000 real_pulses:0 +I (7034) example: new speed:399.000000 +I (7044) example: expect speed: 0.000000 real_pulses:0 +I (7044) example: new speed:399.000000 +I (7054) example: expect speed: 0.000000 real_pulses:0 +I (7054) example: new speed:399.000000 +I (7064) example: expect speed: 0.000000 real_pulses:0 +I (7064) example: new speed:399.000000 +I (7074) example: expect speed: 0.000000 real_pulses:0 +I (7074) example: new speed:399.000000 +I (7084) example: expect speed: 0.000000 real_pulses:0 +I (7084) example: new speed:399.000000 +I (7094) example: expect speed: 0.000000 real_pulses:0 +I (7094) example: new speed:399.000000 +I (7104) example: expect speed: 0.000000 real_pulses:0 +I (7104) example: new speed:399.000000 +I (7114) example: expect speed: 0.000000 real_pulses:0 +I (7114) example: new speed:399.000000 +I (7124) example: expect speed: 0.000000 real_pulses:0 +I (7124) example: new speed:399.000000 +I (7134) example: expect speed: 0.000000 real_pulses:0 +I (7134) example: new speed:399.000000 +I (7144) example: expect speed: 0.000000 real_pulses:0 +I (7144) example: new speed:399.000000 +I (7154) example: expect speed: 0.000000 real_pulses:0 +I (7154) example: new speed:399.000000 +I (7164) example: expect speed: 0.000000 real_pulses:0 +I (7164) example: new speed:399.000000 +I (7174) example: expect speed: 0.000000 real_pulses:0 +I (7174) example: new speed:399.000000 +I (7184) example: expect speed: 0.000000 real_pulses:0 +I (7184) example: new speed:399.000000 +I (7194) example: expect speed: 0.000000 real_pulses:0 +I (7194) example: new speed:399.000000 +I (7204) example: expect speed: 0.000000 real_pulses:0 +I (7204) example: new speed:399.000000 +I (7214) example: expect speed: 0.000000 real_pulses:0 +I (7214) example: new speed:399.000000 +I (7224) example: expect speed: 0.000000 real_pulses:0 +I (7224) example: new speed:399.000000 +I (7234) example: expect speed: 0.000000 real_pulses:0 +I (7234) example: new speed:399.000000 +I (7244) example: expect speed: 0.000000 real_pulses:0 +I (7244) example: new speed:399.000000 +I (7254) example: expect speed: 0.000000 real_pulses:0 +I (7254) example: new speed:399.000000 +I (7264) example: expect speed: 0.000000 real_pulses:0 +I (7264) example: new speed:399.000000 +I (7274) example: expect speed: 0.000000 real_pulses:0 +I (7274) example: new speed:399.000000 +I (7284) example: expect speed: 0.000000 real_pulses:0 +I (7284) example: new speed:399.000000 +I (7294) example: expect speed: 0.000000 real_pulses:0 +I (7294) example: new speed:399.000000 +I (7304) example: expect speed: 0.000000 real_pulses:0 +I (7304) example: new speed:399.000000 +I (7314) example: expect speed: 0.000000 real_pulses:0 +I (7314) example: new speed:399.000000 +I (7324) example: expect speed: 0.000000 real_pulses:0 +I (7324) example: new speed:399.000000 +I (7334) example: expect speed: 0.000000 real_pulses:0 +I (7334) example: new speed:399.000000 +I (7344) example: expect speed: 0.000000 real_pulses:0 +I (7344) example: new speed:399.000000 +I (7354) example: expect speed: 0.000000 real_pulses:0 +I (7354) example: new speed:399.000000 +I (7364) example: expect speed: 0.000000 real_pulses:0 +I (7364) example: new speed:399.000000 +I (7374) example: expect speed: 0.000000 real_pulses:0 +I (7374) example: new speed:399.000000 +I (7384) example: expect speed: 0.000000 real_pulses:0 +I (7384) example: new speed:399.000000 +I (7394) example: expect speed: 0.000000 real_pulses:0 +I (7394) example: new speed:399.000000 +I (7404) example: expect speed: 0.000000 real_pulses:0 +I (7404) example: new speed:399.000000 +I (7414) example: expect speed: 0.000000 real_pulses:0 +I (7414) example: new speed:399.000000 +I (7424) example: expect speed: 0.000000 real_pulses:0 +I (7424) example: new speed:399.000000 +I (7434) example: expect speed: 0.000000 real_pulses:0 +I (7434) example: new speed:399.000000 +I (7444) example: expect speed: 0.000000 real_pulses:0 +I (7444) example: new speed:399.000000 +I (7454) example: expect speed: 0.000000 real_pulses:0 +I (7454) example: new speed:399.000000 +I (7464) example: expect speed: 0.000000 real_pulses:0 +I (7464) example: new speed:399.000000 +I (7474) example: expect speed: 0.000000 real_pulses:0 +I (7474) example: new speed:399.000000 +I (7484) example: expect speed: 0.000000 real_pulses:0 +I (7484) example: new speed:399.000000 +I (7494) example: expect speed: 0.000000 real_pulses:0 +I (7494) example: new speed:399.000000 +I (7504) example: expect speed: 0.000000 real_pulses:0 +I (7504) example: new speed:399.000000 +I (7514) example: expect speed: 0.000000 real_pulses:0 +I (7514) example: new speed:399.000000 +I (7524) example: expect speed: 0.000000 real_pulses:0 +I (7524) example: new speed:399.000000 +I (7534) example: expect speed: 0.000000 real_pulses:0 +I (7534) example: new speed:399.000000 +I (7544) example: expect speed: 0.000000 real_pulses:0 +I (7544) example: new speed:399.000000 +I (7554) example: expect speed: 0.000000 real_pulses:0 +I (7554) example: new speed:399.000000 +I (7564) example: expect speed: 0.000000 real_pulses:0 +I (7564) example: new speed:399.000000 +I (7574) example: expect speed: 0.000000 real_pulses:0 +I (7574) example: new speed:399.000000 +I (7584) example: expect speed: 0.000000 real_pulses:0 +I (7584) example: new speed:399.000000 +I (7594) example: expect speed: 0.000000 real_pulses:0 +I (7594) example: new speed:399.000000 +I (7604) example: expect speed: 0.000000 real_pulses:0 +I (7604) example: new speed:399.000000 +I (7614) example: expect speed: 0.000000 real_pulses:0 +I (7614) example: new speed:399.000000 +I (7624) example: expect speed: 0.000000 real_pulses:0 +I (7634) example: new speed:399.000000 +I (7634) example: expect speed: 0.000000 real_pulses:0 +I (7634) example: new speed:399.000000 +I (7644) example: expect speed: 0.000000 real_pulses:0 +I (7644) example: new speed:399.000000 +I (7654) example: expect speed: 0.000000 real_pulses:0 +I (7654) example: new speed:399.000000 +I (7664) example: expect speed: 0.000000 real_pulses:0 +I (7664) example: new speed:399.000000 +I (7674) example: expect speed: 0.000000 real_pulses:0 +I (7674) example: new speed:399.000000 +I (7684) example: expect speed: 0.000000 real_pulses:0 +I (7684) example: new speed:399.000000 +I (7694) example: expect speed: 0.000000 real_pulses:0 +I (7694) example: new speed:399.000000 +I (7704) example: expect speed: 0.000000 real_pulses:0 +I (7704) example: new speed:399.000000 +I (7714) example: expect speed: 0.000000 real_pulses:0 +I (7714) example: new speed:399.000000 +I (7724) example: expect speed: 0.000000 real_pulses:0 +I (7724) example: new speed:399.000000 +I (7734) example: expect speed: 0.000000 real_pulses:0 +I (7734) example: new speed:399.000000 +I (7744) example: expect speed: 0.000000 real_pulses:0 +I (7744) example: new speed:399.000000 +I (7754) example: expect speed: 0.000000 real_pulses:0 +I (7754) example: new speed:399.000000 +I (7764) example: expect speed: 0.000000 real_pulses:0 +I (7764) example: new speed:399.000000 +I (7774) example: expect speed: 0.000000 real_pulses:0 +I (7774) example: new speed:399.000000 +I (7784) example: expect speed: 0.000000 real_pulses:0 +I (7784) example: new speed:399.000000 +I (7794) example: expect speed: 0.000000 real_pulses:0 +I (7794) example: new speed:399.000000 +I (7804) example: expect speed: 0.000000 real_pulses:0 +I (7804) example: new speed:399.000000 +I (7814) example: expect speed: 0.000000 real_pulses:0 +I (7814) example: new speed:399.000000 +I (7824) example: expect speed: 0.000000 real_pulses:0 +I (7824) example: new speed:399.000000 +I (7834) example: expect speed: 0.000000 real_pulses:0 +I (7834) example: new speed:399.000000 +I (7844) example: expect speed: 0.000000 real_pulses:0 +I (7844) example: new speed:399.000000 +I (7854) example: expect speed: 0.000000 real_pulses:0 +I (7854) example: new speed:399.000000 +I (7864) example: expect speed: 0.000000 real_pulses:0 +I (7864) example: new speed:399.000000 +I (7874) example: expect speed: 0.000000 real_pulses:0 +I (7874) example: new speed:399.000000 +I (7884) example: expect speed: 0.000000 real_pulses:0 +I (7884) example: new speed:399.000000 +I (7894) example: expect speed: 0.000000 real_pulses:0 +I (7894) example: new speed:399.000000 +I (7904) example: expect speed: 0.000000 real_pulses:0 +I (7904) example: new speed:399.000000 +I (7914) example: expect speed: 0.000000 real_pulses:0 +I (7914) example: new speed:399.000000 +I (7924) example: expect speed: 0.000000 real_pulses:0 +I (7924) example: new speed:399.000000 +I (7934) example: expect speed: 0.000000 real_pulses:0 +I (7934) example: new speed:399.000000 +I (7944) example: expect speed: 0.000000 real_pulses:0 +I (7944) example: new speed:399.000000 +I (7954) example: expect speed: 0.000000 real_pulses:0 +I (7954) example: new speed:399.000000 +I (7964) example: expect speed: 0.000000 real_pulses:0 +I (7964) example: new speed:399.000000 +I (7974) example: expect speed: 0.000000 real_pulses:0 +I (7974) example: new speed:399.000000 +I (7984) example: expect speed: 0.000000 real_pulses:0 +I (7984) example: new speed:399.000000 +I (7994) example: expect speed: 0.000000 real_pulses:0 +I (7994) example: new speed:399.000000 +I (8004) example: expect speed: 0.000000 real_pulses:0 +I (8004) example: new speed:399.000000 +I (8014) example: expect speed: 0.000000 real_pulses:0 +I (8014) example: new speed:399.000000 +I (8024) example: expect speed: 0.000000 real_pulses:0 +I (8024) example: new speed:399.000000 +I (8034) example: expect speed: 0.000000 real_pulses:0 +I (8034) example: new speed:399.000000 +I (8044) example: expect speed: 0.000000 real_pulses:0 +I (8044) example: new speed:399.000000 +I (8054) example: expect speed: 0.000000 real_pulses:0 +I (8054) example: new speed:399.000000 +I (8064) example: expect speed: 0.000000 real_pulses:0 +I (8064) example: new speed:399.000000 +I (8074) example: expect speed: 0.000000 real_pulses:0 +I (8074) example: new speed:399.000000 +I (8084) example: expect speed: 0.000000 real_pulses:0 +I (8084) example: new speed:399.000000 +I (8094) example: expect speed: 0.000000 real_pulses:0 +I (8094) example: new speed:399.000000 +I (8104) example: expect speed: 0.000000 real_pulses:0 +I (8104) example: new speed:399.000000 +I (8114) example: expect speed: 0.000000 real_pulses:0 +I (8114) example: new speed:399.000000 +I (8124) example: expect speed: 0.000000 real_pulses:0 +I (8124) example: new speed:399.000000 +I (8134) example: expect speed: 0.000000 real_pulses:0 +I (8144) example: new speed:399.000000 +I (8144) example: expect speed: 0.000000 real_pulses:0 +I (8154) example: new speed:399.000000 +I (8154) example: expect speed: 0.000000 real_pulses:0 +I (8164) example: new speed:399.000000 +I (8164) example: expect speed: 0.000000 real_pulses:0 +I (8164) example: new speed:399.000000 +I (8174) example: expect speed: 0.000000 real_pulses:0 +I (8174) example: new speed:399.000000 +I (8184) example: expect speed: 0.000000 real_pulses:0 +I (8184) example: new speed:399.000000 +I (8194) example: expect speed: 0.000000 real_pulses:0 +I (8194) example: new speed:399.000000 +I (8204) example: expect speed: 0.000000 real_pulses:0 +I (8204) example: new speed:399.000000 +I (8214) example: expect speed: 0.000000 real_pulses:0 +I (8214) example: new speed:399.000000 +I (8224) example: expect speed: 0.000000 real_pulses:0 +I (8224) example: new speed:399.000000 +I (8234) example: expect speed: 0.000000 real_pulses:0 +I (8244) example: new speed:399.000000 +I (8244) example: expect speed: 0.000000 real_pulses:0 +I (8244) example: new speed:399.000000 +I (8254) example: expect speed: 0.000000 real_pulses:0 +I (8254) example: new speed:399.000000 +I (8264) example: expect speed: 0.000000 real_pulses:0 +I (8264) example: new speed:399.000000 +I (8274) example: expect speed: 0.000000 real_pulses:0 +I (8274) example: new speed:399.000000 +I (8284) example: expect speed: 0.000000 real_pulses:0 +I (8284) example: new speed:399.000000 +I (8294) example: expect speed: 0.000000 real_pulses:0 +I (8294) example: new speed:399.000000 +I (8304) example: expect speed: 0.000000 real_pulses:0 +I (8304) example: new speed:399.000000 +I (8314) example: expect speed: 0.000000 real_pulses:0 +I (8314) example: new speed:399.000000 +I (8324) example: expect speed: 0.000000 real_pulses:0 +I (8324) example: new speed:399.000000 +I (8334) example: expect speed: 0.000000 real_pulses:0 +I (8334) example: new speed:399.000000 +I (8344) example: expect speed: 0.000000 real_pulses:0 +I (8344) example: new speed:399.000000 +I (8354) example: expect speed: 0.000000 real_pulses:0 +I (8354) example: new speed:399.000000 +I (8364) example: expect speed: 0.000000 real_pulses:0 +I (8364) example: new speed:399.000000 +I (8374) example: expect speed: 0.000000 real_pulses:0 +I (8374) example: new speed:399.000000 +I (8384) example: expect speed: 0.000000 real_pulses:0 +I (8384) example: new speed:399.000000 +I (8394) example: expect speed: 0.000000 real_pulses:0 +I (8394) example: new speed:399.000000 +I (8404) example: expect speed: 0.000000 real_pulses:0 +I (8404) example: new speed:399.000000 +I (8414) example: expect speed: 0.000000 real_pulses:0 +I (8414) example: new speed:399.000000 +I (8424) example: expect speed: 0.000000 real_pulses:0 +I (8424) example: new speed:399.000000 +I (8434) example: expect speed: 0.000000 real_pulses:0 +I (8434) example: new speed:399.000000 +I (8444) example: expect speed: 0.000000 real_pulses:0 +I (8444) example: new speed:399.000000 +I (8454) example: expect speed: 0.000000 real_pulses:0 +I (8454) example: new speed:399.000000 +I (8464) example: expect speed: 0.000000 real_pulses:0 +I (8464) example: new speed:399.000000 +I (8474) example: expect speed: 0.000000 real_pulses:0 +I (8474) example: new speed:399.000000 +I (8484) example: expect speed: 0.000000 real_pulses:0 +I (8484) example: new speed:399.000000 +I (8494) example: expect speed: 0.000000 real_pulses:0 +I (8494) example: new speed:399.000000 +I (8504) example: expect speed: 0.000000 real_pulses:0 +I (8504) example: new speed:399.000000 +I (8514) example: expect speed: 0.000000 real_pulses:0 +I (8514) example: new speed:399.000000 +I (8524) example: expect speed: 0.000000 real_pulses:0 +I (8524) example: new speed:399.000000 +I (8534) example: expect speed: 0.000000 real_pulses:0 +I (8534) example: new speed:399.000000 +I (8544) example: expect speed: 0.000000 real_pulses:0 +I (8544) example: new speed:399.000000 +I (8554) example: expect speed: 0.000000 real_pulses:0 +I (8554) example: new speed:399.000000 +I (8564) example: expect speed: 0.000000 real_pulses:0 +I (8564) example: new speed:399.000000 +I (8574) example: expect speed: 0.000000 real_pulses:0 +I (8574) example: new speed:399.000000 +I (8584) example: expect speed: 0.000000 real_pulses:0 +I (8584) example: new speed:399.000000 +I (8594) example: expect speed: 0.000000 real_pulses:0 +I (8594) example: new speed:399.000000 +I (8604) example: expect speed: 0.000000 real_pulses:0 +I (8604) example: new speed:399.000000 +I (8614) example: expect speed: 0.000000 real_pulses:0 +I (8614) example: new speed:399.000000 +I (8624) example: expect speed: 0.000000 real_pulses:0 +I (8624) example: new speed:399.000000 +I (8634) example: expect speed: 0.000000 real_pulses:0 +I (8634) example: new speed:399.000000 +I (8644) example: expect speed: 0.000000 real_pulses:0 +I (8644) example: new speed:399.000000 +I (8654) example: expect speed: 0.000000 real_pulses:0 +I (8654) example: new speed:399.000000 +I (8664) example: expect speed: 0.000000 real_pulses:0 +I (8664) example: new speed:399.000000 +I (8674) example: expect speed: 0.000000 real_pulses:0 +I (8674) example: new speed:399.000000 +I (8684) example: expect speed: 0.000000 real_pulses:0 +I (8684) example: new speed:399.000000 +I (8694) example: expect speed: 0.000000 real_pulses:0 +I (8694) example: new speed:399.000000 +I (8704) example: expect speed: 0.000000 real_pulses:0 +I (8704) example: new speed:399.000000 +I (8714) example: expect speed: 0.000000 real_pulses:0 +I (8714) example: new speed:399.000000 +I (8724) example: expect speed: 0.000000 real_pulses:0 +I (8724) example: new speed:399.000000 +I (8734) example: expect speed: 0.000000 real_pulses:0 +I (8734) example: new speed:399.000000 +I (8744) example: expect speed: 0.000000 real_pulses:0 +I (8744) example: new speed:399.000000 +I (8754) example: expect speed: 0.000000 real_pulses:0 +I (8754) example: new speed:399.000000 +I (8764) example: expect speed: 0.000000 real_pulses:0 +I (8764) example: new speed:399.000000 +I (8774) example: expect speed: 0.000000 real_pulses:0 +I (8774) example: new speed:399.000000 +I (8784) example: expect speed: 0.000000 real_pulses:0 +I (8784) example: new speed:399.000000 +I (8794) example: expect speed: 0.000000 real_pulses:0 +I (8794) example: new speed:399.000000 +I (8804) example: expect speed: 0.000000 real_pulses:0 +I (8804) example: new speed:399.000000 +I (8814) example: expect speed: 0.000000 real_pulses:0 +I (8814) example: new speed:399.000000 +I (8824) example: expect speed: 0.000000 real_pulses:0 +I (8824) example: new speed:399.000000 +I (8834) example: expect speed: 0.000000 real_pulses:0 +I (8834) example: new speed:399.000000 +I (8844) example: expect speed: 0.000000 real_pulses:0 +I (8844) example: new speed:399.000000 +I (8854) example: expect speed: 0.000000 real_pulses:0 +I (8854) example: new speed:399.000000 +I (8864) example: expect speed: 0.000000 real_pulses:0 +I (8864) example: new speed:399.000000 +I (8874) example: expect speed: 0.000000 real_pulses:0 +I (8874) example: new speed:399.000000 +I (8884) example: expect speed: 0.000000 real_pulses:0 +I (8884) example: new speed:399.000000 +I (8894) example: expect speed: 0.000000 real_pulses:0 +I (8894) example: new speed:399.000000 +I (8904) example: expect speed: 0.000000 real_pulses:0 +I (8904) example: new speed:399.000000 +I (8914) example: expect speed: 0.000000 real_pulses:0 +I (8914) example: new speed:399.000000 +I (8924) example: expect speed: 0.000000 real_pulses:0 +I (8924) example: new speed:399.000000 +I (8934) example: expect speed: 0.000000 real_pulses:0 +I (8934) example: new speed:399.000000 +I (8944) example: expect speed: 0.000000 real_pulses:0 +I (8944) example: new speed:399.000000 +I (8954) example: expect speed: 0.000000 real_pulses:0 +I (8954) example: new speed:399.000000 +I (8964) example: expect speed: 0.000000 real_pulses:0 +I (8964) example: new speed:399.000000 +I (8974) example: expect speed: 0.000000 real_pulses:0 +I (8974) example: new speed:399.000000 +I (8984) example: expect speed: 0.000000 real_pulses:0 +I (8984) example: new speed:399.000000 +I (8994) example: expect speed: 0.000000 real_pulses:0 +I (8994) example: new speed:399.000000 +I (9004) example: expect speed: 0.000000 real_pulses:0 +I (9004) example: new speed:399.000000 +I (9014) example: expect speed: 0.000000 real_pulses:0 +I (9014) example: new speed:399.000000 +I (9024) example: expect speed: 0.000000 real_pulses:0 +I (9024) example: new speed:399.000000 +I (9034) example: expect speed: 0.000000 real_pulses:0 +I (9034) example: new speed:399.000000 +I (9044) example: expect speed: 0.000000 real_pulses:0 +I (9044) example: new speed:399.000000 +I (9054) example: expect speed: 0.000000 real_pulses:0 +I (9054) example: new speed:399.000000 +I (9064) example: expect speed: 0.000000 real_pulses:0 +I (9064) example: new speed:399.000000 +I (9074) example: expect speed: 0.000000 real_pulses:0 +I (9074) example: new speed:399.000000 +I (9084) example: expect speed: 0.000000 real_pulses:0 +I (9084) example: new speed:399.000000 +I (9094) example: expect speed: 0.000000 real_pulses:0 +I (9094) example: new speed:399.000000 +I (9104) example: expect speed: 0.000000 real_pulses:0 +I (9104) example: new speed:399.000000 +I (9114) example: expect speed: 0.000000 real_pulses:0 +I (9114) example: new speed:399.000000 +I (9124) example: expect speed: 0.000000 real_pulses:0 +I (9124) example: new speed:399.000000 +I (9134) example: expect speed: 0.000000 real_pulses:0 +I (9134) example: new speed:399.000000 +I (9144) example: expect speed: 0.000000 real_pulses:0 +I (9144) example: new speed:399.000000 +I (9154) example: expect speed: 0.000000 real_pulses:0 +I (9154) example: new speed:399.000000 +I (9164) example: expect speed: 0.000000 real_pulses:0 +I (9164) example: new speed:399.000000 +I (9174) example: expect speed: 0.000000 real_pulses:0 +I (9174) example: new speed:399.000000 +I (9184) example: expect speed: 0.000000 real_pulses:0 +I (9184) example: new speed:399.000000 +I (9194) example: expect speed: 0.000000 real_pulses:0 +I (9194) example: new speed:399.000000 +I (9204) example: expect speed: 0.000000 real_pulses:0 +I (9204) example: new speed:399.000000 +I (9214) example: expect speed: 0.000000 real_pulses:0 +I (9214) example: new speed:399.000000 +I (9224) example: expect speed: 0.000000 real_pulses:0 +I (9224) example: new speed:399.000000 +I (9234) example: expect speed: 0.000000 real_pulses:0 +I (9234) example: new speed:399.000000 +I (9244) example: expect speed: 0.000000 real_pulses:0 +I (9244) example: new speed:399.000000 +I (9254) example: expect speed: 0.000000 real_pulses:0 +I (9254) example: new speed:399.000000 +I (9264) example: expect speed: 0.000000 real_pulses:0 +I (9274) example: new speed:399.000000 +I (9274) example: expect speed: 0.000000 real_pulses:0 +I (9274) example: new speed:399.000000 +I (9284) example: expect speed: 0.000000 real_pulses:0 +I (9284) example: new speed:399.000000 +I (9294) example: expect speed: 0.000000 real_pulses:0 +I (9294) example: new speed:399.000000 +I (9304) example: expect speed: 0.000000 real_pulses:0 +I (9304) example: new speed:399.000000 +I (9314) example: expect speed: 0.000000 real_pulses:0 +I (9314) example: new speed:399.000000 +I (9324) example: expect speed: 0.000000 real_pulses:0 +I (9324) example: new speed:399.000000 +I (9334) example: expect speed: 0.000000 real_pulses:0 +I (9334) example: new speed:399.000000 +I (9344) example: expect speed: 0.000000 real_pulses:0 +I (9344) example: new speed:399.000000 +I (9354) example: expect speed: 0.000000 real_pulses:0 +I (9354) example: new speed:399.000000 +I (9364) example: expect speed: 0.000000 real_pulses:0 +I (9364) example: new speed:399.000000 +I (9374) example: expect speed: 0.000000 real_pulses:0 +I (9374) example: new speed:399.000000 +I (9384) example: expect speed: 0.000000 real_pulses:0 +I (9384) example: new speed:399.000000 +I (9394) example: expect speed: 0.000000 real_pulses:0 +I (9394) example: new speed:399.000000 +I (9404) example: expect speed: 0.000000 real_pulses:0 +I (9404) example: new speed:399.000000 +I (9414) example: expect speed: 0.000000 real_pulses:0 +I (9414) example: new speed:399.000000 +I (9424) example: expect speed: 0.000000 real_pulses:0 +I (9424) example: new speed:399.000000 +I (9434) example: expect speed: 0.000000 real_pulses:0 +I (9434) example: new speed:399.000000 +I (9444) example: expect speed: 0.000000 real_pulses:0 +I (9444) example: new speed:399.000000 +I (9454) example: expect speed: 0.000000 real_pulses:0 +I (9454) example: new speed:399.000000 +I (9464) example: expect speed: 0.000000 real_pulses:0 +I (9464) example: new speed:399.000000 +I (9474) example: expect speed: 0.000000 real_pulses:0 +I (9474) example: new speed:399.000000 +I (9484) example: expect speed: 0.000000 real_pulses:0 +I (9484) example: new speed:399.000000 +I (9494) example: expect speed: 0.000000 real_pulses:0 +I (9494) example: new speed:399.000000 +I (9504) example: expect speed: 0.000000 real_pulses:0 +I (9504) example: new speed:399.000000 +I (9514) example: expect speed: 0.000000 real_pulses:0 +I (9514) example: new speed:399.000000 +I (9524) example: expect speed: 0.000000 real_pulses:0 +I (9524) example: new speed:399.000000 +I (9534) example: expect speed: 0.000000 real_pulses:0 +I (9534) example: new speed:399.000000 +I (9544) example: expect speed: 0.000000 real_pulses:0 +I (9544) example: new speed:399.000000 +I (9554) example: expect speed: 0.000000 real_pulses:0 +I (9554) example: new speed:399.000000 +I (9564) example: expect speed: 0.000000 real_pulses:0 +I (9564) example: new speed:399.000000 +I (9574) example: expect speed: 0.000000 real_pulses:0 +I (9574) example: new speed:399.000000 +I (9584) example: expect speed: 0.000000 real_pulses:0 +I (9584) example: new speed:399.000000 +I (9594) example: expect speed: 0.000000 real_pulses:0 +I (9594) example: new speed:399.000000 +I (9604) example: expect speed: 0.000000 real_pulses:0 +I (9604) example: new speed:399.000000 +I (9614) example: expect speed: 0.000000 real_pulses:0 +I (9614) example: new speed:399.000000 +I (9624) example: expect speed: 0.000000 real_pulses:0 +I (9624) example: new speed:399.000000 +I (9634) example: expect speed: 0.000000 real_pulses:0 +I (9634) example: new speed:399.000000 +I (9644) example: expect speed: 0.000000 real_pulses:0 +I (9644) example: new speed:399.000000 +I (9654) example: expect speed: 0.000000 real_pulses:0 +I (9654) example: new speed:399.000000 +I (9664) example: expect speed: 0.000000 real_pulses:0 +I (9664) example: new speed:399.000000 +I (9674) example: expect speed: 0.000000 real_pulses:0 +I (9674) example: new speed:399.000000 +I (9684) example: expect speed: 0.000000 real_pulses:0 +I (9684) example: new speed:399.000000 +I (9694) example: expect speed: 0.000000 real_pulses:0 +I (9694) example: new speed:399.000000 +I (9704) example: expect speed: 0.000000 real_pulses:0 +I (9704) example: new speed:399.000000 +I (9714) example: expect speed: 0.000000 real_pulses:0 +I (9714) example: new speed:399.000000 +I (9724) example: expect speed: 0.000000 real_pulses:0 +I (9724) example: new speed:399.000000 +I (9734) example: expect speed: 0.000000 real_pulses:0 +I (9734) example: new speed:399.000000 +I (9744) example: expect speed: 0.000000 real_pulses:0 +I (9744) example: new speed:399.000000 +I (9754) example: expect speed: 0.000000 real_pulses:0 +I (9754) example: new speed:399.000000 +I (9764) example: expect speed: 0.000000 real_pulses:0 +I (9764) example: new speed:399.000000 +I (9774) example: expect speed: 0.000000 real_pulses:0 +I (9774) example: new speed:399.000000 +I (9784) example: expect speed: 0.000000 real_pulses:0 +I (9784) example: new speed:399.000000 +I (9794) example: expect speed: 0.000000 real_pulses:0 +I (9794) example: new speed:399.000000 +I (9804) example: expect speed: 0.000000 real_pulses:0 +I (9804) example: new speed:399.000000 +I (9814) example: expect speed: 0.000000 real_pulses:0 +I (9814) example: new speed:399.000000 +I (9824) example: expect speed: 0.000000 real_pulses:0 +I (9824) example: new speed:399.000000 +I (9834) example: expect speed: 0.000000 real_pulses:0 +I (9834) example: new speed:399.000000 +I (9844) example: expect speed: 0.000000 real_pulses:0 +I (9844) example: new speed:399.000000 +I (9854) example: expect speed: 0.000000 real_pulses:0 +I (9854) example: new speed:399.000000 +I (9864) example: expect speed: 0.000000 real_pulses:0 +I (9864) example: new speed:399.000000 +I (9874) example: expect speed: 0.000000 real_pulses:0 +I (9874) example: new speed:399.000000 +I (9884) example: expect speed: 0.000000 real_pulses:0 +I (9884) example: new speed:399.000000 +I (9894) example: expect speed: 0.000000 real_pulses:0 +I (9894) example: new speed:399.000000 +I (9904) example: expect speed: 0.000000 real_pulses:0 +I (9904) example: new speed:399.000000 +I (9914) example: expect speed: 0.000000 real_pulses:0 +I (9914) example: new speed:399.000000 +I (9924) example: expect speed: 0.000000 real_pulses:0 +I (9924) example: new speed:399.000000 +I (9934) example: expect speed: 0.000000 real_pulses:0 +I (9934) example: new speed:399.000000 +I (9944) example: expect speed: 0.000000 real_pulses:0 +I (9944) example: new speed:399.000000 +I (9954) example: expect speed: 0.000000 real_pulses:0 +I (9954) example: new speed:399.000000 +I (9964) example: expect speed: 0.000000 real_pulses:0 +I (9964) example: new speed:399.000000 +I (9974) example: expect speed: 0.000000 real_pulses:0 +I (9974) example: new speed:399.000000 +I (9984) example: expect speed: 0.000000 real_pulses:0 +I (9984) example: new speed:399.000000 +I (9994) example: expect speed: 0.000000 real_pulses:0 +I (9994) example: new speed:399.000000 +I (10004) example: expect speed: 0.000000 real_pulses:0 +I (10004) example: new speed:399.000000 +I (10014) example: expect speed: 0.000000 real_pulses:0 +I (10014) example: new speed:399.000000 +I (10024) example: expect speed: 0.000000 real_pulses:0 +I (10024) example: new speed:399.000000 +I (10034) example: expect speed: 0.000000 real_pulses:0 +I (10034) example: new speed:399.000000 +I (10044) example: expect speed: 0.000000 real_pulses:0 +I (10044) example: new speed:399.000000 +I (10054) example: expect speed: 0.000000 real_pulses:0 +I (10054) example: new speed:399.000000 +I (10064) example: expect speed: 0.000000 real_pulses:0 +I (10064) example: new speed:399.000000 +I (10074) example: expect speed: 0.000000 real_pulses:0 +I (10074) example: new speed:399.000000 +I (10084) example: expect speed: 0.000000 real_pulses:0 +I (10084) example: new speed:399.000000 +I (10094) example: expect speed: 0.000000 real_pulses:0 +I (10094) example: new speed:399.000000 +I (10104) example: expect speed: 0.000000 real_pulses:0 +I (10104) example: new speed:399.000000 +I (10114) example: expect speed: 0.000000 real_pulses:0 +I (10114) example: new speed:399.000000 +I (10124) example: expect speed: 0.000000 real_pulses:0 +I (10124) example: new speed:399.000000 +I (10134) example: expect speed: 0.000000 real_pulses:0 +I (10134) example: new speed:399.000000 +I (10144) example: expect speed: 0.000000 real_pulses:0 +I (10144) example: new speed:399.000000 +I (10154) example: expect speed: 0.000000 real_pulses:0 +I (10154) example: new speed:399.000000 +I (10164) example: expect speed: 0.000000 real_pulses:0 +I (10164) example: new speed:399.000000 +I (10174) example: expect speed: 0.000000 real_pulses:0 +I (10174) example: new speed:399.000000 +I (10184) example: expect speed: 0.000000 real_pulses:0 +I (10184) example: new speed:399.000000 +I (10194) example: expect speed: 0.000000 real_pulses:0 +I (10194) example: new speed:399.000000 +I (10204) example: expect speed: 0.000000 real_pulses:0 +I (10204) example: new speed:399.000000 +I (10214) example: expect speed: 0.000000 real_pulses:0 +I (10214) example: new speed:399.000000 +I (10224) example: expect speed: 0.000000 real_pulses:0 +I (10224) example: new speed:399.000000 +I (10234) example: expect speed: 0.000000 real_pulses:0 +I (10234) example: new speed:399.000000 +I (10244) example: expect speed: 0.000000 real_pulses:0 +I (10244) example: new speed:399.000000 +I (10254) example: expect speed: 0.000000 real_pulses:0 +I (10254) example: new speed:399.000000 +I (10264) example: expect speed: 0.000000 real_pulses:0 +I (10264) example: new speed:399.000000 +I (10274) example: expect speed: 0.000000 real_pulses:0 +I (10274) example: new speed:399.000000 +I (10284) example: expect speed: 0.000000 real_pulses:0 +I (10294) example: new speed:399.000000 +I (10294) example: expect speed: 0.000000 real_pulses:0 +I (10294) example: new speed:399.000000 +I (10304) example: expect speed: 0.000000 real_pulses:0 +I (10304) example: new speed:399.000000 +I (10314) example: expect speed: 0.000000 real_pulses:0 +I (10314) example: new speed:399.000000 +I (10324) example: expect speed: 0.000000 real_pulses:0 +I (10324) example: new speed:399.000000 +I (10334) example: expect speed: 0.000000 real_pulses:0 +I (10334) example: new speed:399.000000 +I (10344) example: expect speed: 0.000000 real_pulses:0 +I (10344) example: new speed:399.000000 +I (10354) example: expect speed: 0.000000 real_pulses:0 +I (10354) example: new speed:399.000000 +I (10364) example: expect speed: 0.000000 real_pulses:0 +I (10364) example: new speed:399.000000 +I (10374) example: expect speed: 0.000000 real_pulses:0 +I (10374) example: new speed:399.000000 +I (10384) example: expect speed: 0.000000 real_pulses:0 +I (10384) example: new speed:399.000000 +I (10394) example: expect speed: 0.000000 real_pulses:0 +I (10394) example: new speed:399.000000 +I (10404) example: expect speed: 0.000000 real_pulses:0 +I (10404) example: new speed:399.000000 +I (10414) example: expect speed: 0.000000 real_pulses:0 +I (10414) example: new speed:399.000000 +I (10424) example: expect speed: 0.000000 real_pulses:0 +I (10424) example: new speed:399.000000 +I (10434) example: expect speed: 0.000000 real_pulses:0 +I (10434) example: new speed:399.000000 +I (10444) example: expect speed: 0.000000 real_pulses:0 +I (10444) example: new speed:399.000000 +I (10454) example: expect speed: 0.000000 real_pulses:0 +I (10454) example: new speed:399.000000 +I (10464) example: expect speed: 0.000000 real_pulses:0 +I (10464) example: new speed:399.000000 +I (10474) example: expect speed: 0.000000 real_pulses:0 +I (10474) example: new speed:399.000000 +I (10484) example: expect speed: 0.000000 real_pulses:0 +I (10484) example: new speed:399.000000 +I (10494) example: expect speed: 0.000000 real_pulses:0 +I (10494) example: new speed:399.000000 +I (10504) example: expect speed: 0.000000 real_pulses:0 +I (10504) example: new speed:399.000000 +I (10514) example: expect speed: 0.000000 real_pulses:0 +I (10514) example: new speed:399.000000 +I (10524) example: expect speed: 0.000000 real_pulses:0 +I (10524) example: new speed:399.000000 +I (10534) example: expect speed: 0.000000 real_pulses:0 +I (10534) example: new speed:399.000000 +I (10544) example: expect speed: 0.000000 real_pulses:0 +I (10544) example: new speed:399.000000 +I (10554) example: expect speed: 0.000000 real_pulses:0 +I (10554) example: new speed:399.000000 +I (10564) example: expect speed: 0.000000 real_pulses:0 +I (10564) example: new speed:399.000000 +I (10574) example: expect speed: 0.000000 real_pulses:0 +I (10574) example: new speed:399.000000 +I (10584) example: expect speed: 0.000000 real_pulses:0 +I (10584) example: new speed:399.000000 +I (10594) example: expect speed: 0.000000 real_pulses:0 +I (10604) example: new speed:399.000000 +I (10604) example: expect speed: 0.000000 real_pulses:0 +I (10604) example: new speed:399.000000 +I (10614) example: expect speed: 0.000000 real_pulses:0 +I (10614) example: new speed:399.000000 +I (10624) example: expect speed: 0.000000 real_pulses:0 +I (10624) example: new speed:399.000000 +I (10634) example: expect speed: 0.000000 real_pulses:0 +I (10634) example: new speed:399.000000 +I (10644) example: expect speed: 0.000000 real_pulses:0 +I (10644) example: new speed:399.000000 +I (10654) example: expect speed: 0.000000 real_pulses:0 +I (10654) example: new speed:399.000000 +I (10664) example: expect speed: 0.000000 real_pulses:0 +I (10664) example: new speed:399.000000 +I (10674) example: expect speed: 0.000000 real_pulses:0 +I (10674) example: new speed:399.000000 +I (10684) example: expect speed: 0.000000 real_pulses:0 +I (10684) example: new speed:399.000000 +I (10694) example: expect speed: 0.000000 real_pulses:0 +I (10694) example: new speed:399.000000 +I (10704) example: expect speed: 0.000000 real_pulses:0 +I (10704) example: new speed:399.000000 +I (10714) example: expect speed: 0.000000 real_pulses:0 +I (10714) example: new speed:399.000000 +I (10724) example: expect speed: 0.000000 real_pulses:0 +I (10724) example: new speed:399.000000 +I (10734) example: expect speed: 0.000000 real_pulses:0 +I (10734) example: new speed:399.000000 +I (10744) example: expect speed: 0.000000 real_pulses:0 +I (10744) example: new speed:399.000000 +I (10754) example: expect speed: 0.000000 real_pulses:0 +I (10754) example: new speed:399.000000 +I (10764) example: expect speed: 0.000000 real_pulses:0 +I (10764) example: new speed:399.000000 +I (10774) example: expect speed: 0.000000 real_pulses:0 +I (10774) example: new speed:399.000000 +I (10784) example: expect speed: 0.000000 real_pulses:0 +I (10784) example: new speed:399.000000 +I (10794) example: expect speed: 0.000000 real_pulses:0 +I (10794) example: new speed:399.000000 +I (10804) example: expect speed: 0.000000 real_pulses:0 +I (10804) example: new speed:399.000000 +I (10814) example: expect speed: 0.000000 real_pulses:0 +I (10814) example: new speed:399.000000 +I (10824) example: expect speed: 0.000000 real_pulses:0 +I (10824) example: new speed:399.000000 +I (10834) example: expect speed: 0.000000 real_pulses:0 +I (10834) example: new speed:399.000000 +I (10844) example: expect speed: 0.000000 real_pulses:0 +I (10844) example: new speed:399.000000 +I (10854) example: expect speed: 0.000000 real_pulses:0 +I (10854) example: new speed:399.000000 +I (10864) example: expect speed: 0.000000 real_pulses:0 +I (10864) example: new speed:399.000000 +I (10874) example: expect speed: 0.000000 real_pulses:0 +I (10874) example: new speed:399.000000 +I (10884) example: expect speed: 0.000000 real_pulses:0 +I (10884) example: new speed:399.000000 +I (10894) example: expect speed: 0.000000 real_pulses:0 +I (10894) example: new speed:399.000000 +I (10904) example: expect speed: 0.000000 real_pulses:0 +I (10904) example: new speed:399.000000 +I (10914) example: expect speed: 0.000000 real_pulses:0 +I (10914) example: new speed:399.000000 +I (10924) example: expect speed: 0.000000 real_pulses:0 +I (10924) example: new speed:399.000000 +I (10934) example: expect speed: 0.000000 real_pulses:0 +I (10934) example: new speed:399.000000 +I (10944) example: expect speed: 0.000000 real_pulses:0 +I (10944) example: new speed:399.000000 +I (10954) example: expect speed: 0.000000 real_pulses:0 +I (10954) example: new speed:399.000000 +I (10964) example: expect speed: 0.000000 real_pulses:0 +I (10964) example: new speed:399.000000 +I (10974) example: expect speed: 0.000000 real_pulses:0 +I (10974) example: new speed:399.000000 +I (10984) example: expect speed: 0.000000 real_pulses:0 +I (10984) example: new speed:399.000000 +I (10994) example: expect speed: 0.000000 real_pulses:0 +I (10994) example: new speed:399.000000 +I (11004) example: expect speed: 0.000000 real_pulses:0 +I (11004) example: new speed:399.000000 +I (11014) example: expect speed: 0.000000 real_pulses:0 +I (11014) example: new speed:399.000000 +I (11024) example: expect speed: 0.000000 real_pulses:0 +I (11024) example: new speed:399.000000 +I (11034) example: expect speed: 0.000000 real_pulses:0 +I (11034) example: new speed:399.000000 +I (11044) example: expect speed: 0.000000 real_pulses:0 +I (11044) example: new speed:399.000000 +I (11054) example: expect speed: 0.000000 real_pulses:0 +I (11054) example: new speed:399.000000 +I (11064) example: expect speed: 0.000000 real_pulses:0 +I (11064) example: new speed:399.000000 +I (11074) example: expect speed: 0.000000 real_pulses:0 +I (11074) example: new speed:399.000000 +I (11084) example: expect speed: 0.000000 real_pulses:0 +I (11084) example: new speed:399.000000 +I (11094) example: expect speed: 0.000000 real_pulses:0 +I (11094) example: new speed:399.000000 +I (11104) example: expect speed: 0.000000 real_pulses:0 +I (11104) example: new speed:399.000000 +I (11114) example: expect speed: 0.000000 real_pulses:0 +I (11114) example: new speed:399.000000 +I (11124) example: expect speed: 0.000000 real_pulses:0 +I (11124) example: new speed:399.000000 +I (11134) example: expect speed: 0.000000 real_pulses:0 +I (11134) example: new speed:399.000000 +I (11144) example: expect speed: 0.000000 real_pulses:0 +I (11144) example: new speed:399.000000 +I (11154) example: expect speed: 0.000000 real_pulses:0 +I (11154) example: new speed:399.000000 +I (11164) example: expect speed: 0.000000 real_pulses:0 +I (11164) example: new speed:399.000000 +I (11174) example: expect speed: 0.000000 real_pulses:0 +I (11174) example: new speed:399.000000 +I (11184) example: expect speed: 0.000000 real_pulses:0 +I (11184) example: new speed:399.000000 +I (11194) example: expect speed: 0.000000 real_pulses:0 +I (11194) example: new speed:399.000000 +I (11204) example: expect speed: 0.000000 real_pulses:0 +I (11204) example: new speed:399.000000 +I (11214) example: expect speed: 0.000000 real_pulses:0 +I (11214) example: new speed:399.000000 +I (11224) example: expect speed: 0.000000 real_pulses:0 +I (11224) example: new speed:399.000000 +I (11234) example: expect speed: 0.000000 real_pulses:0 +I (11234) example: new speed:399.000000 +I (11244) example: expect speed: 0.000000 real_pulses:0 +I (11244) example: new speed:399.000000 +I (11254) example: expect speed: 0.000000 real_pulses:0 +I (11254) example: new speed:399.000000 +I (11264) example: expect speed: 0.000000 real_pulses:0 +I (11264) example: new speed:399.000000 +I (11274) example: expect speed: 0.000000 real_pulses:0 +I (11274) example: new speed:399.000000 +I (11284) example: expect speed: 0.000000 real_pulses:0 +I (11284) example: new speed:399.000000 +I (11294) example: expect speed: 0.000000 real_pulses:0 +I (11294) example: new speed:399.000000 +I (11304) example: expect speed: 0.000000 real_pulses:0 +I (11304) example: new speed:399.000000 +I (11314) example: expect speed: 0.000000 real_pulses:0 +I (11324) example: new speed:399.000000 +I (11324) example: expect speed: 0.000000 real_pulses:0 +I (11324) example: new speed:399.000000 +I (11334) example: expect speed: 0.000000 real_pulses:0 +I (11334) example: new speed:399.000000 +I (11344) example: expect speed: 0.000000 real_pulses:0 +I (11344) example: new speed:399.000000 +I (11354) example: expect speed: 0.000000 real_pulses:0 +I (11354) example: new speed:399.000000 +I (11364) example: expect speed: 0.000000 real_pulses:0 +I (11364) example: new speed:399.000000 +I (11374) example: expect speed: 0.000000 real_pulses:0 +I (11374) example: new speed:399.000000 +I (11384) example: expect speed: 0.000000 real_pulses:0 +I (11384) example: new speed:399.000000 +I (11394) example: expect speed: 0.000000 real_pulses:0 +I (11394) example: new speed:399.000000 +I (11404) example: expect speed: 0.000000 real_pulses:0 +I (11404) example: new speed:399.000000 +I (11414) example: expect speed: 0.000000 real_pulses:0 +I (11414) example: new speed:399.000000 +I (11424) example: expect speed: 0.000000 real_pulses:0 +I (11424) example: new speed:399.000000 +I (11434) example: expect speed: 0.000000 real_pulses:0 +I (11434) example: new speed:399.000000 +I (11444) example: expect speed: 0.000000 real_pulses:0 +I (11444) example: new speed:399.000000 +I (11454) example: expect speed: 0.000000 real_pulses:0 +I (11454) example: new speed:399.000000 +I (11464) example: expect speed: 0.000000 real_pulses:0 +I (11464) example: new speed:399.000000 +I (11474) example: expect speed: 0.000000 real_pulses:0 +I (11474) example: new speed:399.000000 +I (11484) example: expect speed: 0.000000 real_pulses:0 +I (11484) example: new speed:399.000000 +I (11494) example: expect speed: 0.000000 real_pulses:0 +I (11494) example: new speed:399.000000 +I (11504) example: expect speed: 0.000000 real_pulses:0 +I (11504) example: new speed:399.000000 +I (11514) example: expect speed: 0.000000 real_pulses:0 +I (11514) example: new speed:399.000000 +I (11524) example: expect speed: 0.000000 real_pulses:0 +I (11524) example: new speed:399.000000 +I (11534) example: expect speed: 0.000000 real_pulses:0 +I (11534) example: new speed:399.000000 +I (11544) example: expect speed: 0.000000 real_pulses:0 +I (11544) example: new speed:399.000000 +I (11554) example: expect speed: 0.000000 real_pulses:0 +I (11554) example: new speed:399.000000 +I (11564) example: expect speed: 0.000000 real_pulses:0 +I (11564) example: new speed:399.000000 +I (11574) example: expect speed: 0.000000 real_pulses:0 +I (11574) example: new speed:399.000000 +I (11584) example: expect speed: 0.000000 real_pulses:0 +I (11584) example: new speed:399.000000 +I (11594) example: expect speed: 0.000000 real_pulses:0 +I (11594) example: new speed:399.000000 +I (11604) example: expect speed: 0.000000 real_pulses:0 +I (11604) example: new speed:399.000000 +I (11614) example: expect speed: 0.000000 real_pulses:0 +I (11614) example: new speed:399.000000 +I (11624) example: expect speed: 0.000000 real_pulses:0 +I (11624) example: new speed:399.000000 +I (11634) example: expect speed: 0.000000 real_pulses:0 +I (11634) example: new speed:399.000000 +I (11644) example: expect speed: 0.000000 real_pulses:0 +I (11644) example: new speed:399.000000 +I (11654) example: expect speed: 0.000000 real_pulses:0 +I (11654) example: new speed:399.000000 +I (11664) example: expect speed: 0.000000 real_pulses:0 +I (11664) example: new speed:399.000000 +I (11674) example: expect speed: 0.000000 real_pulses:0 +I (11674) example: new speed:399.000000 +I (11684) example: expect speed: 0.000000 real_pulses:0 +I (11684) example: new speed:399.000000 +I (11694) example: expect speed: 0.000000 real_pulses:0 +I (11694) example: new speed:399.000000 +I (11704) example: expect speed: 0.000000 real_pulses:0 +I (11704) example: new speed:399.000000 +I (11714) example: expect speed: 0.000000 real_pulses:0 +I (11714) example: new speed:399.000000 +I (11724) example: expect speed: 0.000000 real_pulses:0 +I (11724) example: new speed:399.000000 +I (11734) example: expect speed: 0.000000 real_pulses:0 +I (11734) example: new speed:399.000000 +I (11744) example: expect speed: 0.000000 real_pulses:0 +I (11744) example: new speed:399.000000 +I (11754) example: expect speed: 0.000000 real_pulses:0 +I (11754) example: new speed:399.000000 +I (11764) example: expect speed: 0.000000 real_pulses:0 +I (11764) example: new speed:399.000000 +I (11774) example: expect speed: 0.000000 real_pulses:0 +I (11774) example: new speed:399.000000 +I (11784) example: expect speed: 0.000000 real_pulses:0 +I (11784) example: new speed:399.000000 +I (11794) example: expect speed: 0.000000 real_pulses:0 +I (11794) example: new speed:399.000000 +I (11804) example: expect speed: 0.000000 real_pulses:0 +I (11804) example: new speed:399.000000 +I (11814) example: expect speed: 0.000000 real_pulses:0 +I (11814) example: new speed:399.000000 +I (11824) example: expect speed: 0.000000 real_pulses:0 +I (11824) example: new speed:399.000000 +I (11834) example: expect speed: 0.000000 real_pulses:0 +I (11834) example: new speed:399.000000 +I (11844) example: expect speed: 0.000000 real_pulses:0 +I (11844) example: new speed:399.000000 +I (11854) example: expect speed: 0.000000 real_pulses:0 +I (11854) example: new speed:399.000000 +I (11864) example: expect speed: 0.000000 real_pulses:0 +I (11864) example: new speed:399.000000 +I (11874) example: expect speed: 0.000000 real_pulses:0 +I (11874) example: new speed:399.000000 +I (11884) example: expect speed: 0.000000 real_pulses:0 +I (11884) example: new speed:399.000000 +I (11894) example: expect speed: 0.000000 real_pulses:0 +I (11894) example: new speed:399.000000 +I (11904) example: expect speed: 0.000000 real_pulses:0 +I (11904) example: new speed:399.000000 +I (11914) example: expect speed: 0.000000 real_pulses:0 +I (11914) example: new speed:399.000000 +I (11924) example: expect speed: 0.000000 real_pulses:0 +I (11924) example: new speed:399.000000 +I (11934) example: expect speed: 0.000000 real_pulses:0 +I (11934) example: new speed:399.000000 +I (11944) example: expect speed: 0.000000 real_pulses:0 +I (11944) example: new speed:399.000000 +I (11954) example: expect speed: 0.000000 real_pulses:0 +I (11954) example: new speed:399.000000 +I (11964) example: expect speed: 0.000000 real_pulses:0 +I (11964) example: new speed:399.000000 +I (11974) example: expect speed: 0.000000 real_pulses:0 +I (11974) example: new speed:399.000000 +I (11984) example: expect speed: 0.000000 real_pulses:0 +I (11984) example: new speed:399.000000 +I (11994) example: expect speed: 0.000000 real_pulses:0 +I (11994) example: new speed:399.000000 +I (12004) example: expect speed: 0.000000 real_pulses:0 +I (12004) example: new speed:399.000000 +I (12014) example: expect speed: 0.000000 real_pulses:0 +I (12014) example: new speed:399.000000 +I (12024) example: expect speed: 0.000000 real_pulses:0 +I (12024) example: new speed:399.000000 +I (12034) example: expect speed: 0.000000 real_pulses:0 +I (12034) example: new speed:399.000000 +I (12044) example: expect speed: 0.000000 real_pulses:0 +I (12044) example: new speed:399.000000 +I (12054) example: expect speed: 0.000000 real_pulses:0 +I (12054) example: new speed:399.000000 +I (12064) example: expect speed: 0.000000 real_pulses:0 +I (12064) example: new speed:399.000000 +I (12074) example: expect speed: 0.000000 real_pulses:0 +I (12074) example: new speed:399.000000 +I (12084) example: expect speed: 0.000000 real_pulses:0 +I (12084) example: new speed:399.000000 +I (12094) example: expect speed: 0.000000 real_pulses:0 +I (12094) example: new speed:399.000000 +I (12104) example: expect speed: 0.000000 real_pulses:0 +I (12104) example: new speed:399.000000 +I (12114) example: expect speed: 0.000000 real_pulses:0 +I (12114) example: new speed:399.000000 +I (12124) example: expect speed: 0.000000 real_pulses:0 +I (12124) example: new speed:399.000000 +I (12134) example: expect speed: 0.000000 real_pulses:0 +I (12134) example: new speed:399.000000 +I (12144) example: expect speed: 0.000000 real_pulses:0 +I (12144) example: new speed:399.000000 +I (12154) example: expect speed: 0.000000 real_pulses:0 +I (12154) example: new speed:399.000000 +I (12164) example: expect speed: 0.000000 real_pulses:0 +I (12164) example: new speed:399.000000 +I (12174) example: expect speed: 0.000000 real_pulses:0 +I (12174) example: new speed:399.000000 +I (12184) example: expect speed: 0.000000 real_pulses:0 +I (12184) example: new speed:399.000000 +I (12194) example: expect speed: 0.000000 real_pulses:0 +I (12194) example: new speed:399.000000 +I (12204) example: expect speed: 0.000000 real_pulses:0 +I (12204) example: new speed:399.000000 +I (12214) example: expect speed: 0.000000 real_pulses:0 +I (12214) example: new speed:399.000000 +I (12224) example: expect speed: 0.000000 real_pulses:0 +I (12224) example: new speed:399.000000 +I (12234) example: expect speed: 0.000000 real_pulses:0 +I (12234) example: new speed:399.000000 +I (12244) example: expect speed: 0.000000 real_pulses:0 +I (12244) example: new speed:399.000000 +I (12254) example: expect speed: 0.000000 real_pulses:0 +I (12254) example: new speed:399.000000 +I (12264) example: expect speed: 0.000000 real_pulses:0 +I (12264) example: new speed:399.000000 +I (12274) example: expect speed: 0.000000 real_pulses:0 +I (12274) example: new speed:399.000000 +I (12284) example: expect speed: 0.000000 real_pulses:0 +I (12284) example: new speed:399.000000 +I (12294) example: expect speed: 0.000000 real_pulses:0 +I (12294) example: new speed:399.000000 +I (12304) example: expect speed: 0.000000 real_pulses:0 +I (12304) example: new speed:399.000000 +I (12314) example: expect speed: 0.000000 real_pulses:0 +I (12314) example: new speed:399.000000 +I (12324) example: expect speed: 0.000000 real_pulses:0 +I (12324) example: new speed:399.000000 +I (12334) example: expect speed: 0.000000 real_pulses:0 +I (12334) example: new speed:399.000000 +I (12344) example: expect speed: 0.000000 real_pulses:0 +I (12344) example: new speed:399.000000 +I (12354) example: expect speed: 0.000000 real_pulses:0 +I (12354) example: new speed:399.000000 +I (12364) example: expect speed: 0.000000 real_pulses:0 +I (12364) example: new speed:399.000000 +I (12374) example: expect speed: 0.000000 real_pulses:0 +I (12374) example: new speed:399.000000 +I (12384) example: expect speed: 0.000000 real_pulses:0 +I (12384) example: new speed:399.000000 +I (12394) example: expect speed: 0.000000 real_pulses:0 +I (12394) example: new speed:399.000000 +I (12404) example: expect speed: 0.000000 real_pulses:0 +I (12404) example: new speed:399.000000 +I (12414) example: expect speed: 0.000000 real_pulses:0 +I (12414) example: new speed:399.000000 +I (12424) example: expect speed: 0.000000 real_pulses:0 +I (12424) example: new speed:399.000000 +I (12434) example: expect speed: 0.000000 real_pulses:0 +I (12444) example: new speed:399.000000 +I (12444) example: expect speed: 0.000000 real_pulses:0 +I (12444) example: new speed:399.000000 +I (12454) example: expect speed: 0.000000 real_pulses:0 +I (12454) example: new speed:399.000000 +I (12464) example: expect speed: 0.000000 real_pulses:0 +I (12464) example: new speed:399.000000 +I (12474) example: expect speed: 0.000000 real_pulses:0 +I (12474) example: new speed:399.000000 +I (12484) example: expect speed: 0.000000 real_pulses:0 +I (12484) example: new speed:399.000000 +I (12494) example: expect speed: 0.000000 real_pulses:0 +I (12494) example: new speed:399.000000 +I (12504) example: expect speed: 0.000000 real_pulses:0 +I (12504) example: new speed:399.000000 +I (12514) example: expect speed: 0.000000 real_pulses:0 +I (12514) example: new speed:399.000000 +I (12524) example: expect speed: 0.000000 real_pulses:0 +I (12524) example: new speed:399.000000 +I (12534) example: expect speed: 0.000000 real_pulses:0 +I (12534) example: new speed:399.000000 +I (12544) example: expect speed: 0.000000 real_pulses:0 +I (12544) example: new speed:399.000000 +I (12554) example: expect speed: 0.000000 real_pulses:0 +I (12554) example: new speed:399.000000 +I (12564) example: expect speed: 0.000000 real_pulses:0 +I (12564) example: new speed:399.000000 +I (12574) example: expect speed: 0.000000 real_pulses:0 +I (12574) example: new speed:399.000000 +I (12584) example: expect speed: 0.000000 real_pulses:0 +I (12584) example: new speed:399.000000 +I (12594) example: expect speed: 0.000000 real_pulses:0 +I (12594) example: new speed:399.000000 +I (12604) example: expect speed: 0.000000 real_pulses:0 +I (12604) example: new speed:399.000000 +I (12614) example: expect speed: 0.000000 real_pulses:0 +I (12614) example: new speed:399.000000 +I (12624) example: expect speed: 0.000000 real_pulses:0 +I (12624) example: new speed:399.000000 +I (12634) example: expect speed: 0.000000 real_pulses:0 +I (12634) example: new speed:399.000000 +I (12644) example: expect speed: 0.000000 real_pulses:0 +I (12644) example: new speed:399.000000 +I (12654) example: expect speed: 0.000000 real_pulses:0 +I (12654) example: new speed:399.000000 +I (12664) example: expect speed: 0.000000 real_pulses:0 +I (12664) example: new speed:399.000000 +I (12674) example: expect speed: 0.000000 real_pulses:0 +I (12674) example: new speed:399.000000 +I (12684) example: expect speed: 0.000000 real_pulses:0 +I (12684) example: new speed:399.000000 +I (12694) example: expect speed: 0.000000 real_pulses:0 +I (12694) example: new speed:399.000000 +I (12704) example: expect speed: 0.000000 real_pulses:0 +I (12704) example: new speed:399.000000 +I (12714) example: expect speed: 0.000000 real_pulses:0 +I (12714) example: new speed:399.000000 +I (12724) example: expect speed: 0.000000 real_pulses:0 +I (12724) example: new speed:399.000000 +I (12734) example: expect speed: 0.000000 real_pulses:0 +I (12734) example: new speed:399.000000 +I (12744) example: expect speed: 0.000000 real_pulses:0 +I (12744) example: new speed:399.000000 +I (12754) example: expect speed: 0.000000 real_pulses:0 +I (12754) example: new speed:399.000000 +I (12764) example: expect speed: 0.000000 real_pulses:0 +I (12764) example: new speed:399.000000 +I (12774) example: expect speed: 0.000000 real_pulses:0 +I (12774) example: new speed:399.000000 +I (12784) example: expect speed: 0.000000 real_pulses:0 +I (12784) example: new speed:399.000000 +I (12794) example: expect speed: 0.000000 real_pulses:0 +I (12794) example: new speed:399.000000 +I (12804) example: expect speed: 0.000000 real_pulses:0 +I (12804) example: new speed:399.000000 +I (12814) example: expect speed: 0.000000 real_pulses:0 +I (12814) example: new speed:399.000000 +I (12824) example: expect speed: 0.000000 real_pulses:0 +I (12824) example: new speed:399.000000 +I (12834) example: expect speed: 0.000000 real_pulses:0 +I (12834) example: new speed:399.000000 +I (12844) example: expect speed: 0.000000 real_pulses:0 +I (12844) example: new speed:399.000000 +I (12854) example: expect speed: 0.000000 real_pulses:0 +I (12854) example: new speed:399.000000 +I (12864) example: expect speed: 0.000000 real_pulses:0 +I (12864) example: new speed:399.000000 +I (12874) example: expect speed: 0.000000 real_pulses:0 +I (12874) example: new speed:399.000000 +I (12884) example: expect speed: 0.000000 real_pulses:0 +I (12884) example: new speed:399.000000 +I (12894) example: expect speed: 0.000000 real_pulses:0 +I (12894) example: new speed:399.000000 +I (12904) example: expect speed: 0.000000 real_pulses:0 +I (12904) example: new speed:399.000000 +I (12914) example: expect speed: 0.000000 real_pulses:0 +I (12914) example: new speed:399.000000 +I (12924) example: expect speed: 0.000000 real_pulses:0 +I (12924) example: new speed:399.000000 +I (12934) example: expect speed: 0.000000 real_pulses:0 +I (12934) example: new speed:399.000000 +I (12944) example: expect speed: 0.000000 real_pulses:0 +I (12944) example: new speed:399.000000 +I (12954) example: expect speed: 0.000000 real_pulses:0 +I (12954) example: new speed:399.000000 +I (12964) example: expect speed: 0.000000 real_pulses:0 +I (12964) example: new speed:399.000000 +I (12974) example: expect speed: 0.000000 real_pulses:0 +I (12974) example: new speed:399.000000 +I (12984) example: expect speed: 0.000000 real_pulses:0 +I (12984) example: new speed:399.000000 +I (12994) example: expect speed: 0.000000 real_pulses:0 +I (12994) example: new speed:399.000000 +I (13004) example: expect speed: 0.000000 real_pulses:0 +I (13004) example: new speed:399.000000 +I (13014) example: expect speed: 0.000000 real_pulses:0 +I (13014) example: new speed:399.000000 +I (13024) example: expect speed: 0.000000 real_pulses:0 +I (13024) example: new speed:399.000000 +I (13034) example: expect speed: 0.000000 real_pulses:0 +I (13034) example: new speed:399.000000 +I (13044) example: expect speed: 0.000000 real_pulses:0 +I (13044) example: new speed:399.000000 +I (13054) example: expect speed: 0.000000 real_pulses:0 +I (13054) example: new speed:399.000000 +I (13064) example: expect speed: 0.000000 real_pulses:0 +I (13064) example: new speed:399.000000 +I (13074) example: expect speed: 0.000000 real_pulses:0 +I (13074) example: new speed:399.000000 +I (13084) example: expect speed: 0.000000 real_pulses:0 +I (13084) example: new speed:399.000000 +I (13094) example: expect speed: 0.000000 real_pulses:0 +I (13094) example: new speed:399.000000 +I (13104) example: expect speed: 0.000000 real_pulses:0 +I (13104) example: new speed:399.000000 +I (13114) example: expect speed: 0.000000 real_pulses:0 +I (13114) example: new speed:399.000000 +I (13124) example: expect speed: 0.000000 real_pulses:0 +I (13124) example: new speed:399.000000 +I (13134) example: expect speed: 0.000000 real_pulses:0 +I (13134) example: new speed:399.000000 +I (13144) example: expect speed: 0.000000 real_pulses:0 +I (13144) example: new speed:399.000000 +I (13154) example: expect speed: 0.000000 real_pulses:0 +I (13154) example: new speed:399.000000 +I (13164) example: expect speed: 0.000000 real_pulses:0 +I (13164) example: new speed:399.000000 +I (13174) example: expect speed: 0.000000 real_pulses:0 +I (13174) example: new speed:399.000000 +I (13184) example: expect speed: 0.000000 real_pulses:0 +I (13184) example: new speed:399.000000 +I (13194) example: expect speed: 0.000000 real_pulses:0 +I (13194) example: new speed:399.000000 +I (13204) example: expect speed: 0.000000 real_pulses:0 +I (13204) example: new speed:399.000000 +I (13214) example: expect speed: 0.000000 real_pulses:0 +I (13214) example: new speed:399.000000 +I (13224) example: expect speed: 0.000000 real_pulses:0 +I (13224) example: new speed:399.000000 +I (13234) example: expect speed: 0.000000 real_pulses:0 +I (13234) example: new speed:399.000000 +I (13244) example: expect speed: 0.000000 real_pulses:0 +I (13244) example: new speed:399.000000 +I (13254) example: expect speed: 0.000000 real_pulses:0 +I (13254) example: new speed:399.000000 +I (13264) example: expect speed: 0.000000 real_pulses:0 +I (13264) example: new speed:399.000000 +I (13274) example: expect speed: 0.000000 real_pulses:0 +I (13274) example: new speed:399.000000 +I (13284) example: expect speed: 0.000000 real_pulses:0 +I (13284) example: new speed:399.000000 +I (13294) example: expect speed: 0.000000 real_pulses:0 +I (13294) example: new speed:399.000000 +I (13304) example: expect speed: 0.000000 real_pulses:0 +I (13304) example: new speed:399.000000 +I (13314) example: expect speed: 0.000000 real_pulses:0 +I (13314) example: new speed:399.000000 +I (13324) example: expect speed: 0.000000 real_pulses:0 +I (13324) example: new speed:399.000000 +I (13334) example: expect speed: 0.000000 real_pulses:0 +I (13334) example: new speed:399.000000 +I (13344) example: expect speed: 0.000000 real_pulses:0 +I (13344) example: new speed:399.000000 +I (13354) example: expect speed: 0.000000 real_pulses:0 +I (13354) example: new speed:399.000000 +I (13364) example: expect speed: 0.000000 real_pulses:0 +I (13364) example: new speed:399.000000 +I (13374) example: expect speed: 0.000000 real_pulses:0 +I (13374) example: new speed:399.000000 +I (13384) example: expect speed: 0.000000 real_pulses:0 +I (13384) example: new speed:399.000000 +I (13394) example: expect speed: 0.000000 real_pulses:0 +I (13394) example: new speed:399.000000 +I (13404) example: expect speed: 0.000000 real_pulses:0 +I (13404) example: new speed:399.000000 +I (13414) example: expect speed: 0.000000 real_pulses:0 +I (13414) example: new speed:399.000000 +I (13424) example: expect speed: 0.000000 real_pulses:0 +I (13424) example: new speed:399.000000 +I (13434) example: expect speed: 0.000000 real_pulses:0 +I (13434) example: new speed:399.000000 +I (13444) example: expect speed: 0.000000 real_pulses:0 +I (13444) example: new speed:399.000000 +I (13454) example: expect speed: 0.000000 real_pulses:0 +I (13454) example: new speed:399.000000 +I (13464) example: expect speed: 0.000000 real_pulses:0 +I (13464) example: new speed:399.000000 +I (13474) example: expect speed: 0.000000 real_pulses:0 +I (13474) example: new speed:399.000000 +I (13484) example: expect speed: 0.000000 real_pulses:0 +I (13484) example: new speed:399.000000 +I (13494) example: expect speed: 0.000000 real_pulses:0 +I (13494) example: new speed:399.000000 +I (13504) example: expect speed: 0.000000 real_pulses:0 +I (13504) example: new speed:399.000000 +I (13514) example: expect speed: 0.000000 real_pulses:0 +I (13514) example: new speed:399.000000 +I (13524) example: expect speed: 0.000000 real_pulses:0 +I (13524) example: new speed:399.000000 +I (13534) example: expect speed: 0.000000 real_pulses:0 +I (13534) example: new speed:399.000000 +I (13544) example: expect speed: 0.000000 real_pulses:0 +I (13544) example: new speed:399.000000 +I (13554) example: expect speed: 0.000000 real_pulses:0 +I (13554) example: new speed:399.000000 +I (13564) example: expect speed: 0.000000 real_pulses:0 +I (13574) example: new speed:399.000000 +I (13574) example: expect speed: 0.000000 real_pulses:0 +I (13574) example: new speed:399.000000 +I (13584) example: expect speed: 0.000000 real_pulses:0 +I (13584) example: new speed:399.000000 +I (13594) example: expect speed: 0.000000 real_pulses:0 +I (13594) example: new speed:399.000000 +I (13604) example: expect speed: 0.000000 real_pulses:0 +I (13604) example: new speed:399.000000 +I (13614) example: expect speed: 0.000000 real_pulses:0 +I (13614) example: new speed:399.000000 +I (13624) example: expect speed: 0.000000 real_pulses:0 +I (13624) example: new speed:399.000000 +I (13634) example: expect speed: 0.000000 real_pulses:0 +I (13634) example: new speed:399.000000 +I (13644) example: expect speed: 0.000000 real_pulses:0 +I (13644) example: new speed:399.000000 +I (13654) example: expect speed: 0.000000 real_pulses:0 +I (13654) example: new speed:399.000000 +I (13664) example: expect speed: 0.000000 real_pulses:0 +I (13664) example: new speed:399.000000 +I (13674) example: expect speed: 0.000000 real_pulses:0 +I (13674) example: new speed:399.000000 +I (13684) example: expect speed: 0.000000 real_pulses:0 +I (13684) example: new speed:399.000000 +I (13694) example: expect speed: 0.000000 real_pulses:0 +I (13694) example: new speed:399.000000 +I (13704) example: expect speed: 0.000000 real_pulses:0 +I (13704) example: new speed:399.000000 +I (13714) example: expect speed: 0.000000 real_pulses:0 +I (13714) example: new speed:399.000000 +I (13724) example: expect speed: 0.000000 real_pulses:0 +I (13724) example: new speed:399.000000 +I (13734) example: expect speed: 0.000000 real_pulses:0 +I (13734) example: new speed:399.000000 +I (13744) example: expect speed: 0.000000 real_pulses:0 +I (13744) example: new speed:399.000000 +I (13754) example: expect speed: 0.000000 real_pulses:0 +I (13754) example: new speed:399.000000 +I (13764) example: expect speed: 0.000000 real_pulses:0 +I (13764) example: new speed:399.000000 +I (13774) example: expect speed: 0.000000 real_pulses:0 +I (13774) example: new speed:399.000000 +I (13784) example: expect speed: 0.000000 real_pulses:0 +I (13784) example: new speed:399.000000 +I (13794) example: expect speed: 0.000000 real_pulses:0 +I (13794) example: new speed:399.000000 +I (13804) example: expect speed: 0.000000 real_pulses:0 +I (13804) example: new speed:399.000000 +I (13814) example: expect speed: 0.000000 real_pulses:0 +I (13814) example: new speed:399.000000 +I (13824) example: expect speed: 0.000000 real_pulses:0 +I (13824) example: new speed:399.000000 +I (13834) example: expect speed: 0.000000 real_pulses:0 +I (13834) example: new speed:399.000000 +I (13844) example: expect speed: 0.000000 real_pulses:0 +I (13844) example: new speed:399.000000 +I (13854) example: expect speed: 0.000000 real_pulses:0 +I (13854) example: new speed:399.000000 +I (13864) example: expect speed: 0.000000 real_pulses:0 +I (13864) example: new speed:399.000000 +I (13874) example: expect speed: 0.000000 real_pulses:0 +I (13874) example: new speed:399.000000 +I (13884) example: expect speed: 0.000000 real_pulses:0 +I (13884) example: new speed:399.000000 +I (13894) example: expect speed: 0.000000 real_pulses:0 +I (13894) example: new speed:399.000000 +I (13904) example: expect speed: 0.000000 real_pulses:0 +I (13904) example: new speed:399.000000 +I (13914) example: expect speed: 0.000000 real_pulses:0 +I (13914) example: new speed:399.000000 +I (13924) example: expect speed: 0.000000 real_pulses:0 +I (13924) example: new speed:399.000000 +I (13934) example: expect speed: 0.000000 real_pulses:0 +I (13934) example: new speed:399.000000 +I (13944) example: expect speed: 0.000000 real_pulses:0 +I (13944) example: new speed:399.000000 +I (13954) example: expect speed: 0.000000 real_pulses:0 +I (13954) example: new speed:399.000000 +I (13964) example: expect speed: 0.000000 real_pulses:0 +I (13964) example: new speed:399.000000 +I (13974) example: expect speed: 0.000000 real_pulses:0 +I (13974) example: new speed:399.000000 +I (13984) example: expect speed: 0.000000 real_pulses:0 +I (13984) example: new speed:399.000000 +I (13994) example: expect speed: 0.000000 real_pulses:0 +I (13994) example: new speed:399.000000 +I (14004) example: expect speed: 0.000000 real_pulses:0 +I (14004) example: new speed:399.000000 +I (14014) example: expect speed: 0.000000 real_pulses:0 +I (14014) example: new speed:399.000000 +I (14024) example: expect speed: 0.000000 real_pulses:0 +I (14024) example: new speed:399.000000 +I (14034) example: expect speed: 0.000000 real_pulses:0 +I (14034) example: new speed:399.000000 +I (14044) example: expect speed: 0.000000 real_pulses:0 +I (14044) example: new speed:399.000000 +I (14054) example: expect speed: 0.000000 real_pulses:0 +I (14054) example: new speed:399.000000 +I (14064) example: expect speed: 0.000000 real_pulses:0 +I (14064) example: new speed:399.000000 +I (14074) example: expect speed: 0.000000 real_pulses:0 +I (14074) example: new speed:399.000000 +I (14084) example: expect speed: 0.000000 real_pulses:0 +I (14084) example: new speed:399.000000 +I (14094) example: expect speed: 0.000000 real_pulses:0 +I (14094) example: new speed:399.000000 +I (14104) example: expect speed: 0.000000 real_pulses:0 +I (14104) example: new speed:399.000000 +I (14114) example: expect speed: 0.000000 real_pulses:0 +I (14114) example: new speed:399.000000 +I (14124) example: expect speed: 0.000000 real_pulses:0 +I (14124) example: new speed:399.000000 +I (14134) example: expect speed: 0.000000 real_pulses:0 +I (14134) example: new speed:399.000000 +I (14144) example: expect speed: 0.000000 real_pulses:0 +I (14144) example: new speed:399.000000 +I (14154) example: expect speed: 0.000000 real_pulses:0 +I (14154) example: new speed:399.000000 +I (14164) example: expect speed: 0.000000 real_pulses:0 +I (14164) example: new speed:399.000000 +I (14174) example: expect speed: 0.000000 real_pulses:0 +I (14174) example: new speed:399.000000 +I (14184) example: expect speed: 0.000000 real_pulses:0 +I (14184) example: new speed:399.000000 +I (14194) example: expect speed: 0.000000 real_pulses:0 +I (14194) example: new speed:399.000000 +I (14204) example: expect speed: 0.000000 real_pulses:0 +I (14204) example: new speed:399.000000 +I (14214) example: expect speed: 0.000000 real_pulses:0 +I (14214) example: new speed:399.000000 +I (14224) example: expect speed: 0.000000 real_pulses:0 +I (14224) example: new speed:399.000000 +I (14234) example: expect speed: 0.000000 real_pulses:0 +I (14234) example: new speed:399.000000 +I (14244) example: expect speed: 0.000000 real_pulses:0 +I (14244) example: new speed:399.000000 +I (14254) example: expect speed: 0.000000 real_pulses:0 +I (14254) example: new speed:399.000000 +I (14264) example: expect speed: 0.000000 real_pulses:0 +I (14264) example: new speed:399.000000 +I (14274) example: expect speed: 0.000000 real_pulses:0 +I (14274) example: new speed:399.000000 +I (14284) example: expect speed: 0.000000 real_pulses:0 +I (14284) example: new speed:399.000000 +I (14294) example: expect speed: 0.000000 real_pulses:0 +I (14294) example: new speed:399.000000 +I (14304) example: expect speed: 0.000000 real_pulses:0 +I (14304) example: new speed:399.000000 +I (14314) example: expect speed: 0.000000 real_pulses:0 +I (14314) example: new speed:399.000000 +I (14324) example: expect speed: 0.000000 real_pulses:0 +I (14324) example: new speed:399.000000 +I (14334) example: expect speed: 0.000000 real_pulses:0 +I (14334) example: new speed:399.000000 +I (14344) example: expect speed: 0.000000 real_pulses:0 +I (14344) example: new speed:399.000000 +I (14354) example: expect speed: 0.000000 real_pulses:0 +I (14354) example: new speed:399.000000 +I (14364) example: expect speed: 0.000000 real_pulses:0 +I (14364) example: new speed:399.000000 +I (14374) example: expect speed: 0.000000 real_pulses:0 +I (14374) example: new speed:399.000000 +I (14384) example: expect speed: 0.000000 real_pulses:0 +I (14384) example: new speed:399.000000 +I (14394) example: expect speed: 0.000000 real_pulses:0 +I (14394) example: new speed:399.000000 +I (14404) example: expect speed: 0.000000 real_pulses:0 +I (14404) example: new speed:399.000000 +I (14414) example: expect speed: 0.000000 real_pulses:0 +I (14414) example: new speed:399.000000 +I (14424) example: expect speed: 0.000000 real_pulses:0 +I (14424) example: new speed:399.000000 +I (14434) example: expect speed: 0.000000 real_pulses:0 +I (14434) example: new speed:399.000000 +I (14444) example: expect speed: 0.000000 real_pulses:0 +I (14444) example: new speed:399.000000 +I (14454) example: expect speed: 0.000000 real_pulses:0 +I (14454) example: new speed:399.000000 +I (14464) example: expect speed: 0.000000 real_pulses:0 +I (14464) example: new speed:399.000000 +I (14474) example: expect speed: 0.000000 real_pulses:0 +I (14474) example: new speed:399.000000 +I (14484) example: expect speed: 0.000000 real_pulses:0 +I (14484) example: new speed:399.000000 +I (14494) example: expect speed: 0.000000 real_pulses:0 +I (14494) example: new speed:399.000000 +I (14504) example: expect speed: 0.000000 real_pulses:0 +I (14504) example: new speed:399.000000 +I (14514) example: expect speed: 0.000000 real_pulses:0 +I (14514) example: new speed:399.000000 +I (14524) example: expect speed: 0.000000 real_pulses:0 +I (14524) example: new speed:399.000000 +I (14534) example: expect speed: 0.000000 real_pulses:0 +I (14534) example: new speed:399.000000 +I (14544) example: expect speed: 0.000000 real_pulses:0 +I (14544) example: new speed:399.000000 +I (14554) example: expect speed: 0.000000 real_pulses:0 +I (14554) example: new speed:399.000000 +I (14564) example: expect speed: 0.000000 real_pulses:0 +I (14564) example: new speed:399.000000 +I (14574) example: expect speed: 0.000000 real_pulses:0 +I (14574) example: new speed:399.000000 +I (14584) example: expect speed: 0.000000 real_pulses:0 +I (14584) example: new speed:399.000000 +I (14594) example: expect speed: 0.000000 real_pulses:0 +I (14594) example: new speed:399.000000 +I (14604) example: expect speed: 0.000000 real_pulses:0 +I (14604) example: new speed:399.000000 +I (14614) example: expect speed: 0.000000 real_pulses:0 +I (14614) example: new speed:399.000000 +I (14624) example: expect speed: 0.000000 real_pulses:0 +I (14624) example: new speed:399.000000 +I (14634) example: expect speed: 0.000000 real_pulses:0 +I (14634) example: new speed:399.000000 +I (14644) example: expect speed: 0.000000 real_pulses:0 +I (14644) example: new speed:399.000000 +I (14654) example: expect speed: 0.000000 real_pulses:0 +I (14654) example: new speed:399.000000 +I (14664) example: expect speed: 0.000000 real_pulses:0 +I (14664) example: new speed:399.000000 +I (14674) example: expect speed: 0.000000 real_pulses:0 +I (14674) example: new speed:399.000000 +I (14684) example: expect speed: 0.000000 real_pulses:0 +I (14684) example: new speed:399.000000 +I (14694) example: expect speed: 0.000000 real_pulses:0 +I (14704) example: new speed:399.000000 +I (14704) example: expect speed: 0.000000 real_pulses:0 +I (14704) example: new speed:399.000000 +I (14714) example: expect speed: 0.000000 real_pulses:0 +I (14714) example: new speed:399.000000 +I (14724) example: expect speed: 0.000000 real_pulses:0 +I (14724) example: new speed:399.000000 +I (14734) example: expect speed: 0.000000 real_pulses:0 +I (14734) example: new speed:399.000000 +I (14744) example: expect speed: 0.000000 real_pulses:0 +I (14744) example: new speed:399.000000 +I (14754) example: expect speed: 0.000000 real_pulses:0 +I (14754) example: new speed:399.000000 +I (14764) example: expect speed: 0.000000 real_pulses:0 +I (14764) example: new speed:399.000000 +I (14774) example: expect speed: 0.000000 real_pulses:0 +I (14774) example: new speed:399.000000 +I (14784) example: expect speed: 0.000000 real_pulses:0 +I (14784) example: new speed:399.000000 +I (14794) example: expect speed: 0.000000 real_pulses:0 +I (14794) example: new speed:399.000000 +I (14804) example: expect speed: 0.000000 real_pulses:0 +I (14804) example: new speed:399.000000 +I (14814) example: expect speed: 0.000000 real_pulses:0 +I (14814) example: new speed:399.000000 +I (14824) example: expect speed: 0.000000 real_pulses:0 +I (14824) example: new speed:399.000000 +I (14834) example: expect speed: 0.000000 real_pulses:0 +I (14834) example: new speed:399.000000 +I (14844) example: expect speed: 0.000000 real_pulses:0 +I (14844) example: new speed:399.000000 +I (14854) example: expect speed: 0.000000 real_pulses:0 +I (14854) example: new speed:399.000000 +I (14864) example: expect speed: 0.000000 real_pulses:0 +I (14864) example: new speed:399.000000 +I (14874) example: expect speed: 0.000000 real_pulses:0 +I (14874) example: new speed:399.000000 +I (14884) example: expect speed: 0.000000 real_pulses:0 +I (14884) example: new speed:399.000000 +I (14894) example: expect speed: 0.000000 real_pulses:0 +I (14894) example: new speed:399.000000 +I (14904) example: expect speed: 0.000000 real_pulses:0 +I (14904) example: new speed:399.000000 +I (14914) example: expect speed: 0.000000 real_pulses:0 +I (14914) example: new speed:399.000000 +I (14924) example: expect speed: 0.000000 real_pulses:0 +I (14924) example: new speed:399.000000 +I (14934) example: expect speed: 0.000000 real_pulses:0 +I (14934) example: new speed:399.000000 +I (14944) example: expect speed: 0.000000 real_pulses:0 +I (14944) example: new speed:399.000000 +I (14954) example: expect speed: 0.000000 real_pulses:0 +I (14954) example: new speed:399.000000 +I (14964) example: expect speed: 0.000000 real_pulses:0 +I (14964) example: new speed:399.000000 +I (14974) example: expect speed: 0.000000 real_pulses:0 +I (14974) example: new speed:399.000000 +I (14984) example: expect speed: 0.000000 real_pulses:0 +I (14984) example: new speed:399.000000 +I (14994) example: expect speed: 0.000000 real_pulses:0 +I (14994) example: new speed:399.000000 +I (15004) example: expect speed: 0.000000 real_pulses:0 +I (15004) example: new speed:399.000000 +I (15014) example: expect speed: 0.000000 real_pulses:0 +I (15014) example: new speed:399.000000 +I (15024) example: expect speed: 0.000000 real_pulses:0 +I (15024) example: new speed:399.000000 +I (15034) example: expect speed: 0.000000 real_pulses:0 +I (15034) example: new speed:399.000000 +I (15044) example: expect speed: 0.000000 real_pulses:0 +I (15044) example: new speed:399.000000 +I (15054) example: expect speed: 0.000000 real_pulses:0 +I (15054) example: new speed:399.000000 +I (15064) example: expect speed: 0.000000 real_pulses:0 +I (15064) example: new speed:399.000000 +I (15074) example: expect speed: 0.000000 real_pulses:0 +I (15074) example: new speed:399.000000 +I (15084) example: expect speed: 0.000000 real_pulses:0 +I (15084) example: new speed:399.000000 +I (15094) example: expect speed: 0.000000 real_pulses:0 +I (15094) example: new speed:399.000000 +I (15104) example: expect speed: 0.000000 real_pulses:0 +I (15104) example: new speed:399.000000 +I (15114) example: expect speed: 0.000000 real_pulses:0 +I (15114) example: new speed:399.000000 +I (15124) example: expect speed: 0.000000 real_pulses:0 +I (15124) example: new speed:399.000000 +I (15134) example: expect speed: 0.000000 real_pulses:0 +I (15134) example: new speed:399.000000 +I (15144) example: expect speed: 0.000000 real_pulses:0 +I (15144) example: new speed:399.000000 +I (15154) example: expect speed: 0.000000 real_pulses:0 +I (15154) example: new speed:399.000000 +I (15164) example: expect speed: 0.000000 real_pulses:0 +I (15164) example: new speed:399.000000 +I (15174) example: expect speed: 0.000000 real_pulses:0 +I (15174) example: new speed:399.000000 +I (15184) example: expect speed: 0.000000 real_pulses:0 +I (15184) example: new speed:399.000000 +I (15194) example: expect speed: 0.000000 real_pulses:0 +I (15194) example: new speed:399.000000 +I (15204) example: expect speed: 0.000000 real_pulses:0 +I (15204) example: new speed:399.000000 +I (15214) example: expect speed: 0.000000 real_pulses:0 +I (15214) example: new speed:399.000000 +I (15224) example: expect speed: 0.000000 real_pulses:0 +I (15224) example: new speed:399.000000 +I (15234) example: expect speed: 0.000000 real_pulses:0 +I (15234) example: new speed:399.000000 +I (15244) example: expect speed: 0.000000 real_pulses:0 +I (15244) example: new speed:399.000000 +I (15254) example: expect speed: 0.000000 real_pulses:0 +I (15254) example: new speed:399.000000 +I (15264) example: expect speed: 0.000000 real_pulses:0 +I (15264) example: new speed:399.000000 +I (15274) example: expect speed: 0.000000 real_pulses:0 +I (15274) example: new speed:399.000000 +I (15284) example: expect speed: 0.000000 real_pulses:0 +I (15284) example: new speed:399.000000 +I (15294) example: expect speed: 0.000000 real_pulses:0 +I (15294) example: new speed:399.000000 +I (15304) example: expect speed: 0.000000 real_pulses:0 +I (15304) example: new speed:399.000000 +I (15314) example: expect speed: 0.000000 real_pulses:0 +I (15314) example: new speed:399.000000 +I (15324) example: expect speed: 0.000000 real_pulses:0 +I (15324) example: new speed:399.000000 +I (15334) example: expect speed: 0.000000 real_pulses:0 +I (15334) example: new speed:399.000000 +I (15344) example: expect speed: 0.000000 real_pulses:0 +I (15344) example: new speed:399.000000 +I (15354) example: expect speed: 0.000000 real_pulses:0 +I (15354) example: new speed:399.000000 +I (15364) example: expect speed: 0.000000 real_pulses:0 +I (15364) example: new speed:399.000000 +I (15374) example: expect speed: 0.000000 real_pulses:0 +I (15374) example: new speed:399.000000 +I (15384) example: expect speed: 0.000000 real_pulses:0 +I (15384) example: new speed:399.000000 +I (15394) example: expect speed: 0.000000 real_pulses:0 +I (15394) example: new speed:399.000000 +I (15404) example: expect speed: 0.000000 real_pulses:0 +I (15404) example: new speed:399.000000 +I (15414) example: expect speed: 0.000000 real_pulses:0 +I (15414) example: new speed:399.000000 +I (15424) example: expect speed: 0.000000 real_pulses:0 +I (15424) example: new speed:399.000000 +I (15434) example: expect speed: 0.000000 real_pulses:0 +I (15434) example: new speed:399.000000 +I (15444) example: expect speed: 0.000000 real_pulses:0 +I (15444) example: new speed:399.000000 +I (15454) example: expect speed: 0.000000 real_pulses:0 +I (15454) example: new speed:399.000000 +I (15464) example: expect speed: 0.000000 real_pulses:0 +I (15464) example: new speed:399.000000 +I (15474) example: expect speed: 0.000000 real_pulses:0 +I (15474) example: new speed:399.000000 +I (15484) example: expect speed: 0.000000 real_pulses:0 +I (15484) example: new speed:399.000000 +I (15494) example: expect speed: 0.000000 real_pulses:0 +I (15494) example: new speed:399.000000 +I (15504) example: expect speed: 0.000000 real_pulses:0 +I (15504) example: new speed:399.000000 +I (15514) example: expect speed: 0.000000 real_pulses:0 +I (15514) example: new speed:399.000000 +I (15524) example: expect speed: 0.000000 real_pulses:0 +I (15524) example: new speed:399.000000 +I (15534) example: expect speed: 0.000000 real_pulses:0 +I (15534) example: new speed:399.000000 +I (15544) example: expect speed: 0.000000 real_pulses:0 +I (15544) example: new speed:399.000000 +I (15554) example: expect speed: 0.000000 real_pulses:0 +I (15554) example: new speed:399.000000 +I (15564) example: expect speed: 0.000000 real_pulses:0 +I (15564) example: new speed:399.000000 +I (15574) example: expect speed: 0.000000 real_pulses:0 +I (15574) example: new speed:399.000000 +I (15584) example: expect speed: 0.000000 real_pulses:0 +I (15584) example: new speed:399.000000 +I (15594) example: expect speed: 0.000000 real_pulses:0 +I (15594) example: new speed:399.000000 +I (15604) example: expect speed: 0.000000 real_pulses:0 +I (15604) example: new speed:399.000000 +I (15614) example: expect speed: 0.000000 real_pulses:0 +I (15614) example: new speed:399.000000 +I (15624) example: expect speed: 0.000000 real_pulses:0 +I (15624) example: new speed:399.000000 +I (15634) example: expect speed: 0.000000 real_pulses:0 +I (15634) example: new speed:399.000000 +I (15644) example: expect speed: 0.000000 real_pulses:0 +I (15644) example: new speed:399.000000 +I (15654) example: expect speed: 0.000000 real_pulses:0 +I (15654) example: new speed:399.000000 +I (15664) example: expect speed: 0.000000 real_pulses:0 +I (15664) example: new speed:399.000000 +I (15674) example: expect speed: 0.000000 real_pulses:0 +I (15674) example: new speed:399.000000 +I (15684) example: expect speed: 0.000000 real_pulses:0 +I (15684) example: new speed:399.000000 +I (15694) example: expect speed: 0.000000 real_pulses:0 +I (15694) example: new speed:399.000000 +I (15704) example: expect speed: 0.000000 real_pulses:0 +I (15704) example: new speed:399.000000 +I (15714) example: expect speed: 0.000000 real_pulses:0 +I (15714) example: new speed:399.000000 +I (15724) example: expect speed: 0.000000 real_pulses:0 +I (15724) example: new speed:399.000000 +I (15734) example: expect speed: 0.000000 real_pulses:0 +I (15734) example: new speed:399.000000 +I (15744) example: expect speed: 0.000000 real_pulses:0 +I (15744) example: new speed:399.000000 +I (15754) example: expect speed: 0.000000 real_pulses:0 +I (15754) example: new speed:399.000000 +I (15764) example: expect speed: 0.000000 real_pulses:0 +I (15764) example: new speed:399.000000 +I (15774) example: expect speed: 0.000000 real_pulses:0 +I (15774) example: new speed:399.000000 +I (15784) example: expect speed: 0.000000 real_pulses:0 +I (15784) example: new speed:399.000000 +I (15794) example: expect speed: 0.000000 real_pulses:0 +I (15794) example: new speed:399.000000 +I (15804) example: expect speed: 0.000000 real_pulses:0 +I (15804) example: new speed:399.000000 +I (15814) example: expect speed: 0.000000 real_pulses:0 +I (15824) example: new speed:399.000000 +I (15824) example: expect speed: 0.000000 real_pulses:0 +I (15824) example: new speed:399.000000 +I (15834) example: expect speed: 0.000000 real_pulses:0 +I (15834) example: new speed:399.000000 +I (15844) example: expect speed: 0.000000 real_pulses:0 +I (15844) example: new speed:399.000000 +I (15854) example: expect speed: 0.000000 real_pulses:0 +I (15854) example: new speed:399.000000 +I (15864) example: expect speed: 0.000000 real_pulses:0 +I (15864) example: new speed:399.000000 +I (15874) example: expect speed: 0.000000 real_pulses:0 +I (15874) example: new speed:399.000000 +I (15884) example: expect speed: 0.000000 real_pulses:0 +I (15884) example: new speed:399.000000 +I (15894) example: expect speed: 0.000000 real_pulses:0 +I (15894) example: new speed:399.000000 +I (15904) example: expect speed: 0.000000 real_pulses:0 +I (15904) example: new speed:399.000000 +I (15914) example: expect speed: 0.000000 real_pulses:0 +I (15914) example: new speed:399.000000 +I (15924) example: expect speed: 0.000000 real_pulses:0 +I (15924) example: new speed:399.000000 +I (15934) example: expect speed: 0.000000 real_pulses:0 +I (15934) example: new speed:399.000000 +I (15944) example: expect speed: 0.000000 real_pulses:0 +I (15944) example: new speed:399.000000 +I (15954) example: expect speed: 0.000000 real_pulses:0 +I (15954) example: new speed:399.000000 +I (15964) example: expect speed: 0.000000 real_pulses:0 +I (15964) example: new speed:399.000000 +I (15974) example: expect speed: 0.000000 real_pulses:0 +I (15974) example: new speed:399.000000 +I (15984) example: expect speed: 0.000000 real_pulses:0 +I (15984) example: new speed:399.000000 +I (15994) example: expect speed: 0.000000 real_pulses:0 +I (15994) example: new speed:399.000000 +I (16004) example: expect speed: 0.000000 real_pulses:0 +I (16004) example: new speed:399.000000 +I (16014) example: expect speed: 0.000000 real_pulses:0 +I (16014) example: new speed:399.000000 +I (16024) example: expect speed: 0.000000 real_pulses:0 +I (16024) example: new speed:399.000000 +I (16034) example: expect speed: 0.000000 real_pulses:0 +I (16034) example: new speed:399.000000 +I (16044) example: expect speed: 0.000000 real_pulses:0 +I (16044) example: new speed:399.000000 +I (16054) example: expect speed: 0.000000 real_pulses:0 +I (16054) example: new speed:399.000000 +I (16064) example: expect speed: 0.000000 real_pulses:0 +I (16064) example: new speed:399.000000 +I (16074) example: expect speed: 0.000000 real_pulses:0 +I (16074) example: new speed:399.000000 +I (16084) example: expect speed: 0.000000 real_pulses:0 +I (16084) example: new speed:399.000000 +I (16094) example: expect speed: 0.000000 real_pulses:0 +I (16094) example: new speed:399.000000 +I (16104) example: expect speed: 0.000000 real_pulses:0 +I (16104) example: new speed:399.000000 +I (16114) example: expect speed: 0.000000 real_pulses:0 +I (16114) example: new speed:399.000000 +I (16124) example: expect speed: 0.000000 real_pulses:0 +I (16124) example: new speed:399.000000 +I (16134) example: expect speed: 0.000000 real_pulses:0 +I (16134) example: new speed:399.000000 +I (16144) example: expect speed: 0.000000 real_pulses:0 +I (16144) example: new speed:399.000000 +I (16154) example: expect speed: 0.000000 real_pulses:0 +I (16154) example: new speed:399.000000 +I (16164) example: expect speed: 0.000000 real_pulses:0 +I (16164) example: new speed:399.000000 +I (16174) example: expect speed: 0.000000 real_pulses:0 +I (16174) example: new speed:399.000000 +I (16184) example: expect speed: 0.000000 real_pulses:0 +I (16184) example: new speed:399.000000 +I (16194) example: expect speed: 0.000000 real_pulses:0 +I (16194) example: new speed:399.000000 +I (16204) example: expect speed: 0.000000 real_pulses:0 +I (16204) example: new speed:399.000000 +I (16214) example: expect speed: 0.000000 real_pulses:0 +I (16214) example: new speed:399.000000 +I (16224) example: expect speed: 0.000000 real_pulses:0 +I (16224) example: new speed:399.000000 +I (16234) example: expect speed: 0.000000 real_pulses:0 +I (16234) example: new speed:399.000000 +I (16244) example: expect speed: 0.000000 real_pulses:0 +I (16244) example: new speed:399.000000 +I (16254) example: expect speed: 0.000000 real_pulses:0 +I (16254) example: new speed:399.000000 +I (16264) example: expect speed: 0.000000 real_pulses:0 +I (16264) example: new speed:399.000000 +I (16274) example: expect speed: 0.000000 real_pulses:0 +I (16274) example: new speed:399.000000 +I (16284) example: expect speed: 0.000000 real_pulses:0 +I (16284) example: new speed:399.000000 +I (16294) example: expect speed: 0.000000 real_pulses:0 +I (16294) example: new speed:399.000000 +I (16304) example: expect speed: 0.000000 real_pulses:0 +I (16304) example: new speed:399.000000 +I (16314) example: expect speed: 0.000000 real_pulses:0 +I (16314) example: new speed:399.000000 +I (16324) example: expect speed: 0.000000 real_pulses:0 +I (16324) example: new speed:399.000000 +I (16334) example: expect speed: 0.000000 real_pulses:0 +I (16334) example: new speed:399.000000 +I (16344) example: expect speed: 0.000000 real_pulses:0 +I (16344) example: new speed:399.000000 +I (16354) example: expect speed: 0.000000 real_pulses:0 +I (16354) example: new speed:399.000000 +I (16364) example: expect speed: 0.000000 real_pulses:0 +I (16364) example: new speed:399.000000 +I (16374) example: expect speed: 0.000000 real_pulses:0 +I (16374) example: new speed:399.000000 +I (16384) example: expect speed: 0.000000 real_pulses:0 +I (16384) example: new speed:399.000000 +I (16394) example: expect speed: 0.000000 real_pulses:0 +I (16394) example: new speed:399.000000 +I (16404) example: expect speed: 0.000000 real_pulses:0 +I (16404) example: new speed:399.000000 +I (16414) example: expect speed: 0.000000 real_pulses:0 +I (16414) example: new speed:399.000000 +I (16424) example: expect speed: 0.000000 real_pulses:0 +I (16424) example: new speed:399.000000 +I (16434) example: expect speed: 0.000000 real_pulses:0 +I (16434) example: new speed:399.000000 +I (16444) example: expect speed: 0.000000 real_pulses:0 +I (16444) example: new speed:399.000000 +I (16454) example: expect speed: 0.000000 real_pulses:0 +I (16454) example: new speed:399.000000 +I (16464) example: expect speed: 0.000000 real_pulses:0 +I (16464) example: new speed:399.000000 +I (16474) example: expect speed: 0.000000 real_pulses:0 +I (16474) example: new speed:399.000000 +I (16484) example: expect speed: 0.000000 real_pulses:0 +I (16484) example: new speed:399.000000 +I (16494) example: expect speed: 0.000000 real_pulses:0 +I (16494) example: new speed:399.000000 +I (16504) example: expect speed: 0.000000 real_pulses:0 +I (16504) example: new speed:399.000000 +I (16514) example: expect speed: 0.000000 real_pulses:0 +I (16514) example: new speed:399.000000 +I (16524) example: expect speed: 0.000000 real_pulses:0 +I (16524) example: new speed:399.000000 +I (16534) example: expect speed: 0.000000 real_pulses:0 +I (16544) example: new speed:399.000000 +I (16544) example: expect speed: 0.000000 real_pulses:0 +I (16554) example: new speed:399.000000 +I (16554) example: expect speed: 0.000000 real_pulses:0 +I (16554) example: new speed:399.000000 +I (16564) example: expect speed: 0.000000 real_pulses:0 +I (16564) example: new speed:399.000000 +I (16574) example: expect speed: 0.000000 real_pulses:0 +I (16574) example: new speed:399.000000 +I (16584) example: expect speed: 0.000000 real_pulses:0 +I (16584) example: new speed:399.000000 +I (16594) example: expect speed: 0.000000 real_pulses:0 +I (16594) example: new speed:399.000000 +I (16604) example: expect speed: 0.000000 real_pulses:0 +I (16604) example: new speed:399.000000 +I (16614) example: expect speed: 0.000000 real_pulses:0 +I (16614) example: new speed:399.000000 +I (16624) example: expect speed: 0.000000 real_pulses:0 +I (16624) example: new speed:399.000000 +I (16634) example: expect speed: 0.000000 real_pulses:0 +I (16634) example: new speed:399.000000 +I (16644) example: expect speed: 0.000000 real_pulses:0 +I (16644) example: new speed:399.000000 +I (16654) example: expect speed: 0.000000 real_pulses:0 +I (16654) example: new speed:399.000000 +I (16664) example: expect speed: 0.000000 real_pulses:0 +I (16664) example: new speed:399.000000 +I (16674) example: expect speed: 0.000000 real_pulses:0 +I (16674) example: new speed:399.000000 +I (16684) example: expect speed: 0.000000 real_pulses:0 +I (16684) example: new speed:399.000000 +I (16694) example: expect speed: 0.000000 real_pulses:0 +I (16694) example: new speed:399.000000 +I (16704) example: expect speed: 0.000000 real_pulses:0 +I (16704) example: new speed:399.000000 +I (16714) example: expect speed: 0.000000 real_pulses:0 +I (16714) example: new speed:399.000000 +I (16724) example: expect speed: 0.000000 real_pulses:0 +I (16724) example: new speed:399.000000 +I (16734) example: expect speed: 0.000000 real_pulses:0 +I (16734) example: new speed:399.000000 +I (16744) example: expect speed: 0.000000 real_pulses:0 +I (16744) example: new speed:399.000000 +I (16754) example: expect speed: 0.000000 real_pulses:0 +I (16754) example: new speed:399.000000 +I (16764) example: expect speed: 0.000000 real_pulses:0 +I (16764) example: new speed:399.000000 +I (16774) example: expect speed: 0.000000 real_pulses:0 +I (16774) example: new speed:399.000000 +I (16784) example: expect speed: 0.000000 real_pulses:0 +I (16784) example: new speed:399.000000 +I (16794) example: expect speed: 0.000000 real_pulses:0 +I (16794) example: new speed:399.000000 +I (16804) example: expect speed: 0.000000 real_pulses:0 +I (16804) example: new speed:399.000000 +I (16814) example: expect speed: 0.000000 real_pulses:0 +I (16814) example: new speed:399.000000 +I (16824) example: expect speed: 0.000000 real_pulses:0 +I (16824) example: new speed:399.000000 +I (16834) example: expect speed: 0.000000 real_pulses:0 +I (16834) example: new speed:399.000000 +I (16844) example: expect speed: 0.000000 real_pulses:0 +I (16844) example: new speed:399.000000 +I (16854) example: expect speed: 0.000000 real_pulses:0 +I (16854) example: new speed:399.000000 +I (16864) example: expect speed: 0.000000 real_pulses:0 +I (16864) example: new speed:399.000000 +I (16874) example: expect speed: 0.000000 real_pulses:0 +I (16874) example: new speed:399.000000 +I (16884) example: expect speed: 0.000000 real_pulses:0 +I (16884) example: new speed:399.000000 +I (16894) example: expect speed: 0.000000 real_pulses:0 +I (16894) example: new speed:399.000000 +I (16904) example: expect speed: 0.000000 real_pulses:0 +I (16904) example: new speed:399.000000 +I (16914) example: expect speed: 0.000000 real_pulses:0 +I (16914) example: new speed:399.000000 +I (16924) example: expect speed: 0.000000 real_pulses:0 +I (16924) example: new speed:399.000000 +I (16934) example: expect speed: 0.000000 real_pulses:0 +I (16934) example: new speed:399.000000 +I (16944) example: expect speed: 0.000000 real_pulses:0 +I (16944) example: new speed:399.000000 +I (16954) example: expect speed: 0.000000 real_pulses:0 +I (16954) example: new speed:399.000000 +I (16964) example: expect speed: 0.000000 real_pulses:0 +I (16964) example: new speed:399.000000 +I (16974) example: expect speed: 0.000000 real_pulses:0 +I (16974) example: new speed:399.000000 +I (16984) example: expect speed: 0.000000 real_pulses:0 +I (16984) example: new speed:399.000000 +I (16994) example: expect speed: 0.000000 real_pulses:0 +I (16994) example: new speed:399.000000 +I (17004) example: expect speed: 0.000000 real_pulses:0 +I (17004) example: new speed:399.000000 +I (17014) example: expect speed: 0.000000 real_pulses:0 +I (17014) example: new speed:399.000000 +I (17024) example: expect speed: 0.000000 real_pulses:0 +I (17024) example: new speed:399.000000 +I (17034) example: expect speed: 0.000000 real_pulses:0 +I (17034) example: new speed:399.000000 +I (17044) example: expect speed: 0.000000 real_pulses:0 +I (17044) example: new speed:399.000000 +I (17054) example: expect speed: 0.000000 real_pulses:0 +I (17054) example: new speed:399.000000 +I (17064) example: expect speed: 0.000000 real_pulses:0 +I (17064) example: new speed:399.000000 +I (17074) example: expect speed: 0.000000 real_pulses:0 +I (17074) example: new speed:399.000000 +I (17084) example: expect speed: 0.000000 real_pulses:0 +I (17084) example: new speed:399.000000 +I (17094) example: expect speed: 0.000000 real_pulses:0 +I (17094) example: new speed:399.000000 +I (17104) example: expect speed: 0.000000 real_pulses:0 +I (17104) example: new speed:399.000000 +I (17114) example: expect speed: 0.000000 real_pulses:0 +I (17114) example: new speed:399.000000 +I (17124) example: expect speed: 0.000000 real_pulses:0 +I (17124) example: new speed:399.000000 +I (17134) example: expect speed: 0.000000 real_pulses:0 +I (17134) example: new speed:399.000000 +I (17144) example: expect speed: 0.000000 real_pulses:0 +I (17144) example: new speed:399.000000 +I (17154) example: expect speed: 0.000000 real_pulses:0 +I (17154) example: new speed:399.000000 +I (17164) example: expect speed: 0.000000 real_pulses:0 +I (17164) example: new speed:399.000000 +I (17174) example: expect speed: 0.000000 real_pulses:0 +I (17174) example: new speed:399.000000 +I (17184) example: expect speed: 0.000000 real_pulses:0 +I (17184) example: new speed:399.000000 +I (17194) example: expect speed: 0.000000 real_pulses:0 +I (17194) example: new speed:399.000000 +I (17204) example: expect speed: 0.000000 real_pulses:0 +I (17204) example: new speed:399.000000 +I (17214) example: expect speed: 0.000000 real_pulses:0 +I (17214) example: new speed:399.000000 +I (17224) example: expect speed: 0.000000 real_pulses:0 +I (17224) example: new speed:399.000000 +I (17234) example: expect speed: 0.000000 real_pulses:0 +I (17234) example: new speed:399.000000 +I (17244) example: expect speed: 0.000000 real_pulses:0 +I (17244) example: new speed:399.000000 +I (17254) example: expect speed: 0.000000 real_pulses:0 +I (17254) example: new speed:399.000000 +I (17264) example: expect speed: 0.000000 real_pulses:0 +I (17264) example: new speed:399.000000 +I (17274) example: expect speed: 0.000000 real_pulses:0 +I (17274) example: new speed:399.000000 +I (17284) example: expect speed: 0.000000 real_pulses:0 +I (17284) example: new speed:399.000000 +I (17294) example: expect speed: 0.000000 real_pulses:0 +I (17294) example: new speed:399.000000 +I (17304) example: expect speed: 0.000000 real_pulses:0 +I (17304) example: new speed:399.000000 +I (17314) example: expect speed: 0.000000 real_pulses:0 +I (17314) example: new speed:399.000000 +I (17324) example: expect speed: 0.000000 real_pulses:0 +I (17324) example: new speed:399.000000 +I (17334) example: expect speed: 0.000000 real_pulses:0 +I (17334) example: new speed:399.000000 +I (17344) example: expect speed: 0.000000 real_pulses:0 +I (17344) example: new speed:399.000000 +I (17354) example: expect speed: 0.000000 real_pulses:0 +I (17354) example: new speed:399.000000 +I (17364) example: expect speed: 0.000000 real_pulses:0 +I (17364) example: new speed:399.000000 +I (17374) example: expect speed: 0.000000 real_pulses:0 +I (17374) example: new speed:399.000000 +I (17384) example: expect speed: 0.000000 real_pulses:0 +I (17384) example: new speed:399.000000 +I (17394) example: expect speed: 0.000000 real_pulses:0 +I (17394) example: new speed:399.000000 +I (17404) example: expect speed: 0.000000 real_pulses:0 +I (17404) example: new speed:399.000000 +I (17414) example: expect speed: 0.000000 real_pulses:0 +I (17414) example: new speed:399.000000 +I (17424) example: expect speed: 0.000000 real_pulses:0 +I (17424) example: new speed:399.000000 +I (17434) example: expect speed: 0.000000 real_pulses:0 +I (17434) example: new speed:399.000000 +I (17444) example: expect speed: 0.000000 real_pulses:0 +I (17444) example: new speed:399.000000 +I (17454) example: expect speed: 0.000000 real_pulses:0 +I (17454) example: new speed:399.000000 +I (17464) example: expect speed: 0.000000 real_pulses:0 +I (17464) example: new speed:399.000000 +I (17474) example: expect speed: 0.000000 real_pulses:0 +I (17474) example: new speed:399.000000 +I (17484) example: expect speed: 0.000000 real_pulses:0 +I (17484) example: new speed:399.000000 +I (17494) example: expect speed: 0.000000 real_pulses:0 +I (17494) example: new speed:399.000000 +I (17504) example: expect speed: 0.000000 real_pulses:0 +I (17504) example: new speed:399.000000 +I (17514) example: expect speed: 0.000000 real_pulses:0 +I (17514) example: new speed:399.000000 +I (17524) example: expect speed: 0.000000 real_pulses:0 +I (17524) example: new speed:399.000000 +I (17534) example: expect speed: 0.000000 real_pulses:0 +I (17534) example: new speed:399.000000 +I (17544) example: expect speed: 0.000000 real_pulses:0 +I (17544) example: new speed:399.000000 +I (17554) example: expect speed: 0.000000 real_pulses:0 +I (17554) example: new speed:399.000000 +I (17564) example: expect speed: 0.000000 real_pulses:0 +I (17564) example: new speed:399.000000 +I (17574) example: expect speed: 0.000000 real_pulses:0 +I (17574) example: new speed:399.000000 +I (17584) example: expect speed: 0.000000 real_pulses:0 +I (17584) example: new speed:399.000000 +I (17594) example: expect speed: 0.000000 real_pulses:0 +I (17594) example: new speed:399.000000 +I (17604) example: expect speed: 0.000000 real_pulses:0 +I (17604) example: new speed:399.000000 +I (17614) example: expect speed: 0.000000 real_pulses:0 +I (17614) example: new speed:399.000000 +I (17624) example: expect speed: 0.000000 real_pulses:0 +I (17624) example: new speed:399.000000 +I (17634) example: expect speed: 0.000000 real_pulses:0 +I (17634) example: new speed:399.000000 +I (17644) example: expect speed: 0.000000 real_pulses:0 +I (17644) example: new speed:399.000000 +I (17654) example: expect speed: 0.000000 real_pulses:0 +I (17654) example: new speed:399.000000 +I (17664) example: expect speed: 0.000000 real_pulses:0 +I (17674) example: new speed:399.000000 +I (17674) example: expect speed: 0.000000 real_pulses:0 +I (17674) example: new speed:399.000000 +I (17684) example: expect speed: 0.000000 real_pulses:0 +I (17684) example: new speed:399.000000 +I (17694) example: expect speed: 0.000000 real_pulses:0 +I (17694) example: new speed:399.000000 +I (17704) example: expect speed: 0.000000 real_pulses:0 +I (17704) example: new speed:399.000000 +I (17714) example: expect speed: 0.000000 real_pulses:0 +I (17714) example: new speed:399.000000 +I (17724) example: expect speed: 0.000000 real_pulses:0 +I (17724) example: new speed:399.000000 +I (17734) example: expect speed: 0.000000 real_pulses:0 +I (17734) example: new speed:399.000000 +I (17744) example: expect speed: 0.000000 real_pulses:0 +I (17744) example: new speed:399.000000 +I (17754) example: expect speed: 0.000000 real_pulses:0 +I (17754) example: new speed:399.000000 +I (17764) example: expect speed: 0.000000 real_pulses:0 +I (17764) example: new speed:399.000000 +I (17774) example: expect speed: 0.000000 real_pulses:0 +I (17774) example: new speed:399.000000 +I (17784) example: expect speed: 0.000000 real_pulses:0 +I (17784) example: new speed:399.000000 +I (17794) example: expect speed: 0.000000 real_pulses:0 +I (17794) example: new speed:399.000000 +I (17804) example: expect speed: 0.000000 real_pulses:0 +I (17804) example: new speed:399.000000 +I (17814) example: expect speed: 0.000000 real_pulses:0 +I (17814) example: new speed:399.000000 +I (17824) example: expect speed: 0.000000 real_pulses:0 +I (17824) example: new speed:399.000000 +I (17834) example: expect speed: 0.000000 real_pulses:0 +I (17834) example: new speed:399.000000 +I (17844) example: expect speed: 0.000000 real_pulses:0 +I (17844) example: new speed:399.000000 +I (17854) example: expect speed: 0.000000 real_pulses:0 +I (17854) example: new speed:399.000000 +I (17864) example: expect speed: 0.000000 real_pulses:0 +I (17864) example: new speed:399.000000 +I (17874) example: expect speed: 0.000000 real_pulses:0 +I (17874) example: new speed:399.000000 +I (17884) example: expect speed: 0.000000 real_pulses:0 +I (17884) example: new speed:399.000000 +I (17894) example: expect speed: 0.000000 real_pulses:0 +I (17894) example: new speed:399.000000 +I (17904) example: expect speed: 0.000000 real_pulses:0 +I (17904) example: new speed:399.000000 +I (17914) example: expect speed: 0.000000 real_pulses:0 +I (17914) example: new speed:399.000000 +I (17924) example: expect speed: 0.000000 real_pulses:0 +I (17924) example: new speed:399.000000 +I (17934) example: expect speed: 0.000000 real_pulses:0 +I (17934) example: new speed:399.000000 +I (17944) example: expect speed: 0.000000 real_pulses:0 +I (17944) example: new speed:399.000000 +I (17954) example: expect speed: 0.000000 real_pulses:0 +I (17954) example: new speed:399.000000 +I (17964) example: expect speed: 0.000000 real_pulses:0 +I (17964) example: new speed:399.000000 +I (17974) example: expect speed: 0.000000 real_pulses:0 +I (17974) example: new speed:399.000000 +I (17984) example: expect speed: 0.000000 real_pulses:0 +I (17984) example: new speed:399.000000 +I (17994) example: expect speed: 0.000000 real_pulses:0 +I (17994) example: new speed:399.000000 +I (18004) example: expect speed: 0.000000 real_pulses:0 +I (18004) example: new speed:399.000000 +I (18014) example: expect speed: 0.000000 real_pulses:0 +I (18014) example: new speed:399.000000 +I (18024) example: expect speed: 0.000000 real_pulses:0 +I (18024) example: new speed:399.000000 +I (18034) example: expect speed: 0.000000 real_pulses:0 +I (18034) example: new speed:399.000000 +I (18044) example: expect speed: 0.000000 real_pulses:0 +I (18044) example: new speed:399.000000 +I (18054) example: expect speed: 0.000000 real_pulses:0 +I (18054) example: new speed:399.000000 +I (18064) example: expect speed: 0.000000 real_pulses:0 +I (18064) example: new speed:399.000000 +I (18074) example: expect speed: 0.000000 real_pulses:0 +I (18074) example: new speed:399.000000 +I (18084) example: expect speed: 0.000000 real_pulses:0 +I (18084) example: new speed:399.000000 +I (18094) example: expect speed: 0.000000 real_pulses:0 +I (18094) example: new speed:399.000000 +I (18104) example: expect speed: 0.000000 real_pulses:0 +I (18104) example: new speed:399.000000 +I (18114) example: expect speed: 0.000000 real_pulses:0 +I (18114) example: new speed:399.000000 +I (18124) example: expect speed: 0.000000 real_pulses:0 +I (18124) example: new speed:399.000000 +I (18134) example: expect speed: 0.000000 real_pulses:0 +I (18134) example: new speed:399.000000 +I (18144) example: expect speed: 0.000000 real_pulses:0 +I (18144) example: new speed:399.000000 +I (18154) example: expect speed: 0.000000 real_pulses:0 +I (18154) example: new speed:399.000000 +I (18164) example: expect speed: 0.000000 real_pulses:0 +I (18164) example: new speed:399.000000 +I (18174) example: expect speed: 0.000000 real_pulses:0 +I (18174) example: new speed:399.000000 +I (18184) example: expect speed: 0.000000 real_pulses:0 +I (18184) example: new speed:399.000000 +I (18194) example: expect speed: 0.000000 real_pulses:0 +I (18194) example: new speed:399.000000 +I (18204) example: expect speed: 0.000000 real_pulses:0 +I (18204) example: new speed:399.000000 +I (18214) example: expect speed: 0.000000 real_pulses:0 +I (18214) example: new speed:399.000000 +I (18224) example: expect speed: 0.000000 real_pulses:0 +I (18224) example: new speed:399.000000 +I (18234) example: expect speed: 0.000000 real_pulses:0 +I (18234) example: new speed:399.000000 +I (18244) example: expect speed: 0.000000 real_pulses:0 +I (18244) example: new speed:399.000000 +I (18254) example: expect speed: 0.000000 real_pulses:0 +I (18254) example: new speed:399.000000 +I (18264) example: expect speed: 0.000000 real_pulses:0 +I (18264) example: new speed:399.000000 +I (18274) example: expect speed: 0.000000 real_pulses:0 +I (18274) example: new speed:399.000000 +I (18284) example: expect speed: 0.000000 real_pulses:0 +I (18284) example: new speed:399.000000 +I (18294) example: expect speed: 0.000000 real_pulses:0 +I (18294) example: new speed:399.000000 +I (18304) example: expect speed: 0.000000 real_pulses:0 +I (18304) example: new speed:399.000000 +I (18314) example: expect speed: 0.000000 real_pulses:0 +I (18314) example: new speed:399.000000 +I (18324) example: expect speed: 0.000000 real_pulses:0 +I (18324) example: new speed:399.000000 +I (18334) example: expect speed: 0.000000 real_pulses:0 +I (18334) example: new speed:399.000000 +I (18344) example: expect speed: 0.000000 real_pulses:0 +I (18344) example: new speed:399.000000 +I (18354) example: expect speed: 0.000000 real_pulses:0 +I (18354) example: new speed:399.000000 +I (18364) example: expect speed: 0.000000 real_pulses:0 +I (18364) example: new speed:399.000000 +I (18374) example: expect speed: 0.000000 real_pulses:0 +I (18374) example: new speed:399.000000 +I (18384) example: expect speed: 0.000000 real_pulses:0 +I (18384) example: new speed:399.000000 +I (18394) example: expect speed: 0.000000 real_pulses:0 +I (18394) example: new speed:399.000000 +I (18404) example: expect speed: 0.000000 real_pulses:0 +I (18404) example: new speed:399.000000 +I (18414) example: expect speed: 0.000000 real_pulses:0 +I (18414) example: new speed:399.000000 +I (18424) example: expect speed: 0.000000 real_pulses:0 +I (18424) example: new speed:399.000000 +I (18434) example: expect speed: 0.000000 real_pulses:0 +I (18434) example: new speed:399.000000 +I (18444) example: expect speed: 0.000000 real_pulses:0 +I (18444) example: new speed:399.000000 +I (18454) example: expect speed: 0.000000 real_pulses:0 +I (18454) example: new speed:399.000000 +I (18464) example: expect speed: 0.000000 real_pulses:0 +I (18464) example: new speed:399.000000 +I (18474) example: expect speed: 0.000000 real_pulses:0 +I (18474) example: new speed:399.000000 +I (18484) example: expect speed: 0.000000 real_pulses:0 +I (18484) example: new speed:399.000000 +I (18494) example: expect speed: 0.000000 real_pulses:0 +I (18494) example: new speed:399.000000 +I (18504) example: expect speed: 0.000000 real_pulses:0 +I (18504) example: new speed:399.000000 +I (18514) example: expect speed: 0.000000 real_pulses:0 +I (18514) example: new speed:399.000000 +I (18524) example: expect speed: 0.000000 real_pulses:0 +I (18524) example: new speed:399.000000 +I (18534) example: expect speed: 0.000000 real_pulses:0 +I (18534) example: new speed:399.000000 +I (18544) example: expect speed: 0.000000 real_pulses:0 +I (18544) example: new speed:399.000000 +I (18554) example: expect speed: 0.000000 real_pulses:0 +I (18554) example: new speed:399.000000 +I (18564) example: expect speed: 0.000000 real_pulses:0 +I (18564) example: new speed:399.000000 +I (18574) example: expect speed: 0.000000 real_pulses:0 +I (18574) example: new speed:399.000000 +I (18584) example: expect speed: 0.000000 real_pulses:0 +I (18584) example: new speed:399.000000 +I (18594) example: expect speed: 0.000000 real_pulses:0 +I (18594) example: new speed:399.000000 +I (18604) example: expect speed: 0.000000 real_pulses:0 +I (18604) example: new speed:399.000000 +I (18614) example: expect speed: 0.000000 real_pulses:0 +I (18614) example: new speed:399.000000 +I (18624) example: expect speed: 0.000000 real_pulses:0 +I (18624) example: new speed:399.000000 +I (18634) example: expect speed: 0.000000 real_pulses:0 +I (18634) example: new speed:399.000000 +I (18644) example: expect speed: 0.000000 real_pulses:0 +I (18644) example: new speed:399.000000 +I (18654) example: expect speed: 0.000000 real_pulses:0 +I (18654) example: new speed:399.000000 +I (18664) example: expect speed: 0.000000 real_pulses:0 +I (18664) example: new speed:399.000000 +I (18674) example: expect speed: 0.000000 real_pulses:0 +I (18674) example: new speed:399.000000 +I (18684) example: expect speed: 0.000000 real_pulses:0 +I (18684) example: new speed:399.000000 +I (18694) example: expect speed: 0.000000 real_pulses:0 +I (18694) example: new speed:399.000000 +I (18704) example: expect speed: 0.000000 real_pulses:0 +I (18704) example: new speed:399.000000 +I (18714) example: expect speed: 0.000000 real_pulses:0 +I (18714) example: new speed:399.000000 +I (18724) example: expect speed: 0.000000 real_pulses:0 +I (18724) example: new speed:399.000000 +I (18734) example: expect speed: 0.000000 real_pulses:0 +I (18734) example: new speed:399.000000 +I (18744) example: expect speed: 0.000000 real_pulses:0 +I (18744) example: new speed:399.000000 +I (18754) example: expect speed: 0.000000 real_pulses:0 +I (18754) example: new speed:399.000000 +I (18764) example: expect speed: 0.000000 real_pulses:0 +I (18764) example: new speed:399.000000 +I (18774) example: expect speed: 0.000000 real_pulses:0 +I (18774) example: new speed:399.000000 +I (18784) example: expect speed: 0.000000 real_pulses:0 +I (18794) example: new speed:399.000000 +I (18794) example: expect speed: 0.000000 real_pulses:0 +I (18794) example: new speed:399.000000 +I (18804) example: expect speed: 0.000000 real_pulses:0 +I (18804) example: new speed:399.000000 +I (18814) example: expect speed: 0.000000 real_pulses:0 +I (18814) example: new speed:399.000000 +I (18824) example: expect speed: 0.000000 real_pulses:0 +I (18824) example: new speed:399.000000 +I (18834) example: expect speed: 0.000000 real_pulses:0 +I (18834) example: new speed:399.000000 +I (18844) example: expect speed: 0.000000 real_pulses:0 +I (18844) example: new speed:399.000000 +I (18854) example: expect speed: 0.000000 real_pulses:0 +I (18854) example: new speed:399.000000 +I (18864) example: expect speed: 0.000000 real_pulses:0 +I (18864) example: new speed:399.000000 +I (18874) example: expect speed: 0.000000 real_pulses:0 +I (18874) example: new speed:399.000000 +I (18884) example: expect speed: 0.000000 real_pulses:0 +I (18884) example: new speed:399.000000 +I (18894) example: expect speed: 0.000000 real_pulses:0 +I (18894) example: new speed:399.000000 +I (18904) example: expect speed: 0.000000 real_pulses:0 +I (18904) example: new speed:399.000000 +I (18914) example: expect speed: 0.000000 real_pulses:0 +I (18914) example: new speed:399.000000 +I (18924) example: expect speed: 0.000000 real_pulses:0 +I (18924) example: new speed:399.000000 +I (18934) example: expect speed: 0.000000 real_pulses:0 +I (18934) example: new speed:399.000000 +I (18944) example: expect speed: 0.000000 real_pulses:0 +I (18944) example: new speed:399.000000 +I (18954) example: expect speed: 0.000000 real_pulses:0 +I (18954) example: new speed:399.000000 +I (18964) example: expect speed: 0.000000 real_pulses:0 +I (18964) example: new speed:399.000000 +I (18974) example: expect speed: 0.000000 real_pulses:0 +I (18974) example: new speed:399.000000 +I (18984) example: expect speed: 0.000000 real_pulses:0 +I (18984) example: new speed:399.000000 +I (18994) example: expect speed: 0.000000 real_pulses:0 +I (18994) example: new speed:399.000000 +I (19004) example: expect speed: 0.000000 real_pulses:0 +I (19004) example: new speed:399.000000 +I (19014) example: expect speed: 0.000000 real_pulses:0 +I (19014) example: new speed:399.000000 +I (19024) example: expect speed: 0.000000 real_pulses:0 +I (19024) example: new speed:399.000000 +I (19034) example: expect speed: 0.000000 real_pulses:0 +I (19034) example: new speed:399.000000 +I (19044) example: expect speed: 0.000000 real_pulses:0 +I (19044) example: new speed:399.000000 +I (19054) example: expect speed: 0.000000 real_pulses:0 +I (19054) example: new speed:399.000000 +I (19064) example: expect speed: 0.000000 real_pulses:0 +I (19064) example: new speed:399.000000 +I (19074) example: expect speed: 0.000000 real_pulses:0 +I (19074) example: new speed:399.000000 +I (19084) example: expect speed: 0.000000 real_pulses:0 +I (19084) example: new speed:399.000000 +I (19094) example: expect speed: 0.000000 real_pulses:0 +I (19094) example: new speed:399.000000 +I (19104) example: expect speed: 0.000000 real_pulses:0 +I (19104) example: new speed:399.000000 +I (19114) example: expect speed: 0.000000 real_pulses:0 +I (19114) example: new speed:399.000000 +I (19124) example: expect speed: 0.000000 real_pulses:0 +I (19124) example: new speed:399.000000 +I (19134) example: expect speed: 0.000000 real_pulses:0 +I (19134) example: new speed:399.000000 +I (19144) example: expect speed: 0.000000 real_pulses:0 +I (19144) example: new speed:399.000000 +I (19154) example: expect speed: 0.000000 real_pulses:0 +I (19154) example: new speed:399.000000 +I (19164) example: expect speed: 0.000000 real_pulses:0 +I (19164) example: new speed:399.000000 +I (19174) example: expect speed: 0.000000 real_pulses:0 +I (19174) example: new speed:399.000000 +I (19184) example: expect speed: 0.000000 real_pulses:0 +I (19184) example: new speed:399.000000 +I (19194) example: expect speed: 0.000000 real_pulses:0 +I (19194) example: new speed:399.000000 +I (19204) example: expect speed: 0.000000 real_pulses:0 +I (19204) example: new speed:399.000000 +I (19214) example: expect speed: 0.000000 real_pulses:0 +I (19214) example: new speed:399.000000 +I (19224) example: expect speed: 0.000000 real_pulses:0 +I (19224) example: new speed:399.000000 +I (19234) example: expect speed: 0.000000 real_pulses:0 +I (19234) example: new speed:399.000000 +I (19244) example: expect speed: 0.000000 real_pulses:0 +I (19244) example: new speed:399.000000 +I (19254) example: expect speed: 0.000000 real_pulses:0 +I (19254) example: new speed:399.000000 +I (19264) example: expect speed: 0.000000 real_pulses:0 +I (19264) example: new speed:399.000000 +I (19274) example: expect speed: 0.000000 real_pulses:0 +I (19274) example: new speed:399.000000 +I (19284) example: expect speed: 0.000000 real_pulses:0 +I (19284) example: new speed:399.000000 +I (19294) example: expect speed: 0.000000 real_pulses:0 +I (19294) example: new speed:399.000000 +I (19304) example: expect speed: 0.000000 real_pulses:0 +I (19304) example: new speed:399.000000 +I (19314) example: expect speed: 0.000000 real_pulses:0 +I (19314) example: new speed:399.000000 +I (19324) example: expect speed: 0.000000 real_pulses:0 +I (19324) example: new speed:399.000000 +I (19334) example: expect speed: 0.000000 real_pulses:0 +I (19334) example: new speed:399.000000 +I (19344) example: expect speed: 0.000000 real_pulses:0 +I (19344) example: new speed:399.000000 +I (19354) example: expect speed: 0.000000 real_pulses:0 +I (19354) example: new speed:399.000000 +I (19364) example: expect speed: 0.000000 real_pulses:0 +I (19364) example: new speed:399.000000 +I (19374) example: expect speed: 0.000000 real_pulses:0 +I (19374) example: new speed:399.000000 +I (19384) example: expect speed: 0.000000 real_pulses:0 +I (19384) example: new speed:399.000000 +I (19394) example: expect speed: 0.000000 real_pulses:0 +I (19394) example: new speed:399.000000 +I (19404) example: expect speed: 0.000000 real_pulses:0 +I (19404) example: new speed:399.000000 +I (19414) example: expect speed: 0.000000 real_pulses:0 +I (19414) example: new speed:399.000000 +I (19424) example: expect speed: 0.000000 real_pulses:0 +I (19424) example: new speed:399.000000 +I (19434) example: expect speed: 0.000000 real_pulses:0 +I (19434) example: new speed:399.000000 +I (19444) example: expect speed: 0.000000 real_pulses:0 +I (19444) example: new speed:399.000000 +I (19454) example: expect speed: 0.000000 real_pulses:0 +I (19454) example: new speed:399.000000 +I (19464) example: expect speed: 0.000000 real_pulses:0 +I (19464) example: new speed:399.000000 +I (19474) example: expect speed: 0.000000 real_pulses:0 +I (19474) example: new speed:399.000000 +I (19484) example: expect speed: 0.000000 real_pulses:0 +I (19484) example: new speed:399.000000 +I (19494) example: expect speed: 0.000000 real_pulses:0 +I (19494) example: new speed:399.000000 +I (19504) example: expect speed: 0.000000 real_pulses:0 +I (19504) example: new speed:399.000000 +I (19514) example: expect speed: 0.000000 real_pulses:0 +I (19514) example: new speed:399.000000 +I (19524) example: expect speed: 0.000000 real_pulses:0 +I (19524) example: new speed:399.000000 +I (19534) example: expect speed: 0.000000 real_pulses:0 +I (19534) example: new speed:399.000000 +I (19544) example: expect speed: 0.000000 real_pulses:0 +I (19544) example: new speed:399.000000 +I (19554) example: expect speed: 0.000000 real_pulses:0 +I (19554) example: new speed:399.000000 +I (19564) example: expect speed: 0.000000 real_pulses:0 +I (19564) example: new speed:399.000000 +I (19574) example: expect speed: 0.000000 real_pulses:0 +I (19574) example: new speed:399.000000 +I (19584) example: expect speed: 0.000000 real_pulses:0 +I (19584) example: new speed:399.000000 +I (19594) example: expect speed: 0.000000 real_pulses:0 +I (19594) example: new speed:399.000000 +I (19604) example: expect speed: 0.000000 real_pulses:0 +I (19604) example: new speed:399.000000 +I (19614) example: expect speed: 0.000000 real_pulses:0 +I (19614) example: new speed:399.000000 +I (19624) example: expect speed: 0.000000 real_pulses:0 +I (19624) example: new speed:399.000000 +I (19634) example: expect speed: 0.000000 real_pulses:0 +I (19634) example: new speed:399.000000 +I (19644) example: expect speed: 0.000000 real_pulses:0 +I (19644) example: new speed:399.000000 +I (19654) example: expect speed: 0.000000 real_pulses:0 +I (19654) example: new speed:399.000000 +I (19664) example: expect speed: 0.000000 real_pulses:0 +I (19664) example: new speed:399.000000 +I (19674) example: expect speed: 0.000000 real_pulses:0 +I (19674) example: new speed:399.000000 +I (19684) example: expect speed: 0.000000 real_pulses:0 +I (19684) example: new speed:399.000000 +I (19694) example: expect speed: 0.000000 real_pulses:0 +I (19694) example: new speed:399.000000 +I (19704) example: expect speed: 0.000000 real_pulses:0 +I (19704) example: new speed:399.000000 +I (19714) example: expect speed: 0.000000 real_pulses:0 +I (19714) example: new speed:399.000000 +I (19724) example: expect speed: 0.000000 real_pulses:0 +I (19724) example: new speed:399.000000 +I (19734) example: expect speed: 0.000000 real_pulses:0 +I (19734) example: new speed:399.000000 +I (19744) example: expect speed: 0.000000 real_pulses:0 +I (19744) example: new speed:399.000000 +I (19754) example: expect speed: 0.000000 real_pulses:0 +I (19754) example: new speed:399.000000 +I (19764) example: expect speed: 0.000000 real_pulses:0 +I (19764) example: new speed:399.000000 +I (19774) example: expect speed: 0.000000 real_pulses:0 +I (19774) example: new speed:399.000000 +I (19784) example: expect speed: 0.000000 real_pulses:0 +I (19784) example: new speed:399.000000 +I (19794) example: expect speed: 0.000000 real_pulses:0 +I (19794) example: new speed:399.000000 +I (19804) example: expect speed: 0.000000 real_pulses:0 +I (19804) example: new speed:399.000000 +I (19814) example: expect speed: 0.000000 real_pulses:0 +I (19814) example: new speed:399.000000 +I (19824) example: expect speed: 0.000000 real_pulses:0 +I (19824) example: new speed:399.000000 +I (19834) example: expect speed: 0.000000 real_pulses:0 +I (19834) example: new speed:399.000000 +I (19844) example: expect speed: 0.000000 real_pulses:0 +I (19844) example: new speed:399.000000 +I (19854) example: expect speed: 0.000000 real_pulses:0 +I (19854) example: new speed:399.000000 +I (19864) example: expect speed: 0.000000 real_pulses:0 +I (19864) example: new speed:399.000000 +I (19874) example: expect speed: 0.000000 real_pulses:0 +I (19874) example: new speed:399.000000 +I (19884) example: expect speed: 0.000000 real_pulses:0 +I (19884) example: new speed:399.000000 +I (19894) example: expect speed: 0.000000 real_pulses:0 +I (19894) example: new speed:399.000000 +I (19904) example: expect speed: 0.000000 real_pulses:0 +I (19904) example: new speed:399.000000 +I (19914) example: expect speed: 0.000000 real_pulses:0 +I (19924) example: new speed:399.000000 +I (19924) example: expect speed: 0.000000 real_pulses:0 +I (19924) example: new speed:399.000000 +I (19934) example: expect speed: 0.000000 real_pulses:0 +I (19934) example: new speed:399.000000 +I (19944) example: expect speed: 0.000000 real_pulses:0 +I (19944) example: new speed:399.000000 +I (19954) example: expect speed: 0.000000 real_pulses:0 +I (19954) example: new speed:399.000000 +I (19964) example: expect speed: 0.000000 real_pulses:0 +I (19964) example: new speed:399.000000 +I (19974) example: expect speed: 0.000000 real_pulses:0 +I (19974) example: new speed:399.000000 +I (19984) example: expect speed: 0.000000 real_pulses:0 +I (19984) example: new speed:399.000000 +I (19994) example: expect speed: 0.000000 real_pulses:0 +I (19994) example: new speed:399.000000 +I (20004) example: expect speed: 0.000000 real_pulses:0 +I (20004) example: new speed:399.000000 +I (20014) example: expect speed: 0.000000 real_pulses:0 +I (20014) example: new speed:399.000000 +I (20024) example: expect speed: 0.000000 real_pulses:0 +I (20024) example: new speed:399.000000 +I (20034) example: expect speed: 0.000000 real_pulses:0 +I (20034) example: new speed:399.000000 +I (20044) example: expect speed: 0.000000 real_pulses:0 +I (20044) example: new speed:399.000000 +I (20054) example: expect speed: 0.000000 real_pulses:0 +I (20054) example: new speed:399.000000 +I (20064) example: expect speed: 0.000000 real_pulses:0 +I (20064) example: new speed:399.000000 +I (20074) example: expect speed: 0.000000 real_pulses:0 +I (20074) example: new speed:399.000000 +I (20084) example: expect speed: 0.000000 real_pulses:0 +I (20084) example: new speed:399.000000 +I (20094) example: expect speed: 0.000000 real_pulses:0 +I (20094) example: new speed:399.000000 +I (20104) example: expect speed: 0.000000 real_pulses:0 +I (20104) example: new speed:399.000000 +I (20114) example: expect speed: 0.000000 real_pulses:0 +I (20114) example: new speed:399.000000 +I (20124) example: expect speed: 0.000000 real_pulses:0 +I (20124) example: new speed:399.000000 +I (20134) example: expect speed: 0.000000 real_pulses:0 +I (20134) example: new speed:399.000000 +I (20144) example: expect speed: 0.000000 real_pulses:0 +I (20144) example: new speed:399.000000 +I (20154) example: expect speed: 0.000000 real_pulses:0 +I (20154) example: new speed:399.000000 +I (20164) example: expect speed: 0.000000 real_pulses:0 +I (20164) example: new speed:399.000000 +I (20174) example: expect speed: 0.000000 real_pulses:0 +I (20174) example: new speed:399.000000 +I (20184) example: expect speed: 0.000000 real_pulses:0 +I (20184) example: new speed:399.000000 +I (20194) example: expect speed: 0.000000 real_pulses:0 +I (20194) example: new speed:399.000000 +I (20204) example: expect speed: 0.000000 real_pulses:0 +I (20204) example: new speed:399.000000 +I (20214) example: expect speed: 0.000000 real_pulses:0 +I (20214) example: new speed:399.000000 +I (20224) example: expect speed: 0.000000 real_pulses:0 +I (20224) example: new speed:399.000000 +I (20234) example: expect speed: 0.000000 real_pulses:0 +I (20234) example: new speed:399.000000 +I (20244) example: expect speed: 0.000000 real_pulses:0 +I (20244) example: new speed:399.000000 +I (20254) example: expect speed: 0.000000 real_pulses:0 +I (20254) example: new speed:399.000000 +I (20264) example: expect speed: 0.000000 real_pulses:0 +I (20264) example: new speed:399.000000 +I (20274) example: expect speed: 0.000000 real_pulses:0 +I (20274) example: new speed:399.000000 +I (20284) example: expect speed: 0.000000 real_pulses:0 +I (20284) example: new speed:399.000000 +I (20294) example: expect speed: 0.000000 real_pulses:0 +I (20294) example: new speed:399.000000 +I (20304) example: expect speed: 0.000000 real_pulses:0 +I (20304) example: new speed:399.000000 +I (20314) example: expect speed: 0.000000 real_pulses:0 +I (20314) example: new speed:399.000000 +I (20324) example: expect speed: 0.000000 real_pulses:0 +I (20324) example: new speed:399.000000 +I (20334) example: expect speed: 0.000000 real_pulses:0 +I (20334) example: new speed:399.000000 +I (20344) example: expect speed: 0.000000 real_pulses:0 +I (20344) example: new speed:399.000000 +I (20354) example: expect speed: 0.000000 real_pulses:0 +I (20354) example: new speed:399.000000 +I (20364) example: expect speed: 0.000000 real_pulses:0 +I (20364) example: new speed:399.000000 +I (20374) example: expect speed: 0.000000 real_pulses:0 +I (20374) example: new speed:399.000000 +I (20384) example: expect speed: 0.000000 real_pulses:0 +I (20384) example: new speed:399.000000 +I (20394) example: expect speed: 0.000000 real_pulses:0 +I (20394) example: new speed:399.000000 +I (20404) example: expect speed: 0.000000 real_pulses:0 +I (20404) example: new speed:399.000000 +I (20414) example: expect speed: 0.000000 real_pulses:0 +I (20414) example: new speed:399.000000 +I (20424) example: expect speed: 0.000000 real_pulses:0 +I (20424) example: new speed:399.000000 +I (20434) example: expect speed: 0.000000 real_pulses:0 +I (20434) example: new speed:399.000000 +I (20444) example: expect speed: 0.000000 real_pulses:0 +I (20444) example: new speed:399.000000 +I (20454) example: expect speed: 0.000000 real_pulses:0 +I (20454) example: new speed:399.000000 +I (20464) example: expect speed: 0.000000 real_pulses:0 +I (20464) example: new speed:399.000000 +I (20474) example: expect speed: 0.000000 real_pulses:0 +I (20474) example: new speed:399.000000 +I (20484) example: expect speed: 0.000000 real_pulses:0 +I (20484) example: new speed:399.000000 +I (20494) example: expect speed: 0.000000 real_pulses:0 +I (20494) example: new speed:399.000000 +I (20504) example: expect speed: 0.000000 real_pulses:0 +I (20504) example: new speed:399.000000 +I (20514) example: expect speed: 0.000000 real_pulses:0 +I (20514) example: new speed:399.000000 +I (20524) example: expect speed: 0.000000 real_pulses:0 +I (20524) example: new speed:399.000000 +I (20534) example: expect speed: 0.000000 real_pulses:0 +I (20534) example: new speed:399.000000 +I (20544) example: expect speed: 0.000000 real_pulses:0 +I (20544) example: new speed:399.000000 +I (20554) example: expect speed: 0.000000 real_pulses:0 +I (20554) example: new speed:399.000000 +I (20564) example: expect speed: 0.000000 real_pulses:0 +I (20564) example: new speed:399.000000 +I (20574) example: expect speed: 0.000000 real_pulses:0 +I (20574) example: new speed:399.000000 +I (20584) example: expect speed: 0.000000 real_pulses:0 +I (20584) example: new speed:399.000000 +I (20594) example: expect speed: 0.000000 real_pulses:0 +I (20594) example: new speed:399.000000 +I (20604) example: expect speed: 0.000000 real_pulses:0 +I (20604) example: new speed:399.000000 +I (20614) example: expect speed: 0.000000 real_pulses:0 +I (20614) example: new speed:399.000000 +I (20624) example: expect speed: 0.000000 real_pulses:0 +I (20624) example: new speed:399.000000 +I (20634) example: expect speed: 0.000000 real_pulses:0 +I (20634) example: new speed:399.000000 +I (20644) example: expect speed: 0.000000 real_pulses:0 +I (20644) example: new speed:399.000000 +I (20654) example: expect speed: 0.000000 real_pulses:0 +I (20654) example: new speed:399.000000 +I (20664) example: expect speed: 0.000000 real_pulses:0 +I (20664) example: new speed:399.000000 +I (20674) example: expect speed: 0.000000 real_pulses:0 +I (20674) example: new speed:399.000000 +I (20684) example: expect speed: 0.000000 real_pulses:0 +I (20684) example: new speed:399.000000 +I (20694) example: expect speed: 0.000000 real_pulses:0 +I (20694) example: new speed:399.000000 +I (20704) example: expect speed: 0.000000 real_pulses:0 +I (20704) example: new speed:399.000000 +I (20714) example: expect speed: 0.000000 real_pulses:0 +I (20714) example: new speed:399.000000 +I (20724) example: expect speed: 0.000000 real_pulses:0 +I (20724) example: new speed:399.000000 +I (20734) example: expect speed: 0.000000 real_pulses:0 +I (20734) example: new speed:399.000000 +I (20744) example: expect speed: 0.000000 real_pulses:0 +I (20744) example: new speed:399.000000 +I (20754) example: expect speed: 0.000000 real_pulses:0 +I (20754) example: new speed:399.000000 +I (20764) example: expect speed: 0.000000 real_pulses:0 +I (20764) example: new speed:399.000000 +I (20774) example: expect speed: 0.000000 real_pulses:0 +I (20774) example: new speed:399.000000 +I (20784) example: expect speed: 0.000000 real_pulses:0 +I (20784) example: new speed:399.000000 +I (20794) example: expect speed: 0.000000 real_pulses:0 +I (20794) example: new speed:399.000000 +I (20804) example: expect speed: 0.000000 real_pulses:0 +I (20804) example: new speed:399.000000 +I (20814) example: expect speed: 0.000000 real_pulses:0 +I (20814) example: new speed:399.000000 +I (20824) example: expect speed: 0.000000 real_pulses:0 +I (20824) example: new speed:399.000000 +I (20834) example: expect speed: 0.000000 real_pulses:0 +I (20834) example: new speed:399.000000 +I (20844) example: expect speed: 0.000000 real_pulses:0 +I (20844) example: new speed:399.000000 +I (20854) example: expect speed: 0.000000 real_pulses:0 +I (20854) example: new speed:399.000000 +I (20864) example: expect speed: 0.000000 real_pulses:0 +I (20864) example: new speed:399.000000 +I (20874) example: expect speed: 0.000000 real_pulses:0 +I (20874) example: new speed:399.000000 +I (20884) example: expect speed: 0.000000 real_pulses:0 +I (20884) example: new speed:399.000000 +I (20894) example: expect speed: 0.000000 real_pulses:0 +I (20894) example: new speed:399.000000 +I (20904) example: expect speed: 0.000000 real_pulses:0 +I (20904) example: new speed:399.000000 +I (20914) example: expect speed: 0.000000 real_pulses:0 +I (20914) example: new speed:399.000000 +I (20924) example: expect speed: 0.000000 real_pulses:0 +I (20924) example: new speed:399.000000 +I (20934) example: expect speed: 0.000000 real_pulses:0 +I (20934) example: new speed:399.000000 +I (20944) example: expect speed: 0.000000 real_pulses:0 +I (20944) example: new speed:399.000000 +I (20954) example: expect speed: 0.000000 real_pulses:0 +I (20954) example: new speed:399.000000 +I (20964) example: expect speed: 0.000000 real_pulses:0 +I (20964) example: new speed:399.000000 +I (20974) example: expect speed: 0.000000 real_pulses:0 +I (20974) example: new speed:399.000000 +I (20984) example: expect speed: 0.000000 real_pulses:0 +I (20984) example: new speed:399.000000 +I (20994) example: expect speed: 0.000000 real_pulses:0 +I (20994) example: new speed:399.000000 +I (21004) example: expect speed: 0.000000 real_pulses:0 +I (21004) example: new speed:399.000000 +I (21014) example: expect speed: 0.000000 real_pulses:0 +I (21014) example: new speed:399.000000 +I (21024) example: expect speed: 0.000000 real_pulses:0 +I (21024) example: new speed:399.000000 +I (21034) example: expect speed: 0.000000 real_pulses:0 +I (21034) example: new speed:399.000000 +I (21044) example: expect speed: 0.000000 real_pulses:0 +I (21054) example: new speed:399.000000 +I (21054) example: expect speed: 0.000000 real_pulses:0 +I (21054) example: new speed:399.000000 +I (21064) example: expect speed: 0.000000 real_pulses:0 +I (21064) example: new speed:399.000000 +I (21074) example: expect speed: 0.000000 real_pulses:0 +I (21074) example: new speed:399.000000 +I (21084) example: expect speed: 0.000000 real_pulses:0 +I (21084) example: new speed:399.000000 +I (21094) example: expect speed: 0.000000 real_pulses:0 +I (21094) example: new speed:399.000000 +I (21104) example: expect speed: 0.000000 real_pulses:0 +I (21104) example: new speed:399.000000 +I (21114) example: expect speed: 0.000000 real_pulses:0 +I (21114) example: new speed:399.000000 +I (21124) example: expect speed: 0.000000 real_pulses:0 +I (21124) example: new speed:399.000000 +I (21134) example: expect speed: 0.000000 real_pulses:0 +I (21134) example: new speed:399.000000 +I (21144) example: expect speed: 0.000000 real_pulses:0 +I (21144) example: new speed:399.000000 +I (21154) example: expect speed: 0.000000 real_pulses:0 +I (21154) example: new speed:399.000000 +I (21164) example: expect speed: 0.000000 real_pulses:0 +I (21164) example: new speed:399.000000 +I (21174) example: expect speed: 0.000000 real_pulses:0 +I (21174) example: new speed:399.000000 +I (21184) example: expect speed: 0.000000 real_pulses:0 +I (21184) example: new speed:399.000000 +I (21194) example: expect speed: 0.000000 real_pulses:0 +I (21194) example: new speed:399.000000 +I (21204) example: expect speed: 0.000000 real_pulses:0 +I (21204) example: new speed:399.000000 +I (21214) example: expect speed: 0.000000 real_pulses:0 +I (21214) example: new speed:399.000000 +I (21224) example: expect speed: 0.000000 real_pulses:0 +I (21224) example: new speed:399.000000 +I (21234) example: expect speed: 0.000000 real_pulses:0 +I (21234) example: new speed:399.000000 +I (21244) example: expect speed: 0.000000 real_pulses:0 +I (21244) example: new speed:399.000000 +I (21254) example: expect speed: 0.000000 real_pulses:0 +I (21254) example: new speed:399.000000 +I (21264) example: expect speed: 0.000000 real_pulses:0 +I (21264) example: new speed:399.000000 +I (21274) example: expect speed: 0.000000 real_pulses:0 +I (21274) example: new speed:399.000000 +I (21284) example: expect speed: 0.000000 real_pulses:0 +I (21284) example: new speed:399.000000 +I (21294) example: expect speed: 0.000000 real_pulses:0 +I (21294) example: new speed:399.000000 +I (21304) example: expect speed: 0.000000 real_pulses:0 +I (21304) example: new speed:399.000000 +I (21314) example: expect speed: 0.000000 real_pulses:0 +I (21314) example: new speed:399.000000 +I (21324) example: expect speed: 0.000000 real_pulses:0 +I (21324) example: new speed:399.000000 +I (21334) example: expect speed: 0.000000 real_pulses:0 +I (21334) example: new speed:399.000000 +I (21344) example: expect speed: 0.000000 real_pulses:0 +I (21344) example: new speed:399.000000 +I (21354) example: expect speed: 0.000000 real_pulses:0 +I (21354) example: new speed:399.000000 +I (21364) example: expect speed: 0.000000 real_pulses:0 +I (21364) example: new speed:399.000000 +I (21374) example: expect speed: 0.000000 real_pulses:0 +I (21374) example: new speed:399.000000 +I (21384) example: expect speed: 0.000000 real_pulses:0 +I (21384) example: new speed:399.000000 +I (21394) example: expect speed: 0.000000 real_pulses:0 +I (21394) example: new speed:399.000000 +I (21404) example: expect speed: 0.000000 real_pulses:0 +I (21404) example: new speed:399.000000 +I (21414) example: expect speed: 0.000000 real_pulses:0 +I (21414) example: new speed:399.000000 +I (21424) example: expect speed: 0.000000 real_pulses:0 +I (21424) example: new speed:399.000000 +I (21434) example: expect speed: 0.000000 real_pulses:0 +I (21434) example: new speed:399.000000 +I (21444) example: expect speed: 0.000000 real_pulses:0 +I (21444) example: new speed:399.000000 +I (21454) example: expect speed: 0.000000 real_pulses:0 +I (21454) example: new speed:399.000000 +I (21464) example: expect speed: 0.000000 real_pulses:0 +I (21464) example: new speed:399.000000 +I (21474) example: expect speed: 0.000000 real_pulses:0 +I (21474) example: new speed:399.000000 +I (21484) example: expect speed: 0.000000 real_pulses:0 +I (21484) example: new speed:399.000000 +I (21494) example: expect speed: 0.000000 real_pulses:0 +I (21494) example: new speed:399.000000 +I (21504) example: expect speed: 0.000000 real_pulses:0 +I (21504) example: new speed:399.000000 +I (21514) example: expect speed: 0.000000 real_pulses:0 +I (21514) example: new speed:399.000000 +I (21524) example: expect speed: 0.000000 real_pulses:0 +I (21524) example: new speed:399.000000 +I (21534) example: expect speed: 0.000000 real_pulses:0 +I (21534) example: new speed:399.000000 +I (21544) example: expect speed: 0.000000 real_pulses:0 +I (21544) example: new speed:399.000000 +I (21554) example: expect speed: 0.000000 real_pulses:0 +I (21554) example: new speed:399.000000 +I (21564) example: expect speed: 0.000000 real_pulses:0 +I (21564) example: new speed:399.000000 +I (21574) example: expect speed: 0.000000 real_pulses:0 +I (21574) example: new speed:399.000000 +I (21584) example: expect speed: 0.000000 real_pulses:0 +I (21584) example: new speed:399.000000 +I (21594) example: expect speed: 0.000000 real_pulses:0 +I (21594) example: new speed:399.000000 +I (21604) example: expect speed: 0.000000 real_pulses:0 +I (21604) example: new speed:399.000000 +I (21614) example: expect speed: 0.000000 real_pulses:0 +I (21614) example: new speed:399.000000 +I (21624) example: expect speed: 0.000000 real_pulses:0 +I (21624) example: new speed:399.000000 +I (21634) example: expect speed: 0.000000 real_pulses:0 +I (21634) example: new speed:399.000000 +I (21644) example: expect speed: 0.000000 real_pulses:0 +I (21644) example: new speed:399.000000 +I (21654) example: expect speed: 0.000000 real_pulses:0 +I (21654) example: new speed:399.000000 +I (21664) example: expect speed: 0.000000 real_pulses:0 +I (21664) example: new speed:399.000000 +I (21674) example: expect speed: 0.000000 real_pulses:0 +I (21674) example: new speed:399.000000 +I (21684) example: expect speed: 0.000000 real_pulses:0 +I (21684) example: new speed:399.000000 +I (21694) example: expect speed: 0.000000 real_pulses:0 +I (21694) example: new speed:399.000000 +I (21704) example: expect speed: 0.000000 real_pulses:0 +I (21704) example: new speed:399.000000 +I (21714) example: expect speed: 0.000000 real_pulses:0 +I (21714) example: new speed:399.000000 +I (21724) example: expect speed: 0.000000 real_pulses:0 +I (21724) example: new speed:399.000000 +I (21734) example: expect speed: 0.000000 real_pulses:0 +I (21734) example: new speed:399.000000 +I (21744) example: expect speed: 0.000000 real_pulses:0 +I (21744) example: new speed:399.000000 +I (21754) example: expect speed: 0.000000 real_pulses:0 +I (21754) example: new speed:399.000000 +I (21764) example: expect speed: 0.000000 real_pulses:0 +I (21764) example: new speed:399.000000 +I (21774) example: expect speed: 0.000000 real_pulses:0 +I (21774) example: new speed:399.000000 +I (21784) example: expect speed: 0.000000 real_pulses:0 +I (21784) example: new speed:399.000000 +I (21794) example: expect speed: 0.000000 real_pulses:0 +I (21794) example: new speed:399.000000 +I (21804) example: expect speed: 0.000000 real_pulses:0 +I (21804) example: new speed:399.000000 +I (21814) example: expect speed: 0.000000 real_pulses:0 +I (21814) example: new speed:399.000000 +I (21824) example: expect speed: 0.000000 real_pulses:0 +I (21824) example: new speed:399.000000 +I (21834) example: expect speed: 0.000000 real_pulses:0 +I (21834) example: new speed:399.000000 +I (21844) example: expect speed: 0.000000 real_pulses:0 +I (21844) example: new speed:399.000000 +I (21854) example: expect speed: 0.000000 real_pulses:0 +I (21854) example: new speed:399.000000 +I (21864) example: expect speed: 0.000000 real_pulses:0 +I (21864) example: new speed:399.000000 +I (21874) example: expect speed: 0.000000 real_pulses:0 +I (21874) example: new speed:399.000000 +I (21884) example: expect speed: 0.000000 real_pulses:0 +I (21884) example: new speed:399.000000 +I (21894) example: expect speed: 0.000000 real_pulses:0 +I (21894) example: new speed:399.000000 +I (21904) example: expect speed: 0.000000 real_pulses:0 +I (21904) example: new speed:399.000000 +I (21914) example: expect speed: 0.000000 real_pulses:0 +I (21914) example: new speed:399.000000 +I (21924) example: expect speed: 0.000000 real_pulses:0 +I (21924) example: new speed:399.000000 +I (21934) example: expect speed: 0.000000 real_pulses:0 +I (21934) example: new speed:399.000000 +I (21944) example: expect speed: 0.000000 real_pulses:0 +I (21944) example: new speed:399.000000 +I (21954) example: expect speed: 0.000000 real_pulses:0 +I (21954) example: new speed:399.000000 +I (21964) example: expect speed: 0.000000 real_pulses:0 +I (21974) example: new speed:399.000000 +I (21974) example: expect speed: 0.000000 real_pulses:0 +I (21974) example: new speed:399.000000 +I (21984) example: expect speed: 0.000000 real_pulses:0 +I (21984) example: new speed:399.000000 +I (21994) example: expect speed: 0.000000 real_pulses:0 +I (21994) example: new speed:399.000000 +I (22004) example: expect speed: 0.000000 real_pulses:0 +I (22004) example: new speed:399.000000 +I (22014) example: expect speed: 0.000000 real_pulses:0 +I (22014) example: new speed:399.000000 +I (22024) example: expect speed: 0.000000 real_pulses:0 +I (22024) example: new speed:399.000000 +I (22034) example: expect speed: 0.000000 real_pulses:0 +I (22034) example: new speed:399.000000 +I (22044) example: expect speed: 0.000000 real_pulses:0 +I (22044) example: new speed:399.000000 +I (22054) example: expect speed: 0.000000 real_pulses:0 +I (22054) example: new speed:399.000000 +I (22064) example: expect speed: 0.000000 real_pulses:0 +I (22064) example: new speed:399.000000 +I (22074) example: expect speed: 0.000000 real_pulses:0 +I (22074) example: new speed:399.000000 +I (22084) example: expect speed: 0.000000 real_pulses:0 +I (22084) example: new speed:399.000000 +I (22094) example: expect speed: 0.000000 real_pulses:0 +I (22094) example: new speed:399.000000 +I (22104) example: expect speed: 0.000000 real_pulses:0 +I (22104) example: new speed:399.000000 +I (22114) example: expect speed: 0.000000 real_pulses:0 +I (22114) example: new speed:399.000000 +I (22124) example: expect speed: 0.000000 real_pulses:0 +I (22124) example: new speed:399.000000 +I (22134) example: expect speed: 0.000000 real_pulses:0 +I (22134) example: new speed:399.000000 +I (22144) example: expect speed: 0.000000 real_pulses:0 +I (22144) example: new speed:399.000000 +I (22154) example: expect speed: 0.000000 real_pulses:0 +I (22154) example: new speed:399.000000 +I (22164) example: expect speed: 0.000000 real_pulses:0 +I (22164) example: new speed:399.000000 +I (22174) example: expect speed: 0.000000 real_pulses:0 +I (22174) example: new speed:399.000000 +I (22184) example: expect speed: 0.000000 real_pulses:0 +I (22184) example: new speed:399.000000 +I (22194) example: expect speed: 0.000000 real_pulses:0 +I (22194) example: new speed:399.000000 +I (22204) example: expect speed: 0.000000 real_pulses:0 +I (22204) example: new speed:399.000000 +I (22214) example: expect speed: 0.000000 real_pulses:0 +I (22214) example: new speed:399.000000 +I (22224) example: expect speed: 0.000000 real_pulses:0 +I (22224) example: new speed:399.000000 +I (22234) example: expect speed: 0.000000 real_pulses:0 +I (22234) example: new speed:399.000000 +I (22244) example: expect speed: 0.000000 real_pulses:0 +I (22244) example: new speed:399.000000 +I (22254) example: expect speed: 0.000000 real_pulses:0 +I (22254) example: new speed:399.000000 +I (22264) example: expect speed: 0.000000 real_pulses:0 +I (22264) example: new speed:399.000000 +I (22274) example: expect speed: 0.000000 real_pulses:0 +I (22274) example: new speed:399.000000 +I (22284) example: expect speed: 0.000000 real_pulses:0 +I (22284) example: new speed:399.000000 +I (22294) example: expect speed: 0.000000 real_pulses:0 +I (22294) example: new speed:399.000000 +I (22304) example: expect speed: 0.000000 real_pulses:0 +I (22304) example: new speed:399.000000 +I (22314) example: expect speed: 0.000000 real_pulses:0 +I (22314) example: new speed:399.000000 +I (22324) example: expect speed: 0.000000 real_pulses:0 +I (22324) example: new speed:399.000000 +I (22334) example: expect speed: 0.000000 real_pulses:0 +I (22334) example: new speed:399.000000 +I (22344) example: expect speed: 0.000000 real_pulses:0 +I (22344) example: new speed:399.000000 +I (22354) example: expect speed: 0.000000 real_pulses:0 +I (22354) example: new speed:399.000000 +I (22364) example: expect speed: 0.000000 real_pulses:0 +I (22364) example: new speed:399.000000 +I (22374) example: expect speed: 0.000000 real_pulses:0 +I (22374) example: new speed:399.000000 +I (22384) example: expect speed: 0.000000 real_pulses:0 +I (22384) example: new speed:399.000000 +I (22394) example: expect speed: 0.000000 real_pulses:0 +I (22394) example: new speed:399.000000 +I (22404) example: expect speed: 0.000000 real_pulses:0 +I (22404) example: new speed:399.000000 +I (22414) example: expect speed: 0.000000 real_pulses:0 +I (22414) example: new speed:399.000000 +I (22424) example: expect speed: 0.000000 real_pulses:0 +I (22424) example: new speed:399.000000 +I (22434) example: expect speed: 0.000000 real_pulses:0 +I (22434) example: new speed:399.000000 +I (22444) example: expect speed: 0.000000 real_pulses:0 +I (22444) example: new speed:399.000000 +I (22454) example: expect speed: 0.000000 real_pulses:0 +I (22454) example: new speed:399.000000 +I (22464) example: expect speed: 0.000000 real_pulses:0 +I (22464) example: new speed:399.000000 +I (22474) example: expect speed: 0.000000 real_pulses:0 +I (22474) example: new speed:399.000000 +I (22484) example: expect speed: 0.000000 real_pulses:0 +I (22484) example: new speed:399.000000 +I (22494) example: expect speed: 0.000000 real_pulses:0 +I (22494) example: new speed:399.000000 +I (22504) example: expect speed: 0.000000 real_pulses:0 +I (22504) example: new speed:399.000000 +I (22514) example: expect speed: 0.000000 real_pulses:0 +I (22514) example: new speed:399.000000 +I (22524) example: expect speed: 0.000000 real_pulses:0 +I (22524) example: new speed:399.000000 +I (22534) example: expect speed: 0.000000 real_pulses:0 +I (22534) example: new speed:399.000000 +I (22544) example: expect speed: 0.000000 real_pulses:0 +I (22544) example: new speed:399.000000 +I (22554) example: expect speed: 0.000000 real_pulses:0 +I (22554) example: new speed:399.000000 +I (22564) example: expect speed: 0.000000 real_pulses:0 +I (22564) example: new speed:399.000000 +I (22574) example: expect speed: 0.000000 real_pulses:0 +I (22574) example: new speed:399.000000 +I (22584) example: expect speed: 0.000000 real_pulses:0 +I (22584) example: new speed:399.000000 +I (22594) example: expect speed: 0.000000 real_pulses:0 +I (22594) example: new speed:399.000000 +I (22604) example: expect speed: 0.000000 real_pulses:0 +I (22604) example: new speed:399.000000 +I (22614) example: expect speed: 0.000000 real_pulses:0 +I (22614) example: new speed:399.000000 +I (22624) example: expect speed: 0.000000 real_pulses:0 +I (22624) example: new speed:399.000000 +I (22634) example: expect speed: 0.000000 real_pulses:0 +I (22634) example: new speed:399.000000 +I (22644) example: expect speed: 0.000000 real_pulses:0 +I (22644) example: new speed:399.000000 +I (22654) example: expect speed: 0.000000 real_pulses:0 +I (22654) example: new speed:399.000000 +I (22664) example: expect speed: 0.000000 real_pulses:0 +I (22664) example: new speed:399.000000 +I (22674) example: expect speed: 0.000000 real_pulses:0 +I (22674) example: new speed:399.000000 +I (22684) example: expect speed: 0.000000 real_pulses:0 +I (22684) example: new speed:399.000000 +I (22694) example: expect speed: 0.000000 real_pulses:0 +I (22694) example: new speed:399.000000 +I (22704) example: expect speed: 0.000000 real_pulses:0 +I (22704) example: new speed:399.000000 +I (22714) example: expect speed: 0.000000 real_pulses:0 +I (22714) example: new speed:399.000000 +I (22724) example: expect speed: 0.000000 real_pulses:0 +I (22724) example: new speed:399.000000 +I (22734) example: expect speed: 0.000000 real_pulses:0 +I (22734) example: new speed:399.000000 +I (22744) example: expect speed: 0.000000 real_pulses:0 +I (22744) example: new speed:399.000000 +I (22754) example: expect speed: 0.000000 real_pulses:0 +I (22754) example: new speed:399.000000 +I (22764) example: expect speed: 0.000000 real_pulses:0 +I (22764) example: new speed:399.000000 +I (22774) example: expect speed: 0.000000 real_pulses:0 +I (22774) example: new speed:399.000000 +I (22784) example: expect speed: 0.000000 real_pulses:0 +I (22784) example: new speed:399.000000 +I (22794) example: expect speed: 0.000000 real_pulses:0 +I (22794) example: new speed:399.000000 +I (22804) example: expect speed: 0.000000 real_pulses:0 +I (22804) example: new speed:399.000000 +I (22814) example: expect speed: 0.000000 real_pulses:0 +I (22814) example: new speed:399.000000 +I (22824) example: expect speed: 0.000000 real_pulses:0 +I (22824) example: new speed:399.000000 +I (22834) example: expect speed: 0.000000 real_pulses:0 +I (22834) example: new speed:399.000000 +I (22844) example: expect speed: 0.000000 real_pulses:0 +I (22844) example: new speed:399.000000 +I (22854) example: expect speed: 0.000000 real_pulses:0 +I (22854) example: new speed:399.000000 +I (22864) example: expect speed: 0.000000 real_pulses:0 +I (22864) example: new speed:399.000000 +I (22874) example: expect speed: 0.000000 real_pulses:0 +I (22874) example: new speed:399.000000 +I (22884) example: expect speed: 0.000000 real_pulses:0 +I (22884) example: new speed:399.000000 +I (22894) example: expect speed: 0.000000 real_pulses:0 +I (22894) example: new speed:399.000000 +I (22904) example: expect speed: 0.000000 real_pulses:0 +I (22904) example: new speed:399.000000 +I (22914) example: expect speed: 0.000000 real_pulses:0 +I (22914) example: new speed:399.000000 +I (22924) example: expect speed: 0.000000 real_pulses:0 +I (22924) example: new speed:399.000000 +I (22934) example: expect speed: 0.000000 real_pulses:0 +I (22934) example: new speed:399.000000 +I (22944) example: expect speed: 0.000000 real_pulses:0 +I (22944) example: new speed:399.000000 +I (22954) example: expect speed: 0.000000 real_pulses:0 +I (22954) example: new speed:399.000000 +I (22964) example: expect speed: 0.000000 real_pulses:0 +I (22964) example: new speed:399.000000 +I (22974) example: expect speed: 0.000000 real_pulses:0 +I (22974) example: new speed:399.000000 +I (22984) example: expect speed: 0.000000 real_pulses:0 +I (22994) example: new speed:399.000000 +I (22994) example: expect speed: 0.000000 real_pulses:0 +I (22994) example: new speed:399.000000 +I (23004) example: expect speed: 0.000000 real_pulses:0 +I (23004) example: new speed:399.000000 +I (23014) example: expect speed: 0.000000 real_pulses:0 +I (23014) example: new speed:399.000000 +I (23024) example: expect speed: 0.000000 real_pulses:0 +I (23024) example: new speed:399.000000 +I (23034) example: expect speed: 0.000000 real_pulses:0 +I (23034) example: new speed:399.000000 +I (23044) example: expect speed: 0.000000 real_pulses:0 +I (23044) example: new speed:399.000000 +I (23054) example: expect speed: 0.000000 real_pulses:0 +I (23054) example: new speed:399.000000 +I (23064) example: expect speed: 0.000000 real_pulses:0 +I (23064) example: new speed:399.000000 +I (23074) example: expect speed: 0.000000 real_pulses:0 +I (23074) example: new speed:399.000000 +I (23084) example: expect speed: 0.000000 real_pulses:0 +I (23084) example: new speed:399.000000 +I (23094) example: expect speed: 0.000000 real_pulses:0 +I (23094) example: new speed:399.000000 +I (23104) example: expect speed: 0.000000 real_pulses:0 +I (23104) example: new speed:399.000000 +I (23114) example: expect speed: 0.000000 real_pulses:0 +I (23114) example: new speed:399.000000 +I (23124) example: expect speed: 0.000000 real_pulses:0 +I (23124) example: new speed:399.000000 +I (23134) example: expect speed: 0.000000 real_pulses:0 +I (23134) example: new speed:399.000000 +I (23144) example: expect speed: 0.000000 real_pulses:0 +I (23144) example: new speed:399.000000 +I (23154) example: expect speed: 0.000000 real_pulses:0 +I (23154) example: new speed:399.000000 +I (23164) example: expect speed: 0.000000 real_pulses:0 +I (23164) example: new speed:399.000000 +I (23174) example: expect speed: 0.000000 real_pulses:0 +[0;32mI (23174) example: new speed:399.000000 +I (23184) example: expect speed: 0.000000 real_pulses:0 +I (23184) example: new speed:399.000000 +I (23194) example: expect speed: 0.000000 real_pulses:0 +I (23194) example: new speed:399.000000 +I (23204) example: expect speed: 0.000000 real_pulses:0 +I (23204) example: new speed:399.000000 +I (23214) example: expect speed: 0.000000 real_pulses:0 +I (23214) example: new speed:399.000000 +I (23224) example: expect speed: 0.000000 real_pulses:0 +I (23224) example: new speed:399.000000 +I (23234) example: expect speed: 0.000000 real_pulses:0 +I (23234) example: new speed:399.000000 +I (23244) example: expect speed: 0.000000 real_pulses:0 +I (23244) example: new speed:399.000000 +I (23254) example: expect speed: 0.000000 real_pulses:0 +I (23254) example: new speed:399.000000 +I (23264) example: expect speed: 0.000000 real_pulses:0 +I (23264) example: new speed:399.000000 +I (23274) example: expect speed: 0.000000 real_pulses:0 +I (23274) example: new speed:399.000000 +I (23284) example: expect speed: 0.000000 real_pulses:0 +I (23284) example: new speed:399.000000 +I (23294) example: expect speed: 0.000000 real_pulses:0 +I (23294) example: new speed:399.000000 +I (23304) example: expect speed: 0.000000 real_pulses:0 +I (23304) example: new speed:399.000000 +I (23314) example: expect speed: 0.000000 real_pulses:0 +I (23314) example: new speed:399.000000 +I (23324) example: expect speed: 0.000000 real_pulses:0 +I (23324) example: new speed:399.000000 +I (23334) example: expect speed: 0.000000 real_pulses:0 +I (23334) example: new speed:399.000000 +I (23344) example: expect speed: 0.000000 real_pulses:0 +I (23344) example: new speed:399.000000 +I (23354) example: expect speed: 0.000000 real_pulses:0 +I (23354) example: new speed:399.000000 +I (23364) example: expect speed: 0.000000 real_pulses:0 +I (23364) example: new speed:399.000000 +I (23374) example: expect speed: 0.000000 real_pulses:0 +I (23374) example: new speed:399.000000 +I (23384) example: expect speed: 0.000000 real_pulses:0 +I (23384) example: new speed:399.000000 +I (23394) example: expect speed: 0.000000 real_pulses:0 +I (23394) example: new speed:399.000000 +I (23404) example: expect speed: 0.000000 real_pulses:0 +I (23404) example: new speed:399.000000 +I (23414) example: expect speed: 0.000000 real_pulses:0 +I (23414) example: new speed:399.000000 +I (23424) example: expect speed: 0.000000 real_pulses:0 +I (23424) example: new speed:399.000000 +I (23434) example: expect speed: 0.000000 real_pulses:0 +I (23434) example: new speed:399.000000 +I (23444) example: expect speed: 0.000000 real_pulses:0 +I (23444) example: new speed:399.000000 +I (23454) example: expect speed: 0.000000 real_pulses:0 +I (23454) example: new speed:399.000000 +I (23464) example: expect speed: 0.000000 real_pulses:0 +I (23464) example: new speed:399.000000 +I (23474) example: expect speed: 0.000000 real_pulses:0 +I (23474) example: new speed:399.000000 +I (23484) example: expect speed: 0.000000 real_pulses:0 +I (23484) example: new speed:399.000000 +I (23494) example: expect speed: 0.000000 real_pulses:0 +I (23494) example: new speed:399.000000 +I (23504) example: expect speed: 0.000000 real_pulses:0 +I (23504) example: new speed:399.000000 +I (23514) example: expect speed: 0.000000 real_pulses:0 +I (23514) example: new speed:399.000000 +I (23524) example: expect speed: 0.000000 real_pulses:0 +I (23524) example: new speed:399.000000 +I (23534) example: expect speed: 0.000000 real_pulses:0 +I (23534) example: new speed:399.000000 +I (23544) example: expect speed: 0.000000 real_pulses:0 +I (23544) example: new speed:399.000000 +I (23554) example: expect speed: 0.000000 real_pulses:0 +I (23554) example: new speed:399.000000 +I (23564) example: expect speed: 0.000000 real_pulses:0 +I (23564) example: new speed:399.000000 +I (23574) example: expect speed: 0.000000 real_pulses:0 +I (23574) example: new speed:399.000000 +I (23584) example: expect speed: 0.000000 real_pulses:0 +I (23584) example: new speed:399.000000 +I (23594) example: expect speed: 0.000000 real_pulses:0 +I (23594) example: new speed:399.000000 +I (23604) example: expect speed: 0.000000 real_pulses:0 +I (23604) example: new speed:399.000000 +I (23614) example: expect speed: 0.000000 real_pulses:0 +I (23614) example: new speed:399.000000 +I (23624) example: expect speed: 0.000000 real_pulses:0 +I (23624) example: new speed:399.000000 +I (23634) example: expect speed: 0.000000 real_pulses:0 +I (23634) example: new speed:399.000000 +I (23644) example: expect speed: 0.000000 real_pulses:0 +I (23644) example: new speed:399.000000 +I (23654) example: expect speed: 0.000000 real_pulses:0 +I (23654) example: new speed:399.000000 +I (23664) example: expect speed: 0.000000 real_pulses:0 +I (23664) example: new speed:399.000000 +I (23674) example: expect speed: 0.000000 real_pulses:0 +I (23674) example: new speed:399.000000 +I (23684) example: expect speed: 0.000000 real_pulses:0 +I (23684) example: new speed:399.000000 +I (23694) example: expect speed: 0.000000 real_pulses:0 +I (23694) example: new speed:399.000000 +I (23704) example: expect speed: 0.000000 real_pulses:0 +I (23704) example: new speed:399.000000 +I (23714) example: expect speed: 0.000000 real_pulses:0 +I (23714) example: new speed:399.000000 +I (23724) example: expect speed: 0.000000 real_pulses:0 +I (23724) example: new speed:399.000000 +I (23734) example: expect speed: 0.000000 real_pulses:0 +I (23734) example: new speed:399.000000 +I (23744) example: expect speed: 0.000000 real_pulses:0 +I (23744) example: new speed:399.000000 +I (23754) example: expect speed: 0.000000 real_pulses:0 +I (23754) example: new speed:399.000000 +I (23764) example: expect speed: 0.000000 real_pulses:0 +I (23764) example: new speed:399.000000 +I (23774) example: expect speed: 0.000000 real_pulses:0 +I (23774) example: new speed:399.000000 +I (23784) example: expect speed: 0.000000 real_pulses:0 +I (23784) example: new speed:399.000000 +I (23794) example: expect speed: 0.000000 real_pulses:0 +I (23794) example: new speed:399.000000 +I (23804) example: expect speed: 0.000000 real_pulses:0 +I (23804) example: new speed:399.000000 +I (23814) example: expect speed: 0.000000 real_pulses:0 +I (23814) example: new speed:399.000000 +I (23824) example: expect speed: 0.000000 real_pulses:0 +I (23824) example: new speed:399.000000 +I (23834) example: expect speed: 0.000000 real_pulses:0 +I (23834) example: new speed:399.000000 +I (23844) example: expect speed: 0.000000 real_pulses:0 +I (23844) example: new speed:399.000000 +I (23854) example: expect speed: 0.000000 real_pulses:0 +I (23854) example: new speed:399.000000 +I (23864) example: expect speed: 0.000000 real_pulses:0 +I (23864) example: new speed:399.000000 +I (23874) example: expect speed: 0.000000 real_pulses:0 +I (23874) example: new speed:399.000000 +I (23884) example: expect speed: 0.000000 real_pulses:0 +I (23884) example: new speed:399.000000 +I (23894) example: expect speed: 0.000000 real_pulses:0 +I (23894) example: new speed:399.000000 +I (23904) example: expect speed: 0.000000 real_pulses:0 +I (23904) example: new speed:399.000000 +I (23914) example: expect speed: 0.000000 real_pulses:0 +I (23914) example: new speed:399.000000 +I (23924) example: expect speed: 0.000000 real_pulses:0 +I (23924) example: new speed:399.000000 +I (23934) example: expect speed: 0.000000 real_pulses:0 +I (23934) example: new speed:399.000000 +I (23944) example: expect speed: 0.000000 real_pulses:0 +I (23944) example: new speed:399.000000 +I (23954) example: expect speed: 0.000000 real_pulses:0 +I (23954) example: new speed:399.000000 +I (23964) example: expect speed: 0.000000 real_pulses:0 +I (23964) example: new speed:399.000000 +I (23974) example: expect speed: 0.000000 real_pulses:0 +I (23974) example: new speed:399.000000 +I (23984) example: expect speed: 0.000000 real_pulses:0 +I (23984) example: new speed:399.000000 +I (23994) example: expect speed: 0.000000 real_pulses:0 +I (23994) example: new speed:399.000000 +I (24004) example: expect speed: 0.000000 real_pulses:0 +I (24014) example: new speed:399.000000 +I (24014) example: expect speed: 0.000000 real_pulses:0 +I (24014) example: new speed:399.000000 +I (24024) example: expect speed: 0.000000 real_pulses:0 +I (24024) example: new speed:399.000000 +I (24034) example: expect speed: 0.000000 real_pulses:0 +I (24034) example: new speed:399.000000 +I (24044) example: expect speed: 0.000000 real_pulses:0 +I (24044) example: new speed:399.000000 +I (24054) example: expect speed: 0.000000 real_pulses:0 +I (24054) example: new speed:399.000000 +I (24064) example: expect speed: 0.000000 real_pulses:0 +I (24064) example: new speed:399.000000 +I (24074) example: expect speed: 0.000000 real_pulses:0 +I (24074) example: new speed:399.000000 +I (24084) example: expect speed: 0.000000 real_pulses:0 +I (24084) example: new speed:399.000000 +I (24094) example: expect speed: 0.000000 real_pulses:0 +I (24094) example: new speed:399.000000 +I (24104) example: expect speed: 0.000000 real_pulses:0 +I (24104) example: new speed:399.000000 +I (24114) example: expect speed: 0.000000 real_pulses:0 +I (24114) example: new speed:399.000000 +I (24124) example: expect speed: 0.000000 real_pulses:0 +I (24124) example: new speed:399.000000 +I (24134) example: expect speed: 0.000000 real_pulses:0 +I (24134) example: new speed:399.000000 +I (24144) example: expect speed: 0.000000 real_pulses:0 +I (24144) example: new speed:399.000000 +I (24154) example: expect speed: 0.000000 real_pulses:0 +I (24154) example: new speed:399.000000 +I (24164) example: expect speed: 0.000000 real_pulses:0 +I (24164) example: new speed:399.000000 +I (24174) example: expect speed: 0.000000 real_pulses:0 +I (24174) example: new speed:399.000000 +I (24184) example: expect speed: 0.000000 real_pulses:0 +I (24184) example: new speed:399.000000 +I (24194) example: expect speed: 0.000000 real_pulses:0 +I (24194) example: new speed:399.000000 +I (24204) example: expect speed: 0.000000 real_pulses:0 +I (24204) example: new speed:399.000000 +I (24214) example: expect speed: 0.000000 real_pulses:0 +I (24214) example: new speed:399.000000 +I (24224) example: expect speed: 0.000000 real_pulses:0 +I (24224) example: new speed:399.000000 +I (24234) example: expect speed: 0.000000 real_pulses:0 +I (24234) example: new speed:399.000000 +I (24244) example: expect speed: 0.000000 real_pulses:0 +I (24244) example: new speed:399.000000 +I (24254) example: expect speed: 0.000000 real_pulses:0 +I (24254) example: new speed:399.000000 +I (24264) example: expect speed: 0.000000 real_pulses:0 +I (24264) example: new speed:399.000000 +I (24274) example: expect speed: 0.000000 real_pulses:0 +I (24274) example: new speed:399.000000 +I (24284) example: expect speed: 0.000000 real_pulses:0 +I (24284) example: new speed:399.000000 +I (24294) example: expect speed: 0.000000 real_pulses:0 +I (24294) example: new speed:399.000000 +I (24304) example: expect speed: 0.000000 real_pulses:0 +I (24304) example: new speed:399.000000 +I (24314) example: expect speed: 0.000000 real_pulses:0 +I (24314) example: new speed:399.000000 +I (24324) example: expect speed: 0.000000 real_pulses:0 +I (24324) example: new speed:399.000000 +I (24334) example: expect speed: 0.000000 real_pulses:0 +I (24334) example: new speed:399.000000 +I (24344) example: expect speed: 0.000000 real_pulses:0 +I (24344) example: new speed:399.000000 +I (24354) example: expect speed: 0.000000 real_pulses:0 +I (24354) example: new speed:399.000000 +I (24364) example: expect speed: 0.000000 real_pulses:0 +I (24364) example: new speed:399.000000 +I (24374) example: expect speed: 0.000000 real_pulses:0 +I (24374) example: new speed:399.000000 +I (24384) example: expect speed: 0.000000 real_pulses:0 +I (24384) example: new speed:399.000000 +I (24394) example: expect speed: 0.000000 real_pulses:0 +I (24394) example: new speed:399.000000 +I (24404) example: expect speed: 0.000000 real_pulses:0 +I (24404) example: new speed:399.000000 +I (24414) example: expect speed: 0.000000 real_pulses:0 +I (24414) example: new speed:399.000000 +I (24424) example: expect speed: 0.000000 real_pulses:0 +I (24424) example: new speed:399.000000 +I (24434) example: expect speed: 0.000000 real_pulses:0 +I (24434) example: new speed:399.000000 +I (24444) example: expect speed: 0.000000 real_pulses:0 +I (24444) example: new speed:399.000000 +I (24454) example: expect speed: 0.000000 real_pulses:0 +I (24454) example: new speed:399.000000 +I (24464) example: expect speed: 0.000000 real_pulses:0 +I (24464) example: new speed:399.000000 +I (24474) example: expect speed: 0.000000 real_pulses:0 +I (24474) example: new speed:399.000000 +I (24484) example: expect speed: 0.000000 real_pulses:0 +I (24484) example: new speed:399.000000 +I (24494) example: expect speed: 0.000000 real_pulses:0 +I (24494) example: new speed:399.000000 +I (24504) example: expect speed: 0.000000 real_pulses:0 +I (24504) example: new speed:399.000000 +I (24514) example: expect speed: 0.000000 real_pulses:0 +I (24514) example: new speed:399.000000 +I (24524) example: expect speed: 0.000000 real_pulses:0 +I (24524) example: new speed:399.000000 +I (24534) example: expect speed: 0.000000 real_pulses:0 +I (24534) example: new speed:399.000000 +I (24544) example: expect speed: 0.000000 real_pulses:0 +I (24544) example: new speed:399.000000 +I (24554) example: expect speed: 0.000000 real_pulses:0 +I (24554) example: new speed:399.000000 +I (24564) example: expect speed: 0.000000 real_pulses:0 +I (24564) example: new speed:399.000000 +I (24574) example: expect speed: 0.000000 real_pulses:0 +I (24574) example: new speed:399.000000 +I (24584) example: expect speed: 0.000000 real_pulses:0 +I (24584) example: new speed:399.000000 +I (24594) example: expect speed: 0.000000 real_pulses:0 +I (24594) example: new speed:399.000000 +I (24604) example: expect speed: 0.000000 real_pulses:0 +I (24604) example: new speed:399.000000 +I (24614) example: expect speed: 0.000000 real_pulses:0 +I (24614) example: new speed:399.000000 +I (24624) example: expect speed: 0.000000 real_pulses:0 +I (24624) example: new speed:399.000000 +I (24634) example: expect speed: 0.000000 real_pulses:0 +I (24634) example: new speed:399.000000 +I (24644) example: expect speed: 0.000000 real_pulses:0 +I (24644) example: new speed:399.000000 +I (24654) example: expect speed: 0.000000 real_pulses:0 +I (24654) example: new speed:399.000000 +I (24664) example: expect speed: 0.000000 real_pulses:0 +I (24664) example: new speed:399.000000 +I (24674) example: expect speed: 0.000000 real_pulses:0 +I (24674) example: new speed:399.000000 +I (24684) example: expect speed: 0.000000 real_pulses:0 +I (24684) example: new speed:399.000000 +I (24694) example: expect speed: 0.000000 real_pulses:0 +I (24694) example: new speed:399.000000 +I (24704) example: expect speed: 0.000000 real_pulses:0 +I (24704) example: new speed:399.000000 +I (24714) example: expect speed: 0.000000 real_pulses:0 +I (24714) example: new speed:399.000000 +I (24724) example: expect speed: 0.000000 real_pulses:0 +I (24724) example: new speed:399.000000 +I (24734) example: expect speed: 0.000000 real_pulses:0 +I (24734) example: new speed:399.000000 +I (24744) example: expect speed: 0.000000 real_pulses:0 +I (24744) example: new speed:399.000000 +I (24754) example: expect speed: 0.000000 real_pulses:0 +I (24754) example: new speed:399.000000 +I (24764) example: expect speed: 0.000000 real_pulses:0 +I (24764) example: new speed:399.000000 +I (24774) example: expect speed: 0.000000 real_pulses:0 +I (24774) example: new speed:399.000000 +I (24784) example: expect speed: 0.000000 real_pulses:0 +I (24784) example: new speed:399.000000 +I (24794) example: expect speed: 0.000000 real_pulses:0 +I (24794) example: new speed:399.000000 +I (24804) example: expect speed: 0.000000 real_pulses:0 +I (24804) example: new speed:399.000000 +I (24814) example: expect speed: 0.000000 real_pulses:0 +I (24814) example: new speed:399.000000 +I (24824) example: expect speed: 0.000000 real_pulses:0 +I (24824) example: new speed:399.000000 +I (24834) example: expect speed: 0.000000 real_pulses:0 +I (24834) example: new speed:399.000000 +I (24844) example: expect speed: 0.000000 real_pulses:0 +I (24844) example: new speed:399.000000 +I (24854) example: expect speed: 0.000000 real_pulses:0 +I (24854) example: new speed:399.000000 +I (24864) example: expect speed: 0.000000 real_pulses:0 +I (24864) example: new speed:399.000000 +I (24874) example: expect speed: 0.000000 real_pulses:0 +I (24874) example: new speed:399.000000 +I (24884) example: expect speed: 0.000000 real_pulses:0 +I (24884) example: new speed:399.000000 +I (24894) example: expect speed: 0.000000 real_pulses:0 +I (24894) example: new speed:399.000000 +I (24904) example: expect speed: 0.000000 real_pulses:0 +I (24904) example: new speed:399.000000 +I (24914) example: expect speed: 0.000000 real_pulses:0 +I (24914) example: new speed:399.000000 +I (24924) example: expect speed: 0.000000 real_pulses:0 +I (24924) example: new speed:399.000000 +I (24934) example: expect speed: 0.000000 real_pulses:0 +I (24944) example: new speed:399.000000 +I (24944) example: expect speed: 0.000000 real_pulses:0 +I (24944) example: new speed:399.000000 +I (24954) example: expect speed: 0.000000 real_pulses:0 +I (24954) example: new speed:399.000000 +I (24964) example: expect speed: 0.000000 real_pulses:0 +I (24964) example: new speed:399.000000 +I (24974) example: expect speed: 0.000000 real_pulses:0 +I (24974) example: new speed:399.000000 +I (24984) example: expect speed: 0.000000 real_pulses:0 +I (24984) example: new speed:399.000000 +I (24994) example: expect speed: 0.000000 real_pulses:0 +I (24994) example: new speed:399.000000 +I (25004) example: expect speed: 0.000000 real_pulses:0 +I (25004) example: new speed:399.000000 +I (25014) example: expect speed: 0.000000 real_pulses:0 +I (25014) example: new speed:399.000000 +I (25024) example: expect speed: 0.000000 real_pulses:0 +I (25024) example: new speed:399.000000 +I (25034) example: expect speed: 0.000000 real_pulses:0 +I (25034) example: new speed:399.000000 +I (25044) example: expect speed: 0.000000 real_pulses:0 +I (25044) example: new speed:399.000000 +I (25054) example: expect speed: 0.000000 real_pulses:0 +I (25054) example: new speed:399.000000 +I (25064) example: expect speed: 0.000000 real_pulses:0 +I (25064) example: new speed:399.000000 +I (25074) example: expect speed: 0.000000 real_pulses:0 +I (25074) example: new speed:399.000000 +I (25084) example: expect speed: 0.000000 real_pulses:0 +I (25084) example: new speed:399.000000 +I (25094) example: expect speed: 0.000000 real_pulses:0 +I (25094) example: new speed:399.000000 +I (25104) example: expect speed: 0.000000 real_pulses:0 +I (25104) example: new speed:399.000000 +I (25114) example: expect speed: 0.000000 real_pulses:0 +I (25114) example: new speed:399.000000 +I (25124) example: expect speed: 0.000000 real_pulses:0 +I (25124) example: new speed:399.000000 +I (25134) example: expect speed: 0.000000 real_pulses:0 +I (25134) example: new speed:399.000000 +I (25144) example: expect speed: 0.000000 real_pulses:0 +I (25144) example: new speed:399.000000 +I (25154) example: expect speed: 0.000000 real_pulses:0 +I (25154) example: new speed:399.000000 +I (25164) example: expect speed: 0.000000 real_pulses:0 +I (25164) example: new speed:399.000000 +I (25174) example: expect speed: 0.000000 real_pulses:0 +I (25174) example: new speed:399.000000 +I (25184) example: expect speed: 0.000000 real_pulses:0 +I (25184) example: new speed:399.000000 +I (25194) example: expect speed: 0.000000 real_pulses:0 +I (25194) example: new speed:399.000000 +I (25204) example: expect speed: 0.000000 real_pulses:0 +I (25204) example: new speed:399.000000 +I (25214) example: expect speed: 0.000000 real_pulses:0 +I (25214) example: new speed:399.000000 +I (25224) example: expect speed: 0.000000 real_pulses:0 +I (25224) example: new speed:399.000000 +I (25234) example: expect speed: 0.000000 real_pulses:0 +I (25234) example: new speed:399.000000 +I (25244) example: expect speed: 0.000000 real_pulses:0 +I (25244) example: new speed:399.000000 +I (25254) example: expect speed: 0.000000 real_pulses:0 +I (25254) example: new speed:399.000000 +I (25264) example: expect speed: 0.000000 real_pulses:0 +I (25264) example: new speed:399.000000 +I (25274) example: expect speed: 0.000000 real_pulses:0 +I (25274) example: new speed:399.000000 +I (25284) example: expect speed: 0.000000 real_pulses:0 +I (25284) example: new speed:399.000000 +I (25294) example: expect speed: 0.000000 real_pulses:0 +I (25294) example: new speed:399.000000 +I (25304) example: expect speed: 0.000000 real_pulses:0 +I (25304) example: new speed:399.000000 +I (25314) example: expect speed: 0.000000 real_pulses:0 +I (25314) example: new speed:399.000000 +I (25324) example: expect speed: 0.000000 real_pulses:0 +I (25324) example: new speed:399.000000 +I (25334) example: expect speed: 0.000000 real_pulses:0 +I (25334) example: new speed:399.000000 +I (25344) example: expect speed: 0.000000 real_pulses:0 +I (25344) example: new speed:399.000000 +I (25354) example: expect speed: 0.000000 real_pulses:0 +I (25354) example: new speed:399.000000 +I (25364) example: expect speed: 0.000000 real_pulses:0 +I (25364) example: new speed:399.000000 +I (25374) example: expect speed: 0.000000 real_pulses:0 +I (25374) example: new speed:399.000000 +I (25384) example: expect speed: 0.000000 real_pulses:0 +I (25384) example: new speed:399.000000 +I (25394) example: expect speed: 0.000000 real_pulses:0 +I (25394) example: new speed:399.000000 +I (25404) example: expect speed: 0.000000 real_pulses:0 +I (25404) example: new speed:399.000000 +I (25414) example: expect speed: 0.000000 real_pulses:0 +I (25414) example: new speed:399.000000 +I (25424) example: expect speed: 0.000000 real_pulses:0 +I (25424) example: new speed:399.000000 +I (25434) example: expect speed: 0.000000 real_pulses:0 +I (25434) example: new speed:399.000000 +I (25444) example: expect speed: 0.000000 real_pulses:0 +I (25444) example: new speed:399.000000 +I (25454) example: expect speed: 0.000000 real_pulses:0 +I (25454) example: new speed:399.000000 +I (25464) example: expect speed: 0.000000 real_pulses:0 +I (25464) example: new speed:399.000000 +I (25474) example: expect speed: 0.000000 real_pulses:0 +I (25474) example: new speed:399.000000 +I (25484) example: expect speed: 0.000000 real_pulses:0 +I (25484) example: new speed:399.000000 +I (25494) example: expect speed: 0.000000 real_pulses:0 +I (25494) example: new speed:399.000000 +I (25504) example: expect speed: 0.000000 real_pulses:0 +I (25504) example: new speed:399.000000 +I (25514) example: expect speed: 0.000000 real_pulses:0 +I (25514) example: new speed:399.000000 +I (25524) example: expect speed: 0.000000 real_pulses:0 +I (25524) example: new speed:399.000000 +I (25534) example: expect speed: 0.000000 real_pulses:0 +I (25534) example: new speed:399.000000 +I (25544) example: expect speed: 0.000000 real_pulses:0 +I (25544) example: new speed:399.000000 +I (25554) example: expect speed: 0.000000 real_pulses:0 +I (25554) example: new speed:399.000000 +I (25564) example: expect speed: 0.000000 real_pulses:0 +I (25564) example: new speed:399.000000 +I (25574) example: expect speed: 0.000000 real_pulses:0 +I (25574) example: new speed:399.000000 +I (25584) example: expect speed: 0.000000 real_pulses:0 +I (25584) example: new speed:399.000000 +I (25594) example: expect speed: 0.000000 real_pulses:0 +I (25594) example: new speed:399.000000 +I (25604) example: expect speed: 0.000000 real_pulses:0 +I (25604) example: new speed:399.000000 +I (25614) example: expect speed: 0.000000 real_pulses:0 +I (25614) example: new speed:399.000000 +I (25624) example: expect speed: 0.000000 real_pulses:0 +I (25624) example: new speed:399.000000 +I (25634) example: expect speed: 0.000000 real_pulses:0 +I (25634) example: new speed:399.000000 +I (25644) example: expect speed: 0.000000 real_pulses:0 +I (25644) example: new speed:399.000000 +I (25654) example: expect speed: 0.000000 real_pulses:0 +I (25654) example: new speed:399.000000 +I (25664) example: expect speed: 0.000000 real_pulses:0 +I (25664) example: new speed:399.000000 +I (25674) example: expect speed: 0.000000 real_pulses:0 +I (25674) example: new speed:399.000000 +I (25684) example: expect speed: 0.000000 real_pulses:0 +I (25684) example: new speed:399.000000 +I (25694) example: expect speed: 0.000000 real_pulses:0 +I (25694) example: new speed:399.000000 +I (25704) example: expect speed: 0.000000 real_pulses:0 +I (25704) example: new speed:399.000000 +I (25714) example: expect speed: 0.000000 real_pulses:0 +I (25714) example: new speed:399.000000 +I (25724) example: expect speed: 0.000000 real_pulses:0 +I (25724) example: new speed:399.000000 +I (25734) example: expect speed: 0.000000 real_pulses:0 +I (25734) example: new speed:399.000000 +I (25744) example: expect speed: 0.000000 real_pulses:0 +I (25744) example: new speed:399.000000 +I (25754) example: expect speed: 0.000000 real_pulses:0 +I (25754) example: new speed:399.000000 +I (25764) example: expect speed: 0.000000 real_pulses:0 +I (25764) example: new speed:399.000000 +I (25774) example: expect speed: 0.000000 real_pulses:0 +I (25774) example: new speed:399.000000 +I (25784) example: expect speed: 0.000000 real_pulses:0 +I (25784) example: new speed:399.000000 +I (25794) example: expect speed: 0.000000 real_pulses:0 +I (25794) example: new speed:399.000000 +I (25804) example: expect speed: 0.000000 real_pulses:0 +I (25804) example: new speed:399.000000 +I (25814) example: expect speed: 0.000000 real_pulses:0 +I (25814) example: new speed:399.000000 +I (25824) example: expect speed: 0.000000 real_pulses:0 +I (25824) example: new speed:399.000000 +I (25834) example: expect speed: 0.000000 real_pulses:0 +I (25834) example: new speed:399.000000 +I (25844) example: expect speed: 0.000000 real_pulses:0 +I (25844) example: new speed:399.000000 +I (25854) example: expect speed: 0.000000 real_pulses:0 +I (25854) example: new speed:399.000000 +I (25864) example: expect speed: 0.000000 real_pulses:0 +I (25864) example: new speed:399.000000 +I (25874) example: expect speed: 0.000000 real_pulses:0 +I (25874) example: new speed:399.000000 +I (25884) example: expect speed: 0.000000 real_pulses:0 +I (25884) example: new speed:399.000000 +I (25894) example: expect speed: 0.000000 real_pulses:0 +I (25894) example: new speed:399.000000 +I (25904) example: expect speed: 0.000000 real_pulses:0 +I (25904) example: new speed:399.000000 +I (25914) example: expect speed: 0.000000 real_pulses:0 +I (25914) example: new speed:399.000000 +I (25924) example: expect speed: 0.000000 real_pulses:0 +I (25924) example: new speed:399.000000 +I (25934) example: expect speed: 0.000000 real_pulses:0 +I (25934) example: new speed:399.000000 +I (25944) example: expect speed: 0.000000 real_pulses:0 +I (25944) example: new speed:399.000000 +I (25954) example: expect speed: 0.000000 real_pulses:0 +I (25954) example: new speed:399.000000 +I (25964) example: expect speed: 0.000000 real_pulses:0 +I (25964) example: new speed:399.000000 +I (25974) example: expect speed: 0.000000 real_pulses:0 +I (25974) example: new speed:399.000000 +I (25984) example: expect speed: 0.000000 real_pulses:0 +I (25984) example: new speed:399.000000 +I (25994) example: expect speed: 0.000000 real_pulses:0 +I (25994) example: new speed:399.000000 +I (26004) example: expect speed: 0.000000 real_pulses:0 +I (26004) example: new speed:399.000000 +I (26014) example: expect speed: 0.000000 real_pulses:0 +I (26014) example: new speed:399.000000 +I (26024) example: expect speed: 0.000000 real_pulses:0 +I (26024) example: new speed:399.000000 +I (26034) example: expect speed: 0.000000 real_pulses:0 +I (26034) example: new speed:399.000000 +I (26044) example: expect speed: 0.000000 real_pulses:0 +I (26044) example: new speed:399.000000 +I (26054) example: expect speed: 0.000000 real_pulses:0 +I (26064) example: new speed:399.000000 +I (26064) example: expect speed: 0.000000 real_pulses:0 +I (26064) example: new speed:399.000000 +I (26074) example: expect speed: 0.000000 real_pulses:0 +I (26074) example: new speed:399.000000 +I (26084) example: expect speed: 0.000000 real_pulses:0 +I (26084) example: new speed:399.000000 +I (26094) example: expect speed: 0.000000 real_pulses:0 +I (26094) example: new speed:399.000000 +I (26104) example: expect speed: 0.000000 real_pulses:0 +I (26104) example: new speed:399.000000 +I (26114) example: expect speed: 0.000000 real_pulses:0 +I (26114) example: new speed:399.000000 +I (26124) example: expect speed: 0.000000 real_pulses:0 +I (26124) example: new speed:399.000000 +I (26134) example: expect speed: 0.000000 real_pulses:0 +I (26134) example: new speed:399.000000 +I (26144) example: expect speed: 0.000000 real_pulses:0 +I (26144) example: new speed:399.000000 +I (26154) example: expect speed: 0.000000 real_pulses:0 +I (26154) example: new speed:399.000000 +I (26164) example: expect speed: 0.000000 real_pulses:0 +I (26164) example: new speed:399.000000 +I (26174) example: expect speed: 0.000000 real_pulses:0 +I (26174) example: new speed:399.000000 +I (26184) example: expect speed: 0.000000 real_pulses:0 +I (26184) example: new speed:399.000000 +I (26194) example: expect speed: 0.000000 real_pulses:0 +I (26194) example: new speed:399.000000 +I (26204) example: expect speed: 0.000000 real_pulses:0 +I (26204) example: new speed:399.000000 +I (26214) example: expect speed: 0.000000 real_pulses:0 +I (26214) example: new speed:399.000000 +I (26224) example: expect speed: 0.000000 real_pulses:0 +I (26224) example: new speed:399.000000 +I (26234) example: expect speed: 0.000000 real_pulses:0 +I (26234) example: new speed:399.000000 +I (26244) example: expect speed: 0.000000 real_pulses:0 +I (26244) example: new speed:399.000000 +I (26254) example: expect speed: 0.000000 real_pulses:0 +I (26254) example: new speed:399.000000 +I (26264) example: expect speed: 0.000000 real_pulses:0 +I (26264) example: new speed:399.000000 +I (26274) example: expect speed: 0.000000 real_pulses:0 +I (26274) example: new speed:399.000000 +I (26284) example: expect speed: 0.000000 real_pulses:0 +I (26284) example: new speed:399.000000 +I (26294) example: expect speed: 0.000000 real_pulses:0 +I (26294) example: new speed:399.000000 +I (26304) example: expect speed: 0.000000 real_pulses:0 +I (26304) example: new speed:399.000000 +I (26314) example: expect speed: 0.000000 real_pulses:0 +I (26314) example: new speed:399.000000 +I (26324) example: expect speed: 0.000000 real_pulses:0 +I (26324) example: new speed:399.000000 +I (26334) example: expect speed: 0.000000 real_pulses:0 +I (26334) example: new speed:399.000000 +I (26344) example: expect speed: 0.000000 real_pulses:0 +I (26344) example: new speed:399.000000 +I (26354) example: expect speed: 0.000000 real_pulses:0 +I (26354) example: new speed:399.000000 +I (26364) example: expect speed: 0.000000 real_pulses:0 +I (26364) example: new speed:399.000000 +I (26374) example: expect speed: 0.000000 real_pulses:0 +I (26374) example: new speed:399.000000 +I (26384) example: expect speed: 0.000000 real_pulses:0 +I (26384) example: new speed:399.000000 +I (26394) example: expect speed: 0.000000 real_pulses:0 +I (26394) example: new speed:399.000000 +I (26404) example: expect speed: 0.000000 real_pulses:0 +I (26404) example: new speed:399.000000 +I (26414) example: expect speed: 0.000000 real_pulses:0 +I (26414) example: new speed:399.000000 +I (26424) example: expect speed: 0.000000 real_pulses:0 +I (26424) example: new speed:399.000000 +I (26434) example: expect speed: 0.000000 real_pulses:0 +I (26434) example: new speed:399.000000 +I (26444) example: expect speed: 0.000000 real_pulses:0 +I (26444) example: new speed:399.000000 +I (26454) example: expect speed: 0.000000 real_pulses:0 +I (26454) example: new speed:399.000000 +I (26464) example: expect speed: 0.000000 real_pulses:0 +I (26464) example: new speed:399.000000 +I (26474) example: expect speed: 0.000000 real_pulses:0 +I (26474) example: new speed:399.000000 +I (26484) example: expect speed: 0.000000 real_pulses:0 +I (26484) example: new speed:399.000000 +I (26494) example: expect speed: 0.000000 real_pulses:0 +I (26494) example: new speed:399.000000 +I (26504) example: expect speed: 0.000000 real_pulses:0 +I (26504) example: new speed:399.000000 +I (26514) example: expect speed: 0.000000 real_pulses:0 +I (26514) example: new speed:399.000000 +I (26524) example: expect speed: 0.000000 real_pulses:0 +I (26524) example: new speed:399.000000 +I (26534) example: expect speed: 0.000000 real_pulses:0 +I (26534) example: new speed:399.000000 +I (26544) example: expect speed: 0.000000 real_pulses:0 +I (26544) example: new speed:399.000000 +I (26554) example: expect speed: 0.000000 real_pulses:0 +I (26554) example: new speed:399.000000 +I (26564) example: expect speed: 0.000000 real_pulses:0 +I (26564) example: new speed:399.000000 +I (26574) example: expect speed: 0.000000 real_pulses:0 +I (26574) example: new speed:399.000000 +I (26584) example: expect speed: 0.000000 real_pulses:0 +I (26584) example: new speed:399.000000 +I (26594) example: expect speed: 0.000000 real_pulses:0 +I (26594) example: new speed:399.000000 +I (26604) example: expect speed: 0.000000 real_pulses:0 +I (26604) example: new speed:399.000000 +I (26614) example: expect speed: 0.000000 real_pulses:0 +I (26614) example: new speed:399.000000 +I (26624) example: expect speed: 0.000000 real_pulses:0 +I (26624) example: new speed:399.000000 +I (26634) example: expect speed: 0.000000 real_pulses:0 +I (26634) example: new speed:399.000000 +I (26644) example: expect speed: 0.000000 real_pulses:0 +I (26644) example: new speed:399.000000 +I (26654) example: expect speed: 0.000000 real_pulses:0 +I (26654) example: new speed:399.000000 +I (26664) example: expect speed: 0.000000 real_pulses:0 +I (26664) example: new speed:399.000000 +I (26674) example: expect speed: 0.000000 real_pulses:0 +I (26674) example: new speed:399.000000 +I (26684) example: expect speed: 0.000000 real_pulses:0 +I (26684) example: new speed:399.000000 +I (26694) example: expect speed: 0.000000 real_pulses:0 +I (26694) example: new speed:399.000000 +I (26704) example: expect speed: 0.000000 real_pulses:0 +I (26704) example: new speed:399.000000 +I (26714) example: expect speed: 0.000000 real_pulses:0 +I (26714) example: new speed:399.000000 +I (26724) example: expect speed: 0.000000 real_pulses:0 +I (26724) example: new speed:399.000000 +I (26734) example: expect speed: 0.000000 real_pulses:0 +I (26734) example: new speed:399.000000 +I (26744) example: expect speed: 0.000000 real_pulses:0 +I (26744) example: new speed:399.000000 +I (26754) example: expect speed: 0.000000 real_pulses:0 +I (26754) example: new speed:399.000000 +I (26764) example: expect speed: 0.000000 real_pulses:0 +I (26764) example: new speed:399.000000 +I (26774) example: expect speed: 0.000000 real_pulses:0 +I (26774) example: new speed:399.000000 +I (26784) example: expect speed: 0.000000 real_pulses:0 +I (26784) example: new speed:399.000000 +I (26794) example: expect speed: 0.000000 real_pulses:0 +I (26794) example: new speed:399.000000 +I (26804) example: expect speed: 0.000000 real_pulses:0 +I (26804) example: new speed:399.000000 +I (26814) example: expect speed: 0.000000 real_pulses:0 +I (26814) example: new speed:399.000000 +I (26824) example: expect speed: 0.000000 real_pulses:0 +I (26824) example: new speed:399.000000 +I (26834) example: expect speed: 0.000000 real_pulses:0 +I (26834) example: new speed:399.000000 +I (26844) example: expect speed: 0.000000 real_pulses:0 +I (26844) example: new speed:399.000000 +I (26854) example: expect speed: 0.000000 real_pulses:0 +I (26854) example: new speed:399.000000 +I (26864) example: expect speed: 0.000000 real_pulses:0 +I (26864) example: new speed:399.000000 +I (26874) example: expect speed: 0.000000 real_pulses:0 +I (26874) example: new speed:399.000000 +I (26884) example: expect speed: 0.000000 real_pulses:0 +I (26884) example: new speed:399.000000 +I (26894) example: expect speed: 0.000000 real_pulses:0 +I (26894) example: new speed:399.000000 +I (26904) example: expect speed: 0.000000 real_pulses:0 +I (26904) example: new speed:399.000000 +I (26914) example: expect speed: 0.000000 real_pulses:0 +I (26914) example: new speed:399.000000 +I (26924) example: expect speed: 0.000000 real_pulses:0 +I (26924) example: new speed:399.000000 +I (26934) example: expect speed: 0.000000 real_pulses:0 +I (26934) example: new speed:399.000000 +I (26944) example: expect speed: 0.000000 real_pulses:0 +I (26944) example: new speed:399.000000 +I (26954) example: expect speed: 0.000000 real_pulses:0 +I (26954) example: new speed:399.000000 +I (26964) example: expect speed: 0.000000 real_pulses:0 +I (26964) example: new speed:399.000000 +I (26974) example: expect speed: 0.000000 real_pulses:0 +I (26974) example: new speed:399.000000 +I (26984) example: expect speed: 0.000000 real_pulses:0 +I (26984) example: new speed:399.000000 +I (26994) example: expect speed: 0.000000 real_pulses:0 +I (26994) example: new speed:399.000000 +I (27004) example: expect speed: 0.000000 real_pulses:0 +I (27004) example: new speed:399.000000 +I (27014) example: expect speed: 0.000000 real_pulses:0 +I (27014) example: new speed:399.000000 +I (27024) example: expect speed: 0.000000 real_pulses:0 +I (27024) example: new speed:399.000000 +I (27034) example: expect speed: 0.000000 real_pulses:0 +I (27034) example: new speed:399.000000 +I (27044) example: expect speed: 0.000000 real_pulses:0 +I (27044) example: new speed:399.000000 +I (27054) example: expect speed: 0.000000 real_pulses:0 +I (27054) example: new speed:399.000000 +I (27064) example: expect speed: 0.000000 real_pulses:0 +I (27064) example: new speed:399.000000 +I (27074) example: expect speed: 0.000000 real_pulses:0 +I (27074) example: new speed:399.000000 +I (27084) example: expect speed: 0.000000 real_pulses:0 +I (27084) example: new speed:399.000000 +I (27094) example: expect speed: 0.000000 real_pulses:0 +I (27094) example: new speed:399.000000 +I (27104) example: expect speed: 0.000000 real_pulses:0 +I (27104) example: new speed:399.000000 +I (27114) example: expect speed: 0.000000 real_pulses:0 +I (27114) example: new speed:399.000000 +I (27124) example: expect speed: 0.000000 real_pulses:0 +I (27124) example: new speed:399.000000 +I (27134) example: expect speed: 0.000000 real_pulses:0 +I (27134) example: new speed:399.000000 +I (27144) example: expect speed: 0.000000 real_pulses:0 +I (27144) example: new speed:399.000000 +I (27154) example: expect speed: 0.000000 real_pulses:0 +I (27154) example: new speed:399.000000 +I (27164) example: expect speed: 0.000000 real_pulses:0 +I (27164) example: new speed:399.000000 +I (27174) example: expect speed: 0.000000 real_pulses:0 +I (27174) example: new speed:399.000000 +I (27184) example: expect speed: 0.000000 real_pulses:0 +I (27194) example: new speed:399.000000 +I (27194) example: expect speed: 0.000000 real_pulses:0 +I (27194) example: new speed:399.000000 +I (27204) example: expect speed: 0.000000 real_pulses:0 +I (27204) example: new speed:399.000000 +I (27214) example: expect speed: 0.000000 real_pulses:0 +I (27214) example: new speed:399.000000 +I (27224) example: expect speed: 0.000000 real_pulses:0 +I (27224) example: new speed:399.000000 +I (27234) example: expect speed: 0.000000 real_pulses:0 +I (27234) example: new speed:399.000000 +I (27244) example: expect speed: 0.000000 real_pulses:0 +I (27244) example: new speed:399.000000 +I (27254) example: expect speed: 0.000000 real_pulses:0 +I (27254) example: new speed:399.000000 +I (27264) example: expect speed: 0.000000 real_pulses:0 +I (27264) example: new speed:399.000000 +I (27274) example: expect speed: 0.000000 real_pulses:0 +I (27274) example: new speed:399.000000 +I (27284) example: expect speed: 0.000000 real_pulses:0 +I (27284) example: new speed:399.000000 +I (27294) example: expect speed: 0.000000 real_pulses:0 +I (27294) example: new speed:399.000000 +I (27304) example: expect speed: 0.000000 real_pulses:0 +I (27304) example: new speed:399.000000 +I (27314) example: expect speed: 0.000000 real_pulses:0 +I (27314) example: new speed:399.000000 +I (27324) example: expect speed: 0.000000 real_pulses:0 +I (27324) example: new speed:399.000000 +I (27334) example: expect speed: 0.000000 real_pulses:0 +I (27334) example: new speed:399.000000 +I (27344) example: expect speed: 0.000000 real_pulses:0 +I (27344) example: new speed:399.000000 +I (27354) example: expect speed: 0.000000 real_pulses:0 +I (27354) example: new speed:399.000000 +I (27364) example: expect speed: 0.000000 real_pulses:0 +I (27364) example: new speed:399.000000 +I (27374) example: expect speed: 0.000000 real_pulses:0 +I (27374) example: new speed:399.000000 +I (27384) example: expect speed: 0.000000 real_pulses:0 +I (27384) example: new speed:399.000000 +I (27394) example: expect speed: 0.000000 real_pulses:0 +I (27394) example: new speed:399.000000 +I (27404) example: expect speed: 0.000000 real_pulses:0 +I (27404) example: new speed:399.000000 +I (27414) example: expect speed: 0.000000 real_pulses:0 +I (27414) example: new speed:399.000000 +I (27424) example: expect speed: 0.000000 real_pulses:0 +I (27424) example: new speed:399.000000 +I (27434) example: expect speed: 0.000000 real_pulses:0 +I (27434) example: new speed:399.000000 +I (27444) example: expect speed: 0.000000 real_pulses:0 +I (27444) example: new speed:399.000000 +I (27454) example: expect speed: 0.000000 real_pulses:0 +I (27454) example: new speed:399.000000 +I (27464) example: expect speed: 0.000000 real_pulses:0 +I (27464) example: new speed:399.000000 +I (27474) example: expect speed: 0.000000 real_pulses:0 +I (27474) example: new speed:399.000000 +I (27484) example: expect speed: 0.000000 real_pulses:0 +I (27484) example: new speed:399.000000 +I (27494) example: expect speed: 0.000000 real_pulses:0 +I (27494) example: new speed:399.000000 +I (27504) example: expect speed: 0.000000 real_pulses:0 +I (27504) example: new speed:399.000000 +I (27514) example: expect speed: 0.000000 real_pulses:0 +I (27514) example: new speed:399.000000 +I (27524) example: expect speed: 0.000000 real_pulses:0 +I (27524) example: new speed:399.000000 +I (27534) example: expect speed: 0.000000 real_pulses:0 +I (27534) example: new speed:399.000000 +I (27544) example: expect speed: 0.000000 real_pulses:0 +I (27544) example: new speed:399.000000 +I (27554) example: expect speed: 0.000000 real_pulses:0 +I (27554) example: new speed:399.000000 +I (27564) example: expect speed: 0.000000 real_pulses:0 +I (27564) example: new speed:399.000000 +I (27574) example: expect speed: 0.000000 real_pulses:0 +I (27574) example: new speed:399.000000 +I (27584) example: expect speed: 0.000000 real_pulses:0 +I (27584) example: new speed:399.000000 +I (27594) example: expect speed: 0.000000 real_pulses:0 +I (27594) example: new speed:399.000000 +I (27604) example: expect speed: 0.000000 real_pulses:0 +I (27604) example: new speed:399.000000 +I (27614) example: expect speed: 0.000000 real_pulses:0 +I (27614) example: new speed:399.000000 +I (27624) example: expect speed: 0.000000 real_pulses:0 +I (27624) example: new speed:399.000000 +I (27634) example: expect speed: 0.000000 real_pulses:0 +I (27634) example: new speed:399.000000 +I (27644) example: expect speed: 0.000000 real_pulses:0 +I (27644) example: new speed:399.000000 +I (27654) example: expect speed: 0.000000 real_pulses:0 +I (27654) example: new speed:399.000000 +I (27664) example: expect speed: 0.000000 real_pulses:0 +I (27664) example: new speed:399.000000 +I (27674) example: expect speed: 0.000000 real_pulses:0 +I (27674) example: new speed:399.000000 +I (27684) example: expect speed: 0.000000 real_pulses:0 +I (27684) example: new speed:399.000000 +I (27694) example: expect speed: 0.000000 real_pulses:0 +I (27704) example: new speed:399.000000 +I (27704) example: expect speed: 0.000000 real_pulses:0 +I (27704) example: new speed:399.000000 +I (27714) example: expect speed: 0.000000 real_pulses:0 +I (27714) example: new speed:399.000000 +I (27724) example: expect speed: 0.000000 real_pulses:0 +I (27724) example: new speed:399.000000 +I (27734) example: expect speed: 0.000000 real_pulses:0 +I (27734) example: new speed:399.000000 +I (27744) example: expect speed: 0.000000 real_pulses:0 +I (27744) example: new speed:399.000000 +I (27754) example: expect speed: 0.000000 real_pulses:0 +I (27754) example: new speed:399.000000 +I (27764) example: expect speed: 0.000000 real_pulses:0 +I (27764) example: new speed:399.000000 +I (27774) example: expect speed: 0.000000 real_pulses:0 +I (27774) example: new speed:399.000000 +I (27784) example: expect speed: 0.000000 real_pulses:0 +I (27784) example: new speed:399.000000 +I (27794) example: expect speed: 0.000000 real_pulses:0 +I (27794) example: new speed:399.000000 +I (27804) example: expect speed: 0.000000 real_pulses:0 +I (27804) example: new speed:399.000000 +I (27814) example: expect speed: 0.000000 real_pulses:0 +I (27814) example: new speed:399.000000 +I (27824) example: expect speed: 0.000000 real_pulses:0 +I (27824) example: new speed:399.000000 +I (27834) example: expect speed: 0.000000 real_pulses:0 +I (27834) example: new speed:399.000000 +I (27844) example: expect speed: 0.000000 real_pulses:0 +I (27844) example: new speed:399.000000 +I (27854) example: expect speed: 0.000000 real_pulses:0 +I (27854) example: new speed:399.000000 +I (27864) example: expect speed: 0.000000 real_pulses:0 +I (27864) example: new speed:399.000000 +I (27874) example: expect speed: 0.000000 real_pulses:0 +I (27874) example: new speed:399.000000 +I (27884) example: expect speed: 0.000000 real_pulses:0 +I (27884) example: new speed:399.000000 +I (27894) example: expect speed: 0.000000 real_pulses:0 +I (27894) example: new speed:399.000000 +I (27904) example: expect speed: 0.000000 real_pulses:0 +I (27904) example: new speed:399.000000 +I (27914) example: expect speed: 0.000000 real_pulses:0 +I (27914) example: new speed:399.000000 +I (27924) example: expect speed: 0.000000 real_pulses:0 +I (27924) example: new speed:399.000000 +I (27934) example: expect speed: 0.000000 real_pulses:0 +I (27934) example: new speed:399.000000 +I (27944) example: expect speed: 0.000000 real_pulses:0 +I (27944) example: new speed:399.000000 +I (27954) example: expect speed: 0.000000 real_pulses:0 +I (27954) example: new speed:399.000000 +I (27964) example: expect speed: 0.000000 real_pulses:0 +I (27964) example: new speed:399.000000 +I (27974) example: expect speed: 0.000000 real_pulses:0 +I (27974) example: new speed:399.000000 +I (27984) example: expect speed: 0.000000 real_pulses:0 +I (27984) example: new speed:399.000000 +I (27994) example: expect speed: 0.000000 real_pulses:0 +I (27994) example: new speed:399.000000 +I (28004) example: expect speed: 0.000000 real_pulses:0 +I (28004) example: new speed:399.000000 +I (28014) example: expect speed: 0.000000 real_pulses:0 +I (28014) example: new speed:399.000000 +I (28024) example: expect speed: 0.000000 real_pulses:0 +I (28024) example: new speed:399.000000 +I (28034) example: expect speed: 0.000000 real_pulses:0 +I (28034) example: new speed:399.000000 +I (28044) example: expect speed: 0.000000 real_pulses:0 +I (28044) example: new speed:399.000000 +I (28054) example: expect speed: 0.000000 real_pulses:0 +I (28054) example: new speed:399.000000 +I (28064) example: expect speed: 0.000000 real_pulses:0 +I (28064) example: new speed:399.000000 +I (28074) example: expect speed: 0.000000 real_pulses:0 +I (28074) example: new speed:399.000000 +I (28084) example: expect speed: 0.000000 real_pulses:0 +I (28084) example: new speed:399.000000 +I (28094) example: expect speed: 0.000000 real_pulses:0 +I (28094) example: new speed:399.000000 +I (28104) example: expect speed: 0.000000 real_pulses:0 +I (28104) example: new speed:399.000000 +I (28114) example: expect speed: 0.000000 real_pulses:0 +I (28114) example: new speed:399.000000 +I (28124) example: expect speed: 0.000000 real_pulses:0 +I (28124) example: new speed:399.000000 +I (28134) example: expect speed: 0.000000 real_pulses:0 +I (28134) example: new speed:399.000000 +I (28144) example: expect speed: 0.000000 real_pulses:0 +I (28144) example: new speed:399.000000 +I (28154) example: expect speed: 0.000000 real_pulses:0 +I (28154) example: new speed:399.000000 +I (28164) example: expect speed: 0.000000 real_pulses:0 +I (28164) example: new speed:399.000000 +I (28174) example: expect speed: 0.000000 real_pulses:0 +I (28174) example: new speed:399.000000 +I (28184) example: expect speed: 0.000000 real_pulses:0 +I (28184) example: new speed:399.000000 +I (28194) example: expect speed: 0.000000 real_pulses:0 +I (28194) example: new speed:399.000000 +I (28204) example: expect speed: 0.000000 real_pulses:0 +I (28204) example: new speed:399.000000 +I (28214) example: expect speed: 0.000000 real_pulses:0 +I (28214) example: new speed:399.000000 +I (28224) example: expect speed: 0.000000 real_pulses:0 +I (28224) example: new speed:399.000000 +I (28234) example: expect speed: 0.000000 real_pulses:0 +I (28234) example: new speed:399.000000 +I (28244) example: expect speed: 0.000000 real_pulses:0 +I (28244) example: new speed:399.000000 +I (28254) example: expect speed: 0.000000 real_pulses:0 +I (28254) example: new speed:399.000000 +I (28264) example: expect speed: 0.000000 real_pulses:0 +I (28264) example: new speed:399.000000 +I (28274) example: expect speed: 0.000000 real_pulses:0 +I (28274) example: new speed:399.000000 +I (28284) example: expect speed: 0.000000 real_pulses:0 +I (28284) example: new speed:399.000000 +I (28294) example: expect speed: 0.000000 real_pulses:0 +I (28294) example: new speed:399.000000 +I (28304) example: expect speed: 0.000000 real_pulses:0 +I (28314) example: new speed:399.000000 +I (28314) example: expect speed: 0.000000 real_pulses:0 +I (28314) example: new speed:399.000000 +I (28324) example: expect speed: 0.000000 real_pulses:0 +I (28324) example: new speed:399.000000 +I (28334) example: expect speed: 0.000000 real_pulses:0 +I (28334) example: new speed:399.000000 +I (28344) example: expect speed: 0.000000 real_pulses:0 +I (28344) example: new speed:399.000000 +I (28354) example: expect speed: 0.000000 real_pulses:0 +I (28354) example: new speed:399.000000 +I (28364) example: expect speed: 0.000000 real_pulses:0 +I (28364) example: new speed:399.000000 +I (28374) example: expect speed: 0.000000 real_pulses:0 +I (28374) example: new speed:399.000000 +I (28384) example: expect speed: 0.000000 real_pulses:0 +I (28384) example: new speed:399.000000 +I (28394) example: expect speed: 0.000000 real_pulses:0 +I (28394) example: new speed:399.000000 +I (28404) example: expect speed: 0.000000 real_pulses:0 +I (28404) example: new speed:399.000000 +I (28414) example: expect speed: 0.000000 real_pulses:0 +I (28414) example: new speed:399.000000 +I (28424) example: expect speed: 0.000000 real_pulses:0 +I (28424) example: new speed:399.000000 +I (28434) example: expect speed: 0.000000 real_pulses:0 +I (28434) example: new speed:399.000000 +I (28444) example: expect speed: 0.000000 real_pulses:0 +I (28444) example: new speed:399.000000 +I (28454) example: expect speed: 0.000000 real_pulses:0 +I (28454) example: new speed:399.000000 +I (28464) example: expect speed: 0.000000 real_pulses:0 +I (28464) example: new speed:399.000000 +I (28474) example: expect speed: 0.000000 real_pulses:0 +I (28474) example: new speed:399.000000 +I (28484) example: expect speed: 0.000000 real_pulses:0 +I (28484) example: new speed:399.000000 +I (28494) example: expect speed: 0.000000 real_pulses:0 +I (28494) example: new speed:399.000000 +I (28504) example: expect speed: 0.000000 real_pulses:0 +I (28504) example: new speed:399.000000 +I (28514) example: expect speed: 0.000000 real_pulses:0 +I (28514) example: new speed:399.000000 +I (28524) example: expect speed: 0.000000 real_pulses:0 +I (28524) example: new speed:399.000000 +I (28534) example: expect speed: 0.000000 real_pulses:0 +I (28534) example: new speed:399.000000 +I (28544) example: expect speed: 0.000000 real_pulses:0 +I (28544) example: new speed:399.000000 +I (28554) example: expect speed: 0.000000 real_pulses:0 +I (28554) example: new speed:399.000000 +I (28564) example: expect speed: 0.000000 real_pulses:0 +I (28564) example: new speed:399.000000 +I (28574) example: expect speed: 0.000000 real_pulses:0 +I (28574) example: new speed:399.000000 +I (28584) example: expect speed: 0.000000 real_pulses:0 +I (28584) example: new speed:399.000000 +I (28594) example: expect speed: 0.000000 real_pulses:0 +I (28594) example: new speed:399.000000 +I (28604) example: expect speed: 0.000000 real_pulses:0 +I (28604) example: new speed:399.000000 +I (28614) example: expect speed: 0.000000 real_pulses:0 +I (28614) example: new speed:399.000000 +I (28624) example: expect speed: 0.000000 real_pulses:0 +I (28624) example: new speed:399.000000 +I (28634) example: expect speed: 0.000000 real_pulses:0 +I (28634) example: new speed:399.000000 +I (28644) example: expect speed: 0.000000 real_pulses:0 +I (28644) example: new speed:399.000000 +I (28654) example: expect speed: 0.000000 real_pulses:0 +I (28654) example: new speed:399.000000 +I (28664) example: expect speed: 0.000000 real_pulses:0 +I (28664) example: new speed:399.000000 +I (28674) example: expect speed: 0.000000 real_pulses:0 +I (28674) example: new speed:399.000000 +I (28684) example: expect speed: 0.000000 real_pulses:0 +I (28684) example: new speed:399.000000 +I (28694) example: expect speed: 0.000000 real_pulses:0 +I (28694) example: new speed:399.000000 +I (28704) example: expect speed: 0.000000 real_pulses:0 +I (28704) example: new speed:399.000000 +I (28714) example: expect speed: 0.000000 real_pulses:0 +I (28714) example: new speed:399.000000 +I (28724) example: expect speed: 0.000000 real_pulses:0 +I (28724) example: new speed:399.000000 +I (28734) example: expect speed: 0.000000 real_pulses:0 +I (28734) example: new speed:399.000000 +I (28744) example: expect speed: 0.000000 real_pulses:0 +I (28744) example: new speed:399.000000 +I (28754) example: expect speed: 0.000000 real_pulses:0 +I (28754) example: new speed:399.000000 +I (28764) example: expect speed: 0.000000 real_pulses:0 +I (28764) example: new speed:399.000000 +I (28774) example: expect speed: 0.000000 real_pulses:0 +I (28774) example: new speed:399.000000 +I (28784) example: expect speed: 0.000000 real_pulses:0 +I (28784) example: new speed:399.000000 +I (28794) example: expect speed: 0.000000 real_pulses:0 +I (28794) example: new speed:399.000000 +I (28804) example: expect speed: 0.000000 real_pulses:0 +I (28804) example: new speed:399.000000 +I (28814) example: expect speed: 0.000000 real_pulses:0 +I (28814) example: new speed:399.000000 +I (28824) example: expect speed: 0.000000 real_pulses:0 +I (28834) example: new speed:399.000000 +I (28834) example: expect speed: 0.000000 real_pulses:0 +I (28834) example: new speed:399.000000 +I (28844) example: expect speed: 0.000000 real_pulses:0 +I (28844) example: new speed:399.000000 +I (28854) example: expect speed: 0.000000 real_pulses:0 +I (28854) example: new speed:399.000000 +I (28864) example: expect speed: 0.000000 real_pulses:0 +I (28864) example: new speed:399.000000 +I (28874) example: expect speed: 0.000000 real_pulses:0 +I (28874) example: new speed:399.000000 +I (28884) example: expect speed: 0.000000 real_pulses:0 +I (28884) example: new speed:399.000000 +I (28894) example: expect speed: 0.000000 real_pulses:0 +I (28894) example: new speed:399.000000 +I (28904) example: expect speed: 0.000000 real_pulses:0 +I (28904) example: new speed:399.000000 +I (28914) example: expect speed: 0.000000 real_pulses:0 +I (28914) example: new speed:399.000000 +I (28924) example: expect speed: 0.000000 real_pulses:0 +I (28924) example: new speed:399.000000 +I (28934) example: expect speed: 0.000000 real_pulses:0 +I (28934) example: new speed:399.000000 +I (28944) example: expect speed: 0.000000 real_pulses:0 +I (28944) example: new speed:399.000000 +I (28954) example: expect speed: 0.000000 real_pulses:0 +I (28954) example: new speed:399.000000 +I (28964) example: expect speed: 0.000000 real_pulses:0 +I (28964) example: new speed:399.000000 +I (28974) example: expect speed: 0.000000 real_pulses:0 +I (28974) example: new speed:399.000000 +I (28984) example: expect speed: 0.000000 real_pulses:0 +I (28984) example: new speed:399.000000 +I (28994) example: expect speed: 0.000000 real_pulses:0 +I (28994) example: new speed:399.000000 +I (29004) example: expect speed: 0.000000 real_pulses:0 +I (29004) example: new speed:399.000000 +I (29014) example: expect speed: 0.000000 real_pulses:0 +I (29014) example: new speed:399.000000 +I (29024) example: expect speed: 0.000000 real_pulses:0 +I (29024) example: new speed:399.000000 +I (29034) example: expect speed: 0.000000 real_pulses:0 +I (29034) example: new speed:399.000000 +I (29044) example: expect speed: 0.000000 real_pulses:0 +I (29044) example: new speed:399.000000 +I (29054) example: expect speed: 0.000000 real_pulses:0 +I (29054) example: new speed:399.000000 +I (29064) example: expect speed: 0.000000 real_pulses:0 +I (29064) example: new speed:399.000000 +I (29074) example: expect speed: 0.000000 real_pulses:0 +I (29074) example: new speed:399.000000 +I (29084) example: expect speed: 0.000000 real_pulses:0 +I (29084) example: new speed:399.000000 +I (29094) example: expect speed: 0.000000 real_pulses:0 +I (29094) example: new speed:399.000000 +I (29104) example: expect speed: 0.000000 real_pulses:0 +I (29104) example: new speed:399.000000 +I (29114) example: expect speed: 0.000000 real_pulses:0 +I (29114) example: new speed:399.000000 +I (29124) example: expect speed: 0.000000 real_pulses:0 +I (29124) example: new speed:399.000000 +I (29134) example: expect speed: 0.000000 real_pulses:0 +I (29134) example: new speed:399.000000 +I (29144) example: expect speed: 0.000000 real_pulses:0 +I (29144) example: new speed:399.000000 +I (29154) example: expect speed: 0.000000 real_pulses:0 +I (29154) example: new speed:399.000000 +I (29164) example: expect speed: 0.000000 real_pulses:0 +I (29164) example: new speed:399.000000 +I (29174) example: expect speed: 0.000000 real_pulses:0 +I (29174) example: new speed:399.000000 +I (29184) example: expect speed: 0.000000 real_pulses:0 +I (29184) example: new speed:399.000000 +I (29194) example: expect speed: 0.000000 real_pulses:0 +I (29194) example: new speed:399.000000 +I (29204) example: expect speed: 0.000000 real_pulses:0 +I (29204) example: new speed:399.000000 +I (29214) example: expect speed: 0.000000 real_pulses:0 +I (29214) example: new speed:399.000000 +I (29224) example: expect speed: 0.000000 real_pulses:0 +I (29224) example: new speed:399.000000 +I (29234) example: expect speed: 0.000000 real_pulses:0 +I (29234) example: new speed:399.000000 +I (29244) example: expect speed: 0.000000 real_pulses:0 +I (29244) example: new speed:399.000000 +I (29254) example: expect speed: 0.000000 real_pulses:0 +I (29254) example: new speed:399.000000 +I (29264) example: expect speed: 0.000000 real_pulses:0 +I (29264) example: new speed:399.000000 +I (29274) example: expect speed: 0.000000 real_pulses:0 +I (29274) example: new speed:399.000000 +I (29284) example: expect speed: 0.000000 real_pulses:0 +I (29284) example: new speed:399.000000 +I (29294) example: expect speed: 0.000000 real_pulses:0 +I (29294) example: new speed:399.000000 +I (29304) example: expect speed: 0.000000 real_pulses:0 +I (29304) example: new speed:399.000000 +I (29314) example: expect speed: 0.000000 real_pulses:0 +I (29314) example: new speed:399.000000 +I (29324) example: expect speed: 0.000000 real_pulses:0 +I (29324) example: new speed:399.000000 +I (29334) example: expect speed: 0.000000 real_pulses:0 +I (29334) example: new speed:399.000000 +I (29344) example: expect speed: 0.000000 real_pulses:0 +I (29344) example: new speed:399.000000 +I (29354) example: expect speed: 0.000000 real_pulses:0 +I (29354) example: new speed:399.000000 +I (29364) example: expect speed: 0.000000 real_pulses:0 +I (29364) example: new speed:399.000000 +I (29374) example: expect speed: 0.000000 real_pulses:0 +I (29374) example: new speed:399.000000 +I (29384) example: expect speed: 0.000000 real_pulses:0 +I (29384) example: new speed:399.000000 +I (29394) example: expect speed: 0.000000 real_pulses:0 +I (29394) example: new speed:399.000000 +I (29404) example: expect speed: 0.000000 real_pulses:0 +I (29404) example: new speed:399.000000 +I (29414) example: expect speed: 0.000000 real_pulses:0 +I (29414) example: new speed:399.000000 +I (29424) example: expect speed: 0.000000 real_pulses:0 +I (29424) example: new speed:399.000000 +I (29434) example: expect speed: 0.000000 real_pulses:0 +I (29434) example: new speed:399.000000 +I (29444) example: expect speed: 0.000000 real_pulses:0 +I (29444) example: new speed:399.000000 +I (29454) example: expect speed: 0.000000 real_pulses:0 +I (29454) example: new speed:399.000000 +I (29464) example: expect speed: 0.000000 real_pulses:0 +I (29464) example: new speed:399.000000 +I (29474) example: expect speed: 0.000000 real_pulses:0 +I (29474) example: new speed:399.000000 +I (29484) example: expect speed: 0.000000 real_pulses:0 +I (29484) example: new speed:399.000000 +I (29494) example: expect speed: 0.000000 real_pulses:0 +I (29494) example: new speed:399.000000 +I (29504) example: expect speed: 0.000000 real_pulses:0 +I (29504) example: new speed:399.000000 +I (29514) example: expect speed: 0.000000 real_pulses:0 +I (29514) example: new speed:399.000000 +I (29524) example: expect speed: 0.000000 real_pulses:0 +I (29524) example: new speed:399.000000 +I (29534) example: expect speed: 0.000000 real_pulses:0 +I (29534) example: new speed:399.000000 +I (29544) example: expect speed: 0.000000 real_pulses:0 +I (29544) example: new speed:399.000000 +I (29554) example: expect speed: 0.000000 real_pulses:0 +I (29554) example: new speed:399.000000 +I (29564) example: expect speed: 0.000000 real_pulses:0 +I (29564) example: new speed:399.000000 +I (29574) example: expect speed: 0.000000 real_pulses:0 +I (29574) example: new speed:399.000000 +I (29584) example: expect speed: 0.000000 real_pulses:0 +I (29584) example: new speed:399.000000 +I (29594) example: expect speed: 0.000000 real_pulses:0 +I (29594) example: new speed:399.000000 +I (29604) example: expect speed: 0.000000 real_pulses:0 +I (29604) example: new speed:399.000000 +I (29614) example: expect speed: 0.000000 real_pulses:0 +I (29614) example: new speed:399.000000 +I (29624) example: expect speed: 0.000000 real_pulses:0 +I (29624) example: new speed:399.000000 +I (29634) example: expect speed: 0.000000 real_pulses:0 +I (29634) example: new speed:399.000000 +I (29644) example: expect speed: 0.000000 real_pulses:0 +I (29644) example: new speed:399.000000 +I (29654) example: expect speed: 0.000000 real_pulses:0 +I (29654) example: new speed:399.000000 +I (29664) example: expect speed: 0.000000 real_pulses:0 +I (29664) example: new speed:399.000000 +I (29674) example: expect speed: 0.000000 real_pulses:0 +I (29674) example: new speed:399.000000 +I (29684) example: expect speed: 0.000000 real_pulses:0 +I (29684) example: new speed:399.000000 +I (29694) example: expect speed: 0.000000 real_pulses:0 +I (29694) example: new speed:399.000000 +I (29704) example: expect speed: 0.000000 real_pulses:0 +I (29704) example: new speed:399.000000 +I (29714) example: expect speed: 0.000000 real_pulses:0 +I (29714) example: new speed:399.000000 +I (29724) example: expect speed: 0.000000 real_pulses:0 +I (29724) example: new speed:399.000000 +I (29734) example: expect speed: 0.000000 real_pulses:0 +I (29734) example: new speed:399.000000 +I (29744) example: expect speed: 0.000000 real_pulses:0 +I (29744) example: new speed:399.000000 +I (29754) example: expect speed: 0.000000 real_pulses:0 +I (29754) example: new speed:399.000000 +I (29764) example: expect speed: 0.000000 real_pulses:0 +I (29764) example: new speed:399.000000 +I (29774) example: expect speed: 0.000000 real_pulses:0 +I (29774) example: new speed:399.000000 +I (29784) example: expect speed: 0.000000 real_pulses:0 +I (29784) example: new speed:399.000000 +I (29794) example: expect speed: 0.000000 real_pulses:0 +I (29794) example: new speed:399.000000 +I (29804) example: expect speed: 0.000000 real_pulses:0 +I (29804) example: new speed:399.000000 +I (29814) example: expect speed: 0.000000 real_pulses:0 +I (29814) example: new speed:399.000000 +I (29824) example: expect speed: 0.000000 real_pulses:0 +I (29824) example: new speed:399.000000 +I (29834) example: expect speed: 0.000000 real_pulses:0 +I (29834) example: new speed:399.000000 +I (29844) example: expect speed: 0.000000 real_pulses:0 +I (29844) example: new speed:399.000000 +I (29854) example: expect speed: 0.000000 real_pulses:0 +I (29854) example: new speed:399.000000 +I (29864) example: expect speed: 0.000000 real_pulses:0 +I (29864) example: new speed:399.000000 +I (29874) example: expect speed: 0.000000 real_pulses:0 +I (29874) example: new speed:399.000000 +I (29884) example: expect speed: 0.000000 real_pulses:0 +I (29884) example: new speed:399.000000 +I (29894) example: expect speed: 0.000000 real_pulses:0 +I (29894) example: new speed:399.000000 +I (29904) example: expect speed: 0.000000 real_pulses:0 +I (29904) example: new speed:399.000000 +I (29914) example: expect speed: 0.000000 real_pulses:0 +I (29914) example: new speed:399.000000 +I (29924) example: expect speed: 0.000000 real_pulses:0 +I (29924) example: new speed:399.000000 +I (29934) example: expect speed: 0.000000 real_pulses:0 +I (29934) example: new speed:399.000000 +I (29944) example: expect speed: 0.000000 real_pulses:0 +I (29954) example: new speed:399.000000 +I (29954) example: expect speed: 0.000000 real_pulses:0 +I (29954) example: new speed:399.000000 +I (29964) example: expect speed: 0.000000 real_pulses:0 +I (29964) example: new speed:399.000000 +I (29974) example: expect speed: 0.000000 real_pulses:0 +I (29974) example: new speed:399.000000 +I (29984) example: expect speed: 0.000000 real_pulses:0 +I (29984) example: new speed:399.000000 +I (29994) example: expect speed: 0.000000 real_pulses:0 +I (29994) example: new speed:399.000000 +I (30004) example: expect speed: 0.000000 real_pulses:0 +I (30004) example: new speed:399.000000 +I (30014) example: expect speed: 0.000000 real_pulses:0 +I (30014) example: new speed:399.000000 +I (30024) example: expect speed: 0.000000 real_pulses:0 +I (30024) example: new speed:399.000000 +I (30034) example: expect speed: 0.000000 real_pulses:0 +I (30034) example: new speed:399.000000 +I (30044) example: expect speed: 0.000000 real_pulses:0 +I (30044) example: new speed:399.000000 +I (30054) example: expect speed: 0.000000 real_pulses:0 +I (30054) example: new speed:399.000000 +I (30064) example: expect speed: 0.000000 real_pulses:0 +I (30064) example: new speed:399.000000 +I (30074) example: expect speed: 0.000000 real_pulses:0 +I (30074) example: new speed:399.000000 +I (30084) example: expect speed: 0.000000 real_pulses:0 +I (30084) example: new speed:399.000000 +I (30094) example: expect speed: 0.000000 real_pulses:0 +I (30094) example: new speed:399.000000 +I (30104) example: expect speed: 0.000000 real_pulses:0 +I (30104) example: new speed:399.000000 +I (30114) example: expect speed: 0.000000 real_pulses:0 +I (30114) example: new speed:399.000000 +I (30124) example: expect speed: 0.000000 real_pulses:0 +I (30124) example: new speed:399.000000 +I (30134) example: expect speed: 0.000000 real_pulses:0 +I (30134) example: new speed:399.000000 +I (30144) example: expect speed: 0.000000 real_pulses:0 +I (30144) example: new speed:399.000000 +I (30154) example: expect speed: 0.000000 real_pulses:0 +I (30154) example: new speed:399.000000 +I (30164) example: expect speed: 0.000000 real_pulses:0 +I (30164) example: new speed:399.000000 +I (30174) example: expect speed: 0.000000 real_pulses:0 +I (30174) example: new speed:399.000000 +I (30184) example: expect speed: 0.000000 real_pulses:0 +I (30184) example: new speed:399.000000 +I (30194) example: expect speed: 0.000000 real_pulses:0 +I (30194) example: new speed:399.000000 +I (30204) example: expect speed: 0.000000 real_pulses:0 +I (30204) example: new speed:399.000000 +I (30214) example: expect speed: 0.000000 real_pulses:0 +I (30214) example: new speed:399.000000 +I (30224) example: expect speed: 0.000000 real_pulses:0 +I (30224) example: new speed:399.000000 +I (30234) example: expect speed: 0.000000 real_pulses:0 +I (30234) example: new speed:399.000000 +I (30244) example: expect speed: 0.000000 real_pulses:0 +I (30244) example: new speed:399.000000 +I (30254) example: expect speed: 0.000000 real_pulses:0 +I (30254) example: new speed:399.000000 +I (30264) example: expect speed: 0.000000 real_pulses:0 +I (30264) example: new speed:399.000000 +I (30274) example: expect speed: 0.000000 real_pulses:0 +I (30274) example: new speed:399.000000 +I (30284) example: expect speed: 0.000000 real_pulses:0 +I (30284) example: new speed:399.000000 +I (30294) example: expect speed: 0.000000 real_pulses:0 +I (30294) example: new speed:399.000000 +I (30304) example: expect speed: 0.000000 real_pulses:0 +I (30304) example: new speed:399.000000 +I (30314) example: expect speed: 0.000000 real_pulses:0 +I (30314) example: new speed:399.000000 +I (30324) example: expect speed: 0.000000 real_pulses:0 +I (30324) example: new speed:399.000000 +I (30334) example: expect speed: 0.000000 real_pulses:0 +I (30334) example: new speed:399.000000 +I (30344) example: expect speed: 0.000000 real_pulses:0 +I (30344) example: new speed:399.000000 +I (30354) example: expect speed: 0.000000 real_pulses:0 +I (30354) example: new speed:399.000000 +I (30364) example: expect speed: 0.000000 real_pulses:0 +I (30364) example: new speed:399.000000 +I (30374) example: expect speed: 0.000000 real_pulses:0 +I (30374) example: new speed:399.000000 +I (30384) example: expect speed: 0.000000 real_pulses:0 +I (30384) example: new speed:399.000000 +I (30394) example: expect speed: 0.000000 real_pulses:0 +I (30394) example: new speed:399.000000 +I (30404) example: expect speed: 0.000000 real_pulses:0 +I (30404) example: new speed:399.000000 +I (30414) example: expect speed: 0.000000 real_pulses:0 +I (30414) example: new speed:399.000000 +I (30424) example: expect speed: 0.000000 real_pulses:0 +I (30424) example: new speed:399.000000 +I (30434) example: expect speed: 0.000000 real_pulses:0 +I (30434) example: new speed:399.000000 +I (30444) example: expect speed: 0.000000 real_pulses:0 +I (30444) example: new speed:399.000000 +I (30454) example: expect speed: 0.000000 real_pulses:0 +I (30454) example: new speed:399.000000 +I (30464) example: expect speed: 0.000000 real_pulses:0 +I (30464) example: new speed:399.000000 +I (30474) example: expect speed: 0.000000 real_pulses:0 +I (30474) example: new speed:399.000000 +I (30484) example: expect speed: 0.000000 real_pulses:0 +I (30484) example: new speed:399.000000 +I (30494) example: expect speed: 0.000000 real_pulses:0 +I (30494) example: new speed:399.000000 +I (30504) example: expect speed: 0.000000 real_pulses:0 +I (30504) example: new speed:399.000000 +I (30514) example: expect speed: 0.000000 real_pulses:0 +I (30514) example: new speed:399.000000 +I (30524) example: expect speed: 0.000000 real_pulses:0 +I (30524) example: new speed:399.000000 +I (30534) example: expect speed: 0.000000 real_pulses:0 +I (30534) example: new speed:399.000000 +I (30544) example: expect speed: 0.000000 real_pulses:0 +I (30544) example: new speed:399.000000 +I (30554) example: expect speed: 0.000000 real_pulses:0 +I (30554) example: new speed:399.000000 +I (30564) example: expect speed: 0.000000 real_pulses:0 +I (30564) example: new speed:399.000000 +I (30574) example: expect speed: 0.000000 real_pulses:0 +I (30574) example: new speed:399.000000 +I (30584) example: expect speed: 0.000000 real_pulses:0 +I (30584) example: new speed:399.000000 +I (30594) example: expect speed: 0.000000 real_pulses:0 +I (30594) example: new speed:399.000000 +I (30604) example: expect speed: 0.000000 real_pulses:0 +I (30604) example: new speed:399.000000 +I (30614) example: expect speed: 0.000000 real_pulses:0 +I (30614) example: new speed:399.000000 +I (30624) example: expect speed: 0.000000 real_pulses:0 +I (30624) example: new speed:399.000000 +I (30634) example: expect speed: 0.000000 real_pulses:0 +I (30634) example: new speed:399.000000 +I (30644) example: expect speed: 0.000000 real_pulses:0 +I (30644) example: new speed:399.000000 +I (30654) example: expect speed: 0.000000 real_pulses:0 +I (30654) example: new speed:399.000000 +I (30664) example: expect speed: 0.000000 real_pulses:0 +I (30674) example: new speed:399.000000 +I (30674) example: expect speed: 0.000000 real_pulses:0 +I (30674) example: new speed:399.000000 +I (30684) example: expect speed: 0.000000 real_pulses:0 +I (30684) example: new speed:399.000000 +I (30694) example: expect speed: 0.000000 real_pulses:0 +I (30694) example: new speed:399.000000 +I (30704) example: expect speed: 0.000000 real_pulses:0 +I (30704) example: new speed:399.000000 +I (30714) example: expect speed: 0.000000 real_pulses:0 +I (30714) example: new speed:399.000000 +I (30724) example: expect speed: 0.000000 real_pulses:0 +I (30724) example: new speed:399.000000 +I (30734) example: expect speed: 0.000000 real_pulses:0 +I (30734) example: new speed:399.000000 +I (30744) example: expect speed: 0.000000 real_pulses:0 +I (30744) example: new speed:399.000000 +I (30754) example: expect speed: 0.000000 real_pulses:0 +I (30754) example: new speed:399.000000 +I (30764) example: expect speed: 0.000000 real_pulses:0 +I (30764) example: new speed:399.000000 +I (30774) example: expect speed: 0.000000 real_pulses:0 +I (30774) example: new speed:399.000000 +I (30784) example: expect speed: 0.000000 real_pulses:0 +I (30784) example: new speed:399.000000 +I (30794) example: expect speed: 0.000000 real_pulses:0 +I (30794) example: new speed:399.000000 +I (30804) example: expect speed: 0.000000 real_pulses:0 +I (30804) example: new speed:399.000000 +I (30814) example: expect speed: 0.000000 real_pulses:0 +I (30814) example: new speed:399.000000 +I (30824) example: expect speed: 0.000000 real_pulses:0 +I (30824) example: new speed:399.000000 +I (30834) example: expect speed: 0.000000 real_pulses:0 +I (30834) example: new speed:399.000000 +I (30844) example: expect speed: 0.000000 real_pulses:0 +I (30844) example: new speed:399.000000 +I (30854) example: expect speed: 0.000000 real_pulses:0 +I (30854) example: new speed:399.000000 +I (30864) example: expect speed: 0.000000 real_pulses:0 +I (30864) example: new speed:399.000000 +I (30874) example: expect speed: 0.000000 real_pulses:0 +I (30874) example: new speed:399.000000 +I (30884) example: expect speed: 0.000000 real_pulses:0 +I (30884) example: new speed:399.000000 +I (30894) example: expect speed: 0.000000 real_pulses:0 +I (30894) example: new speed:399.000000 +I (30904) example: expect speed: 0.000000 real_pulses:0 +I (30904) example: new speed:399.000000 +I (30914) example: expect speed: 0.000000 real_pulses:0 +I (30914) example: new speed:399.000000 +I (30924) example: expect speed: 0.000000 real_pulses:0 +I (30924) example: new speed:399.000000 +I (30934) example: expect speed: 0.000000 real_pulses:0 +I (30934) example: new speed:399.000000 +I (30944) example: expect speed: 0.000000 real_pulses:0 +I (30944) example: new speed:399.000000 +I (30954) example: expect speed: 0.000000 real_pulses:0 +I (30954) example: new speed:399.000000 +I (30964) example: expect speed: 0.000000 real_pulses:0 +I (30964) example: new speed:399.000000 +I (30974) example: expect speed: 0.000000 real_pulses:0 +I (30974) example: new speed:399.000000 +I (30984) example: expect speed: 0.000000 real_pulses:0 +I (30984) example: new speed:399.000000 +I (30994) example: expect speed: 0.000000 real_pulses:0 +I (30994) example: new speed:399.000000 +I (31004) example: expect speed: 0.000000 real_pulses:0 +I (31004) example: new speed:399.000000 +I (31014) example: expect speed: 0.000000 real_pulses:0 +I (31014) example: new speed:399.000000 +I (31024) example: expect speed: 0.000000 real_pulses:0 +I (31024) example: new speed:399.000000 +I (31034) example: expect speed: 0.000000 real_pulses:0 +I (31034) example: new speed:399.000000 +I (31044) example: expect speed: 0.000000 real_pulses:0 +I (31044) example: new speed:399.000000 +I (31054) example: expect speed: 0.000000 real_pulses:0 +I (31054) example: new speed:399.000000 +I (31064) example: expect speed: 0.000000 real_pulses:0 +I (31064) example: new speed:399.000000 +I (31074) example: expect speed: 0.000000 real_pulses:0 +I (31084) example: new speed:399.000000 +I (31084) example: expect speed: 0.000000 real_pulses:0 +I (31084) example: new speed:399.000000 +I (31094) example: expect speed: 0.000000 real_pulses:0 +I (31094) example: new speed:399.000000 +I (31104) example: expect speed: 0.000000 real_pulses:0 +I (31104) example: new speed:399.000000 +I (31114) example: expect speed: 0.000000 real_pulses:0 +I (31114) example: new speed:399.000000 +I (31124) example: expect speed: 0.000000 real_pulses:0 +I (31124) example: new speed:399.000000 +I (31134) example: expect speed: 0.000000 real_pulses:0 +I (31134) example: new speed:399.000000 +I (31144) example: expect speed: 0.000000 real_pulses:0 +I (31144) example: new speed:399.000000 +I (31154) example: expect speed: 0.000000 real_pulses:0 +I (31154) example: new speed:399.000000 +I (31164) example: expect speed: 0.000000 real_pulses:0 +I (31164) example: new speed:399.000000 +I (31174) example: expect speed: 0.000000 real_pulses:0 +I (31174) example: new speed:399.000000 +I (31184) example: expect speed: 0.000000 real_pulses:0 +I (31184) example: new speed:399.000000 +I (31194) example: expect speed: 0.000000 real_pulses:0 +I (31194) example: new speed:399.000000 +I (31204) example: expect speed: 0.000000 real_pulses:0 +I (31204) example: new speed:399.000000 +I (31214) example: expect speed: 0.000000 real_pulses:0 +I (31214) example: new speed:399.000000 +I (31224) example: expect speed: 0.000000 real_pulses:0 +I (31224) example: new speed:399.000000 +I (31234) example: expect speed: 0.000000 real_pulses:0 +I (31234) example: new speed:399.000000 +I (31244) example: expect speed: 0.000000 real_pulses:0 +I (31244) example: new speed:399.000000 +I (31254) example: expect speed: 0.000000 real_pulses:0 +I (31254) example: new speed:399.000000 +I (31264) example: expect speed: 0.000000 real_pulses:0 +I (31264) example: new speed:399.000000 +I (31274) example: expect speed: 0.000000 real_pulses:0 +I (31274) example: new speed:399.000000 +I (31284) example: expect speed: 0.000000 real_pulses:0 +I (31284) example: new speed:399.000000 +I (31294) example: expect speed: 0.000000 real_pulses:0 +I (31294) example: new speed:399.000000 +I (31304) example: expect speed: 0.000000 real_pulses:0 +I (31304) example: new speed:399.000000 +I (31314) example: expect speed: 0.000000 real_pulses:0 +I (31314) example: new speed:399.000000 +I (31324) example: expect speed: 0.000000 real_pulses:0 +I (31324) example: new speed:399.000000 +I (31334) example: expect speed: 0.000000 real_pulses:0 +I (31334) example: new speed:399.000000 +I (31344) example: expect speed: 0.000000 real_pulses:0 +I (31344) example: new speed:399.000000 +I (31354) example: expect speed: 0.000000 real_pulses:0 +I (31354) example: new speed:399.000000 +I (31364) example: expect speed: 0.000000 real_pulses:0 +I (31364) example: new speed:399.000000 +I (31374) example: expect speed: 0.000000 real_pulses:0 +I (31374) example: new speed:399.000000 +I (31384) example: expect speed: 0.000000 real_pulses:0 +I (31384) example: new speed:399.000000 +I (31394) example: expect speed: 0.000000 real_pulses:0 +I (31394) example: new speed:399.000000 +I (31404) example: expect speed: 0.000000 real_pulses:0 +I (31404) example: new speed:399.000000 +I (31414) example: expect speed: 0.000000 real_pulses:0 +I (31414) example: new speed:399.000000 +I (31424) example: expect speed: 0.000000 real_pulses:0 +I (31424) example: new speed:399.000000 +I (31434) example: expect speed: 0.000000 real_pulses:0 +I (31434) example: new speed:399.000000 +I (31444) example: expect speed: 0.000000 real_pulses:0 +I (31444) example: new speed:399.000000 +I (31454) example: expect speed: 0.000000 real_pulses:0 +I (31454) example: new speed:399.000000 +I (31464) example: expect speed: 0.000000 real_pulses:0 +I (31464) example: new speed:399.000000 +I (31474) example: expect speed: 0.000000 real_pulses:0 +I (31474) example: new speed:399.000000 +I (31484) example: expect speed: 0.000000 real_pulses:0 +I (31484) example: new speed:399.000000 +I (31494) example: expect speed: 0.000000 real_pulses:0 +I (31494) example: new speed:399.000000 +I (31504) example: expect speed: 0.000000 real_pulses:0 +I (31504) example: new speed:399.000000 +I (31514) example: expect speed: 0.000000 real_pulses:0 +I (31514) example: new speed:399.000000 +I (31524) example: expect speed: 0.000000 real_pulses:0 +I (31524) example: new speed:399.000000 +I (31534) example: expect speed: 0.000000 real_pulses:0 +I (31534) example: new speed:399.000000 +I (31544) example: expect speed: 0.000000 real_pulses:0 +I (31544) example: new speed:399.000000 +I (31554) example: expect speed: 0.000000 real_pulses:0 +I (31554) example: new speed:399.000000 +I (31564) example: expect speed: 0.000000 real_pulses:0 +I (31564) example: new speed:399.000000 +I (31574) example: expect speed: 0.000000 real_pulses:0 +I (31574) example: new speed:399.000000 +I (31584) example: expect speed: 0.000000 real_pulses:0 +I (31584) example: new speed:399.000000 +I (31594) example: expect speed: 0.000000 real_pulses:0 +I (31594) example: new speed:399.000000 +I (31604) example: expect speed: 0.000000 real_pulses:0 +I (31604) example: new speed:399.000000 +I (31614) example: expect speed: 0.000000 real_pulses:0 +I (31614) example: new speed:399.000000 +I (31624) example: expect speed: 0.000000 real_pulses:0 +I (31624) example: new speed:399.000000 +I (31634) example: expect speed: 0.000000 real_pulses:0 +I (31634) example: new speed:399.000000 +I (31644) example: expect speed: 0.000000 real_pulses:0 +I (31644) example: new speed:399.000000 +I (31654) example: expect speed: 0.000000 real_pulses:0 +I (31654) example: new speed:399.000000 +I (31664) example: expect speed: 0.000000 real_pulses:0 +I (31664) example: new speed:399.000000 +I (31674) example: expect speed: 0.000000 real_pulses:0 +I (31674) example: new speed:399.000000 +I (31684) example: expect speed: 0.000000 real_pulses:0 +I (31684) example: new speed:399.000000 +I (31694) example: expect speed: 0.000000 real_pulses:0 +I (31694) example: new speed:399.000000 +I (31704) example: expect speed: 0.000000 real_pulses:0 +I (31704) example: new speed:399.000000 +I (31714) example: expect speed: 0.000000 real_pulses:0 +I (31714) example: new speed:399.000000 +I (31724) example: expect speed: 0.000000 real_pulses:0 +I (31724) example: new speed:399.000000 +I (31734) example: expect speed: 0.000000 real_pulses:0 +I (31734) example: new speed:399.000000 +I (31744) example: expect speed: 0.000000 real_pulses:0 +I (31744) example: new speed:399.000000 +I (31754) example: expect speed: 0.000000 real_pulses:0 +I (31754) example: new speed:399.000000 +I (31764) example: expect speed: 0.000000 real_pulses:0 +I (31764) example: new speed:399.000000 +I (31774) example: expect speed: 0.000000 real_pulses:0 +I (31774) example: new speed:399.000000 +I (31784) example: expect speed: 0.000000 real_pulses:0 +I (31784) example: new speed:399.000000 +I (31794) example: expect speed: 0.000000 real_pulses:0 +I (31794) example: new speed:399.000000 +I (31804) example: expect speed: 0.000000 real_pulses:0 +I (31804) example: new speed:399.000000 +I (31814) example: expect speed: 0.000000 real_pulses:0 +I (31814) example: new speed:399.000000 +I (31824) example: expect speed: 0.000000 real_pulses:0 +I (31824) example: new speed:399.000000 +I (31834) example: expect speed: 0.000000 real_pulses:0 +I (31834) example: new speed:399.000000 +I (31844) example: expect speed: 0.000000 real_pulses:0 +I (31844) example: new speed:399.000000 +I (31854) example: expect speed: 0.000000 real_pulses:0 +I (31854) example: new speed:399.000000 +I (31864) example: expect speed: 0.000000 real_pulses:0 +I (31864) example: new speed:399.000000 +I (31874) example: expect speed: 0.000000 real_pulses:0 +I (31874) example: new speed:399.000000 +I (31884) example: expect speed: 0.000000 real_pulses:0 +I (31884) example: new speed:399.000000 +I (31894) example: expect speed: 0.000000 real_pulses:0 +I (31894) example: new speed:399.000000 +I (31904) example: expect speed: 0.000000 real_pulses:0 +I (31904) example: new speed:399.000000 +I (31914) example: expect speed: 0.000000 real_pulses:0 +I (31914) example: new speed:399.000000 +I (31924) example: expect speed: 0.000000 real_pulses:0 +I (31924) example: new speed:399.000000 +I (31934) example: expect speed: 0.000000 real_pulses:0 +I (31934) example: new speed:399.000000 +I (31944) example: expect speed: 0.000000 real_pulses:0 +I (31944) example: new speed:399.000000 +I (31954) example: expect speed: 0.000000 real_pulses:0 +I (31954) example: new speed:399.000000 +I (31964) example: expect speed: 0.000000 real_pulses:0 +I (31964) example: new speed:399.000000 +I (31974) example: expect speed: 0.000000 real_pulses:0 +I (31974) example: new speed:399.000000 +I (31984) example: expect speed: 0.000000 real_pulses:0 +I (31984) example: new speed:399.000000 +I (31994) example: expect speed: 0.000000 real_pulses:0 +I (32004) example: new speed:399.000000 +I (32004) example: expect speed: 0.000000 real_pulses:0 +I (32004) example: new speed:399.000000 +I (32014) example: expect speed: 0.000000 real_pulses:0 +I (32014) example: new speed:399.000000 +I (32024) example: expect speed: 0.000000 real_pulses:0 +I (32024) example: new speed:399.000000 +I (32034) example: expect speed: 0.000000 real_pulses:0 +I (32034) example: new speed:399.000000 +I (32044) example: expect speed: 0.000000 real_pulses:0 +I (32044) example: new speed:399.000000 +I (32054) example: expect speed: 0.000000 real_pulses:0 +I (32054) example: new speed:399.000000 +I (32064) example: expect speed: 0.000000 real_pulses:0 +I (32064) example: new speed:399.000000 +I (32074) example: expect speed: 0.000000 real_pulses:0 +I (32074) example: new speed:399.000000 +I (32084) example: expect speed: 0.000000 real_pulses:0 +I (32084) example: new speed:399.000000 +I (32094) example: expect speed: 0.000000 real_pulses:0 +I (32094) example: new speed:399.000000 +I (32104) example: expect speed: 0.000000 real_pulses:0 +I (32104) example: new speed:399.000000 +I (32114) example: expect speed: 0.000000 real_pulses:0 +I (32114) example: new speed:399.000000 +I (32124) example: expect speed: 0.000000 real_pulses:0 +I (32124) example: new speed:399.000000 +I (32134) example: expect speed: 0.000000 real_pulses:0 +I (32134) example: new speed:399.000000 +I (32144) example: expect speed: 0.000000 real_pulses:0 +I (32144) example: new speed:399.000000 +I (32154) example: expect speed: 0.000000 real_pulses:0 +I (32154) example: new speed:399.000000 +I (32164) example: expect speed: 0.000000 real_pulses:0 +I (32164) example: new speed:399.000000 +I (32174) example: expect speed: 0.000000 real_pulses:0 +I (32174) example: new speed:399.000000 +I (32184) example: expect speed: 0.000000 real_pulses:0 +I (32184) example: new speed:399.000000 +I (32194) example: expect speed: 0.000000 real_pulses:0 +I (32194) example: new speed:399.000000 +I (32204) example: expect speed: 0.000000 real_pulses:0 +I (32204) example: new speed:399.000000 +I (32214) example: expect speed: 0.000000 real_pulses:0 +I (32214) example: new speed:399.000000 +I (32224) example: expect speed: 0.000000 real_pulses:0 +I (32224) example: new speed:399.000000 +I (32234) example: expect speed: 0.000000 real_pulses:0 +I (32234) example: new speed:399.000000 +I (32244) example: expect speed: 0.000000 real_pulses:0 +I (32244) example: new speed:399.000000 +I (32254) example: expect speed: 0.000000 real_pulses:0 +I (32254) example: new speed:399.000000 +I (32264) example: expect speed: 0.000000 real_pulses:0 +I (32264) example: new speed:399.000000 +I (32274) example: expect speed: 0.000000 real_pulses:0 +I (32274) example: new speed:399.000000 +I (32284) example: expect speed: 0.000000 real_pulses:0 +I (32284) example: new speed:399.000000 +I (32294) example: expect speed: 0.000000 real_pulses:0 +I (32294) example: new speed:399.000000 +I (32304) example: expect speed: 0.000000 real_pulses:0 +I (32304) example: new speed:399.000000 +I (32314) example: expect speed: 0.000000 real_pulses:0 +I (32314) example: new speed:399.000000 +I (32324) example: expect speed: 0.000000 real_pulses:0 +I (32324) example: new speed:399.000000 +I (32334) example: expect speed: 0.000000 real_pulses:0 +I (32334) example: new speed:399.000000 +I (32344) example: expect speed: 0.000000 real_pulses:0 +I (32344) example: new speed:399.000000 +I (32354) example: expect speed: 0.000000 real_pulses:0 +I (32354) example: new speed:399.000000 +I (32364) example: expect speed: 0.000000 real_pulses:0 +I (32364) example: new speed:399.000000 +I (32374) example: expect speed: 0.000000 real_pulses:0 +I (32374) example: new speed:399.000000 +I (32384) example: expect speed: 0.000000 real_pulses:0 +I (32384) example: new speed:399.000000 +I (32394) example: expect speed: 0.000000 real_pulses:0 +I (32394) example: new speed:399.000000 +I (32404) example: expect speed: 0.000000 real_pulses:0 +I (32404) example: new speed:399.000000 +I (32414) example: expect speed: 0.000000 real_pulses:0 +I (32414) example: new speed:399.000000 +I (32424) example: expect speed: 0.000000 real_pulses:0 +I (32424) example: new speed:399.000000 +I (32434) example: expect speed: 0.000000 real_pulses:0 +I (32434) example: new speed:399.000000 +I (32444) example: expect speed: 0.000000 real_pulses:0 +I (32444) example: new speed:399.000000 +I (32454) example: expect speed: 0.000000 real_pulses:0 +I (32454) example: new speed:399.000000 +I (32464) example: expect speed: 0.000000 real_pulses:0 +I (32464) example: new speed:399.000000 +I (32474) example: expect speed: 0.000000 real_pulses:0 +I (32474) example: new speed:399.000000 +I (32484) example: expect speed: 0.000000 real_pulses:0 +I (32484) example: new speed:399.000000 +I (32494) example: expect speed: 0.000000 real_pulses:0 +I (32494) example: new speed:399.000000 +I (32504) example: expect speed: 0.000000 real_pulses:0 +I (32504) example: new speed:399.000000 +I (32514) example: expect speed: 0.000000 real_pulses:0 +I (32514) example: new speed:399.000000 +I (32524) example: expect speed: 0.000000 real_pulses:0 +I (32524) example: new speed:399.000000 +I (32534) example: expect speed: 0.000000 real_pulses:0 +I (32534) example: new speed:399.000000 +I (32544) example: expect speed: 0.000000 real_pulses:0 +I (32544) example: new speed:399.000000 +I (32554) example: expect speed: 0.000000 real_pulses:0 +I (32554) example: new speed:399.000000 +I (32564) example: expect speed: 0.000000 real_pulses:0 +I (32564) example: new speed:399.000000 +I (32574) example: expect speed: 0.000000 real_pulses:0 +I (32574) example: new speed:399.000000 +I (32584) example: expect speed: 0.000000 real_pulses:0 +I (32584) example: new speed:399.000000 +I (32594) example: expect speed: 0.000000 real_pulses:0 +I (32594) example: new speed:399.000000 +I (32604) example: expect speed: 0.000000 real_pulses:0 +I (32604) example: new speed:399.000000 +I (32614) example: expect speed: 0.000000 real_pulses:0 +I (32614) example: new speed:399.000000 +I (32624) example: expect speed: 0.000000 real_pulses:0 +I (32624) example: new speed:399.000000 +I (32634) example: expect speed: 0.000000 real_pulses:0 +I (32634) example: new speed:399.000000 +I (32644) example: expect speed: 0.000000 real_pulses:0 +I (32644) example: new speed:399.000000 +I (32654) example: expect speed: 0.000000 real_pulses:0 +I (32654) example: new speed:399.000000 +I (32664) example: expect speed: 0.000000 real_pulses:0 +I (32664) example: new speed:399.000000 +I (32674) example: expect speed: 0.000000 real_pulses:0 +I (32674) example: new speed:399.000000 +I (32684) example: expect speed: 0.000000 real_pulses:0 +I (32684) example: new speed:399.000000 +I (32694) example: expect speed: 0.000000 real_pulses:0 +I (32694) example: new speed:399.000000 +I (32704) example: expect speed: 0.000000 real_pulses:0 +I (32704) example: new speed:399.000000 +I (32714) example: expect speed: 0.000000 real_pulses:0 +I (32714) example: new speed:399.000000 +I (32724) example: expect speed: 0.000000 real_pulses:0 +I (32724) example: new speed:399.000000 +I (32734) example: expect speed: 0.000000 real_pulses:0 +I (32734) example: new speed:399.000000 +I (32744) example: expect speed: 0.000000 real_pulses:0 +I (32744) example: new speed:399.000000 +I (32754) example: expect speed: 0.000000 real_pulses:0 +I (32754) example: new speed:399.000000 +I (32764) example: expect speed: 0.000000 real_pulses:0 +I (32764) example: new speed:399.000000 +I (32774) example: expect speed: 0.000000 real_pulses:0 +I (32774) example: new speed:399.000000 +I (32784) example: expect speed: 0.000000 real_pulses:0 +I (32784) example: new speed:399.000000 +I (32794) example: expect speed: 0.000000 real_pulses:0 +I (32794) example: new speed:399.000000 +I (32804) example: expect speed: 0.000000 real_pulses:0 +I (32804) example: new speed:399.000000 +I (32814) example: expect speed: 0.000000 real_pulses:0 +I (32814) example: new speed:399.000000 +I (32824) example: expect speed: 0.000000 real_pulses:0 +I (32824) example: new speed:399.000000 +I (32834) example: expect speed: 0.000000 real_pulses:0 +I (32834) example: new speed:399.000000 +I (32844) example: expect speed: 0.000000 real_pulses:0 +I (32844) example: new speed:399.000000 +I (32854) example: expect speed: 0.000000 real_pulses:0 +I (32854) example: new speed:399.000000 +I (32864) example: expect speed: 0.000000 real_pulses:0 +I (32864) example: new speed:399.000000 +I (32874) example: expect speed: 0.000000 real_pulses:0 +I (32874) example: new speed:399.000000 +I (32884) example: expect speed: 0.000000 real_pulses:0 +I (32884) example: new speed:399.000000 +I (32894) example: expect speed: 0.000000 real_pulses:0 +I (32894) example: new speed:399.000000 +I (32904) example: expect speed: 0.000000 real_pulses:0 +I (32904) example: new speed:399.000000 +I (32914) example: expect speed: 0.000000 real_pulses:0 +I (32914) example: new speed:399.000000 +I (32924) example: expect speed: 0.000000 real_pulses:0 +I (32924) example: new speed:399.000000 +I (32934) example: expect speed: 0.000000 real_pulses:0 +I (32934) example: new speed:399.000000 +I (32944) example: expect speed: 0.000000 real_pulses:0 +I (32944) example: new speed:399.000000 +I (32954) example: expect speed: 0.000000 real_pulses:0 +I (32954) example: new speed:399.000000 +I (32964) example: expect speed: 0.000000 real_pulses:0 +I (32964) example: new speed:399.000000 +I (32974) example: expect speed: 0.000000 real_pulses:0 +I (32974) example: new speed:399.000000 +I (32984) example: expect speed: 0.000000 real_pulses:0 +I (32984) example: new speed:399.000000 +I (32994) example: expect speed: 0.000000 real_pulses:0 +I (32994) example: new speed:399.000000 +I (33004) example: expect speed: 0.000000 real_pulses:0 +I (33004) example: new speed:399.000000 +I (33014) example: expect speed: 0.000000 real_pulses:0 +I (33014) example: new speed:399.000000 +I (33024) example: expect speed: 0.000000 real_pulses:0 +I (33034) example: new speed:399.000000 +I (33034) example: expect speed: 0.000000 real_pulses:0 +I (33034) example: new speed:399.000000 +I (33044) example: expect speed: 0.000000 real_pulses:0 +I (33044) example: new speed:399.000000 +I (33054) example: expect speed: 0.000000 real_pulses:0 +I (33054) example: new speed:399.000000 +I (33064) example: expect speed: 0.000000 real_pulses:0 +I (33064) example: new speed:399.000000 +I (33074) example: expect speed: 0.000000 real_pulses:0 +I (33074) example: new speed:399.000000 +I (33084) example: expect speed: 0.000000 real_pulses:0 +I (33084) example: new speed:399.000000 +I (33094) example: expect speed: 0.000000 real_pulses:0 +I (33094) example: new speed:399.000000 +I (33104) example: expect speed: 0.000000 real_pulses:0 +I (33104) example: new speed:399.000000 +I (33114) example: expect speed: 0.000000 real_pulses:0 +I (33114) example: new speed:399.000000 +I (33124) example: expect speed: 0.000000 real_pulses:0 +I (33134) example: new speed:399.000000 +I (33134) example: expect speed: 0.000000 real_pulses:0 +I (33144) example: new speed:399.000000 +I (33144) example: expect speed: 0.000000 real_pulses:0 +I (33154) example: new speed:399.000000 +I (33154) example: expect speed: 0.000000 real_pulses:0 +I (33154) example: new speed:399.000000 +I (33164) example: expect speed: 0.000000 real_pulses:0 +I (33164) example: new speed:399.000000 +I (33174) example: expect speed: 0.000000 real_pulses:0 +I (33174) example: new speed:399.000000 +I (33184) example: expect speed: 0.000000 real_pulses:0 +I (33184) example: new speed:399.000000 +I (33194) example: expect speed: 0.000000 real_pulses:0 +I (33194) example: new speed:399.000000 +I (33204) example: expect speed: 0.000000 real_pulses:0 +I (33214) example: new speed:399.000000 +I (33214) example: expect speed: 0.000000 real_pulses:0 +I (33214) example: new speed:399.000000 +I (33224) example: expect speed: 0.000000 real_pulses:0 +I (33224) example: new speed:399.000000 +I (33234) example: expect speed: 0.000000 real_pulses:0 +I (33234) example: new speed:399.000000 +I (33244) example: expect speed: 0.000000 real_pulses:0 +I (33244) example: new speed:399.000000 +I (33254) example: expect speed: 0.000000 real_pulses:0 +I (33254) example: new speed:399.000000 +I (33264) example: expect speed: 0.000000 real_pulses:0 +I (33264) example: new speed:399.000000 +I (33274) example: expect speed: 0.000000 real_pulses:0 +I (33274) example: new speed:399.000000 +I (33284) example: expect speed: 0.000000 real_pulses:0 +I (33284) example: new speed:399.000000 +I (33294) example: expect speed: 0.000000 real_pulses:0 +I (33294) example: new speed:399.000000 +I (33304) example: expect speed: 0.000000 real_pulses:0 +I (33304) example: new speed:399.000000 +I (33314) example: expect speed: 0.000000 real_pulses:0 +I (33314) example: new speed:399.000000 +I (33324) example: expect speed: 0.000000 real_pulses:0 +I (33324) example: new speed:399.000000 +I (33334) example: expect speed: 0.000000 real_pulses:0 +I (33334) example: new speed:399.000000 +I (33344) example: expect speed: 0.000000 real_pulses:0 +I (33344) example: new speed:399.000000 +I (33354) example: expect speed: 0.000000 real_pulses:0 +I (33354) example: new speed:399.000000 +I (33364) example: expect speed: 0.000000 real_pulses:0 +I (33364) example: new speed:399.000000 +I (33374) example: expect speed: 0.000000 real_pulses:0 +I (33374) example: new speed:399.000000 +I (33384) example: expect speed: 0.000000 real_pulses:0 +I (33384) example: new speed:399.000000 +I (33394) example: expect speed: 0.000000 real_pulses:0 +I (33394) example: new speed:399.000000 +I (33404) example: expect speed: 0.000000 real_pulses:0 +I (33404) example: new speed:399.000000 +I (33414) example: expect speed: 0.000000 real_pulses:0 +I (33414) example: new speed:399.000000 +I (33424) example: expect speed: 0.000000 real_pulses:0 +I (33424) example: new speed:399.000000 +I (33434) example: expect speed: 0.000000 real_pulses:0 +I (33434) example: new speed:399.000000 +I (33444) example: expect speed: 0.000000 real_pulses:0 +I (33444) example: new speed:399.000000 +I (33454) example: expect speed: 0.000000 real_pulses:0 +I (33454) example: new speed:399.000000 +I (33464) example: expect speed: 0.000000 real_pulses:0 +I (33464) example: new speed:399.000000 +I (33474) example: expect speed: 0.000000 real_pulses:0 +I (33474) example: new speed:399.000000 +I (33484) example: expect speed: 0.000000 real_pulses:0 +I (33484) example: new speed:399.000000 +I (33494) example: expect speed: 0.000000 real_pulses:0 +I (33494) example: new speed:399.000000 +I (33504) example: expect speed: 0.000000 real_pulses:0 +I (33504) example: new speed:399.000000 +I (33514) example: expect speed: 0.000000 real_pulses:0 +I (33514) example: new speed:399.000000 +I (33524) example: expect speed: 0.000000 real_pulses:0 +I (33524) example: new speed:399.000000 +I (33534) example: expect speed: 0.000000 real_pulses:0 +I (33534) example: new speed:399.000000 +I (33544) example: expect speed: 0.000000 real_pulses:0 +I (33544) example: new speed:399.000000 +I (33554) example: expect speed: 0.000000 real_pulses:0 +I (33554) example: new speed:399.000000 +I (33564) example: expect speed: 0.000000 real_pulses:0 +I (33564) example: new speed:399.000000 +I (33574) example: expect speed: 0.000000 real_pulses:0 +I (33574) example: new speed:399.000000 +I (33584) example: expect speed: 0.000000 real_pulses:0 +I (33584) example: new speed:399.000000 +I (33594) example: expect speed: 0.000000 real_pulses:0 +I (33594) example: new speed:399.000000 +I (33604) example: expect speed: 0.000000 real_pulses:0 +I (33604) example: new speed:399.000000 +I (33614) example: expect speed: 0.000000 real_pulses:0 +I (33614) example: new speed:399.000000 +I (33624) example: expect speed: 0.000000 real_pulses:0 +I (33624) example: new speed:399.000000 +I (33634) example: expect speed: 0.000000 real_pulses:0 +I (33634) example: new speed:399.000000 +I (33644) example: expect speed: 0.000000 real_pulses:0 +I (33644) example: new speed:399.000000 +I (33654) example: expect speed: 0.000000 real_pulses:0 +I (33654) example: new speed:399.000000 +I (33664) example: expect speed: 0.000000 real_pulses:0 +I (33664) example: new speed:399.000000 +I (33674) example: expect speed: 0.000000 real_pulses:0 +I (33674) example: new speed:399.000000 +I (33684) example: expect speed: 0.000000 real_pulses:0 +I (33684) example: new speed:399.000000 +I (33694) example: expect speed: 0.000000 real_pulses:0 +I (33694) example: new speed:399.000000 +I (33704) example: expect speed: 0.000000 real_pulses:0 +I (33704) example: new speed:399.000000 +I (33714) example: expect speed: 0.000000 real_pulses:0 +I (33714) example: new speed:399.000000 +I (33724) example: expect speed: 0.000000 real_pulses:0 +I (33724) example: new speed:399.000000 +I (33734) example: expect speed: 0.000000 real_pulses:0 +I (33734) example: new speed:399.000000 +I (33744) example: expect speed: 0.000000 real_pulses:0 +I (33744) example: new speed:399.000000 +I (33754) example: expect speed: 0.000000 real_pulses:0 +I (33754) example: new speed:399.000000 +I (33764) example: expect speed: 0.000000 real_pulses:0 +I (33764) example: new speed:399.000000 +I (33774) example: expect speed: 0.000000 real_pulses:0 +I (33774) example: new speed:399.000000 +I (33784) example: expect speed: 0.000000 real_pulses:0 +I (33784) example: new speed:399.000000 +I (33794) example: expect speed: 0.000000 real_pulses:0 +I (33794) example: new speed:399.000000 +I (33804) example: expect speed: 0.000000 real_pulses:0 +I (33804) example: new speed:399.000000 +I (33814) example: expect speed: 0.000000 real_pulses:0 +I (33814) example: new speed:399.000000 +I (33824) example: expect speed: 0.000000 real_pulses:0 +I (33824) example: new speed:399.000000 +I (33834) example: expect speed: 0.000000 real_pulses:0 +I (33834) example: new speed:399.000000 +I (33844) example: expect speed: 0.000000 real_pulses:0 +I (33844) example: new speed:399.000000 +I (33854) example: expect speed: 0.000000 real_pulses:0 +I (33854) example: new speed:399.000000 +I (33864) example: expect speed: 0.000000 real_pulses:0 +I (33864) example: new speed:399.000000 +I (33874) example: expect speed: 0.000000 real_pulses:0 +I (33874) example: new speed:399.000000 +I (33884) example: expect speed: 0.000000 real_pulses:0 +I (33884) example: new speed:399.000000 +I (33894) example: expect speed: 0.000000 real_pulses:0 +I (33894) example: new speed:399.000000 +I (33904) example: expect speed: 0.000000 real_pulses:0 +I (33904) example: new speed:399.000000 +I (33914) example: expect speed: 0.000000 real_pulses:0 +I (33914) example: new speed:399.000000 +I (33924) example: expect speed: 0.000000 real_pulses:0 +I (33924) example: new speed:399.000000 +I (33934) example: expect speed: 0.000000 real_pulses:0 +I (33934) example: new speed:399.000000 +I (33944) example: expect speed: 0.000000 real_pulses:0 +I (33954) example: new speed:399.000000 +I (33954) example: expect speed: 0.000000 real_pulses:0 +I (33954) example: new speed:399.000000 +I (33964) example: expect speed: 0.000000 real_pulses:0 +I (33964) example: new speed:399.000000 +I (33974) example: expect speed: 0.000000 real_pulses:0 +I (33974) example: new speed:399.000000 +I (33984) example: expect speed: 0.000000 real_pulses:0 +I (33984) example: new speed:399.000000 +I (33994) example: expect speed: 0.000000 real_pulses:0 +I (33994) example: new speed:399.000000 +I (34004) example: expect speed: 0.000000 real_pulses:0 +I (34004) example: new speed:399.000000 +I (34014) example: expect speed: 0.000000 real_pulses:0 +I (34014) example: new speed:399.000000 +I (34024) example: expect speed: 0.000000 real_pulses:0 +I (34024) example: new speed:399.000000 +I (34034) example: expect speed: 0.000000 real_pulses:0 +I (34034) example: new speed:399.000000 +I (34044) example: expect speed: 0.000000 real_pulses:0 +I (34044) example: new speed:399.000000 +I (34054) example: expect speed: 0.000000 real_pulses:0 +I (34054) example: new speed:399.000000 +I (34064) example: expect speed: 0.000000 real_pulses:0 +I (34064) example: new speed:399.000000 +I (34074) example: expect speed: 0.000000 real_pulses:0 +I (34074) example: new speed:399.000000 +I (34084) example: expect speed: 0.000000 real_pulses:0 +I (34084) example: new speed:399.000000 +I (34094) example: expect speed: 0.000000 real_pulses:0 +I (34094) example: new speed:399.000000 +I (34104) example: expect speed: 0.000000 real_pulses:0 +I (34104) example: new speed:399.000000 +I (34114) example: expect speed: 0.000000 real_pulses:0 +I (34114) example: new speed:399.000000 +I (34124) example: expect speed: 0.000000 real_pulses:0 +I (34124) example: new speed:399.000000 +I (34134) example: expect speed: 0.000000 real_pulses:0 +I (34134) example: new speed:399.000000 +I (34144) example: expect speed: 0.000000 real_pulses:0 +I (34144) example: new speed:399.000000 +I (34154) example: expect speed: 0.000000 real_pulses:0 +I (34154) example: new speed:399.000000 +I (34164) example: expect speed: 0.000000 real_pulses:0 +I (34164) example: new speed:399.000000 +I (34174) example: expect speed: 0.000000 real_pulses:0 +I (34174) example: new speed:399.000000 +I (34184) example: expect speed: 0.000000 real_pulses:0 +I (34184) example: new speed:399.000000 +I (34194) example: expect speed: 0.000000 real_pulses:0 +I (34194) example: new speed:399.000000 +I (34204) example: expect speed: 0.000000 real_pulses:0 +I (34204) example: new speed:399.000000 +I (34214) example: expect speed: 0.000000 real_pulses:0 +I (34214) example: new speed:399.000000 +I (34224) example: expect speed: 0.000000 real_pulses:0 +I (34224) example: new speed:399.000000 +I (34234) example: expect speed: 0.000000 real_pulses:0 +I (34234) example: new speed:399.000000 +I (34244) example: expect speed: 0.000000 real_pulses:0 +I (34244) example: new speed:399.000000 +I (34254) example: expect speed: 0.000000 real_pulses:0 +I (34254) example: new speed:399.000000 +I (34264) example: expect speed: 0.000000 real_pulses:0 +I (34264) example: new speed:399.000000 +I (34274) example: expect speed: 0.000000 real_pulses:0 +I (34274) example: new speed:399.000000 +I (34284) example: expect speed: 0.000000 real_pulses:0 +I (34284) example: new speed:399.000000 +I (34294) example: expect speed: 0.000000 real_pulses:0 +I (34294) example: new speed:399.000000 +I (34304) example: expect speed: 0.000000 real_pulses:0 +I (34304) example: new speed:399.000000 +I (34314) example: expect speed: 0.000000 real_pulses:0 +I (34314) example: new speed:399.000000 +I (34324) example: expect speed: 0.000000 real_pulses:0 +I (34324) example: new speed:399.000000 +I (34334) example: expect speed: 0.000000 real_pulses:0 +I (34334) example: new speed:399.000000 +I (34344) example: expect speed: 0.000000 real_pulses:0 +I (34344) example: new speed:399.000000 +I (34354) example: expect speed: 0.000000 real_pulses:0 +I (34354) example: new speed:399.000000 +I (34364) example: expect speed: 0.000000 real_pulses:0 +I (34364) example: new speed:399.000000 +I (34374) example: expect speed: 0.000000 real_pulses:0 +I (34374) example: new speed:399.000000 +I (34384) example: expect speed: 0.000000 real_pulses:0 +I (34384) example: new speed:399.000000 +I (34394) example: expect speed: 0.000000 real_pulses:0 +I (34394) example: new speed:399.000000 +I (34404) example: expect speed: 0.000000 real_pulses:0 +I (34404) example: new speed:399.000000 +I (34414) example: expect speed: 0.000000 real_pulses:0 +I (34414) example: new speed:399.000000 +I (34424) example: expect speed: 0.000000 real_pulses:0 +I (34424) example: new speed:399.000000 +I (34434) example: expect speed: 0.000000 real_pulses:0 +I (34434) example: new speed:399.000000 +I (34444) example: expect speed: 0.000000 real_pulses:0 +I (34444) example: new speed:399.000000 +I (34454) example: expect speed: 0.000000 real_pulses:0 +I (34454) example: new speed:399.000000 +I (34464) example: expect speed: 0.000000 real_pulses:0 +I (34464) example: new speed:399.000000 +I (34474) example: expect speed: 0.000000 real_pulses:0 +I (34474) example: new speed:399.000000 +I (34484) example: expect speed: 0.000000 real_pulses:0 +I (34484) example: new speed:399.000000 +I (34494) example: expect speed: 0.000000 real_pulses:0 +I (34494) example: new speed:399.000000 +I (34504) example: expect speed: 0.000000 real_pulses:0 +I (34504) example: new speed:399.000000 +I (34514) example: expect speed: 0.000000 real_pulses:0 +I (34514) example: new speed:399.000000 +I (34524) example: expect speed: 0.000000 real_pulses:0 +I (34524) example: new speed:399.000000 +I (34534) example: expect speed: 0.000000 real_pulses:0 +I (34534) example: new speed:399.000000 +I (34544) example: expect speed: 0.000000 real_pulses:0 +I (34544) example: new speed:399.000000 +I (34554) example: expect speed: 0.000000 real_pulses:0 +I (34554) example: new speed:399.000000 +I (34564) example: expect speed: 0.000000 real_pulses:0 +I (34564) example: new speed:399.000000 +I (34574) example: expect speed: 0.000000 real_pulses:0 +I (34574) example: new speed:399.000000 +I (34584) example: expect speed: 0.000000 real_pulses:0 +I (34584) example: new speed:399.000000 +I (34594) example: expect speed: 0.000000 real_pulses:0 +I (34594) example: new speed:399.000000 +I (34604) example: expect speed: 0.000000 real_pulses:0 +I (34604) example: new speed:399.000000 +I (34614) example: expect speed: 0.000000 real_pulses:0 +I (34614) example: new speed:399.000000 +I (34624) example: expect speed: 0.000000 real_pulses:0 +I (34624) example: new speed:399.000000 +I (34634) example: expect speed: 0.000000 real_pulses:0 +I (34634) example: new speed:399.000000 +I (34644) example: expect speed: 0.000000 real_pulses:0 +I (34644) example: new speed:399.000000 +I (34654) example: expect speed: 0.000000 real_pulses:0 +I (34654) example: new speed:399.000000 +I (34664) example: expect speed: 0.000000 real_pulses:0 +I (34664) example: new speed:399.000000 +I (34674) example: expect speed: 0.000000 real_pulses:0 +I (34674) example: new speed:399.000000 +I (34684) example: expect speed: 0.000000 real_pulses:0 +I (34684) example: new speed:399.000000 +I (34694) example: expect speed: 0.000000 real_pulses:0 +I (34694) example: new speed:399.000000 +I (34704) example: expect speed: 0.000000 real_pulses:0 +I (34704) example: new speed:399.000000 +I (34714) example: expect speed: 0.000000 real_pulses:0 +I (34714) example: new speed:399.000000 +I (34724) example: expect speed: 0.000000 real_pulses:0 +I (34724) example: new speed:399.000000 +I (34734) example: expect speed: 0.000000 real_pulses:0 +I (34734) example: new speed:399.000000 +I (34744) example: expect speed: 0.000000 real_pulses:0 +I (34744) example: new speed:399.000000 +I (34754) example: expect speed: 0.000000 real_pulses:0 +I (34754) example: new speed:399.000000 +I (34764) example: expect speed: 0.000000 real_pulses:0 +I (34764) example: new speed:399.000000 +I (34774) example: expect speed: 0.000000 real_pulses:0 +I (34774) example: new speed:399.000000 +I (34784) example: expect speed: 0.000000 real_pulses:0 +I (34784) example: new speed:399.000000 +I (34794) example: expect speed: 0.000000 real_pulses:0 +I (34794) example: new speed:399.000000 +I (34804) example: expect speed: 0.000000 real_pulses:0 +I (34804) example: new speed:399.000000 +I (34814) example: expect speed: 0.000000 real_pulses:0 +I (34814) example: new speed:399.000000 +I (34824) example: expect speed: 0.000000 real_pulses:0 +I (34824) example: new speed:399.000000 +I (34834) example: expect speed: 0.000000 real_pulses:0 +I (34834) example: new speed:399.000000 +I (34844) example: expect speed: 0.000000 real_pulses:0 +I (34844) example: new speed:399.000000 +I (34854) example: expect speed: 0.000000 real_pulses:0 +I (34854) example: new speed:399.000000 +I (34864) example: expect speed: 0.000000 real_pulses:0 +I (34864) example: new speed:399.000000 +I (34874) example: expect speed: 0.000000 real_pulses:0 +I (34874) example: new speed:399.000000 +I (34884) example: expect speed: 0.000000 real_pulses:0 +I (34884) example: new speed:399.000000 +I (34894) example: expect speed: 0.000000 real_pulses:0 +I (34894) example: new speed:399.000000 +I (34904) example: expect speed: 0.000000 real_pulses:0 +I (34904) example: new speed:399.000000 +I (34914) example: expect speed: 0.000000 real_pulses:0 +I (34914) example: new speed:399.000000 +I (34924) example: expect speed: 0.000000 real_pulses:0 +I (34924) example: new speed:399.000000 +I (34934) example: expect speed: 0.000000 real_pulses:0 +I (34934) example: new speed:399.000000 +I (34944) example: expect speed: 0.000000 real_pulses:0 +I (34944) example: new speed:399.000000 +I (34954) example: expect speed: 0.000000 real_pulses:0 +I (34954) example: new speed:399.000000 +I (34964) example: expect speed: 0.000000 real_pulses:0 +I (34974) example: new speed:399.000000 +I (34974) example: expect speed: 0.000000 real_pulses:0 +I (34974) example: new speed:399.000000 +I (34984) example: expect speed: 0.000000 real_pulses:0 +I (34984) example: new speed:399.000000 +I (34994) example: expect speed: 0.000000 real_pulses:0 +I (34994) example: new speed:399.000000 +I (35004) example: expect speed: 0.000000 real_pulses:0 +I (35004) example: new speed:399.000000 +I (35014) example: expect speed: 0.000000 real_pulses:0 +I (35014) example: new speed:399.000000 +I (35024) example: expect speed: 0.000000 real_pulses:0 +I (35024) example: new speed:399.000000 +I (35034) example: expect speed: 0.000000 real_pulses:0 +I (35034) example: new speed:399.000000 +I (35044) example: expect speed: 0.000000 real_pulses:0 +I (35044) example: new speed:399.000000 +I (35054) example: expect speed: 0.000000 real_pulses:0 +I (35054) example: new speed:399.000000 +I (35064) example: expect speed: 0.000000 real_pulses:0 +I (35064) example: new speed:399.000000 +I (35074) example: expect speed: 0.000000 real_pulses:0 +I (35074) example: new speed:399.000000 +I (35084) example: expect speed: 0.000000 real_pulses:0 +I (35084) example: new speed:399.000000 +I (35094) example: expect speed: 0.000000 real_pulses:0 +I (35094) example: new speed:399.000000 +I (35104) example: expect speed: 0.000000 real_pulses:0 +I (35104) example: new speed:399.000000 +I (35114) example: expect speed: 0.000000 real_pulses:0 +I (35114) example: new speed:399.000000 +I (35124) example: expect speed: 0.000000 real_pulses:0 +I (35124) example: new speed:399.000000 +I (35134) example: expect speed: 0.000000 real_pulses:0 +I (35134) example: new speed:399.000000 +I (35144) example: expect speed: 0.000000 real_pulses:0 +I (35144) example: new speed:399.000000 +I (35154) example: expect speed: 0.000000 real_pulses:0 +I (35154) example: new speed:399.000000 +I (35164) example: expect speed: 0.000000 real_pulses:0 +I (35164) example: new speed:399.000000 +I (35174) example: expect speed: 0.000000 real_pulses:0 +I (35174) example: new speed:399.000000 +I (35184) example: expect speed: 0.000000 real_pulses:0 +I (35184) example: new speed:399.000000 +I (35194) example: expect speed: 0.000000 real_pulses:0 +I (35194) example: new speed:399.000000 +I (35204) example: expect speed: 0.000000 real_pulses:0 +I (35204) example: new speed:399.000000 +I (35214) example: expect speed: 0.000000 real_pulses:0 +I (35214) example: new speed:399.000000 +I (35224) example: expect speed: 0.000000 real_pulses:0 +I (35224) example: new speed:399.000000 +I (35234) example: expect speed: 0.000000 real_pulses:0 +I (35234) example: new speed:399.000000 +I (35244) example: expect speed: 0.000000 real_pulses:0 +I (35244) example: new speed:399.000000 +I (35254) example: expect speed: 0.000000 real_pulses:0 +I (35254) example: new speed:399.000000 +I (35264) example: expect speed: 0.000000 real_pulses:0 +I (35264) example: new speed:399.000000 +I (35274) example: expect speed: 0.000000 real_pulses:0 +I (35274) example: new speed:399.000000 +I (35284) example: expect speed: 0.000000 real_pulses:0 +I (35284) example: new speed:399.000000 +I (35294) example: expect speed: 0.000000 real_pulses:0 +I (35294) example: new speed:399.000000 +I (35304) example: expect speed: 0.000000 real_pulses:0 +I (35304) example: new speed:399.000000 +I (35314) example: expect speed: 0.000000 real_pulses:0 +I (35314) example: new speed:399.000000 +I (35324) example: expect speed: 0.000000 real_pulses:0 +I (35324) example: new speed:399.000000 +I (35334) example: expect speed: 0.000000 real_pulses:0 +I (35334) example: new speed:399.000000 +I (35344) example: expect speed: 0.000000 real_pulses:0 +I (35344) example: new speed:399.000000 +I (35354) example: expect speed: 0.000000 real_pulses:0 +I (35354) example: new speed:399.000000 +I (35364) example: expect speed: 0.000000 real_pulses:0 +I (35364) example: new speed:399.000000 +I (35374) example: expect speed: 0.000000 real_pulses:0 +I (35374) example: new speed:399.000000 +I (35384) example: expect speed: 0.000000 real_pulses:0 +I (35384) example: new speed:399.000000 +I (35394) example: expect speed: 0.000000 real_pulses:0 +I (35394) example: new speed:399.000000 +I (35404) example: expect speed: 0.000000 real_pulses:0 +I (35404) example: new speed:399.000000 +I (35414) example: expect speed: 0.000000 real_pulses:0 +I (35414) example: new speed:399.000000 +I (35424) example: expect speed: 0.000000 real_pulses:0 +I (35424) example: new speed:399.000000 +I (35434) example: expect speed: 0.000000 real_pulses:0 +I (35434) example: new speed:399.000000 +I (35444) example: expect speed: 0.000000 real_pulses:0 +I (35444) example: new speed:399.000000 +I (35454) example: expect speed: 0.000000 real_pulses:0 +I (35454) example: new speed:399.000000 +I (35464) example: expect speed: 0.000000 real_pulses:0 +I (35464) example: new speed:399.000000 +I (35474) example: expect speed: 0.000000 real_pulses:0 +I (35474) example: new speed:399.000000 +I (35484) example: expect speed: 0.000000 real_pulses:0 +I (35484) example: new speed:399.000000 +I (35494) example: expect speed: 0.000000 real_pulses:0 +I (35494) example: new speed:399.000000 +I (35504) example: expect speed: 0.000000 real_pulses:0 +I (35504) example: new speed:399.000000 +I (35514) example: expect speed: 0.000000 real_pulses:0 +I (35514) example: new speed:399.000000 +I (35524) example: expect speed: 0.000000 real_pulses:0 +I (35524) example: new speed:399.000000 +I (35534) example: expect speed: 0.000000 real_pulses:0 +I (35534) example: new speed:399.000000 +I (35544) example: expect speed: 0.000000 real_pulses:0 +I (35544) example: new speed:399.000000 +I (35554) example: expect speed: 0.000000 real_pulses:0 +I (35554) example: new speed:399.000000 +I (35564) example: expect speed: 0.000000 real_pulses:0 +I (35564) example: new speed:399.000000 +I (35574) example: expect speed: 0.000000 real_pulses:0 +I (35574) example: new speed:399.000000 +I (35584) example: expect speed: 0.000000 real_pulses:0 +I (35584) example: new speed:399.000000 +I (35594) example: expect speed: 0.000000 real_pulses:0 +I (35594) example: new speed:399.000000 +I (35604) example: expect speed: 0.000000 real_pulses:0 +I (35604) example: new speed:399.000000 +I (35614) example: expect speed: 0.000000 real_pulses:0 +I (35614) example: new speed:399.000000 +I (35624) example: expect speed: 0.000000 real_pulses:0 +I (35624) example: new speed:399.000000 +I (35634) example: expect speed: 0.000000 real_pulses:0 +I (35634) example: new speed:399.000000 +I (35644) example: expect speed: 0.000000 real_pulses:0 +I (35644) example: new speed:399.000000 +I (35654) example: expect speed: 0.000000 real_pulses:0 +I (35654) example: new speed:399.000000 +I (35664) example: expect speed: 0.000000 real_pulses:0 +I (35664) example: new speed:399.000000 +I (35674) example: expect speed: 0.000000 real_pulses:0 +I (35674) example: new speed:399.000000 +I (35684) example: expect speed: 0.000000 real_pulses:0 +I (35684) example: new speed:399.000000 +I (35694) example: expect speed: 0.000000 real_pulses:0 +I (35694) example: new speed:399.000000 +I (35704) example: expect speed: 0.000000 real_pulses:0 +I (35704) example: new speed:399.000000 +I (35714) example: expect speed: 0.000000 real_pulses:0 +I (35714) example: new speed:399.000000 +I (35724) example: expect speed: 0.000000 real_pulses:0 +I (35724) example: new speed:399.000000 +I (35734) example: expect speed: 0.000000 real_pulses:0 +I (35734) example: new speed:399.000000 +I (35744) example: expect speed: 0.000000 real_pulses:0 +I (35744) example: new speed:399.000000 +I (35754) example: expect speed: 0.000000 real_pulses:0 +I (35754) example: new speed:399.000000 +I (35764) example: expect speed: 0.000000 real_pulses:0 +I (35764) example: new speed:399.000000 +I (35774) example: expect speed: 0.000000 real_pulses:0 +I (35774) example: new speed:399.000000 +I (35784) example: expect speed: 0.000000 real_pulses:0 +I (35784) example: new speed:399.000000 +I (35794) example: expect speed: 0.000000 real_pulses:0 +I (35794) example: new speed:399.000000 +I (35804) example: expect speed: 0.000000 real_pulses:0 +I (35804) example: new speed:399.000000 +I (35814) example: expect speed: 0.000000 real_pulses:0 +I (35814) example: new speed:399.000000 +I (35824) example: expect speed: 0.000000 real_pulses:0 +I (35824) example: new speed:399.000000 +I (35834) example: expect speed: 0.000000 real_pulses:0 +I (35834) example: new speed:399.000000 +I (35844) example: expect speed: 0.000000 real_pulses:0 +I (35844) example: new speed:399.000000 +I (35854) example: expect speed: 0.000000 real_pulses:0 +I (35854) example: new speed:399.000000 +I (35864) example: expect speed: 0.000000 real_pulses:0 +I (35864) example: new speed:399.000000 +I (35874) example: expect speed: 0.000000 real_pulses:0 +I (35874) example: new speed:399.000000 +I (35884) example: expect speed: 0.000000 real_pulses:0 +I (35884) example: new speed:399.000000 +I (35894) example: expect speed: 0.000000 real_pulses:0 +I (35894) example: new speed:399.000000 +I (35904) example: expect speed: 0.000000 real_pulses:0 +I (35904) example: new speed:399.000000 +I (35914) example: expect speed: 0.000000 real_pulses:0 +I (35914) example: new speed:399.000000 +I (35924) example: expect speed: 0.000000 real_pulses:0 +I (35924) example: new speed:399.000000 +I (35934) example: expect speed: 0.000000 real_pulses:0 +I (35934) example: new speed:399.000000 +I (35944) example: expect speed: 0.000000 real_pulses:0 +I (35944) example: new speed:399.000000 +I (35954) example: expect speed: 0.000000 real_pulses:0 +I (35954) example: new speed:399.000000 +I (35964) example: expect speed: 0.000000 real_pulses:0 +I (35964) example: new speed:399.000000 +I (35974) example: expect speed: 0.000000 real_pulses:0 +I (35974) example: new speed:399.000000 +I (35984) example: expect speed: 0.000000 real_pulses:0 +I (35984) example: new speed:399.000000 +I (35994) example: expect speed: 0.000000 real_pulses:0 +I (35994) example: new speed:399.000000 +I (36004) example: expect speed: 0.000000 real_pulses:0 +I (36004) example: new speed:399.000000 +I (36014) example: expect speed: 0.000000 real_pulses:0 +I (36014) example: new speed:399.000000 +I (36024) example: expect speed: 0.000000 real_pulses:0 +I (36024) example: new speed:399.000000 +I (36034) example: expect speed: 0.000000 real_pulses:0 +I (36034) example: new speed:399.000000 +I (36044) example: expect speed: 0.000000 real_pulses:0 +I (36044) example: new speed:399.000000 +I (36054) example: expect speed: 0.000000 real_pulses:0 +I (36054) example: new speed:399.000000 +I (36064) example: expect speed: 0.000000 real_pulses:0 +I (36064) example: new speed:399.000000 +I (36074) example: expect speed: 0.000000 real_pulses:0 +I (36074) example: new speed:399.000000 +I (36084) example: expect speed: 0.000000 real_pulses:0 +I (36084) example: new speed:399.000000 +I (36094) example: expect speed: 0.000000 real_pulses:0 +I (36104) example: new speed:399.000000 +I (36104) example: expect speed: 0.000000 real_pulses:0 +I (36104) example: new speed:399.000000 +I (36114) example: expect speed: 0.000000 real_pulses:0 +I (36114) example: new speed:399.000000 +I (36124) example: expect speed: 0.000000 real_pulses:0 +I (36124) example: new speed:399.000000 +I (36134) example: expect speed: 0.000000 real_pulses:0 +I (36134) example: new speed:399.000000 +I (36144) example: expect speed: 0.000000 real_pulses:0 +I (36144) example: new speed:399.000000 +I (36154) example: expect speed: 0.000000 real_pulses:0 +I (36154) example: new speed:399.000000 +I (36164) example: expect speed: 0.000000 real_pulses:0 +I (36164) example: new speed:399.000000 +I (36174) example: expect speed: 0.000000 real_pulses:0 +I (36174) example: new speed:399.000000 +I (36184) example: expect speed: 0.000000 real_pulses:0 +I (36184) example: new speed:399.000000 +I (36194) example: expect speed: 0.000000 real_pulses:0 +I (36194) example: new speed:399.000000 +I (36204) example: expect speed: 0.000000 real_pulses:0 +I (36204) example: new speed:399.000000 +I (36214) example: expect speed: 0.000000 real_pulses:0 +I (36214) example: new speed:399.000000 +I (36224) example: expect speed: 0.000000 real_pulses:0 +I (36224) example: new speed:399.000000 +I (36234) example: expect speed: 0.000000 real_pulses:0 +I (36234) example: new speed:399.000000 +I (36244) example: expect speed: 0.000000 real_pulses:0 +I (36244) example: new speed:399.000000 +I (36254) example: expect speed: 0.000000 real_pulses:0 +I (36254) example: new speed:399.000000 +I (36264) example: expect speed: 0.000000 real_pulses:0 +I (36264) example: new speed:399.000000 +I (36274) example: expect speed: 0.000000 real_pulses:0 +I (36274) example: new speed:399.000000 +I (36284) example: expect speed: 0.000000 real_pulses:0 +I (36284) example: new speed:399.000000 +I (36294) example: expect speed: 0.000000 real_pulses:0 +I (36294) example: new speed:399.000000 +I (36304) example: expect speed: 0.000000 real_pulses:0 +I (36304) example: new speed:399.000000 +I (36314) example: expect speed: 0.000000 real_pulses:0 +I (36314) example: new speed:399.000000 +I (36324) example: expect speed: 0.000000 real_pulses:0 +I (36324) example: new speed:399.000000 +I (36334) example: expect speed: 0.000000 real_pulses:0 +I (36334) example: new speed:399.000000 +I (36344) example: expect speed: 0.000000 real_pulses:0 +I (36344) example: new speed:399.000000 +I (36354) example: expect speed: 0.000000 real_pulses:0 +I (36354) example: new speed:399.000000 +I (36364) example: expect speed: 0.000000 real_pulses:0 +I (36364) example: new speed:399.000000 +I (36374) example: expect speed: 0.000000 real_pulses:0 +I (36374) example: new speed:399.000000 +I (36384) example: expect speed: 0.000000 real_pulses:0 +I (36384) example: new speed:399.000000 +I (36394) example: expect speed: 0.000000 real_pulses:0 +I (36394) example: new speed:399.000000 +I (36404) example: expect speed: 0.000000 real_pulses:0 +I (36404) example: new speed:399.000000 +I (36414) example: expect speed: 0.000000 real_pulses:0 +I (36414) example: new speed:399.000000 +I (36424) example: expect speed: 0.000000 real_pulses:0 +I (36424) example: new speed:399.000000 +I (36434) example: expect speed: 0.000000 real_pulses:0 +I (36434) example: new speed:399.000000 +I (36444) example: expect speed: 0.000000 real_pulses:0 +I (36444) example: new speed:399.000000 +I (36454) example: expect speed: 0.000000 real_pulses:0 +I (36454) example: new speed:399.000000 +I (36464) example: expect speed: 0.000000 real_pulses:0 +I (36464) example: new speed:399.000000 +I (36474) example: expect speed: 0.000000 real_pulses:0 +I (36474) example: new speed:399.000000 +I (36484) example: expect speed: 0.000000 real_pulses:0 +I (36484) example: new speed:399.000000 +I (36494) example: expect speed: 0.000000 real_pulses:0 +I (36494) example: new speed:399.000000 +I (36504) example: expect speed: 0.000000 real_pulses:0 +I (36504) example: new speed:399.000000 +I (36514) example: expect speed: 0.000000 real_pulses:0 +I (36514) example: new speed:399.000000 +I (36524) example: expect speed: 0.000000 real_pulses:0 +I (36524) example: new speed:399.000000 +I (36534) example: expect speed: 0.000000 real_pulses:0 +I (36534) example: new speed:399.000000 +I (36544) example: expect speed: 0.000000 real_pulses:0 +I (36544) example: new speed:399.000000 +I (36554) example: expect speed: 0.000000 real_pulses:0 +I (36554) example: new speed:399.000000 +I (36564) example: expect speed: 0.000000 real_pulses:0 +I (36564) example: new speed:399.000000 +I (36574) example: expect speed: 0.000000 real_pulses:0 +I (36574) example: new speed:399.000000 +I (36584) example: expect speed: 0.000000 real_pulses:0 +I (36584) example: new speed:399.000000 +I (36594) example: expect speed: 0.000000 real_pulses:0 +I (36594) example: new speed:399.000000 +I (36604) example: expect speed: 0.000000 real_pulses:0 +I (36604) example: new speed:399.000000 +I (36614) example: expect speed: 0.000000 real_pulses:0 +I (36614) example: new speed:399.000000 +I (36624) example: expect speed: 0.000000 real_pulses:0 +I (36624) example: new speed:399.000000 +I (36634) example: expect speed: 0.000000 real_pulses:0 +I (36634) example: new speed:399.000000 +I (36644) example: expect speed: 0.000000 real_pulses:0 +I (36644) example: new speed:399.000000 +I (36654) example: expect speed: 0.000000 real_pulses:0 +I (36654) example: new speed:399.000000 +I (36664) example: expect speed: 0.000000 real_pulses:0 +I (36664) example: new speed:399.000000 +I (36674) example: expect speed: 0.000000 real_pulses:0 +I (36674) example: new speed:399.000000 +I (36684) example: expect speed: 0.000000 real_pulses:0 +I (36684) example: new speed:399.000000 +I (36694) example: expect speed: 0.000000 real_pulses:0 +I (36694) example: new speed:399.000000 +I (36704) example: expect speed: 0.000000 real_pulses:0 +I (36704) example: new speed:399.000000 +I (36714) example: expect speed: 0.000000 real_pulses:0 +I (36714) example: new speed:399.000000 +I (36724) example: expect speed: 0.000000 real_pulses:0 +I (36724) example: new speed:399.000000 +I (36734) example: expect speed: 0.000000 real_pulses:0 +I (36734) example: new speed:399.000000 +I (36744) example: expect speed: 0.000000 real_pulses:0 +I (36744) example: new speed:399.000000 +I (36754) example: expect speed: 0.000000 real_pulses:0 +I (36754) example: new speed:399.000000 +I (36764) example: expect speed: 0.000000 real_pulses:0 +I (36764) example: new speed:399.000000 +I (36774) example: expect speed: 0.000000 real_pulses:0 +I (36774) example: new speed:399.000000 +I (36784) example: expect speed: 0.000000 real_pulses:0 +I (36784) example: new speed:399.000000 +I (36794) example: expect speed: 0.000000 real_pulses:0 +I (36794) example: new speed:399.000000 +I (36804) example: expect speed: 0.000000 real_pulses:0 +I (36804) example: new speed:399.000000 +I (36814) example: expect speed: 0.000000 real_pulses:0 +I (36814) example: new speed:399.000000 +I (36824) example: expect speed: 0.000000 real_pulses:0 +I (36824) example: new speed:399.000000 +I (36834) example: expect speed: 0.000000 real_pulses:0 +I (36834) example: new speed:399.000000 +I (36844) example: expect speed: 0.000000 real_pulses:0 +I (36844) example: new speed:399.000000 +I (36854) example: expect speed: 0.000000 real_pulses:0 +I (36854) example: new speed:399.000000 +I (36864) example: expect speed: 0.000000 real_pulses:0 +I (36864) example: new speed:399.000000 +I (36874) example: expect speed: 0.000000 real_pulses:0 +I (36874) example: new speed:399.000000 +I (36884) example: expect speed: 0.000000 real_pulses:0 +I (36884) example: new speed:399.000000 +I (36894) example: expect speed: 0.000000 real_pulses:0 +I (36894) example: new speed:399.000000 +I (36904) example: expect speed: 0.000000 real_pulses:0 +I (36904) example: new speed:399.000000 +I (36914) example: expect speed: 0.000000 real_pulses:0 +I (36914) example: new speed:399.000000 +I (36924) example: expect speed: 0.000000 real_pulses:0 +I (36924) example: new speed:399.000000 +I (36934) example: expect speed: 0.000000 real_pulses:0 +I (36934) example: new speed:399.000000 +I (36944) example: expect speed: 0.000000 real_pulses:0 +I (36944) example: new speed:399.000000 +I (36954) example: expect speed: 0.000000 real_pulses:0 +I (36954) example: new speed:399.000000 +I (36964) example: expect speed: 0.000000 real_pulses:0 +I (36964) example: new speed:399.000000 +I (36974) example: expect speed: 0.000000 real_pulses:0 +I (36974) example: new speed:399.000000 +I (36984) example: expect speed: 0.000000 real_pulses:0 +I (36984) example: new speed:399.000000 +I (36994) example: expect speed: 0.000000 real_pulses:0 +I (36994) example: new speed:399.000000 +I (37004) example: expect speed: 0.000000 real_pulses:0 +I (37004) example: new speed:399.000000 +I (37014) example: expect speed: 0.000000 real_pulses:0 +I (37014) example: new speed:399.000000 +I (37024) example: expect speed: 0.000000 real_pulses:0 +I (37024) example: new speed:399.000000 +I (37034) example: expect speed: 0.000000 real_pulses:0 +I (37034) example: new speed:399.000000 +I (37044) example: expect speed: 0.000000 real_pulses:0 +I (37044) example: new speed:399.000000 +I (37054) example: expect speed: 0.000000 real_pulses:0 +I (37054) example: new speed:399.000000 +I (37064) example: expect speed: 0.000000 real_pulses:0 +I (37064) example: new speed:399.000000 +I (37074) example: expect speed: 0.000000 real_pulses:0 +I (37074) example: new speed:399.000000 +I (37084) example: expect speed: 0.000000 real_pulses:0 +I (37084) example: new speed:399.000000 +I (37094) example: expect speed: 0.000000 real_pulses:0 +I (37094) example: new speed:399.000000 +I (37104) example: expect speed: 0.000000 real_pulses:0 +I (37104) example: new speed:399.000000 +I (37114) example: expect speed: 0.000000 real_pulses:0 +I (37114) example: new speed:399.000000 +I (37124) example: expect speed: 0.000000 real_pulses:0 +I (37124) example: new speed:399.000000 +I (37134) example: expect speed: 0.000000 real_pulses:0 +I (37134) example: new speed:399.000000 +I (37144) example: expect speed: 0.000000 real_pulses:0 +I (37144) example: new speed:399.000000 +I (37154) example: expect speed: 0.000000 real_pulses:0 +I (37154) example: new speed:399.000000 +I (37164) example: expect speed: 0.000000 real_pulses:0 +I (37164) example: new speed:399.000000 +I (37174) example: expect speed: 0.000000 real_pulses:0 +I (37174) example: new speed:399.000000 +I (37184) example: expect speed: 0.000000 real_pulses:0 +I (37184) example: new speed:399.000000 +I (37194) example: expect speed: 0.000000 real_pulses:0 +I (37194) example: new speed:399.000000 +I (37204) example: expect speed: 0.000000 real_pulses:0 +I (37204) example: new speed:399.000000 +I (37214) example: expect speed: 0.000000 real_pulses:0 +I (37224) example: new speed:399.000000 +I (37224) example: expect speed: 0.000000 real_pulses:0 +I (37224) example: new speed:399.000000 +I (37234) example: expect speed: 0.000000 real_pulses:0 +I (37234) example: new speed:399.000000 +I (37244) example: expect speed: 0.000000 real_pulses:0 +I (37244) example: new speed:399.000000 +I (37254) example: expect speed: 0.000000 real_pulses:0 +I (37254) example: new speed:399.000000 +I (37264) example: expect speed: 0.000000 real_pulses:0 +I (37264) example: new speed:399.000000 +I (37274) example: expect speed: 0.000000 real_pulses:0 +I (37274) example: new speed:399.000000 +I (37284) example: expect speed: 0.000000 real_pulses:0 +I (37284) example: new speed:399.000000 +I (37294) example: expect speed: 0.000000 real_pulses:0 +I (37294) example: new speed:399.000000 +I (37304) example: expect speed: 0.000000 real_pulses:0 +I (37304) example: new speed:399.000000 +I (37314) example: expect speed: 0.000000 real_pulses:0 +I (37314) example: new speed:399.000000 +I (37324) example: expect speed: 0.000000 real_pulses:0 +I (37324) example: new speed:399.000000 +I (37334) example: expect speed: 0.000000 real_pulses:0 +I (37334) example: new speed:399.000000 +I (37344) example: expect speed: 0.000000 real_pulses:0 +I (37344) example: new speed:399.000000 +I (37354) example: expect speed: 0.000000 real_pulses:0 +I (37354) example: new speed:399.000000 +I (37364) example: expect speed: 0.000000 real_pulses:0 +I (37364) example: new speed:399.000000 +I (37374) example: expect speed: 0.000000 real_pulses:0 +I (37374) example: new speed:399.000000 +I (37384) example: expect speed: 0.000000 real_pulses:0 +I (37384) example: new speed:399.000000 +I (37394) example: expect speed: 0.000000 real_pulses:0 +I (37394) example: new speed:399.000000 +I (37404) example: expect speed: 0.000000 real_pulses:0 +I (37404) example: new speed:399.000000 +I (37414) example: expect speed: 0.000000 real_pulses:0 +I (37414) example: new speed:399.000000 +I (37424) example: expect speed: 0.000000 real_pulses:0 +I (37424) example: new speed:399.000000 +I (37434) example: expect speed: 0.000000 real_pulses:0 +I (37434) example: new speed:399.000000 +I (37444) example: expect speed: 0.000000 real_pulses:0 +I (37444) example: new speed:399.000000 +I (37454) example: expect speed: 0.000000 real_pulses:0 +I (37454) example: new speed:399.000000 +I (37464) example: expect speed: 0.000000 real_pulses:0 +I (37464) example: new speed:399.000000 +I (37474) example: expect speed: 0.000000 real_pulses:0 +I (37474) example: new speed:399.000000 +I (37484) example: expect speed: 0.000000 real_pulses:0 +I (37484) example: new speed:399.000000 +I (37494) example: expect speed: 0.000000 real_pulses:0 +I (37494) example: new speed:399.000000 +I (37504) example: expect speed: 0.000000 real_pulses:0 +I (37504) example: new speed:399.000000 +I (37514) example: expect speed: 0.000000 real_pulses:0 +I (37514) example: new speed:399.000000 +I (37524) example: expect speed: 0.000000 real_pulses:0 +I (37524) example: new speed:399.000000 +I (37534) example: expect speed: 0.000000 real_pulses:0 +I (37534) example: new speed:399.000000 +I (37544) example: expect speed: 0.000000 real_pulses:0 +I (37544) example: new speed:399.000000 +I (37554) example: expect speed: 0.000000 real_pulses:0 +I (37554) example: new speed:399.000000 +I (37564) example: expect speed: 0.000000 real_pulses:0 +I (37564) example: new speed:399.000000 +I (37574) example: expect speed: 0.000000 real_pulses:0 +I (37574) example: new speed:399.000000 +I (37584) example: expect speed: 0.000000 real_pulses:0 +I (37584) example: new speed:399.000000 +I (37594) example: expect speed: 0.000000 real_pulses:0 +I (37594) example: new speed:399.000000 +I (37604) example: expect speed: 0.000000 real_pulses:0 +I (37604) example: new speed:399.000000 +I (37614) example: expect speed: 0.000000 real_pulses:0 +I (37614) example: new speed:399.000000 +I (37624) example: expect speed: 0.000000 real_pulses:0 +I (37624) example: new speed:399.000000 +I (37634) example: expect speed: 0.000000 real_pulses:0 +I (37634) example: new speed:399.000000 +I (37644) example: expect speed: 0.000000 real_pulses:0 +I (37644) example: new speed:399.000000 +I (37654) example: expect speed: 0.000000 real_pulses:0 +I (37654) example: new speed:399.000000 +I (37664) example: expect speed: 0.000000 real_pulses:0 +I (37664) example: new speed:399.000000 +I (37674) example: expect speed: 0.000000 real_pulses:0 +I (37674) example: new speed:399.000000 +I (37684) example: expect speed: 0.000000 real_pulses:0 +I (37684) example: new speed:399.000000 +I (37694) example: expect speed: 0.000000 real_pulses:0 +I (37694) example: new speed:399.000000 +I (37704) example: expect speed: 0.000000 real_pulses:0 +I (37704) example: new speed:399.000000 +I (37714) example: expect speed: 0.000000 real_pulses:0 +I (37714) example: new speed:399.000000 +I (37724) example: expect speed: 0.000000 real_pulses:0 +I (37724) example: new speed:399.000000 +I (37734) example: expect speed: 0.000000 real_pulses:0 +I (37734) example: new speed:399.000000 +I (37744) example: expect speed: 0.000000 real_pulses:0 +I (37744) example: new speed:399.000000 +I (37754) example: expect speed: 0.000000 real_pulses:0 +I (37754) example: new speed:399.000000 +I (37764) example: expect speed: 0.000000 real_pulses:0 +I (37764) example: new speed:399.000000 +I (37774) example: expect speed: 0.000000 real_pulses:0 +I (37774) example: new speed:399.000000 +I (37784) example: expect speed: 0.000000 real_pulses:0 +I (37784) example: new speed:399.000000 +I (37794) example: expect speed: 0.000000 real_pulses:0 +I (37794) example: new speed:399.000000 +I (37804) example: expect speed: 0.000000 real_pulses:0 +I (37804) example: new speed:399.000000 +I (37814) example: expect speed: 0.000000 real_pulses:0 +I (37814) example: new speed:399.000000 +I (37824) example: expect speed: 0.000000 real_pulses:0 +I (37824) example: new speed:399.000000 +I (37834) example: expect speed: 0.000000 real_pulses:0 +I (37834) example: new speed:399.000000 +I (37844) example: expect speed: 0.000000 real_pulses:0 +I (37844) example: new speed:399.000000 +I (37854) example: expect speed: 0.000000 real_pulses:0 +I (37854) example: new speed:399.000000 +I (37864) example: expect speed: 0.000000 real_pulses:0 +I (37864) example: new speed:399.000000 +I (37874) example: expect speed: 0.000000 real_pulses:0 +I (37874) example: new speed:399.000000 +I (37884) example: expect speed: 0.000000 real_pulses:0 +I (37884) example: new speed:399.000000 +I (37894) example: expect speed: 0.000000 real_pulses:0 +I (37894) example: new speed:399.000000 +I (37904) example: expect speed: 0.000000 real_pulses:0 +I (37904) example: new speed:399.000000 +I (37914) example: expect speed: 0.000000 real_pulses:0 +I (37914) example: new speed:399.000000 +I (37924) example: expect speed: 0.000000 real_pulses:0 +I (37924) example: new speed:399.000000 +I (37934) example: expect speed: 0.000000 real_pulses:0 +I (37934) example: new speed:399.000000 +I (37944) example: expect speed: 0.000000 real_pulses:0 +I (37944) example: new speed:399.000000 +I (37954) example: expect speed: 0.000000 real_pulses:0 +I (37954) example: new speed:399.000000 +I (37964) example: expect speed: 0.000000 real_pulses:0 +I (37964) example: new speed:399.000000 +I (37974) example: expect speed: 0.000000 real_pulses:0 +I (37974) example: new speed:399.000000 +I (37984) example: expect speed: 0.000000 real_pulses:0 +I (37984) example: new speed:399.000000 +I (37994) example: expect speed: 0.000000 real_pulses:0 +I (37994) example: new speed:399.000000 +I (38004) example: expect speed: 0.000000 real_pulses:0 +I (38004) example: new speed:399.000000 +I (38014) example: expect speed: 0.000000 real_pulses:0 +I (38014) example: new speed:399.000000 +I (38024) example: expect speed: 0.000000 real_pulses:0 +I (38024) example: new speed:399.000000 +I (38034) example: expect speed: 0.000000 real_pulses:0 +I (38034) example: new speed:399.000000 +I (38044) example: expect speed: 0.000000 real_pulses:0 +I (38044) example: new speed:399.000000 +I (38054) example: expect speed: 0.000000 real_pulses:0 +I (38054) example: new speed:399.000000 +I (38064) example: expect speed: 0.000000 real_pulses:0 +I (38064) example: new speed:399.000000 +I (38074) example: expect speed: 0.000000 real_pulses:0 +I (38074) example: new speed:399.000000 +I (38084) example: expect speed: 0.000000 real_pulses:0 +I (38084) example: new speed:399.000000 +I (38094) example: expect speed: 0.000000 real_pulses:0 +I (38094) example: new speed:399.000000 +I (38104) example: expect speed: 0.000000 real_pulses:0 +I (38104) example: new speed:399.000000 +I (38114) example: expect speed: 0.000000 real_pulses:0 +I (38114) example: new speed:399.000000 +I (38124) example: expect speed: 0.000000 real_pulses:0 +I (38124) example: new speed:399.000000 +I (38134) example: expect speed: 0.000000 real_pulses:0 +I (38134) example: new speed:399.000000 +I (38144) example: expect speed: 0.000000 real_pulses:0 +I (38144) example: new speed:399.000000 +I (38154) example: expect speed: 0.000000 real_pulses:0 +I (38154) example: new speed:399.000000 +I (38164) example: expect speed: 0.000000 real_pulses:0 +I (38164) example: new speed:399.000000 +I (38174) example: expect speed: 0.000000 real_pulses:0 +I (38174) example: new speed:399.000000 +I (38184) example: expect speed: 0.000000 real_pulses:0 +I (38184) example: new speed:399.000000 +I (38194) example: expect speed: 0.000000 real_pulses:0 +I (38194) example: new speed:399.000000 +I (38204) example: expect speed: 0.000000 real_pulses:0 +I (38204) example: new speed:399.000000 +I (38214) example: expect speed: 0.000000 real_pulses:0 +I (38214) example: new speed:399.000000 +I (38224) example: expect speed: 0.000000 real_pulses:0 +I (38224) example: new speed:399.000000 +I (38234) example: expect speed: 0.000000 real_pulses:0 +I (38234) example: new speed:399.000000 +I (38244) example: expect speed: 0.000000 real_pulses:0 +I (38244) example: new speed:399.000000 +I (38254) example: expect speed: 0.000000 real_pulses:0 +I (38254) example: new speed:399.000000 +I (38264) example: expect speed: 0.000000 real_pulses:0 +I (38264) example: new speed:399.000000 +I (38274) example: expect speed: 0.000000 real_pulses:0 +I (38274) example: new speed:399.000000 +I (38284) example: expect speed: 0.000000 real_pulses:0 +I (38284) example: new speed:399.000000 +I (38294) example: expect speed: 0.000000 real_pulses:0 +I (38294) example: new speed:399.000000 +I (38304) example: expect speed: 0.000000 real_pulses:0 +I (38304) example: new speed:399.000000 +I (38314) example: expect speed: 0.000000 real_pulses:0 +I (38314) example: new speed:399.000000 +I (38324) example: expect speed: 0.000000 real_pulses:0 +I (38324) example: new speed:399.000000 +I (38334) example: expect speed: 0.000000 real_pulses:0 +I (38334) example: new speed:399.000000 +I (38344) example: expect speed: 0.000000 real_pulses:0 +I (38354) example: new speed:399.000000 +I (38354) example: expect speed: 0.000000 real_pulses:0 +I (38354) example: new speed:399.000000 +I (38364) example: expect speed: 0.000000 real_pulses:0 +I (38364) example: new speed:399.000000 +I (38374) example: expect speed: 0.000000 real_pulses:0 +I (38374) example: new speed:399.000000 +I (38384) example: expect speed: 0.000000 real_pulses:0 +I (38384) example: new speed:399.000000 +I (38394) example: expect speed: 0.000000 real_pulses:0 +I (38394) example: new speed:399.000000 +I (38404) example: expect speed: 0.000000 real_pulses:0 +I (38404) example: new speed:399.000000 +I (38414) example: expect speed: 0.000000 real_pulses:0 +I (38414) example: new speed:399.000000 +I (38424) example: expect speed: 0.000000 real_pulses:0 +I (38424) example: new speed:399.000000 +I (38434) example: expect speed: 0.000000 real_pulses:0 +I (38434) example: new speed:399.000000 +I (38444) example: expect speed: 0.000000 real_pulses:0 +I (38444) example: new speed:399.000000 +I (38454) example: expect speed: 0.000000 real_pulses:0 +I (38454) example: new speed:399.000000 +I (38464) example: expect speed: 0.000000 real_pulses:0 +I (38464) example: new speed:399.000000 +I (38474) example: expect speed: 0.000000 real_pulses:0 +I (38474) example: new speed:399.000000 +I (38484) example: expect speed: 0.000000 real_pulses:0 +I (38484) example: new speed:399.000000 +I (38494) example: expect speed: 0.000000 real_pulses:0 +I (38494) example: new speed:399.000000 +I (38504) example: expect speed: 0.000000 real_pulses:0 +I (38504) example: new speed:399.000000 +I (38514) example: expect speed: 0.000000 real_pulses:0 +I (38514) example: new speed:399.000000 +I (38524) example: expect speed: 0.000000 real_pulses:0 +I (38524) example: new speed:399.000000 +I (38534) example: expect speed: 0.000000 real_pulses:0 +I (38534) example: new speed:399.000000 +I (38544) example: expect speed: 0.000000 real_pulses:0 +I (38544) example: new speed:399.000000 +I (38554) example: expect speed: 0.000000 real_pulses:0 +I (38554) example: new speed:399.000000 +I (38564) example: expect speed: 0.000000 real_pulses:0 +I (38564) example: new speed:399.000000 +I (38574) example: expect speed: 0.000000 real_pulses:0 +I (38574) example: new speed:399.000000 +I (38584) example: expect speed: 0.000000 real_pulses:0 +I (38584) example: new speed:399.000000 +I (38594) example: expect speed: 0.000000 real_pulses:0 +I (38594) example: new speed:399.000000 +I (38604) example: expect speed: 0.000000 real_pulses:0 +I (38604) example: new speed:399.000000 +I (38614) example: expect speed: 0.000000 real_pulses:0 +I (38614) example: new speed:399.000000 +I (38624) example: expect speed: 0.000000 real_pulses:0 +I (38624) example: new speed:399.000000 +I (38634) example: expect speed: 0.000000 real_pulses:0 +I (38634) example: new speed:399.000000 +I (38644) example: expect speed: 0.000000 real_pulses:0 +I (38644) example: new speed:399.000000 +I (38654) example: expect speed: 0.000000 real_pulses:0 +I (38654) example: new speed:399.000000 +I (38664) example: expect speed: 0.000000 real_pulses:0 +I (38664) example: new speed:399.000000 +I (38674) example: expect speed: 0.000000 real_pulses:0 +I (38674) example: new speed:399.000000 +I (38684) example: expect speed: 0.000000 real_pulses:0 +I (38684) example: new speed:399.000000 +I (38694) example: expect speed: 0.000000 real_pulses:0 +I (38694) example: new speed:399.000000 +I (38704) example: expect speed: 0.000000 real_pulses:0 +I (38704) example: new speed:399.000000 +I (38714) example: expect speed: 0.000000 real_pulses:0 +I (38714) example: new speed:399.000000 +I (38724) example: expect speed: 0.000000 real_pulses:0 +I (38724) example: new speed:399.000000 +I (38734) example: expect speed: 0.000000 real_pulses:0 +I (38734) example: new speed:399.000000 +I (38744) example: expect speed: 0.000000 real_pulses:0 +I (38744) example: new speed:399.000000 +I (38754) example: expect speed: 0.000000 real_pulses:0 +I (38754) example: new speed:399.000000 +I (38764) example: expect speed: 0.000000 real_pulses:0 +I (38764) example: new speed:399.000000 +I (38774) example: expect speed: 0.000000 real_pulses:0 +I (38774) example: new speed:399.000000 +I (38784) example: expect speed: 0.000000 real_pulses:0 +I (38784) example: new speed:399.000000 +I (38794) example: expect speed: 0.000000 real_pulses:0 +I (38794) example: new speed:399.000000 +I (38804) example: expect speed: 0.000000 real_pulses:0 +I (38804) example: new speed:399.000000 +I (38814) example: expect speed: 0.000000 real_pulses:0 +I (38814) example: new speed:399.000000 +I (38824) example: expect speed: 0.000000 real_pulses:0 +I (38824) example: new speed:399.000000 +I (38834) example: expect speed: 0.000000 real_pulses:0 +I (38834) example: new speed:399.000000 +I (38844) example: expect speed: 0.000000 real_pulses:0 +I (38844) example: new speed:399.000000 +I (38854) example: expect speed: 0.000000 real_pulses:0 +I (38854) example: new speed:399.000000 +I (38864) example: expect speed: 0.000000 real_pulses:0 +I (38864) example: new speed:399.000000 +I (38874) example: expect speed: 0.000000 real_pulses:0 +I (38874) example: new speed:399.000000 +I (38884) example: expect speed: 0.000000 real_pulses:0 +I (38884) example: new speed:399.000000 +I (38894) example: expect speed: 0.000000 real_pulses:0 +I (38894) example: new speed:399.000000 +I (38904) example: expect speed: 0.000000 real_pulses:0 +I (38904) example: new speed:399.000000 +I (38914) example: expect speed: 0.000000 real_pulses:0 +I (38914) example: new speed:399.000000 +I (38924) example: expect speed: 0.000000 real_pulses:0 +I (38924) example: new speed:399.000000 +I (38934) example: expect speed: 0.000000 real_pulses:0 +I (38934) example: new speed:399.000000 +I (38944) example: expect speed: 0.000000 real_pulses:0 +I (38944) example: new speed:399.000000 +I (38954) example: expect speed: 0.000000 real_pulses:0 +I (38954) example: new speed:399.000000 +I (38964) example: expect speed: 0.000000 real_pulses:0 +I (38964) example: new speed:399.000000 +I (38974) example: expect speed: 0.000000 real_pulses:0 +I (38974) example: new speed:399.000000 +I (38984) example: expect speed: 0.000000 real_pulses:0 +I (38984) example: new speed:399.000000 +I (38994) example: expect speed: 0.000000 real_pulses:0 +I (38994) example: new speed:399.000000 +I (39004) example: expect speed: 0.000000 real_pulses:0 +I (39004) example: new speed:399.000000 +I (39014) example: expect speed: 0.000000 real_pulses:0 +I (39014) example: new speed:399.000000 +I (39024) example: expect speed: 0.000000 real_pulses:0 +I (39024) example: new speed:399.000000 +I (39034) example: expect speed: 0.000000 real_pulses:0 +I (39034) example: new speed:399.000000 +I (39044) example: expect speed: 0.000000 real_pulses:0 +I (39044) example: new speed:399.000000 +I (39054) example: expect speed: 0.000000 real_pulses:0 +I (39054) example: new speed:399.000000 +I (39064) example: expect speed: 0.000000 real_pulses:0 +I (39064) example: new speed:399.000000 +I (39074) example: expect speed: 0.000000 real_pulses:0 +I (39074) example: new speed:399.000000 +I (39084) example: expect speed: 0.000000 real_pulses:0 +I (39084) example: new speed:399.000000 +I (39094) example: expect speed: 0.000000 real_pulses:0 +I (39094) example: new speed:399.000000 +I (39104) example: expect speed: 0.000000 real_pulses:0 +I (39104) example: new speed:399.000000 +I (39114) example: expect speed: 0.000000 real_pulses:0 +I (39114) example: new speed:399.000000 +I (39124) example: expect speed: 0.000000 real_pulses:0 +I (39124) example: new speed:399.000000 +I (39134) example: expect speed: 0.000000 real_pulses:0 +I (39134) example: new speed:399.000000 +I (39144) example: expect speed: 0.000000 real_pulses:0 +I (39144) example: new speed:399.000000 +I (39154) example: expect speed: 0.000000 real_pulses:0 +I (39154) example: new speed:399.000000 +I (39164) example: expect speed: 0.000000 real_pulses:0 +I (39164) example: new speed:399.000000 +I (39174) example: expect speed: 0.000000 real_pulses:0 +I (39174) example: new speed:399.000000 +I (39184) example: expect speed: 0.000000 real_pulses:0 +I (39184) example: new speed:399.000000 +I (39194) example: expect speed: 0.000000 real_pulses:0 +I (39194) example: new speed:399.000000 +I (39204) example: expect speed: 0.000000 real_pulses:0 +I (39204) example: new speed:399.000000 +I (39214) example: expect speed: 0.000000 real_pulses:0 +I (39214) example: new speed:399.000000 +I (39224) example: expect speed: 0.000000 real_pulses:0 +I (39224) example: new speed:399.000000 +I (39234) example: expect speed: 0.000000 real_pulses:0 +I (39234) example: new speed:399.000000 +I (39244) example: expect speed: 0.000000 real_pulses:0 +I (39244) example: new speed:399.000000 +I (39254) example: expect speed: 0.000000 real_pulses:0 +I (39254) example: new speed:399.000000 +I (39264) example: expect speed: 0.000000 real_pulses:0 +I (39264) example: new speed:399.000000 +I (39274) example: expect speed: 0.000000 real_pulses:0 +I (39274) example: new speed:399.000000 +I (39284) example: expect speed: 0.000000 real_pulses:0 +I (39284) example: new speed:399.000000 +I (39294) example: expect speed: 0.000000 real_pulses:0 +I (39294) example: new speed:399.000000 +I (39304) example: expect speed: 0.000000 real_pulses:0 +I (39304) example: new speed:399.000000 +I (39314) example: expect speed: 0.000000 real_pulses:0 +I (39314) example: new speed:399.000000 +I (39324) example: expect speed: 0.000000 real_pulses:0 +I (39324) example: new speed:399.000000 +I (39334) example: expect speed: 0.000000 real_pulses:0 +I (39334) example: new speed:399.000000 +I (39344) example: expect speed: 0.000000 real_pulses:0 +I (39344) example: new speed:399.000000 +I (39354) example: expect speed: 0.000000 real_pulses:0 +I (39354) example: new speed:399.000000 +I (39364) example: expect speed: 0.000000 real_pulses:0 +I (39364) example: new speed:399.000000 +I (39374) example: expect speed: 0.000000 real_pulses:0 +I (39374) example: new speed:399.000000 +I (39384) example: expect speed: 0.000000 real_pulses:0 +I (39384) example: new speed:399.000000 +I (39394) example: expect speed: 0.000000 real_pulses:0 +I (39394) example: new speed:399.000000 +I (39404) example: expect speed: 0.000000 real_pulses:0 +I (39404) example: new speed:399.000000 +I (39414) example: expect speed: 0.000000 real_pulses:0 +I (39414) example: new speed:399.000000 +I (39424) example: expect speed: 0.000000 real_pulses:0 +I (39424) example: new speed:399.000000 +I (39434) example: expect speed: 0.000000 real_pulses:0 +I (39434) example: new speed:399.000000 +I (39444) example: expect speed: 0.000000 real_pulses:0 +I (39444) example: new speed:399.000000 +I (39454) example: expect speed: 0.000000 real_pulses:0 +I (39454) example: new speed:399.000000 +I (39464) example: expect speed: 0.000000 real_pulses:0 +I (39464) example: new speed:399.000000 +I (39474) example: expect speed: 0.000000 real_pulses:0 +I (39484) example: new speed:399.000000 +I (39484) example: expect speed: 0.000000 real_pulses:0 +I (39484) example: new speed:399.000000 +I (39494) example: expect speed: 0.000000 real_pulses:0 +I (39494) example: new speed:399.000000 +I (39504) example: expect speed: 0.000000 real_pulses:0 +I (39504) example: new speed:399.000000 +I (39514) example: expect speed: 0.000000 real_pulses:0 +I (39514) example: new speed:399.000000 +I (39524) example: expect speed: 0.000000 real_pulses:0 +I (39524) example: new speed:399.000000 +I (39534) example: expect speed: 0.000000 real_pulses:0 +I (39534) example: new speed:399.000000 +I (39544) example: expect speed: 0.000000 real_pulses:0 +I (39544) example: new speed:399.000000 +I (39554) example: expect speed: 0.000000 real_pulses:0 +I (39554) example: new speed:399.000000 +I (39564) example: expect speed: 0.000000 real_pulses:0 +I (39564) example: new speed:399.000000 +I (39574) example: expect speed: 0.000000 real_pulses:0 +I (39574) example: new speed:399.000000 +I (39584) example: expect speed: 0.000000 real_pulses:0 +I (39584) example: new speed:399.000000 +I (39594) example: expect speed: 0.000000 real_pulses:0 +I (39594) example: new speed:399.000000 +I (39604) example: expect speed: 0.000000 real_pulses:0 +I (39604) example: new speed:399.000000 +I (39614) example: expect speed: 0.000000 real_pulses:0 +I (39614) example: new speed:399.000000 +I (39624) example: expect speed: 0.000000 real_pulses:0 +I (39624) example: new speed:399.000000 +I (39634) example: expect speed: 0.000000 real_pulses:0 +I (39634) example: new speed:399.000000 +I (39644) example: expect speed: 0.000000 real_pulses:0 +I (39644) example: new speed:399.000000 +I (39654) example: expect speed: 0.000000 real_pulses:0 +I (39654) example: new speed:399.000000 +I (39664) example: expect speed: 0.000000 real_pulses:0 +I (39664) example: new speed:399.000000 +I (39674) example: expect speed: 0.000000 real_pulses:0 +I (39674) example: new speed:399.000000 +I (39684) example: expect speed: 0.000000 real_pulses:0 +I (39684) example: new speed:399.000000 +I (39694) example: expect speed: 0.000000 real_pulses:0 +I (39694) example: new speed:399.000000 +I (39704) example: expect speed: 0.000000 real_pulses:0 +I (39704) example: new speed:399.000000 +I (39714) example: expect speed: 0.000000 real_pulses:0 +I (39714) example: new speed:399.000000 +I (39724) example: expect speed: 0.000000 real_pulses:0 +I (39724) example: new speed:399.000000 +I (39734) example: expect speed: 0.000000 real_pulses:0 +I (39734) example: new speed:399.000000 +I (39744) example: expect speed: 0.000000 real_pulses:0 +I (39744) example: new speed:399.000000 +I (39754) example: expect speed: 0.000000 real_pulses:0 +I (39754) example: new speed:399.000000 +I (39764) example: expect speed: 0.000000 real_pulses:0 +I (39764) example: new speed:399.000000 +I (39774) example: expect speed: 0.000000 real_pulses:0 +I (39774) example: new speed:399.000000 +I (39784) example: expect speed: 0.000000 real_pulses:0 +I (39784) example: new speed:399.000000 +I (39794) example: expect speed: 0.000000 real_pulses:0 +I (39794) example: new speed:399.000000 +I (39804) example: expect speed: 0.000000 real_pulses:0 +I (39804) example: new speed:399.000000 +I (39814) example: expect speed: 0.000000 real_pulses:0 +I (39814) example: new speed:399.000000 +I (39824) example: expect speed: 0.000000 real_pulses:0 +I (39824) example: new speed:399.000000 +I (39834) example: expect speed: 0.000000 real_pulses:0 +I (39834) example: new speed:399.000000 +I (39844) example: expect speed: 0.000000 real_pulses:0 +I (39844) example: new speed:399.000000 +I (39854) example: expect speed: 0.000000 real_pulses:0 +I (39854) example: new speed:399.000000 +I (39864) example: expect speed: 0.000000 real_pulses:0 +I (39864) example: new speed:399.000000 +I (39874) example: expect speed: 0.000000 real_pulses:0 +I (39874) example: new speed:399.000000 +I (39884) example: expect speed: 0.000000 real_pulses:0 +I (39884) example: new speed:399.000000 +I (39894) example: expect speed: 0.000000 real_pulses:0 +I (39894) example: new speed:399.000000 +I (39904) example: expect speed: 0.000000 real_pulses:0 +I (39904) example: new speed:399.000000 +I (39914) example: expect speed: 0.000000 real_pulses:0 +I (39914) example: new speed:399.000000 +I (39924) example: expect speed: 0.000000 real_pulses:0 +I (39924) example: new speed:399.000000 +I (39934) example: expect speed: 0.000000 real_pulses:0 +I (39934) example: new speed:399.000000 +I (39944) example: expect speed: 0.000000 real_pulses:0 +I (39944) example: new speed:399.000000 +I (39954) example: expect speed: 0.000000 real_pulses:0 +I (39954) example: new speed:399.000000 +I (39964) example: expect speed: 0.000000 real_pulses:0 +I (39964) example: new speed:399.000000 +I (39974) example: expect speed: 0.000000 real_pulses:0 +I (39974) example: new speed:399.000000 +I (39984) example: expect speed: 0.000000 real_pulses:0 +I (39984) example: new speed:399.000000 +I (39994) example: expect speed: 0.000000 real_pulses:0 +I (39994) example: new speed:399.000000 +I (40004) example: expect speed: 0.000000 real_pulses:0 +I (40004) example: new speed:399.000000 +I (40014) example: expect speed: 0.000000 real_pulses:0 +I (40014) example: new speed:399.000000 +I (40024) example: expect speed: 0.000000 real_pulses:0 +I (40024) example: new speed:399.000000 +I (40034) example: expect speed: 0.000000 real_pulses:0 +I (40034) example: new speed:399.000000 +I (40044) example: expect speed: 0.000000 real_pulses:0 +I (40044) example: new speed:399.000000 +I (40054) example: expect speed: 0.000000 real_pulses:0 +I (40054) example: new speed:399.000000 +I (40064) example: expect speed: 0.000000 real_pulses:0 +I (40064) example: new speed:399.000000 +I (40074) example: expect speed: 0.000000 real_pulses:0 +I (40074) example: new speed:399.000000 +I (40084) example: expect speed: 0.000000 real_pulses:0 +I (40084) example: new speed:399.000000 +I (40094) example: expect speed: 0.000000 real_pulses:0 +I (40094) example: new speed:399.000000 +I (40104) example: expect speed: 0.000000 real_pulses:0 +I (40104) example: new speed:399.000000 +I (40114) example: expect speed: 0.000000 real_pulses:0 +I (40114) example: new speed:399.000000 +I (40124) example: expect speed: 0.000000 real_pulses:0 +I (40124) example: new speed:399.000000 +I (40134) example: expect speed: 0.000000 real_pulses:0 +I (40134) example: new speed:399.000000 +I (40144) example: expect speed: 0.000000 real_pulses:0 +I (40144) example: new speed:399.000000 +I (40154) example: expect speed: 0.000000 real_pulses:0 +I (40154) example: new speed:399.000000 +I (40164) example: expect speed: 0.000000 real_pulses:0 +I (40164) example: new speed:399.000000 +I (40174) example: expect speed: 0.000000 real_pulses:0 +I (40174) example: new speed:399.000000 +I (40184) example: expect speed: 0.000000 real_pulses:0 +I (40184) example: new speed:399.000000 +I (40194) example: expect speed: 0.000000 real_pulses:0 +I (40194) example: new speed:399.000000 +I (40204) example: expect speed: 0.000000 real_pulses:0 +I (40204) example: new speed:399.000000 +I (40214) example: expect speed: 0.000000 real_pulses:0 +I (40214) example: new speed:399.000000 +I (40224) example: expect speed: 0.000000 real_pulses:0 +I (40224) example: new speed:399.000000 +I (40234) example: expect speed: 0.000000 real_pulses:0 +I (40234) example: new speed:399.000000 +I (40244) example: expect speed: 0.000000 real_pulses:0 +I (40244) example: new speed:399.000000 +I (40254) example: expect speed: 0.000000 real_pulses:0 +I (40254) example: new speed:399.000000 +I (40264) example: expect speed: 0.000000 real_pulses:0 +I (40264) example: new speed:399.000000 +I (40274) example: expect speed: 0.000000 real_pulses:0 +I (40274) example: new speed:399.000000 +I (40284) example: expect speed: 0.000000 real_pulses:0 +I (40284) example: new speed:399.000000 +I (40294) example: expect speed: 0.000000 real_pulses:0 +I (40294) example: new speed:399.000000 +I (40304) example: expect speed: 0.000000 real_pulses:0 +I (40304) example: new speed:399.000000 +I (40314) example: expect speed: 0.000000 real_pulses:0 +I (40314) example: new speed:399.000000 +I (40324) example: expect speed: 0.000000 real_pulses:0 +I (40324) example: new speed:399.000000 +I (40334) example: expect speed: 0.000000 real_pulses:0 +I (40334) example: new speed:399.000000 +I (40344) example: expect speed: 0.000000 real_pulses:0 +I (40344) example: new speed:399.000000 +I (40354) example: expect speed: 0.000000 real_pulses:0 +I (40354) example: new speed:399.000000 +I (40364) example: expect speed: 0.000000 real_pulses:0 +I (40364) example: new speed:399.000000 +I (40374) example: expect speed: 0.000000 real_pulses:0 +I (40374) example: new speed:399.000000 +I (40384) example: expect speed: 0.000000 real_pulses:0 +I (40384) example: new speed:399.000000 +I (40394) example: expect speed: 0.000000 real_pulses:0 +I (40394) example: new speed:399.000000 +I (40404) example: expect speed: 0.000000 real_pulses:0 +I (40404) example: new speed:399.000000 +I (40414) example: expect speed: 0.000000 real_pulses:0 +I (40414) example: new speed:399.000000 +I (40424) example: expect speed: 0.000000 real_pulses:0 +I (40424) example: new speed:399.000000 +I (40434) example: expect speed: 0.000000 real_pulses:0 +I (40434) example: new speed:399.000000 +I (40444) example: expect speed: 0.000000 real_pulses:0 +I (40444) example: new speed:399.000000 +I (40454) example: expect speed: 0.000000 real_pulses:0 +I (40454) example: new speed:399.000000 +I (40464) example: expect speed: 0.000000 real_pulses:0 +I (40464) example: new speed:399.000000 +I (40474) example: expect speed: 0.000000 real_pulses:0 +I (40474) example: new speed:399.000000 +I (40484) example: expect speed: 0.000000 real_pulses:0 +I (40484) example: new speed:399.000000 +I (40494) example: expect speed: 0.000000 real_pulses:0 +I (40504) example: new speed:399.000000 +I (40504) example: expect speed: 0.000000 real_pulses:0 +I (40504) example: new speed:399.000000 +I (40514) example: expect speed: 0.000000 real_pulses:0 +I (40514) example: new speed:399.000000 +I (40524) example: expect speed: 0.000000 real_pulses:0 +I (40524) example: new speed:399.000000 +I (40534) example: expect speed: 0.000000 real_pulses:0 +I (40534) example: new speed:399.000000 +I (40544) example: expect speed: 0.000000 real_pulses:0 +I (40544) example: new speed:399.000000 +I (40554) example: expect speed: 0.000000 real_pulses:0 +I (40554) example: new speed:399.000000 +I (40564) example: expect speed: 0.000000 real_pulses:0 +I (40564) example: new speed:399.000000 +I (40574) example: expect speed: 0.000000 real_pulses:0 +I (40574) example: new speed:399.000000 +I (40584) example: expect speed: 0.000000 real_pulses:0 +I (40584) example: new speed:399.000000 +I (40594) example: expect speed: 0.000000 real_pulses:0 +I (40594) example: new speed:399.000000 +I (40604) example: expect speed: 0.000000 real_pulses:0 +I (40604) example: new speed:399.000000 +I (40614) example: expect speed: 0.000000 real_pulses:0 +I (40614) example: new speed:399.000000 +I (40624) example: expect speed: 0.000000 real_pulses:0 +I (40624) example: new speed:399.000000 +I (40634) example: expect speed: 0.000000 real_pulses:0 +I (40634) example: new speed:399.000000 +I (40644) example: expect speed: 0.000000 real_pulses:0 +I (40644) example: new speed:399.000000 +I (40654) example: expect speed: 0.000000 real_pulses:0 +I (40654) example: new speed:399.000000 +I (40664) example: expect speed: 0.000000 real_pulses:0 +I (40664) example: new speed:399.000000 +I (40674) example: expect speed: 0.000000 real_pulses:0 +I (40674) example: new speed:399.000000 +I (40684) example: expect speed: 0.000000 real_pulses:0 +I (40684) example: new speed:399.000000 +I (40694) example: expect speed: 0.000000 real_pulses:0 +I (40694) example: new speed:399.000000 +I (40704) example: expect speed: 0.000000 real_pulses:0 +I (40704) example: new speed:399.000000 +I (40714) example: expect speed: 0.000000 real_pulses:0 +I (40714) example: new speed:399.000000 +I (40724) example: expect speed: 0.000000 real_pulses:0 +I (40724) example: new speed:399.000000 +I (40734) example: expect speed: 0.000000 real_pulses:0 +I (40734) example: new speed:399.000000 +I (40744) example: expect speed: 0.000000 real_pulses:0 +I (40744) example: new speed:399.000000 +I (40754) example: expect speed: 0.000000 real_pulses:0 +I (40754) example: new speed:399.000000 +I (40764) example: expect speed: 0.000000 real_pulses:0 +I (40764) example: new speed:399.000000 +I (40774) example: expect speed: 0.000000 real_pulses:0 +I (40774) example: new speed:399.000000 +I (40784) example: expect speed: 0.000000 real_pulses:0 +I (40784) example: new speed:399.000000 +I (40794) example: expect speed: 0.000000 real_pulses:0 +I (40794) example: new speed:399.000000 +I (40804) example: expect speed: 0.000000 real_pulses:0 +I (40804) example: new speed:399.000000 +I (40814) example: expect speed: 0.000000 real_pulses:0 +I (40814) example: new speed:399.000000 +I (40824) example: expect speed: 0.000000 real_pulses:0 +I (40824) example: new speed:399.000000 +I (40834) example: expect speed: 0.000000 real_pulses:0 +I (40834) example: new speed:399.000000 +I (40844) example: expect speed: 0.000000 real_pulses:0 +I (40844) example: new speed:399.000000 +I (40854) example: expect speed: 0.000000 real_pulses:0 +I (40854) example: new speed:399.000000 +I (40864) example: expect speed: 0.000000 real_pulses:0 +I (40864) example: new speed:399.000000 +I (40874) example: expect speed: 0.000000 real_pulses:0 +I (40874) example: new speed:399.000000 +I (40884) example: expect speed: 0.000000 real_pulses:0 +I (40884) example: new speed:399.000000 +I (40894) example: expect speed: 0.000000 real_pulses:0 +I (40894) example: new speed:399.000000 +I (40904) example: expect speed: 0.000000 real_pulses:0 +I (40904) example: new speed:399.000000 +I (40914) example: expect speed: 0.000000 real_pulses:0 +I (40914) example: new speed:399.000000 +I (40924) example: expect speed: 0.000000 real_pulses:0 +I (40924) example: new speed:399.000000 +I (40934) example: expect speed: 0.000000 real_pulses:0 +I (40934) example: new speed:399.000000 +I (40944) example: expect speed: 0.000000 real_pulses:0 +I (40944) example: new speed:399.000000 +I (40954) example: expect speed: 0.000000 real_pulses:0 +I (40954) example: new speed:399.000000 +I (40964) example: expect speed: 0.000000 real_pulses:0 +I (40964) example: new speed:399.000000 +I (40974) example: expect speed: 0.000000 real_pulses:0 +I (40974) example: new speed:399.000000 +I (40984) example: expect speed: 0.000000 real_pulses:0 +I (40984) example: new speed:399.000000 +I (40994) example: expect speed: 0.000000 real_pulses:0 +I (40994) example: new speed:399.000000 +I (41004) example: expect speed: 0.000000 real_pulses:0 +I (41004) example: new speed:399.000000 +I (41014) example: expect speed: 0.000000 real_pulses:0 +I (41014) example: new speed:399.000000 +I (41024) example: expect speed: 0.000000 real_pulses:0 +I (41024) example: new speed:399.000000 +I (41034) example: expect speed: 0.000000 real_pulses:0 +I (41034) example: new speed:399.000000 +I (41044) example: expect speed: 0.000000 real_pulses:0 +I (41044) example: new speed:399.000000 +I (41054) example: expect speed: 0.000000 real_pulses:0 +I (41054) example: new speed:399.000000 +I (41064) example: expect speed: 0.000000 real_pulses:0 +I (41064) example: new speed:399.000000 +I (41074) example: expect speed: 0.000000 real_pulses:0 +I (41074) example: new speed:399.000000 +I (41084) example: expect speed: 0.000000 real_pulses:0 +I (41084) example: new speed:399.000000 +I (41094) example: expect speed: 0.000000 real_pulses:0 +I (41094) example: new speed:399.000000 +I (41104) example: expect speed: 0.000000 real_pulses:0 +I (41104) example: new speed:399.000000 +I (41114) example: expect speed: 0.000000 real_pulses:0 +I (41114) example: new speed:399.000000 +I (41124) example: expect speed: 0.000000 real_pulses:0 +I (41124) example: new speed:399.000000 +I (41134) example: expect speed: 0.000000 real_pulses:0 +I (41134) example: new speed:399.000000 +I (41144) example: expect speed: 0.000000 real_pulses:0 +I (41144) example: new speed:399.000000 +I (41154) example: expect speed: 0.000000 real_pulses:0 +I (41154) example: new speed:399.000000 +I (41164) example: expect speed: 0.000000 real_pulses:0 +I (41164) example: new speed:399.000000 +I (41174) example: expect speed: 0.000000 real_pulses:0 +I (41174) example: new speed:399.000000 +I (41184) example: expect speed: 0.000000 real_pulses:0 +I (41184) example: new speed:399.000000 +I (41194) example: expect speed: 0.000000 real_pulses:0 +I (41194) example: new speed:399.000000 +I (41204) example: expect speed: 0.000000 real_pulses:0 +I (41204) example: new speed:399.000000 +I (41214) example: expect speed: 0.000000 real_pulses:0 +I (41214) example: new speed:399.000000 +I (41224) example: expect speed: 0.000000 real_pulses:0 +I (41224) example: new speed:399.000000 +I (41234) example: expect speed: 0.000000 real_pulses:0 +I (41234) example: new speed:399.000000 +I (41244) example: expect speed: 0.000000 real_pulses:0 +I (41244) example: new speed:399.000000 +I (41254) example: expect speed: 0.000000 real_pulses:0 +I (41254) example: new speed:399.000000 +I (41264) example: expect speed: 0.000000 real_pulses:0 +I (41264) example: new speed:399.000000 +I (41274) example: expect speed: 0.000000 real_pulses:0 +I (41274) example: new speed:399.000000 +I (41284) example: expect speed: 0.000000 real_pulses:0 +I (41284) example: new speed:399.000000 +I (41294) example: expect speed: 0.000000 real_pulses:0 +I (41294) example: new speed:399.000000 +I (41304) example: expect speed: 0.000000 real_pulses:0 +I (41304) example: new speed:399.000000 +I (41314) example: expect speed: 0.000000 real_pulses:0 +I (41314) example: new speed:399.000000 +I (41324) example: expect speed: 0.000000 real_pulses:0 +I (41324) example: new speed:399.000000 +I (41334) example: expect speed: 0.000000 real_pulses:0 +I (41334) example: new speed:399.000000 +I (41344) example: expect speed: 0.000000 real_pulses:0 +I (41344) example: new speed:399.000000 +I (41354) example: expect speed: 0.000000 real_pulses:0 +I (41354) example: new speed:399.000000 +I (41364) example: expect speed: 0.000000 real_pulses:0 +I (41364) example: new speed:399.000000 +I (41374) example: expect speed: 0.000000 real_pulses:0 +I (41374) example: new speed:399.000000 +I (41384) example: expect speed: 0.000000 real_pulses:0 +I (41384) example: new speed:399.000000 +I (41394) example: expect speed: 0.000000 real_pulses:0 +I (41394) example: new speed:399.000000 +I (41404) example: expect speed: 0.000000 real_pulses:0 +I (41404) example: new speed:399.000000 +I (41414) example: expect speed: 0.000000 real_pulses:0 +I (41414) example: new speed:399.000000 +I (41424) example: expect speed: 0.000000 real_pulses:0 +I (41424) example: new speed:399.000000 +I (41434) example: expect speed: 0.000000 real_pulses:0 +I (41434) example: new speed:399.000000 +I (41444) example: expect speed: 0.000000 real_pulses:0 +I (41444) example: new speed:399.000000 +I (41454) example: expect speed: 0.000000 real_pulses:0 +I (41454) example: new speed:399.000000 +I (41464) example: expect speed: 0.000000 real_pulses:0 +I (41464) example: new speed:399.000000 +I (41474) example: expect speed: 0.000000 real_pulses:0 +I (41474) example: new speed:399.000000 +I (41484) example: expect speed: 0.000000 real_pulses:0 +I (41484) example: new speed:399.000000 +I (41494) example: expect speed: 0.000000 real_pulses:0 +I (41494) example: new speed:399.000000 +I (41504) example: expect speed: 0.000000 real_pulses:0 +I (41504) example: new speed:399.000000 +I (41514) example: expect speed: 0.000000 real_pulses:0 +I (41524) example: new speed:399.000000 +I (41524) example: expect speed: 0.000000 real_pulses:0 +I (41524) example: new speed:399.000000 +I (41534) example: expect speed: 0.000000 real_pulses:0 +I (41534) example: new speed:399.000000 +I (41544) example: expect speed: 0.000000 real_pulses:0 +I (41544) example: new speed:399.000000 +I (41554) example: expect speed: 0.000000 real_pulses:0 +I (41554) example: new speed:399.000000 +I (41564) example: expect speed: 0.000000 real_pulses:0 +I (41564) example: new speed:399.000000 +I (41574) example: expect speed: 0.000000 real_pulses:0 +I (41574) example: new speed:399.000000 +I (41584) example: expect speed: 0.000000 real_pulses:0 +I (41584) example: new speed:399.000000 +I (41594) example: expect speed: 0.000000 real_pulses:0 +I (41594) example: new speed:399.000000 +I (41604) example: expect speed: 0.000000 real_pulses:0 +I (41604) example: new speed:399.000000 +I (41614) example: expect speed: 0.000000 real_pulses:0 +I (41614) example: new speed:399.000000 +I (41624) example: expect speed: 0.000000 real_pulses:0 +I (41624) example: new speed:399.000000 +I (41634) example: expect speed: 0.000000 real_pulses:0 +I (41634) example: new speed:399.000000 +I (41644) example: expect speed: 0.000000 real_pulses:0 +I (41644) example: new speed:399.000000 +I (41654) example: expect speed: 0.000000 real_pulses:0 +I (41654) example: new speed:399.000000 +I (41664) example: expect speed: 0.000000 real_pulses:0 +I (41664) example: new speed:399.000000 +I (41674) example: expect speed: 0.000000 real_pulses:0 +I (41674) example: new speed:399.000000 +I (41684) example: expect speed: 0.000000 real_pulses:0 +I (41684) example: new speed:399.000000 +I (41694) example: expect speed: 0.000000 real_pulses:0 +I (41694) example: new speed:399.000000 +I (41704) example: expect speed: 0.000000 real_pulses:0 +I (41704) example: new speed:399.000000 +I (41714) example: expect speed: 0.000000 real_pulses:0 +I (41714) example: new speed:399.000000 +I (41724) example: expect speed: 0.000000 real_pulses:0 +I (41724) example: new speed:399.000000 +I (41734) example: expect speed: 0.000000 real_pulses:0 +I (41734) example: new speed:399.000000 +I (41744) example: expect speed: 0.000000 real_pulses:0 +I (41744) example: new speed:399.000000 +I (41754) example: expect speed: 0.000000 real_pulses:0 +I (41754) example: new speed:399.000000 +I (41764) example: expect speed: 0.000000 real_pulses:0 +I (41764) example: new speed:399.000000 +I (41774) example: expect speed: 0.000000 real_pulses:0 +I (41774) example: new speed:399.000000 +I (41784) example: expect speed: 0.000000 real_pulses:0 +I (41784) example: new speed:399.000000 +I (41794) example: expect speed: 0.000000 real_pulses:0 +I (41794) example: new speed:399.000000 +I (41804) example: expect speed: 0.000000 real_pulses:0 +I (41804) example: new speed:399.000000 +I (41814) example: expect speed: 0.000000 real_pulses:0 +I (41814) example: new speed:399.000000 +I (41824) example: expect speed: 0.000000 real_pulses:0 +I (41824) example: new speed:399.000000 +I (41834) example: expect speed: 0.000000 real_pulses:0 +I (41834) example: new speed:399.000000 +I (41844) example: expect speed: 0.000000 real_pulses:0 +I (41844) example: new speed:399.000000 +I (41854) example: expect speed: 0.000000 real_pulses:0 +I (41854) example: new speed:399.000000 +I (41864) example: expect speed: 0.000000 real_pulses:0 +I (41864) example: new speed:399.000000 +I (41874) example: expect speed: 0.000000 real_pulses:0 +I (41874) example: new speed:399.000000 +I (41884) example: expect speed: 0.000000 real_pulses:0 +I (41884) example: new speed:399.000000 +I (41894) example: expect speed: 0.000000 real_pulses:0 +I (41894) example: new speed:399.000000 +I (41904) example: expect speed: 0.000000 real_pulses:0 +I (41904) example: new speed:399.000000 +I (41914) example: expect speed: 0.000000 real_pulses:0 +I (41914) example: new speed:399.000000 +I (41924) example: expect speed: 0.000000 real_pulses:0 +I (41924) example: new speed:399.000000 +I (41934) example: expect speed: 0.000000 real_pulses:0 +I (41934) example: new speed:399.000000 +I (41944) example: expect speed: 0.000000 real_pulses:0 +I (41944) example: new speed:399.000000 +I (41954) example: expect speed: 0.000000 real_pulses:0 +I (41954) example: new speed:399.000000 +I (41964) example: expect speed: 0.000000 real_pulses:0 +I (41964) example: new speed:399.000000 +I (41974) example: expect speed: 0.000000 real_pulses:0 +I (41974) example: new speed:399.000000 +I (41984) example: expect speed: 0.000000 real_pulses:0 +I (41984) example: new speed:399.000000 +I (41994) example: expect speed: 0.000000 real_pulses:0 +I (41994) example: new speed:399.000000 +I (42004) example: expect speed: 0.000000 real_pulses:0 +I (42004) example: new speed:399.000000 +I (42014) example: expect speed: 0.000000 real_pulses:0 +I (42014) example: new speed:399.000000 +I (42024) example: expect speed: 0.000000 real_pulses:0 +I (42024) example: new speed:399.000000 +I (42034) example: expect speed: 0.000000 real_pulses:0 +I (42034) example: new speed:399.000000 +I (42044) example: expect speed: 0.000000 real_pulses:0 +I (42044) example: new speed:399.000000 +I (42054) example: expect speed: 0.000000 real_pulses:0 +I (42054) example: new speed:399.000000 +I (42064) example: expect speed: 0.000000 real_pulses:0 +I (42064) example: new speed:399.000000 +I (42074) example: expect speed: 0.000000 real_pulses:0 +I (42074) example: new speed:399.000000 +I (42084) example: expect speed: 0.000000 real_pulses:0 +I (42084) example: new speed:399.000000 +I (42094) example: expect speed: 0.000000 real_pulses:0 +I (42094) example: new speed:399.000000 +I (42104) example: expect speed: 0.000000 real_pulses:0 +I (42104) example: new speed:399.000000 +I (42114) example: expect speed: 0.000000 real_pulses:0 +I (42114) example: new speed:399.000000 +I (42124) example: expect speed: 0.000000 real_pulses:0 +I (42124) example: new speed:399.000000 +I (42134) example: expect speed: 0.000000 real_pulses:0 +I (42134) example: new speed:399.000000 +I (42144) example: expect speed: 0.000000 real_pulses:0 +I (42144) example: new speed:399.000000 +I (42154) example: expect speed: 0.000000 real_pulses:0 +I (42154) example: new speed:399.000000 +I (42164) example: expect speed: 0.000000 real_pulses:0 +I (42164) example: new speed:399.000000 +I (42174) example: expect speed: 0.000000 real_pulses:0 +I (42174) example: new speed:399.000000 +I (42184) example: expect speed: 0.000000 real_pulses:0 +I (42184) example: new speed:399.000000 +I (42194) example: expect speed: 0.000000 real_pulses:0 +I (42194) example: new speed:399.000000 +I (42204) example: expect speed: 0.000000 real_pulses:0 +I (42204) example: new speed:399.000000 +I (42214) example: expect speed: 0.000000 real_pulses:0 +I (42214) example: new speed:399.000000 +I (42224) example: expect speed: 0.000000 real_pulses:0 +I (42224) example: new speed:399.000000 +I (42234) example: expect speed: 0.000000 real_pulses:0 +I (42234) example: new speed:399.000000 +I (42244) example: expect speed: 0.000000 real_pulses:0 +I (42244) example: new speed:399.000000 +I (42254) example: expect speed: 0.000000 real_pulses:0 +I (42254) example: new speed:399.000000 +I (42264) example: expect speed: 0.000000 real_pulses:0 +I (42264) example: new speed:399.000000 +I (42274) example: expect speed: 0.000000 real_pulses:0 +I (42274) example: new speed:399.000000 +I (42284) example: expect speed: 0.000000 real_pulses:0 +I (42284) example: new speed:399.000000 +I (42294) example: expect speed: 0.000000 real_pulses:0 +I (42294) example: new speed:399.000000 +I (42304) example: expect speed: 0.000000 real_pulses:0 +I (42304) example: new speed:399.000000 +I (42314) example: expect speed: 0.000000 real_pulses:0 +I (42314) example: new speed:399.000000 +I (42324) example: expect speed: 0.000000 real_pulses:0 +I (42324) example: new speed:399.000000 +I (42334) example: expect speed: 0.000000 real_pulses:0 +I (42334) example: new speed:399.000000 +I (42344) example: expect speed: 0.000000 real_pulses:0 +I (42344) example: new speed:399.000000 +I (42354) example: expect speed: 0.000000 real_pulses:0 +I (42354) example: new speed:399.000000 +I (42364) example: expect speed: 0.000000 real_pulses:0 +I (42364) example: new speed:399.000000 +I (42374) example: expect speed: 0.000000 real_pulses:0 +I (42374) example: new speed:399.000000 +I (42384) example: expect speed: 0.000000 real_pulses:0 +I (42384) example: new speed:399.000000 +I (42394) example: expect speed: 0.000000 real_pulses:0 +I (42394) example: new speed:399.000000 +I (42404) example: expect speed: 0.000000 real_pulses:0 +I (42404) example: new speed:399.000000 +I (42414) example: expect speed: 0.000000 real_pulses:0 +I (42414) example: new speed:399.000000 +I (42424) example: expect speed: 0.000000 real_pulses:0 +I (42424) example: new speed:399.000000 +I (42434) example: expect speed: 0.000000 real_pulses:0 +I (42434) example: new speed:399.000000 +I (42444) example: expect speed: 0.000000 real_pulses:0 +I (42444) example: new speed:399.000000 +I (42454) example: expect speed: 0.000000 real_pulses:0 +I (42454) example: new speed:399.000000 +I (42464) example: expect speed: 0.000000 real_pulses:0 +I (42464) example: new speed:399.000000 +I (42474) example: expect speed: 0.000000 real_pulses:0 +I (42474) example: new speed:399.000000 +I (42484) example: expect speed: 0.000000 real_pulses:0 +I (42484) example: new speed:399.000000 +I (42494) example: expect speed: 0.000000 real_pulses:0 +I (42494) example: new speed:399.000000 +I (42504) example: expect speed: 0.000000 real_pulses:0 +I (42504) example: new speed:399.000000 +I (42514) example: expect speed: 0.000000 real_pulses:0 +I (42514) example: new speed:399.000000 +I (42524) example: expect speed: 0.000000 real_pulses:0 +I (42524) example: new speed:399.000000 +I (42534) example: expect speed: 0.000000 real_pulses:0 +I (42534) example: new speed:399.000000 +I (42544) example: expect speed: 0.000000 real_pulses:0 +I (42554) example: new speed:399.000000 +I (42554) example: expect speed: 0.000000 real_pulses:0 +I (42554) example: new speed:399.000000 +I (42564) example: expect speed: 0.000000 real_pulses:0 +I (42564) example: new speed:399.000000 +I (42574) example: expect speed: 0.000000 real_pulses:0 +I (42574) example: new speed:399.000000 +I (42584) example: expect speed: 0.000000 real_pulses:0 +I (42584) example: new speed:399.000000 +I (42594) example: expect speed: 0.000000 real_pulses:0 +I (42594) example: new speed:399.000000 +I (42604) example: expect speed: 0.000000 real_pulses:0 +I (42604) example: new speed:399.000000 +I (42614) example: expect speed: 0.000000 real_pulses:0 +I (42614) example: new speed:399.000000 +I (42624) example: expect speed: 0.000000 real_pulses:0 +I (42624) example: new speed:399.000000 +I (42634) example: expect speed: 0.000000 real_pulses:0 +I (42634) example: new speed:399.000000 +I (42644) example: expect speed: 0.000000 real_pulses:0 +I (42644) example: new speed:399.000000 +I (42654) example: expect speed: 0.000000 real_pulses:0 +I (42654) example: new speed:399.000000 +I (42664) example: expect speed: 0.000000 real_pulses:0 +I (42664) example: new speed:399.000000 +I (42674) example: expect speed: 0.000000 real_pulses:0 +I (42674) example: new speed:399.000000 +I (42684) example: expect speed: 0.000000 real_pulses:0 +I (42684) example: new speed:399.000000 +I (42694) example: expect speed: 0.000000 real_pulses:0 +I (42694) example: new speed:399.000000 +I (42704) example: expect speed: 0.000000 real_pulses:0 +I (42704) example: new speed:399.000000 +I (42714) example: expect speed: 0.000000 real_pulses:0 +I (42714) example: new speed:399.000000 +I (42724) example: expect speed: 0.000000 real_pulses:0 +I (42724) example: new speed:399.000000 +I (42734) example: expect speed: 0.000000 real_pulses:0 +I (42734) example: new speed:399.000000 +I (42744) example: expect speed: 0.000000 real_pulses:0 +I (42744) example: new speed:399.000000 +I (42754) example: expect speed: 0.000000 real_pulses:0 +I (42754) example: new speed:399.000000 +I (42764) example: expect speed: 0.000000 real_pulses:0 +I (42764) example: new speed:399.000000 +I (42774) example: expect speed: 0.000000 real_pulses:0 +I (42774) example: new speed:399.000000 +I (42784) example: expect speed: 0.000000 real_pulses:0 +I (42784) example: new speed:399.000000 +I (42794) example: expect speed: 0.000000 real_pulses:0 +I (42794) example: new speed:399.000000 +I (42804) example: expect speed: 0.000000 real_pulses:0 +I (42804) example: new speed:399.000000 +I (42814) example: expect speed: 0.000000 real_pulses:0 +I (42814) example: new speed:399.000000 +I (42824) example: expect speed: 0.000000 real_pulses:0 +I (42824) example: new speed:399.000000 +I (42834) example: expect speed: 0.000000 real_pulses:0 +I (42834) example: new speed:399.000000 +I (42844) example: expect speed: 0.000000 real_pulses:0 +I (42844) example: new speed:399.000000 +I (42854) example: expect speed: 0.000000 real_pulses:0 +I (42854) example: new speed:399.000000 +I (42864) example: expect speed: 0.000000 real_pulses:0 +I (42864) example: new speed:399.000000 +I (42874) example: expect speed: 0.000000 real_pulses:0 +I (42874) example: new speed:399.000000 +I (42884) example: expect speed: 0.000000 real_pulses:0 +I (42884) example: new speed:399.000000 +I (42894) example: expect speed: 0.000000 real_pulses:0 +I (42894) example: new speed:399.000000 +I (42904) example: expect speed: 0.000000 real_pulses:0 +I (42904) example: new speed:399.000000 +I (42914) example: expect speed: 0.000000 real_pulses:0 +I (42914) example: new speed:399.000000 +I (42924) example: expect speed: 0.000000 real_pulses:0 +I (42924) example: new speed:399.000000 +I (42934) example: expect speed: 0.000000 real_pulses:0 +I (42934) example: new speed:399.000000 +I (42944) example: expect speed: 0.000000 real_pulses:0 +I (42944) example: new speed:399.000000 +I (42954) example: expect speed: 0.000000 real_pulses:0 +I (42964) example: new speed:399.000000 +I (42964) example: expect speed: 0.000000 real_pulses:0 +I (42964) example: new speed:399.000000 +I (42974) example: expect speed: 0.000000 real_pulses:0 +I (42974) example: new speed:399.000000 +I (42984) example: expect speed: 0.000000 real_pulses:0 +I (42984) example: new speed:399.000000 +I (42994) example: expect speed: 0.000000 real_pulses:0 +I (42994) example: new speed:399.000000 +I (43004) example: expect speed: 0.000000 real_pulses:0 +I (43004) example: new speed:399.000000 +I (43014) example: expect speed: 0.000000 real_pulses:0 +I (43014) example: new speed:399.000000 +I (43024) example: expect speed: 0.000000 real_pulses:0 +I (43024) example: new speed:399.000000 +I (43034) example: expect speed: 0.000000 real_pulses:0 +I (43034) example: new speed:399.000000 +I (43044) example: expect speed: 0.000000 real_pulses:0 +I (43044) example: new speed:399.000000 +I (43054) example: expect speed: 0.000000 real_pulses:0 +I (43054) example: new speed:399.000000 +I (43064) example: expect speed: 0.000000 real_pulses:0 +I (43064) example: new speed:399.000000 +I (43074) example: expect speed: 0.000000 real_pulses:0 +I (43074) example: new speed:399.000000 +I (43084) example: expect speed: 0.000000 real_pulses:0 +I (43084) example: new speed:399.000000 +I (43094) example: expect speed: 0.000000 real_pulses:0 +I (43094) example: new speed:399.000000 +I (43104) example: expect speed: 0.000000 real_pulses:0 +I (43104) example: new speed:399.000000 +I (43114) example: expect speed: 0.000000 real_pulses:0 +I (43114) example: new speed:399.000000 +I (43124) example: expect speed: 0.000000 real_pulses:0 +I (43124) example: new speed:399.000000 +I (43134) example: expect speed: 0.000000 real_pulses:0 +I (43134) example: new speed:399.000000 +I (43144) example: expect speed: 0.000000 real_pulses:0 +I (43144) example: new speed:399.000000 +I (43154) example: expect speed: 0.000000 real_pulses:0 +I (43164) example: new speed:399.000000 +I (43164) example: expect speed: 0.000000 real_pulses:0 +I (43174) example: new speed:399.000000 +I (43174) example: expect speed: 0.000000 real_pulses:0 +I (43174) example: new speed:399.000000 +I (43184) example: expect speed: 0.000000 real_pulses:0 +I (43184) example: new speed:399.000000 +I (43194) example: expect speed: 0.000000 real_pulses:0 +I (43194) example: new speed:399.000000 +I (43204) example: expect speed: 0.000000 real_pulses:0 +I (43204) example: new speed:399.000000 +I (43214) example: expect speed: 0.000000 real_pulses:0 +I (43214) example: new speed:399.000000 +I (43224) example: expect speed: 0.000000 real_pulses:0 +I (43224) example: new speed:399.000000 +I (43234) example: expect speed: 0.000000 real_pulses:0 +I (43234) example: new speed:399.000000 +I (43244) example: expect speed: 0.000000 real_pulses:0 +I (43244) example: new speed:399.000000 +I (43254) example: expect speed: 0.000000 real_pulses:0 +I (43254) example: new speed:399.000000 +I (43264) example: expect speed: 0.000000 real_pulses:0 +I (43264) example: new speed:399.000000 +I (43274) example: expect speed: 0.000000 real_pulses:0 +I (43274) example: new speed:399.000000 +I (43284) example: expect speed: 0.000000 real_pulses:0 +I (43284) example: new speed:399.000000 +I (43294) example: expect speed: 0.000000 real_pulses:0 +I (43294) example: new speed:399.000000 +I (43304) example: expect speed: 0.000000 real_pulses:0 +I (43304) example: new speed:399.000000 +I (43314) example: expect speed: 0.000000 real_pulses:0 +I (43314) example: new speed:399.000000 +I (43324) example: expect speed: 0.000000 real_pulses:0 +I (43324) example: new speed:399.000000 +I (43334) example: expect speed: 0.000000 real_pulses:0 +I (43334) example: new speed:399.000000 +I (43344) example: expect speed: 0.000000 real_pulses:0 +I (43344) example: new speed:399.000000 +I (43354) example: expect speed: 0.000000 real_pulses:0 +I (43354) example: new speed:399.000000 +I (43364) example: expect speed: 0.000000 real_pulses:0 +I (43364) example: new speed:399.000000 +I (43374) example: expect speed: 0.000000 real_pulses:0 +I (43374) example: new speed:399.000000 +I (43384) example: expect speed: 0.000000 real_pulses:0 +I (43384) example: new speed:399.000000 +I (43394) example: expect speed: 0.000000 real_pulses:0 +I (43394) example: new speed:399.000000 +I (43404) example: expect speed: 0.000000 real_pulses:0 +I (43404) example: new speed:399.000000 +I (43414) example: expect speed: 0.000000 real_pulses:0 +I (43414) example: new speed:399.000000 +I (43424) example: expect speed: 0.000000 real_pulses:0 +I (43424) example: new speed:399.000000 +I (43434) example: expect speed: 0.000000 real_pulses:0 +I (43434) example: new speed:399.000000 +I (43444) example: expect speed: 0.000000 real_pulses:0 +I (43444) example: new speed:399.000000 +I (43454) example: expect speed: 0.000000 real_pulses:0 +I (43454) example: new speed:399.000000 +I (43464) example: expect speed: 0.000000 real_pulses:0 +I (43464) example: new speed:399.000000 +I (43474) example: expect speed: 0.000000 real_pulses:0 +I (43474) example: new speed:399.000000 +I (43484) example: expect speed: 0.000000 real_pulses:0 +I (43484) example: new speed:399.000000 +I (43494) example: expect speed: 0.000000 real_pulses:0 +I (43494) example: new speed:399.000000 +I (43504) example: expect speed: 0.000000 real_pulses:0 +I (43504) example: new speed:399.000000 +I (43514) example: expect speed: 0.000000 real_pulses:0 +I (43514) example: new speed:399.000000 +I (43524) example: expect speed: 0.000000 real_pulses:0 +I (43524) example: new speed:399.000000 +I (43534) example: expect speed: 0.000000 real_pulses:0 +I (43534) example: new speed:399.000000 +I (43544) example: expect speed: 0.000000 real_pulses:0 +I (43544) example: new speed:399.000000 +I (43554) example: expect speed: 0.000000 real_pulses:0 +I (43554) example: new speed:399.000000 +I (43564) example: expect speed: 0.000000 real_pulses:0 +I (43574) example: new speed:399.000000 +I (43574) example: expect speed: 0.000000 real_pulses:0 +I (43574) example: new speed:399.000000 +I (43584) example: expect speed: 0.000000 real_pulses:0 +I (43584) example: new speed:399.000000 +I (43594) example: expect speed: 0.000000 real_pulses:0 +I (43594) example: new speed:399.000000 +I (43604) example: expect speed: 0.000000 real_pulses:0 +I (43604) example: new speed:399.000000 +I (43614) example: expect speed: 0.000000 real_pulses:0 +I (43614) example: new speed:399.000000 +I (43624) example: expect speed: 0.000000 real_pulses:0 +I (43624) example: new speed:399.000000 +I (43634) example: expect speed: 0.000000 real_pulses:0 +I (43634) example: new speed:399.000000 +I (43644) example: expect speed: 0.000000 real_pulses:0 +I (43644) example: new speed:399.000000 +I (43654) example: expect speed: 0.000000 real_pulses:0 +I (43654) example: new speed:399.000000 +I (43664) example: expect speed: 0.000000 real_pulses:0 +I (43664) example: new speed:399.000000 +I (43674) example: expect speed: 0.000000 real_pulses:0 +I (43674) example: new speed:399.000000 +I (43684) example: expect speed: 0.000000 real_pulses:0 +I (43684) example: new speed:399.000000 +I (43694) example: expect speed: 0.000000 real_pulses:0 +I (43694) example: new speed:399.000000 +I (43704) example: expect speed: 0.000000 real_pulses:0 +I (43704) example: new speed:399.000000 +I (43714) example: expect speed: 0.000000 real_pulses:0 +I (43714) example: new speed:399.000000 +I (43724) example: expect speed: 0.000000 real_pulses:0 +I (43724) example: new speed:399.000000 +I (43734) example: expect speed: 0.000000 real_pulses:0 +I (43734) example: new speed:399.000000 +I (43744) example: expect speed: 0.000000 real_pulses:0 +I (43744) example: new speed:399.000000 +I (43754) example: expect speed: 0.000000 real_pulses:0 +I (43754) example: new speed:399.000000 +I (43764) example: expect speed: 0.000000 real_pulses:0 +I (43764) example: new speed:399.000000 +I (43774) example: expect speed: 0.000000 real_pulses:0 +I (43774) example: new speed:399.000000 +I (43784) example: expect speed: 0.000000 real_pulses:0 +I (43784) example: new speed:399.000000 +I (43794) example: expect speed: 0.000000 real_pulses:0 +I (43794) example: new speed:399.000000 +I (43804) example: expect speed: 0.000000 real_pulses:0 +I (43804) example: new speed:399.000000 +I (43814) example: expect speed: 0.000000 real_pulses:0 +I (43814) example: new speed:399.000000 +I (43824) example: expect speed: 0.000000 real_pulses:0 +I (43824) example: new speed:399.000000 +I (43834) example: expect speed: 0.000000 real_pulses:0 +I (43834) example: new speed:399.000000 +I (43844) example: expect speed: 0.000000 real_pulses:0 +I (43844) example: new speed:399.000000 +I (43854) example: expect speed: 0.000000 real_pulses:0 +I (43854) example: new speed:399.000000 +I (43864) example: expect speed: 0.000000 real_pulses:0 +I (43864) example: new speed:399.000000 +I (43874) example: expect speed: 0.000000 real_pulses:0 +I (43874) example: new speed:399.000000 +I (43884) example: expect speed: 0.000000 real_pulses:0 +I (43884) example: new speed:399.000000 +I (43894) example: expect speed: 0.000000 real_pulses:0 +I (43894) example: new speed:399.000000 +I (43904) example: expect speed: 0.000000 real_pulses:0 +I (43904) example: new speed:399.000000 +I (43914) example: expect speed: 0.000000 real_pulses:0 +I (43914) example: new speed:399.000000 +I (43924) example: expect speed: 0.000000 real_pulses:0 +I (43924) example: new speed:399.000000 +I (43934) example: expect speed: 0.000000 real_pulses:0 +I (43934) example: new speed:399.000000 +I (43944) example: expect speed: 0.000000 real_pulses:0 +I (43944) example: new speed:399.000000 +I (43954) example: expect speed: 0.000000 real_pulses:0 +I (43954) example: new speed:399.000000 +I (43964) example: expect speed: 0.000000 real_pulses:0 +I (43964) example: new speed:399.000000 +I (43974) example: expect speed: 0.000000 real_pulses:0 +I (43974) example: new speed:399.000000 +I (43984) example: expect speed: 0.000000 real_pulses:0 +I (43984) example: new speed:399.000000 +I (43994) example: expect speed: 0.000000 real_pulses:0 +I (43994) example: new speed:399.000000 +I (44004) example: expect speed: 0.000000 real_pulses:0 +I (44004) example: new speed:399.000000 +I (44014) example: expect speed: 0.000000 real_pulses:0 +I (44014) example: new speed:399.000000 +I (44024) example: expect speed: 0.000000 real_pulses:0 +I (44024) example: new speed:399.000000 +I (44034) example: expect speed: 0.000000 real_pulses:0 +I (44034) example: new speed:399.000000 +I (44044) example: expect speed: 0.000000 real_pulses:0 +I (44044) example: new speed:399.000000 +I (44054) example: expect speed: 0.000000 real_pulses:0 +I (44054) example: new speed:399.000000 +I (44064) example: expect speed: 0.000000 real_pulses:0 +I (44064) example: new speed:399.000000 +I (44074) example: expect speed: 0.000000 real_pulses:0 +I (44084) example: new speed:399.000000 +I (44084) example: expect speed: 0.000000 real_pulses:0 +I (44084) example: new speed:399.000000 +I (44094) example: expect speed: 0.000000 real_pulses:0 +I (44094) example: new speed:399.000000 +I (44104) example: expect speed: 0.000000 real_pulses:0 +I (44104) example: new speed:399.000000 +I (44114) example: expect speed: 0.000000 real_pulses:0 +I (44114) example: new speed:399.000000 +I (44124) example: expect speed: 0.000000 real_pulses:0 +I (44124) example: new speed:399.000000 +I (44134) example: expect speed: 0.000000 real_pulses:0 +I (44134) example: new speed:399.000000 +I (44144) example: expect speed: 0.000000 real_pulses:0 +I (44144) example: new speed:399.000000 +I (44154) example: expect speed: 0.000000 real_pulses:0 +I (44154) example: new speed:399.000000 +I (44164) example: expect speed: 0.000000 real_pulses:0 +I (44164) example: new speed:399.000000 +I (44174) example: expect speed: 0.000000 real_pulses:0 +I (44174) example: new speed:399.000000 +I (44184) example: expect speed: 0.000000 real_pulses:0 +I (44184) example: new speed:399.000000 +I (44194) example: expect speed: 0.000000 real_pulses:0 +I (44194) example: new speed:399.000000 +I (44204) example: expect speed: 0.000000 real_pulses:0 +I (44204) example: new speed:399.000000 +I (44214) example: expect speed: 0.000000 real_pulses:0 +I (44214) example: new speed:399.000000 +I (44224) example: expect speed: 0.000000 real_pulses:0 +I (44224) example: new speed:399.000000 +I (44234) example: expect speed: 0.000000 real_pulses:0 +I (44234) example: new speed:399.000000 +I (44244) example: expect speed: 0.000000 real_pulses:0 +I (44244) example: new speed:399.000000 +I (44254) example: expect speed: 0.000000 real_pulses:0 +I (44254) example: new speed:399.000000 +I (44264) example: expect speed: 0.000000 real_pulses:0 +I (44264) example: new speed:399.000000 +I (44274) example: expect speed: 0.000000 real_pulses:0 +I (44274) example: new speed:399.000000 +I (44284) example: expect speed: 0.000000 real_pulses:0 +I (44284) example: new speed:399.000000 +I (44294) example: expect speed: 0.000000 real_pulses:0 +I (44294) example: new speed:399.000000 +I (44304) example: expect speed: 0.000000 real_pulses:0 +I (44304) example: new speed:399.000000 +I (44314) example: expect speed: 0.000000 real_pulses:0 +I (44314) example: new speed:399.000000 +I (44324) example: expect speed: 0.000000 real_pulses:0 +I (44324) example: new speed:399.000000 +I (44334) example: expect speed: 0.000000 real_pulses:0 +I (44334) example: new speed:399.000000 +I (44344) example: expect speed: 0.000000 real_pulses:0 +I (44344) example: new speed:399.000000 +I (44354) example: expect speed: 0.000000 real_pulses:0 +I (44354) example: new speed:399.000000 +I (44364) example: expect speed: 0.000000 real_pulses:0 +I (44364) example: new speed:399.000000 +I (44374) example: expect speed: 0.000000 real_pulses:0 +I (44374) example: new speed:399.000000 +I (44384) example: expect speed: 0.000000 real_pulses:0 +I (44394) example: new speed:399.000000 +I (44394) example: expect speed: 0.000000 real_pulses:0 +I (44394) example: new speed:399.000000 +I (44404) example: expect speed: 0.000000 real_pulses:0 +I (44404) example: new speed:399.000000 +I (44414) example: expect speed: 0.000000 real_pulses:0 +I (44414) example: new speed:399.000000 +I (44424) example: expect speed: 0.000000 real_pulses:0 +I (44424) example: new speed:399.000000 +I (44434) example: expect speed: 0.000000 real_pulses:0 +I (44434) example: new speed:399.000000 +I (44444) example: expect speed: 0.000000 real_pulses:0 +I (44444) example: new speed:399.000000 +I (44454) example: expect speed: 0.000000 real_pulses:0 +I (44454) example: new speed:399.000000 +I (44464) example: expect speed: 0.000000 real_pulses:0 +I (44464) example: new speed:399.000000 +I (44474) example: expect speed: 0.000000 real_pulses:0 +I (44474) example: new speed:399.000000 +I (44484) example: expect speed: 0.000000 real_pulses:0 +I (44484) example: new speed:399.000000 +I (44494) example: expect speed: 0.000000 real_pulses:0 +I (44494) example: new speed:399.000000 +I (44504) example: expect speed: 0.000000 real_pulses:0 +I (44504) example: new speed:399.000000 +I (44514) example: expect speed: 0.000000 real_pulses:0 +I (44514) example: new speed:399.000000 +I (44524) example: expect speed: 0.000000 real_pulses:0 +I (44524) example: new speed:399.000000 +I (44534) example: expect speed: 0.000000 real_pulses:0 +I (44534) example: new speed:399.000000 +I (44544) example: expect speed: 0.000000 real_pulses:0 +I (44544) example: new speed:399.000000 +I (44554) example: expect speed: 0.000000 real_pulses:0 +I (44554) example: new speed:399.000000 +I (44564) example: expect speed: 0.000000 real_pulses:0 +I (44564) example: new speed:399.000000 +I (44574) example: expect speed: 0.000000 real_pulses:0 +I (44574) example: new speed:399.000000 +I (44584) example: expect speed: 0.000000 real_pulses:0 +I (44584) example: new speed:399.000000 +I (44594) example: expect speed: 0.000000 real_pulses:0 +I (44604) example: new speed:399.000000 +I (44604) example: expect speed: 0.000000 real_pulses:0 +I (44604) example: new speed:399.000000 +I (44614) example: expect speed: 0.000000 real_pulses:0 +I (44614) example: new speed:399.000000 +I (44624) example: expect speed: 0.000000 real_pulses:0 +I (44624) example: new speed:399.000000 +I (44634) example: expect speed: 0.000000 real_pulses:0 +I (44634) example: new speed:399.000000 +I (44644) example: expect speed: 0.000000 real_pulses:0 +I (44644) example: new speed:399.000000 +I (44654) example: expect speed: 0.000000 real_pulses:0 +I (44654) example: new speed:399.000000 +I (44664) example: expect speed: 0.000000 real_pulses:0 +I (44664) example: new speed:399.000000 +I (44674) example: expect speed: 0.000000 real_pulses:0 +I (44674) example: new speed:399.000000 +I (44684) example: expect speed: 0.000000 real_pulses:0 +I (44684) example: new speed:399.000000 +I (44694) example: expect speed: 0.000000 real_pulses:0 +I (44694) example: new speed:399.000000 +I (44704) example: expect speed: 0.000000 real_pulses:0 +I (44704) example: new speed:399.000000 +I (44714) example: expect speed: 0.000000 real_pulses:0 +I (44714) example: new speed:399.000000 +I (44724) example: expect speed: 0.000000 real_pulses:0 +I (44724) example: new speed:399.000000 +I (44734) example: expect speed: 0.000000 real_pulses:0 +I (44734) example: new speed:399.000000 +I (44744) example: expect speed: 0.000000 real_pulses:0 +I (44744) example: new speed:399.000000 +I (44754) example: expect speed: 0.000000 real_pulses:0 +I (44754) example: new speed:399.000000 +I (44764) example: expect speed: 0.000000 real_pulses:0 +I (44764) example: new speed:399.000000 +I (44774) example: expect speed: 0.000000 real_pulses:0 +I (44774) example: new speed:399.000000 +I (44784) example: expect speed: 0.000000 real_pulses:0 +I (44784) example: new speed:399.000000 +I (44794) example: expect speed: 0.000000 real_pulses:0 +I (44794) example: new speed:399.000000 +I (44804) example: expect speed: 0.000000 real_pulses:0 +I (44804) example: new speed:399.000000 +I (44814) example: expect speed: 0.000000 real_pulses:0 +I (44814) example: new speed:399.000000 +I (44824) example: expect speed: 0.000000 real_pulses:0 +I (44824) example: new speed:399.000000 +I (44834) example: expect speed: 0.000000 real_pulses:0 +I (44834) example: new speed:399.000000 +I (44844) example: expect speed: 0.000000 real_pulses:0 +I (44844) example: new speed:399.000000 +I (44854) example: expect speed: 0.000000 real_pulses:0 +I (44854) example: new speed:399.000000 +I (44864) example: expect speed: 0.000000 real_pulses:0 +I (44864) example: new speed:399.000000 +I (44874) example: expect speed: 0.000000 real_pulses:0 +I (44874) example: new speed:399.000000 +I (44884) example: expect speed: 0.000000 real_pulses:0 +I (44884) example: new speed:399.000000 +I (44894) example: expect speed: 0.000000 real_pulses:0 +I (44894) example: new speed:399.000000 +I (44904) example: expect speed: 0.000000 real_pulses:0 +I (44904) example: new speed:399.000000 +I (44914) example: expect speed: 0.000000 real_pulses:0 +I (44914) example: new speed:399.000000 +I (44924) example: expect speed: 0.000000 real_pulses:0 +I (44924) example: new speed:399.000000 +I (44934) example: expect speed: 0.000000 real_pulses:0 +I (44934) example: new speed:399.000000 +I (44944) example: expect speed: 0.000000 real_pulses:0 +I (44944) example: new speed:399.000000 +I (44954) example: expect speed: 0.000000 real_pulses:0 +I (44954) example: new speed:399.000000 +I (44964) example: expect speed: 0.000000 real_pulses:0 +I (44964) example: new speed:399.000000 +I (44974) example: expect speed: 0.000000 real_pulses:0 +I (44974) example: new speed:399.000000 +I (44984) example: expect speed: 0.000000 real_pulses:0 +I (44984) example: new speed:399.000000 +I (44994) example: expect speed: 0.000000 real_pulses:0 +I (44994) example: new speed:399.000000 +I (45004) example: expect speed: 0.000000 real_pulses:0 +I (45004) example: new speed:399.000000 +I (45014) example: expect speed: 0.000000 real_pulses:0 +I (45014) example: new speed:399.000000 +I (45024) example: expect speed: 0.000000 real_pulses:0 +I (45024) example: new speed:399.000000 +I (45034) example: expect speed: 0.000000 real_pulses:0 +I (45034) example: new speed:399.000000 +I (45044) example: expect speed: 0.000000 real_pulses:0 +I (45044) example: new speed:399.000000 +I (45054) example: expect speed: 0.000000 real_pulses:0 +I (45054) example: new speed:399.000000 +I (45064) example: expect speed: 0.000000 real_pulses:0 +I (45064) example: new speed:399.000000 +I (45074) example: expect speed: 0.000000 real_pulses:0 +I (45074) example: new speed:399.000000 +I (45084) example: expect speed: 0.000000 real_pulses:0 +I (45084) example: new speed:399.000000 +I (45094) example: expect speed: 0.000000 real_pulses:0 +I (45094) example: new speed:399.000000 +I (45104) example: expect speed: 0.000000 real_pulses:0 +I (45114) example: new speed:399.000000 +I (45114) example: expect speed: 0.000000 real_pulses:0 +I (45114) example: new speed:399.000000 +I (45124) example: expect speed: 0.000000 real_pulses:0 +I (45124) example: new speed:399.000000 +I (45134) example: expect speed: 0.000000 real_pulses:0 +I (45134) example: new speed:399.000000 +I (45144) example: expect speed: 0.000000 real_pulses:0 +I (45144) example: new speed:399.000000 +I (45154) example: expect speed: 0.000000 real_pulses:0 +I (45154) example: new speed:399.000000 +I (45164) example: expect speed: 0.000000 real_pulses:0 +I (45164) example: new speed:399.000000 +I (45174) example: expect speed: 0.000000 real_pulses:0 +I (45174) example: new speed:399.000000 +I (45184) example: expect speed: 0.000000 real_pulses:0 +I (45184) example: new speed:399.000000 +I (45194) example: expect speed: 0.000000 real_pulses:0 +I (45194) example: new speed:399.000000 +I (45204) example: expect speed: 0.000000 real_pulses:0 +I (45204) example: new speed:399.000000 +I (45214) example: expect speed: 0.000000 real_pulses:0 +I (45214) example: new speed:399.000000 +I (45224) example: expect speed: 0.000000 real_pulses:0 +I (45224) example: new speed:399.000000 +I (45234) example: expect speed: 0.000000 real_pulses:0 +I (45234) example: new speed:399.000000 +I (45244) example: expect speed: 0.000000 real_pulses:0 +I (45244) example: new speed:399.000000 +I (45254) example: expect speed: 0.000000 real_pulses:0 +I (45254) example: new speed:399.000000 +I (45264) example: expect speed: 0.000000 real_pulses:0 +I (45264) example: new speed:399.000000 +I (45274) example: expect speed: 0.000000 real_pulses:0 +I (45274) example: new speed:399.000000 +I (45284) example: expect speed: 0.000000 real_pulses:0 +I (45284) example: new speed:399.000000 +I (45294) example: expect speed: 0.000000 real_pulses:0 +I (45294) example: new speed:399.000000 +I (45304) example: expect speed: 0.000000 real_pulses:0 +I (45304) example: new speed:399.000000 +I (45314) example: expect speed: 0.000000 real_pulses:0 +I (45314) example: new speed:399.000000 +I (45324) example: expect speed: 0.000000 real_pulses:0 +I (45324) example: new speed:399.000000 +I (45334) example: expect speed: 0.000000 real_pulses:0 +I (45334) example: new speed:399.000000 +I (45344) example: expect speed: 0.000000 real_pulses:0 +I (45344) example: new speed:399.000000 +I (45354) example: expect speed: 0.000000 real_pulses:0 +I (45354) example: new speed:399.000000 +I (45364) example: expect speed: 0.000000 real_pulses:0 +I (45364) example: new speed:399.000000 +I (45374) example: expect speed: 0.000000 real_pulses:0 +I (45374) example: new speed:399.000000 +I (45384) example: expect speed: 0.000000 real_pulses:0 +I (45384) example: new speed:399.000000 +I (45394) example: expect speed: 0.000000 real_pulses:0 +I (45394) example: new speed:399.000000 +I (45404) example: expect speed: 0.000000 real_pulses:0 +I (45404) example: new speed:399.000000 +I (45414) example: expect speed: 0.000000 real_pulses:0 +I (45414) example: new speed:399.000000 +I (45424) example: expect speed: 0.000000 real_pulses:0 +I (45424) example: new speed:399.000000 +I (45434) example: expect speed: 0.000000 real_pulses:0 +I (45434) example: new speed:399.000000 +I (45444) example: expect speed: 0.000000 real_pulses:0 +I (45444) example: new speed:399.000000 +I (45454) example: expect speed: 0.000000 real_pulses:0 +I (45454) example: new speed:399.000000 +I (45464) example: expect speed: 0.000000 real_pulses:0 +I (45464) example: new speed:399.000000 +I (45474) example: expect speed: 0.000000 real_pulses:0 +I (45474) example: new speed:399.000000 +I (45484) example: expect speed: 0.000000 real_pulses:0 +I (45484) example: new speed:399.000000 +I (45494) example: expect speed: 0.000000 real_pulses:0 +I (45494) example: new speed:399.000000 +I (45504) example: expect speed: 0.000000 real_pulses:0 +I (45504) example: new speed:399.000000 +I (45514) example: expect speed: 0.000000 real_pulses:0 +I (45514) example: new speed:399.000000 +I (45524) example: expect speed: 0.000000 real_pulses:0 +I (45524) example: new speed:399.000000 +I (45534) example: expect speed: 0.000000 real_pulses:0 +I (45534) example: new speed:399.000000 +I (45544) example: expect speed: 0.000000 real_pulses:0 +I (45544) example: new speed:399.000000 +I (45554) example: expect speed: 0.000000 real_pulses:0 +I (45554) example: new speed:399.000000 +I (45564) example: expect speed: 0.000000 real_pulses:0 +I (45564) example: new speed:399.000000 +I (45574) example: expect speed: 0.000000 real_pulses:0 +I (45574) example: new speed:399.000000 +I (45584) example: expect speed: 0.000000 real_pulses:0 +I (45584) example: new speed:399.000000 +I (45594) example: expect speed: 0.000000 real_pulses:0 +I (45594) example: new speed:399.000000 +I (45604) example: expect speed: 0.000000 real_pulses:0 +I (45604) example: new speed:399.000000 +I (45614) example: expect speed: 0.000000 real_pulses:0 +I (45614) example: new speed:399.000000 +I (45624) example: expect speed: 0.000000 real_pulses:0 +I (45624) example: new speed:399.000000 +I (45634) example: expect speed: 0.000000 real_pulses:0 +I (45634) example: new speed:399.000000 +I (45644) example: expect speed: 0.000000 real_pulses:0 +I (45644) example: new speed:399.000000 +I (45654) example: expect speed: 0.000000 real_pulses:0 +I (45654) example: new speed:399.000000 +I (45664) example: expect speed: 0.000000 real_pulses:0 +I (45664) example: new speed:399.000000 +I (45674) example: expect speed: 0.000000 real_pulses:0 +I (45674) example: new speed:399.000000 +I (45684) example: expect speed: 0.000000 real_pulses:0 +I (45684) example: new speed:399.000000 +I (45694) example: expect speed: 0.000000 real_pulses:0 +I (45694) example: new speed:399.000000 +I (45704) example: expect speed: 0.000000 real_pulses:0 +I (45704) example: new speed:399.000000 +I (45714) example: expect speed: 0.000000 real_pulses:0 +I (45714) example: new speed:399.000000 +I (45724) example: expect speed: 0.000000 real_pulses:0 +I (45724) example: new speed:399.000000 +I (45734) example: expect speed: 0.000000 real_pulses:0 +I (45734) example: new speed:399.000000 +I (45744) example: expect speed: 0.000000 real_pulses:0 +I (45744) example: new speed:399.000000 +I (45754) example: expect speed: 0.000000 real_pulses:0 +I (45754) example: new speed:399.000000 +I (45764) example: expect speed: 0.000000 real_pulses:0 +I (45764) example: new speed:399.000000 +I (45774) example: expect speed: 0.000000 real_pulses:0 +I (45774) example: new speed:399.000000 +I (45784) example: expect speed: 0.000000 real_pulses:0 +I (45784) example: new speed:399.000000 +I (45794) example: expect speed: 0.000000 real_pulses:0 +I (45794) example: new speed:399.000000 +I (45804) example: expect speed: 0.000000 real_pulses:0 +I (45804) example: new speed:399.000000 +I (45814) example: expect speed: 0.000000 real_pulses:0 +I (45814) example: new speed:399.000000 +I (45824) example: expect speed: 0.000000 real_pulses:0 +I (45824) example: new speed:399.000000 +I (45834) example: expect speed: 0.000000 real_pulses:0 +I (45834) example: new speed:399.000000 +I (45844) example: expect speed: 0.000000 real_pulses:0 +I (45844) example: new speed:399.000000 +I (45854) example: expect speed: 0.000000 real_pulses:0 +I (45854) example: new speed:399.000000 +I (45864) example: expect speed: 0.000000 real_pulses:0 +I (45864) example: new speed:399.000000 +I (45874) example: expect speed: 0.000000 real_pulses:0 +I (45874) example: new speed:399.000000 +I (45884) example: expect speed: 0.000000 real_pulses:0 +I (45884) example: new speed:399.000000 +I (45894) example: expect speed: 0.000000 real_pulses:0 +I (45894) example: new speed:399.000000 +I (45904) example: expect speed: 0.000000 real_pulses:0 +I (45904) example: new speed:399.000000 +I (45914) example: expect speed: 0.000000 real_pulses:0 +I (45914) example: new speed:399.000000 +I (45924) example: expect speed: 0.000000 real_pulses:0 +I (45924) example: new speed:399.000000 +I (45934) example: expect speed: 0.000000 real_pulses:0 +I (45934) example: new speed:399.000000 +I (45944) example: expect speed: 0.000000 real_pulses:0 +I (45944) example: new speed:399.000000 +I (45954) example: expect speed: 0.000000 real_pulses:0 +I (45954) example: new speed:399.000000 +I (45964) example: expect speed: 0.000000 real_pulses:0 +I (45964) example: new speed:399.000000 +I (45974) example: expect speed: 0.000000 real_pulses:0 +I (45974) example: new speed:399.000000 +I (45984) example: expect speed: 0.000000 real_pulses:0 +I (45984) example: new speed:399.000000 +I (45994) example: expect speed: 0.000000 real_pulses:0 +I (45994) example: new speed:399.000000 +I (46004) example: expect speed: 0.000000 real_pulses:0 +I (46004) example: new speed:399.000000 +I (46014) example: expect speed: 0.000000 real_pulses:0 +I (46014) example: new speed:399.000000 +I (46024) example: expect speed: 0.000000 real_pulses:0 +I (46034) example: new speed:399.000000 +I (46034) example: expect speed: 0.000000 real_pulses:0 +I (46034) example: new speed:399.000000 +I (46044) example: expect speed: 0.000000 real_pulses:0 +I (46044) example: new speed:399.000000 +I (46054) example: expect speed: 0.000000 real_pulses:0 +I (46054) example: new speed:399.000000 +I (46064) example: expect speed: 0.000000 real_pulses:0 +I (46064) example: new speed:399.000000 +I (46074) example: expect speed: 0.000000 real_pulses:0 +I (46074) example: new speed:399.000000 +I (46084) example: expect speed: 0.000000 real_pulses:0 +I (46084) example: new speed:399.000000 +I (46094) example: expect speed: 0.000000 real_pulses:0 +I (46094) example: new speed:399.000000 +I (46104) example: expect speed: 0.000000 real_pulses:0 +I (46104) example: new speed:399.000000 +I (46114) example: expect speed: 0.000000 real_pulses:0 +I (46114) example: new speed:399.000000 +I (46124) example: expect speed: 0.000000 real_pulses:0 +I (46124) example: new speed:399.000000 +I (46134) example: expect speed: 0.000000 real_pulses:0 +I (46134) example: new speed:399.000000 +I (46144) example: expect speed: 0.000000 real_pulses:0 +I (46144) example: new speed:399.000000 +I (46154) example: expect speed: 0.000000 real_pulses:0 +I (46154) example: new speed:399.000000 +I (46164) example: expect speed: 0.000000 real_pulses:0 +I (46164) example: new speed:399.000000 +I (46174) example: expect speed: 0.000000 real_pulses:0 +I (46174) example: new speed:399.000000 +I (46184) example: expect speed: 0.000000 real_pulses:0 +I (46184) example: new speed:399.000000 +I (46194) example: expect speed: 0.000000 real_pulses:0 +I (46194) example: new speed:399.000000 +I (46204) example: expect speed: 0.000000 real_pulses:0 +I (46204) example: new speed:399.000000 +I (46214) example: expect speed: 0.000000 real_pulses:0 +I (46214) example: new speed:399.000000 +I (46224) example: expect speed: 0.000000 real_pulses:0 +I (46224) example: new speed:399.000000 +I (46234) example: expect speed: 0.000000 real_pulses:0 +I (46234) example: new speed:399.000000 +I (46244) example: expect speed: 0.000000 real_pulses:0 +I (46244) example: new speed:399.000000 +I (46254) example: expect speed: 0.000000 real_pulses:0 +I (46254) example: new speed:399.000000 +I (46264) example: expect speed: 0.000000 real_pulses:0 +I (46264) example: new speed:399.000000 +I (46274) example: expect speed: 0.000000 real_pulses:0 +I (46274) example: new speed:399.000000 +I (46284) example: expect speed: 0.000000 real_pulses:0 +I (46284) example: new speed:399.000000 +I (46294) example: expect speed: 0.000000 real_pulses:0 +I (46294) example: new speed:399.000000 +I (46304) example: expect speed: 0.000000 real_pulses:0 +I (46304) example: new speed:399.000000 +I (46314) example: expect speed: 0.000000 real_pulses:0 +I (46314) example: new speed:399.000000 +I (46324) example: expect speed: 0.000000 real_pulses:0 +I (46324) example: new speed:399.000000 +I (46334) example: expect speed: 0.000000 real_pulses:0 +I (46334) example: new speed:399.000000 +I (46344) example: expect speed: 0.000000 real_pulses:0 +I (46344) example: new speed:399.000000 +I (46354) example: expect speed: 0.000000 real_pulses:0 +I (46354) example: new speed:399.000000 +I (46364) example: expect speed: 0.000000 real_pulses:0 +I (46364) example: new speed:399.000000 +I (46374) example: expect speed: 0.000000 real_pulses:0 +I (46374) example: new speed:399.000000 +I (46384) example: expect speed: 0.000000 real_pulses:0 +I (46384) example: new speed:399.000000 +I (46394) example: expect speed: 0.000000 real_pulses:0 +I (46394) example: new speed:399.000000 +I (46404) example: expect speed: 0.000000 real_pulses:0 +I (46404) example: new speed:399.000000 +I (46414) example: expect speed: 0.000000 real_pulses:0 +I (46414) example: new speed:399.000000 +I (46424) example: expect speed: 0.000000 real_pulses:0 +I (46424) example: new speed:399.000000 +I (46434) example: expect speed: 0.000000 real_pulses:0 +I (46434) example: new speed:399.000000 +I (46444) example: expect speed: 0.000000 real_pulses:0 +I (46444) example: new speed:399.000000 +I (46454) example: expect speed: 0.000000 real_pulses:0 +I (46454) example: new speed:399.000000 +I (46464) example: expect speed: 0.000000 real_pulses:0 +I (46464) example: new speed:399.000000 +I (46474) example: expect speed: 0.000000 real_pulses:0 +I (46474) example: new speed:399.000000 +I (46484) example: expect speed: 0.000000 real_pulses:0 +I (46484) example: new speed:399.000000 +I (46494) example: expect speed: 0.000000 real_pulses:0 +I (46494) example: new speed:399.000000 +I (46504) example: expect speed: 0.000000 real_pulses:0 +I (46504) example: new speed:399.000000 +I (46514) example: expect speed: 0.000000 real_pulses:0 +I (46514) example: new speed:399.000000 +I (46524) example: expect speed: 0.000000 real_pulses:0 +I (46524) example: new speed:399.000000 +I (46534) example: expect speed: 0.000000 real_pulses:0 +I (46534) example: new speed:399.000000 +I (46544) example: expect speed: 0.000000 real_pulses:0 +I (46544) example: new speed:399.000000 +I (46554) example: expect speed: 0.000000 real_pulses:0 +I (46554) example: new speed:399.000000 +I (46564) example: expect speed: 0.000000 real_pulses:0 +I (46564) example: new speed:399.000000 +I (46574) example: expect speed: 0.000000 real_pulses:0 +I (46574) example: new speed:399.000000 +I (46584) example: expect speed: 0.000000 real_pulses:0 +I (46584) example: new speed:399.000000 +I (46594) example: expect speed: 0.000000 real_pulses:0 +I (46594) example: new speed:399.000000 +I (46604) example: expect speed: 0.000000 real_pulses:0 +I (46604) example: new speed:399.000000 +I (46614) example: expect speed: 0.000000 real_pulses:0 +I (46614) example: new speed:399.000000 +I (46624) example: expect speed: 0.000000 real_pulses:0 +I (46624) example: new speed:399.000000 +I (46634) example: expect speed: 0.000000 real_pulses:0 +I (46644) example: new speed:399.000000 +I (46644) example: expect speed: 0.000000 real_pulses:0 +I (46644) example: new speed:399.000000 +I (46654) example: expect speed: 0.000000 real_pulses:0 +I (46654) example: new speed:399.000000 +I (46664) example: expect speed: 0.000000 real_pulses:0 +I (46664) example: new speed:399.000000 +I (46674) example: expect speed: 0.000000 real_pulses:0 +I (46674) example: new speed:399.000000 +I (46684) example: expect speed: 0.000000 real_pulses:0 +I (46684) example: new speed:399.000000 +I (46694) example: expect speed: 0.000000 real_pulses:0 +I (46694) example: new speed:399.000000 +I (46704) example: expect speed: 0.000000 real_pulses:0 +I (46704) example: new speed:399.000000 +I (46714) example: expect speed: 0.000000 real_pulses:0 +I (46714) example: new speed:399.000000 +I (46724) example: expect speed: 0.000000 real_pulses:0 +I (46724) example: new speed:399.000000 +I (46734) example: expect speed: 0.000000 real_pulses:0 +I (46734) example: new speed:399.000000 +I (46744) example: expect speed: 0.000000 real_pulses:0 +I (46744) example: new speed:399.000000 +I (46754) example: expect speed: 0.000000 real_pulses:0 +I (46754) example: new speed:399.000000 +I (46764) example: expect speed: 0.000000 real_pulses:0 +I (46764) example: new speed:399.000000 +I (46774) example: expect speed: 0.000000 real_pulses:0 +I (46774) example: new speed:399.000000 +I (46784) example: expect speed: 0.000000 real_pulses:0 +I (46784) example: new speed:399.000000 +I (46794) example: expect speed: 0.000000 real_pulses:0 +I (46794) example: new speed:399.000000 +I (46804) example: expect speed: 0.000000 real_pulses:0 +I (46804) example: new speed:399.000000 +I (46814) example: expect speed: 0.000000 real_pulses:0 +I (46814) example: new speed:399.000000 +I (46824) example: expect speed: 0.000000 real_pulses:0 +I (46824) example: new speed:399.000000 +I (46834) example: expect speed: 0.000000 real_pulses:0 +I (46834) example: new speed:399.000000 +I (46844) example: expect speed: 0.000000 real_pulses:0 +I (46844) example: new speed:399.000000 +I (46854) example: expect speed: 0.000000 real_pulses:0 +I (46854) example: new speed:399.000000 +I (46864) example: expect speed: 0.000000 real_pulses:0 +I (46864) example: new speed:399.000000 +I (46874) example: expect speed: 0.000000 real_pulses:0 +I (46874) example: new speed:399.000000 +I (46884) example: expect speed: 0.000000 real_pulses:0 +I (46884) example: new speed:399.000000 +I (46894) example: expect speed: 0.000000 real_pulses:0 +I (46894) example: new speed:399.000000 +I (46904) example: expect speed: 0.000000 real_pulses:0 +I (46904) example: new speed:399.000000 +I (46914) example: expect speed: 0.000000 real_pulses:0 +I (46914) example: new speed:399.000000 +I (46924) example: expect speed: 0.000000 real_pulses:0 +I (46924) example: new speed:399.000000 +I (46934) example: expect speed: 0.000000 real_pulses:0 +I (46934) example: new speed:399.000000 +I (46944) example: expect speed: 0.000000 real_pulses:0 +I (46944) example: new speed:399.000000 +I (46954) example: expect speed: 0.000000 real_pulses:0 +I (46954) example: new speed:399.000000 +I (46964) example: expect speed: 0.000000 real_pulses:0 +I (46964) example: new speed:399.000000 +I (46974) example: expect speed: 0.000000 real_pulses:0 +I (46974) example: new speed:399.000000 +I (46984) example: expect speed: 0.000000 real_pulses:0 +I (46984) example: new speed:399.000000 +I (46994) example: expect speed: 0.000000 real_pulses:0 +I (46994) example: new speed:399.000000 +I (47004) example: expect speed: 0.000000 real_pulses:0 +I (47004) example: new speed:399.000000 +I (47014) example: expect speed: 0.000000 real_pulses:0 +I (47014) example: new speed:399.000000 +I (47024) example: expect speed: 0.000000 real_pulses:0 +I (47024) example: new speed:399.000000 +I (47034) example: expect speed: 0.000000 real_pulses:0 +I (47034) example: new speed:399.000000 +I (47044) example: expect speed: 0.000000 real_pulses:0 +I (47044) example: new speed:399.000000 +I (47054) example: expect speed: 0.000000 real_pulses:0 +I (47054) example: new speed:399.000000 +I (47064) example: expect speed: 0.000000 real_pulses:0 +I (47064) example: new speed:399.000000 +I (47074) example: expect speed: 0.000000 real_pulses:0 +I (47074) example: new speed:399.000000 +I (47084) example: expect speed: 0.000000 real_pulses:0 +I (47084) example: new speed:399.000000 +I (47094) example: expect speed: 0.000000 real_pulses:0 +I (47094) example: new speed:399.000000 +I (47104) example: expect speed: 0.000000 real_pulses:0 +I (47104) example: new speed:399.000000 +I (47114) example: expect speed: 0.000000 real_pulses:0 +I (47114) example: new speed:399.000000 +I (47124) example: expect speed: 0.000000 real_pulses:0 +I (47124) example: new speed:399.000000 +I (47134) example: expect speed: 0.000000 real_pulses:0 +I (47134) example: new speed:399.000000 +I (47144) example: expect speed: 0.000000 real_pulses:0 +I (47144) example: new speed:399.000000 +I (47154) example: expect speed: 0.000000 real_pulses:0 +I (47154) example: new speed:399.000000 +I (47164) example: expect speed: 0.000000 real_pulses:0 +I (47164) example: new speed:399.000000 +I (47174) example: expect speed: 0.000000 real_pulses:0 +I (47174) example: new speed:399.000000 +I (47184) example: expect speed: 0.000000 real_pulses:0 +I (47184) example: new speed:399.000000 +I (47194) example: expect speed: 0.000000 real_pulses:0 +I (47194) example: new speed:399.000000 +I (47204) example: expect speed: 0.000000 real_pulses:0 +I (47204) example: new speed:399.000000 +I (47214) example: expect speed: 0.000000 real_pulses:0 +I (47214) example: new speed:399.000000 +I (47224) example: expect speed: 0.000000 real_pulses:0 +I (47224) example: new speed:399.000000 +I (47234) example: expect speed: 0.000000 real_pulses:0 +I (47234) example: new speed:399.000000 +I (47244) example: expect speed: 0.000000 real_pulses:0 +I (47244) example: new speed:399.000000 +I (47254) example: expect speed: 0.000000 real_pulses:0 +I (47254) example: new speed:399.000000 +I (47264) example: expect speed: 0.000000 real_pulses:0 +I (47264) example: new speed:399.000000 +I (47274) example: expect speed: 0.000000 real_pulses:0 +I (47274) example: new speed:399.000000 +I (47284) example: expect speed: 0.000000 real_pulses:0 +I (47284) example: new speed:399.000000 +I (47294) example: expect speed: 0.000000 real_pulses:0 +I (47294) example: new speed:399.000000 +I (47304) example: expect speed: 0.000000 real_pulses:0 +I (47304) example: new speed:399.000000 +I (47314) example: expect speed: 0.000000 real_pulses:0 +I (47314) example: new speed:399.000000 +I (47324) example: expect speed: 0.000000 real_pulses:0 +I (47324) example: new speed:399.000000 +I (47334) example: expect speed: 0.000000 real_pulses:0 +I (47334) example: new speed:399.000000 +I (47344) example: expect speed: 0.000000 real_pulses:0 +I (47344) example: new speed:399.000000 +I (47354) example: expect speed: 0.000000 real_pulses:0 +I (47354) example: new speed:399.000000 +I (47364) example: expect speed: 0.000000 real_pulses:0 +I (47364) example: new speed:399.000000 +I (47374) example: expect speed: 0.000000 real_pulses:0 +I (47374) example: new speed:399.000000 +I (47384) example: expect speed: 0.000000 real_pulses:0 +I (47384) example: new speed:399.000000 +I (47394) example: expect speed: 0.000000 real_pulses:0 +I (47394) example: new speed:399.000000 +I (47404) example: expect speed: 0.000000 real_pulses:0 +I (47404) example: new speed:399.000000 +I (47414) example: expect speed: 0.000000 real_pulses:0 +I (47414) example: new speed:399.000000 +I (47424) example: expect speed: 0.000000 real_pulses:0 +I (47424) example: new speed:399.000000 +I (47434) example: expect speed: 0.000000 real_pulses:0 +I (47434) example: new speed:399.000000 +I (47444) example: expect speed: 0.000000 real_pulses:0 +I (47444) example: new speed:399.000000 +I (47454) example: expect speed: 0.000000 real_pulses:0 +I (47454) example: new speed:399.000000 +I (47464) example: expect speed: 0.000000 real_pulses:0 +I (47464) example: new speed:399.000000 +I (47474) example: expect speed: 0.000000 real_pulses:0 +I (47474) example: new speed:399.000000 +I (47484) example: expect speed: 0.000000 real_pulses:0 +I (47484) example: new speed:399.000000 +I (47494) example: expect speed: 0.000000 real_pulses:0 +I (47494) example: new speed:399.000000 +I (47504) example: expect speed: 0.000000 real_pulses:0 +I (47504) example: new speed:399.000000 +I (47514) example: expect speed: 0.000000 real_pulses:0 +I (47514) example: new speed:399.000000 +I (47524) example: expect speed: 0.000000 real_pulses:0 +I (47524) example: new speed:399.000000 +I (47534) example: expect speed: 0.000000 real_pulses:0 +I (47534) example: new speed:399.000000 +I (47544) example: expect speed: 0.000000 real_pulses:0 +I (47544) example: new speed:399.000000 +I (47554) example: expect speed: 0.000000 real_pulses:0 +I (47554) example: new speed:399.000000 +I (47564) example: expect speed: 0.000000 real_pulses:0 +I (47564) example: new speed:399.000000 +I (47574) example: expect speed: 0.000000 real_pulses:0 +I (47574) example: new speed:399.000000 +I (47584) example: expect speed: 0.000000 real_pulses:0 +I (47584) example: new speed:399.000000 +I (47594) example: expect speed: 0.000000 real_pulses:0 +I (47594) example: new speed:399.000000 +I (47604) example: expect speed: 0.000000 real_pulses:0 +I (47604) example: new speed:399.000000 +I (47614) example: expect speed: 0.000000 real_pulses:0 +I (47614) example: new speed:399.000000 +I (47624) example: expect speed: 0.000000 real_pulses:0 +I (47624) example: new speed:399.000000 +I (47634) example: expect speed: 0.000000 real_pulses:0 +I (47634) example: new speed:399.000000 +I (47644) example: expect speed: 0.000000 real_pulses:0 +I (47644) example: new speed:399.000000 +I (47654) example: expect speed: 0.000000 real_pulses:0 +I (47654) example: new speed:399.000000 +I (47664) example: expect speed: 0.000000 real_pulses:0 +I (47674) example: new speed:399.000000 +I (47674) example: expect speed: 0.000000 real_pulses:0 +I (47674) example: new speed:399.000000 +I (47684) example: expect speed: 0.000000 real_pulses:0 +I (47684) example: new speed:399.000000 +I (47694) example: expect speed: 0.000000 real_pulses:0 +I (47694) example: new speed:399.000000 +I (47704) example: expect speed: 0.000000 real_pulses:0 +I (47704) example: new speed:399.000000 +I (47714) example: expect speed: 0.000000 real_pulses:0 +I (47714) example: new speed:399.000000 +I (47724) example: expect speed: 0.000000 real_pulses:0 +I (47724) example: new speed:399.000000 +I (47734) example: expect speed: 0.000000 real_pulses:0 +I (47734) example: new speed:399.000000 +I (47744) example: expect speed: 0.000000 real_pulses:0 +I (47744) example: new speed:399.000000 +I (47754) example: expect speed: 0.000000 real_pulses:0 +I (47754) example: new speed:399.000000 +I (47764) example: expect speed: 0.000000 real_pulses:0 +I (47764) example: new speed:399.000000 +I (47774) example: expect speed: 0.000000 real_pulses:0 +I (47774) example: new speed:399.000000 +I (47784) example: expect speed: 0.000000 real_pulses:0 +I (47784) example: new speed:399.000000 +I (47794) example: expect speed: 0.000000 real_pulses:0 +I (47794) example: new speed:399.000000 +I (47804) example: expect speed: 0.000000 real_pulses:0 +I (47804) example: new speed:399.000000 +I (47814) example: expect speed: 0.000000 real_pulses:0 +I (47814) example: new speed:399.000000 +I (47824) example: expect speed: 0.000000 real_pulses:0 +I (47824) example: new speed:399.000000 +I (47834) example: expect speed: 0.000000 real_pulses:0 +I (47834) example: new speed:399.000000 +I (47844) example: expect speed: 0.000000 real_pulses:0 +I (47844) example: new speed:399.000000 +I (47854) example: expect speed: 0.000000 real_pulses:0 +I (47854) example: new speed:399.000000 +I (47864) example: expect speed: 0.000000 real_pulses:0 +I (47864) example: new speed:399.000000 +I (47874) example: expect speed: 0.000000 real_pulses:0 +I (47874) example: new speed:399.000000 +I (47884) example: expect speed: 0.000000 real_pulses:0 +I (47884) example: new speed:399.000000 +I (47894) example: expect speed: 0.000000 real_pulses:0 +I (47894) example: new speed:399.000000 +I (47904) example: expect speed: 0.000000 real_pulses:0 +I (47904) example: new speed:399.000000 +I (47914) example: expect speed: 0.000000 real_pulses:0 +I (47914) example: new speed:399.000000 +I (47924) example: expect speed: 0.000000 real_pulses:0 +I (47924) example: new speed:399.000000 +I (47934) example: expect speed: 0.000000 real_pulses:0 +I (47934) example: new speed:399.000000 +I (47944) example: expect speed: 0.000000 real_pulses:0 +I (47944) example: new speed:399.000000 +I (47954) example: expect speed: 0.000000 real_pulses:0 +I (47954) example: new speed:399.000000 +I (47964) example: expect speed: 0.000000 real_pulses:0 +I (47964) example: new speed:399.000000 +I (47974) example: expect speed: 0.000000 real_pulses:0 +I (47974) example: new speed:399.000000 +I (47984) example: expect speed: 0.000000 real_pulses:0 +I (47984) example: new speed:399.000000 +I (47994) example: expect speed: 0.000000 real_pulses:0 +I (47994) example: new speed:399.000000 +I (48004) example: expect speed: 0.000000 real_pulses:0 +I (48004) example: new speed:399.000000 +I (48014) example: expect speed: 0.000000 real_pulses:0 +I (48014) example: new speed:399.000000 +I (48024) example: expect speed: 0.000000 real_pulses:0 +I (48024) example: new speed:399.000000 +I (48034) example: expect speed: 0.000000 real_pulses:0 +I (48034) example: new speed:399.000000 +I (48044) example: expect speed: 0.000000 real_pulses:0 +I (48044) example: new speed:399.000000 +I (48054) example: expect speed: 0.000000 real_pulses:0 +I (48054) example: new speed:399.000000 +I (48064) example: expect speed: 0.000000 real_pulses:0 +I (48064) example: new speed:399.000000 +I (48074) example: expect speed: 0.000000 real_pulses:0 +I (48074) example: new speed:399.000000 +I (48084) example: expect speed: 0.000000 real_pulses:0 +I (48084) example: new speed:399.000000 +I (48094) example: expect speed: 0.000000 real_pulses:0 +I (48094) example: new speed:399.000000 +I (48104) example: expect speed: 0.000000 real_pulses:0 +I (48104) example: new speed:399.000000 +I (48114) example: expect speed: 0.000000 real_pulses:0 +I (48114) example: new speed:399.000000 +I (48124) example: expect speed: 0.000000 real_pulses:0 +I (48124) example: new speed:399.000000 +I (48134) example: expect speed: 0.000000 real_pulses:0 +I (48134) example: new speed:399.000000 +I (48144) example: expect speed: 0.000000 real_pulses:0 +I (48144) example: new speed:399.000000 +I (48154) example: expect speed: 0.000000 real_pulses:0 +I (48154) example: new speed:399.000000 +I (48164) example: expect speed: 0.000000 real_pulses:0 +I (48164) example: new speed:399.000000 +I (48174) example: expect speed: 0.000000 real_pulses:0 +I (48174) example: new speed:399.000000 +I (48184) example: expect speed: 0.000000 real_pulses:0 +I (48184) example: new speed:399.000000 +I (48194) example: expect speed: 0.000000 real_pulses:0 +I (48194) example: new speed:399.000000 +I (48204) example: expect speed: 0.000000 real_pulses:0 +I (48204) example: new speed:399.000000 +I (48214) example: expect speed: 0.000000 real_pulses:0 +I (48214) example: new speed:399.000000 +I (48224) example: expect speed: 0.000000 real_pulses:0 +I (48224) example: new speed:399.000000 +I (48234) example: expect speed: 0.000000 real_pulses:0 +I (48234) example: new speed:399.000000 +I (48244) example: expect speed: 0.000000 real_pulses:0 +I (48244) example: new speed:399.000000 +I (48254) example: expect speed: 0.000000 real_pulses:0 +I (48254) example: new speed:399.000000 +I (48264) example: expect speed: 0.000000 real_pulses:0 +I (48264) example: new speed:399.000000 +I (48274) example: expect speed: 0.000000 real_pulses:0 +I (48274) example: new speed:399.000000 +I (48284) example: expect speed: 0.000000 real_pulses:0 +I (48284) example: new speed:399.000000 +I (48294) example: expect speed: 0.000000 real_pulses:0 +I (48294) example: new speed:399.000000 +I (48304) example: expect speed: 0.000000 real_pulses:0 +I (48304) example: new speed:399.000000 +I (48314) example: expect speed: 0.000000 real_pulses:0 +I (48314) example: new speed:399.000000 +I (48324) example: expect speed: 0.000000 real_pulses:0 +I (48324) example: new speed:399.000000 +I (48334) example: expect speed: 0.000000 real_pulses:0 +I (48334) example: new speed:399.000000 +I (48344) example: expect speed: 0.000000 real_pulses:0 +I (48344) example: new speed:399.000000 +I (48354) example: expect speed: 0.000000 real_pulses:0 +I (48354) example: new speed:399.000000 +I (48364) example: expect speed: 0.000000 real_pulses:0 +I (48364) example: new speed:399.000000 +I (48374) example: expect speed: 0.000000 real_pulses:0 +I (48374) example: new speed:399.000000 +I (48384) example: expect speed: 0.000000 real_pulses:0 +I (48384) example: new speed:399.000000 +I (48394) example: expect speed: 0.000000 real_pulses:0 +I (48394) example: new speed:399.000000 +I (48404) example: expect speed: 0.000000 real_pulses:0 +I (48404) example: new speed:399.000000 +I (48414) example: expect speed: 0.000000 real_pulses:0 +I (48414) example: new speed:399.000000 +I (48424) example: expect speed: 0.000000 real_pulses:0 +I (48424) example: new speed:399.000000 +I (48434) example: expect speed: 0.000000 real_pulses:0 +I (48434) example: new speed:399.000000 +I (48444) example: expect speed: 0.000000 real_pulses:0 +I (48444) example: new speed:399.000000 +I (48454) example: expect speed: 0.000000 real_pulses:0 +I (48454) example: new speed:399.000000 +I (48464) example: expect speed: 0.000000 real_pulses:0 +I (48464) example: new speed:399.000000 +I (48474) example: expect speed: 0.000000 real_pulses:0 +I (48474) example: new speed:399.000000 +I (48484) example: expect speed: 0.000000 real_pulses:0 +I (48484) example: new speed:399.000000 +I (48494) example: expect speed: 0.000000 real_pulses:0 +I (48494) example: new speed:399.000000 +I (48504) example: expect speed: 0.000000 real_pulses:0 +I (48504) example: new speed:399.000000 +I (48514) example: expect speed: 0.000000 real_pulses:0 +I (48514) example: new speed:399.000000 +I (48524) example: expect speed: 0.000000 real_pulses:0 +I (48524) example: new speed:399.000000 +I (48534) example: expect speed: 0.000000 real_pulses:0 +I (48534) example: new speed:399.000000 +I (48544) example: expect speed: 0.000000 real_pulses:0 +I (48544) example: new speed:399.000000 +I (48554) example: expect speed: 0.000000 real_pulses:0 +I (48554) example: new speed:399.000000 +I (48564) example: expect speed: 0.000000 real_pulses:0 +I (48564) example: new speed:399.000000 +I (48574) example: expect speed: 0.000000 real_pulses:0 +I (48574) example: new speed:399.000000 +I (48584) example: expect speed: 0.000000 real_pulses:0 +I (48584) example: new speed:399.000000 +I (48594) example: expect speed: 0.000000 real_pulses:0 +I (48594) example: new speed:399.000000 +I (48604) example: expect speed: 0.000000 real_pulses:0 +I (48604) example: new speed:399.000000 +I (48614) example: expect speed: 0.000000 real_pulses:0 +I (48614) example: new speed:399.000000 +I (48624) example: expect speed: 0.000000 real_pulses:0 +I (48624) example: new speed:399.000000 +I (48634) example: expect speed: 0.000000 real_pulses:0 +I (48634) example: new speed:399.000000 +I (48644) example: expect speed: 0.000000 real_pulses:0 +I (48644) example: new speed:399.000000 +I (48654) example: expect speed: 0.000000 real_pulses:0 +I (48654) example: new speed:399.000000 +I (48664) example: expect speed: 0.000000 real_pulses:0 +I (48664) example: new speed:399.000000 +I (48674) example: expect speed: 0.000000 real_pulses:0 +I (48674) example: new speed:399.000000 +I (48684) example: expect speed: 0.000000 real_pulses:0 +I (48684) example: new speed:399.000000 +I (48694) example: expect speed: 0.000000 real_pulses:0 +I (48694) example: new speed:399.000000 +I (48704) example: expect speed: 0.000000 real_pulses:0 +I (48704) example: new speed:399.000000 +I (48714) example: expect speed: 0.000000 real_pulses:0 +I (48714) example: new speed:399.000000 +I (48724) example: expect speed: 0.000000 real_pulses:0 +I (48724) example: new speed:399.000000 +I (48734) example: expect speed: 0.000000 real_pulses:0 +I (48734) example: new speed:399.000000 +I (48744) example: expect speed: 0.000000 real_pulses:0 +I (48744) example: new speed:399.000000 +I (48754) example: expect speed: 0.000000 real_pulses:0 +I (48754) example: new speed:399.000000 +I (48764) example: expect speed: 0.000000 real_pulses:0 +I (48764) example: new speed:399.000000 +I (48774) example: expect speed: 0.000000 real_pulses:0 +I (48774) example: new speed:399.000000 +I (48784) example: expect speed: 0.000000 real_pulses:0 +I (48784) example: new speed:399.000000 +I (48794) example: expect speed: 0.000000 real_pulses:0 +I (48794) example: new speed:399.000000 +I (48804) example: expect speed: 0.000000 real_pulses:0 +I (48804) example: new speed:399.000000 +I (48814) example: expect speed: 0.000000 real_pulses:0 +I (48814) example: new speed:399.000000 +I (48824) example: expect speed: 0.000000 real_pulses:0 +I (48824) example: new speed:399.000000 +I (48834) example: expect speed: 0.000000 real_pulses:0 +I (48834) example: new speed:399.000000 +I (48844) example: expect speed: 0.000000 real_pulses:0 +I (48844) example: new speed:399.000000 +I (48854) example: expect speed: 0.000000 real_pulses:0 +I (48854) example: new speed:399.000000 +I (48864) example: expect speed: 0.000000 real_pulses:0 +I (48864) example: new speed:399.000000 +I (48874) example: expect speed: 0.000000 real_pulses:0 +I (48874) example: new speed:399.000000 +I (48884) example: expect speed: 0.000000 real_pulses:0 +I (48884) example: new speed:399.000000 +I (48894) example: expect speed: 0.000000 real_pulses:0 +I (48894) example: new speed:399.000000 +I (48904) example: expect speed: 0.000000 real_pulses:0 +I (48904) example: new speed:399.000000 +I (48914) example: expect speed: 0.000000 real_pulses:0 +I (48914) example: new speed:399.000000 +I (48924) example: expect speed: 0.000000 real_pulses:0 +I (48924) example: new speed:399.000000 +I (48934) example: expect speed: 0.000000 real_pulses:0 +I (48934) example: new speed:399.000000 +I (48944) example: expect speed: 0.000000 real_pulses:0 +I (48944) example: new speed:399.000000 +I (48954) example: expect speed: 0.000000 real_pulses:0 +I (48954) example: new speed:399.000000 +I (48964) example: expect speed: 0.000000 real_pulses:0 +I (48964) example: new speed:399.000000 +I (48974) example: expect speed: 0.000000 real_pulses:0 +I (48974) example: new speed:399.000000 +I (48984) example: expect speed: 0.000000 real_pulses:0 +I (48984) example: new speed:399.000000 +I (48994) example: expect speed: 0.000000 real_pulses:0 +I (48994) example: new speed:399.000000 +I (49004) example: expect speed: 0.000000 real_pulses:0 +I (49004) example: new speed:399.000000 +I (49014) example: expect speed: 0.000000 real_pulses:0 +I (49014) example: new speed:399.000000 +I (49024) example: expect speed: 0.000000 real_pulses:0 +I (49024) example: new speed:399.000000 +I (49034) example: expect speed: 0.000000 real_pulses:0 +I (49034) example: new speed:399.000000 +I (49044) example: expect speed: 0.000000 real_pulses:0 +I (49044) example: new speed:399.000000 +I (49054) example: expect speed: 0.000000 real_pulses:0 +I (49054) example: new speed:399.000000 +I (49064) example: expect speed: 0.000000 real_pulses:0 +I (49064) example: new speed:399.000000 +I (49074) example: expect speed: 0.000000 real_pulses:0 +I (49074) example: new speed:399.000000 +I (49084) example: expect speed: 0.000000 real_pulses:0 +I (49084) example: new speed:399.000000 +I (49094) example: expect speed: 0.000000 real_pulses:0 +I (49094) example: new speed:399.000000 +I (49104) example: expect speed: 0.000000 real_pulses:0 +I (49104) example: new speed:399.000000 +I (49114) example: expect speed: 0.000000 real_pulses:0 +I (49114) example: new speed:399.000000 +I (49124) example: expect speed: 0.000000 real_pulses:0 +I (49124) example: new speed:399.000000 +I (49134) example: expect speed: 0.000000 real_pulses:0 +I (49134) example: new speed:399.000000 +I (49144) example: expect speed: 0.000000 real_pulses:0 +I (49144) example: new speed:399.000000 +I (49154) example: expect speed: 0.000000 real_pulses:0 +I (49154) example: new speed:399.000000 +I (49164) example: expect speed: 0.000000 real_pulses:0 +I (49164) example: new speed:399.000000 +I (49174) example: expect speed: 0.000000 real_pulses:0 +I (49174) example: new speed:399.000000 +I (49184) example: expect speed: 0.000000 real_pulses:0 +I (49184) example: new speed:399.000000 +I (49194) example: expect speed: 0.000000 real_pulses:0 +I (49194) example: new speed:399.000000 +I (49204) example: expect speed: 0.000000 real_pulses:0 +I (49204) example: new speed:399.000000 +I (49214) example: expect speed: 0.000000 real_pulses:0 +I (49214) example: new speed:399.000000 +I (49224) example: expect speed: 0.000000 real_pulses:0 +I (49224) example: new speed:399.000000 +I (49234) example: expect speed: 0.000000 real_pulses:0 +I (49234) example: new speed:399.000000 +I (49244) example: expect speed: 0.000000 real_pulses:0 +I (49244) example: new speed:399.000000 +I (49254) example: expect speed: 0.000000 real_pulses:0 +I (49254) example: new speed:399.000000 +I (49264) example: expect speed: 0.000000 real_pulses:0 +I (49264) example: new speed:399.000000 +I (49274) example: expect speed: 0.000000 real_pulses:0 +I (49274) example: new speed:399.000000 +I (49284) example: expect speed: 0.000000 real_pulses:0 +I (49284) example: new speed:399.000000 +I (49294) example: expect speed: 0.000000 real_pulses:0 +I (49294) example: new speed:399.000000 +I (49304) example: expect speed: 0.000000 real_pulses:0 +I (49304) example: new speed:399.000000 +I (49314) example: expect speed: 0.000000 real_pulses:0 +I (49314) example: new speed:399.000000 +I (49324) example: expect speed: 0.000000 real_pulses:0 +I (49324) example: new speed:399.000000 +I (49334) example: expect speed: 0.000000 real_pulses:0 +I (49334) example: new speed:399.000000 +I (49344) example: expect speed: 0.000000 real_pulses:0 +I (49344) example: new speed:399.000000 +I (49354) example: expect speed: 0.000000 real_pulses:0 +I (49354) example: new speed:399.000000 +I (49364) example: expect speed: 0.000000 real_pulses:0 +I (49364) example: new speed:399.000000 +I (49374) example: expect speed: 0.000000 real_pulses:0 +I (49374) example: new speed:399.000000 +I (49384) example: expect speed: 0.000000 real_pulses:0 +I (49384) example: new speed:399.000000 +I (49394) example: expect speed: 0.000000 real_pulses:0 +I (49394) example: new speed:399.000000 +I (49404) example: expect speed: 0.000000 real_pulses:0 +I (49404) example: new speed:399.000000 +I (49414) example: expect speed: 0.000000 real_pulses:0 +I (49414) example: new speed:399.000000 +I (49424) example: expect speed: 0.000000 real_pulses:0 +I (49424) example: new speed:399.000000 +I (49434) example: expect speed: 0.000000 real_pulses:0 +I (49434) example: new speed:399.000000 +I (49444) example: expect speed: 0.000000 real_pulses:0 +I (49444) example: new speed:399.000000 +I (49454) example: expect speed: 0.000000 real_pulses:0 +I (49454) example: new speed:399.000000 +I (49464) example: expect speed: 0.000000 real_pulses:0 +I (49464) example: new speed:399.000000 +I (49474) example: expect speed: 0.000000 real_pulses:0 +I (49474) example: new speed:399.000000 +I (49484) example: expect speed: 0.000000 real_pulses:0 +I (49484) example: new speed:399.000000 +I (49494) example: expect speed: 0.000000 real_pulses:0 +I (49494) example: new speed:399.000000 +I (49504) example: expect speed: 0.000000 real_pulses:0 +I (49504) example: new speed:399.000000 +I (49514) example: expect speed: 0.000000 real_pulses:0 +I (49514) example: new speed:399.000000 +I (49524) example: expect speed: 0.000000 real_pulses:0 +I (49524) example: new speed:399.000000 +I (49534) example: expect speed: 0.000000 real_pulses:0 +I (49534) example: new speed:399.000000 +I (49544) example: expect speed: 0.000000 real_pulses:0 +I (49544) example: new speed:399.000000 +I (49554) example: expect speed: 0.000000 real_pulses:0 +I (49554) example: new speed:399.000000 +I (49564) example: expect speed: 0.000000 real_pulses:0 +I (49564) example: new speed:399.000000 +I (49574) example: expect speed: 0.000000 real_pulses:0 +I (49574) example: new speed:399.000000 +I (49584) example: expect speed: 0.000000 real_pulses:0 +I (49584) example: new speed:399.000000 +I (49594) example: expect speed: 0.000000 real_pulses:0 +I (49594) example: new speed:399.000000 +I (49604) example: expect speed: 0.000000 real_pulses:0 +I (49604) example: new speed:399.000000 +I (49614) example: expect speed: 0.000000 real_pulses:0 +I (49614) example: new speed:399.000000 +I (49624) example: expect speed: 0.000000 real_pulses:0 +I (49624) example: new speed:399.000000 +I (49634) example: expect speed: 0.000000 real_pulses:0 +I (49634) example: new speed:399.000000 +I (49644) example: expect speed: 0.000000 real_pulses:0 +I (49644) example: new speed:399.000000 +I (49654) example: expect speed: 0.000000 real_pulses:0 +I (49654) example: new speed:399.000000 +I (49664) example: expect speed: 0.000000 real_pulses:0 +I (49664) example: new speed:399.000000 +I (49674) example: expect speed: 0.000000 real_pulses:0 +I (49674) example: new speed:399.000000 +I (49684) example: expect speed: 0.000000 real_pulses:0 +I (49684) example: new speed:399.000000 +I (49694) example: expect speed: 0.000000 real_pulses:0 +I (49694) example: new speed:399.000000 +I (49704) example: expect speed: 0.000000 real_pulses:0 +I (49704) example: new speed:399.000000 +I (49714) example: expect speed: 0.000000 real_pulses:0 +I (49714) example: new speed:399.000000 +I (49724) example: expect speed: 0.000000 real_pulses:0 +I (49724) example: new speed:399.000000 +I (49734) example: expect speed: 0.000000 real_pulses:0 +I (49734) example: new speed:399.000000 +I (49744) example: expect speed: 0.000000 real_pulses:0 +I (49744) example: new speed:399.000000 +I (49754) example: expect speed: 0.000000 real_pulses:0 +I (49754) example: new speed:399.000000 +I (49764) example: expect speed: 0.000000 real_pulses:0 +I (49764) example: new speed:399.000000 +I (49774) example: expect speed: 0.000000 real_pulses:0 +I (49774) example: new speed:399.000000 +I (49784) example: expect speed: 0.000000 real_pulses:0 +I (49784) example: new speed:399.000000 +I (49794) example: expect speed: 0.000000 real_pulses:0 +I (49794) example: new speed:399.000000 +I (49804) example: expect speed: 0.000000 real_pulses:0 +I (49804) example: new speed:399.000000 +I (49814) example: expect speed: 0.000000 real_pulses:0 +I (49814) example: new speed:399.000000 +I (49824) example: expect speed: 0.000000 real_pulses:0 +I (49824) example: new speed:399.000000 +I (49834) example: expect speed: 0.000000 real_pulses:0 +I (49834) example: new speed:399.000000 +I (49844) example: expect speed: 0.000000 real_pulses:0 +I (49844) example: new speed:399.000000 +I (49854) example: expect speed: 0.000000 real_pulses:0 +I (49854) example: new speed:399.000000 +I (49864) example: expect speed: 0.000000 real_pulses:0 +I (49864) example: new speed:399.000000 +I (49874) example: expect speed: 0.000000 real_pulses:0 +I (49874) example: new speed:399.000000 +I (49884) example: expect speed: 0.000000 real_pulses:0 +I (49884) example: new speed:399.000000 +I (49894) example: expect speed: 0.000000 real_pulses:0 +I (49894) example: new speed:399.000000 +I (49904) example: expect speed: 0.000000 real_pulses:0 +I (49904) example: new speed:399.000000 +I (49914) example: expect speed: 0.000000 real_pulses:0 +I (49924) example: new speed:399.000000 +I (49924) example: expect speed: 0.000000 real_pulses:0 +I (49924) example: new speed:399.000000 +I (49934) example: expect speed: 0.000000 real_pulses:0 +I (49934) example: new speed:399.000000 +I (49944) example: expect speed: 0.000000 real_pulses:0 +I (49944) example: new speed:399.000000 +I (49954) example: expect speed: 0.000000 real_pulses:0 +I (49954) example: new speed:399.000000 +I (49964) example: expect speed: 0.000000 real_pulses:0 +I (49964) example: new speed:399.000000 +I (49974) example: expect speed: 0.000000 real_pulses:0 +I (49974) example: new speed:399.000000 +I (49984) example: expect speed: 0.000000 real_pulses:0 +I (49984) example: new speed:399.000000 +I (49994) example: expect speed: 0.000000 real_pulses:0 +I (49994) example: new speed:399.000000 +I (50004) example: expect speed: 0.000000 real_pulses:0 +I (50004) example: new speed:399.000000 +I (50014) example: expect speed: 0.000000 real_pulses:0 +I (50024) example: new speed:399.000000 +I (50024) example: expect speed: 0.000000 real_pulses:0 +I (50024) example: new speed:399.000000 +I (50034) example: expect speed: 0.000000 real_pulses:0 +I (50034) example: new speed:399.000000 +I (50044) example: expect speed: 0.000000 real_pulses:0 +I (50044) example: new speed:399.000000 +I (50054) example: expect speed: 0.000000 real_pulses:0 +I (50054) example: new speed:399.000000 +I (50064) example: expect speed: 0.000000 real_pulses:0 +I (50064) example: new speed:399.000000 +I (50074) example: expect speed: 0.000000 real_pulses:0 +I (50074) example: new speed:399.000000 +I (50084) example: expect speed: 0.000000 real_pulses:0 +I (50084) example: new speed:399.000000 +I (50094) example: expect speed: 0.000000 real_pulses:0 +I (50094) example: new speed:399.000000 +I (50104) example: expect speed: 0.000000 real_pulses:0 +I (50104) example: new speed:399.000000 +I (50114) example: expect speed: 0.000000 real_pulses:0 +I (50114) example: new speed:399.000000 +I (50124) example: expect speed: 0.000000 real_pulses:0 +I (50124) example: new speed:399.000000 +I (50134) example: expect speed: 0.000000 real_pulses:0 +I (50134) example: new speed:399.000000 +I (50144) example: expect speed: 0.000000 real_pulses:0 +I (50144) example: new speed:399.000000 +I (50154) example: expect speed: 0.000000 real_pulses:0 +I (50154) example: new speed:399.000000 +I (50164) example: expect speed: 0.000000 real_pulses:0 +I (50164) example: new speed:399.000000 +I (50174) example: expect speed: 0.000000 real_pulses:0 +I (50174) example: new speed:399.000000 +I (50184) example: expect speed: 0.000000 real_pulses:0 +I (50184) example: new speed:399.000000 +I (50194) example: expect speed: 0.000000 real_pulses:0 +I (50194) example: new speed:399.000000 +I (50204) example: expect speed: 0.000000 real_pulses:0 +I (50204) example: new speed:399.000000 +I (50214) example: expect speed: 0.000000 real_pulses:0 +I (50214) example: new speed:399.000000 +I (50224) example: expect speed: 0.000000 real_pulses:0 +I (50224) example: new speed:399.000000 +I (50234) example: expect speed: 0.000000 real_pulses:0 +I (50234) example: new speed:399.000000 +I (50244) example: expect speed: 0.000000 real_pulses:0 +I (50244) example: new speed:399.000000 +I (50254) example: expect speed: 0.000000 real_pulses:0 +I (50254) example: new speed:399.000000 +I (50264) example: expect speed: 0.000000 real_pulses:0 +I (50264) example: new speed:399.000000 +I (50274) example: expect speed: 0.000000 real_pulses:0 +I (50274) example: new speed:399.000000 +I (50284) example: expect speed: 0.000000 real_pulses:0 +I (50284) example: new speed:399.000000 +I (50294) example: expect speed: 0.000000 real_pulses:0 +I (50294) example: new speed:399.000000 +I (50304) example: expect speed: 0.000000 real_pulses:0 +I (50304) example: new speed:399.000000 +I (50314) example: expect speed: 0.000000 real_pulses:0 +I (50314) example: new speed:399.000000 +I (50324) example: expect speed: 0.000000 real_pulses:0 +I (50324) example: new speed:399.000000 +I (50334) example: expect speed: 0.000000 real_pulses:0 +I (50334) example: new speed:399.000000 +I (50344) example: expect speed: 0.000000 real_pulses:0 +I (50344) example: new speed:399.000000 +I (50354) example: expect speed: 0.000000 real_pulses:0 +I (50354) example: new speed:399.000000 +I (50364) example: expect speed: 0.000000 real_pulses:0 +I (50364) example: new speed:399.000000 +I (50374) example: expect speed: 0.000000 real_pulses:0 +I (50374) example: new speed:399.000000 +I (50384) example: expect speed: 0.000000 real_pulses:0 +I (50384) example: new speed:399.000000 +I (50394) example: expect speed: 0.000000 real_pulses:0 +I (50394) example: new speed:399.000000 +I (50404) example: expect speed: 0.000000 real_pulses:0 +I (50404) example: new speed:399.000000 +I (50414) example: expect speed: 0.000000 real_pulses:0 +I (50414) example: new speed:399.000000 +I (50424) example: expect speed: 0.000000 real_pulses:0 +I (50424) example: new speed:399.000000 +I (50434) example: expect speed: 0.000000 real_pulses:0 +I (50434) example: new speed:399.000000 +I (50444) example: expect speed: 0.000000 real_pulses:0 +I (50444) example: new speed:399.000000 +I (50454) example: expect speed: 0.000000 real_pulses:0 +I (50454) example: new speed:399.000000 +I (50464) example: expect speed: 0.000000 real_pulses:0 +I (50464) example: new speed:399.000000 +I (50474) example: expect speed: 0.000000 real_pulses:0 +I (50474) example: new speed:399.000000 +I (50484) example: expect speed: 0.000000 real_pulses:0 +I (50484) example: new speed:399.000000 +I (50494) example: expect speed: 0.000000 real_pulses:0 +I (50494) example: new speed:399.000000 +I (50504) example: expect speed: 0.000000 real_pulses:0 +I (50504) example: new speed:399.000000 +I (50514) example: expect speed: 0.000000 real_pulses:0 +I (50514) example: new speed:399.000000 +I (50524) example: expect speed: 0.000000 real_pulses:0 +I (50524) example: new speed:399.000000 +I (50534) example: expect speed: 0.000000 real_pulses:0 +I (50534) example: new speed:399.000000 +I (50544) example: expect speed: 0.000000 real_pulses:0 +I (50544) example: new speed:399.000000 +I (50554) example: expect speed: 0.000000 real_pulses:0 +I (50554) example: new speed:399.000000 +I (50564) example: expect speed: 0.000000 real_pulses:0 +I (50564) example: new speed:399.000000 +I (50574) example: expect speed: 0.000000 real_pulses:0 +I (50574) example: new speed:399.000000 +I (50584) example: expect speed: 0.000000 real_pulses:0 +I (50584) example: new speed:399.000000 +I (50594) example: expect speed: 0.000000 real_pulses:0 +I (50594) example: new speed:399.000000 +I (50604) example: expect speed: 0.000000 real_pulses:0 +I (50604) example: new speed:399.000000 +I (50614) example: expect speed: 0.000000 real_pulses:0 +I (50614) example: new speed:399.000000 +I (50624) example: expect speed: 0.000000 real_pulses:0 +I (50624) example: new speed:399.000000 +I (50634) example: expect speed: 0.000000 real_pulses:0 +I (50634) example: new speed:399.000000 +I (50644) example: expect speed: 0.000000 real_pulses:0 +I (50644) example: new speed:399.000000 +I (50654) example: expect speed: 0.000000 real_pulses:0 +I (50654) example: new speed:399.000000 +I (50664) example: expect speed: 0.000000 real_pulses:0 +I (50664) example: new speed:399.000000 +I (50674) example: expect speed: 0.000000 real_pulses:0 +I (50674) example: new speed:399.000000 +I (50684) example: expect speed: 0.000000 real_pulses:0 +I (50684) example: new speed:399.000000 +I (50694) example: expect speed: 0.000000 real_pulses:0 +I (50694) example: new speed:399.000000 +I (50704) example: expect speed: 0.000000 real_pulses:0 +I (50704) example: new speed:399.000000 +I (50714) example: expect speed: 0.000000 real_pulses:0 +I (50714) example: new speed:399.000000 +I (50724) example: expect speed: 0.000000 real_pulses:0 +I (50724) example: new speed:399.000000 +I (50734) example: expect speed: 0.000000 real_pulses:0 +I (50734) example: new speed:399.000000 +I (50744) example: expect speed: 0.000000 real_pulses:0 +I (50744) example: new speed:399.000000 +I (50754) example: expect speed: 0.000000 real_pulses:0 +I (50754) example: new speed:399.000000 +I (50764) example: expect speed: 0.000000 real_pulses:0 +I (50764) example: new speed:399.000000 +I (50774) example: expect speed: 0.000000 real_pulses:0 +I (50774) example: new speed:399.000000 +I (50784) example: expect speed: 0.000000 real_pulses:0 +I (50784) example: new speed:399.000000 +I (50794) example: expect speed: 0.000000 real_pulses:0 +I (50794) example: new speed:399.000000 +I (50804) example: expect speed: 0.000000 real_pulses:0 +I (50804) example: new speed:399.000000 +I (50814) example: expect speed: 0.000000 real_pulses:0 +I (50814) example: new speed:399.000000 +I (50824) example: expect speed: 0.000000 real_pulses:0 +I (50824) example: new speed:399.000000 +I (50834) example: expect speed: 0.000000 real_pulses:0 +I (50844) example: new speed:399.000000 +I (50844) example: expect speed: 0.000000 real_pulses:0 +I (50844) example: new speed:399.000000 +I (50854) example: expect speed: 0.000000 real_pulses:0 +I (50854) example: new speed:399.000000 +I (50864) example: expect speed: 0.000000 real_pulses:0 +I (50864) example: new speed:399.000000 +I (50874) example: expect speed: 0.000000 real_pulses:0 +I (50874) example: new speed:399.000000 +I (50884) example: expect speed: 0.000000 real_pulses:0 +I (50884) example: new speed:399.000000 +I (50894) example: expect speed: 0.000000 real_pulses:0 +I (50894) example: new speed:399.000000 +I (50904) example: expect speed: 0.000000 real_pulses:0 +I (50904) example: new speed:399.000000 +I (50914) example: expect speed: 0.000000 real_pulses:0 +I (50914) example: new speed:399.000000 +I (50924) example: expect speed: 0.000000 real_pulses:0 +I (50924) example: new speed:399.000000 +I (50934) example: expect speed: 0.000000 real_pulses:0 +I (50934) example: new speed:399.000000 +I (50944) example: expect speed: 0.000000 real_pulses:0 +I (50944) example: new speed:399.000000 +I (50954) example: expect speed: 0.000000 real_pulses:0 +I (50954) example: new speed:399.000000 +I (50964) example: expect speed: 0.000000 real_pulses:0 +I (50964) example: new speed:399.000000 +I (50974) example: expect speed: 0.000000 real_pulses:0 +I (50974) example: new speed:399.000000 +I (50984) example: expect speed: 0.000000 real_pulses:0 +I (50984) example: new speed:399.000000 +I (50994) example: expect speed: 0.000000 real_pulses:0 +I (50994) example: new speed:399.000000 +I (51004) example: expect speed: 0.000000 real_pulses:0 +I (51004) example: new speed:399.000000 +I (51014) example: expect speed: 0.000000 real_pulses:0 +I (51014) example: new speed:399.000000 +I (51024) example: expect speed: 0.000000 real_pulses:0 +I (51024) example: new speed:399.000000 +I (51034) example: expect speed: 0.000000 real_pulses:0 +I (51034) example: new speed:399.000000 +I (51044) example: expect speed: 0.000000 real_pulses:0 +I (51054) example: new speed:399.000000 +I (51054) example: expect speed: 0.000000 real_pulses:0 +I (51054) example: new speed:399.000000 +I (51064) example: expect speed: 0.000000 real_pulses:0 +I (51064) example: new speed:399.000000 +I (51074) example: expect speed: 0.000000 real_pulses:0 +I (51074) example: new speed:399.000000 +I (51084) example: expect speed: 0.000000 real_pulses:0 +I (51084) example: new speed:399.000000 +I (51094) example: expect speed: 0.000000 real_pulses:0 +I (51094) example: new speed:399.000000 +I (51104) example: expect speed: 0.000000 real_pulses:0 +I (51104) example: new speed:399.000000 +I (51114) example: expect speed: 0.000000 real_pulses:0 +I (51114) example: new speed:399.000000 +I (51124) example: expect speed: 0.000000 real_pulses:0 +I (51124) example: new speed:399.000000 +I (51134) example: expect speed: 0.000000 real_pulses:0 +I (51134) example: new speed:399.000000 +I (51144) example: expect speed: 0.000000 real_pulses:0 +I (51144) example: new speed:399.000000 +I (51154) example: expect speed: 0.000000 real_pulses:0 +I (51154) example: new speed:399.000000 +I (51164) example: expect speed: 0.000000 real_pulses:0 +I (51164) example: new speed:399.000000 +I (51174) example: expect speed: 0.000000 real_pulses:0 +I (51174) example: new speed:399.000000 +I (51184) example: expect speed: 0.000000 real_pulses:0 +I (51184) example: new speed:399.000000 +I (51194) example: expect speed: 0.000000 real_pulses:0 +I (51194) example: new speed:399.000000 +I (51204) example: expect speed: 0.000000 real_pulses:0 +I (51204) example: new speed:399.000000 +I (51214) example: expect speed: 0.000000 real_pulses:0 +I (51214) example: new speed:399.000000 +I (51224) example: expect speed: 0.000000 real_pulses:0 +I (51224) example: new speed:399.000000 +I (51234) example: expect speed: 0.000000 real_pulses:0 +I (51234) example: new speed:399.000000 +I (51244) example: expect speed: 0.000000 real_pulses:0 +I (51244) example: new speed:399.000000 +I (51254) example: expect speed: 0.000000 real_pulses:0 +I (51254) example: new speed:399.000000 +I (51264) example: expect speed: 0.000000 real_pulses:0 +I (51264) example: new speed:399.000000 +I (51274) example: expect speed: 0.000000 real_pulses:0 +I (51274) example: new speed:399.000000 +I (51284) example: expect speed: 0.000000 real_pulses:0 +I (51284) example: new speed:399.000000 +I (51294) example: expect speed: 0.000000 real_pulses:0 +I (51294) example: new speed:399.000000 +I (51304) example: expect speed: 0.000000 real_pulses:0 +I (51304) example: new speed:399.000000 +I (51314) example: expect speed: 0.000000 real_pulses:0 +I (51314) example: new speed:399.000000 +I (51324) example: expect speed: 0.000000 real_pulses:0 +I (51324) example: new speed:399.000000 +I (51334) example: expect speed: 0.000000 real_pulses:0 +I (51334) example: new speed:399.000000 +I (51344) example: expect speed: 0.000000 real_pulses:0 +I (51344) example: new speed:399.000000 +I (51354) example: expect speed: 0.000000 real_pulses:0 +I (51354) example: new speed:399.000000 +I (51364) example: expect speed: 0.000000 real_pulses:0 +I (51364) example: new speed:399.000000 +I (51374) example: expect speed: 0.000000 real_pulses:0 +I (51374) example: new speed:399.000000 +I (51384) example: expect speed: 0.000000 real_pulses:0 +I (51384) example: new speed:399.000000 +I (51394) example: expect speed: 0.000000 real_pulses:0 +I (51394) example: new speed:399.000000 +I (51404) example: expect speed: 0.000000 real_pulses:0 +I (51404) example: new speed:399.000000 +I (51414) example: expect speed: 0.000000 real_pulses:0 +I (51414) example: new speed:399.000000 +I (51424) example: expect speed: 0.000000 real_pulses:0 +I (51424) example: new speed:399.000000 +I (51434) example: expect speed: 0.000000 real_pulses:0 +I (51434) example: new speed:399.000000 +I (51444) example: expect speed: 0.000000 real_pulses:0 +I (51444) example: new speed:399.000000 +I (51454) example: expect speed: 0.000000 real_pulses:0 +I (51454) example: new speed:399.000000 +I (51464) example: expect speed: 0.000000 real_pulses:0 +I (51464) example: new speed:399.000000 +I (51474) example: expect speed: 0.000000 real_pulses:0 +I (51474) example: new speed:399.000000 +I (51484) example: expect speed: 0.000000 real_pulses:0 +I (51484) example: new speed:399.000000 +I (51494) example: expect speed: 0.000000 real_pulses:0 +I (51494) example: new speed:399.000000 +I (51504) example: expect speed: 0.000000 real_pulses:0 +I (51504) example: new speed:399.000000 +I (51514) example: expect speed: 0.000000 real_pulses:0 +I (51514) example: new speed:399.000000 +I (51524) example: expect speed: 0.000000 real_pulses:0 +I (51524) example: new speed:399.000000 +I (51534) example: expect speed: 0.000000 real_pulses:0 +I (51534) example: new speed:399.000000 +I (51544) example: expect speed: 0.000000 real_pulses:0 +I (51544) example: new speed:399.000000 +I (51554) example: expect speed: 0.000000 real_pulses:0 +I (51554) example: new speed:399.000000 +I (51564) example: expect speed: 0.000000 real_pulses:0 +I (51564) example: new speed:399.000000 +I (51574) example: expect speed: 0.000000 real_pulses:0 +I (51574) example: new speed:399.000000 +I (51584) example: expect speed: 0.000000 real_pulses:0 +I (51584) example: new speed:399.000000 +I (51594) example: expect speed: 0.000000 real_pulses:0 +I (51594) example: new speed:399.000000 +I (51604) example: expect speed: 0.000000 real_pulses:0 +I (51604) example: new speed:399.000000 +I (51614) example: expect speed: 0.000000 real_pulses:0 +I (51614) example: new speed:399.000000 +I (51624) example: expect speed: 0.000000 real_pulses:0 +I (51624) example: new speed:399.000000 +I (51634) example: expect speed: 0.000000 real_pulses:0 +I (51634) example: new speed:399.000000 +I (51644) example: expect speed: 0.000000 real_pulses:0 +I (51644) example: new speed:399.000000 +I (51654) example: expect speed: 0.000000 real_pulses:0 +I (51654) example: new speed:399.000000 +I (51664) example: expect speed: 0.000000 real_pulses:0 +I (51664) example: new speed:399.000000 +I (51674) example: expect speed: 0.000000 real_pulses:0 +I (51674) example: new speed:399.000000 +I (51684) example: expect speed: 0.000000 real_pulses:0 +I (51684) example: new speed:399.000000 +I (51694) example: expect speed: 0.000000 real_pulses:0 +I (51694) example: new speed:399.000000 +I (51704) example: expect speed: 0.000000 real_pulses:0 +I (51704) example: new speed:399.000000 +I (51714) example: expect speed: 0.000000 real_pulses:0 +I (51714) example: new speed:399.000000 +I (51724) example: expect speed: 0.000000 real_pulses:0 +I (51724) example: new speed:399.000000 +I (51734) example: expect speed: 0.000000 real_pulses:0 +I (51734) example: new speed:399.000000 +I (51744) example: expect speed: 0.000000 real_pulses:0 +I (51744) example: new speed:399.000000 +I (51754) example: expect speed: 0.000000 real_pulses:0 +I (51754) example: new speed:399.000000 +I (51764) example: expect speed: 0.000000 real_pulses:0 +I (51764) example: new speed:399.000000 +I (51774) example: expect speed: 0.000000 real_pulses:0 +I (51774) example: new speed:399.000000 +I (51784) example: expect speed: 0.000000 real_pulses:0 +I (51784) example: new speed:399.000000 +I (51794) example: expect speed: 0.000000 real_pulses:0 +I (51794) example: new speed:399.000000 +I (51804) example: expect speed: 0.000000 real_pulses:0 +I (51804) example: new speed:399.000000 +I (51814) example: expect speed: 0.000000 real_pulses:0 +I (51814) example: new speed:399.000000 +I (51824) example: expect speed: 0.000000 real_pulses:0 +I (51824) example: new speed:399.000000 +I (51834) example: expect speed: 0.000000 real_pulses:0 +I (51834) example: new speed:399.000000 +I (51844) example: expect speed: 0.000000 real_pulses:0 +I (51844) example: new speed:399.000000 +I (51854) example: expect speed: 0.000000 real_pulses:0 +I (51854) example: new speed:399.000000 +I (51864) example: expect speed: 0.000000 real_pulses:0 +I (51864) example: new speed:399.000000 +I (51874) example: expect speed: 0.000000 real_pulses:0 +I (51874) example: new speed:399.000000 +I (51884) example: expect speed: 0.000000 real_pulses:0 +I (51884) example: new speed:399.000000 +I (51894) example: expect speed: 0.000000 real_pulses:0 +I (51894) example: new speed:399.000000 +I (51904) example: expect speed: 0.000000 real_pulses:0 +I (51904) example: new speed:399.000000 +I (51914) example: expect speed: 0.000000 real_pulses:0 +I (51914) example: new speed:399.000000 +I (51924) example: expect speed: 0.000000 real_pulses:0 +I (51924) example: new speed:399.000000 +I (51934) example: expect speed: 0.000000 real_pulses:0 +I (51934) example: new speed:399.000000 +I (51944) example: expect speed: 0.000000 real_pulses:0 +I (51944) example: new speed:399.000000 +I (51954) example: expect speed: 0.000000 real_pulses:0 +I (51954) example: new speed:399.000000 +I (51964) example: expect speed: 0.000000 real_pulses:0 +I (51964) example: new speed:399.000000 +I (51974) example: expect speed: 0.000000 real_pulses:0 +I (51974) example: new speed:399.000000 +I (51984) example: expect speed: 0.000000 real_pulses:0 +I (51984) example: new speed:399.000000 +I (51994) example: expect speed: 0.000000 real_pulses:0 +I (51994) example: new speed:399.000000 +I (52004) example: expect speed: 0.000000 real_pulses:0 +I (52004) example: new speed:399.000000 +I (52014) example: expect speed: 0.000000 real_pulses:0 +I (52014) example: new speed:399.000000 +I (52024) example: expect speed: 0.000000 real_pulses:0 +I (52024) example: new speed:399.000000 +I (52034) example: expect speed: 0.000000 real_pulses:0 +I (52034) example: new speed:399.000000 +I (52044) example: expect speed: 0.000000 real_pulses:0 +I (52044) example: new speed:399.000000 +I (52054) example: expect speed: 0.000000 real_pulses:0 +I (52054) example: new speed:399.000000 +I (52064) example: expect speed: 0.000000 real_pulses:0 +I (52074) example: new speed:399.000000 +I (52074) example: expect speed: 0.000000 real_pulses:0 +I (52074) example: new speed:399.000000 +I (52084) example: expect speed: 0.000000 real_pulses:0 +I (52084) example: new speed:399.000000 +I (52094) example: expect speed: 0.000000 real_pulses:0 +I (52094) example: new speed:399.000000 +I (52104) example: expect speed: 0.000000 real_pulses:0 +I (52104) example: new speed:399.000000 +I (52114) example: expect speed: 0.000000 real_pulses:0 +I (52114) example: new speed:399.000000 +I (52124) example: expect speed: 0.000000 real_pulses:0 +I (52124) example: new speed:399.000000 +I (52134) example: expect speed: 0.000000 real_pulses:0 +I (52134) example: new speed:399.000000 +I (52144) example: expect speed: 0.000000 real_pulses:0 +I (52144) example: new speed:399.000000 +I (52154) example: expect speed: 0.000000 real_pulses:0 +I (52154) example: new speed:399.000000 +I (52164) example: expect speed: 0.000000 real_pulses:0 +I (52164) example: new speed:399.000000 +I (52174) example: expect speed: 0.000000 real_pulses:0 +I (52174) example: new speed:399.000000 +I (52184) example: expect speed: 0.000000 real_pulses:0 +I (52184) example: new speed:399.000000 +I (52194) example: expect speed: 0.000000 real_pulses:0 +I (52194) example: new speed:399.000000 +I (52204) example: expect speed: 0.000000 real_pulses:0 +I (52204) example: new speed:399.000000 +I (52214) example: expect speed: 0.000000 real_pulses:0 +I (52214) example: new speed:399.000000 +I (52224) example: expect speed: 0.000000 real_pulses:0 +I (52224) example: new speed:399.000000 +I (52234) example: expect speed: 0.000000 real_pulses:0 +I (52234) example: new speed:399.000000 +I (52244) example: expect speed: 0.000000 real_pulses:0 +I (52244) example: new speed:399.000000 +I (52254) example: expect speed: 0.000000 real_pulses:0 +I (52254) example: new speed:399.000000 +I (52264) example: expect speed: 0.000000 real_pulses:0 +I (52264) example: new speed:399.000000 +I (52274) example: expect speed: 0.000000 real_pulses:0 +I (52274) example: new speed:399.000000 +I (52284) example: expect speed: 0.000000 real_pulses:0 +I (52284) example: new speed:399.000000 +I (52294) example: expect speed: 0.000000 real_pulses:0 +I (52294) example: new speed:399.000000 +I (52304) example: expect speed: 0.000000 real_pulses:0 +I (52304) example: new speed:399.000000 +I (52314) example: expect speed: 0.000000 real_pulses:0 +I (52314) example: new speed:399.000000 +I (52324) example: expect speed: 0.000000 real_pulses:0 +I (52324) example: new speed:399.000000 +I (52334) example: expect speed: 0.000000 real_pulses:0 +I (52334) example: new speed:399.000000 +I (52344) example: expect speed: 0.000000 real_pulses:0 +I (52344) example: new speed:399.000000 +I (52354) example: expect speed: 0.000000 real_pulses:0 +I (52354) example: new speed:399.000000 +I (52364) example: expect speed: 0.000000 real_pulses:0 +I (52364) example: new speed:399.000000 +I (52374) example: expect speed: 0.000000 real_pulses:0 +I (52384) example: new speed:399.000000 +I (52384) example: expect speed: 0.000000 real_pulses:0 +I (52384) example: new speed:399.000000 +I (52394) example: expect speed: 0.000000 real_pulses:0 +I (52394) example: new speed:399.000000 +I (52404) example: expect speed: 0.000000 real_pulses:0 +I (52404) example: new speed:399.000000 +I (52414) example: expect speed: 0.000000 real_pulses:0 +I (52414) example: new speed:399.000000 +I (52424) example: expect speed: 0.000000 real_pulses:0 +I (52424) example: new speed:399.000000 +I (52434) example: expect speed: 0.000000 real_pulses:0 +I (52434) example: new speed:399.000000 +I (52444) example: expect speed: 0.000000 real_pulses:0 +I (52444) example: new speed:399.000000 +I (52454) example: expect speed: 0.000000 real_pulses:0 +I (52454) example: new speed:399.000000 +I (52464) example: expect speed: 0.000000 real_pulses:0 +I (52464) example: new speed:399.000000 +I (52474) example: expect speed: 0.000000 real_pulses:0 +I (52474) example: new speed:399.000000 +I (52484) example: expect speed: 0.000000 real_pulses:0 +I (52484) example: new speed:399.000000 +I (52494) example: expect speed: 0.000000 real_pulses:0 +I (52494) example: new speed:399.000000 +I (52504) example: expect speed: 0.000000 real_pulses:0 +I (52504) example: new speed:399.000000 +I (52514) example: expect speed: 0.000000 real_pulses:0 +I (52514) example: new speed:399.000000 +I (52524) example: expect speed: 0.000000 real_pulses:0 +I (52524) example: new speed:399.000000 +I (52534) example: expect speed: 0.000000 real_pulses:0 +I (52534) example: new speed:399.000000 +I (52544) example: expect speed: 0.000000 real_pulses:0 +I (52544) example: new speed:399.000000 +I (52554) example: expect speed: 0.000000 real_pulses:0 +I (52554) example: new speed:399.000000 +I (52564) example: expect speed: 0.000000 real_pulses:0 +I (52564) example: new speed:399.000000 +I (52574) example: expect speed: 0.000000 real_pulses:0 +I (52574) example: new speed:399.000000 +I (52584) example: expect speed: 0.000000 real_pulses:0 +I (52584) example: new speed:399.000000 +I (52594) example: expect speed: 0.000000 real_pulses:0 +I (52594) example: new speed:399.000000 +I (52604) example: expect speed: 0.000000 real_pulses:0 +I (52604) example: new speed:399.000000 +I (52614) example: expect speed: 0.000000 real_pulses:0 +I (52614) example: new speed:399.000000 +I (52624) example: expect speed: 0.000000 real_pulses:0 +I (52624) example: new speed:399.000000 +I (52634) example: expect speed: 0.000000 real_pulses:0 +I (52634) example: new speed:399.000000 +I (52644) example: expect speed: 0.000000 real_pulses:0 +I (52644) example: new speed:399.000000 +I (52654) example: expect speed: 0.000000 real_pulses:0 +I (52654) example: new speed:399.000000 +I (52664) example: expect speed: 0.000000 real_pulses:0 +I (52664) example: new speed:399.000000 +I (52674) example: expect speed: 0.000000 real_pulses:0 +I (52674) example: new speed:399.000000 +I (52684) example: expect speed: 0.000000 real_pulses:0 +I (52684) example: new speed:399.000000 +I (52694) example: expect speed: 0.000000 real_pulses:0 +I (52694) example: new speed:399.000000 +I (52704) example: expect speed: 0.000000 real_pulses:0 +I (52704) example: new speed:399.000000 +I (52714) example: expect speed: 0.000000 real_pulses:0 +I (52714) example: new speed:399.000000 +I (52724) example: expect speed: 0.000000 real_pulses:0 +I (52724) example: new speed:399.000000 +I (52734) example: expect speed: 0.000000 real_pulses:0 +I (52734) example: new speed:399.000000 +I (52744) example: expect speed: 0.000000 real_pulses:0 +I (52744) example: new speed:399.000000 +I (52754) example: expect speed: 0.000000 real_pulses:0 +I (52754) example: new speed:399.000000 +I (52764) example: expect speed: 0.000000 real_pulses:0 +I (52764) example: new speed:399.000000 +I (52774) example: expect speed: 0.000000 real_pulses:0 +I (52774) example: new speed:399.000000 +I (52784) example: expect speed: 0.000000 real_pulses:0 +I (52784) example: new speed:399.000000 +I (52794) example: expect speed: 0.000000 real_pulses:0 +I (52794) example: new speed:399.000000 +I (52804) example: expect speed: 0.000000 real_pulses:0 +I (52804) example: new speed:399.000000 +I (52814) example: expect speed: 0.000000 real_pulses:0 +I (52814) example: new speed:399.000000 +I (52824) example: expect speed: 0.000000 real_pulses:0 +I (52824) example: new speed:399.000000 +I (52834) example: expect speed: 0.000000 real_pulses:0 +I (52834) example: new speed:399.000000 +I (52844) example: expect speed: 0.000000 real_pulses:0 +I (52844) example: new speed:399.000000 +I (52854) example: expect speed: 0.000000 real_pulses:0 +I (52854) example: new speed:399.000000 +I (52864) example: expect speed: 0.000000 real_pulses:0 +I (52864) example: new speed:399.000000 +I (52874) example: expect speed: 0.000000 real_pulses:0 +I (52874) example: new speed:399.000000 +I (52884) example: expect speed: 0.000000 real_pulses:0 +I (52884) example: new speed:399.000000 +I (52894) example: expect speed: 0.000000 real_pulses:0 +I (52894) example: new speed:399.000000 +I (52904) example: expect speed: 0.000000 real_pulses:0 +I (52904) example: new speed:399.000000 +I (52914) example: expect speed: 0.000000 real_pulses:0 +I (52914) example: new speed:399.000000 +I (52924) example: expect speed: 0.000000 real_pulses:0 +I (52924) example: new speed:399.000000 +I (52934) example: expect speed: 0.000000 real_pulses:0 +I (52934) example: new speed:399.000000 +I (52944) example: expect speed: 0.000000 real_pulses:0 +I (52944) example: new speed:399.000000 +I (52954) example: expect speed: 0.000000 real_pulses:0 +I (52954) example: new speed:399.000000 +I (52964) example: expect speed: 0.000000 real_pulses:0 +I (52964) example: new speed:399.000000 +I (52974) example: expect speed: 0.000000 real_pulses:0 +I (52974) example: new speed:399.000000 +I (52984) example: expect speed: 0.000000 real_pulses:0 +I (52984) example: new speed:399.000000 +I (52994) example: expect speed: 0.000000 real_pulses:0 +I (52994) example: new speed:399.000000 +I (53004) example: expect speed: 0.000000 real_pulses:0 +I (53004) example: new speed:399.000000 +I (53014) example: expect speed: 0.000000 real_pulses:0 +I (53014) example: new speed:399.000000 +I (53024) example: expect speed: 0.000000 real_pulses:0 +I (53024) example: new speed:399.000000 +I (53034) example: expect speed: 0.000000 real_pulses:0 +I (53034) example: new speed:399.000000 +I (53044) example: expect speed: 0.000000 real_pulses:0 +I (53044) example: new speed:399.000000 +I (53054) example: expect speed: 0.000000 real_pulses:0 +I (53054) example: new speed:399.000000 +I (53064) example: expect speed: 0.000000 real_pulses:0 +I (53064) example: new speed:399.000000 +I (53074) example: expect speed: 0.000000 real_pulses:0 +I (53074) example: new speed:399.000000 +I (53084) example: expect speed: 0.000000 real_pulses:0 +I (53084) example: new speed:399.000000 +I (53094) example: expect speed: 0.000000 real_pulses:0 +I (53104) example: new speed:399.000000 +I (53104) example: expect speed: 0.000000 real_pulses:0 +I (53104) example: new speed:399.000000 +I (53114) example: expect speed: 0.000000 real_pulses:0 +I (53114) example: new speed:399.000000 +I (53124) example: expect speed: 0.000000 real_pulses:0 +I (53124) example: new speed:399.000000 +I (53134) example: expect speed: 0.000000 real_pulses:0 +I (53134) example: new speed:399.000000 +I (53144) example: expect speed: 0.000000 real_pulses:0 +I (53144) example: new speed:399.000000 +I (53154) example: expect speed: 0.000000 real_pulses:0 +I (53154) example: new speed:399.000000 +I (53164) example: expect speed: 0.000000 real_pulses:0 +I (53164) example: new speed:399.000000 +I (53174) example: expect speed: 0.000000 real_pulses:0 +I (53174) example: new speed:399.000000 +I (53184) example: expect speed: 0.000000 real_pulses:0 +I (53184) example: new speed:399.000000 +I (53194) example: expect speed: 0.000000 real_pulses:0 +I (53194) example: new speed:399.000000 +I (53204) example: expect speed: 0.000000 real_pulses:0 +I (53204) example: new speed:399.000000 +I (53214) example: expect speed: 0.000000 real_pulses:0 +I (53214) example: new speed:399.000000 +I (53224) example: expect speed: 0.000000 real_pulses:0 +I (53224) example: new speed:399.000000 +I (53234) example: expect speed: 0.000000 real_pulses:0 +I (53234) example: new speed:399.000000 +I (53244) example: expect speed: 0.000000 real_pulses:0 +I (53244) example: new speed:399.000000 +I (53254) example: expect speed: 0.000000 real_pulses:0 +I (53254) example: new speed:399.000000 +I (53264) example: expect speed: 0.000000 real_pulses:0 +I (53264) example: new speed:399.000000 +I (53274) example: expect speed: 0.000000 real_pulses:0 +I (53274) example: new speed:399.000000 +I (53284) example: expect speed: 0.000000 real_pulses:0 +I (53284) example: new speed:399.000000 +I (53294) example: expect speed: 0.000000 real_pulses:0 +I (53294) example: new speed:399.000000 +I (53304) example: expect speed: 0.000000 real_pulses:0 +I (53304) example: new speed:399.000000 +I (53314) example: expect speed: 0.000000 real_pulses:0 +I (53314) example: new speed:399.000000 +I (53324) example: expect speed: 0.000000 real_pulses:0 +I (53324) example: new speed:399.000000 +I (53334) example: expect speed: 0.000000 real_pulses:0 +I (53334) example: new speed:399.000000 +I (53344) example: expect speed: 0.000000 real_pulses:0 +I (53344) example: new speed:399.000000 +I (53354) example: expect speed: 0.000000 real_pulses:0 +I (53354) example: new speed:399.000000 +I (53364) example: expect speed: 0.000000 real_pulses:0 +I (53364) example: new speed:399.000000 +I (53374) example: expect speed: 0.000000 real_pulses:0 +I (53374) example: new speed:399.000000 +I (53384) example: expect speed: 0.000000 real_pulses:0 +I (53384) example: new speed:399.000000 +I (53394) example: expect speed: 0.000000 real_pulses:0 +I (53394) example: new speed:399.000000 +I (53404) example: expect speed: 0.000000 real_pulses:0 +I (53414) example: new speed:399.000000 +I (53414) example: expect speed: 0.000000 real_pulses:0 +I (53414) example: new speed:399.000000 +I (53424) example: expect speed: 0.000000 real_pulses:0 +I (53424) example: new speed:399.000000 +I (53434) example: expect speed: 0.000000 real_pulses:0 +I (53434) example: new speed:399.000000 +I (53444) example: expect speed: 0.000000 real_pulses:0 +I (53444) example: new speed:399.000000 +I (53454) example: expect speed: 0.000000 real_pulses:0 +I (53454) example: new speed:399.000000 +I (53464) example: expect speed: 0.000000 real_pulses:0 +I (53464) example: new speed:399.000000 +I (53474) example: expect speed: 0.000000 real_pulses:0 +I (53474) example: new speed:399.000000 +I (53484) example: expect speed: 0.000000 real_pulses:0 +I (53484) example: new speed:399.000000 +I (53494) example: expect speed: 0.000000 real_pulses:0 +I (53494) example: new speed:399.000000 +I (53504) example: expect speed: 0.000000 real_pulses:0 +I (53504) example: new speed:399.000000 +I (53514) example: expect speed: 0.000000 real_pulses:0 +I (53514) example: new speed:399.000000 +I (53524) example: expect speed: 0.000000 real_pulses:0 +I (53524) example: new speed:399.000000 +I (53534) example: expect speed: 0.000000 real_pulses:0 +I (53534) example: new speed:399.000000 +I (53544) example: expect speed: 0.000000 real_pulses:0 +I (53544) example: new speed:399.000000 +I (53554) example: expect speed: 0.000000 real_pulses:0 +I (53554) example: new speed:399.000000 +I (53564) example: expect speed: 0.000000 real_pulses:0 +I (53564) example: new speed:399.000000 +I (53574) example: expect speed: 0.000000 real_pulses:0 +I (53574) example: new speed:399.000000 +I (53584) example: expect speed: 0.000000 real_pulses:0 +I (53584) example: new speed:399.000000 +I (53594) example: expect speed: 0.000000 real_pulses:0 +I (53594) example: new speed:399.000000 +I (53604) example: expect speed: 0.000000 real_pulses:0 +I (53604) example: new speed:399.000000 +I (53614) example: expect speed: 0.000000 real_pulses:0 +I (53614) example: new speed:399.000000 +I (53624) example: expect speed: 0.000000 real_pulses:0 +I (53624) example: new speed:399.000000 +I (53634) example: expect speed: 0.000000 real_pulses:0 +I (53634) example: new speed:399.000000 +I (53644) example: expect speed: 0.000000 real_pulses:0 +I (53644) example: new speed:399.000000 +I (53654) example: expect speed: 0.000000 real_pulses:0 +I (53654) example: new speed:399.000000 +I (53664) example: expect speed: 0.000000 real_pulses:0 +I (53664) example: new speed:399.000000 +I (53674) example: expect speed: 0.000000 real_pulses:0 +I (53674) example: new speed:399.000000 +I (53684) example: expect speed: 0.000000 real_pulses:0 +I (53684) example: new speed:399.000000 +I (53694) example: expect speed: 0.000000 real_pulses:0 +I (53694) example: new speed:399.000000 +I (53704) example: expect speed: 0.000000 real_pulses:0 +I (53704) example: new speed:399.000000 +I (53714) example: expect speed: 0.000000 real_pulses:0 +I (53714) example: new speed:399.000000 +I (53724) example: expect speed: 0.000000 real_pulses:0 +I (53724) example: new speed:399.000000 +I (53734) example: expect speed: 0.000000 real_pulses:0 +I (53734) example: new speed:399.000000 +I (53744) example: expect speed: 0.000000 real_pulses:0 +I (53744) example: new speed:399.000000 +I (53754) example: expect speed: 0.000000 real_pulses:0 +I (53754) example: new speed:399.000000 +I (53764) example: expect speed: 0.000000 real_pulses:0 +I (53764) example: new speed:399.000000 +I (53774) example: expect speed: 0.000000 real_pulses:0 +I (53774) example: new speed:399.000000 +I (53784) example: expect speed: 0.000000 real_pulses:0 +I (53784) example: new speed:399.000000 +I (53794) example: expect speed: 0.000000 real_pulses:0 +I (53794) example: new speed:399.000000 +I (53804) example: expect speed: 0.000000 real_pulses:0 +I (53804) example: new speed:399.000000 +I (53814) example: expect speed: 0.000000 real_pulses:0 +I (53814) example: new speed:399.000000 +I (53824) example: expect speed: 0.000000 real_pulses:0 +I (53824) example: new speed:399.000000 +I (53834) example: expect speed: 0.000000 real_pulses:0 +I (53834) example: new speed:399.000000 +I (53844) example: expect speed: 0.000000 real_pulses:0 +I (53844) example: new speed:399.000000 +I (53854) example: expect speed: 0.000000 real_pulses:0 +I (53854) example: new speed:399.000000 +I (53864) example: expect speed: 0.000000 real_pulses:0 +I (53864) example: new speed:399.000000 +I (53874) example: expect speed: 0.000000 real_pulses:0 +I (53874) example: new speed:399.000000 +I (53884) example: expect speed: 0.000000 real_pulses:0 +I (53884) example: new speed:399.000000 +I (53894) example: expect speed: 0.000000 real_pulses:0 +I (53894) example: new speed:399.000000 +I (53904) example: expect speed: 0.000000 real_pulses:0 +I (53904) example: new speed:399.000000 +I (53914) example: expect speed: 0.000000 real_pulses:0 +I (53914) example: new speed:399.000000 +I (53924) example: expect speed: 0.000000 real_pulses:0 +I (53924) example: new speed:399.000000 +I (53934) example: expect speed: 0.000000 real_pulses:0 +I (53934) example: new speed:399.000000 +I (53944) example: expect speed: 0.000000 real_pulses:0 +I (53944) example: new speed:399.000000 +I (53954) example: expect speed: 0.000000 real_pulses:0 +I (53954) example: new speed:399.000000 +I (53964) example: expect speed: 0.000000 real_pulses:0 +I (53964) example: new speed:399.000000 +I (53974) example: expect speed: 0.000000 real_pulses:0 +I (53974) example: new speed:399.000000 +I (53984) example: expect speed: 0.000000 real_pulses:0 +I (53984) example: new speed:399.000000 +I (53994) example: expect speed: 0.000000 real_pulses:0 +I (53994) example: new speed:399.000000 +I (54004) example: expect speed: 0.000000 real_pulses:0 +I (54004) example: new speed:399.000000 +I (54014) example: expect speed: 0.000000 real_pulses:0 +I (54014) example: new speed:399.000000 +I (54024) example: expect speed: 0.000000 real_pulses:0 +I (54024) example: new speed:399.000000 +I (54034) example: expect speed: 0.000000 real_pulses:0 +I (54034) example: new speed:399.000000 +I (54044) example: expect speed: 0.000000 real_pulses:0 +I (54044) example: new speed:399.000000 +I (54054) example: expect speed: 0.000000 real_pulses:0 +I (54054) example: new speed:399.000000 +I (54064) example: expect speed: 0.000000 real_pulses:0 +I (54064) example: new speed:399.000000 +I (54074) example: expect speed: 0.000000 real_pulses:0 +I (54074) example: new speed:399.000000 +I (54084) example: expect speed: 0.000000 real_pulses:0 +I (54084) example: new speed:399.000000 +I (54094) example: expect speed: 0.000000 real_pulses:0 +I (54094) example: new speed:399.000000 +I (54104) example: expect speed: 0.000000 real_pulses:0 +I (54104) example: new speed:399.000000 +I (54114) example: expect speed: 0.000000 real_pulses:0 +I (54114) example: new speed:399.000000 +I (54124) example: expect speed: 0.000000 real_pulses:0 +I (54124) example: new speed:399.000000 +I (54134) example: expect speed: 0.000000 real_pulses:0 +I (54134) example: new speed:399.000000 +I (54144) example: expect speed: 0.000000 real_pulses:0 +I (54144) example: new speed:399.000000 +I (54154) example: expect speed: 0.000000 real_pulses:0 +I (54154) example: new speed:399.000000 +I (54164) example: expect speed: 0.000000 real_pulses:0 +I (54164) example: new speed:399.000000 +I (54174) example: expect speed: 0.000000 real_pulses:0 +I (54174) example: new speed:399.000000 +I (54184) example: expect speed: 0.000000 real_pulses:0 +I (54184) example: new speed:399.000000 +I (54194) example: expect speed: 0.000000 real_pulses:0 +I (54194) example: new speed:399.000000 +I (54204) example: expect speed: 0.000000 real_pulses:0 +I (54204) example: new speed:399.000000 +I (54214) example: expect speed: 0.000000 real_pulses:0 +I (54214) example: new speed:399.000000 +I (54224) example: expect speed: 0.000000 real_pulses:0 +I (54224) example: new speed:399.000000 +I (54234) example: expect speed: 0.000000 real_pulses:0 +I (54234) example: new speed:399.000000 +I (54244) example: expect speed: 0.000000 real_pulses:0 +I (54244) example: new speed:399.000000 +I (54254) example: expect speed: 0.000000 real_pulses:0 +I (54254) example: new speed:399.000000 +I (54264) example: expect speed: 0.000000 real_pulses:0 +I (54264) example: new speed:399.000000 +I (54274) example: expect speed: 0.000000 real_pulses:0 +I (54274) example: new speed:399.000000 +I (54284) example: expect speed: 0.000000 real_pulses:0 +I (54284) example: new speed:399.000000 +I (54294) example: expect speed: 0.000000 real_pulses:0 +I (54294) example: new speed:399.000000 +I (54304) example: expect speed: 0.000000 real_pulses:0 +I (54304) example: new speed:399.000000 +I (54314) example: expect speed: 0.000000 real_pulses:0 +I (54314) example: new speed:399.000000 +I (54324) example: expect speed: 0.000000 real_pulses:0 +I (54324) example: new speed:399.000000 +I (54334) example: expect speed: 0.000000 real_pulses:0 +I (54334) example: new speed:399.000000 +I (54344) example: expect speed: 0.000000 real_pulses:0 +I (54344) example: new speed:399.000000 +I (54354) example: expect speed: 0.000000 real_pulses:0 +I (54354) example: new speed:399.000000 +I (54364) example: expect speed: 0.000000 real_pulses:0 +I (54364) example: new speed:399.000000 +I (54374) example: expect speed: 0.000000 real_pulses:0 +I (54374) example: new speed:399.000000 +I (54384) example: expect speed: 0.000000 real_pulses:0 +I (54384) example: new speed:399.000000 +I (54394) example: expect speed: 0.000000 real_pulses:0 +I (54394) example: new speed:399.000000 +I (54404) example: expect speed: 0.000000 real_pulses:0 +I (54404) example: new speed:399.000000 +I (54414) example: expect speed: 0.000000 real_pulses:0 +I (54414) example: new speed:399.000000 +I (54424) example: expect speed: 0.000000 real_pulses:0 +I (54434) example: new speed:399.000000 +I (54434) example: expect speed: 0.000000 real_pulses:0 +I (54434) example: new speed:399.000000 +I (54444) example: expect speed: 0.000000 real_pulses:0 +I (54444) example: new speed:399.000000 +I (54454) example: expect speed: 0.000000 real_pulses:0 +I (54454) example: new speed:399.000000 +I (54464) example: expect speed: 0.000000 real_pulses:0 +I (54464) example: new speed:399.000000 +I (54474) example: expect speed: 0.000000 real_pulses:0 +I (54474) example: new speed:399.000000 +I (54484) example: expect speed: 0.000000 real_pulses:0 +I (54484) example: new speed:399.000000 +I (54494) example: expect speed: 0.000000 real_pulses:0 +I (54494) example: new speed:399.000000 +I (54504) example: expect speed: 0.000000 real_pulses:0 +I (54504) example: new speed:399.000000 +I (54514) example: expect speed: 0.000000 real_pulses:0 +I (54514) example: new speed:399.000000 +I (54524) example: expect speed: 0.000000 real_pulses:0 +I (54524) example: new speed:399.000000 +I (54534) example: expect speed: 0.000000 real_pulses:0 +I (54534) example: new speed:399.000000 +I (54544) example: expect speed: 0.000000 real_pulses:0 +I (54544) example: new speed:399.000000 +I (54554) example: expect speed: 0.000000 real_pulses:0 +I (54554) example: new speed:399.000000 +I (54564) example: expect speed: 0.000000 real_pulses:0 +I (54564) example: new speed:399.000000 +I (54574) example: expect speed: 0.000000 real_pulses:0 +I (54574) example: new speed:399.000000 +I (54584) example: expect speed: 0.000000 real_pulses:0 +I (54584) example: new speed:399.000000 +I (54594) example: expect speed: 0.000000 real_pulses:0 +I (54594) example: new speed:399.000000 +I (54604) example: expect speed: 0.000000 real_pulses:0 +I (54604) example: new speed:399.000000 +I (54614) example: expect speed: 0.000000 real_pulses:0 +I (54614) example: new speed:399.000000 +I (54624) example: expect speed: 0.000000 real_pulses:0 +I (54624) example: new speed:399.000000 +I (54634) example: expect speed: 0.000000 real_pulses:0 +I (54634) example: new speed:399.000000 +I (54644) example: expect speed: 0.000000 real_pulses:0 +I (54644) example: new speed:399.000000 +I (54654) example: expect speed: 0.000000 real_pulses:0 +I (54654) example: new speed:399.000000 +I (54664) example: expect speed: 0.000000 real_pulses:0 +I (54664) example: new speed:399.000000 +I (54674) example: expect speed: 0.000000 real_pulses:0 +I (54674) example: new speed:399.000000 +I (54684) example: expect speed: 0.000000 real_pulses:0 +I (54684) example: new speed:399.000000 +I (54694) example: expect speed: 0.000000 real_pulses:0 +I (54694) example: new speed:399.000000 +I (54704) example: expect speed: 0.000000 real_pulses:0 +I (54704) example: new speed:399.000000 +I (54714) example: expect speed: 0.000000 real_pulses:0 +I (54714) example: new speed:399.000000 +I (54724) example: expect speed: 0.000000 real_pulses:0 +I (54724) example: new speed:399.000000 +I (54734) example: expect speed: 0.000000 real_pulses:0 +I (54734) example: new speed:399.000000 +I (54744) example: expect speed: 0.000000 real_pulses:0 +I (54744) example: new speed:399.000000 +I (54754) example: expect speed: 0.000000 real_pulses:0 +I (54754) example: new speed:399.000000 +I (54764) example: expect speed: 0.000000 real_pulses:0 +I (54764) example: new speed:399.000000 +I (54774) example: expect speed: 0.000000 real_pulses:0 +I (54774) example: new speed:399.000000 +I (54784) example: expect speed: 0.000000 real_pulses:0 +I (54784) example: new speed:399.000000 +I (54794) example: expect speed: 0.000000 real_pulses:0 +I (54794) example: new speed:399.000000 +I (54804) example: expect speed: 0.000000 real_pulses:0 +I (54804) example: new speed:399.000000 +I (54814) example: expect speed: 0.000000 real_pulses:0 +I (54814) example: new speed:399.000000 +I (54824) example: expect speed: 0.000000 real_pulses:0 +I (54824) example: new speed:399.000000 +I (54834) example: expect speed: 0.000000 real_pulses:0 +I (54834) example: new speed:399.000000 +I (54844) example: expect speed: 0.000000 real_pulses:0 +I (54844) example: new speed:399.000000 +I (54854) example: expect speed: 0.000000 real_pulses:0 +I (54854) example: new speed:399.000000 +I (54864) example: expect speed: 0.000000 real_pulses:0 +I (54864) example: new speed:399.000000 +I (54874) example: expect speed: 0.000000 real_pulses:0 +I (54874) example: new speed:399.000000 +I (54884) example: expect speed: 0.000000 real_pulses:0 +I (54884) example: new speed:399.000000 +I (54894) example: expect speed: 0.000000 real_pulses:0 +I (54894) example: new speed:399.000000 +I (54904) example: expect speed: 0.000000 real_pulses:0 +I (54904) example: new speed:399.000000 +I (54914) example: expect speed: 0.000000 real_pulses:0 +I (54914) example: new speed:399.000000 +I (54924) example: expect speed: 0.000000 real_pulses:0 +I (54924) example: new speed:399.000000 +I (54934) example: expect speed: 0.000000 real_pulses:0 +I (54934) example: new speed:399.000000 +I (54944) example: expect speed: 0.000000 real_pulses:0 +I (54944) example: new speed:399.000000 +I (54954) example: expect speed: 0.000000 real_pulses:0 +I (54954) example: new speed:399.000000 +I (54964) example: expect speed: 0.000000 real_pulses:0 +I (54964) example: new speed:399.000000 +I (54974) example: expect speed: 0.000000 real_pulses:0 +I (54974) example: new speed:399.000000 +I (54984) example: expect speed: 0.000000 real_pulses:0 +I (54984) example: new speed:399.000000 +I (54994) example: expect speed: 0.000000 real_pulses:0 +I (54994) example: new speed:399.000000 +I (55004) example: expect speed: 0.000000 real_pulses:0 +I (55004) example: new speed:399.000000 +I (55014) example: expect speed: 0.000000 real_pulses:0 +I (55014) example: new speed:399.000000 +I (55024) example: expect speed: 0.000000 real_pulses:0 +I (55024) example: new speed:399.000000 +I (55034) example: expect speed: 0.000000 real_pulses:0 +I (55034) example: new speed:399.000000 +I (55044) example: expect speed: 0.000000 real_pulses:0 +I (55044) example: new speed:399.000000 +I (55054) example: expect speed: 0.000000 real_pulses:0 +I (55054) example: new speed:399.000000 +I (55064) example: expect speed: 0.000000 real_pulses:0 +I (55064) example: new speed:399.000000 +I (55074) example: expect speed: 0.000000 real_pulses:0 +I (55074) example: new speed:399.000000 +I (55084) example: expect speed: 0.000000 real_pulses:0 +I (55084) example: new speed:399.000000 +I (55094) example: expect speed: 0.000000 real_pulses:0 +I (55094) example: new speed:399.000000 +I (55104) example: expect speed: 0.000000 real_pulses:0 +I (55104) example: new speed:399.000000 +I (55114) example: expect speed: 0.000000 real_pulses:0 +I (55114) example: new speed:399.000000 +I (55124) example: expect speed: 0.000000 real_pulses:0 +I (55124) example: new speed:399.000000 +I (55134) example: expect speed: 0.000000 real_pulses:0 +I (55134) example: new speed:399.000000 +I (55144) example: expect speed: 0.000000 real_pulses:0 +I (55144) example: new speed:399.000000 +I (55154) example: expect speed: 0.000000 real_pulses:0 +I (55154) example: new speed:399.000000 +I (55164) example: expect speed: 0.000000 real_pulses:0 +I (55164) example: new speed:399.000000 +I (55174) example: expect speed: 0.000000 real_pulses:0 +I (55174) example: new speed:399.000000 +I (55184) example: expect speed: 0.000000 real_pulses:0 +I (55184) example: new speed:399.000000 +I (55194) example: expect speed: 0.000000 real_pulses:0 +I (55194) example: new speed:399.000000 +I (55204) example: expect speed: 0.000000 real_pulses:0 +I (55204) example: new speed:399.000000 +I (55214) example: expect speed: 0.000000 real_pulses:0 +I (55214) example: new speed:399.000000 +I (55224) example: expect speed: 0.000000 real_pulses:0 +I (55224) example: new speed:399.000000 +I (55234) example: expect speed: 0.000000 real_pulses:0 +I (55234) example: new speed:399.000000 +I (55244) example: expect speed: 0.000000 real_pulses:0 +I (55244) example: new speed:399.000000 +I (55254) example: expect speed: 0.000000 real_pulses:0 +I (55254) example: new speed:399.000000 +I (55264) example: expect speed: 0.000000 real_pulses:0 +I (55264) example: new speed:399.000000 +I (55274) example: expect speed: 0.000000 real_pulses:0 +I (55274) example: new speed:399.000000 +I (55284) example: expect speed: 0.000000 real_pulses:0 +I (55284) example: new speed:399.000000 +I (55294) example: expect speed: 0.000000 real_pulses:0 +I (55294) example: new speed:399.000000 +I (55304) example: expect speed: 0.000000 real_pulses:0 +I (55304) example: new speed:399.000000 +I (55314) example: expect speed: 0.000000 real_pulses:0 +I (55314) example: new speed:399.000000 +I (55324) example: expect speed: 0.000000 real_pulses:0 +I (55324) example: new speed:399.000000 +I (55334) example: expect speed: 0.000000 real_pulses:0 +I (55334) example: new speed:399.000000 +I (55344) example: expect speed: 0.000000 real_pulses:0 +I (55344) example: new speed:399.000000 +I (55354) example: expect speed: 0.000000 real_pulses:0 +I (55354) example: new speed:399.000000 +I (55364) example: expect speed: 0.000000 real_pulses:0 +I (55364) example: new speed:399.000000 +I (55374) example: expect speed: 0.000000 real_pulses:0 +I (55374) example: new speed:399.000000 +I (55384) example: expect speed: 0.000000 real_pulses:0 +I (55384) example: new speed:399.000000 +I (55394) example: expect speed: 0.000000 real_pulses:0 +I (55394) example: new speed:399.000000 +I (55404) example: expect speed: 0.000000 real_pulses:0 +I (55404) example: new speed:399.000000 +I (55414) example: expect speed: 0.000000 real_pulses:0 +I (55414) example: new speed:399.000000 +I (55424) example: expect speed: 0.000000 real_pulses:0 +I (55424) example: new speed:399.000000 +I (55434) example: expect speed: 0.000000 real_pulses:0 +I (55434) example: new speed:399.000000 +I (55444) example: expect speed: 0.000000 real_pulses:0 +I (55454) example: new speed:399.000000 +I (55454) example: expect speed: 0.000000 real_pulses:0 +I (55454) example: new speed:399.000000 +I (55464) example: expect speed: 0.000000 real_pulses:0 +I (55464) example: new speed:399.000000 +I (55474) example: expect speed: 0.000000 real_pulses:0 +I (55474) example: new speed:399.000000 +I (55484) example: expect speed: 0.000000 real_pulses:0 +I (55484) example: new speed:399.000000 +I (55494) example: expect speed: 0.000000 real_pulses:0 +I (55494) example: new speed:399.000000 +I (55504) example: expect speed: 0.000000 real_pulses:0 +I (55504) example: new speed:399.000000 +I (55514) example: expect speed: 0.000000 real_pulses:0 +I (55514) example: new speed:399.000000 +I (55524) example: expect speed: 0.000000 real_pulses:0 +I (55524) example: new speed:399.000000 +I (55534) example: expect speed: 0.000000 real_pulses:0 +I (55534) example: new speed:399.000000 +I (55544) example: expect speed: 0.000000 real_pulses:0 +I (55544) example: new speed:399.000000 +I (55554) example: expect speed: 0.000000 real_pulses:0 +I (55554) example: new speed:399.000000 +I (55564) example: expect speed: 0.000000 real_pulses:0 +I (55564) example: new speed:399.000000 +I (55574) example: expect speed: 0.000000 real_pulses:0 +I (55574) example: new speed:399.000000 +I (55584) example: expect speed: 0.000000 real_pulses:0 +I (55584) example: new speed:399.000000 +I (55594) example: expect speed: 0.000000 real_pulses:0 +I (55594) example: new speed:399.000000 +I (55604) example: expect speed: 0.000000 real_pulses:0 +I (55604) example: new speed:399.000000 +I (55614) example: expect speed: 0.000000 real_pulses:0 +I (55614) example: new speed:399.000000 +I (55624) example: expect speed: 0.000000 real_pulses:0 +I (55624) example: new speed:399.000000 +I (55634) example: expect speed: 0.000000 real_pulses:0 +I (55634) example: new speed:399.000000 +I (55644) example: expect speed: 0.000000 real_pulses:0 +I (55644) example: new speed:399.000000 +I (55654) example: expect speed: 0.000000 real_pulses:0 +I (55654) example: new speed:399.000000 +I (55664) example: expect speed: 0.000000 real_pulses:0 +I (55664) example: new speed:399.000000 +I (55674) example: expect speed: 0.000000 real_pulses:0 +I (55674) example: new speed:399.000000 +I (55684) example: expect speed: 0.000000 real_pulses:0 +I (55684) example: new speed:399.000000 +I (55694) example: expect speed: 0.000000 real_pulses:0 +I (55694) example: new speed:399.000000 +I (55704) example: expect speed: 0.000000 real_pulses:0 +I (55704) example: new speed:399.000000 +I (55714) example: expect speed: 0.000000 real_pulses:0 +I (55714) example: new speed:399.000000 +I (55724) example: expect speed: 0.000000 real_pulses:0 +I (55724) example: new speed:399.000000 +I (55734) example: expect speed: 0.000000 real_pulses:0 +I (55734) example: new speed:399.000000 +I (55744) example: expect speed: 0.000000 real_pulses:0 +I (55744) example: new speed:399.000000 +I (55754) example: expect speed: 0.000000 real_pulses:0 +I (55754) example: new speed:399.000000 +I (55764) example: expect speed: 0.000000 real_pulses:0 +I (55764) example: new speed:399.000000 +I (55774) example: expect speed: 0.000000 real_pulses:0 +I (55774) example: new speed:399.000000 +I (55784) example: expect speed: 0.000000 real_pulses:0 +I (55784) example: new speed:399.000000 +I (55794) example: expect speed: 0.000000 real_pulses:0 +I (55794) example: new speed:399.000000 +I (55804) example: expect speed: 0.000000 real_pulses:0 +I (55804) example: new speed:399.000000 +I (55814) example: expect speed: 0.000000 real_pulses:0 +I (55814) example: new speed:399.000000 +I (55824) example: expect speed: 0.000000 real_pulses:0 +I (55824) example: new speed:399.000000 +I (55834) example: expect speed: 0.000000 real_pulses:0 +I (55834) example: new speed:399.000000 +I (55844) example: expect speed: 0.000000 real_pulses:0 +I (55844) example: new speed:399.000000 +I (55854) example: expect speed: 0.000000 real_pulses:0 +I (55854) example: new speed:399.000000 +I (55864) example: expect speed: 0.000000 real_pulses:0 +I (55864) example: new speed:399.000000 +I (55874) example: expect speed: 0.000000 real_pulses:0 +I (55874) example: new speed:399.000000 +I (55884) example: expect speed: 0.000000 real_pulses:0 +I (55884) example: new speed:399.000000 +I (55894) example: expect speed: 0.000000 real_pulses:0 +I (55894) example: new speed:399.000000 +I (55904) example: expect speed: 0.000000 real_pulses:0 +I (55904) example: new speed:399.000000 +I (55914) example: expect speed: 0.000000 real_pulses:0 +I (55914) example: new speed:399.000000 +I (55924) example: expect speed: 0.000000 real_pulses:0 +I (55924) example: new speed:399.000000 +I (55934) example: expect speed: 0.000000 real_pulses:0 +I (55934) example: new speed:399.000000 +I (55944) example: expect speed: 0.000000 real_pulses:0 +I (55944) example: new speed:399.000000 +I (55954) example: expect speed: 0.000000 real_pulses:0 +I (55954) example: new speed:399.000000 +I (55964) example: expect speed: 0.000000 real_pulses:0 +I (55964) example: new speed:399.000000 +I (55974) example: expect speed: 0.000000 real_pulses:0 +I (55974) example: new speed:399.000000 +I (55984) example: expect speed: 0.000000 real_pulses:0 +I (55984) example: new speed:399.000000 +I (55994) example: expect speed: 0.000000 real_pulses:0 +I (55994) example: new speed:399.000000 +I (56004) example: expect speed: 0.000000 real_pulses:0 +I (56004) example: new speed:399.000000 +I (56014) example: expect speed: 0.000000 real_pulses:0 +I (56014) example: new speed:399.000000 +I (56024) example: expect speed: 0.000000 real_pulses:0 +I (56024) example: new speed:399.000000 +I (56034) example: expect speed: 0.000000 real_pulses:0 +I (56034) example: new speed:399.000000 +I (56044) example: expect speed: 0.000000 real_pulses:0 +I (56044) example: new speed:399.000000 +I (56054) example: expect speed: 0.000000 real_pulses:0 +I (56054) example: new speed:399.000000 +I (56064) example: expect speed: 0.000000 real_pulses:0 +I (56064) example: new speed:399.000000 +I (56074) example: expect speed: 0.000000 real_pulses:0 +I (56074) example: new speed:399.000000 +I (56084) example: expect speed: 0.000000 real_pulses:0 +I (56084) example: new speed:399.000000 +I (56094) example: expect speed: 0.000000 real_pulses:0 +I (56094) example: new speed:399.000000 +I (56104) example: expect speed: 0.000000 real_pulses:0 +I (56104) example: new speed:399.000000 +I (56114) example: expect speed: 0.000000 real_pulses:0 +I (56114) example: new speed:399.000000 +I (56124) example: expect speed: 0.000000 real_pulses:0 +I (56124) example: new speed:399.000000 +I (56134) example: expect speed: 0.000000 real_pulses:0 +I (56134) example: new speed:399.000000 +I (56144) example: expect speed: 0.000000 real_pulses:0 +I (56144) example: new speed:399.000000 +I (56154) example: expect speed: 0.000000 real_pulses:0 +I (56154) example: new speed:399.000000 +I (56164) example: expect speed: 0.000000 real_pulses:0 +I (56164) example: new speed:399.000000 +I (56174) example: expect speed: 0.000000 real_pulses:0 +I (56174) example: new speed:399.000000 +I (56184) example: expect speed: 0.000000 real_pulses:0 +I (56184) example: new speed:399.000000 +I (56194) example: expect speed: 0.000000 real_pulses:0 +I (56194) example: new speed:399.000000 +I (56204) example: expect speed: 0.000000 real_pulses:0 +I (56204) example: new speed:399.000000 +I (56214) example: expect speed: 0.000000 real_pulses:0 +I (56214) example: new speed:399.000000 +I (56224) example: expect speed: 0.000000 real_pulses:0 +I (56224) example: new speed:399.000000 +I (56234) example: expect speed: 0.000000 real_pulses:0 +I (56234) example: new speed:399.000000 +I (56244) example: expect speed: 0.000000 real_pulses:0 +I (56244) example: new speed:399.000000 +I (56254) example: expect speed: 0.000000 real_pulses:0 +I (56254) example: new speed:399.000000 +I (56264) example: expect speed: 0.000000 real_pulses:0 +I (56264) example: new speed:399.000000 +I (56274) example: expect speed: 0.000000 real_pulses:0 +I (56274) example: new speed:399.000000 +I (56284) example: expect speed: 0.000000 real_pulses:0 +I (56284) example: new speed:399.000000 +I (56294) example: expect speed: 0.000000 real_pulses:0 +I (56294) example: new speed:399.000000 +I (56304) example: expect speed: 0.000000 real_pulses:0 +I (56304) example: new speed:399.000000 +I (56314) example: expect speed: 0.000000 real_pulses:0 +I (56314) example: new speed:399.000000 +I (56324) example: expect speed: 0.000000 real_pulses:0 +I (56324) example: new speed:399.000000 +I (56334) example: expect speed: 0.000000 real_pulses:0 +I (56334) example: new speed:399.000000 +I (56344) example: expect speed: 0.000000 real_pulses:0 +I (56344) example: new speed:399.000000 +I (56354) example: expect speed: 0.000000 real_pulses:0 +I (56354) example: new speed:399.000000 +I (56364) example: expect speed: 0.000000 real_pulses:0 +I (56364) example: new speed:399.000000 +I (56374) example: expect speed: 0.000000 real_pulses:0 +I (56374) example: new speed:399.000000 +I (56384) example: expect speed: 0.000000 real_pulses:0 +I (56384) example: new speed:399.000000 +I (56394) example: expect speed: 0.000000 real_pulses:0 +I (56394) example: new speed:399.000000 +I (56404) example: expect speed: 0.000000 real_pulses:0 +I (56404) example: new speed:399.000000 +I (56414) example: expect speed: 0.000000 real_pulses:0 +I (56414) example: new speed:399.000000 +I (56424) example: expect speed: 0.000000 real_pulses:0 +I (56424) example: new speed:399.000000 +I (56434) example: expect speed: 0.000000 real_pulses:0 +I (56434) example: new speed:399.000000 +I (56444) example: expect speed: 0.000000 real_pulses:0 +I (56444) example: new speed:399.000000 +I (56454) example: expect speed: 0.000000 real_pulses:0 +I (56454) example: new speed:399.000000 +I (56464) example: expect speed: 0.000000 real_pulses:0 +I (56474) example: new speed:399.000000 +I (56474) example: expect speed: 0.000000 real_pulses:0 +I (56484) example: new speed:399.000000 +I (56484) example: expect speed: 0.000000 real_pulses:0 +I (56484) example: new speed:399.000000 +I (56494) example: expect speed: 0.000000 real_pulses:0 +I (56494) example: new speed:399.000000 +I (56504) example: expect speed: 0.000000 real_pulses:0 +I (56504) example: new speed:399.000000 +I (56514) example: expect speed: 0.000000 real_pulses:0 +I (56514) example: new speed:399.000000 +I (56524) example: expect speed: 0.000000 real_pulses:0 +I (56524) example: new speed:399.000000 +I (56534) example: expect speed: 0.000000 real_pulses:0 +I (56534) example: new speed:399.000000 +I (56544) example: expect speed: 0.000000 real_pulses:0 +I (56544) example: new speed:399.000000 +I (56554) example: expect speed: 0.000000 real_pulses:0 +I (56554) example: new speed:399.000000 +I (56564) example: expect speed: 0.000000 real_pulses:0 +I (56564) example: new speed:399.000000 +I (56574) example: expect speed: 0.000000 real_pulses:0 +I (56574) example: new speed:399.000000 +I (56584) example: expect speed: 0.000000 real_pulses:0 +I (56584) example: new speed:399.000000 +I (56594) example: expect speed: 0.000000 real_pulses:0 +I (56594) example: new speed:399.000000 +I (56604) example: expect speed: 0.000000 real_pulses:0 +I (56604) example: new speed:399.000000 +I (56614) example: expect speed: 0.000000 real_pulses:0 +I (56614) example: new speed:399.000000 +I (56624) example: expect speed: 0.000000 real_pulses:0 +I (56624) example: new speed:399.000000 +I (56634) example: expect speed: 0.000000 real_pulses:0 +I (56634) example: new speed:399.000000 +I (56644) example: expect speed: 0.000000 real_pulses:0 +I (56644) example: new speed:399.000000 +I (56654) example: expect speed: 0.000000 real_pulses:0 +I (56654) example: new speed:399.000000 +I (56664) example: expect speed: 0.000000 real_pulses:0 +I (56664) example: new speed:399.000000 +I (56674) example: expect speed: 0.000000 real_pulses:0 +I (56674) example: new speed:399.000000 +I (56684) example: expect speed: 0.000000 real_pulses:0 +I (56684) example: new speed:399.000000 +I (56694) example: expect speed: 0.000000 real_pulses:0 +I (56694) example: new speed:399.000000 +I (56704) example: expect speed: 0.000000 real_pulses:0 +I (56704) example: new speed:399.000000 +I (56714) example: expect speed: 0.000000 real_pulses:0 +I (56714) example: new speed:399.000000 +I (56724) example: expect speed: 0.000000 real_pulses:0 +I (56724) example: new speed:399.000000 +I (56734) example: expect speed: 0.000000 real_pulses:0 +I (56734) example: new speed:399.000000 +I (56744) example: expect speed: 0.000000 real_pulses:0 +I (56744) example: new speed:399.000000 +I (56754) example: expect speed: 0.000000 real_pulses:0 +I (56754) example: new speed:399.000000 +I (56764) example: expect speed: 0.000000 real_pulses:0 +I (56764) example: new speed:399.000000 +I (56774) example: expect speed: 0.000000 real_pulses:0 +I (56774) example: new speed:399.000000 +I (56784) example: expect speed: 0.000000 real_pulses:0 +I (56784) example: new speed:399.000000 +I (56794) example: expect speed: 0.000000 real_pulses:0 +I (56794) example: new speed:399.000000 +I (56804) example: expect speed: 0.000000 real_pulses:0 +I (56804) example: new speed:399.000000 +I (56814) example: expect speed: 0.000000 real_pulses:0 +I (56814) example: new speed:399.000000 +I (56824) example: expect speed: 0.000000 real_pulses:0 +I (56824) example: new speed:399.000000 +I (56834) example: expect speed: 0.000000 real_pulses:0 +I (56834) example: new speed:399.000000 +I (56844) example: expect speed: 0.000000 real_pulses:0 +I (56844) example: new speed:399.000000 +I (56854) example: expect speed: 0.000000 real_pulses:0 +I (56854) example: new speed:399.000000 +I (56864) example: expect speed: 0.000000 real_pulses:0 +I (56864) example: new speed:399.000000 +I (56874) example: expect speed: 0.000000 real_pulses:0 +I (56874) example: new speed:399.000000 +I (56884) example: expect speed: 0.000000 real_pulses:0 +I (56884) example: new speed:399.000000 +I (56894) example: expect speed: 0.000000 real_pulses:0 +I (56894) example: new speed:399.000000 +I (56904) example: expect speed: 0.000000 real_pulses:0 +I (56904) example: new speed:399.000000 +I (56914) example: expect speed: 0.000000 real_pulses:0 +I (56914) example: new speed:399.000000 +I (56924) example: expect speed: 0.000000 real_pulses:0 +I (56924) example: new speed:399.000000 +I (56934) example: expect speed: 0.000000 real_pulses:0 +I (56934) example: new speed:399.000000 +I (56944) example: expect speed: 0.000000 real_pulses:0 +I (56944) example: new speed:399.000000 +I (56954) example: expect speed: 0.000000 real_pulses:0 +I (56954) example: new speed:399.000000 +I (56964) example: expect speed: 0.000000 real_pulses:0 +I (56964) example: new speed:399.000000 +I (56974) example: expect speed: 0.000000 real_pulses:0 +I (56974) example: new speed:399.000000 +I (56984) example: expect speed: 0.000000 real_pulses:0 +I (56984) example: new speed:399.000000 +I (56994) example: expect speed: 0.000000 real_pulses:0 +I (56994) example: new speed:399.000000 +I (57004) example: expect speed: 0.000000 real_pulses:0 +I (57004) example: new speed:399.000000 +I (57014) example: expect speed: 0.000000 real_pulses:0 +I (57014) example: new speed:399.000000 +I (57024) example: expect speed: 0.000000 real_pulses:0 +I (57024) example: new speed:399.000000 +I (57034) example: expect speed: 0.000000 real_pulses:0 +I (57034) example: new speed:399.000000 +I (57044) example: expect speed: 0.000000 real_pulses:0 +I (57044) example: new speed:399.000000 +I (57054) example: expect speed: 0.000000 real_pulses:0 +I (57054) example: new speed:399.000000 +I (57064) example: expect speed: 0.000000 real_pulses:0 +I (57064) example: new speed:399.000000 +I (57074) example: expect speed: 0.000000 real_pulses:0 +I (57074) example: new speed:399.000000 +I (57084) example: expect speed: 0.000000 real_pulses:0 +I (57084) example: new speed:399.000000 +I (57094) example: expect speed: 0.000000 real_pulses:0 +I (57094) example: new speed:399.000000 +I (57104) example: expect speed: 0.000000 real_pulses:0 +I (57104) example: new speed:399.000000 +I (57114) example: expect speed: 0.000000 real_pulses:0 +I (57114) example: new speed:399.000000 +I (57124) example: expect speed: 0.000000 real_pulses:0 +I (57124) example: new speed:399.000000 +I (57134) example: expect speed: 0.000000 real_pulses:0 +I (57134) example: new speed:399.000000 +I (57144) example: expect speed: 0.000000 real_pulses:0 +I (57144) example: new speed:399.000000 +I (57154) example: expect speed: 0.000000 real_pulses:0 +I (57154) example: new speed:399.000000 +I (57164) example: expect speed: 0.000000 real_pulses:0 +I (57164) example: new speed:399.000000 +I (57174) example: expect speed: 0.000000 real_pulses:0 +I (57174) example: new speed:399.000000 +I (57184) example: expect speed: 0.000000 real_pulses:0 +I (57184) example: new speed:399.000000 +I (57194) example: expect speed: 0.000000 real_pulses:0 +I (57194) example: new speed:399.000000 +I (57204) example: expect speed: 0.000000 real_pulses:0 +I (57204) example: new speed:399.000000 +I (57214) example: expect speed: 0.000000 real_pulses:0 +I (57214) example: new speed:399.000000 +I (57224) example: expect speed: 0.000000 real_pulses:0 +I (57224) example: new speed:399.000000 +I (57234) example: expect speed: 0.000000 real_pulses:0 +I (57234) example: new speed:399.000000 +I (57244) example: expect speed: 0.000000 real_pulses:0 +I (57244) example: new speed:399.000000 +I (57254) example: expect speed: 0.000000 real_pulses:0 +I (57254) example: new speed:399.000000 +I (57264) example: expect speed: 0.000000 real_pulses:0 +I (57264) example: new speed:399.000000 +I (57274) example: expect speed: 0.000000 real_pulses:0 +I (57274) example: new speed:399.000000 +I (57284) example: expect speed: 0.000000 real_pulses:0 +I (57284) example: new speed:399.000000 +I (57294) example: expect speed: 0.000000 real_pulses:0 +I (57294) example: new speed:399.000000 +I (57304) example: expect speed: 0.000000 real_pulses:0 +I (57304) example: new speed:399.000000 +I (57314) example: expect speed: 0.000000 real_pulses:0 +I (57314) example: new speed:399.000000 +I (57324) example: expect speed: 0.000000 real_pulses:0 +I (57324) example: new speed:399.000000 +I (57334) example: expect speed: 0.000000 real_pulses:0 +I (57334) example: new speed:399.000000 +I (57344) example: expect speed: 0.000000 real_pulses:0 +I (57344) example: new speed:399.000000 +I (57354) example: expect speed: 0.000000 real_pulses:0 +I (57354) example: new speed:399.000000 +I (57364) example: expect speed: 0.000000 real_pulses:0 +I (57364) example: new speed:399.000000 +I (57374) example: expect speed: 0.000000 real_pulses:0 +I (57374) example: new speed:399.000000 +I (57384) example: expect speed: 0.000000 real_pulses:0 +I (57384) example: new speed:399.000000 +I (57394) example: expect speed: 0.000000 real_pulses:0 +I (57394) example: new speed:399.000000 +I (57404) example: expect speed: 0.000000 real_pulses:0 +I (57404) example: new speed:399.000000 +I (57414) example: expect speed: 0.000000 real_pulses:0 +I (57414) example: new speed:399.000000 +I (57424) example: expect speed: 0.000000 real_pulses:0 +I (57424) example: new speed:399.000000 +I (57434) example: expect speed: 0.000000 real_pulses:0 +I (57434) example: new speed:399.000000 +I (57444) example: expect speed: 0.000000 real_pulses:0 +I (57444) example: new speed:399.000000 +I (57454) example: expect speed: 0.000000 real_pulses:0 +I (57454) example: new speed:399.000000 +I (57464) example: expect speed: 0.000000 real_pulses:0 +I (57464) example: new speed:399.000000 +I (57474) example: expect speed: 0.000000 real_pulses:0 +I (57474) example: new speed:399.000000 +I (57484) example: expect speed: 0.000000 real_pulses:0 +I (57484) example: new speed:399.000000 +I (57494) example: expect speed: 0.000000 real_pulses:0 +I (57504) example: new speed:399.000000 +I (57504) example: expect speed: 0.000000 real_pulses:0 +I (57504) example: new speed:399.000000 +I (57514) example: expect speed: 0.000000 real_pulses:0 +I (57514) example: new speed:399.000000 +I (57524) example: expect speed: 0.000000 real_pulses:0 +I (57524) example: new speed:399.000000 +I (57534) example: expect speed: 0.000000 real_pulses:0 +I (57534) example: new speed:399.000000 +I (57544) example: expect speed: 0.000000 real_pulses:0 +I (57544) example: new speed:399.000000 +I (57554) example: expect speed: 0.000000 real_pulses:0 +I (57554) example: new speed:399.000000 +I (57564) example: expect speed: 0.000000 real_pulses:0 +I (57564) example: new speed:399.000000 +I (57574) example: expect speed: 0.000000 real_pulses:0 +I (57574) example: new speed:399.000000 +I (57584) example: expect speed: 0.000000 real_pulses:0 +I (57584) example: new speed:399.000000 +I (57594) example: expect speed: 0.000000 real_pulses:0 +I (57594) example: new speed:399.000000 +I (57604) example: expect speed: 0.000000 real_pulses:0 +I (57604) example: new speed:399.000000 +I (57614) example: expect speed: 0.000000 real_pulses:0 +I (57614) example: new speed:399.000000 +I (57624) example: expect speed: 0.000000 real_pulses:0 +I (57624) example: new speed:399.000000 +I (57634) example: expect speed: 0.000000 real_pulses:0 +I (57634) example: new speed:399.000000 +I (57644) example: expect speed: 0.000000 real_pulses:0 +I (57644) example: new speed:399.000000 +I (57654) example: expect speed: 0.000000 real_pulses:0 +I (57654) example: new speed:399.000000 +I (57664) example: expect speed: 0.000000 real_pulses:0 +I (57664) example: new speed:399.000000 +I (57674) example: expect speed: 0.000000 real_pulses:0 +I (57674) example: new speed:399.000000 +I (57684) example: expect speed: 0.000000 real_pulses:0 +I (57684) example: new speed:399.000000 +I (57694) example: expect speed: 0.000000 real_pulses:0 +I (57694) example: new speed:399.000000 +I (57704) example: expect speed: 0.000000 real_pulses:0 +I (57704) example: new speed:399.000000 +I (57714) example: expect speed: 0.000000 real_pulses:0 +I (57714) example: new speed:399.000000 +I (57724) example: expect speed: 0.000000 real_pulses:0 +I (57724) example: new speed:399.000000 +I (57734) example: expect speed: 0.000000 real_pulses:0 +I (57734) example: new speed:399.000000 +I (57744) example: expect speed: 0.000000 real_pulses:0 +I (57744) example: new speed:399.000000 +I (57754) example: expect speed: 0.000000 real_pulses:0 +I (57754) example: new speed:399.000000 +I (57764) example: expect speed: 0.000000 real_pulses:0 +I (57764) example: new speed:399.000000 +I (57774) example: expect speed: 0.000000 real_pulses:0 +I (57774) example: new speed:399.000000 +I (57784) example: expect speed: 0.000000 real_pulses:0 +I (57784) example: new speed:399.000000 +I (57794) example: expect speed: 0.000000 real_pulses:0 +I (57794) example: new speed:399.000000 +I (57804) example: expect speed: 0.000000 real_pulses:0 +I (57804) example: new speed:399.000000 +I (57814) example: expect speed: 0.000000 real_pulses:0 +I (57814) example: new speed:399.000000 +I (57824) example: expect speed: 0.000000 real_pulses:0 +I (57824) example: new speed:399.000000 +I (57834) example: expect speed: 0.000000 real_pulses:0 +I (57834) example: new speed:399.000000 +I (57844) example: expect speed: 0.000000 real_pulses:0 +I (57844) example: new speed:399.000000 +I (57854) example: expect speed: 0.000000 real_pulses:0 +I (57854) example: new speed:399.000000 +I (57864) example: expect speed: 0.000000 real_pulses:0 +I (57864) example: new speed:399.000000 +I (57874) example: expect speed: 0.000000 real_pulses:0 +I (57874) example: new speed:399.000000 +I (57884) example: expect speed: 0.000000 real_pulses:0 +I (57884) example: new speed:399.000000 +I (57894) example: expect speed: 0.000000 real_pulses:0 +I (57894) example: new speed:399.000000 +I (57904) example: expect speed: 0.000000 real_pulses:0 +I (57904) example: new speed:399.000000 +I (57914) example: expect speed: 0.000000 real_pulses:0 +I (57914) example: new speed:399.000000 +I (57924) example: expect speed: 0.000000 real_pulses:0 +I (57924) example: new speed:399.000000 +I (57934) example: expect speed: 0.000000 real_pulses:0 +I (57934) example: new speed:399.000000 +I (57944) example: expect speed: 0.000000 real_pulses:0 +I (57944) example: new speed:399.000000 +I (57954) example: expect speed: 0.000000 real_pulses:0 +I (57954) example: new speed:399.000000 +I (57964) example: expect speed: 0.000000 real_pulses:0 +I (57964) example: new speed:399.000000 +I (57974) example: expect speed: 0.000000 real_pulses:0 +I (57974) example: new speed:399.000000 +I (57984) example: expect speed: 0.000000 real_pulses:0 +I (57984) example: new speed:399.000000 +I (57994) example: expect speed: 0.000000 real_pulses:0 +I (57994) example: new speed:399.000000 +I (58004) example: expect speed: 0.000000 real_pulses:0 +I (58004) example: new speed:399.000000 +I (58014) example: expect speed: 0.000000 real_pulses:0 +I (58014) example: new speed:399.000000 +I (58024) example: expect speed: 0.000000 real_pulses:0 +I (58024) example: new speed:399.000000 +I (58034) example: expect speed: 0.000000 real_pulses:0 +I (58034) example: new speed:399.000000 +I (58044) example: expect speed: 0.000000 real_pulses:0 +I (58044) example: new speed:399.000000 +I (58054) example: expect speed: 0.000000 real_pulses:0 +I (58054) example: new speed:399.000000 +I (58064) example: expect speed: 0.000000 real_pulses:0 +I (58064) example: new speed:399.000000 +I (58074) example: expect speed: 0.000000 real_pulses:0 +I (58074) example: new speed:399.000000 +I (58084) example: expect speed: 0.000000 real_pulses:0 +I (58084) example: new speed:399.000000 +I (58094) example: expect speed: 0.000000 real_pulses:0 +I (58094) example: new speed:399.000000 +I (58104) example: expect speed: 0.000000 real_pulses:0 +I (58104) example: new speed:399.000000 +I (58114) example: expect speed: 0.000000 real_pulses:0 +I (58114) example: new speed:399.000000 +I (58124) example: expect speed: 0.000000 real_pulses:0 +I (58124) example: new speed:399.000000 +I (58134) example: expect speed: 0.000000 real_pulses:0 +I (58134) example: new speed:399.000000 +I (58144) example: expect speed: 0.000000 real_pulses:0 +I (58144) example: new speed:399.000000 +I (58154) example: expect speed: 0.000000 real_pulses:0 +I (58154) example: new speed:399.000000 +I (58164) example: expect speed: 0.000000 real_pulses:0 +I (58164) example: new speed:399.000000 +I (58174) example: expect speed: 0.000000 real_pulses:0 +I (58174) example: new speed:399.000000 +I (58184) example: expect speed: 0.000000 real_pulses:0 +I (58184) example: new speed:399.000000 +I (58194) example: expect speed: 0.000000 real_pulses:0 +I (58194) example: new speed:399.000000 +I (58204) example: expect speed: 0.000000 real_pulses:0 +I (58204) example: new speed:399.000000 +I (58214) example: expect speed: 0.000000 real_pulses:0 +I (58214) example: new speed:399.000000 +I (58224) example: expect speed: 0.000000 real_pulses:0 +I (58224) example: new speed:399.000000 +I (58234) example: expect speed: 0.000000 real_pulses:0 +I (58234) example: new speed:399.000000 +I (58244) example: expect speed: 0.000000 real_pulses:0 +I (58244) example: new speed:399.000000 +I (58254) example: expect speed: 0.000000 real_pulses:0 +I (58254) example: new speed:399.000000 +I (58264) example: expect speed: 0.000000 real_pulses:0 +I (58264) example: new speed:399.000000 +I (58274) example: expect speed: 0.000000 real_pulses:0 +I (58274) example: new speed:399.000000 +I (58284) example: expect speed: 0.000000 real_pulses:0 +I (58284) example: new speed:399.000000 +I (58294) example: expect speed: 0.000000 real_pulses:0 +I (58294) example: new speed:399.000000 +I (58304) example: expect speed: 0.000000 real_pulses:0 +I (58304) example: new speed:399.000000 +I (58314) example: expect speed: 0.000000 real_pulses:0 +I (58314) example: new speed:399.000000 +I (58324) example: expect speed: 0.000000 real_pulses:0 +I (58324) example: new speed:399.000000 +I (58334) example: expect speed: 0.000000 real_pulses:0 +I (58334) example: new speed:399.000000 +I (58344) example: expect speed: 0.000000 real_pulses:0 +I (58344) example: new speed:399.000000 +I (58354) example: expect speed: 0.000000 real_pulses:0 +I (58354) example: new speed:399.000000 +I (58364) example: expect speed: 0.000000 real_pulses:0 +I (58364) example: new speed:399.000000 +I (58374) example: expect speed: 0.000000 real_pulses:0 +I (58374) example: new speed:399.000000 +I (58384) example: expect speed: 0.000000 real_pulses:0 +I (58384) example: new speed:399.000000 +I (58394) example: expect speed: 0.000000 real_pulses:0 +I (58394) example: new speed:399.000000 +I (58404) example: expect speed: 0.000000 real_pulses:0 +I (58404) example: new speed:399.000000 +I (58414) example: expect speed: 0.000000 real_pulses:0 +I (58424) example: new speed:399.000000 +I (58424) example: expect speed: 0.000000 real_pulses:0 +I (58434) example: new speed:399.000000 +I (58434) example: expect speed: 0.000000 real_pulses:0 +I (58434) example: new speed:399.000000 +I (58444) example: expect speed: 0.000000 real_pulses:0 +I (58444) example: new speed:399.000000 +I (58454) example: expect speed: 0.000000 real_pulses:0 +I (58454) example: new speed:399.000000 +I (58464) example: expect speed: 0.000000 real_pulses:0 +I (58464) example: new speed:399.000000 +I (58474) example: expect speed: 0.000000 real_pulses:0 +I (58474) example: new speed:399.000000 +I (58484) example: expect speed: 0.000000 real_pulses:0 +I (58484) example: new speed:399.000000 +I (58494) example: expect speed: 0.000000 real_pulses:0 +I (58494) example: new speed:399.000000 +I (58504) example: expect speed: 0.000000 real_pulses:0 +I (58504) example: new speed:399.000000 +I (58514) example: expect speed: 0.000000 real_pulses:0 +I (58514) example: new speed:399.000000 +I (58524) example: expect speed: 0.000000 real_pulses:0 +I (58524) example: new speed:399.000000 +I (58534) example: expect speed: 0.000000 real_pulses:0 +I (58534) example: new speed:399.000000 +I (58544) example: expect speed: 0.000000 real_pulses:0 +I (58544) example: new speed:399.000000 +I (58554) example: expect speed: 0.000000 real_pulses:0 +I (58554) example: new speed:399.000000 +I (58564) example: expect speed: 0.000000 real_pulses:0 +I (58564) example: new speed:399.000000 +I (58574) example: expect speed: 0.000000 real_pulses:0 +I (58574) example: new speed:399.000000 +I (58584) example: expect speed: 0.000000 real_pulses:0 +I (58584) example: new speed:399.000000 +I (58594) example: expect speed: 0.000000 real_pulses:0 +I (58594) example: new speed:399.000000 +I (58604) example: expect speed: 0.000000 real_pulses:0 +I (58604) example: new speed:399.000000 +I (58614) example: expect speed: 0.000000 real_pulses:0 +I (58614) example: new speed:399.000000 +I (58624) example: expect speed: 0.000000 real_pulses:0 +I (58624) example: new speed:399.000000 +I (58634) example: expect speed: 0.000000 real_pulses:0 +I (58634) example: new speed:399.000000 +I (58644) example: expect speed: 0.000000 real_pulses:0 +I (58644) example: new speed:399.000000 +I (58654) example: expect speed: 0.000000 real_pulses:0 +I (58654) example: new speed:399.000000 +I (58664) example: expect speed: 0.000000 real_pulses:0 +I (58664) example: new speed:399.000000 +I (58674) example: expect speed: 0.000000 real_pulses:0 +I (58674) example: new speed:399.000000 +I (58684) example: expect speed: 0.000000 real_pulses:0 +I (58684) example: new speed:399.000000 +I (58694) example: expect speed: 0.000000 real_pulses:0 +I (58694) example: new speed:399.000000 +I (58704) example: expect speed: 0.000000 real_pulses:0 +I (58704) example: new speed:399.000000 +I (58714) example: expect speed: 0.000000 real_pulses:0 +I (58714) example: new speed:399.000000 +I (58724) example: expect speed: 0.000000 real_pulses:0 +I (58724) example: new speed:399.000000 +I (58734) example: expect speed: 0.000000 real_pulses:0 +I (58734) example: new speed:399.000000 +I (58744) example: expect speed: 0.000000 real_pulses:0 +I (58744) example: new speed:399.000000 +I (58754) example: expect speed: 0.000000 real_pulses:0 +I (58754) example: new speed:399.000000 +I (58764) example: expect speed: 0.000000 real_pulses:0 +I (58764) example: new speed:399.000000 +I (58774) example: expect speed: 0.000000 real_pulses:0 +I (58774) example: new speed:399.000000 +I (58784) example: expect speed: 0.000000 real_pulses:0 +I (58784) example: new speed:399.000000 +I (58794) example: expect speed: 0.000000 real_pulses:0 +I (58794) example: new speed:399.000000 +I (58804) example: expect speed: 0.000000 real_pulses:0 +I (58804) example: new speed:399.000000 +I (58814) example: expect speed: 0.000000 real_pulses:0 +I (58814) example: new speed:399.000000 +I (58824) example: expect speed: 0.000000 real_pulses:0 +I (58824) example: new speed:399.000000 +I (58834) example: expect speed: 0.000000 real_pulses:0 +I (58834) example: new speed:399.000000 +I (58844) example: expect speed: 0.000000 real_pulses:0 +I (58844) example: new speed:399.000000 +I (58854) example: expect speed: 0.000000 real_pulses:0 +I (58854) example: new speed:399.000000 +I (58864) example: expect speed: 0.000000 real_pulses:0 +I (58864) example: new speed:399.000000 +I (58874) example: expect speed: 0.000000 real_pulses:0 +I (58874) example: new speed:399.000000 +I (58884) example: expect speed: 0.000000 real_pulses:0 +I (58884) example: new speed:399.000000 +I (58894) example: expect speed: 0.000000 real_pulses:0 +I (58894) example: new speed:399.000000 +I (58904) example: expect speed: 0.000000 real_pulses:0 +I (58904) example: new speed:399.000000 +I (58914) example: expect speed: 0.000000 real_pulses:0 +I (58914) example: new speed:399.000000 +I (58924) example: expect speed: 0.000000 real_pulses:0 +I (58924) example: new speed:399.000000 +I (58934) example: expect speed: 0.000000 real_pulses:0 +I (58934) example: new speed:399.000000 +I (58944) example: expect speed: 0.000000 real_pulses:0 +I (58944) example: new speed:399.000000 +I (58954) example: expect speed: 0.000000 real_pulses:0 +I (58954) example: new speed:399.000000 +I (58964) example: expect speed: 0.000000 real_pulses:0 +I (58964) example: new speed:399.000000 +I (58974) example: expect speed: 0.000000 real_pulses:0 +I (58974) example: new speed:399.000000 +I (58984) example: expect speed: 0.000000 real_pulses:0 +I (58984) example: new speed:399.000000 +I (58994) example: expect speed: 0.000000 real_pulses:0 +I (58994) example: new speed:399.000000 +I (59004) example: expect speed: 0.000000 real_pulses:0 +I (59004) example: new speed:399.000000 +I (59014) example: expect speed: 0.000000 real_pulses:0 +I (59014) example: new speed:399.000000 +I (59024) example: expect speed: 0.000000 real_pulses:0 +I (59024) example: new speed:399.000000 +I (59034) example: expect speed: 0.000000 real_pulses:0 +I (59034) example: new speed:399.000000 +I (59044) example: expect speed: 0.000000 real_pulses:0 +I (59044) example: new speed:399.000000 +I (59054) example: expect speed: 0.000000 real_pulses:0 +I (59054) example: new speed:399.000000 +I (59064) example: expect speed: 0.000000 real_pulses:0 +I (59064) example: new speed:399.000000 +I (59074) example: expect speed: 0.000000 real_pulses:0 +I (59074) example: new speed:399.000000 +I (59084) example: expect speed: 0.000000 real_pulses:0 +I (59084) example: new speed:399.000000 +I (59094) example: expect speed: 0.000000 real_pulses:0 +I (59094) example: new speed:399.000000 +I (59104) example: expect speed: 0.000000 real_pulses:0 +I (59104) example: new speed:399.000000 +I (59114) example: expect speed: 0.000000 real_pulses:0 +I (59114) example: new speed:399.000000 +I (59124) example: expect speed: 0.000000 real_pulses:0 +I (59124) example: new speed:399.000000 +I (59134) example: expect speed: 0.000000 real_pulses:0 +I (59134) example: new speed:399.000000 +I (59144) example: expect speed: 0.000000 real_pulses:0 +I (59144) example: new speed:399.000000 +I (59154) example: expect speed: 0.000000 real_pulses:0 +I (59154) example: new speed:399.000000 +I (59164) example: expect speed: 0.000000 real_pulses:0 +I (59164) example: new speed:399.000000 +I (59174) example: expect speed: 0.000000 real_pulses:0 +I (59174) example: new speed:399.000000 +I (59184) example: expect speed: 0.000000 real_pulses:0 +I (59184) example: new speed:399.000000 +I (59194) example: expect speed: 0.000000 real_pulses:0 +I (59194) example: new speed:399.000000 +I (59204) example: expect speed: 0.000000 real_pulses:0 +I (59204) example: new speed:399.000000 +I (59214) example: expect speed: 0.000000 real_pulses:0 +I (59214) example: new speed:399.000000 +I (59224) example: expect speed: 0.000000 real_pulses:0 +I (59224) example: new speed:399.000000 +I (59234) example: expect speed: 0.000000 real_pulses:0 +I (59234) example: new speed:399.000000 +I (59244) example: expect speed: 0.000000 real_pulses:0 +I (59244) example: new speed:399.000000 +I (59254) example: expect speed: 0.000000 real_pulses:0 +I (59254) example: new speed:399.000000 +I (59264) example: expect speed: 0.000000 real_pulses:0 +I (59264) example: new speed:399.000000 +I (59274) example: expect speed: 0.000000 real_pulses:0 +I (59274) example: new speed:399.000000 +I (59284) example: expect speed: 0.000000 real_pulses:0 +I (59284) example: new speed:399.000000 +I (59294) example: expect speed: 0.000000 real_pulses:0 +I (59294) example: new speed:399.000000 +I (59304) example: expect speed: 0.000000 real_pulses:0 +I (59304) example: new speed:399.000000 +I (59314) example: expect speed: 0.000000 real_pulses:0 +I (59314) example: new speed:399.000000 +I (59324) example: expect speed: 0.000000 real_pulses:0 +I (59324) example: new speed:399.000000 +I (59334) example: expect speed: 0.000000 real_pulses:0 +I (59334) example: new speed:399.000000 +I (59344) example: expect speed: 0.000000 real_pulses:0 +I (59344) example: new speed:399.000000 +I (59354) example: expect speed: 0.000000 real_pulses:0 +I (59354) example: new speed:399.000000 +I (59364) example: expect speed: 0.000000 real_pulses:0 +I (59364) example: new speed:399.000000 +I (59374) example: expect speed: 0.000000 real_pulses:0 +I (59374) example: new speed:399.000000 +I (59384) example: expect speed: 0.000000 real_pulses:0 +I (59384) example: new speed:399.000000 +I (59394) example: expect speed: 0.000000 real_pulses:0 +I (59394) example: new speed:399.000000 +I (59404) example: expect speed: 0.000000 real_pulses:0 +I (59404) example: new speed:399.000000 +I (59414) example: expect speed: 0.000000 real_pulses:0 +I (59414) example: new speed:399.000000 +I (59424) example: expect speed: 0.000000 real_pulses:0 +I (59424) example: new speed:399.000000 +I (59434) example: expect speed: 0.000000 real_pulses:0 +I (59434) example: new speed:399.000000 +I (59444) example: expect speed: 0.000000 real_pulses:0 +I (59444) example: new speed:399.000000 +I (59454) example: expect speed: 0.000000 real_pulses:0 +I (59454) example: new speed:399.000000 +I (59464) example: expect speed: 0.000000 real_pulses:0 +I (59464) example: new speed:399.000000 +I (59474) example: expect speed: 0.000000 real_pulses:0 +I (59474) example: new speed:399.000000 +I (59484) example: expect speed: 0.000000 real_pulses:0 +I (59484) example: new speed:399.000000 +I (59494) example: expect speed: 0.000000 real_pulses:0 +I (59494) example: new speed:399.000000 +I (59504) example: expect speed: 0.000000 real_pulses:0 +I (59504) example: new speed:399.000000 +I (59514) example: expect speed: 0.000000 real_pulses:0 +I (59514) example: new speed:399.000000 +I (59524) example: expect speed: 0.000000 real_pulses:0 +I (59524) example: new speed:399.000000 +I (59534) example: expect speed: 0.000000 real_pulses:0 +I (59534) example: new speed:399.000000 +I (59544) example: expect speed: 0.000000 real_pulses:0 +I (59554) example: new speed:399.000000 +I (59554) example: expect speed: 0.000000 real_pulses:0 +I (59554) example: new speed:399.000000 +I (59564) example: expect speed: 0.000000 real_pulses:0 +I (59564) example: new speed:399.000000 +I (59574) example: expect speed: 0.000000 real_pulses:0 +I (59574) example: new speed:399.000000 +I (59584) example: expect speed: 0.000000 real_pulses:0 +I (59584) example: new speed:399.000000 +I (59594) example: expect speed: 0.000000 real_pulses:0 +I (59594) example: new speed:399.000000 +I (59604) example: expect speed: 0.000000 real_pulses:0 +I (59604) example: new speed:399.000000 +I (59614) example: expect speed: 0.000000 real_pulses:0 +I (59614) example: new speed:399.000000 +I (59624) example: expect speed: 0.000000 real_pulses:0 +I (59624) example: new speed:399.000000 +I (59634) example: expect speed: 0.000000 real_pulses:0 +I (59634) example: new speed:399.000000 +I (59644) example: expect speed: 0.000000 real_pulses:0 +I (59644) example: new speed:399.000000 +I (59654) example: expect speed: 0.000000 real_pulses:0 +I (59654) example: new speed:399.000000 +I (59664) example: expect speed: 0.000000 real_pulses:0 +I (59664) example: new speed:399.000000 +I (59674) example: expect speed: 0.000000 real_pulses:0 +I (59674) example: new speed:399.000000 +I (59684) example: expect speed: 0.000000 real_pulses:0 +I (59684) example: new speed:399.000000 +I (59694) example: expect speed: 0.000000 real_pulses:0 +I (59694) example: new speed:399.000000 +I (59704) example: expect speed: 0.000000 real_pulses:0 +I (59704) example: new speed:399.000000 +I (59714) example: expect speed: 0.000000 real_pulses:0 +I (59714) example: new speed:399.000000 +I (59724) example: expect speed: 0.000000 real_pulses:0 +I (59724) example: new speed:399.000000 +I (59734) example: expect speed: 0.000000 real_pulses:0 +I (59734) example: new speed:399.000000 +I (59744) example: expect speed: 0.000000 real_pulses:0 +I (59744) example: new speed:399.000000 +I (59754) example: expect speed: 0.000000 real_pulses:0 +I (59754) example: new speed:399.000000 +I (59764) example: expect speed: 0.000000 real_pulses:0 +I (59764) example: new speed:399.000000 +I (59774) example: expect speed: 0.000000 real_pulses:0 +I (59774) example: new speed:399.000000 +I (59784) example: expect speed: 0.000000 real_pulses:0 +I (59784) example: new speed:399.000000 +I (59794) example: expect speed: 0.000000 real_pulses:0 +I (59794) example: new speed:399.000000 +I (59804) example: expect speed: 0.000000 real_pulses:0 +I (59804) example: new speed:399.000000 +I (59814) example: expect speed: 0.000000 real_pulses:0 +I (59814) example: new speed:399.000000 +I (59824) example: expect speed: 0.000000 real_pulses:0 +I (59824) example: new speed:399.000000 +I (59834) example: expect speed: 0.000000 real_pulses:0 +I (59834) example: new speed:399.000000 +I (59844) example: expect speed: 0.000000 real_pulses:0 +I (59844) example: new speed:399.000000 +I (59854) example: expect speed: 0.000000 real_pulses:0 +I (59854) example: new speed:399.000000 +I (59864) example: expect speed: 0.000000 real_pulses:0 +I (59864) example: new speed:399.000000 +I (59874) example: expect speed: 0.000000 real_pulses:0 +I (59874) example: new speed:399.000000 +I (59884) example: expect speed: 0.000000 real_pulses:0 +I (59884) example: new speed:399.000000 +I (59894) example: expect speed: 0.000000 real_pulses:0 +I (59894) example: new speed:399.000000 +I (59904) example: expect speed: 0.000000 real_pulses:0 +I (59904) example: new speed:399.000000 +I (59914) example: expect speed: 0.000000 real_pulses:0 +I (59914) example: new speed:399.000000 +I (59924) example: expect speed: 0.000000 real_pulses:0 +I (59924) example: new speed:399.000000 +I (59934) example: expect speed: 0.000000 real_pulses:0 +I (59934) example: new speed:399.000000 +I (59944) example: expect speed: 0.000000 real_pulses:0 +I (59944) example: new speed:399.000000 +I (59954) example: expect speed: 0.000000 real_pulses:0 +I (59954) example: new speed:399.000000 +I (59964) example: expect speed: 0.000000 real_pulses:0 +I (59964) example: new speed:399.000000 +I (59974) example: expect speed: 0.000000 real_pulses:0 +I (59974) example: new speed:399.000000 +I (59984) example: expect speed: 0.000000 real_pulses:0 +I (59984) example: new speed:399.000000 +I (59994) example: expect speed: 0.000000 real_pulses:0 +I (59994) example: new speed:399.000000 +I (60004) example: expect speed: 0.000000 real_pulses:0 +I (60004) example: new speed:399.000000 +I (60014) example: expect speed: 0.000000 real_pulses:0 +I (60014) example: new speed:399.000000 +I (60024) example: expect speed: 0.000000 real_pulses:0 +I (60024) example: new speed:399.000000 +I (60034) example: expect speed: 0.000000 real_pulses:0 +I (60034) example: new speed:399.000000 +I (60044) example: expect speed: 0.000000 real_pulses:0 +I (60044) example: new speed:399.000000 +I (60054) example: expect speed: 0.000000 real_pulses:0 +I (60054) example: new speed:399.000000 +I (60064) example: expect speed: 0.000000 real_pulses:0 +I (60064) example: new speed:399.000000 +I (60074) example: expect speed: 0.000000 real_pulses:0 +I (60074) example: new speed:399.000000 +I (60084) example: expect speed: 0.000000 real_pulses:0 +I (60084) example: new speed:399.000000 +I (60094) example: expect speed: 0.000000 real_pulses:0 +I (60094) example: new speed:399.000000 +I (60104) example: expect speed: 0.000000 real_pulses:0 +I (60104) example: new speed:399.000000 +I (60114) example: expect speed: 0.000000 real_pulses:0 +I (60114) example: new speed:399.000000 +I (60124) example: expect speed: 0.000000 real_pulses:0 +I (60124) example: new speed:399.000000 +I (60134) example: expect speed: 0.000000 real_pulses:0 +I (60134) example: new speed:399.000000 +I (60144) example: expect speed: 0.000000 real_pulses:0 +I (60144) example: new speed:399.000000 +I (60154) example: expect speed: 0.000000 real_pulses:0 +I (60154) example: new speed:399.000000 +I (60164) example: expect speed: 0.000000 real_pulses:0 +I (60164) example: new speed:399.000000 +I (60174) example: expect speed: 0.000000 real_pulses:0 +I (60174) example: new speed:399.000000 +I (60184) example: expect speed: 0.000000 real_pulses:0 +I (60184) example: new speed:399.000000 +I (60194) example: expect speed: 0.000000 real_pulses:0 +I (60194) example: new speed:399.000000 +I (60204) example: expect speed: 0.000000 real_pulses:0 +I (60204) example: new speed:399.000000 +I (60214) example: expect speed: 0.000000 real_pulses:0 +I (60214) example: new speed:399.000000 +I (60224) example: expect speed: 0.000000 real_pulses:0 +I (60224) example: new speed:399.000000 +I (60234) example: expect speed: 0.000000 real_pulses:0 +I (60234) example: new speed:399.000000 +I (60244) example: expect speed: 0.000000 real_pulses:0 +I (60244) example: new speed:399.000000 +I (60254) example: expect speed: 0.000000 real_pulses:0 +I (60254) example: new speed:399.000000 +I (60264) example: expect speed: 0.000000 real_pulses:0 +I (60264) example: new speed:399.000000 +I (60274) example: expect speed: 0.000000 real_pulses:0 +I (60274) example: new speed:399.000000 +I (60284) example: expect speed: 0.000000 real_pulses:0 +I (60284) example: new speed:399.000000 +I (60294) example: expect speed: 0.000000 real_pulses:0 +I (60294) example: new speed:399.000000 +I (60304) example: expect speed: 0.000000 real_pulses:0 +I (60304) example: new speed:399.000000 +I (60314) example: expect speed: 0.000000 real_pulses:0 +I (60314) example: new speed:399.000000 +I (60324) example: expect speed: 0.000000 real_pulses:0 +I (60324) example: new speed:399.000000 +I (60334) example: expect speed: 0.000000 real_pulses:0 +I (60334) example: new speed:399.000000 +I (60344) example: expect speed: 0.000000 real_pulses:0 +I (60344) example: new speed:399.000000 +I (60354) example: expect speed: 0.000000 real_pulses:0 +I (60354) example: new speed:399.000000 +I (60364) example: expect speed: 0.000000 real_pulses:0 +I (60364) example: new speed:399.000000 +I (60374) example: expect speed: 0.000000 real_pulses:0 +I (60374) example: new speed:399.000000 +I (60384) example: expect speed: 0.000000 real_pulses:0 +I (60394) example: new speed:399.000000 +I (60394) example: expect speed: 0.000000 real_pulses:0 +I (60394) example: new speed:399.000000 +I (60404) example: expect speed: 0.000000 real_pulses:0 +I (60404) example: new speed:399.000000 +I (60414) example: expect speed: 0.000000 real_pulses:0 +I (60414) example: new speed:399.000000 +I (60424) example: expect speed: 0.000000 real_pulses:0 +I (60424) example: new speed:399.000000 +I (60434) example: expect speed: 0.000000 real_pulses:0 +I (60434) example: new speed:399.000000 +I (60444) example: expect speed: 0.000000 real_pulses:0 +I (60444) example: new speed:399.000000 +I (60454) example: expect speed: 0.000000 real_pulses:0 +I (60454) example: new speed:399.000000 +I (60464) example: expect speed: 0.000000 real_pulses:0 +I (60474) example: new speed:399.000000 +I (60474) example: expect speed: 0.000000 real_pulses:0 +I (60474) example: new speed:399.000000 +I (60484) example: expect speed: 0.000000 real_pulses:0 +I (60484) example: new speed:399.000000 +I (60494) example: expect speed: 0.000000 real_pulses:0 +I (60494) example: new speed:399.000000 +I (60504) example: expect speed: 0.000000 real_pulses:0 +I (60504) example: new speed:399.000000 +I (60514) example: expect speed: 0.000000 real_pulses:0 +I (60514) example: new speed:399.000000 +I (60524) example: expect speed: 0.000000 real_pulses:0 +I (60524) example: new speed:399.000000 +I (60534) example: expect speed: 0.000000 real_pulses:0 +I (60534) example: new speed:399.000000 +I (60544) example: expect speed: 0.000000 real_pulses:0 +I (60544) example: new speed:399.000000 +I (60554) example: expect speed: 0.000000 real_pulses:0 +I (60554) example: new speed:399.000000 +I (60564) example: expect speed: 0.000000 real_pulses:0 +I (60564) example: new speed:399.000000 +I (60574) example: expect speed: 0.000000 real_pulses:0 +I (60574) example: new speed:399.000000 +I (60584) example: expect speed: 0.000000 real_pulses:0 +I (60584) example: new speed:399.000000 +I (60594) example: expect speed: 0.000000 real_pulses:0 +I (60594) example: new speed:399.000000 +I (60604) example: expect speed: 0.000000 real_pulses:0 +I (60604) example: new speed:399.000000 +I (60614) example: expect speed: 0.000000 real_pulses:0 +I (60614) example: new speed:399.000000 +I (60624) example: expect speed: 0.000000 real_pulses:0 +I (60624) example: new speed:399.000000 +I (60634) example: expect speed: 0.000000 real_pulses:0 +I (60634) example: new speed:399.000000 +I (60644) example: expect speed: 0.000000 real_pulses:0 +I (60644) example: new speed:399.000000 +I (60654) example: expect speed: 0.000000 real_pulses:0 +I (60654) example: new speed:399.000000 +I (60664) example: expect speed: 0.000000 real_pulses:0 +I (60664) example: new speed:399.000000 +I (60674) example: expect speed: 0.000000 real_pulses:0 +I (60674) example: new speed:399.000000 +I (60684) example: expect speed: 0.000000 real_pulses:0 +I (60684) example: new speed:399.000000 +I (60694) example: expect speed: 0.000000 real_pulses:0 +I (60694) example: new speed:399.000000 +I (60704) example: expect speed: 0.000000 real_pulses:0 +I (60704) example: new speed:399.000000 +I (60714) example: expect speed: 0.000000 real_pulses:0 +I (60714) example: new speed:399.000000 +I (60724) example: expect speed: 0.000000 real_pulses:0 +I (60724) example: new speed:399.000000 +I (60734) example: expect speed: 0.000000 real_pulses:0 +I (60734) example: new speed:399.000000 +I (60744) example: expect speed: 0.000000 real_pulses:0 +I (60744) example: new speed:399.000000 +I (60754) example: expect speed: 0.000000 real_pulses:0 +I (60754) example: new speed:399.000000 +I (60764) example: expect speed: 0.000000 real_pulses:0 +I (60764) example: new speed:399.000000 +I (60774) example: expect speed: 0.000000 real_pulses:0 +I (60774) example: new speed:399.000000 +I (60784) example: expect speed: 0.000000 real_pulses:0 +I (60784) example: new speed:399.000000 +I (60794) example: expect speed: 0.000000 real_pulses:0 +I (60794) example: new speed:399.000000 +I (60804) example: expect speed: 0.000000 real_pulses:0 +I (60804) example: new speed:399.000000 +I (60814) example: expect speed: 0.000000 real_pulses:0 +I (60814) example: new speed:399.000000 +I (60824) example: expect speed: 0.000000 real_pulses:0 +I (60824) example: new speed:399.000000 +I (60834) example: expect speed: 0.000000 real_pulses:0 +I (60834) example: new speed:399.000000 +I (60844) example: expect speed: 0.000000 real_pulses:0 +I (60844) example: new speed:399.000000 +I (60854) example: expect speed: 0.000000 real_pulses:0 +I (60854) example: new speed:399.000000 +I (60864) example: expect speed: 0.000000 real_pulses:0 +I (60864) example: new speed:399.000000 +I (60874) example: expect speed: 0.000000 real_pulses:0 +I (60874) example: new speed:399.000000 +I (60884) example: expect speed: 0.000000 real_pulses:0 +I (60884) example: new speed:399.000000 +I (60894) example: expect speed: 0.000000 real_pulses:0 +I (60894) example: new speed:399.000000 +I (60904) example: expect speed: 0.000000 real_pulses:0 +I (60904) example: new speed:399.000000 +I (60914) example: expect speed: 0.000000 real_pulses:0 +I (60914) example: new speed:399.000000 +I (60924) example: expect speed: 0.000000 real_pulses:0 +I (60924) example: new speed:399.000000 +I (60934) example: expect speed: 0.000000 real_pulses:0 +I (60934) example: new speed:399.000000 +I (60944) example: expect speed: 0.000000 real_pulses:0 +I (60944) example: new speed:399.000000 +I (60954) example: expect speed: 0.000000 real_pulses:0 +I (60954) example: new speed:399.000000 +I (60964) example: expect speed: 0.000000 real_pulses:0 +I (60964) example: new speed:399.000000 +I (60974) example: expect speed: 0.000000 real_pulses:0 +I (60974) example: new speed:399.000000 +I (60984) example: expect speed: 0.000000 real_pulses:0 +I (60984) example: new speed:399.000000 +I (60994) example: expect speed: 0.000000 real_pulses:0 +I (60994) example: new speed:399.000000 +I (61004) example: expect speed: 0.000000 real_pulses:0 +I (61004) example: new speed:399.000000 +I (61014) example: expect speed: 0.000000 real_pulses:0 +I (61014) example: new speed:399.000000 +I (61024) example: expect speed: 0.000000 real_pulses:0 +I (61024) example: new speed:399.000000 +I (61034) example: expect speed: 0.000000 real_pulses:0 +I (61034) example: new speed:399.000000 +I (61044) example: expect speed: 0.000000 real_pulses:0 +I (61044) example: new speed:399.000000 +I (61054) example: expect speed: 0.000000 real_pulses:0 +I (61054) example: new speed:399.000000 +I (61064) example: expect speed: 0.000000 real_pulses:0 +I (61064) example: new speed:399.000000 +I (61074) example: expect speed: 0.000000 real_pulses:0 +I (61074) example: new speed:399.000000 +I (61084) example: expect speed: 0.000000 real_pulses:0 +I (61084) example: new speed:399.000000 +I (61094) example: expect speed: 0.000000 real_pulses:0 +I (61094) example: new speed:399.000000 +I (61104) example: expect speed: 0.000000 real_pulses:0 +I (61104) example: new speed:399.000000 +I (61114) example: expect speed: 0.000000 real_pulses:0 +I (61114) example: new speed:399.000000 +I (61124) example: expect speed: 0.000000 real_pulses:0 +I (61124) example: new speed:399.000000 +I (61134) example: expect speed: 0.000000 real_pulses:0 +I (61134) example: new speed:399.000000 +I (61144) example: expect speed: 0.000000 real_pulses:0 +I (61144) example: new speed:399.000000 +I (61154) example: expect speed: 0.000000 real_pulses:0 +I (61154) example: new speed:399.000000 +I (61164) example: expect speed: 0.000000 real_pulses:0 +I (61164) example: new speed:399.000000 +I (61174) example: expect speed: 0.000000 real_pulses:0 +I (61174) example: new speed:399.000000 +I (61184) example: expect speed: 0.000000 real_pulses:0 +I (61184) example: new speed:399.000000 +I (61194) example: expect speed: 0.000000 real_pulses:0 +I (61194) example: new speed:399.000000 +I (61204) example: expect speed: 0.000000 real_pulses:0 +I (61204) example: new speed:399.000000 +I (61214) example: expect speed: 0.000000 real_pulses:0 +I (61214) example: new speed:399.000000 +I (61224) example: expect speed: 0.000000 real_pulses:0 +I (61224) example: new speed:399.000000 +I (61234) example: expect speed: 0.000000 real_pulses:0 +I (61234) example: new speed:399.000000 +I (61244) example: expect speed: 0.000000 real_pulses:0 +I (61244) example: new speed:399.000000 +I (61254) example: expect speed: 0.000000 real_pulses:0 +I (61254) example: new speed:399.000000 +I (61264) example: expect speed: 0.000000 real_pulses:0 +I (61264) example: new speed:399.000000 +I (61274) example: expect speed: 0.000000 real_pulses:0 +I (61274) example: new speed:399.000000 +I (61284) example: expect speed: 0.000000 real_pulses:0 +I (61284) example: new speed:399.000000 +I (61294) example: expect speed: 0.000000 real_pulses:0 +I (61294) example: new speed:399.000000 +I (61304) example: expect speed: 0.000000 real_pulses:0 +I (61304) example: new speed:399.000000 +I (61314) example: expect speed: 0.000000 real_pulses:0 +I (61314) example: new speed:399.000000 +I (61324) example: expect speed: 0.000000 real_pulses:0 +I (61324) example: new speed:399.000000 +I (61334) example: expect speed: 0.000000 real_pulses:0 +I (61334) example: new speed:399.000000 +I (61344) example: expect speed: 0.000000 real_pulses:0 +I (61344) example: new speed:399.000000 +I (61354) example: expect speed: 0.000000 real_pulses:0 +I (61354) example: new speed:399.000000 +I (61364) example: expect speed: 0.000000 real_pulses:0 +I (61364) example: new speed:399.000000 +I (61374) example: expect speed: 0.000000 real_pulses:0 +I (61374) example: new speed:399.000000 +I (61384) example: expect speed: 0.000000 real_pulses:0 +I (61384) example: new speed:399.000000 +I (61394) example: expect speed: 0.000000 real_pulses:0 +I (61394) example: new speed:399.000000 +I (61404) example: expect speed: 0.000000 real_pulses:0 +I (61404) example: new speed:399.000000 +I (61414) example: expect speed: 0.000000 real_pulses:0 +I (61414) example: new speed:399.000000 +I (61424) example: expect speed: 0.000000 real_pulses:0 +I (61424) example: new speed:399.000000 +I (61434) example: expect speed: 0.000000 real_pulses:0 +I (61434) example: new speed:399.000000 +I (61444) example: expect speed: 0.000000 real_pulses:0 +I (61444) example: new speed:399.000000 +I (61454) example: expect speed: 0.000000 real_pulses:0 +I (61454) example: new speed:399.000000 +I (61464) example: expect speed: 0.000000 real_pulses:0 +I (61464) example: new speed:399.000000 +I (61474) example: expect speed: 0.000000 real_pulses:0 +I (61474) example: new speed:399.000000 +I (61484) example: expect speed: 0.000000 real_pulses:0 +I (61484) example: new speed:399.000000 +I (61494) example: expect speed: 0.000000 real_pulses:0 +I (61494) example: new speed:399.000000 +I (61504) example: expect speed: 0.000000 real_pulses:0 +I (61504) example: new speed:399.000000 +I (61514) example: expect speed: 0.000000 real_pulses:0 +I (61514) example: new speed:399.000000 +I (61524) example: expect speed: 0.000000 real_pulses:0 +I (61524) example: new speed:399.000000 +I (61534) example: expect speed: 0.000000 real_pulses:0 +I (61534) example: new speed:399.000000 +I (61544) example: expect speed: 0.000000 real_pulses:0 +I (61544) example: new speed:399.000000 +I (61554) example: expect speed: 0.000000 real_pulses:0 +I (61554) example: new speed:399.000000 +I (61564) example: expect speed: 0.000000 real_pulses:0 +I (61564) example: new speed:399.000000 +I (61574) example: expect speed: 0.000000 real_pulses:0 +I (61574) example: new speed:399.000000 +I (61584) example: expect speed: 0.000000 real_pulses:0 +I (61584) example: new speed:399.000000 +I (61594) example: expect speed: 0.000000 real_pulses:0 +I (61604) example: new speed:399.000000 +I (61604) example: expect speed: 0.000000 real_pulses:0 +I (61604) example: new speed:399.000000 +I (61614) example: expect speed: 0.000000 real_pulses:0 +I (61614) example: new speed:399.000000 +I (61624) example: expect speed: 0.000000 real_pulses:0 +I (61624) example: new speed:399.000000 +I (61634) example: expect speed: 0.000000 real_pulses:0 +I (61634) example: new speed:399.000000 +I (61644) example: expect speed: 0.000000 real_pulses:0 +I (61644) example: new speed:399.000000 +I (61654) example: expect speed: 0.000000 real_pulses:0 +I (61654) example: new speed:399.000000 +I (61664) example: expect speed: 0.000000 real_pulses:0 +I (61664) example: new speed:399.000000 +I (61674) example: expect speed: 0.000000 real_pulses:0 +I (61674) example: new speed:399.000000 +I (61684) example: expect speed: 0.000000 real_pulses:0 +I (61684) example: new speed:399.000000 +I (61694) example: expect speed: 0.000000 real_pulses:0 +I (61694) example: new speed:399.000000 +I (61704) example: expect speed: 0.000000 real_pulses:0 +I (61704) example: new speed:399.000000 +I (61714) example: expect speed: 0.000000 real_pulses:0 +I (61714) example: new speed:399.000000 +I (61724) example: expect speed: 0.000000 real_pulses:0 +I (61724) example: new speed:399.000000 +I (61734) example: expect speed: 0.000000 real_pulses:0 +I (61734) example: new speed:399.000000 +I (61744) example: expect speed: 0.000000 real_pulses:0 +I (61744) example: new speed:399.000000 +I (61754) example: expect speed: 0.000000 real_pulses:0 +I (61754) example: new speed:399.000000 +I (61764) example: expect speed: 0.000000 real_pulses:0 +I (61764) example: new speed:399.000000 +I (61774) example: expect speed: 0.000000 real_pulses:0 +I (61774) example: new speed:399.000000 +I (61784) example: expect speed: 0.000000 real_pulses:0 +I (61784) example: new speed:399.000000 +I (61794) example: expect speed: 0.000000 real_pulses:0 +I (61794) example: new speed:399.000000 +I (61804) example: expect speed: 0.000000 real_pulses:0 +I (61804) example: new speed:399.000000 +I (61814) example: expect speed: 0.000000 real_pulses:0 +I (61814) example: new speed:399.000000 +I (61824) example: expect speed: 0.000000 real_pulses:0 +I (61824) example: new speed:399.000000 +I (61834) example: expect speed: 0.000000 real_pulses:0 +I (61834) example: new speed:399.000000 +I (61844) example: expect speed: 0.000000 real_pulses:0 +I (61844) example: new speed:399.000000 +I (61854) example: expect speed: 0.000000 real_pulses:0 +I (61854) example: new speed:399.000000 +I (61864) example: expect speed: 0.000000 real_pulses:0 +I (61864) example: new speed:399.000000 +I (61874) example: expect speed: 0.000000 real_pulses:0 +I (61874) example: new speed:399.000000 +I (61884) example: expect speed: 0.000000 real_pulses:0 +I (61884) example: new speed:399.000000 +I (61894) example: expect speed: 0.000000 real_pulses:0 +I (61894) example: new speed:399.000000 +I (61904) example: expect speed: 0.000000 real_pulses:0 +I (61904) example: new speed:399.000000 +I (61914) example: expect speed: 0.000000 real_pulses:0 +I (61914) example: new speed:399.000000 +I (61924) example: expect speed: 0.000000 real_pulses:0 +I (61924) example: new speed:399.000000 +I (61934) example: expect speed: 0.000000 real_pulses:0 +I (61934) example: new speed:399.000000 +I (61944) example: expect speed: 0.000000 real_pulses:0 +I (61944) example: new speed:399.000000 +I (61954) example: expect speed: 0.000000 real_pulses:0 +I (61954) example: new speed:399.000000 +I (61964) example: expect speed: 0.000000 real_pulses:0 +I (61964) example: new speed:399.000000 +I (61974) example: expect speed: 0.000000 real_pulses:0 +I (61974) example: new speed:399.000000 +I (61984) example: expect speed: 0.000000 real_pulses:0 +I (61984) example: new speed:399.000000 +I (61994) example: expect speed: 0.000000 real_pulses:0 +I (61994) example: new speed:399.000000 +I (62004) example: expect speed: 0.000000 real_pulses:0 +I (62004) example: new speed:399.000000 +I (62014) example: expect speed: 0.000000 real_pulses:0 +I (62014) example: new speed:399.000000 +I (62024) example: expect speed: 0.000000 real_pulses:0 +I (62024) example: new speed:399.000000 +I (62034) example: expect speed: 0.000000 real_pulses:0 +I (62034) example: new speed:399.000000 +I (62044) example: expect speed: 0.000000 real_pulses:0 +I (62044) example: new speed:399.000000 +I (62054) example: expect speed: 0.000000 real_pulses:0 +I (62054) example: new speed:399.000000 +I (62064) example: expect speed: 0.000000 real_pulses:0 +I (62064) example: new speed:399.000000 +I (62074) example: expect speed: 0.000000 real_pulses:0 +I (62074) example: new speed:399.000000 +I (62084) example: expect speed: 0.000000 real_pulses:0 +I (62084) example: new speed:399.000000 +I (62094) example: expect speed: 0.000000 real_pulses:0 +I (62094) example: new speed:399.000000 +I (62104) example: expect speed: 0.000000 real_pulses:0 +I (62104) example: new speed:399.000000 +I (62114) example: expect speed: 0.000000 real_pulses:0 +I (62114) example: new speed:399.000000 +I (62124) example: expect speed: 0.000000 real_pulses:0 +I (62124) example: new speed:399.000000 +I (62134) example: expect speed: 0.000000 real_pulses:0 +I (62134) example: new speed:399.000000 +I (62144) example: expect speed: 0.000000 real_pulses:0 +I (62144) example: new speed:399.000000 +I (62154) example: expect speed: 0.000000 real_pulses:0 +I (62154) example: new speed:399.000000 +I (62164) example: expect speed: 0.000000 real_pulses:0 +I (62164) example: new speed:399.000000 +I (62174) example: expect speed: 0.000000 real_pulses:0 +I (62174) example: new speed:399.000000 +I (62184) example: expect speed: 0.000000 real_pulses:0 +I (62184) example: new speed:399.000000 +I (62194) example: expect speed: 0.000000 real_pulses:0 +I (62194) example: new speed:399.000000 +I (62204) example: expect speed: 0.000000 real_pulses:0 +I (62204) example: new speed:399.000000 +I (62214) example: expect speed: 0.000000 real_pulses:0 +I (62214) example: new speed:399.000000 +I (62224) example: expect speed: 0.000000 real_pulses:0 +I (62224) example: new speed:399.000000 +I (62234) example: expect speed: 0.000000 real_pulses:0 +I (62234) example: new speed:399.000000 +I (62244) example: expect speed: 0.000000 real_pulses:0 +I (62244) example: new speed:399.000000 +I (62254) example: expect speed: 0.000000 real_pulses:0 +I (62254) example: new speed:399.000000 +I (62264) example: expect speed: 0.000000 real_pulses:0 +I (62264) example: new speed:399.000000 +I (62274) example: expect speed: 0.000000 real_pulses:0 +I (62274) example: new speed:399.000000 +I (62284) example: expect speed: 0.000000 real_pulses:0 +I (62284) example: new speed:399.000000 +I (62294) example: expect speed: 0.000000 real_pulses:0 +I (62294) example: new speed:399.000000 +I (62304) example: expect speed: 0.000000 real_pulses:0 +I (62304) example: new speed:399.000000 +I (62314) example: expect speed: 0.000000 real_pulses:0 +I (62314) example: new speed:399.000000 +I (62324) example: expect speed: 0.000000 real_pulses:0 +I (62324) example: new speed:399.000000 +I (62334) example: expect speed: 0.000000 real_pulses:0 +I (62334) example: new speed:399.000000 +I (62344) example: expect speed: 0.000000 real_pulses:0 +I (62344) example: new speed:399.000000 +I (62354) example: expect speed: 0.000000 real_pulses:0 +I (62354) example: new speed:399.000000 +I (62364) example: expect speed: 0.000000 real_pulses:0 +I (62364) example: new speed:399.000000 +I (62374) example: expect speed: 0.000000 real_pulses:0 +I (62374) example: new speed:399.000000 +I (62384) example: expect speed: 0.000000 real_pulses:0 +I (62384) example: new speed:399.000000 +I (62394) example: expect speed: 0.000000 real_pulses:0 +I (62394) example: new speed:399.000000 +I (62404) example: expect speed: 0.000000 real_pulses:0 +I (62404) example: new speed:399.000000 +I (62414) example: expect speed: 0.000000 real_pulses:0 +I (62414) example: new speed:399.000000 +I (62424) example: expect speed: 0.000000 real_pulses:0 +I (62424) example: new speed:399.000000 +I (62434) example: expect speed: 0.000000 real_pulses:0 +I (62434) example: new speed:399.000000 +I (62444) example: expect speed: 0.000000 real_pulses:0 +I (62444) example: new speed:399.000000 +I (62454) example: expect speed: 0.000000 real_pulses:0 +I (62454) example: new speed:399.000000 +I (62464) example: expect speed: 0.000000 real_pulses:0 +I (62464) example: new speed:399.000000 +I (62474) example: expect speed: 0.000000 real_pulses:0 +I (62474) example: new speed:399.000000 +I (62484) example: expect speed: 0.000000 real_pulses:0 +I (62484) example: new speed:399.000000 +I (62494) example: expect speed: 0.000000 real_pulses:0 +I (62494) example: new speed:399.000000 +I (62504) example: expect speed: 0.000000 real_pulses:0 +I (62504) example: new speed:399.000000 +I (62514) example: expect speed: 0.000000 real_pulses:0 +I (62514) example: new speed:399.000000 +I (62524) example: expect speed: 0.000000 real_pulses:0 +I (62524) example: new speed:399.000000 +I (62534) example: expect speed: 0.000000 real_pulses:0 +I (62534) example: new speed:399.000000 +I (62544) example: expect speed: 0.000000 real_pulses:0 +I (62544) example: new speed:399.000000 +I (62554) example: expect speed: 0.000000 real_pulses:0 +I (62554) example: new speed:399.000000 +I (62564) example: expect speed: 0.000000 real_pulses:0 +I (62564) example: new speed:399.000000 +I (62574) example: expect speed: 0.000000 real_pulses:0 +I (62574) example: new speed:399.000000 +I (62584) example: expect speed: 0.000000 real_pulses:0 +I (62584) example: new speed:399.000000 +I (62594) example: expect speed: 0.000000 real_pulses:0 +I (62594) example: new speed:399.000000 +I (62604) example: expect speed: 0.000000 real_pulses:0 +I (62604) example: new speed:399.000000 +I (62614) example: expect speed: 0.000000 real_pulses:0 +I (62614) example: new speed:399.000000 +I (62624) example: expect speed: 0.000000 real_pulses:0 +I (62624) example: new speed:399.000000 +I (62634) example: expect speed: 0.000000 real_pulses:0 +I (62634) example: new speed:399.000000 +I (62644) example: expect speed: 0.000000 real_pulses:0 +I (62644) example: new speed:399.000000 +I (62654) example: expect speed: 0.000000 real_pulses:0 +I (62654) example: new speed:399.000000 +I (62664) example: expect speed: 0.000000 real_pulses:0 +I (62664) example: new speed:399.000000 +I (62674) example: expect speed: 0.000000 real_pulses:0 +I (62674) example: new speed:399.000000 +I (62684) example: expect speed: 0.000000 real_pulses:0 +I (62684) example: new speed:399.000000 +I (62694) example: expect speed: 0.000000 real_pulses:0 +I (62694) example: new speed:399.000000 +I (62704) example: expect speed: 0.000000 real_pulses:0 +I (62704) example: new speed:399.000000 +I (62714) example: expect speed: 0.000000 real_pulses:0 +I (62724) example: new speed:399.000000 +I (62724) example: expect speed: 0.000000 real_pulses:0 +I (62724) example: new speed:399.000000 +I (62734) example: expect speed: 0.000000 real_pulses:0 +I (62734) example: new speed:399.000000 +I (62744) example: expect speed: 0.000000 real_pulses:0 +I (62744) example: new speed:399.000000 +I (62754) example: expect speed: 0.000000 real_pulses:0 +I (62754) example: new speed:399.000000 +I (62764) example: expect speed: 0.000000 real_pulses:0 +I (62764) example: new speed:399.000000 +I (62774) example: expect speed: 0.000000 real_pulses:0 +I (62774) example: new speed:399.000000 +I (62784) example: expect speed: 0.000000 real_pulses:0 +I (62784) example: new speed:399.000000 +I (62794) example: expect speed: 0.000000 real_pulses:0 +I (62794) example: new speed:399.000000 +I (62804) example: expect speed: 0.000000 real_pulses:0 +I (62804) example: new speed:399.000000 +I (62814) example: expect speed: 0.000000 real_pulses:0 +I (62814) example: new speed:399.000000 +I (62824) example: expect speed: 0.000000 real_pulses:0 +I (62824) example: new speed:399.000000 +I (62834) example: expect speed: 0.000000 real_pulses:0 +I (62834) example: new speed:399.000000 +I (62844) example: expect speed: 0.000000 real_pulses:0 +I (62844) example: new speed:399.000000 +I (62854) example: expect speed: 0.000000 real_pulses:0 +I (62854) example: new speed:399.000000 +I (62864) example: expect speed: 0.000000 real_pulses:0 +I (62864) example: new speed:399.000000 +I (62874) example: expect speed: 0.000000 real_pulses:0 +I (62874) example: new speed:399.000000 +I (62884) example: expect speed: 0.000000 real_pulses:0 +I (62884) example: new speed:399.000000 +I (62894) example: expect speed: 0.000000 real_pulses:0 +I (62894) example: new speed:399.000000 +I (62904) example: expect speed: 0.000000 real_pulses:0 +I (62904) example: new speed:399.000000 +I (62914) example: expect speed: 0.000000 real_pulses:0 +I (62914) example: new speed:399.000000 +I (62924) example: expect speed: 0.000000 real_pulses:0 +I (62924) example: new speed:399.000000 +I (62934) example: expect speed: 0.000000 real_pulses:0 +I (62934) example: new speed:399.000000 +I (62944) example: expect speed: 0.000000 real_pulses:0 +I (62944) example: new speed:399.000000 +I (62954) example: expect speed: 0.000000 real_pulses:0 +I (62954) example: new speed:399.000000 +I (62964) example: expect speed: 0.000000 real_pulses:0 +I (62964) example: new speed:399.000000 +I (62974) example: expect speed: 0.000000 real_pulses:0 +I (62974) example: new speed:399.000000 +I (62984) example: expect speed: 0.000000 real_pulses:0 +I (62984) example: new speed:399.000000 +I (62994) example: expect speed: 0.000000 real_pulses:0 +I (62994) example: new speed:399.000000 +I (63004) example: expect speed: 0.000000 real_pulses:0 +I (63004) example: new speed:399.000000 +I (63014) example: expect speed: 0.000000 real_pulses:0 +I (63014) example: new speed:399.000000 +I (63024) example: expect speed: 0.000000 real_pulses:0 +I (63024) example: new speed:399.000000 +I (63034) example: expect speed: 0.000000 real_pulses:0 +I (63034) example: new speed:399.000000 +I (63044) example: expect speed: 0.000000 real_pulses:0 +I (63044) example: new speed:399.000000 +I (63054) example: expect speed: 0.000000 real_pulses:0 +I (63054) example: new speed:399.000000 +I (63064) example: expect speed: 0.000000 real_pulses:0 +I (63064) example: new speed:399.000000 +I (63074) example: expect speed: 0.000000 real_pulses:0 +I (63074) example: new speed:399.000000 +I (63084) example: expect speed: 0.000000 real_pulses:0 +I (63084) example: new speed:399.000000 +I (63094) example: expect speed: 0.000000 real_pulses:0 +I (63094) example: new speed:399.000000 +I (63104) example: expect speed: 0.000000 real_pulses:0 +I (63104) example: new speed:399.000000 +I (63114) example: expect speed: 0.000000 real_pulses:0 +I (63114) example: new speed:399.000000 +I (63124) example: expect speed: 0.000000 real_pulses:0 +I (63124) example: new speed:399.000000 +I (63134) example: expect speed: 0.000000 real_pulses:0 +I (63134) example: new speed:399.000000 +I (63144) example: expect speed: 0.000000 real_pulses:0 +I (63144) example: new speed:399.000000 +I (63154) example: expect speed: 0.000000 real_pulses:0 +I (63154) example: new speed:399.000000 +I (63164) example: expect speed: 0.000000 real_pulses:0 +I (63164) example: new speed:399.000000 +I (63174) example: expect speed: 0.000000 real_pulses:0 +I (63174) example: new speed:399.000000 +I (63184) example: expect speed: 0.000000 real_pulses:0 +I (63184) example: new speed:399.000000 +I (63194) example: expect speed: 0.000000 real_pulses:0 +I (63194) example: new speed:399.000000 +I (63204) example: expect speed: 0.000000 real_pulses:0 +I (63204) example: new speed:399.000000 +I (63214) example: expect speed: 0.000000 real_pulses:0 +I (63214) example: new speed:399.000000 +I (63224) example: expect speed: 0.000000 real_pulses:0 +I (63224) example: new speed:399.000000 +I (63234) example: expect speed: 0.000000 real_pulses:0 +I (63234) example: new speed:399.000000 +I (63244) example: expect speed: 0.000000 real_pulses:0 +I (63244) example: new speed:399.000000 +I (63254) example: expect speed: 0.000000 real_pulses:0 +I (63254) example: new speed:399.000000 +I (63264) example: expect speed: 0.000000 real_pulses:0 +I (63264) example: new speed:399.000000 +I (63274) example: expect speed: 0.000000 real_pulses:0 +I (63274) example: new speed:399.000000 +I (63284) example: expect speed: 0.000000 real_pulses:0 +I (63284) example: new speed:399.000000 +I (63294) example: expect speed: 0.000000 real_pulses:0 +I (63294) example: new speed:399.000000 +I (63304) example: expect speed: 0.000000 real_pulses:0 +I (63304) example: new speed:399.000000 +I (63314) example: expect speed: 0.000000 real_pulses:0 +I (63314) example: new speed:399.000000 +I (63324) example: expect speed: 0.000000 real_pulses:0 +I (63324) example: new speed:399.000000 +I (63334) example: expect speed: 0.000000 real_pulses:0 +I (63334) example: new speed:399.000000 +I (63344) example: expect speed: 0.000000 real_pulses:0 +I (63344) example: new speed:399.000000 +I (63354) example: expect speed: 0.000000 real_pulses:0 +I (63354) example: new speed:399.000000 +I (63364) example: expect speed: 0.000000 real_pulses:0 +I (63364) example: new speed:399.000000 +I (63374) example: expect speed: 0.000000 real_pulses:0 +I (63374) example: new speed:399.000000 +I (63384) example: expect speed: 0.000000 real_pulses:0 +I (63384) example: new speed:399.000000 +I (63394) example: expect speed: 0.000000 real_pulses:0 +I (63394) example: new speed:399.000000 +I (63404) example: expect speed: 0.000000 real_pulses:0 +I (63404) example: new speed:399.000000 +I (63414) example: expect speed: 0.000000 real_pulses:0 +I (63414) example: new speed:399.000000 +I (63424) example: expect speed: 0.000000 real_pulses:0 +I (63424) example: new speed:399.000000 +I (63434) example: expect speed: 0.000000 real_pulses:0 +I (63434) example: new speed:399.000000 +I (63444) example: expect speed: 0.000000 real_pulses:0 +I (63444) example: new speed:399.000000 +I (63454) example: expect speed: 0.000000 real_pulses:0 +I (63454) example: new speed:399.000000 +I (63464) example: expect speed: 0.000000 real_pulses:0 +I (63464) example: new speed:399.000000 +I (63474) example: expect speed: 0.000000 real_pulses:0 +I (63474) example: new speed:399.000000 +I (63484) example: expect speed: 0.000000 real_pulses:0 +I (63484) example: new speed:399.000000 +I (63494) example: expect speed: 0.000000 real_pulses:0 +I (63494) example: new speed:399.000000 +I (63504) example: expect speed: 0.000000 real_pulses:0 +I (63504) example: new speed:399.000000 +I (63514) example: expect speed: 0.000000 real_pulses:0 +I (63514) example: new speed:399.000000 +I (63524) example: expect speed: 0.000000 real_pulses:0 +I (63524) example: new speed:399.000000 +I (63534) example: expect speed: 0.000000 real_pulses:0 +I (63534) example: new speed:399.000000 +I (63544) example: expect speed: 0.000000 real_pulses:0 +I (63544) example: new speed:399.000000 +I (63554) example: expect speed: 0.000000 real_pulses:0 +I (63554) example: new speed:399.000000 +I (63564) example: expect speed: 0.000000 real_pulses:0 +I (63564) example: new speed:399.000000 +I (63574) example: expect speed: 0.000000 real_pulses:0 +I (63574) example: new speed:399.000000 +I (63584) example: expect speed: 0.000000 real_pulses:0 +I (63584) example: new speed:399.000000 +I (63594) example: expect speed: 0.000000 real_pulses:0 +I (63594) example: new speed:399.000000 +I (63604) example: expect speed: 0.000000 real_pulses:0 +I (63604) example: new speed:399.000000 +I (63614) example: expect speed: 0.000000 real_pulses:0 +I (63614) example: new speed:399.000000 +I (63624) example: expect speed: 0.000000 real_pulses:0 +I (63624) example: new speed:399.000000 +I (63634) example: expect speed: 0.000000 real_pulses:0 +I (63634) example: new speed:399.000000 +I (63644) example: expect speed: 0.000000 real_pulses:0 +I (63644) example: new speed:399.000000 +I (63654) example: expect speed: 0.000000 real_pulses:0 +I (63654) example: new speed:399.000000 +I (63664) example: expect speed: 0.000000 real_pulses:0 +I (63664) example: new speed:399.000000 +I (63674) example: expect speed: 0.000000 real_pulses:0 +I (63674) example: new speed:399.000000 +I (63684) example: expect speed: 0.000000 real_pulses:0 +I (63684) example: new speed:399.000000 +I (63694) example: expect speed: 0.000000 real_pulses:0 +I (63694) example: new speed:399.000000 +I (63704) example: expect speed: 0.000000 real_pulses:0 +I (63704) example: new speed:399.000000 +I (63714) example: expect speed: 0.000000 real_pulses:0 +I (63714) example: new speed:399.000000 +I (63724) example: expect speed: 0.000000 real_pulses:0 +I (63724) example: new speed:399.000000 +I (63734) example: expect speed: 0.000000 real_pulses:0 +I (63734) example: new speed:399.000000 +I (63744) example: expect speed: 0.000000 real_pulses:0 +I (63744) example: new speed:399.000000 +I (63754) example: expect speed: 0.000000 real_pulses:0 +I (63754) example: new speed:399.000000 +I (63764) example: expect speed: 0.000000 real_pulses:0 +I (63764) example: new speed:399.000000 +I (63774) example: expect speed: 0.000000 real_pulses:0 +I (63774) example: new speed:399.000000 +I (63784) example: expect speed: 0.000000 real_pulses:0 +I (63784) example: new speed:399.000000 +I (63794) example: expect speed: 0.000000 real_pulses:0 +I (63794) example: new speed:399.000000 +I (63804) example: expect speed: 0.000000 real_pulses:0 +I (63804) example: new speed:399.000000 +I (63814) example: expect speed: 0.000000 real_pulses:0 +I (63814) example: new speed:399.000000 +I (63824) example: expect speed: 0.000000 real_pulses:0 +I (63824) example: new speed:399.000000 +I (63834) example: expect speed: 0.000000 real_pulses:0 +I (63834) example: new speed:399.000000 +I (63844) example: expect speed: 0.000000 real_pulses:0 +I (63854) example: new speed:399.000000 +I (63854) example: expect speed: 0.000000 real_pulses:0 +I (63854) example: new speed:399.000000 +I (63864) example: expect speed: 0.000000 real_pulses:0 +I (63864) example: new speed:399.000000 +I (63874) example: expect speed: 0.000000 real_pulses:0 +I (63874) example: new speed:399.000000 +I (63884) example: expect speed: 0.000000 real_pulses:0 +I (63884) example: new speed:399.000000 +I (63894) example: expect speed: 0.000000 real_pulses:0 +I (63894) example: new speed:399.000000 +I (63904) example: expect speed: 0.000000 real_pulses:0 +I (63904) example: new speed:399.000000 +I (63914) example: expect speed: 0.000000 real_pulses:0 +I (63914) example: new speed:399.000000 +I (63924) example: expect speed: 0.000000 real_pulses:0 +I (63924) example: new speed:399.000000 +I (63934) example: expect speed: 0.000000 real_pulses:0 +I (63934) example: new speed:399.000000 +I (63944) example: expect speed: 0.000000 real_pulses:0 +I (63944) example: new speed:399.000000 +I (63954) example: expect speed: 0.000000 real_pulses:0 +I (63954) example: new speed:399.000000 +I (63964) example: expect speed: 0.000000 real_pulses:0 +I (63964) example: new speed:399.000000 +I (63974) example: expect speed: 0.000000 real_pulses:0 +I (63974) example: new speed:399.000000 +I (63984) example: expect speed: 0.000000 real_pulses:0 +I (63984) example: new speed:399.000000 +I (63994) example: expect speed: 0.000000 real_pulses:0 +I (63994) example: new speed:399.000000 +I (64004) example: expect speed: 0.000000 real_pulses:0 +I (64004) example: new speed:399.000000 +I (64014) example: expect speed: 0.000000 real_pulses:0 +I (64014) example: new speed:399.000000 +I (64024) example: expect speed: 0.000000 real_pulses:0 +I (64024) example: new speed:399.000000 +I (64034) example: expect speed: 0.000000 real_pulses:0 +I (64034) example: new speed:399.000000 +I (64044) example: expect speed: 0.000000 real_pulses:0 +I (64044) example: new speed:399.000000 +I (64054) example: expect speed: 0.000000 real_pulses:0 +I (64054) example: new speed:399.000000 +I (64064) example: expect speed: 0.000000 real_pulses:0 +I (64064) example: new speed:399.000000 +I (64074) example: expect speed: 0.000000 real_pulses:0 +I (64074) example: new speed:399.000000 +I (64084) example: expect speed: 0.000000 real_pulses:0 +I (64084) example: new speed:399.000000 +I (64094) example: expect speed: 0.000000 real_pulses:0 +I (64094) example: new speed:399.000000 +I (64104) example: expect speed: 0.000000 real_pulses:0 +I (64104) example: new speed:399.000000 +I (64114) example: expect speed: 0.000000 real_pulses:0 +I (64114) example: new speed:399.000000 +I (64124) example: expect speed: 0.000000 real_pulses:0 +I (64124) example: new speed:399.000000 +I (64134) example: expect speed: 0.000000 real_pulses:0 +I (64134) example: new speed:399.000000 +I (64144) example: expect speed: 0.000000 real_pulses:0 +I (64144) example: new speed:399.000000 +I (64154) example: expect speed: 0.000000 real_pulses:0 +I (64154) example: new speed:399.000000 +I (64164) example: expect speed: 0.000000 real_pulses:0 +I (64164) example: new speed:399.000000 +I (64174) example: expect speed: 0.000000 real_pulses:0 +I (64174) example: new speed:399.000000 +I (64184) example: expect speed: 0.000000 real_pulses:0 +I (64184) example: new speed:399.000000 +I (64194) example: expect speed: 0.000000 real_pulses:0 +I (64194) example: new speed:399.000000 +I (64204) example: expect speed: 0.000000 real_pulses:0 +I (64204) example: new speed:399.000000 +I (64214) example: expect speed: 0.000000 real_pulses:0 +I (64214) example: new speed:399.000000 +I (64224) example: expect speed: 0.000000 real_pulses:0 +I (64224) example: new speed:399.000000 +I (64234) example: expect speed: 0.000000 real_pulses:0 +I (64234) example: new speed:399.000000 +I (64244) example: expect speed: 0.000000 real_pulses:0 +I (64244) example: new speed:399.000000 +I (64254) example: expect speed: 0.000000 real_pulses:0 +I (64254) example: new speed:399.000000 +I (64264) example: expect speed: 0.000000 real_pulses:0 +I (64264) example: new speed:399.000000 +I (64274) example: expect speed: 0.000000 real_pulses:0 +I (64274) example: new speed:399.000000 +I (64284) example: expect speed: 0.000000 real_pulses:0 +I (64284) example: new speed:399.000000 +I (64294) example: expect speed: 0.000000 real_pulses:0 +I (64294) example: new speed:399.000000 +I (64304) example: expect speed: 0.000000 real_pulses:0 +I (64304) example: new speed:399.000000 +I (64314) example: expect speed: 0.000000 real_pulses:0 +I (64314) example: new speed:399.000000 +I (64324) example: expect speed: 0.000000 real_pulses:0 +I (64324) example: new speed:399.000000 +I (64334) example: expect speed: 0.000000 real_pulses:0 +I (64334) example: new speed:399.000000 +I (64344) example: expect speed: 0.000000 real_pulses:0 +I (64344) example: new speed:399.000000 +I (64354) example: expect speed: 0.000000 real_pulses:0 +I (64354) example: new speed:399.000000 +I (64364) example: expect speed: 0.000000 real_pulses:0 +I (64364) example: new speed:399.000000 +I (64374) example: expect speed: 0.000000 real_pulses:0 +I (64374) example: new speed:399.000000 +I (64384) example: expect speed: 0.000000 real_pulses:0 +I (64384) example: new speed:399.000000 +I (64394) example: expect speed: 0.000000 real_pulses:0 +I (64394) example: new speed:399.000000 +I (64404) example: expect speed: 0.000000 real_pulses:0 +I (64404) example: new speed:399.000000 +I (64414) example: expect speed: 0.000000 real_pulses:0 +I (64414) example: new speed:399.000000 +I (64424) example: expect speed: 0.000000 real_pulses:0 +I (64424) example: new speed:399.000000 +I (64434) example: expect speed: 0.000000 real_pulses:0 +I (64434) example: new speed:399.000000 +I (64444) example: expect speed: 0.000000 real_pulses:0 +I (64444) example: new speed:399.000000 +I (64454) example: expect speed: 0.000000 real_pulses:0 +I (64454) example: new speed:399.000000 +I (64464) example: expect speed: 0.000000 real_pulses:0 +I (64464) example: new speed:399.000000 +I (64474) example: expect speed: 0.000000 real_pulses:0 +I (64474) example: new speed:399.000000 +I (64484) example: expect speed: 0.000000 real_pulses:0 +I (64484) example: new speed:399.000000 +I (64494) example: expect speed: 0.000000 real_pulses:0 +I (64494) example: new speed:399.000000 +I (64504) example: expect speed: 0.000000 real_pulses:0 +I (64504) example: new speed:399.000000 +I (64514) example: expect speed: 0.000000 real_pulses:0 +I (64514) example: new speed:399.000000 +I (64524) example: expect speed: 0.000000 real_pulses:0 +I (64524) example: new speed:399.000000 +I (64534) example: expect speed: 0.000000 real_pulses:0 +I (64534) example: new speed:399.000000 +I (64544) example: expect speed: 0.000000 real_pulses:0 +I (64544) example: new speed:399.000000 +I (64554) example: expect speed: 0.000000 real_pulses:0 +I (64554) example: new speed:399.000000 +I (64564) example: expect speed: 0.000000 real_pulses:0 +I (64564) example: new speed:399.000000 +I (64574) example: expect speed: 0.000000 real_pulses:0 +I (64574) example: new speed:399.000000 +I (64584) example: expect speed: 0.000000 real_pulses:0 +I (64584) example: new speed:399.000000 +I (64594) example: expect speed: 0.000000 real_pulses:0 +I (64594) example: new speed:399.000000 +I (64604) example: expect speed: 0.000000 real_pulses:0 +I (64604) example: new speed:399.000000 +I (64614) example: expect speed: 0.000000 real_pulses:0 +I (64614) example: new speed:399.000000 +I (64624) example: expect speed: 0.000000 real_pulses:0 +I (64624) example: new speed:399.000000 +I (64634) example: expect speed: 0.000000 real_pulses:0 +I (64634) example: new speed:399.000000 +I (64644) example: expect speed: 0.000000 real_pulses:0 +I (64644) example: new speed:399.000000 +I (64654) example: expect speed: 0.000000 real_pulses:0 +I (64654) example: new speed:399.000000 +I (64664) example: expect speed: 0.000000 real_pulses:0 +I (64664) example: new speed:399.000000 +I (64674) example: expect speed: 0.000000 real_pulses:0 +I (64674) example: new speed:399.000000 +I (64684) example: expect speed: 0.000000 real_pulses:0 +I (64684) example: new speed:399.000000 +I (64694) example: expect speed: 0.000000 real_pulses:0 +I (64694) example: new speed:399.000000 +I (64704) example: expect speed: 0.000000 real_pulses:0 +I (64704) example: new speed:399.000000 +I (64714) example: expect speed: 0.000000 real_pulses:0 +I (64714) example: new speed:399.000000 +I (64724) example: expect speed: 0.000000 real_pulses:0 +I (64724) example: new speed:399.000000 +I (64734) example: expect speed: 0.000000 real_pulses:0 +I (64734) example: new speed:399.000000 +I (64744) example: expect speed: 0.000000 real_pulses:0 +I (64744) example: new speed:399.000000 +I (64754) example: expect speed: 0.000000 real_pulses:0 +I (64754) example: new speed:399.000000 +I (64764) example: expect speed: 0.000000 real_pulses:0 +I (64764) example: new speed:399.000000 +I (64774) example: expect speed: 0.000000 real_pulses:0 +I (64774) example: new speed:399.000000 +I (64784) example: expect speed: 0.000000 real_pulses:0 +I (64784) example: new speed:399.000000 +I (64794) example: expect speed: 0.000000 real_pulses:0 +I (64794) example: new speed:399.000000 +I (64804) example: expect speed: 0.000000 real_pulses:0 +I (64804) example: new speed:399.000000 +I (64814) example: expect speed: 0.000000 real_pulses:0 +I (64814) example: new speed:399.000000 +I (64824) example: expect speed: 0.000000 real_pulses:0 +I (64824) example: new speed:399.000000 +I (64834) example: expect speed: 0.000000 real_pulses:0 +I (64834) example: new speed:399.000000 +I (64844) example: expect speed: 0.000000 real_pulses:0 +I (64844) example: new speed:399.000000 +I (64854) example: expect speed: 0.000000 real_pulses:0 +I (64854) example: new speed:399.000000 +I (64864) example: expect speed: 0.000000 real_pulses:0 +I (64864) example: new speed:399.000000 +I (64874) example: expect speed: 0.000000 real_pulses:0 +I (64874) example: new speed:399.000000 +I (64884) example: expect speed: 0.000000 real_pulses:0 +I (64884) example: new speed:399.000000 +I (64894) example: expect speed: 0.000000 real_pulses:0 +I (64894) example: new speed:399.000000 +I (64904) example: expect speed: 0.000000 real_pulses:0 +I (64904) example: new speed:399.000000 +I (64914) example: expect speed: 0.000000 real_pulses:0 +I (64914) example: new speed:399.000000 +I (64924) example: expect speed: 0.000000 real_pulses:0 +I (64924) example: new speed:399.000000 +I (64934) example: expect speed: 0.000000 real_pulses:0 +I (64934) example: new speed:399.000000 +I (64944) example: expect speed: 0.000000 real_pulses:0 +I (64944) example: new speed:399.000000 +I (64954) example: expect speed: 0.000000 real_pulses:0 +I (64954) example: new speed:399.000000 +I (64964) example: expect speed: 0.000000 real_pulses:0 +I (64974) example: new speed:399.000000 +I (64974) example: expect speed: 0.000000 real_pulses:0 +I (64974) example: new speed:399.000000 +I (64984) example: expect speed: 0.000000 real_pulses:0 +I (64984) example: new speed:399.000000 +I (64994) example: expect speed: 0.000000 real_pulses:0 +I (64994) example: new speed:399.000000 +I (65004) example: expect speed: 0.000000 real_pulses:0 +I (65004) example: new speed:399.000000 +I (65014) example: expect speed: 0.000000 real_pulses:0 +I (65014) example: new speed:399.000000 +I (65024) example: expect speed: 0.000000 real_pulses:0 +I (65024) example: new speed:399.000000 +I (65034) example: expect speed: 0.000000 real_pulses:0 +I (65034) example: new speed:399.000000 +I (65044) example: expect speed: 0.000000 real_pulses:0 +I (65044) example: new speed:399.000000 +I (65054) example: expect speed: 0.000000 real_pulses:0 +I (65054) example: new speed:399.000000 +I (65064) example: expect speed: 0.000000 real_pulses:0 +I (65064) example: new speed:399.000000 +I (65074) example: expect speed: 0.000000 real_pulses:0 +I (65074) example: new speed:399.000000 +I (65084) example: expect speed: 0.000000 real_pulses:0 +I (65084) example: new speed:399.000000 +I (65094) example: expect speed: 0.000000 real_pulses:0 +I (65094) example: new speed:399.000000 +I (65104) example: expect speed: 0.000000 real_pulses:0 +I (65104) example: new speed:399.000000 +I (65114) example: expect speed: 0.000000 real_pulses:0 +I (65114) example: new speed:399.000000 +I (65124) example: expect speed: 0.000000 real_pulses:0 +I (65124) example: new speed:399.000000 +I (65134) example: expect speed: 0.000000 real_pulses:0 +I (65134) example: new speed:399.000000 +I (65144) example: expect speed: 0.000000 real_pulses:0 +I (65144) example: new speed:399.000000 +I (65154) example: expect speed: 0.000000 real_pulses:0 +I (65154) example: new speed:399.000000 +I (65164) example: expect speed: 0.000000 real_pulses:0 +I (65164) example: new speed:399.000000 +I (65174) example: expect speed: 0.000000 real_pulses:0 +I (65174) example: new speed:399.000000 +I (65184) example: expect speed: 0.000000 real_pulses:0 +I (65184) example: new speed:399.000000 +I (65194) example: expect speed: 0.000000 real_pulses:0 +I (65194) example: new speed:399.000000 +I (65204) example: expect speed: 0.000000 real_pulses:0 +I (65204) example: new speed:399.000000 +I (65214) example: expect speed: 0.000000 real_pulses:0 +I (65214) example: new speed:399.000000 +I (65224) example: expect speed: 0.000000 real_pulses:0 +I (65224) example: new speed:399.000000 +I (65234) example: expect speed: 0.000000 real_pulses:0 +I (65234) example: new speed:399.000000 +I (65244) example: expect speed: 0.000000 real_pulses:0 +I (65244) example: new speed:399.000000 +I (65254) example: expect speed: 0.000000 real_pulses:0 +I (65254) example: new speed:399.000000 +I (65264) example: expect speed: 0.000000 real_pulses:0 +I (65264) example: new speed:399.000000 +I (65274) example: expect speed: 0.000000 real_pulses:0 +I (65274) example: new speed:399.000000 +I (65284) example: expect speed: 0.000000 real_pulses:0 +I (65284) example: new speed:399.000000 +I (65294) example: expect speed: 0.000000 real_pulses:0 +I (65294) example: new speed:399.000000 +I (65304) example: expect speed: 0.000000 real_pulses:0 +I (65304) example: new speed:399.000000 +I (65314) example: expect speed: 0.000000 real_pulses:0 +I (65314) example: new speed:399.000000 +I (65324) example: expect speed: 0.000000 real_pulses:0 +I (65324) example: new speed:399.000000 +I (65334) example: expect speed: 0.000000 real_pulses:0 +I (65334) example: new speed:399.000000 +I (65344) example: expect speed: 0.000000 real_pulses:0 +I (65344) example: new speed:399.000000 +I (65354) example: expect speed: 0.000000 real_pulses:0 +I (65354) example: new speed:399.000000 +I (65364) example: expect speed: 0.000000 real_pulses:0 +I (65364) example: new speed:399.000000 +I (65374) example: expect speed: 0.000000 real_pulses:0 +I (65374) example: new speed:399.000000 +I (65384) example: expect speed: 0.000000 real_pulses:0 +I (65384) example: new speed:399.000000 +I (65394) example: expect speed: 0.000000 real_pulses:0 +I (65394) example: new speed:399.000000 +I (65404) example: expect speed: 0.000000 real_pulses:0 +I (65404) example: new speed:399.000000 +I (65414) example: expect speed: 0.000000 real_pulses:0 +I (65414) example: new speed:399.000000 +I (65424) example: expect speed: 0.000000 real_pulses:0 +I (65424) example: new speed:399.000000 +I (65434) example: expect speed: 0.000000 real_pulses:0 +I (65434) example: new speed:399.000000 +I (65444) example: expect speed: 0.000000 real_pulses:0 +I (65444) example: new speed:399.000000 +I (65454) example: expect speed: 0.000000 real_pulses:0 +I (65454) example: new speed:399.000000 +I (65464) example: expect speed: 0.000000 real_pulses:0 +I (65464) example: new speed:399.000000 +I (65474) example: expect speed: 0.000000 real_pulses:0 +I (65474) example: new speed:399.000000 +I (65484) example: expect speed: 0.000000 real_pulses:0 +I (65484) example: new speed:399.000000 +I (65494) example: expect speed: 0.000000 real_pulses:0 +I (65494) example: new speed:399.000000 +I (65504) example: expect speed: 0.000000 real_pulses:0 +I (65504) example: new speed:399.000000 +I (65514) example: expect speed: 0.000000 real_pulses:0 +I (65514) example: new speed:399.000000 +I (65524) example: expect speed: 0.000000 real_pulses:0 +I (65524) example: new speed:399.000000 +I (65534) example: expect speed: 0.000000 real_pulses:0 +I (65534) example: new speed:399.000000 +I (65544) example: expect speed: 0.000000 real_pulses:0 +I (65544) example: new speed:399.000000 +I (65554) example: expect speed: 0.000000 real_pulses:0 +I (65554) example: new speed:399.000000 +I (65564) example: expect speed: 0.000000 real_pulses:0 +I (65564) example: new speed:399.000000 +I (65574) example: expect speed: 0.000000 real_pulses:0 +I (65574) example: new speed:399.000000 +I (65584) example: expect speed: 0.000000 real_pulses:0 +I (65584) example: new speed:399.000000 +I (65594) example: expect speed: 0.000000 real_pulses:0 +I (65594) example: new speed:399.000000 +I (65604) example: expect speed: 0.000000 real_pulses:0 +I (65604) example: new speed:399.000000 +I (65614) example: expect speed: 0.000000 real_pulses:0 +I (65614) example: new speed:399.000000 +I (65624) example: expect speed: 0.000000 real_pulses:0 +I (65624) example: new speed:399.000000 +I (65634) example: expect speed: 0.000000 real_pulses:0 +I (65634) example: new speed:399.000000 +I (65644) example: expect speed: 0.000000 real_pulses:0 +I (65644) example: new speed:399.000000 +I (65654) example: expect speed: 0.000000 real_pulses:0 +I (65654) example: new speed:399.000000 +I (65664) example: expect speed: 0.000000 real_pulses:0 +I (65664) example: new speed:399.000000 +I (65674) example: expect speed: 0.000000 real_pulses:0 +I (65674) example: new speed:399.000000 +I (65684) example: expect speed: 0.000000 real_pulses:0 +I (65684) example: new speed:399.000000 +I (65694) example: expect speed: 0.000000 real_pulses:0 +I (65694) example: new speed:399.000000 +I (65704) example: expect speed: 0.000000 real_pulses:0 +I (65704) example: new speed:399.000000 +I (65714) example: expect speed: 0.000000 real_pulses:0 +I (65714) example: new speed:399.000000 +I (65724) example: expect speed: 0.000000 real_pulses:0 +I (65724) example: new speed:399.000000 +I (65734) example: expect speed: 0.000000 real_pulses:0 +I (65734) example: new speed:399.000000 +I (65744) example: expect speed: 0.000000 real_pulses:0 +I (65744) example: new speed:399.000000 +I (65754) example: expect speed: 0.000000 real_pulses:0 +I (65754) example: new speed:399.000000 +I (65764) example: expect speed: 0.000000 real_pulses:0 +I (65764) example: new speed:399.000000 +I (65774) example: expect speed: 0.000000 real_pulses:0 +I (65774) example: new speed:399.000000 +I (65784) example: expect speed: 0.000000 real_pulses:0 +I (65784) example: new speed:399.000000 +I (65794) example: expect speed: 0.000000 real_pulses:0 +I (65794) example: new speed:399.000000 +I (65804) example: expect speed: 0.000000 real_pulses:0 +I (65804) example: new speed:399.000000 +I (65814) example: expect speed: 0.000000 real_pulses:0 +I (65814) example: new speed:399.000000 +I (65824) example: expect speed: 0.000000 real_pulses:0 +I (65824) example: new speed:399.000000 +I (65834) example: expect speed: 0.000000 real_pulses:0 +I (65834) example: new speed:399.000000 +I (65844) example: expect speed: 0.000000 real_pulses:0 +I (65844) example: new speed:399.000000 +I (65854) example: expect speed: 0.000000 real_pulses:0 +I (65854) example: new speed:399.000000 +I (65864) example: expect speed: 0.000000 real_pulses:0 +I (65864) example: new speed:399.000000 +I (65874) example: expect speed: 0.000000 real_pulses:0 +I (65874) example: new speed:399.000000 +I (65884) example: expect speed: 0.000000 real_pulses:0 +I (65884) example: new speed:399.000000 +I (65894) example: expect speed: 0.000000 real_pulses:0 +I (65894) example: new speed:399.000000 +I (65904) example: expect speed: 0.000000 real_pulses:0 +I (65904) example: new speed:399.000000 +I (65914) example: expect speed: 0.000000 real_pulses:0 +I (65914) example: new speed:399.000000 +I (65924) example: expect speed: 0.000000 real_pulses:0 +I (65924) example: new speed:399.000000 +I (65934) example: expect speed: 0.000000 real_pulses:0 +I (65934) example: new speed:399.000000 +I (65944) example: expect speed: 0.000000 real_pulses:0 +I (65944) example: new speed:399.000000 +I (65954) example: expect speed: 0.000000 real_pulses:0 +I (65954) example: new speed:399.000000 +I (65964) example: expect speed: 0.000000 real_pulses:0 +I (65964) example: new speed:399.000000 +I (65974) example: expect speed: 0.000000 real_pulses:0 +I (65974) example: new speed:399.000000 +I (65984) example: expect speed: 0.000000 real_pulses:0 +I (65984) example: new speed:399.000000 +I (65994) example: expect speed: 0.000000 real_pulses:0 +I (65994) example: new speed:399.000000 +I (66004) example: expect speed: 0.000000 real_pulses:0 +I (66004) example: new speed:399.000000 +I (66014) example: expect speed: 0.000000 real_pulses:0 +I (66014) example: new speed:399.000000 +I (66024) example: expect speed: 0.000000 real_pulses:0 +I (66024) example: new speed:399.000000 +I (66034) example: expect speed: 0.000000 real_pulses:0 +I (66034) example: new speed:399.000000 +I (66044) example: expect speed: 0.000000 real_pulses:0 +I (66044) example: new speed:399.000000 +I (66054) example: expect speed: 0.000000 real_pulses:0 +I (66054) example: new speed:399.000000 +I (66064) example: expect speed: 0.000000 real_pulses:0 +I (66064) example: new speed:399.000000 +I (66074) example: expect speed: 0.000000 real_pulses:0 +I (66074) example: new speed:399.000000 +I (66084) example: expect speed: 0.000000 real_pulses:0 +I (66084) example: new speed:399.000000 +I (66094) example: expect speed: 0.000000 real_pulses:0 +I (66104) example: new speed:399.000000 +I (66104) example: expect speed: 0.000000 real_pulses:0 +I (66104) example: new speed:399.000000 +I (66114) example: expect speed: 0.000000 real_pulses:0 +I (66114) example: new speed:399.000000 +I (66124) example: expect speed: 0.000000 real_pulses:0 +I (66124) example: new speed:399.000000 +I (66134) example: expect speed: 0.000000 real_pulses:0 +I (66134) example: new speed:399.000000 +I (66144) example: expect speed: 0.000000 real_pulses:0 +I (66144) example: new speed:399.000000 +I (66154) example: expect speed: 0.000000 real_pulses:0 +I (66154) example: new speed:399.000000 +I (66164) example: expect speed: 0.000000 real_pulses:0 +I (66164) example: new speed:399.000000 +I (66174) example: expect speed: 0.000000 real_pulses:0 +I (66174) example: new speed:399.000000 +I (66184) example: expect speed: 0.000000 real_pulses:0 +I (66184) example: new speed:399.000000 +I (66194) example: expect speed: 0.000000 real_pulses:0 +I (66194) example: new speed:399.000000 +I (66204) example: expect speed: 0.000000 real_pulses:0 +I (66204) example: new speed:399.000000 +I (66214) example: expect speed: 0.000000 real_pulses:0 +I (66214) example: new speed:399.000000 +I (66224) example: expect speed: 0.000000 real_pulses:0 +I (66224) example: new speed:399.000000 +I (66234) example: expect speed: 0.000000 real_pulses:0 +I (66234) example: new speed:399.000000 +I (66244) example: expect speed: 0.000000 real_pulses:0 +I (66244) example: new speed:399.000000 +I (66254) example: expect speed: 0.000000 real_pulses:0 +I (66254) example: new speed:399.000000 +I (66264) example: expect speed: 0.000000 real_pulses:0 +I (66264) example: new speed:399.000000 +I (66274) example: expect speed: 0.000000 real_pulses:0 +I (66274) example: new speed:399.000000 +I (66284) example: expect speed: 0.000000 real_pulses:0 +I (66284) example: new speed:399.000000 +I (66294) example: expect speed: 0.000000 real_pulses:0 +I (66294) example: new speed:399.000000 +I (66304) example: expect speed: 0.000000 real_pulses:0 +I (66304) example: new speed:399.000000 +I (66314) example: expect speed: 0.000000 real_pulses:0 +I (66314) example: new speed:399.000000 +I (66324) example: expect speed: 0.000000 real_pulses:0 +I (66324) example: new speed:399.000000 +I (66334) example: expect speed: 0.000000 real_pulses:0 +I (66334) example: new speed:399.000000 +I (66344) example: expect speed: 0.000000 real_pulses:0 +I (66344) example: new speed:399.000000 +I (66354) example: expect speed: 0.000000 real_pulses:0 +I (66354) example: new speed:399.000000 +I (66364) example: expect speed: 0.000000 real_pulses:0 +I (66364) example: new speed:399.000000 +I (66374) example: expect speed: 0.000000 real_pulses:0 +I (66374) example: new speed:399.000000 +I (66384) example: expect speed: 0.000000 real_pulses:0 +I (66384) example: new speed:399.000000 +I (66394) example: expect speed: 0.000000 real_pulses:0 +I (66394) example: new speed:399.000000 +I (66404) example: expect speed: 0.000000 real_pulses:0 +I (66414) example: new speed:399.000000 +I (66414) example: expect speed: 0.000000 real_pulses:0 +I (66424) example: new speed:399.000000 +I (66424) example: expect speed: 0.000000 real_pulses:0 +I (66434) example: new speed:399.000000 +I (66434) example: expect speed: 0.000000 real_pulses:0 +I (66434) example: new speed:399.000000 +I (66444) example: expect speed: 0.000000 real_pulses:0 +I (66444) example: new speed:399.000000 +I (66454) example: expect speed: 0.000000 real_pulses:0 +I (66454) example: new speed:399.000000 +I (66464) example: expect speed: 0.000000 real_pulses:0 +I (66464) example: new speed:399.000000 +I (66474) example: expect speed: 0.000000 real_pulses:0 +I (66474) example: new speed:399.000000 +I (66484) example: expect speed: 0.000000 real_pulses:0 +I (66484) example: new speed:399.000000 +I (66494) example: expect speed: 0.000000 real_pulses:0 +I (66504) example: new speed:399.000000 +I (66504) example: expect speed: 0.000000 real_pulses:0 +I (66504) example: new speed:399.000000 +I (66514) example: expect speed: 0.000000 real_pulses:0 +I (66514) example: new speed:399.000000 +I (66524) example: expect speed: 0.000000 real_pulses:0 +I (66524) example: new speed:399.000000 +I (66534) example: expect speed: 0.000000 real_pulses:0 +I (66534) example: new speed:399.000000 +I (66544) example: expect speed: 0.000000 real_pulses:0 +I (66544) example: new speed:399.000000 +I (66554) example: expect speed: 0.000000 real_pulses:0 +I (66554) example: new speed:399.000000 +I (66564) example: expect speed: 0.000000 real_pulses:0 +I (66564) example: new speed:399.000000 +I (66574) example: expect speed: 0.000000 real_pulses:0 +I (66574) example: new speed:399.000000 +I (66584) example: expect speed: 0.000000 real_pulses:0 +I (66584) example: new speed:399.000000 +I (66594) example: expect speed: 0.000000 real_pulses:0 +I (66594) example: new speed:399.000000 +I (66604) example: expect speed: 0.000000 real_pulses:0 +I (66604) example: new speed:399.000000 +I (66614) example: expect speed: 0.000000 real_pulses:0 +I (66614) example: new speed:399.000000 +I (66624) example: expect speed: 0.000000 real_pulses:0 +I (66624) example: new speed:399.000000 +I (66634) example: expect speed: 0.000000 real_pulses:0 +I (66634) example: new speed:399.000000 +I (66644) example: expect speed: 0.000000 real_pulses:0 +I (66644) example: new speed:399.000000 +I (66654) example: expect speed: 0.000000 real_pulses:0 +I (66654) example: new speed:399.000000 +I (66664) example: expect speed: 0.000000 real_pulses:0 +I (66664) example: new speed:399.000000 +I (66674) example: expect speed: 0.000000 real_pulses:0 +I (66674) example: new speed:399.000000 +I (66684) example: expect speed: 0.000000 real_pulses:0 +I (66684) example: new speed:399.000000 +I (66694) example: expect speed: 0.000000 real_pulses:0 +I (66694) example: new speed:399.000000 +I (66704) example: expect speed: 0.000000 real_pulses:0 +I (66704) example: new speed:399.000000 +I (66714) example: expect speed: 0.000000 real_pulses:0 +I (66714) example: new speed:399.000000 +I (66724) example: expect speed: 0.000000 real_pulses:0 +I (66724) example: new speed:399.000000 +I (66734) example: expect speed: 0.000000 real_pulses:0 +I (66734) example: new speed:399.000000 +I (66744) example: expect speed: 0.000000 real_pulses:0 +I (66744) example: new speed:399.000000 +I (66754) example: expect speed: 0.000000 real_pulses:0 +I (66754) example: new speed:399.000000 +I (66764) example: expect speed: 0.000000 real_pulses:0 +I (66764) example: new speed:399.000000 +I (66774) example: expect speed: 0.000000 real_pulses:0 +I (66774) example: new speed:399.000000 +I (66784) example: expect speed: 0.000000 real_pulses:0 +I (66784) example: new speed:399.000000 +I (66794) example: expect speed: 0.000000 real_pulses:0 +I (66794) example: new speed:399.000000 +I (66804) example: expect speed: 0.000000 real_pulses:0 +I (66804) example: new speed:399.000000 +I (66814) example: expect speed: 0.000000 real_pulses:0 +I (66814) example: new speed:399.000000 +I (66824) example: expect speed: 0.000000 real_pulses:0 +I (66824) example: new speed:399.000000 +I (66834) example: expect speed: 0.000000 real_pulses:0 +I (66834) example: new speed:399.000000 +I (66844) example: expect speed: 0.000000 real_pulses:0 +I (66844) example: new speed:399.000000 +I (66854) example: expect speed: 0.000000 real_pulses:0 +I (66854) example: new speed:399.000000 +I (66864) example: expect speed: 0.000000 real_pulses:0 +I (66864) example: new speed:399.000000 +I (66874) example: expect speed: 0.000000 real_pulses:0 +I (66874) example: new speed:399.000000 +I (66884) example: expect speed: 0.000000 real_pulses:0 +I (66884) example: new speed:399.000000 +I (66894) example: expect speed: 0.000000 real_pulses:0 +I (66894) example: new speed:399.000000 +I (66904) example: expect speed: 0.000000 real_pulses:0 +I (66904) example: new speed:399.000000 +I (66914) example: expect speed: 0.000000 real_pulses:0 +I (66914) example: new speed:399.000000 +I (66924) example: expect speed: 0.000000 real_pulses:0 +I (66924) example: new speed:399.000000 +I (66934) example: expect speed: 0.000000 real_pulses:0 +I (66934) example: new speed:399.000000 +I (66944) example: expect speed: 0.000000 real_pulses:0 +I (66944) example: new speed:399.000000 +I (66954) example: expect speed: 0.000000 real_pulses:0 +I (66954) example: new speed:399.000000 +I (66964) example: expect speed: 0.000000 real_pulses:0 +I (66964) example: new speed:399.000000 +I (66974) example: expect speed: 0.000000 real_pulses:0 +I (66974) example: new speed:399.000000 +I (66984) example: expect speed: 0.000000 real_pulses:0 +I (66984) example: new speed:399.000000 +I (66994) example: expect speed: 0.000000 real_pulses:0 +I (66994) example: new speed:399.000000 +I (67004) example: expect speed: 0.000000 real_pulses:0 +I (67004) example: new speed:399.000000 +I (67014) example: expect speed: 0.000000 real_pulses:0 +I (67014) example: new speed:399.000000 +I (67024) example: expect speed: 0.000000 real_pulses:0 +I (67024) example: new speed:399.000000 +I (67034) example: expect speed: 0.000000 real_pulses:0 +I (67034) example: new speed:399.000000 +I (67044) example: expect speed: 0.000000 real_pulses:0 +I (67044) example: new speed:399.000000 +I (67054) example: expect speed: 0.000000 real_pulses:0 +I (67054) example: new speed:399.000000 +I (67064) example: expect speed: 0.000000 real_pulses:0 +I (67064) example: new speed:399.000000 +I (67074) example: expect speed: 0.000000 real_pulses:0 +I (67074) example: new speed:399.000000 +I (67084) example: expect speed: 0.000000 real_pulses:0 +I (67084) example: new speed:399.000000 +I (67094) example: expect speed: 0.000000 real_pulses:0 +I (67094) example: new speed:399.000000 +I (67104) example: expect speed: 0.000000 real_pulses:0 +I (67104) example: new speed:399.000000 +I (67114) example: expect speed: 0.000000 real_pulses:0 +I (67114) example: new speed:399.000000 +I (67124) example: expect speed: 0.000000 real_pulses:0 +I (67124) example: new speed:399.000000 +I (67134) example: expect speed: 0.000000 real_pulses:0 +I (67134) example: new speed:399.000000 +I (67144) example: expect speed: 0.000000 real_pulses:0 +I (67144) example: new speed:399.000000 +I (67154) example: expect speed: 0.000000 real_pulses:0 +I (67154) example: new speed:399.000000 +I (67164) example: expect speed: 0.000000 real_pulses:0 +I (67164) example: new speed:399.000000 +I (67174) example: expect speed: 0.000000 real_pulses:0 +I (67174) example: new speed:399.000000 +I (67184) example: expect speed: 0.000000 real_pulses:0 +I (67184) example: new speed:399.000000 +I (67194) example: expect speed: 0.000000 real_pulses:0 +I (67194) example: new speed:399.000000 +I (67204) example: expect speed: 0.000000 real_pulses:0 +I (67204) example: new speed:399.000000 +I (67214) example: expect speed: 0.000000 real_pulses:0 +I (67214) example: new speed:399.000000 +I (67224) example: expect speed: 0.000000 real_pulses:0 +I (67224) example: new speed:399.000000 +I (67234) example: expect speed: 0.000000 real_pulses:0 +I (67234) example: new speed:399.000000 +I (67244) example: expect speed: 0.000000 real_pulses:0 +I (67244) example: new speed:399.000000 +I (67254) example: expect speed: 0.000000 real_pulses:0 +I (67254) example: new speed:399.000000 +I (67264) example: expect speed: 0.000000 real_pulses:0 +I (67264) example: new speed:399.000000 +I (67274) example: expect speed: 0.000000 real_pulses:0 +I (67274) example: new speed:399.000000 +I (67284) example: expect speed: 0.000000 real_pulses:0 +I (67284) example: new speed:399.000000 +I (67294) example: expect speed: 0.000000 real_pulses:0 +I (67294) example: new speed:399.000000 +I (67304) example: expect speed: 0.000000 real_pulses:0 +I (67304) example: new speed:399.000000 +I (67314) example: expect speed: 0.000000 real_pulses:0 +I (67314) example: new speed:399.000000 +I (67324) example: expect speed: 0.000000 real_pulses:0 +I (67324) example: new speed:399.000000 +I (67334) example: expect speed: 0.000000 real_pulses:0 +I (67334) example: new speed:399.000000 +I (67344) example: expect speed: 0.000000 real_pulses:0 +I (67344) example: new speed:399.000000 +I (67354) example: expect speed: 0.000000 real_pulses:0 +I (67354) example: new speed:399.000000 +I (67364) example: expect speed: 0.000000 real_pulses:0 +I (67364) example: new speed:399.000000 +I (67374) example: expect speed: 0.000000 real_pulses:0 +I (67374) example: new speed:399.000000 +I (67384) example: expect speed: 0.000000 real_pulses:0 +I (67384) example: new speed:399.000000 +I (67394) example: expect speed: 0.000000 real_pulses:0 +I (67394) example: new speed:399.000000 +I (67404) example: expect speed: 0.000000 real_pulses:0 +I (67404) example: new speed:399.000000 +I (67414) example: expect speed: 0.000000 real_pulses:0 +I (67414) example: new speed:399.000000 +I (67424) example: expect speed: 0.000000 real_pulses:0 +I (67424) example: new speed:399.000000 +I (67434) example: expect speed: 0.000000 real_pulses:0 +I (67434) example: new speed:399.000000 +I (67444) example: expect speed: 0.000000 real_pulses:0 +I (67444) example: new speed:399.000000 +I (67454) example: expect speed: 0.000000 real_pulses:0 +I (67454) example: new speed:399.000000 +I (67464) example: expect speed: 0.000000 real_pulses:0 +I (67464) example: new speed:399.000000 +I (67474) example: expect speed: 0.000000 real_pulses:0 +I (67474) example: new speed:399.000000 +I (67484) example: expect speed: 0.000000 real_pulses:0 +I (67484) example: new speed:399.000000 +I (67494) example: expect speed: 0.000000 real_pulses:0 +I (67494) example: new speed:399.000000 +I (67504) example: expect speed: 0.000000 real_pulses:0 +I (67504) example: new speed:399.000000 +I (67514) example: expect speed: 0.000000 real_pulses:0 +I (67514) example: new speed:399.000000 +I (67524) example: expect speed: 0.000000 real_pulses:0 +I (67534) example: new speed:399.000000 +I (67534) example: expect speed: 0.000000 real_pulses:0 +I (67534) example: new speed:399.000000 +I (67544) example: expect speed: 0.000000 real_pulses:0 +I (67544) example: new speed:399.000000 +I (67554) example: expect speed: 0.000000 real_pulses:0 +I (67554) example: new speed:399.000000 +I (67564) example: expect speed: 0.000000 real_pulses:0 +I (67564) example: new speed:399.000000 +I (67574) example: expect speed: 0.000000 real_pulses:0 +I (67574) example: new speed:399.000000 +I (67584) example: expect speed: 0.000000 real_pulses:0 +I (67584) example: new speed:399.000000 +I (67594) example: expect speed: 0.000000 real_pulses:0 +I (67594) example: new speed:399.000000 +I (67604) example: expect speed: 0.000000 real_pulses:0 +I (67604) example: new speed:399.000000 +I (67614) example: expect speed: 0.000000 real_pulses:0 +I (67614) example: new speed:399.000000 +I (67624) example: expect speed: 0.000000 real_pulses:0 +I (67624) example: new speed:399.000000 +I (67634) example: expect speed: 0.000000 real_pulses:0 +I (67634) example: new speed:399.000000 +I (67644) example: expect speed: 0.000000 real_pulses:0 +I (67644) example: new speed:399.000000 +I (67654) example: expect speed: 0.000000 real_pulses:0 +I (67654) example: new speed:399.000000 +I (67664) example: expect speed: 0.000000 real_pulses:0 +I (67664) example: new speed:399.000000 +I (67674) example: expect speed: 0.000000 real_pulses:0 +I (67674) example: new speed:399.000000 +I (67684) example: expect speed: 0.000000 real_pulses:0 +I (67684) example: new speed:399.000000 +I (67694) example: expect speed: 0.000000 real_pulses:0 +I (67694) example: new speed:399.000000 +I (67704) example: expect speed: 0.000000 real_pulses:0 +I (67704) example: new speed:399.000000 +I (67714) example: expect speed: 0.000000 real_pulses:0 +I (67714) example: new speed:399.000000 +I (67724) example: expect speed: 0.000000 real_pulses:0 +I (67724) example: new speed:399.000000 +I (67734) example: expect speed: 0.000000 real_pulses:0 +I (67734) example: new speed:399.000000 +I (67744) example: expect speed: 0.000000 real_pulses:0 +I (67744) example: new speed:399.000000 +I (67754) example: expect speed: 0.000000 real_pulses:0 +I (67754) example: new speed:399.000000 +I (67764) example: expect speed: 0.000000 real_pulses:0 +I (67764) example: new speed:399.000000 +I (67774) example: expect speed: 0.000000 real_pulses:0 +I (67774) example: new speed:399.000000 +I (67784) example: expect speed: 0.000000 real_pulses:0 +I (67784) example: new speed:399.000000 +I (67794) example: expect speed: 0.000000 real_pulses:0 +I (67794) example: new speed:399.000000 +I (67804) example: expect speed: 0.000000 real_pulses:0 +I (67804) example: new speed:399.000000 +I (67814) example: expect speed: 0.000000 real_pulses:0 +I (67814) example: new speed:399.000000 +I (67824) example: expect speed: 0.000000 real_pulses:0 +I (67824) example: new speed:399.000000 +I (67834) example: expect speed: 0.000000 real_pulses:0 +I (67834) example: new speed:399.000000 +I (67844) example: expect speed: 0.000000 real_pulses:0 +I (67844) example: new speed:399.000000 +I (67854) example: expect speed: 0.000000 real_pulses:0 +I (67854) example: new speed:399.000000 +I (67864) example: expect speed: 0.000000 real_pulses:0 +I (67864) example: new speed:399.000000 +I (67874) example: expect speed: 0.000000 real_pulses:0 +I (67874) example: new speed:399.000000 +I (67884) example: expect speed: 0.000000 real_pulses:0 +I (67884) example: new speed:399.000000 +I (67894) example: expect speed: 0.000000 real_pulses:0 +I (67894) example: new speed:399.000000 +I (67904) example: expect speed: 0.000000 real_pulses:0 +I (67904) example: new speed:399.000000 +I (67914) example: expect speed: 0.000000 real_pulses:0 +I (67914) example: new speed:399.000000 +I (67924) example: expect speed: 0.000000 real_pulses:0 +I (67924) example: new speed:399.000000 +I (67934) example: expect speed: 0.000000 real_pulses:0 +I (67934) example: new speed:399.000000 +I (67944) example: expect speed: 0.000000 real_pulses:0 +I (67944) example: new speed:399.000000 +I (67954) example: expect speed: 0.000000 real_pulses:0 +I (67954) example: new speed:399.000000 +I (67964) example: expect speed: 0.000000 real_pulses:0 +I (67964) example: new speed:399.000000 +I (67974) example: expect speed: 0.000000 real_pulses:0 +I (67974) example: new speed:399.000000 +I (67984) example: expect speed: 0.000000 real_pulses:0 +I (67984) example: new speed:399.000000 +I (67994) example: expect speed: 0.000000 real_pulses:0 +I (67994) example: new speed:399.000000 +I (68004) example: expect speed: 0.000000 real_pulses:0 +I (68004) example: new speed:399.000000 +I (68014) example: expect speed: 0.000000 real_pulses:0 +I (68014) example: new speed:399.000000 +I (68024) example: expect speed: 0.000000 real_pulses:0 +I (68024) example: new speed:399.000000 +I (68034) example: expect speed: 0.000000 real_pulses:0 +I (68034) example: new speed:399.000000 +I (68044) example: expect speed: 0.000000 real_pulses:0 +I (68044) example: new speed:399.000000 +I (68054) example: expect speed: 0.000000 real_pulses:0 +I (68054) example: new speed:399.000000 +I (68064) example: expect speed: 0.000000 real_pulses:0 +I (68064) example: new speed:399.000000 +I (68074) example: expect speed: 0.000000 real_pulses:0 +I (68074) example: new speed:399.000000 +I (68084) example: expect speed: 0.000000 real_pulses:0 +I (68084) example: new speed:399.000000 +I (68094) example: expect speed: 0.000000 real_pulses:0 +I (68094) example: new speed:399.000000 +I (68104) example: expect speed: 0.000000 real_pulses:0 +I (68104) example: new speed:399.000000 +I (68114) example: expect speed: 0.000000 real_pulses:0 +I (68114) example: new speed:399.000000 +I (68124) example: expect speed: 0.000000 real_pulses:0 +I (68124) example: new speed:399.000000 +I (68134) example: expect speed: 0.000000 real_pulses:0 +I (68134) example: new speed:399.000000 +I (68144) example: expect speed: 0.000000 real_pulses:0 +I (68144) example: new speed:399.000000 +I (68154) example: expect speed: 0.000000 real_pulses:0 +I (68154) example: new speed:399.000000 +I (68164) example: expect speed: 0.000000 real_pulses:0 +I (68164) example: new speed:399.000000 +I (68174) example: expect speed: 0.000000 real_pulses:0 +I (68174) example: new speed:399.000000 +I (68184) example: expect speed: 0.000000 real_pulses:0 +I (68184) example: new speed:399.000000 +I (68194) example: expect speed: 0.000000 real_pulses:0 +I (68194) example: new speed:399.000000 +I (68204) example: expect speed: 0.000000 real_pulses:0 +I (68204) example: new speed:399.000000 +I (68214) example: expect speed: 0.000000 real_pulses:0 +I (68214) example: new speed:399.000000 +I (68224) example: expect speed: 0.000000 real_pulses:0 +I (68224) example: new speed:399.000000 +I (68234) example: expect speed: 0.000000 real_pulses:0 +I (68234) example: new speed:399.000000 +I (68244) example: expect speed: 0.000000 real_pulses:0 +I (68244) example: new speed:399.000000 +I (68254) example: expect speed: 0.000000 real_pulses:0 +I (68254) example: new speed:399.000000 +I (68264) example: expect speed: 0.000000 real_pulses:0 +I (68264) example: new speed:399.000000 +I (68274) example: expect speed: 0.000000 real_pulses:0 +I (68274) example: new speed:399.000000 +I (68284) example: expect speed: 0.000000 real_pulses:0 +I (68284) example: new speed:399.000000 +I (68294) example: expect speed: 0.000000 real_pulses:0 +I (68294) example: new speed:399.000000 +I (68304) example: expect speed: 0.000000 real_pulses:0 +I (68304) example: new speed:399.000000 +I (68314) example: expect speed: 0.000000 real_pulses:0 +I (68314) example: new speed:399.000000 +I (68324) example: expect speed: 0.000000 real_pulses:0 +I (68324) example: new speed:399.000000 +I (68334) example: expect speed: 0.000000 real_pulses:0 +I (68334) example: new speed:399.000000 +I (68344) example: expect speed: 0.000000 real_pulses:0 +I (68344) example: new speed:399.000000 +I (68354) example: expect speed: 0.000000 real_pulses:0 +I (68354) example: new speed:399.000000 +I (68364) example: expect speed: 0.000000 real_pulses:0 +I (68364) example: new speed:399.000000 +I (68374) example: expect speed: 0.000000 real_pulses:0 +I (68374) example: new speed:399.000000 +I (68384) example: expect speed: 0.000000 real_pulses:0 +I (68384) example: new speed:399.000000 +I (68394) example: expect speed: 0.000000 real_pulses:0 +I (68394) example: new speed:399.000000 +I (68404) example: expect speed: 0.000000 real_pulses:0 +I (68404) example: new speed:399.000000 +I (68414) example: expect speed: 0.000000 real_pulses:0 +I (68414) example: new speed:399.000000 +I (68424) example: expect speed: 0.000000 real_pulses:0 +I (68424) example: new speed:399.000000 +I (68434) example: expect speed: 0.000000 real_pulses:0 +I (68434) example: new speed:399.000000 +I (68444) example: expect speed: 0.000000 real_pulses:0 +I (68444) example: new speed:399.000000 +I (68454) example: expect speed: 0.000000 real_pulses:0 +I (68454) example: new speed:399.000000 +I (68464) example: expect speed: 0.000000 real_pulses:0 +I (68464) example: new speed:399.000000 +I (68474) example: expect speed: 0.000000 real_pulses:0 +I (68474) example: new speed:399.000000 +I (68484) example: expect speed: 0.000000 real_pulses:0 +I (68484) example: new speed:399.000000 +I (68494) example: expect speed: 0.000000 real_pulses:0 +I (68494) example: new speed:399.000000 +I (68504) example: expect speed: 0.000000 real_pulses:0 +I (68504) example: new speed:399.000000 +I (68514) example: expect speed: 0.000000 real_pulses:0 +I (68514) example: new speed:399.000000 +I (68524) example: expect speed: 0.000000 real_pulses:0 +I (68524) example: new speed:399.000000 +I (68534) example: expect speed: 0.000000 real_pulses:0 +I (68534) example: new speed:399.000000 +I (68544) example: expect speed: 0.000000 real_pulses:0 +I (68544) example: new speed:399.000000 +I (68554) example: expect speed: 0.000000 real_pulses:0 +I (68554) example: new speed:399.000000 +I (68564) example: expect speed: 0.000000 real_pulses:0 +I (68564) example: new speed:399.000000 +I (68574) example: expect speed: 0.000000 real_pulses:0 +I (68574) example: new speed:399.000000 +I (68584) example: expect speed: 0.000000 real_pulses:0 +I (68584) example: new speed:399.000000 +I (68594) example: expect speed: 0.000000 real_pulses:0 +I (68594) example: new speed:399.000000 +I (68604) example: expect speed: 0.000000 real_pulses:0 +I (68604) example: new speed:399.000000 +I (68614) example: expect speed: 0.000000 real_pulses:0 +I (68614) example: new speed:399.000000 +I (68624) example: expect speed: 0.000000 real_pulses:0 +I (68624) example: new speed:399.000000 +I (68634) example: expect speed: 0.000000 real_pulses:0 +I (68634) example: new speed:399.000000 +I (68644) example: expect speed: 0.000000 real_pulses:0 +I (68644) example: new speed:399.000000 +I (68654) example: expect speed: 0.000000 real_pulses:0 +I (68664) example: new speed:399.000000 +I (68664) example: expect speed: 0.000000 real_pulses:0 +I (68664) example: new speed:399.000000 +I (68674) example: expect speed: 0.000000 real_pulses:0 +I (68674) example: new speed:399.000000 +I (68684) example: expect speed: 0.000000 real_pulses:0 +I (68684) example: new speed:399.000000 +I (68694) example: expect speed: 0.000000 real_pulses:0 +I (68694) example: new speed:399.000000 +I (68704) example: expect speed: 0.000000 real_pulses:0 +I (68704) example: new speed:399.000000 +I (68714) example: expect speed: 0.000000 real_pulses:0 +I (68714) example: new speed:399.000000 +I (68724) example: expect speed: 0.000000 real_pulses:0 +I (68724) example: new speed:399.000000 +I (68734) example: expect speed: 0.000000 real_pulses:0 +I (68734) example: new speed:399.000000 +I (68744) example: expect speed: 0.000000 real_pulses:0 +I (68744) example: new speed:399.000000 +I (68754) example: expect speed: 0.000000 real_pulses:0 +I (68754) example: new speed:399.000000 +I (68764) example: expect speed: 0.000000 real_pulses:0 +I (68764) example: new speed:399.000000 +I (68774) example: expect speed: 0.000000 real_pulses:0 +I (68774) example: new speed:399.000000 +I (68784) example: expect speed: 0.000000 real_pulses:0 +I (68784) example: new speed:399.000000 +I (68794) example: expect speed: 0.000000 real_pulses:0 +I (68794) example: new speed:399.000000 +I (68804) example: expect speed: 0.000000 real_pulses:0 +I (68804) example: new speed:399.000000 +I (68814) example: expect speed: 0.000000 real_pulses:0 +I (68814) example: new speed:399.000000 +I (68824) example: expect speed: 0.000000 real_pulses:0 +I (68824) example: new speed:399.000000 +I (68834) example: expect speed: 0.000000 real_pulses:0 +I (68834) example: new speed:399.000000 +I (68844) example: expect speed: 0.000000 real_pulses:0 +I (68844) example: new speed:399.000000 +I (68854) example: expect speed: 0.000000 real_pulses:0 +I (68854) example: new speed:399.000000 +I (68864) example: expect speed: 0.000000 real_pulses:0 +I (68864) example: new speed:399.000000 +I (68874) example: expect speed: 0.000000 real_pulses:0 +I (68874) example: new speed:399.000000 +I (68884) example: expect speed: 0.000000 real_pulses:0 +I (68884) example: new speed:399.000000 +I (68894) example: expect speed: 0.000000 real_pulses:0 +I (68894) example: new speed:399.000000 +I (68904) example: expect speed: 0.000000 real_pulses:0 +I (68904) example: new speed:399.000000 +I (68914) example: expect speed: 0.000000 real_pulses:0 +I (68914) example: new speed:399.000000 +I (68924) example: expect speed: 0.000000 real_pulses:0 +I (68924) example: new speed:399.000000 +I (68934) example: expect speed: 0.000000 real_pulses:0 +I (68934) example: new speed:399.000000 +I (68944) example: expect speed: 0.000000 real_pulses:0 +I (68944) example: new speed:399.000000 +I (68954) example: expect speed: 0.000000 real_pulses:0 +I (68954) example: new speed:399.000000 +I (68964) example: expect speed: 0.000000 real_pulses:0 +I (68964) example: new speed:399.000000 +I (68974) example: expect speed: 0.000000 real_pulses:0 +I (68974) example: new speed:399.000000 +I (68984) example: expect speed: 0.000000 real_pulses:0 +I (68984) example: new speed:399.000000 +I (68994) example: expect speed: 0.000000 real_pulses:0 +I (68994) example: new speed:399.000000 +I (69004) example: expect speed: 0.000000 real_pulses:0 +I (69004) example: new speed:399.000000 +I (69014) example: expect speed: 0.000000 real_pulses:0 +I (69014) example: new speed:399.000000 +I (69024) example: expect speed: 0.000000 real_pulses:0 +I (69024) example: new speed:399.000000 +I (69034) example: expect speed: 0.000000 real_pulses:0 +I (69034) example: new speed:399.000000 +I (69044) example: expect speed: 0.000000 real_pulses:0 +I (69044) example: new speed:399.000000 +I (69054) example: expect speed: 0.000000 real_pulses:0 +I (69054) example: new speed:399.000000 +I (69064) example: expect speed: 0.000000 real_pulses:0 +I (69064) example: new speed:399.000000 +I (69074) example: expect speed: 0.000000 real_pulses:0 +I (69074) example: new speed:399.000000 +I (69084) example: expect speed: 0.000000 real_pulses:0 +I (69084) example: new speed:399.000000 +I (69094) example: expect speed: 0.000000 real_pulses:0 +I (69094) example: new speed:399.000000 +I (69104) example: expect speed: 0.000000 real_pulses:0 +I (69104) example: new speed:399.000000 +I (69114) example: expect speed: 0.000000 real_pulses:0 +I (69114) example: new speed:399.000000 +I (69124) example: expect speed: 0.000000 real_pulses:0 +I (69124) example: new speed:399.000000 +I (69134) example: expect speed: 0.000000 real_pulses:0 +I (69134) example: new speed:399.000000 +I (69144) example: expect speed: 0.000000 real_pulses:0 +I (69144) example: new speed:399.000000 +I (69154) example: expect speed: 0.000000 real_pulses:0 +I (69154) example: new speed:399.000000 +I (69164) example: expect speed: 0.000000 real_pulses:0 +I (69164) example: new speed:399.000000 +I (69174) example: expect speed: 0.000000 real_pulses:0 +I (69174) example: new speed:399.000000 +I (69184) example: expect speed: 0.000000 real_pulses:0 +I (69184) example: new speed:399.000000 +I (69194) example: expect speed: 0.000000 real_pulses:0 +I (69194) example: new speed:399.000000 +I (69204) example: expect speed: 0.000000 real_pulses:0 +I (69204) example: new speed:399.000000 +I (69214) example: expect speed: 0.000000 real_pulses:0 +I (69214) example: new speed:399.000000 +I (69224) example: expect speed: 0.000000 real_pulses:0 +I (69224) example: new speed:399.000000 +I (69234) example: expect speed: 0.000000 real_pulses:0 +I (69234) example: new speed:399.000000 +I (69244) example: expect speed: 0.000000 real_pulses:0 +I (69244) example: new speed:399.000000 +I (69254) example: expect speed: 0.000000 real_pulses:0 +I (69254) example: new speed:399.000000 +I (69264) example: expect speed: 0.000000 real_pulses:0 +I (69264) example: new speed:399.000000 +I (69274) example: expect speed: 0.000000 real_pulses:0 +I (69274) example: new speed:399.000000 +I (69284) example: expect speed: 0.000000 real_pulses:0 +I (69284) example: new speed:399.000000 +I (69294) example: expect speed: 0.000000 real_pulses:0 +I (69294) example: new speed:399.000000 +I (69304) example: expect speed: 0.000000 real_pulses:0 +I (69304) example: new speed:399.000000 +I (69314) example: expect speed: 0.000000 real_pulses:0 +I (69314) example: new speed:399.000000 +I (69324) example: expect speed: 0.000000 real_pulses:0 +I (69324) example: new speed:399.000000 +I (69334) example: expect speed: 0.000000 real_pulses:0 +I (69334) example: new speed:399.000000 +I (69344) example: expect speed: 0.000000 real_pulses:0 +I (69344) example: new speed:399.000000 +I (69354) example: expect speed: 0.000000 real_pulses:0 +I (69354) example: new speed:399.000000 +I (69364) example: expect speed: 0.000000 real_pulses:0 +I (69364) example: new speed:399.000000 +I (69374) example: expect speed: 0.000000 real_pulses:0 +I (69374) example: new speed:399.000000 +I (69384) example: expect speed: 0.000000 real_pulses:0 +I (69384) example: new speed:399.000000 +I (69394) example: expect speed: 0.000000 real_pulses:0 +I (69394) example: new speed:399.000000 +I (69404) example: expect speed: 0.000000 real_pulses:0 +I (69404) example: new speed:399.000000 +I (69414) example: expect speed: 0.000000 real_pulses:0 +I (69414) example: new speed:399.000000 +I (69424) example: expect speed: 0.000000 real_pulses:0 +I (69424) example: new speed:399.000000 +I (69434) example: expect speed: 0.000000 real_pulses:0 +I (69434) example: new speed:399.000000 +I (69444) example: expect speed: 0.000000 real_pulses:0 +I (69444) example: new speed:399.000000 +I (69454) example: expect speed: 0.000000 real_pulses:0 +I (69454) example: new speed:399.000000 +I (69464) example: expect speed: 0.000000 real_pulses:0 +I (69464) example: new speed:399.000000 +I (69474) example: expect speed: 0.000000 real_pulses:0 +I (69474) example: new speed:399.000000 +I (69484) example: expect speed: 0.000000 real_pulses:0 +I (69484) example: new speed:399.000000 +I (69494) example: expect speed: 0.000000 real_pulses:0 +I (69494) example: new speed:399.000000 +I (69504) example: expect speed: 0.000000 real_pulses:0 +I (69504) example: new speed:399.000000 +I (69514) example: expect speed: 0.000000 real_pulses:0 +I (69514) example: new speed:399.000000 +I (69524) example: expect speed: 0.000000 real_pulses:0 +I (69524) example: new speed:399.000000 +I (69534) example: expect speed: 0.000000 real_pulses:0 +I (69534) example: new speed:399.000000 +I (69544) example: expect speed: 0.000000 real_pulses:0 +I (69544) example: new speed:399.000000 +I (69554) example: expect speed: 0.000000 real_pulses:0 +I (69554) example: new speed:399.000000 +I (69564) example: expect speed: 0.000000 real_pulses:0 +I (69564) example: new speed:399.000000 +I (69574) example: expect speed: 0.000000 real_pulses:0 +I (69574) example: new speed:399.000000 +I (69584) example: expect speed: 0.000000 real_pulses:0 +I (69584) example: new speed:399.000000 +I (69594) example: expect speed: 0.000000 real_pulses:0 +I (69594) example: new speed:399.000000 +I (69604) example: expect speed: 0.000000 real_pulses:0 +I (69604) example: new speed:399.000000 +I (69614) example: expect speed: 0.000000 real_pulses:0 +I (69614) example: new speed:399.000000 +I (69624) example: expect speed: 0.000000 real_pulses:0 +I (69624) example: new speed:399.000000 +I (69634) example: expect speed: 0.000000 real_pulses:0 +I (69634) example: new speed:399.000000 +I (69644) example: expect speed: 0.000000 real_pulses:0 +I (69644) example: new speed:399.000000 +I (69654) example: expect speed: 0.000000 real_pulses:0 +I (69654) example: new speed:399.000000 +I (69664) example: expect speed: 0.000000 real_pulses:0 +I (69664) example: new speed:399.000000 +I (69674) example: expect speed: 0.000000 real_pulses:0 +I (69674) example: new speed:399.000000 +I (69684) example: expect speed: 0.000000 real_pulses:0 +I (69684) example: new speed:399.000000 +I (69694) example: expect speed: 0.000000 real_pulses:0 +I (69694) example: new speed:399.000000 +I (69704) example: expect speed: 0.000000 real_pulses:0 +I (69704) example: new speed:399.000000 +I (69714) example: expect speed: 0.000000 real_pulses:0 +I (69714) example: new speed:399.000000 +I (69724) example: expect speed: 0.000000 real_pulses:0 +I (69724) example: new speed:399.000000 +I (69734) example: expect speed: 0.000000 real_pulses:0 +I (69734) example: new speed:399.000000 +I (69744) example: expect speed: 0.000000 real_pulses:0 +I (69744) example: new speed:399.000000 +I (69754) example: expect speed: 0.000000 real_pulses:0 +I (69754) example: new speed:399.000000 +I (69764) example: expect speed: 0.000000 real_pulses:0 +I (69764) example: new speed:399.000000 +I (69774) example: expect speed: 0.000000 real_pulses:0 +I (69774) example: new speed:399.000000 +I (69784) example: expect speed: 0.000000 real_pulses:0 +I (69794) example: new speed:399.000000 +I (69794) example: expect speed: 0.000000 real_pulses:0 +I (69794) example: new speed:399.000000 +I (69804) example: expect speed: 0.000000 real_pulses:0 +I (69804) example: new speed:399.000000 +I (69814) example: expect speed: 0.000000 real_pulses:0 +I (69814) example: new speed:399.000000 +I (69824) example: expect speed: 0.000000 real_pulses:0 +I (69824) example: new speed:399.000000 +I (69834) example: expect speed: 0.000000 real_pulses:0 +I (69834) example: new speed:399.000000 +I (69844) example: expect speed: 0.000000 real_pulses:0 +I (69844) example: new speed:399.000000 +I (69854) example: expect speed: 0.000000 real_pulses:0 +I (69854) example: new speed:399.000000 +I (69864) example: expect speed: 0.000000 real_pulses:0 +I (69864) example: new speed:399.000000 +I (69874) example: expect speed: 0.000000 real_pulses:0 +I (69874) example: new speed:399.000000 +I (69884) example: expect speed: 0.000000 real_pulses:0 +I (69884) example: new speed:399.000000 +I (69894) example: expect speed: 0.000000 real_pulses:0 +I (69894) example: new speed:399.000000 +I (69904) example: expect speed: 0.000000 real_pulses:0 +I (69904) example: new speed:399.000000 +I (69914) example: expect speed: 0.000000 real_pulses:0 +I (69914) example: new speed:399.000000 +I (69924) example: expect speed: 0.000000 real_pulses:0 +I (69924) example: new speed:399.000000 +I (69934) example: expect speed: 0.000000 real_pulses:0 +I (69934) example: new speed:399.000000 +I (69944) example: expect speed: 0.000000 real_pulses:0 +I (69944) example: new speed:399.000000 +I (69954) example: expect speed: 0.000000 real_pulses:0 +I (69954) example: new speed:399.000000 +I (69964) example: expect speed: 0.000000 real_pulses:0 +I (69964) example: new speed:399.000000 +I (69974) example: expect speed: 0.000000 real_pulses:0 +I (69974) example: new speed:399.000000 +I (69984) example: expect speed: 0.000000 real_pulses:0 +I (69984) example: new speed:399.000000 +I (69994) example: expect speed: 0.000000 real_pulses:0 +I (69994) example: new speed:399.000000 +I (70004) example: expect speed: 0.000000 real_pulses:0 +I (70004) example: new speed:399.000000 +I (70014) example: expect speed: 0.000000 real_pulses:0 +I (70014) example: new speed:399.000000 +I (70024) example: expect speed: 0.000000 real_pulses:0 +I (70024) example: new speed:399.000000 +I (70034) example: expect speed: 0.000000 real_pulses:0 +I (70034) example: new speed:399.000000 +I (70044) example: expect speed: 0.000000 real_pulses:0 +I (70044) example: new speed:399.000000 +I (70054) example: expect speed: 0.000000 real_pulses:0 +I (70054) example: new speed:399.000000 +I (70064) example: expect speed: 0.000000 real_pulses:0 +I (70064) example: new speed:399.000000 +I (70074) example: expect speed: 0.000000 real_pulses:0 +I (70074) example: new speed:399.000000 +I (70084) example: expect speed: 0.000000 real_pulses:0 +I (70084) example: new speed:399.000000 +I (70094) example: expect speed: 0.000000 real_pulses:0 +I (70094) example: new speed:399.000000 +I (70104) example: expect speed: 0.000000 real_pulses:0 +I (70104) example: new speed:399.000000 +I (70114) example: expect speed: 0.000000 real_pulses:0 +I (70114) example: new speed:399.000000 +I (70124) example: expect speed: 0.000000 real_pulses:0 +I (70124) example: new speed:399.000000 +I (70134) example: expect speed: 0.000000 real_pulses:0 +I (70134) example: new speed:399.000000 +I (70144) example: expect speed: 0.000000 real_pulses:0 +I (70144) example: new speed:399.000000 +I (70154) example: expect speed: 0.000000 real_pulses:0 +I (70154) example: new speed:399.000000 +I (70164) example: expect speed: 0.000000 real_pulses:0 +I (70164) example: new speed:399.000000 +I (70174) example: expect speed: 0.000000 real_pulses:0 +I (70174) example: new speed:399.000000 +I (70184) example: expect speed: 0.000000 real_pulses:0 +I (70184) example: new speed:399.000000 +I (70194) example: expect speed: 0.000000 real_pulses:0 +I (70194) example: new speed:399.000000 +I (70204) example: expect speed: 0.000000 real_pulses:0 +I (70204) example: new speed:399.000000 +I (70214) example: expect speed: 0.000000 real_pulses:0 +I (70214) example: new speed:399.000000 +I (70224) example: expect speed: 0.000000 real_pulses:0 +I (70224) example: new speed:399.000000 +I (70234) example: expect speed: 0.000000 real_pulses:0 +I (70234) example: new speed:399.000000 +I (70244) example: expect speed: 0.000000 real_pulses:0 +I (70244) example: new speed:399.000000 +I (70254) example: expect speed: 0.000000 real_pulses:0 +I (70254) example: new speed:399.000000 +I (70264) example: expect speed: 0.000000 real_pulses:0 +I (70264) example: new speed:399.000000 +I (70274) example: expect speed: 0.000000 real_pulses:0 +I (70274) example: new speed:399.000000 +I (70284) example: expect speed: 0.000000 real_pulses:0 +I (70284) example: new speed:399.000000 +I (70294) example: expect speed: 0.000000 real_pulses:0 +I (70304) example: new speed:399.000000 +I (70304) example: expect speed: 0.000000 real_pulses:0 +I (70314) example: new speed:399.000000 +I (70314) example: expect speed: 0.000000 real_pulses:0 +I (70314) example: new speed:399.000000 +I (70324) example: expect speed: 0.000000 real_pulses:0 +I (70324) example: new speed:399.000000 +I (70334) example: expect speed: 0.000000 real_pulses:0 +I (70334) example: new speed:399.000000 +I (70344) example: expect speed: 0.000000 real_pulses:0 +I (70344) example: new speed:399.000000 +I (70354) example: expect speed: 0.000000 real_pulses:0 +I (70354) example: new speed:399.000000 +I (70364) example: expect speed: 0.000000 real_pulses:0 +I (70364) example: new speed:399.000000 +I (70374) example: expect speed: 0.000000 real_pulses:0 +I (70374) example: new speed:399.000000 +I (70384) example: expect speed: 0.000000 real_pulses:0 +I (70384) example: new speed:399.000000 +I (70394) example: expect speed: 0.000000 real_pulses:0 +I (70394) example: new speed:399.000000 +I (70404) example: expect speed: 0.000000 real_pulses:0 +I (70404) example: new speed:399.000000 +I (70414) example: expect speed: 0.000000 real_pulses:0 +I (70414) example: new speed:399.000000 +I (70424) example: expect speed: 0.000000 real_pulses:0 +I (70424) example: new speed:399.000000 +I (70434) example: expect speed: 0.000000 real_pulses:0 +I (70434) example: new speed:399.000000 +I (70444) example: expect speed: 0.000000 real_pulses:0 +I (70444) example: new speed:399.000000 +I (70454) example: expect speed: 0.000000 real_pulses:0 +I (70454) example: new speed:399.000000 +I (70464) example: expect speed: 0.000000 real_pulses:0 +I (70464) example: new speed:399.000000 +I (70474) example: expect speed: 0.000000 real_pulses:0 +I (70474) example: new speed:399.000000 +I (70484) example: expect speed: 0.000000 real_pulses:0 +I (70484) example: new speed:399.000000 +I (70494) example: expect speed: 0.000000 real_pulses:0 +I (70494) example: new speed:399.000000 +I (70504) example: expect speed: 0.000000 real_pulses:0 +I (70504) example: new speed:399.000000 +I (70514) example: expect speed: 0.000000 real_pulses:0 +I (70514) example: new speed:399.000000 +I (70524) example: expect speed: 0.000000 real_pulses:0 +I (70524) example: new speed:399.000000 +I (70534) example: expect speed: 0.000000 real_pulses:0 +I (70534) example: new speed:399.000000 +I (70544) example: expect speed: 0.000000 real_pulses:0 +I (70544) example: new speed:399.000000 +I (70554) example: expect speed: 0.000000 real_pulses:0 +I (70554) example: new speed:399.000000 +I (70564) example: expect speed: 0.000000 real_pulses:0 +I (70564) example: new speed:399.000000 +I (70574) example: expect speed: 0.000000 real_pulses:0 +I (70574) example: new speed:399.000000 +I (70584) example: expect speed: 0.000000 real_pulses:0 +I (70584) example: new speed:399.000000 +I (70594) example: expect speed: 0.000000 real_pulses:0 +I (70594) example: new speed:399.000000 +I (70604) example: expect speed: 0.000000 real_pulses:0 +I (70604) example: new speed:399.000000 +I (70614) example: expect speed: 0.000000 real_pulses:0 +I (70614) example: new speed:399.000000 +I (70624) example: expect speed: 0.000000 real_pulses:0 +I (70624) example: new speed:399.000000 +I (70634) example: expect speed: 0.000000 real_pulses:0 +I (70634) example: new speed:399.000000 +I (70644) example: expect speed: 0.000000 real_pulses:0 +I (70644) example: new speed:399.000000 +I (70654) example: expect speed: 0.000000 real_pulses:0 +I (70654) example: new speed:399.000000 +I (70664) example: expect speed: 0.000000 real_pulses:0 +I (70664) example: new speed:399.000000 +I (70674) example: expect speed: 0.000000 real_pulses:0 +I (70674) example: new speed:399.000000 +I (70684) example: expect speed: 0.000000 real_pulses:0 +I (70684) example: new speed:399.000000 +I (70694) example: expect speed: 0.000000 real_pulses:0 +I (70694) example: new speed:399.000000 +I (70704) example: expect speed: 0.000000 real_pulses:0 +I (70704) example: new speed:399.000000 +I (70714) example: expect speed: 0.000000 real_pulses:0 +I (70714) example: new speed:399.000000 +I (70724) example: expect speed: 0.000000 real_pulses:0 +I (70724) example: new speed:399.000000 +I (70734) example: expect speed: 0.000000 real_pulses:0 +I (70734) example: new speed:399.000000 +I (70744) example: expect speed: 0.000000 real_pulses:0 +I (70744) example: new speed:399.000000 +I (70754) example: expect speed: 0.000000 real_pulses:0 +I (70754) example: new speed:399.000000 +I (70764) example: expect speed: 0.000000 real_pulses:0 +I (70764) example: new speed:399.000000 +I (70774) example: expect speed: 0.000000 real_pulses:0 +I (70774) example: new speed:399.000000 +I (70784) example: expect speed: 0.000000 real_pulses:0 +I (70784) example: new speed:399.000000 +I (70794) example: expect speed: 0.000000 real_pulses:0 +I (70794) example: new speed:399.000000 +I (70804) example: expect speed: 0.000000 real_pulses:0 +I (70804) example: new speed:399.000000 +I (70814) example: expect speed: 0.000000 real_pulses:0 +I (70814) example: new speed:399.000000 +I (70824) example: expect speed: 0.000000 real_pulses:0 +I (70824) example: new speed:399.000000 +I (70834) example: expect speed: 0.000000 real_pulses:0 +I (70834) example: new speed:399.000000 +I (70844) example: expect speed: 0.000000 real_pulses:0 +I (70844) example: new speed:399.000000 +I (70854) example: expect speed: 0.000000 real_pulses:0 +I (70854) example: new speed:399.000000 +I (70864) example: expect speed: 0.000000 real_pulses:0 +I (70864) example: new speed:399.000000 +I (70874) example: expect speed: 0.000000 real_pulses:0 +I (70874) example: new speed:399.000000 +I (70884) example: expect speed: 0.000000 real_pulses:0 +I (70884) example: new speed:399.000000 +I (70894) example: expect speed: 0.000000 real_pulses:0 +I (70894) example: new speed:399.000000 +I (70904) example: expect speed: 0.000000 real_pulses:0 +I (70904) example: new speed:399.000000 +I (70914) example: expect speed: 0.000000 real_pulses:0 +I (70914) example: new speed:399.000000 +I (70924) example: expect speed: 0.000000 real_pulses:0 +I (70924) example: new speed:399.000000 +I (70934) example: expect speed: 0.000000 real_pulses:0 +I (70934) example: new speed:399.000000 +I (70944) example: expect speed: 0.000000 real_pulses:0 +I (70944) example: new speed:399.000000 +I (70954) example: expect speed: 0.000000 real_pulses:0 +I (70954) example: new speed:399.000000 +I (70964) example: expect speed: 0.000000 real_pulses:0 +I (70964) example: new speed:399.000000 +I (70974) example: expect speed: 0.000000 real_pulses:0 +I (70974) example: new speed:399.000000 +I (70984) example: expect speed: 0.000000 real_pulses:0 +I (70984) example: new speed:399.000000 +I (70994) example: expect speed: 0.000000 real_pulses:0 +I (70994) example: new speed:399.000000 +I (71004) example: expect speed: 0.000000 real_pulses:0 +I (71004) example: new speed:399.000000 +I (71014) example: expect speed: 0.000000 real_pulses:0 +I (71014) example: new speed:399.000000 +I (71024) example: expect speed: 0.000000 real_pulses:0 +I (71024) example: new speed:399.000000 +I (71034) example: expect speed: 0.000000 real_pulses:0 +I (71034) example: new speed:399.000000 +I (71044) example: expect speed: 0.000000 real_pulses:0 +I (71044) example: new speed:399.000000 +I (71054) example: expect speed: 0.000000 real_pulses:0 +I (71054) example: new speed:399.000000 +I (71064) example: expect speed: 0.000000 real_pulses:0 +I (71064) example: new speed:399.000000 +I (71074) example: expect speed: 0.000000 real_pulses:0 +I (71074) example: new speed:399.000000 +I (71084) example: expect speed: 0.000000 real_pulses:0 +I (71084) example: new speed:399.000000 +I (71094) example: expect speed: 0.000000 real_pulses:0 +I (71094) example: new speed:399.000000 +I (71104) example: expect speed: 0.000000 real_pulses:0 +I (71104) example: new speed:399.000000 +I (71114) example: expect speed: 0.000000 real_pulses:0 +I (71114) example: new speed:399.000000 +I (71124) example: expect speed: 0.000000 real_pulses:0 +I (71124) example: new speed:399.000000 +I (71134) example: expect speed: 0.000000 real_pulses:0 +I (71134) example: new speed:399.000000 +I (71144) example: expect speed: 0.000000 real_pulses:0 +I (71144) example: new speed:399.000000 +I (71154) example: expect speed: 0.000000 real_pulses:0 +I (71154) example: new speed:399.000000 +I (71164) example: expect speed: 0.000000 real_pulses:0 +I (71164) example: new speed:399.000000 +I (71174) example: expect speed: 0.000000 real_pulses:0 +I (71174) example: new speed:399.000000 +I (71184) example: expect speed: 0.000000 real_pulses:0 +I (71184) example: new speed:399.000000 +I (71194) example: expect speed: 0.000000 real_pulses:0 +I (71194) example: new speed:399.000000 +I (71204) example: expect speed: 0.000000 real_pulses:0 +I (71204) example: new speed:399.000000 +I (71214) example: expect speed: 0.000000 real_pulses:0 +I (71214) example: new speed:399.000000 +I (71224) example: expect speed: 0.000000 real_pulses:0 +I (71224) example: new speed:399.000000 +I (71234) example: expect speed: 0.000000 real_pulses:0 +I (71234) example: new speed:399.000000 +I (71244) example: expect speed: 0.000000 real_pulses:0 +I (71244) example: new speed:399.000000 +I (71254) example: expect speed: 0.000000 real_pulses:0 +I (71254) example: new speed:399.000000 +I (71264) example: expect speed: 0.000000 real_pulses:0 +I (71264) example: new speed:399.000000 +I (71274) example: expect speed: 0.000000 real_pulses:0 +I (71274) example: new speed:399.000000 +I (71284) example: expect speed: 0.000000 real_pulses:0 +I (71284) example: new speed:399.000000 +I (71294) example: expect speed: 0.000000 real_pulses:0 +I (71294) example: new speed:399.000000 +I (71304) example: expect speed: 0.000000 real_pulses:0 +I (71304) example: new speed:399.000000 +I (71314) example: expect speed: 0.000000 real_pulses:0 +I (71324) example: new speed:399.000000 +I (71324) example: expect speed: 0.000000 real_pulses:0 +I (71324) example: new speed:399.000000 +I (71334) example: expect speed: 0.000000 real_pulses:0 +I (71334) example: new speed:399.000000 +I (71344) example: expect speed: 0.000000 real_pulses:0 +I (71344) example: new speed:399.000000 +I (71354) example: expect speed: 0.000000 real_pulses:0 +I (71354) example: new speed:399.000000 +I (71364) example: expect speed: 0.000000 real_pulses:0 +I (71364) example: new speed:399.000000 +I (71374) example: expect speed: 0.000000 real_pulses:0 +I (71374) example: new speed:399.000000 +I (71384) example: expect speed: 0.000000 real_pulses:0 +I (71384) example: new speed:399.000000 +I (71394) example: expect speed: 0.000000 real_pulses:0 +I (71394) example: new speed:399.000000 +I (71404) example: expect speed: 0.000000 real_pulses:0 +I (71404) example: new speed:399.000000 +I (71414) example: expect speed: 0.000000 real_pulses:0 +I (71414) example: new speed:399.000000 +I (71424) example: expect speed: 0.000000 real_pulses:0 +I (71424) example: new speed:399.000000 +I (71434) example: expect speed: 0.000000 real_pulses:0 +I (71434) example: new speed:399.000000 +I (71444) example: expect speed: 0.000000 real_pulses:0 +I (71444) example: new speed:399.000000 +I (71454) example: expect speed: 0.000000 real_pulses:0 +I (71454) example: new speed:399.000000 +I (71464) example: expect speed: 0.000000 real_pulses:0 +I (71464) example: new speed:399.000000 +I (71474) example: expect speed: 0.000000 real_pulses:0 +I (71474) example: new speed:399.000000 +I (71484) example: expect speed: 0.000000 real_pulses:0 +I (71484) example: new speed:399.000000 +I (71494) example: expect speed: 0.000000 real_pulses:0 +I (71494) example: new speed:399.000000 +I (71504) example: expect speed: 0.000000 real_pulses:0 +I (71504) example: new speed:399.000000 +I (71514) example: expect speed: 0.000000 real_pulses:0 +I (71514) example: new speed:399.000000 +I (71524) example: expect speed: 0.000000 real_pulses:0 +I (71524) example: new speed:399.000000 +I (71534) example: expect speed: 0.000000 real_pulses:0 +I (71534) example: new speed:399.000000 +I (71544) example: expect speed: 0.000000 real_pulses:0 +I (71544) example: new speed:399.000000 +I (71554) example: expect speed: 0.000000 real_pulses:0 +I (71554) example: new speed:399.000000 +I (71564) example: expect speed: 0.000000 real_pulses:0 +I (71564) example: new speed:399.000000 +I (71574) example: expect speed: 0.000000 real_pulses:0 +I (71574) example: new speed:399.000000 +I (71584) example: expect speed: 0.000000 real_pulses:0 +I (71584) example: new speed:399.000000 +I (71594) example: expect speed: 0.000000 real_pulses:0 +I (71594) example: new speed:399.000000 +I (71604) example: expect speed: 0.000000 real_pulses:0 +I (71604) example: new speed:399.000000 +I (71614) example: expect speed: 0.000000 real_pulses:0 +I (71614) example: new speed:399.000000 +I (71624) example: expect speed: 0.000000 real_pulses:0 +I (71624) example: new speed:399.000000 +I (71634) example: expect speed: 0.000000 real_pulses:0 +I (71634) example: new speed:399.000000 +I (71644) example: expect speed: 0.000000 real_pulses:0 +I (71644) example: new speed:399.000000 +I (71654) example: expect speed: 0.000000 real_pulses:0 +I (71654) example: new speed:399.000000 +I (71664) example: expect speed: 0.000000 real_pulses:0 +I (71664) example: new speed:399.000000 +I (71674) example: expect speed: 0.000000 real_pulses:0 +I (71674) example: new speed:399.000000 +I (71684) example: expect speed: 0.000000 real_pulses:0 +I (71684) example: new speed:399.000000 +I (71694) example: expect speed: 0.000000 real_pulses:0 +I (71694) example: new speed:399.000000 +I (71704) example: expect speed: 0.000000 real_pulses:0 +I (71704) example: new speed:399.000000 +I (71714) example: expect speed: 0.000000 real_pulses:0 +I (71714) example: new speed:399.000000 +I (71724) example: expect speed: 0.000000 real_pulses:0 +I (71724) example: new speed:399.000000 +I (71734) example: expect speed: 0.000000 real_pulses:0 +I (71734) example: new speed:399.000000 +I (71744) example: expect speed: 0.000000 real_pulses:0 +I (71744) example: new speed:399.000000 +I (71754) example: expect speed: 0.000000 real_pulses:0 +I (71754) example: new speed:399.000000 +I (71764) example: expect speed: 0.000000 real_pulses:0 +I (71764) example: new speed:399.000000 +I (71774) example: expect speed: 0.000000 real_pulses:0 +I (71774) example: new speed:399.000000 +I (71784) example: expect speed: 0.000000 real_pulses:0 +I (71784) example: new speed:399.000000 +I (71794) example: expect speed: 0.000000 real_pulses:0 +I (71794) example: new speed:399.000000 +I (71804) example: expect speed: 0.000000 real_pulses:0 +I (71804) example: new speed:399.000000 +I (71814) example: expect speed: 0.000000 real_pulses:0 +I (71814) example: new speed:399.000000 +I (71824) example: expect speed: 0.000000 real_pulses:0 +I (71824) example: new speed:399.000000 +I (71834) example: expect speed: 0.000000 real_pulses:0 +I (71834) example: new speed:399.000000 +I (71844) example: expect speed: 0.000000 real_pulses:0 +I (71844) example: new speed:399.000000 +I (71854) example: expect speed: 0.000000 real_pulses:0 +I (71854) example: new speed:399.000000 +I (71864) example: expect speed: 0.000000 real_pulses:0 +I (71864) example: new speed:399.000000 +I (71874) example: expect speed: 0.000000 real_pulses:0 +I (71874) example: new speed:399.000000 +I (71884) example: expect speed: 0.000000 real_pulses:0 +I (71884) example: new speed:399.000000 +I (71894) example: expect speed: 0.000000 real_pulses:0 +I (71894) example: new speed:399.000000 +I (71904) example: expect speed: 0.000000 real_pulses:0 +I (71904) example: new speed:399.000000 +I (71914) example: expect speed: 0.000000 real_pulses:0 +I (71914) example: new speed:399.000000 +I (71924) example: expect speed: 0.000000 real_pulses:0 +I (71924) example: new speed:399.000000 +I (71934) example: expect speed: 0.000000 real_pulses:0 +I (71934) example: new speed:399.000000 +I (71944) example: expect speed: 0.000000 real_pulses:0 +I (71944) example: new speed:399.000000 +I (71954) example: expect speed: 0.000000 real_pulses:0 +I (71954) example: new speed:399.000000 +I (71964) example: expect speed: 0.000000 real_pulses:0 +I (71964) example: new speed:399.000000 +I (71974) example: expect speed: 0.000000 real_pulses:0 +I (71974) example: new speed:399.000000 +I (71984) example: expect speed: 0.000000 real_pulses:0 +I (71984) example: new speed:399.000000 +I (71994) example: expect speed: 0.000000 real_pulses:0 +I (71994) example: new speed:399.000000 +I (72004) example: expect speed: 0.000000 real_pulses:0 +I (72004) example: new speed:399.000000 +I (72014) example: expect speed: 0.000000 real_pulses:0 +I (72014) example: new speed:399.000000 +I (72024) example: expect speed: 0.000000 real_pulses:0 +I (72024) example: new speed:399.000000 +I (72034) example: expect speed: 0.000000 real_pulses:0 +I (72034) example: new speed:399.000000 +I (72044) example: expect speed: 0.000000 real_pulses:0 +I (72044) example: new speed:399.000000 +I (72054) example: expect speed: 0.000000 real_pulses:0 +I (72054) example: new speed:399.000000 +I (72064) example: expect speed: 0.000000 real_pulses:0 +I (72064) example: new speed:399.000000 +I (72074) example: expect speed: 0.000000 real_pulses:0 +I (72074) example: new speed:399.000000 +I (72084) example: expect speed: 0.000000 real_pulses:0 +I (72084) example: new speed:399.000000 +I (72094) example: expect speed: 0.000000 real_pulses:0 +I (72094) example: new speed:399.000000 +I (72104) example: expect speed: 0.000000 real_pulses:0 +I (72104) example: new speed:399.000000 +I (72114) example: expect speed: 0.000000 real_pulses:0 +I (72114) example: new speed:399.000000 +I (72124) example: expect speed: 0.000000 real_pulses:0 +I (72124) example: new speed:399.000000 +I (72134) example: expect speed: 0.000000 real_pulses:0 +I (72134) example: new speed:399.000000 +I (72144) example: expect speed: 0.000000 real_pulses:0 +I (72144) example: new speed:399.000000 +I (72154) example: expect speed: 0.000000 real_pulses:0 +I (72154) example: new speed:399.000000 +I (72164) example: expect speed: 0.000000 real_pulses:0 +I (72164) example: new speed:399.000000 +I (72174) example: expect speed: 0.000000 real_pulses:0 +I (72174) example: new speed:399.000000 +I (72184) example: expect speed: 0.000000 real_pulses:0 +I (72184) example: new speed:399.000000 +I (72194) example: expect speed: 0.000000 real_pulses:0 +I (72194) example: new speed:399.000000 +I (72204) example: expect speed: 0.000000 real_pulses:0 +I (72204) example: new speed:399.000000 +I (72214) example: expect speed: 0.000000 real_pulses:0 +I (72214) example: new speed:399.000000 +I (72224) example: expect speed: 0.000000 real_pulses:0 +I (72224) example: new speed:399.000000 +I (72234) example: expect speed: 0.000000 real_pulses:0 +I (72234) example: new speed:399.000000 +I (72244) example: expect speed: 0.000000 real_pulses:0 +I (72244) example: new speed:399.000000 +I (72254) example: expect speed: 0.000000 real_pulses:0 +I (72254) example: new speed:399.000000 +I (72264) example: expect speed: 0.000000 real_pulses:0 +I (72264) example: new speed:399.000000 +I (72274) example: expect speed: 0.000000 real_pulses:0 +I (72274) example: new speed:399.000000 +I (72284) example: expect speed: 0.000000 real_pulses:0 +I (72284) example: new speed:399.000000 +I (72294) example: expect speed: 0.000000 real_pulses:0 +I (72294) example: new speed:399.000000 +I (72304) example: expect speed: 0.000000 real_pulses:0 +I (72304) example: new speed:399.000000 +I (72314) example: expect speed: 0.000000 real_pulses:0 +I (72314) example: new speed:399.000000 +I (72324) example: expect speed: 0.000000 real_pulses:0 +I (72324) example: new speed:399.000000 +I (72334) example: expect speed: 0.000000 real_pulses:0 +I (72334) example: new speed:399.000000 +I (72344) example: expect speed: 0.000000 real_pulses:0 +I (72354) example: new speed:399.000000 +I (72354) example: expect speed: 0.000000 real_pulses:0 +I (72354) example: new speed:399.000000 +I (72364) example: expect speed: 0.000000 real_pulses:0 +I (72364) example: new speed:399.000000 +I (72374) example: expect speed: 0.000000 real_pulses:0 +I (72374) example: new speed:399.000000 +I (72384) example: expect speed: 0.000000 real_pulses:0 +I (72384) example: new speed:399.000000 +I (72394) example: expect speed: 0.000000 real_pulses:0 +I (72394) example: new speed:399.000000 +I (72404) example: expect speed: 0.000000 real_pulses:0 +I (72404) example: new speed:399.000000 +I (72414) example: expect speed: 0.000000 real_pulses:0 +I (72414) example: new speed:399.000000 +I (72424) example: expect speed: 0.000000 real_pulses:0 +I (72424) example: new speed:399.000000 +I (72434) example: expect speed: 0.000000 real_pulses:0 +I (72434) example: new speed:399.000000 +I (72444) example: expect speed: 0.000000 real_pulses:0 +I (72444) example: new speed:399.000000 +I (72454) example: expect speed: 0.000000 real_pulses:0 +I (72454) example: new speed:399.000000 +I (72464) example: expect speed: 0.000000 real_pulses:0 +I (72464) example: new speed:399.000000 +I (72474) example: expect speed: 0.000000 real_pulses:0 +I (72474) example: new speed:399.000000 +I (72484) example: expect speed: 0.000000 real_pulses:0 +I (72484) example: new speed:399.000000 +I (72494) example: expect speed: 0.000000 real_pulses:0 +I (72494) example: new speed:399.000000 +I (72504) example: expect speed: 0.000000 real_pulses:0 +I (72504) example: new speed:399.000000 +I (72514) example: expect speed: 0.000000 real_pulses:0 +I (72514) example: new speed:399.000000 +I (72524) example: expect speed: 0.000000 real_pulses:0 +I (72524) example: new speed:399.000000 +I (72534) example: expect speed: 0.000000 real_pulses:0 +I (72534) example: new speed:399.000000 +I (72544) example: expect speed: 0.000000 real_pulses:0 +I (72544) example: new speed:399.000000 +I (72554) example: expect speed: 0.000000 real_pulses:0 +I (72554) example: new speed:399.000000 +I (72564) example: expect speed: 0.000000 real_pulses:0 +I (72564) example: new speed:399.000000 +I (72574) example: expect speed: 0.000000 real_pulses:0 +I (72574) example: new speed:399.000000 +I (72584) example: expect speed: 0.000000 real_pulses:0 +I (72584) example: new speed:399.000000 +I (72594) example: expect speed: 0.000000 real_pulses:0 +I (72594) example: new speed:399.000000 +I (72604) example: expect speed: 0.000000 real_pulses:0 +I (72604) example: new speed:399.000000 +I (72614) example: expect speed: 0.000000 real_pulses:0 +I (72614) example: new speed:399.000000 +I (72624) example: expect speed: 0.000000 real_pulses:0 +I (72624) example: new speed:399.000000 +I (72634) example: expect speed: 0.000000 real_pulses:0 +I (72634) example: new speed:399.000000 +I (72644) example: expect speed: 0.000000 real_pulses:0 +I (72644) example: new speed:399.000000 +I (72654) example: expect speed: 0.000000 real_pulses:0 +I (72654) example: new speed:399.000000 +I (72664) example: expect speed: 0.000000 real_pulses:0 +I (72664) example: new speed:399.000000 +I (72674) example: expect speed: 0.000000 real_pulses:0 +I (72674) example: new speed:399.000000 +I (72684) example: expect speed: 0.000000 real_pulses:0 +I (72684) example: new speed:399.000000 +I (72694) example: expect speed: 0.000000 real_pulses:0 +I (72694) example: new speed:399.000000 +I (72704) example: expect speed: 0.000000 real_pulses:0 +I (72704) example: new speed:399.000000 +I (72714) example: expect speed: 0.000000 real_pulses:0 +I (72714) example: new speed:399.000000 +I (72724) example: expect speed: 0.000000 real_pulses:0 +I (72724) example: new speed:399.000000 +I (72734) example: expect speed: 0.000000 real_pulses:0 +I (72734) example: new speed:399.000000 +I (72744) example: expect speed: 0.000000 real_pulses:0 +I (72744) example: new speed:399.000000 +I (72754) example: expect speed: 0.000000 real_pulses:0 +I (72754) example: new speed:399.000000 +I (72764) example: expect speed: 0.000000 real_pulses:0 +I (72764) example: new speed:399.000000 +I (72774) example: expect speed: 0.000000 real_pulses:0 +I (72774) example: new speed:399.000000 +I (72784) example: expect speed: 0.000000 real_pulses:0 +I (72784) example: new speed:399.000000 +I (72794) example: expect speed: 0.000000 real_pulses:0 +I (72794) example: new speed:399.000000 +I (72804) example: expect speed: 0.000000 real_pulses:0 +I (72804) example: new speed:399.000000 +I (72814) example: expect speed: 0.000000 real_pulses:0 +I (72814) example: new speed:399.000000 +I (72824) example: expect speed: 0.000000 real_pulses:0 +I (72824) example: new speed:399.000000 +I (72834) example: expect speed: 0.000000 real_pulses:0 +I (72834) example: new speed:399.000000 +I (72844) example: expect speed: 0.000000 real_pulses:0 +I (72844) example: new speed:399.000000 +I (72854) example: expect speed: 0.000000 real_pulses:0 +I (72854) example: new speed:399.000000 +I (72864) example: expect speed: 0.000000 real_pulses:0 +I (72864) example: new speed:399.000000 +I (72874) example: expect speed: 0.000000 real_pulses:0 +I (72874) example: new speed:399.000000 +I (72884) example: expect speed: 0.000000 real_pulses:0 +I (72884) example: new speed:399.000000 +I (72894) example: expect speed: 0.000000 real_pulses:0 +I (72894) example: new speed:399.000000 +I (72904) example: expect speed: 0.000000 real_pulses:0 +I (72904) example: new speed:399.000000 +I (72914) example: expect speed: 0.000000 real_pulses:0 +I (72914) example: new speed:399.000000 +I (72924) example: expect speed: 0.000000 real_pulses:0 +I (72924) example: new speed:399.000000 +I (72934) example: expect speed: 0.000000 real_pulses:0 +I (72934) example: new speed:399.000000 +I (72944) example: expect speed: 0.000000 real_pulses:0 +I (72944) example: new speed:399.000000 +I (72954) example: expect speed: 0.000000 real_pulses:0 +I (72954) example: new speed:399.000000 +I (72964) example: expect speed: 0.000000 real_pulses:0 +I (72964) example: new speed:399.000000 +I (72974) example: expect speed: 0.000000 real_pulses:0 +I (72974) example: new speed:399.000000 +I (72984) example: expect speed: 0.000000 real_pulses:0 +I (72984) example: new speed:399.000000 +I (72994) example: expect speed: 0.000000 real_pulses:0 +I (72994) example: new speed:399.000000 +I (73004) example: expect speed: 0.000000 real_pulses:0 +I (73004) example: new speed:399.000000 +I (73014) example: expect speed: 0.000000 real_pulses:0 +I (73014) example: new speed:399.000000 +I (73024) example: expect speed: 0.000000 real_pulses:0 +I (73024) example: new speed:399.000000 +I (73034) example: expect speed: 0.000000 real_pulses:0 +I (73034) example: new speed:399.000000 +I (73044) example: expect speed: 0.000000 real_pulses:0 +I (73044) example: new speed:399.000000 +I (73054) example: expect speed: 0.000000 real_pulses:0 +I (73054) example: new speed:399.000000 +I (73064) example: expect speed: 0.000000 real_pulses:0 +I (73064) example: new speed:399.000000 +I (73074) example: expect speed: 0.000000 real_pulses:0 +I (73074) example: new speed:399.000000 +I (73084) example: expect speed: 0.000000 real_pulses:0 +I (73084) example: new speed:399.000000 +I (73094) example: expect speed: 0.000000 real_pulses:0 +I (73094) example: new speed:399.000000 +I (73104) example: expect speed: 0.000000 real_pulses:0 +I (73104) example: new speed:399.000000 +I (73114) example: expect speed: 0.000000 real_pulses:0 +I (73114) example: new speed:399.000000 +I (73124) example: expect speed: 0.000000 real_pulses:0 +I (73124) example: new speed:399.000000 +I (73134) example: expect speed: 0.000000 real_pulses:0 +I (73134) example: new speed:399.000000 +I (73144) example: expect speed: 0.000000 real_pulses:0 +I (73144) example: new speed:399.000000 +I (73154) example: expect speed: 0.000000 real_pulses:0 +I (73154) example: new speed:399.000000 +I (73164) example: expect speed: 0.000000 real_pulses:0 +I (73164) example: new speed:399.000000 +I (73174) example: expect speed: 0.000000 real_pulses:0 +I (73174) example: new speed:399.000000 +I (73184) example: expect speed: 0.000000 real_pulses:0 +I (73184) example: new speed:399.000000 +I (73194) example: expect speed: 0.000000 real_pulses:0 +I (73194) example: new speed:399.000000 +I (73204) example: expect speed: 0.000000 real_pulses:0 +I (73204) example: new speed:399.000000 +I (73214) example: expect speed: 0.000000 real_pulses:0 +I (73214) example: new speed:399.000000 +I (73224) example: expect speed: 0.000000 real_pulses:0 +I (73224) example: new speed:399.000000 +I (73234) example: expect speed: 0.000000 real_pulses:0 +I (73234) example: new speed:399.000000 +I (73244) example: expect speed: 0.000000 real_pulses:0 +I (73244) example: new speed:399.000000 +I (73254) example: expect speed: 0.000000 real_pulses:0 +I (73254) example: new speed:399.000000 +I (73264) example: expect speed: 0.000000 real_pulses:0 +I (73274) example: new speed:399.000000 +I (73274) example: expect speed: 0.000000 real_pulses:0 +I (73274) example: new speed:399.000000 +I (73284) example: expect speed: 0.000000 real_pulses:0 +I (73284) example: new speed:399.000000 +I (73294) example: expect speed: 0.000000 real_pulses:0 +I (73294) example: new speed:399.000000 +I (73304) example: expect speed: 0.000000 real_pulses:0 +I (73304) example: new speed:399.000000 +I (73314) example: expect speed: 0.000000 real_pulses:0 +I (73314) example: new speed:399.000000 +I (73324) example: expect speed: 0.000000 real_pulses:0 +I (73324) example: new speed:399.000000 +I (73334) example: expect speed: 0.000000 real_pulses:0 +I (73334) example: new speed:399.000000 +I (73344) example: expect speed: 0.000000 real_pulses:0 +I (73344) example: new speed:399.000000 +I (73354) example: expect speed: 0.000000 real_pulses:0 +I (73354) example: new speed:399.000000 +I (73364) example: expect speed: 0.000000 real_pulses:0 +I (73364) example: new speed:399.000000 +I (73374) example: expect speed: 0.000000 real_pulses:0 +I (73374) example: new speed:399.000000 +I (73384) example: expect speed: 0.000000 real_pulses:0 +I (73384) example: new speed:399.000000 +I (73394) example: expect speed: 0.000000 real_pulses:0 +I (73394) example: new speed:399.000000 +I (73404) example: expect speed: 0.000000 real_pulses:0 +I (73404) example: new speed:399.000000 +I (73414) example: expect speed: 0.000000 real_pulses:0 +I (73414) example: new speed:399.000000 +I (73424) example: expect speed: 0.000000 real_pulses:0 +I (73424) example: new speed:399.000000 +I (73434) example: expect speed: 0.000000 real_pulses:0 +I (73434) example: new speed:399.000000 +I (73444) example: expect speed: 0.000000 real_pulses:0 +I (73444) example: new speed:399.000000 +I (73454) example: expect speed: 0.000000 real_pulses:0 +I (73454) example: new speed:399.000000 +I (73464) example: expect speed: 0.000000 real_pulses:0 +I (73464) example: new speed:399.000000 +I (73474) example: expect speed: 0.000000 real_pulses:0 +I (73474) example: new speed:399.000000 +I (73484) example: expect speed: 0.000000 real_pulses:0 +I (73484) example: new speed:399.000000 +I (73494) example: expect speed: 0.000000 real_pulses:0 +I (73494) example: new speed:399.000000 +I (73504) example: expect speed: 0.000000 real_pulses:0 +I (73504) example: new speed:399.000000 +I (73514) example: expect speed: 0.000000 real_pulses:0 +I (73514) example: new speed:399.000000 +I (73524) example: expect speed: 0.000000 real_pulses:0 +I (73524) example: new speed:399.000000 +I (73534) example: expect speed: 0.000000 real_pulses:0 +I (73534) example: new speed:399.000000 +I (73544) example: expect speed: 0.000000 real_pulses:0 +I (73544) example: new speed:399.000000 +I (73554) example: expect speed: 0.000000 real_pulses:0 +I (73554) example: new speed:399.000000 +I (73564) example: expect speed: 0.000000 real_pulses:0 +I (73564) example: new speed:399.000000 +I (73574) example: expect speed: 0.000000 real_pulses:0 +I (73574) example: new speed:399.000000 +I (73584) example: expect speed: 0.000000 real_pulses:0 +I (73584) example: new speed:399.000000 +I (73594) example: expect speed: 0.000000 real_pulses:0 +I (73594) example: new speed:399.000000 +I (73604) example: expect speed: 0.000000 real_pulses:0 +I (73604) example: new speed:399.000000 +I (73614) example: expect speed: 0.000000 real_pulses:0 +I (73614) example: new speed:399.000000 +I (73624) example: expect speed: 0.000000 real_pulses:0 +I (73624) example: new speed:399.000000 +I (73634) example: expect speed: 0.000000 real_pulses:0 +I (73634) example: new speed:399.000000 +I (73644) example: expect speed: 0.000000 real_pulses:0 +I (73644) example: new speed:399.000000 +I (73654) example: expect speed: 0.000000 real_pulses:0 +I (73654) example: new speed:399.000000 +I (73664) example: expect speed: 0.000000 real_pulses:0 +I (73664) example: new speed:399.000000 +I (73674) example: expect speed: 0.000000 real_pulses:0 +I (73674) example: new speed:399.000000 +I (73684) example: expect speed: 0.000000 real_pulses:0 +I (73684) example: new speed:399.000000 +I (73694) example: expect speed: 0.000000 real_pulses:0 +I (73694) example: new speed:399.000000 +I (73704) example: expect speed: 0.000000 real_pulses:0 +I (73704) example: new speed:399.000000 +I (73714) example: expect speed: 0.000000 real_pulses:0 +I (73714) example: new speed:399.000000 +I (73724) example: expect speed: 0.000000 real_pulses:0 +I (73724) example: new speed:399.000000 +I (73734) example: expect speed: 0.000000 real_pulses:0 +I (73734) example: new speed:399.000000 +I (73744) example: expect speed: 0.000000 real_pulses:0 +I (73744) example: new speed:399.000000 +I (73754) example: expect speed: 0.000000 real_pulses:0 +I (73754) example: new speed:399.000000 +I (73764) example: expect speed: 0.000000 real_pulses:0 +I (73764) example: new speed:399.000000 +I (73774) example: expect speed: 0.000000 real_pulses:0 +I (73774) example: new speed:399.000000 +I (73784) example: expect speed: 0.000000 real_pulses:0 +I (73784) example: new speed:399.000000 +I (73794) example: expect speed: 0.000000 real_pulses:0 +I (73794) example: new speed:399.000000 +I (73804) example: expect speed: 0.000000 real_pulses:0 +I (73804) example: new speed:399.000000 +I (73814) example: expect speed: 0.000000 real_pulses:0 +I (73814) example: new speed:399.000000 +I (73824) example: expect speed: 0.000000 real_pulses:0 +I (73824) example: new speed:399.000000 +I (73834) example: expect speed: 0.000000 real_pulses:0 +I (73834) example: new speed:399.000000 +I (73844) example: expect speed: 0.000000 real_pulses:0 +I (73844) example: new speed:399.000000 +I (73854) example: expect speed: 0.000000 real_pulses:0 +I (73854) example: new speed:399.000000 +I (73864) example: expect speed: 0.000000 real_pulses:0 +I (73864) example: new speed:399.000000 +I (73874) example: expect speed: 0.000000 real_pulses:0 +I (73874) example: new speed:399.000000 +I (73884) example: expect speed: 0.000000 real_pulses:0 +I (73884) example: new speed:399.000000 +I (73894) example: expect speed: 0.000000 real_pulses:0 +I (73894) example: new speed:399.000000 +I (73904) example: expect speed: 0.000000 real_pulses:0 +I (73904) example: new speed:399.000000 +I (73914) example: expect speed: 0.000000 real_pulses:0 +I (73914) example: new speed:399.000000 +I (73924) example: expect speed: 0.000000 real_pulses:0 +I (73924) example: new speed:399.000000 +I (73934) example: expect speed: 0.000000 real_pulses:0 +I (73934) example: new speed:399.000000 +I (73944) example: expect speed: 0.000000 real_pulses:0 +I (73944) example: new speed:399.000000 +I (73954) example: expect speed: 0.000000 real_pulses:0 +I (73954) example: new speed:399.000000 +I (73964) example: expect speed: 0.000000 real_pulses:0 +I (73964) example: new speed:399.000000 +I (73974) example: expect speed: 0.000000 real_pulses:0 +I (73974) example: new speed:399.000000 +I (73984) example: expect speed: 0.000000 real_pulses:0 +I (73984) example: new speed:399.000000 +I (73994) example: expect speed: 0.000000 real_pulses:0 +I (73994) example: new speed:399.000000 +I (74004) example: expect speed: 0.000000 real_pulses:0 +I (74004) example: new speed:399.000000 +I (74014) example: expect speed: 0.000000 real_pulses:0 +I (74014) example: new speed:399.000000 +I (74024) example: expect speed: 0.000000 real_pulses:0 +I (74024) example: new speed:399.000000 +I (74034) example: expect speed: 0.000000 real_pulses:0 +I (74034) example: new speed:399.000000 +I (74044) example: expect speed: 0.000000 real_pulses:0 +I (74044) example: new speed:399.000000 +I (74054) example: expect speed: 0.000000 real_pulses:0 +I (74054) example: new speed:399.000000 +I (74064) example: expect speed: 0.000000 real_pulses:0 +I (74064) example: new speed:399.000000 +I (74074) example: expect speed: 0.000000 real_pulses:0 +I (74074) example: new speed:399.000000 +I (74084) example: expect speed: 0.000000 real_pulses:0 +I (74084) example: new speed:399.000000 +I (74094) example: expect speed: 0.000000 real_pulses:0 +I (74094) example: new speed:399.000000 +I (74104) example: expect speed: 0.000000 real_pulses:0 +I (74104) example: new speed:399.000000 +I (74114) example: expect speed: 0.000000 real_pulses:0 +I (74114) example: new speed:399.000000 +I (74124) example: expect speed: 0.000000 real_pulses:0 +I (74124) example: new speed:399.000000 +I (74134) example: expect speed: 0.000000 real_pulses:0 +I (74134) example: new speed:399.000000 +I (74144) example: expect speed: 0.000000 real_pulses:0 +I (74144) example: new speed:399.000000 +I (74154) example: expect speed: 0.000000 real_pulses:0 +I (74154) example: new speed:399.000000 +I (74164) example: expect speed: 0.000000 real_pulses:0 +I (74164) example: new speed:399.000000 +I (74174) example: expect speed: 0.000000 real_pulses:0 +I (74174) example: new speed:399.000000 +I (74184) example: expect speed: 0.000000 real_pulses:0 +I (74184) example: new speed:399.000000 +I (74194) example: expect speed: 0.000000 real_pulses:0 +I (74194) example: new speed:399.000000 +I (74204) example: expect speed: 0.000000 real_pulses:0 +I (74204) example: new speed:399.000000 +I (74214) example: expect speed: 0.000000 real_pulses:0 +I (74214) example: new speed:399.000000 +I (74224) example: expect speed: 0.000000 real_pulses:0 +I (74224) example: new speed:399.000000 +I (74234) example: expect speed: 0.000000 real_pulses:0 +I (74234) example: new speed:399.000000 +I (74244) example: expect speed: 0.000000 real_pulses:0 +I (74244) example: new speed:399.000000 +I (74254) example: expect speed: 0.000000 real_pulses:0 +I (74254) example: new speed:399.000000 +I (74264) example: expect speed: 0.000000 real_pulses:0 +I (74264) example: new speed:399.000000 +I (74274) example: expect speed: 0.000000 real_pulses:0 +I (74274) example: new speed:399.000000 +I (74284) example: expect speed: 0.000000 real_pulses:0 +I (74284) example: new speed:399.000000 +I (74294) example: expect speed: 0.000000 real_pulses:0 +I (74294) example: new speed:399.000000 +I (74304) example: expect speed: 0.000000 real_pulses:0 +I (74304) example: new speed:399.000000 +I (74314) example: expect speed: 0.000000 real_pulses:0 +I (74314) example: new speed:399.000000 +I (74324) example: expect speed: 0.000000 real_pulses:0 +I (74324) example: new speed:399.000000 +I (74334) example: expect speed: 0.000000 real_pulses:0 +I (74334) example: new speed:399.000000 +I (74344) example: expect speed: 0.000000 real_pulses:0 +I (74344) example: new speed:399.000000 +I (74354) example: expect speed: 0.000000 real_pulses:0 +I (74354) example: new speed:399.000000 +I (74364) example: expect speed: 0.000000 real_pulses:0 +I (74364) example: new speed:399.000000 +I (74374) example: expect speed: 0.000000 real_pulses:0 +I (74374) example: new speed:399.000000 +I (74384) example: expect speed: 0.000000 real_pulses:0 +I (74384) example: new speed:399.000000 +I (74394) example: expect speed: 0.000000 real_pulses:0 +I (74404) example: new speed:399.000000 +I (74404) example: expect speed: 0.000000 real_pulses:0 +I (74404) example: new speed:399.000000 +I (74414) example: expect speed: 0.000000 real_pulses:0 +I (74414) example: new speed:399.000000 +I (74424) example: expect speed: 0.000000 real_pulses:0 +I (74424) example: new speed:399.000000 +I (74434) example: expect speed: 0.000000 real_pulses:0 +I (74434) example: new speed:399.000000 +I (74444) example: expect speed: 0.000000 real_pulses:0 +I (74444) example: new speed:399.000000 +I (74454) example: expect speed: 0.000000 real_pulses:0 +I (74454) example: new speed:399.000000 +I (74464) example: expect speed: 0.000000 real_pulses:0 +I (74464) example: new speed:399.000000 +I (74474) example: expect speed: 0.000000 real_pulses:0 +I (74474) example: new speed:399.000000 +I (74484) example: expect speed: 0.000000 real_pulses:0 +I (74484) example: new speed:399.000000 +I (74494) example: expect speed: 0.000000 real_pulses:0 +I (74494) example: new speed:399.000000 +I (74504) example: expect speed: 0.000000 real_pulses:0 +I (74504) example: new speed:399.000000 +I (74514) example: expect speed: 0.000000 real_pulses:0 +I (74514) example: new speed:399.000000 +I (74524) example: expect speed: 0.000000 real_pulses:0 +I (74524) example: new speed:399.000000 +I (74534) example: expect speed: 0.000000 real_pulses:0 +I (74534) example: new speed:399.000000 +I (74544) example: expect speed: 0.000000 real_pulses:0 +I (74544) example: new speed:399.000000 +I (74554) example: expect speed: 0.000000 real_pulses:0 +I (74554) example: new speed:399.000000 +I (74564) example: expect speed: 0.000000 real_pulses:0 +I (74564) example: new speed:399.000000 +I (74574) example: expect speed: 0.000000 real_pulses:0 +I (74574) example: new speed:399.000000 +I (74584) example: expect speed: 0.000000 real_pulses:0 +I (74584) example: new speed:399.000000 +I (74594) example: expect speed: 0.000000 real_pulses:0 +I (74594) example: new speed:399.000000 +I (74604) example: expect speed: 0.000000 real_pulses:0 +I (74604) example: new speed:399.000000 +I (74614) example: expect speed: 0.000000 real_pulses:0 +I (74614) example: new speed:399.000000 +I (74624) example: expect speed: 0.000000 real_pulses:0 +I (74624) example: new speed:399.000000 +I (74634) example: expect speed: 0.000000 real_pulses:0 +I (74634) example: new speed:399.000000 +I (74644) example: expect speed: 0.000000 real_pulses:0 +I (74644) example: new speed:399.000000 +I (74654) example: expect speed: 0.000000 real_pulses:0 +I (74654) example: new speed:399.000000 +I (74664) example: expect speed: 0.000000 real_pulses:0 +I (74664) example: new speed:399.000000 +I (74674) example: expect speed: 0.000000 real_pulses:0 +I (74674) example: new speed:399.000000 +I (74684) example: expect speed: 0.000000 real_pulses:0 +I (74684) example: new speed:399.000000 +I (74694) example: expect speed: 0.000000 real_pulses:0 +I (74694) example: new speed:399.000000 +I (74704) example: expect speed: 0.000000 real_pulses:0 +I (74704) example: new speed:399.000000 +I (74714) example: expect speed: 0.000000 real_pulses:0 +I (74714) example: new speed:399.000000 +I (74724) example: expect speed: 0.000000 real_pulses:0 +I (74724) example: new speed:399.000000 +I (74734) example: expect speed: 0.000000 real_pulses:0 +I (74734) example: new speed:399.000000 +I (74744) example: expect speed: 0.000000 real_pulses:0 +I (74744) example: new speed:399.000000 +I (74754) example: expect speed: 0.000000 real_pulses:0 +I (74754) example: new speed:399.000000 +I (74764) example: expect speed: 0.000000 real_pulses:0 +I (74764) example: new speed:399.000000 +I (74774) example: expect speed: 0.000000 real_pulses:0 +I (74774) example: new speed:399.000000 +I (74784) example: expect speed: 0.000000 real_pulses:0 +I (74784) example: new speed:399.000000 +I (74794) example: expect speed: 0.000000 real_pulses:0 +I (74794) example: new speed:399.000000 +I (74804) example: expect speed: 0.000000 real_pulses:0 +I (74804) example: new speed:399.000000 +I (74814) example: expect speed: 0.000000 real_pulses:0 +I (74814) example: new speed:399.000000 +I (74824) example: expect speed: 0.000000 real_pulses:0 +I (74824) example: new speed:399.000000 +I (74834) example: expect speed: 0.000000 real_pulses:0 +I (74834) example: new speed:399.000000 +I (74844) example: expect speed: 0.000000 real_pulses:0 +I (74844) example: new speed:399.000000 +I (74854) example: expect speed: 0.000000 real_pulses:0 +I (74854) example: new speed:399.000000 +I (74864) example: expect speed: 0.000000 real_pulses:0 +I (74864) example: new speed:399.000000 +I (74874) example: expect speed: 0.000000 real_pulses:0 +I (74874) example: new speed:399.000000 +I (74884) example: expect speed: 0.000000 real_pulses:0 +I (74884) example: new speed:399.000000 +I (74894) example: expect speed: 0.000000 real_pulses:0 +I (74894) example: new speed:399.000000 +I (74904) example: expect speed: 0.000000 real_pulses:0 +I (74904) example: new speed:399.000000 +I (74914) example: expect speed: 0.000000 real_pulses:0 +I (74914) example: new speed:399.000000 +I (74924) example: expect speed: 0.000000 real_pulses:0 +I (74924) example: new speed:399.000000 +I (74934) example: expect speed: 0.000000 real_pulses:0 +I (74934) example: new speed:399.000000 +I (74944) example: expect speed: 0.000000 real_pulses:0 +I (74944) example: new speed:399.000000 +I (74954) example: expect speed: 0.000000 real_pulses:0 +I (74954) example: new speed:399.000000 +I (74964) example: expect speed: 0.000000 real_pulses:0 +I (74964) example: new speed:399.000000 +I (74974) example: expect speed: 0.000000 real_pulses:0 +I (74974) example: new speed:399.000000 +I (74984) example: expect speed: 0.000000 real_pulses:0 +I (74984) example: new speed:399.000000 +I (74994) example: expect speed: 0.000000 real_pulses:0 +I (74994) example: new speed:399.000000 +I (75004) example: expect speed: 0.000000 real_pulses:0 +I (75004) example: new speed:399.000000 +I (75014) example: expect speed: 0.000000 real_pulses:0 +I (75014) example: new speed:399.000000 +I (75024) example: expect speed: 0.000000 real_pulses:0 +I (75024) example: new speed:399.000000 +I (75034) example: expect speed: 0.000000 real_pulses:0 +I (75034) example: new speed:399.000000 +I (75044) example: expect speed: 0.000000 real_pulses:0 +I (75044) example: new speed:399.000000 +I (75054) example: expect speed: 0.000000 real_pulses:0 +I (75054) example: new speed:399.000000 +I (75064) example: expect speed: 0.000000 real_pulses:0 +I (75064) example: new speed:399.000000 +I (75074) example: expect speed: 0.000000 real_pulses:0 +I (75074) example: new speed:399.000000 +I (75084) example: expect speed: 0.000000 real_pulses:0 +I (75084) example: new speed:399.000000 +I (75094) example: expect speed: 0.000000 real_pulses:0 +I (75094) example: new speed:399.000000 +I (75104) example: expect speed: 0.000000 real_pulses:0 +I (75104) example: new speed:399.000000 +I (75114) example: expect speed: 0.000000 real_pulses:0 +I (75114) example: new speed:399.000000 +I (75124) example: expect speed: 0.000000 real_pulses:0 +I (75124) example: new speed:399.000000 +I (75134) example: expect speed: 0.000000 real_pulses:0 +I (75134) example: new speed:399.000000 +I (75144) example: expect speed: 0.000000 real_pulses:0 +I (75144) example: new speed:399.000000 +I (75154) example: expect speed: 0.000000 real_pulses:0 +I (75154) example: new speed:399.000000 +I (75164) example: expect speed: 0.000000 real_pulses:0 +I (75164) example: new speed:399.000000 +I (75174) example: expect speed: 0.000000 real_pulses:0 +I (75174) example: new speed:399.000000 +I (75184) example: expect speed: 0.000000 real_pulses:0 +I (75184) example: new speed:399.000000 +I (75194) example: expect speed: 0.000000 real_pulses:0 +I (75194) example: new speed:399.000000 +I (75204) example: expect speed: 0.000000 real_pulses:0 +I (75204) example: new speed:399.000000 +I (75214) example: expect speed: 0.000000 real_pulses:0 +I (75214) example: new speed:399.000000 +I (75224) example: expect speed: 0.000000 real_pulses:0 +I (75224) example: new speed:399.000000 +I (75234) example: expect speed: 0.000000 real_pulses:0 +I (75234) example: new speed:399.000000 +I (75244) example: expect speed: 0.000000 real_pulses:0 +I (75244) example: new speed:399.000000 +I (75254) example: expect speed: 0.000000 real_pulses:0 +I (75254) example: new speed:399.000000 +I (75264) example: expect speed: 0.000000 real_pulses:0 +I (75264) example: new speed:399.000000 +I (75274) example: expect speed: 0.000000 real_pulses:0 +I (75274) example: new speed:399.000000 +I (75284) example: expect speed: 0.000000 real_pulses:0 +I (75284) example: new speed:399.000000 +I (75294) example: expect speed: 0.000000 real_pulses:0 +I (75294) example: new speed:399.000000 +I (75304) example: expect speed: 0.000000 real_pulses:0 +I (75304) example: new speed:399.000000 +I (75314) example: expect speed: 0.000000 real_pulses:0 +I (75314) example: new speed:399.000000 +I (75324) example: expect speed: 0.000000 real_pulses:0 +I (75324) example: new speed:399.000000 +I (75334) example: expect speed: 0.000000 real_pulses:0 +I (75334) example: new speed:399.000000 +I (75344) example: expect speed: 0.000000 real_pulses:0 +I (75344) example: new speed:399.000000 +I (75354) example: expect speed: 0.000000 real_pulses:0 +I (75354) example: new speed:399.000000 +I (75364) example: expect speed: 0.000000 real_pulses:0 +I (75364) example: new speed:399.000000 +I (75374) example: expect speed: 0.000000 real_pulses:0 +I (75374) example: new speed:399.000000 +I (75384) example: expect speed: 0.000000 real_pulses:0 +I (75384) example: new speed:399.000000 +I (75394) example: expect speed: 0.000000 real_pulses:0 +I (75394) example: new speed:399.000000 +I (75404) example: expect speed: 0.000000 real_pulses:0 +I (75404) example: new speed:399.000000 +I (75414) example: expect speed: 0.000000 real_pulses:0 +I (75414) example: new speed:399.000000 +I (75424) example: expect speed: 0.000000 real_pulses:0 +I (75424) example: new speed:399.000000 +I (75434) example: expect speed: 0.000000 real_pulses:0 +I (75434) example: new speed:399.000000 +I (75444) example: expect speed: 0.000000 real_pulses:0 +I (75444) example: new speed:399.000000 +I (75454) example: expect speed: 0.000000 real_pulses:0 +I (75454) example: new speed:399.000000 +I (75464) example: expect speed: 0.000000 real_pulses:0 +I (75464) example: new speed:399.000000 +I (75474) example: expect speed: 0.000000 real_pulses:0 +I (75474) example: new speed:399.000000 +I (75484) example: expect speed: 0.000000 real_pulses:0 +I (75484) example: new speed:399.000000 +I (75494) example: expect speed: 0.000000 real_pulses:0 +I (75494) example: new speed:399.000000 +I (75504) example: expect speed: 0.000000 real_pulses:0 +I (75504) example: new speed:399.000000 +I (75514) example: expect speed: 0.000000 real_pulses:0 +I (75524) example: new speed:399.000000 +I (75524) example: expect speed: 0.000000 real_pulses:0 +I (75524) example: new speed:399.000000 +I (75534) example: expect speed: 0.000000 real_pulses:0 +I (75534) example: new speed:399.000000 +I (75544) example: expect speed: 0.000000 real_pulses:0 +I (75544) example: new speed:399.000000 +I (75554) example: expect speed: 0.000000 real_pulses:0 +I (75554) example: new speed:399.000000 +I (75564) example: expect speed: 0.000000 real_pulses:0 +I (75564) example: new speed:399.000000 +I (75574) example: expect speed: 0.000000 real_pulses:0 +I (75574) example: new speed:399.000000 +I (75584) example: expect speed: 0.000000 real_pulses:0 +I (75584) example: new speed:399.000000 +I (75594) example: expect speed: 0.000000 real_pulses:0 +I (75594) example: new speed:399.000000 +I (75604) example: expect speed: 0.000000 real_pulses:0 +I (75604) example: new speed:399.000000 +I (75614) example: expect speed: 0.000000 real_pulses:0 +I (75614) example: new speed:399.000000 +I (75624) example: expect speed: 0.000000 real_pulses:0 +I (75624) example: new speed:399.000000 +I (75634) example: expect speed: 0.000000 real_pulses:0 +I (75634) example: new speed:399.000000 +I (75644) example: expect speed: 0.000000 real_pulses:0 +I (75644) example: new speed:399.000000 +I (75654) example: expect speed: 0.000000 real_pulses:0 +I (75654) example: new speed:399.000000 +I (75664) example: expect speed: 0.000000 real_pulses:0 +I (75664) example: new speed:399.000000 +I (75674) example: expect speed: 0.000000 real_pulses:0 +I (75674) example: new speed:399.000000 +I (75684) example: expect speed: 0.000000 real_pulses:0 +I (75684) example: new speed:399.000000 +I (75694) example: expect speed: 0.000000 real_pulses:0 +I (75694) example: new speed:399.000000 +I (75704) example: expect speed: 0.000000 real_pulses:0 +I (75704) example: new speed:399.000000 +I (75714) example: expect speed: 0.000000 real_pulses:0 +I (75714) example: new speed:399.000000 +I (75724) example: expect speed: 0.000000 real_pulses:0 +I (75724) example: new speed:399.000000 +I (75734) example: expect speed: 0.000000 real_pulses:0 +I (75734) example: new speed:399.000000 +I (75744) example: expect speed: 0.000000 real_pulses:0 +I (75744) example: new speed:399.000000 +I (75754) example: expect speed: 0.000000 real_pulses:0 +I (75754) example: new speed:399.000000 +I (75764) example: expect speed: 0.000000 real_pulses:0 +I (75764) example: new speed:399.000000 +I (75774) example: expect speed: 0.000000 real_pulses:0 +I (75774) example: new speed:399.000000 +I (75784) example: expect speed: 0.000000 real_pulses:0 +I (75784) example: new speed:399.000000 +I (75794) example: expect speed: 0.000000 real_pulses:0 +I (75794) example: new speed:399.000000 +I (75804) example: expect speed: 0.000000 real_pulses:0 +I (75804) example: new speed:399.000000 +I (75814) example: expect speed: 0.000000 real_pulses:0 +I (75814) example: new speed:399.000000 +I (75824) example: expect speed: 0.000000 real_pulses:0 +I (75824) example: new speed:399.000000 +I (75834) example: expect speed: 0.000000 real_pulses:0 +I (75834) example: new speed:399.000000 +I (75844) example: expect speed: 0.000000 real_pulses:0 +I (75844) example: new speed:399.000000 +I (75854) example: expect speed: 0.000000 real_pulses:0 +I (75854) example: new speed:399.000000 +I (75864) example: expect speed: 0.000000 real_pulses:0 +I (75864) example: new speed:399.000000 +I (75874) example: expect speed: 0.000000 real_pulses:0 +I (75874) example: new speed:399.000000 +I (75884) example: expect speed: 0.000000 real_pulses:0 +I (75884) example: new speed:399.000000 +I (75894) example: expect speed: 0.000000 real_pulses:0 +I (75894) example: new speed:399.000000 +I (75904) example: expect speed: 0.000000 real_pulses:0 +I (75904) example: new speed:399.000000 +I (75914) example: expect speed: 0.000000 real_pulses:0 +I (75914) example: new speed:399.000000 +I (75924) example: expect speed: 0.000000 real_pulses:0 +I (75924) example: new speed:399.000000 +I (75934) example: expect speed: 0.000000 real_pulses:0 +I (75934) example: new speed:399.000000 +I (75944) example: expect speed: 0.000000 real_pulses:0 +I (75944) example: new speed:399.000000 +I (75954) example: expect speed: 0.000000 real_pulses:0 +I (75954) example: new speed:399.000000 +I (75964) example: expect speed: 0.000000 real_pulses:0 +I (75964) example: new speed:399.000000 +I (75974) example: expect speed: 0.000000 real_pulses:0 +I (75974) example: new speed:399.000000 +I (75984) example: expect speed: 0.000000 real_pulses:0 +I (75984) example: new speed:399.000000 +I (75994) example: expect speed: 0.000000 real_pulses:0 +I (75994) example: new speed:399.000000 +I (76004) example: expect speed: 0.000000 real_pulses:0 +I (76004) example: new speed:399.000000 +I (76014) example: expect speed: 0.000000 real_pulses:0 +I (76014) example: new speed:399.000000 +I (76024) example: expect speed: 0.000000 real_pulses:0 +I (76024) example: new speed:399.000000 +I (76034) example: expect speed: 0.000000 real_pulses:0 +I (76034) example: new speed:399.000000 +I (76044) example: expect speed: 0.000000 real_pulses:0 +I (76044) example: new speed:399.000000 +I (76054) example: expect speed: 0.000000 real_pulses:0 +I (76054) example: new speed:399.000000 +I (76064) example: expect speed: 0.000000 real_pulses:0 +I (76064) example: new speed:399.000000 +I (76074) example: expect speed: 0.000000 real_pulses:0 +I (76074) example: new speed:399.000000 +I (76084) example: expect speed: 0.000000 real_pulses:0 +I (76084) example: new speed:399.000000 +I (76094) example: expect speed: 0.000000 real_pulses:0 +I (76094) example: new speed:399.000000 +I (76104) example: expect speed: 0.000000 real_pulses:0 +I (76104) example: new speed:399.000000 +I (76114) example: expect speed: 0.000000 real_pulses:0 +I (76114) example: new speed:399.000000 +I (76124) example: expect speed: 0.000000 real_pulses:0 +I (76124) example: new speed:399.000000 +I (76134) example: expect speed: 0.000000 real_pulses:0 +I (76134) example: new speed:399.000000 +I (76144) example: expect speed: 0.000000 real_pulses:0 +I (76144) example: new speed:399.000000 +I (76154) example: expect speed: 0.000000 real_pulses:0 +I (76154) example: new speed:399.000000 +I (76164) example: expect speed: 0.000000 real_pulses:0 +I (76164) example: new speed:399.000000 +I (76174) example: expect speed: 0.000000 real_pulses:0 +I (76174) example: new speed:399.000000 +I (76184) example: expect speed: 0.000000 real_pulses:0 +I (76184) example: new speed:399.000000 +I (76194) example: expect speed: 0.000000 real_pulses:0 +I (76194) example: new speed:399.000000 +I (76204) example: expect speed: 0.000000 real_pulses:0 +I (76204) example: new speed:399.000000 +I (76214) example: expect speed: 0.000000 real_pulses:0 +I (76214) example: new speed:399.000000 +I (76224) example: expect speed: 0.000000 real_pulses:0 +I (76224) example: new speed:399.000000 +I (76234) example: expect speed: 0.000000 real_pulses:0 +I (76234) example: new speed:399.000000 +I (76244) example: expect speed: 0.000000 real_pulses:0 +I (76244) example: new speed:399.000000 +I (76254) example: expect speed: 0.000000 real_pulses:0 +I (76254) example: new speed:399.000000 +I (76264) example: expect speed: 0.000000 real_pulses:0 +I (76264) example: new speed:399.000000 +I (76274) example: expect speed: 0.000000 real_pulses:0 +I (76274) example: new speed:399.000000 +I (76284) example: expect speed: 0.000000 real_pulses:0 +I (76284) example: new speed:399.000000 +I (76294) example: expect speed: 0.000000 real_pulses:0 +I (76294) example: new speed:399.000000 +I (76304) example: expect speed: 0.000000 real_pulses:0 +I (76304) example: new speed:399.000000 +I (76314) example: expect speed: 0.000000 real_pulses:0 +I (76314) example: new speed:399.000000 +I (76324) example: expect speed: 0.000000 real_pulses:0 +I (76324) example: new speed:399.000000 +I (76334) example: expect speed: 0.000000 real_pulses:0 +I (76334) example: new speed:399.000000 +I (76344) example: expect speed: 0.000000 real_pulses:0 +I (76344) example: new speed:399.000000 +I (76354) example: expect speed: 0.000000 real_pulses:0 +I (76354) example: new speed:399.000000 +I (76364) example: expect speed: 0.000000 real_pulses:0 +I (76364) example: new speed:399.000000 +I (76374) example: expect speed: 0.000000 real_pulses:0 +I (76374) example: new speed:399.000000 +I (76384) example: expect speed: 0.000000 real_pulses:0 +I (76384) example: new speed:399.000000 +I (76394) example: expect speed: 0.000000 real_pulses:0 +I (76394) example: new speed:399.000000 +I (76404) example: expect speed: 0.000000 real_pulses:0 +I (76404) example: new speed:399.000000 +I (76414) example: expect speed: 0.000000 real_pulses:0 +I (76414) example: new speed:399.000000 +I (76424) example: expect speed: 0.000000 real_pulses:0 +I (76424) example: new speed:399.000000 +I (76434) example: expect speed: 0.000000 real_pulses:0 +I (76434) example: new speed:399.000000 +I (76444) example: expect speed: 0.000000 real_pulses:0 +I (76444) example: new speed:399.000000 +I (76454) example: expect speed: 0.000000 real_pulses:0 +I (76454) example: new speed:399.000000 +I (76464) example: expect speed: 0.000000 real_pulses:0 +I (76464) example: new speed:399.000000 +I (76474) example: expect speed: 0.000000 real_pulses:0 +I (76474) example: new speed:399.000000 +I (76484) example: expect speed: 0.000000 real_pulses:0 +I (76484) example: new speed:399.000000 +I (76494) example: expect speed: 0.000000 real_pulses:0 +I (76494) example: new speed:399.000000 +I (76504) example: expect speed: 0.000000 real_pulses:0 +I (76504) example: new speed:399.000000 +I (76514) example: expect speed: 0.000000 real_pulses:0 +I (76514) example: new speed:399.000000 +I (76524) example: expect speed: 0.000000 real_pulses:0 +I (76524) example: new speed:399.000000 +I (76534) example: expect speed: 0.000000 real_pulses:0 +I (76534) example: new speed:399.000000 +I (76544) example: expect speed: 0.000000 real_pulses:0 +I (76544) example: new speed:399.000000 +I (76554) example: expect speed: 0.000000 real_pulses:0 +I (76554) example: new speed:399.000000 +I (76564) example: expect speed: 0.000000 real_pulses:0 +I (76564) example: new speed:399.000000 +I (76574) example: expect speed: 0.000000 real_pulses:0 +I (76574) example: new speed:399.000000 +I (76584) example: expect speed: 0.000000 real_pulses:0 +I (76584) example: new speed:399.000000 +I (76594) example: expect speed: 0.000000 real_pulses:0 +I (76594) example: new speed:399.000000 +I (76604) example: expect speed: 0.000000 real_pulses:0 +I (76604) example: new speed:399.000000 +I (76614) example: expect speed: 0.000000 real_pulses:0 +I (76614) example: new speed:399.000000 +I (76624) example: expect speed: 0.000000 real_pulses:0 +I (76624) example: new speed:399.000000 +I (76634) example: expect speed: 0.000000 real_pulses:0 +I (76634) example: new speed:399.000000 +I (76644) example: expect speed: 0.000000 real_pulses:0 +I (76654) example: new speed:399.000000 +I (76654) example: expect speed: 0.000000 real_pulses:0 +I (76654) example: new speed:399.000000 +I (76664) example: expect speed: 0.000000 real_pulses:0 +I (76664) example: new speed:399.000000 +I (76674) example: expect speed: 0.000000 real_pulses:0 +I (76674) example: new speed:399.000000 +I (76684) example: expect speed: 0.000000 real_pulses:0 +I (76684) example: new speed:399.000000 +I (76694) example: expect speed: 0.000000 real_pulses:0 +I (76694) example: new speed:399.000000 +I (76704) example: expect speed: 0.000000 real_pulses:0 +I (76704) example: new speed:399.000000 +I (76714) example: expect speed: 0.000000 real_pulses:0 +I (76714) example: new speed:399.000000 +I (76724) example: expect speed: 0.000000 real_pulses:0 +I (76724) example: new speed:399.000000 +I (76734) example: expect speed: 0.000000 real_pulses:0 +I (76734) example: new speed:399.000000 +I (76744) example: expect speed: 0.000000 real_pulses:0 +I (76744) example: new speed:399.000000 +I (76754) example: expect speed: 0.000000 real_pulses:0 +I (76754) example: new speed:399.000000 +I (76764) example: expect speed: 0.000000 real_pulses:0 +I (76764) example: new speed:399.000000 +I (76774) example: expect speed: 0.000000 real_pulses:0 +I (76774) example: new speed:399.000000 +I (76784) example: expect speed: 0.000000 real_pulses:0 +I (76784) example: new speed:399.000000 +I (76794) example: expect speed: 0.000000 real_pulses:0 +I (76794) example: new speed:399.000000 +I (76804) example: expect speed: 0.000000 real_pulses:0 +I (76804) example: new speed:399.000000 +I (76814) example: expect speed: 0.000000 real_pulses:0 +I (76814) example: new speed:399.000000 +I (76824) example: expect speed: 0.000000 real_pulses:0 +I (76824) example: new speed:399.000000 +I (76834) example: expect speed: 0.000000 real_pulses:0 +I (76834) example: new speed:399.000000 +I (76844) example: expect speed: 0.000000 real_pulses:0 +I (76844) example: new speed:399.000000 +I (76854) example: expect speed: 0.000000 real_pulses:0 +I (76854) example: new speed:399.000000 +I (76864) example: expect speed: 0.000000 real_pulses:0 +I (76864) example: new speed:399.000000 +I (76874) example: expect speed: 0.000000 real_pulses:0 +I (76874) example: new speed:399.000000 +I (76884) example: expect speed: 0.000000 real_pulses:0 +I (76884) example: new speed:399.000000 +I (76894) example: expect speed: 0.000000 real_pulses:0 +I (76894) example: new speed:399.000000 +I (76904) example: expect speed: 0.000000 real_pulses:0 +I (76904) example: new speed:399.000000 +I (76914) example: expect speed: 0.000000 real_pulses:0 +I (76914) example: new speed:399.000000 +I (76924) example: expect speed: 0.000000 real_pulses:0 +I (76924) example: new speed:399.000000 +I (76934) example: expect speed: 0.000000 real_pulses:0 +I (76934) example: new speed:399.000000 +I (76944) example: expect speed: 0.000000 real_pulses:0 +I (76944) example: new speed:399.000000 +I (76954) example: expect speed: 0.000000 real_pulses:0 +I (76954) example: new speed:399.000000 +I (76964) example: expect speed: 0.000000 real_pulses:0 +I (76964) example: new speed:399.000000 +I (76974) example: expect speed: 0.000000 real_pulses:0 +I (76974) example: new speed:399.000000 +I (76984) example: expect speed: 0.000000 real_pulses:0 +I (76984) example: new speed:399.000000 +I (76994) example: expect speed: 0.000000 real_pulses:0 +I (76994) example: new speed:399.000000 +I (77004) example: expect speed: 0.000000 real_pulses:0 +I (77004) example: new speed:399.000000 +I (77014) example: expect speed: 0.000000 real_pulses:0 +I (77014) example: new speed:399.000000 +I (77024) example: expect speed: 0.000000 real_pulses:0 +I (77024) example: new speed:399.000000 +I (77034) example: expect speed: 0.000000 real_pulses:0 +I (77034) example: new speed:399.000000 +I (77044) example: expect speed: 0.000000 real_pulses:0 +I (77044) example: new speed:399.000000 +I (77054) example: expect speed: 0.000000 real_pulses:0 +I (77054) example: new speed:399.000000 +I (77064) example: expect speed: 0.000000 real_pulses:0 +I (77064) example: new speed:399.000000 +I (77074) example: expect speed: 0.000000 real_pulses:0 +I (77074) example: new speed:399.000000 +I (77084) example: expect speed: 0.000000 real_pulses:0 +I (77084) example: new speed:399.000000 +I (77094) example: expect speed: 0.000000 real_pulses:0 +I (77094) example: new speed:399.000000 +I (77104) example: expect speed: 0.000000 real_pulses:0 +I (77104) example: new speed:399.000000 +I (77114) example: expect speed: 0.000000 real_pulses:0 +I (77114) example: new speed:399.000000 +I (77124) example: expect speed: 0.000000 real_pulses:0 +I (77124) example: new speed:399.000000 +I (77134) example: expect speed: 0.000000 real_pulses:0 +I (77134) example: new speed:399.000000 +I (77144) example: expect speed: 0.000000 real_pulses:0 +I (77144) example: new speed:399.000000 +I (77154) example: expect speed: 0.000000 real_pulses:0 +I (77154) example: new speed:399.000000 +I (77164) example: expect speed: 0.000000 real_pulses:0 +I (77164) example: new speed:399.000000 +I (77174) example: expect speed: 0.000000 real_pulses:0 +I (77174) example: new speed:399.000000 +I (77184) example: expect speed: 0.000000 real_pulses:0 +I (77184) example: new speed:399.000000 +I (77194) example: expect speed: 0.000000 real_pulses:0 +I (77194) example: new speed:399.000000 +I (77204) example: expect speed: 0.000000 real_pulses:0 +I (77204) example: new speed:399.000000 +I (77214) example: expect speed: 0.000000 real_pulses:0 +I (77214) example: new speed:399.000000 +I (77224) example: expect speed: 0.000000 real_pulses:0 +I (77224) example: new speed:399.000000 +I (77234) example: expect speed: 0.000000 real_pulses:0 +I (77234) example: new speed:399.000000 +I (77244) example: expect speed: 0.000000 real_pulses:0 +I (77244) example: new speed:399.000000 +I (77254) example: expect speed: 0.000000 real_pulses:0 +I (77254) example: new speed:399.000000 +I (77264) example: expect speed: 0.000000 real_pulses:0 +I (77264) example: new speed:399.000000 +I (77274) example: expect speed: 0.000000 real_pulses:0 +I (77274) example: new speed:399.000000 +I (77284) example: expect speed: 0.000000 real_pulses:0 +I (77284) example: new speed:399.000000 +I (77294) example: expect speed: 0.000000 real_pulses:0 +I (77294) example: new speed:399.000000 +I (77304) example: expect speed: 0.000000 real_pulses:0 +I (77304) example: new speed:399.000000 +I (77314) example: expect speed: 0.000000 real_pulses:0 +I (77314) example: new speed:399.000000 +I (77324) example: expect speed: 0.000000 real_pulses:0 +I (77324) example: new speed:399.000000 +I (77334) example: expect speed: 0.000000 real_pulses:0 +I (77334) example: new speed:399.000000 +I (77344) example: expect speed: 0.000000 real_pulses:0 +I (77344) example: new speed:399.000000 +I (77354) example: expect speed: 0.000000 real_pulses:0 +I (77354) example: new speed:399.000000 +I (77364) example: expect speed: 0.000000 real_pulses:0 +I (77364) example: new speed:399.000000 +I (77374) example: expect speed: 0.000000 real_pulses:0 +I (77374) example: new speed:399.000000 +I (77384) example: expect speed: 0.000000 real_pulses:0 +I (77384) example: new speed:399.000000 +I (77394) example: expect speed: 0.000000 real_pulses:0 +I (77394) example: new speed:399.000000 +I (77404) example: expect speed: 0.000000 real_pulses:0 +I (77404) example: new speed:399.000000 +I (77414) example: expect speed: 0.000000 real_pulses:0 +I (77414) example: new speed:399.000000 +I (77424) example: expect speed: 0.000000 real_pulses:0 +I (77424) example: new speed:399.000000 +I (77434) example: expect speed: 0.000000 real_pulses:0 +I (77434) example: new speed:399.000000 +I (77444) example: expect speed: 0.000000 real_pulses:0 +I (77444) example: new speed:399.000000 +I (77454) example: expect speed: 0.000000 real_pulses:0 +I (77454) example: new speed:399.000000 +I (77464) example: expect speed: 0.000000 real_pulses:0 +I (77464) example: new speed:399.000000 +I (77474) example: expect speed: 0.000000 real_pulses:0 +I (77474) example: new speed:399.000000 +I (77484) example: expect speed: 0.000000 real_pulses:0 +I (77484) example: new speed:399.000000 +I (77494) example: expect speed: 0.000000 real_pulses:0 +I (77494) example: new speed:399.000000 +I (77504) example: expect speed: 0.000000 real_pulses:0 +I (77504) example: new speed:399.000000 +I (77514) example: expect speed: 0.000000 real_pulses:0 +I (77514) example: new speed:399.000000 +I (77524) example: expect speed: 0.000000 real_pulses:0 +I (77524) example: new speed:399.000000 +I (77534) example: expect speed: 0.000000 real_pulses:0 +I (77534) example: new speed:399.000000 +I (77544) example: expect speed: 0.000000 real_pulses:0 +I (77544) example: new speed:399.000000 +I (77554) example: expect speed: 0.000000 real_pulses:0 +I (77554) example: new speed:399.000000 +I (77564) example: expect speed: 0.000000 real_pulses:0 +I (77564) example: new speed:399.000000 +I (77574) example: expect speed: 0.000000 real_pulses:0 +I (77574) example: new speed:399.000000 +I (77584) example: expect speed: 0.000000 real_pulses:0 +I (77584) example: new speed:399.000000 +I (77594) example: expect speed: 0.000000 real_pulses:0 +I (77594) example: new speed:399.000000 +I (77604) example: expect speed: 0.000000 real_pulses:0 +I (77604) example: new speed:399.000000 +I (77614) example: expect speed: 0.000000 real_pulses:0 +I (77614) example: new speed:399.000000 +I (77624) example: expect speed: 0.000000 real_pulses:0 +I (77624) example: new speed:399.000000 +I (77634) example: expect speed: 0.000000 real_pulses:0 +I (77634) example: new speed:399.000000 +I (77644) example: expect speed: 0.000000 real_pulses:0 +I (77644) example: new speed:399.000000 +I (77654) example: expect speed: 0.000000 real_pulses:0 +I (77654) example: new speed:399.000000 +I (77664) example: expect speed: 0.000000 real_pulses:0 +I (77664) example: new speed:399.000000 +I (77674) example: expect speed: 0.000000 real_pulses:0 +I (77674) example: new speed:399.000000 +I (77684) example: expect speed: 0.000000 real_pulses:0 +I (77684) example: new speed:399.000000 +I (77694) example: expect speed: 0.000000 real_pulses:0 +I (77694) example: new speed:399.000000 +I (77704) example: expect speed: 0.000000 real_pulses:0 +I (77704) example: new speed:399.000000 +I (77714) example: expect speed: 0.000000 real_pulses:0 +I (77714) example: new speed:399.000000 +I (77724) example: expect speed: 0.000000 real_pulses:0 +I (77724) example: new speed:399.000000 +I (77734) example: expect speed: 0.000000 real_pulses:0 +I (77734) example: new speed:399.000000 +I (77744) example: expect speed: 0.000000 real_pulses:0 +I (77744) example: new speed:399.000000 +I (77754) example: expect speed: 0.000000 real_pulses:0 +I (77754) example: new speed:399.000000 +I (77774) example: expect speed: 0.000000 real_pulses:0 +I (77774) example: new speed:399.000000 +I (77774) example: expect speed: 0.000000 real_pulses:0 +I (77774) example: new speed:399.000000 +I (77784) example: expect speed: 0.000000 real_pulses:0 +I (77784) example: new speed:399.000000 +I (77794) example: expect speed: 0.000000 real_pulses:0 +I (77794) example: new speed:399.000000 +I (77804) example: expect speed: 0.000000 real_pulses:0 +I (77804) example: new speed:399.000000 +I (77814) example: expect speed: 0.000000 real_pulses:0 +I (77814) example: new speed:399.000000 +I (77824) example: expect speed: 0.000000 real_pulses:0 +I (77824) example: new speed:399.000000 +I (77834) example: expect speed: 0.000000 real_pulses:0 +I (77834) example: new speed:399.000000 +I (77844) example: expect speed: 0.000000 real_pulses:0 +I (77844) example: new speed:399.000000 +I (77854) example: expect speed: 0.000000 real_pulses:0 +I (77854) example: new speed:399.000000 +I (77864) example: expect speed: 0.000000 real_pulses:0 +I (77864) example: new speed:399.000000 +I (77874) example: expect speed: 0.000000 real_pulses:0 +I (77874) example: new speed:399.000000 +I (77884) example: expect speed: 0.000000 real_pulses:0 +I (77884) example: new speed:399.000000 +I (77894) example: expect speed: 0.000000 real_pulses:0 +I (77894) example: new speed:399.000000 +I (77904) example: expect speed: 0.000000 real_pulses:0 +I (77904) example: new speed:399.000000 +I (77914) example: expect speed: 0.000000 real_pulses:0 +I (77914) example: new speed:399.000000 +I (77924) example: expect speed: 0.000000 real_pulses:0 +I (77924) example: new speed:399.000000 +I (77934) example: expect speed: 0.000000 real_pulses:0 +I (77934) example: new speed:399.000000 +I (77944) example: expect speed: 0.000000 real_pulses:0 +I (77944) example: new speed:399.000000 +I (77954) example: expect speed: 0.000000 real_pulses:0 +I (77954) example: new speed:399.000000 +I (77964) example: expect speed: 0.000000 real_pulses:0 +I (77964) example: new speed:399.000000 +I (77974) example: expect speed: 0.000000 real_pulses:0 +I (77974) example: new speed:399.000000 +I (77984) example: expect speed: 0.000000 real_pulses:0 +I (77984) example: new speed:399.000000 +I (77994) example: expect speed: 0.000000 real_pulses:0 +I (77994) example: new speed:399.000000 +I (78004) example: expect speed: 0.000000 real_pulses:0 +I (78004) example: new speed:399.000000 +I (78014) example: expect speed: 0.000000 real_pulses:0 +I (78014) example: new speed:399.000000 +I (78024) example: expect speed: 0.000000 real_pulses:0 +I (78024) example: new speed:399.000000 +I (78034) example: expect speed: 0.000000 real_pulses:0 +I (78034) example: new speed:399.000000 +I (78044) example: expect speed: 0.000000 real_pulses:0 +I (78044) example: new speed:399.000000 +I (78054) example: expect speed: 0.000000 real_pulses:0 +I (78054) example: new speed:399.000000 +I (78064) example: expect speed: 0.000000 real_pulses:0 +I (78064) example: new speed:399.000000 +I (78074) example: expect speed: 0.000000 real_pulses:0 +I (78074) example: new speed:399.000000 +I (78084) example: expect speed: 0.000000 real_pulses:0 +I (78084) example: new speed:399.000000 +I (78094) example: expect speed: 0.000000 real_pulses:0 +I (78094) example: new speed:399.000000 +I (78104) example: expect speed: 0.000000 real_pulses:0 +I (78104) example: new speed:399.000000 +I (78114) example: expect speed: 0.000000 real_pulses:0 +I (78114) example: new speed:399.000000 +I (78124) example: expect speed: 0.000000 real_pulses:0 +I (78124) example: new speed:399.000000 +I (78134) example: expect speed: 0.000000 real_pulses:0 +I (78134) example: new speed:399.000000 +I (78144) example: expect speed: 0.000000 real_pulses:0 +I (78144) example: new speed:399.000000 +I (78154) example: expect speed: 0.000000 real_pulses:0 +I (78154) example: new speed:399.000000 +I (78164) example: expect speed: 0.000000 real_pulses:0 +I (78164) example: new speed:399.000000 +I (78174) example: expect speed: 0.000000 real_pulses:0 +I (78174) example: new speed:399.000000 +I (78184) example: expect speed: 0.000000 real_pulses:0 +I (78184) example: new speed:399.000000 +I (78194) example: expect speed: 0.000000 real_pulses:0 +I (78194) example: new speed:399.000000 +I (78204) example: expect speed: 0.000000 real_pulses:0 +I (78204) example: new speed:399.000000 +I (78214) example: expect speed: 0.000000 real_pulses:0 +I (78214) example: new speed:399.000000 +I (78224) example: expect speed: 0.000000 real_pulses:0 +I (78224) example: new speed:399.000000 +I (78234) example: expect speed: 0.000000 real_pulses:0 +I (78234) example: new speed:399.000000 +I (78244) example: expect speed: 0.000000 real_pulses:0 +I (78244) example: new speed:399.000000 +I (78254) example: expect speed: 0.000000 real_pulses:0 +I (78254) example: new speed:399.000000 +I (78264) example: expect speed: 0.000000 real_pulses:0 +I (78264) example: new speed:399.000000 +I (78274) example: expect speed: 0.000000 real_pulses:0 +I (78274) example: new speed:399.000000 +I (78284) example: expect speed: 0.000000 real_pulses:0 +I (78284) example: new speed:399.000000 +I (78294) example: expect speed: 0.000000 real_pulses:0 +I (78294) example: new speed:399.000000 +I (78304) example: expect speed: 0.000000 real_pulses:0 +I (78304) example: new speed:399.000000 +I (78314) example: expect speed: 0.000000 real_pulses:0 +I (78314) example: new speed:399.000000 +I (78324) example: expect speed: 0.000000 real_pulses:0 +I (78324) example: new speed:399.000000 +I (78334) example: expect speed: 0.000000 real_pulses:0 +I (78334) example: new speed:399.000000 +I (78344) example: expect speed: 0.000000 real_pulses:0 +I (78344) example: new speed:399.000000 +I (78354) example: expect speed: 0.000000 real_pulses:0 +I (78354) example: new speed:399.000000 +I (78364) example: expect speed: 0.000000 real_pulses:0 +I (78364) example: new speed:399.000000 +I (78374) example: expect speed: 0.000000 real_pulses:0 +I (78374) example: new speed:399.000000 +I (78384) example: expect speed: 0.000000 real_pulses:0 +I (78384) example: new speed:399.000000 +I (78394) example: expect speed: 0.000000 real_pulses:0 +I (78394) example: new speed:399.000000 +I (78404) example: expect speed: 0.000000 real_pulses:0 +I (78404) example: new speed:399.000000 +I (78414) example: expect speed: 0.000000 real_pulses:0 +I (78414) example: new speed:399.000000 +I (78424) example: expect speed: 0.000000 real_pulses:0 +I (78424) example: new speed:399.000000 +I (78434) example: expect speed: 0.000000 real_pulses:0 +I (78434) example: new speed:399.000000 +I (78444) example: expect speed: 0.000000 real_pulses:0 +I (78444) example: new speed:399.000000 +I (78454) example: expect speed: 0.000000 real_pulses:0 +I (78454) example: new speed:399.000000 +I (78464) example: expect speed: 0.000000 real_pulses:0 +I (78464) example: new speed:399.000000 +I (78474) example: expect speed: 0.000000 real_pulses:0 +I (78474) example: new speed:399.000000 +I (78484) example: expect speed: 0.000000 real_pulses:0 +I (78484) example: new speed:399.000000 +I (78494) example: expect speed: 0.000000 real_pulses:0 +I (78494) example: new speed:399.000000 +I (78504) example: expect speed: 0.000000 real_pulses:0 +I (78504) example: new speed:399.000000 +I (78514) example: expect speed: 0.000000 real_pulses:0 +I (78514) example: new speed:399.000000 +I (78524) example: expect speed: 0.000000 real_pulses:0 +I (78524) example: new speed:399.000000 +I (78534) example: expect speed: 0.000000 real_pulses:0 +I (78534) example: new speed:399.000000 +I (78544) example: expect speed: 0.000000 real_pulses:0 +I (78544) example: new speed:399.000000 +I (78554) example: expect speed: 0.000000 real_pulses:0 +I (78554) example: new speed:399.000000 +I (78564) example: expect speed: 0.000000 real_pulses:0 +I (78564) example: new speed:399.000000 +I (78574) example: expect speed: 0.000000 real_pulses:0 +I (78574) example: new speed:399.000000 +I (78584) example: expect speed: 0.000000 real_pulses:0 +I (78584) example: new speed:399.000000 +I (78594) example: expect speed: 0.000000 real_pulses:0 +I (78594) example: new speed:399.000000 +I (78604) example: expect speed: 0.000000 real_pulses:0 +I (78604) example: new speed:399.000000 +I (78614) example: expect speed: 0.000000 real_pulses:0 +I (78614) example: new speed:399.000000 +I (78624) example: expect speed: 0.000000 real_pulses:0 +I (78624) example: new speed:399.000000 +I (78634) example: expect speed: 0.000000 real_pulses:0 +I (78634) example: new speed:399.000000 +I (78644) example: expect speed: 0.000000 real_pulses:0 +I (78644) example: new speed:399.000000 +I (78654) example: expect speed: 0.000000 real_pulses:0 +I (78654) example: new speed:399.000000 +I (78664) example: expect speed: 0.000000 real_pulses:0 +I (78664) example: new speed:399.000000 +I (78674) example: expect speed: 0.000000 real_pulses:0 +I (78674) example: new speed:399.000000 +I (78684) example: expect speed: 0.000000 real_pulses:0 +I (78684) example: new speed:399.000000 +I (78694) example: expect speed: 0.000000 real_pulses:0 +I (78694) example: new speed:399.000000 +I (78704) example: expect speed: 0.000000 real_pulses:0 +I (78704) example: new speed:399.000000 +I (78714) example: expect speed: 0.000000 real_pulses:0 +I (78714) example: new speed:399.000000 +I (78724) example: expect speed: 0.000000 real_pulses:0 +I (78724) example: new speed:399.000000 +I (78734) example: expect speed: 0.000000 real_pulses:0 +I (78734) example: new speed:399.000000 +I (78744) example: expect speed: 0.000000 real_pulses:0 +I (78744) example: new speed:399.000000 +I (78754) example: expect speed: 0.000000 real_pulses:0 +I (78754) example: new speed:399.000000 +I (78764) example: expect speed: 0.000000 real_pulses:0 +I (78764) example: new speed:399.000000 +I (78774) example: expect speed: 0.000000 real_pulses:0 +I (78774) example: new speed:399.000000 +I (78784) example: expect speed: 0.000000 real_pulses:0 +I (78784) example: new speed:399.000000 +I (78794) example: expect speed: 0.000000 real_pulses:0 +I (78794) example: new speed:399.000000 +I (78804) example: expect speed: 0.000000 real_pulses:0 +I (78804) example: new speed:399.000000 +I (78814) example: expect speed: 0.000000 real_pulses:0 +I (78814) example: new speed:399.000000 +I (78824) example: expect speed: 0.000000 real_pulses:0 +I (78824) example: new speed:399.000000 +I (78834) example: expect speed: 0.000000 real_pulses:0 +I (78834) example: new speed:399.000000 +I (78844) example: expect speed: 0.000000 real_pulses:0 +I (78844) example: new speed:399.000000 +I (78854) example: expect speed: 0.000000 real_pulses:0 +I (78854) example: new speed:399.000000 +I (78864) example: expect speed: 0.000000 real_pulses:0 +I (78864) example: new speed:399.000000 +I (78874) example: expect speed: 0.000000 real_pulses:0 +I (78874) example: new speed:399.000000 +I (78884) example: expect speed: 0.000000 real_pulses:0 +I (78884) example: new speed:399.000000 +I (78894) example: expect speed: 0.000000 real_pulses:0 +I (78904) example: new speed:399.000000 +I (78904) example: expect speed: 0.000000 real_pulses:0 +I (78904) example: new speed:399.000000 +I (78914) example: expect speed: 0.000000 real_pulses:0 +I (78914) example: new speed:399.000000 +I (78924) example: expect speed: 0.000000 real_pulses:0 +I (78924) example: new speed:399.000000 +I (78934) example: expect speed: 0.000000 real_pulses:0 +I (78934) example: new speed:399.000000 +I (78944) example: expect speed: 0.000000 real_pulses:0 +I (78944) example: new speed:399.000000 +I (78954) example: expect speed: 0.000000 real_pulses:0 +I (78954) example: new speed:399.000000 +I (78964) example: expect speed: 0.000000 real_pulses:0 +I (78964) example: new speed:399.000000 +I (78974) example: expect speed: 0.000000 real_pulses:0 +I (78974) example: new speed:399.000000 +I (78984) example: expect speed: 0.000000 real_pulses:0 +I (78984) example: new speed:399.000000 +I (78994) example: expect speed: 0.000000 real_pulses:0 +I (78994) example: new speed:399.000000 +I (79004) example: expect speed: 0.000000 real_pulses:0 +I (79004) example: new speed:399.000000 +I (79014) example: expect speed: 0.000000 real_pulses:0 +I (79014) example: new speed:399.000000 +I (79024) example: expect speed: 0.000000 real_pulses:0 +I (79024) example: new speed:399.000000 +I (79034) example: expect speed: 0.000000 real_pulses:0 +I (79034) example: new speed:399.000000 +I (79044) example: expect speed: 0.000000 real_pulses:0 +I (79044) example: new speed:399.000000 +I (79054) example: expect speed: 0.000000 real_pulses:0 +I (79054) example: new speed:399.000000 +I (79064) example: expect speed: 0.000000 real_pulses:0 +I (79064) example: new speed:399.000000 +I (79074) example: expect speed: 0.000000 real_pulses:0 +I (79074) example: new speed:399.000000 +I (79084) example: expect speed: 0.000000 real_pulses:0 +I (79084) example: new speed:399.000000 +I (79094) example: expect speed: 0.000000 real_pulses:0 +I (79094) example: new speed:399.000000 +I (79104) example: expect speed: 0.000000 real_pulses:0 +I (79104) example: new speed:399.000000 +I (79114) example: expect speed: 0.000000 real_pulses:0 +I (79114) example: new speed:399.000000 +I (79124) example: expect speed: 0.000000 real_pulses:0 +I (79124) example: new speed:399.000000 +I (79134) example: expect speed: 0.000000 real_pulses:0 +I (79134) example: new speed:399.000000 +I (79144) example: expect speed: 0.000000 real_pulses:0 +I (79144) example: new speed:399.000000 +I (79154) example: expect speed: 0.000000 real_pulses:0 +I (79154) example: new speed:399.000000 +I (79164) example: expect speed: 0.000000 real_pulses:0 +I (79164) example: new speed:399.000000 +I (79174) example: expect speed: 0.000000 real_pulses:0 +I (79174) example: new speed:399.000000 +I (79184) example: expect speed: 0.000000 real_pulses:0 +I (79184) example: new speed:399.000000 +I (79194) example: expect speed: 0.000000 real_pulses:0 +I (79194) example: new speed:399.000000 +I (79204) example: expect speed: 0.000000 real_pulses:0 +I (79204) example: new speed:399.000000 +I (79214) example: expect speed: 0.000000 real_pulses:0 +I (79214) example: new speed:399.000000 +I (79224) example: expect speed: 0.000000 real_pulses:0 +I (79224) example: new speed:399.000000 +I (79234) example: expect speed: 0.000000 real_pulses:0 +I (79234) example: new speed:399.000000 +I (79244) example: expect speed: 0.000000 real_pulses:0 +I (79244) example: new speed:399.000000 +I (79254) example: expect speed: 0.000000 real_pulses:0 +I (79254) example: new speed:399.000000 +I (79264) example: expect speed: 0.000000 real_pulses:0 +I (79264) example: new speed:399.000000 +I (79274) example: expect speed: 0.000000 real_pulses:0 +I (79274) example: new speed:399.000000 +I (79284) example: expect speed: 0.000000 real_pulses:0 +I (79284) example: new speed:399.000000 +I (79294) example: expect speed: 0.000000 real_pulses:0 +I (79294) example: new speed:399.000000 +I (79304) example: expect speed: 0.000000 real_pulses:0 +I (79304) example: new speed:399.000000 +I (79314) example: expect speed: 0.000000 real_pulses:0 +I (79314) example: new speed:399.000000 +I (79324) example: expect speed: 0.000000 real_pulses:0 +I (79324) example: new speed:399.000000 +I (79334) example: expect speed: 0.000000 real_pulses:0 +I (79334) example: new speed:399.000000 +I (79344) example: expect speed: 0.000000 real_pulses:0 +I (79344) example: new speed:399.000000 +I (79354) example: expect speed: 0.000000 real_pulses:0 +I (79354) example: new speed:399.000000 +I (79364) example: expect speed: 0.000000 real_pulses:0 +I (79364) example: new speed:399.000000 +I (79374) example: expect speed: 0.000000 real_pulses:0 +I (79374) example: new speed:399.000000 +I (79384) example: expect speed: 0.000000 real_pulses:0 +I (79384) example: new speed:399.000000 +I (79394) example: expect speed: 0.000000 real_pulses:0 +I (79394) example: new speed:399.000000 +I (79404) example: expect speed: 0.000000 real_pulses:0 +I (79404) example: new speed:399.000000 +I (79414) example: expect speed: 0.000000 real_pulses:0 +I (79414) example: new speed:399.000000 +I (79424) example: expect speed: 0.000000 real_pulses:0 +I (79424) example: new speed:399.000000 +I (79434) example: expect speed: 0.000000 real_pulses:0 +I (79434) example: new speed:399.000000 +I (79444) example: expect speed: 0.000000 real_pulses:0 +I (79444) example: new speed:399.000000 +I (79454) example: expect speed: 0.000000 real_pulses:0 +I (79454) example: new speed:399.000000 +I (79464) example: expect speed: 0.000000 real_pulses:0 +I (79464) example: new speed:399.000000 +I (79474) example: expect speed: 0.000000 real_pulses:0 +I (79474) example: new speed:399.000000 +I (79484) example: expect speed: 0.000000 real_pulses:0 +I (79484) example: new speed:399.000000 +I (79494) example: expect speed: 0.000000 real_pulses:0 +I (79494) example: new speed:399.000000 +I (79504) example: expect speed: 0.000000 real_pulses:0 +I (79504) example: new speed:399.000000 +I (79514) example: expect speed: 0.000000 real_pulses:0 +I (79514) example: new speed:399.000000 +I (79524) example: expect speed: 0.000000 real_pulses:0 +I (79524) example: new speed:399.000000 +I (79534) example: expect speed: 0.000000 real_pulses:0 +I (79534) example: new speed:399.000000 +I (79544) example: expect speed: 0.000000 real_pulses:0 +I (79544) example: new speed:399.000000 +I (79554) example: expect speed: 0.000000 real_pulses:0 +I (79554) example: new speed:399.000000 +I (79564) example: expect speed: 0.000000 real_pulses:0 +I (79564) example: new speed:399.000000 +I (79574) example: expect speed: 0.000000 real_pulses:0 +I (79574) example: new speed:399.000000 +I (79584) example: expect speed: 0.000000 real_pulses:0 +I (79584) example: new speed:399.000000 +I (79594) example: expect speed: 0.000000 real_pulses:0 +I (79594) example: new speed:399.000000 +I (79604) example: expect speed: 0.000000 real_pulses:0 +I (79604) example: new speed:399.000000 +I (79614) example: expect speed: 0.000000 real_pulses:0 +I (79614) example: new speed:399.000000 +I (79624) example: expect speed: 0.000000 real_pulses:0 +I (79624) example: new speed:399.000000 +I (79634) example: expect speed: 0.000000 real_pulses:0 +I (79634) example: new speed:399.000000 +I (79644) example: expect speed: 0.000000 real_pulses:0 +I (79644) example: new speed:399.000000 +I (79654) example: expect speed: 0.000000 real_pulses:0 +I (79654) example: new speed:399.000000 +I (79664) example: expect speed: 0.000000 real_pulses:0 +I (79664) example: new speed:399.000000 +I (79674) example: expect speed: 0.000000 real_pulses:0 +I (79674) example: new speed:399.000000 +I (79684) example: expect speed: 0.000000 real_pulses:0 +I (79684) example: new speed:399.000000 +I (79694) example: expect speed: 0.000000 real_pulses:0 +I (79694) example: new speed:399.000000 +I (79704) example: expect speed: 0.000000 real_pulses:0 +I (79704) example: new speed:399.000000 +I (79714) example: expect speed: 0.000000 real_pulses:0 +I (79714) example: new speed:399.000000 +I (79724) example: expect speed: 0.000000 real_pulses:0 +I (79724) example: new speed:399.000000 +I (79734) example: expect speed: 0.000000 real_pulses:0 +I (79734) example: new speed:399.000000 +I (79744) example: expect speed: 0.000000 real_pulses:0 +I (79744) example: new speed:399.000000 +I (79754) example: expect speed: 0.000000 real_pulses:0 +I (79754) example: new speed:399.000000 +I (79764) example: expect speed: 0.000000 real_pulses:0 +I (79764) example: new speed:399.000000 +I (79774) example: expect speed: 0.000000 real_pulses:0 +I (79774) example: new speed:399.000000 +I (79784) example: expect speed: 0.000000 real_pulses:0 +I (79784) example: new speed:399.000000 +I (79794) example: expect speed: 0.000000 real_pulses:0 +I (79794) example: new speed:399.000000 +I (79804) example: expect speed: 0.000000 real_pulses:0 +I (79804) example: new speed:399.000000 +I (79814) example: expect speed: 0.000000 real_pulses:0 +I (79814) example: new speed:399.000000 +I (79824) example: expect speed: 0.000000 real_pulses:0 +I (79824) example: new speed:399.000000 +I (79834) example: expect speed: 0.000000 real_pulses:0 +I (79834) example: new speed:399.000000 +I (79844) example: expect speed: 0.000000 real_pulses:0 +I (79844) example: new speed:399.000000 +I (79854) example: expect speed: 0.000000 real_pulses:0 +I (79854) example: new speed:399.000000 +I (79864) example: expect speed: 0.000000 real_pulses:0 +I (79864) example: new speed:399.000000 +I (79874) example: expect speed: 0.000000 real_pulses:0 +I (79874) example: new speed:399.000000 +I (79884) example: expect speed: 0.000000 real_pulses:0 +I (79884) example: new speed:399.000000 +I (79894) example: expect speed: 0.000000 real_pulses:0 +I (79894) example: new speed:399.000000 +I (79904) example: expect speed: 0.000000 real_pulses:0 +I (79904) example: new speed:399.000000 +I (79914) example: expect speed: 0.000000 real_pulses:0 +I (79914) example: new speed:399.000000 +I (79924) example: expect speed: 0.000000 real_pulses:0 +I (79924) example: new speed:399.000000 +I (79934) example: expect speed: 0.000000 real_pulses:0 +I (79934) example: new speed:399.000000 +I (79944) example: expect speed: 0.000000 real_pulses:0 +I (79944) example: new speed:399.000000 +I (79954) example: expect speed: 0.000000 real_pulses:0 +I (79954) example: new speed:399.000000 +I (79964) example: expect speed: 0.000000 real_pulses:0 +I (79964) example: new speed:399.000000 +I (79974) example: expect speed: 0.000000 real_pulses:0 +I (79974) example: new speed:399.000000 +I (79984) example: expect speed: 0.000000 real_pulses:0 +I (79984) example: new speed:399.000000 +I (79994) example: expect speed: 0.000000 real_pulses:0 +I (79994) example: new speed:399.000000 +I (80004) example: expect speed: 0.000000 real_pulses:0 +I (80004) example: new speed:399.000000 +I (80014) example: expect speed: 0.000000 real_pulses:0 +I (80014) example: new speed:399.000000 +I (80024) example: expect speed: 0.000000 real_pulses:0 +I (80034) example: new speed:399.000000 +I (80034) example: expect speed: 0.000000 real_pulses:0 +I (80034) example: new speed:399.000000 +I (80044) example: expect speed: 0.000000 real_pulses:0 +I (80044) example: new speed:399.000000 +I (80054) example: expect speed: 0.000000 real_pulses:0 +I (80054) example: new speed:399.000000 +I (80064) example: expect speed: 0.000000 real_pulses:0 +I (80064) example: new speed:399.000000 +I (80074) example: expect speed: 0.000000 real_pulses:0 +I (80074) example: new speed:399.000000 +I (80084) example: expect speed: 0.000000 real_pulses:0 +I (80084) example: new speed:399.000000 +I (80094) example: expect speed: 0.000000 real_pulses:0 +I (80094) example: new speed:399.000000 +I (80104) example: expect speed: 0.000000 real_pulses:0 +I (80104) example: new speed:399.000000 +I (80114) example: expect speed: 0.000000 real_pulses:0 +I (80114) example: new speed:399.000000 +I (80124) example: expect speed: 0.000000 real_pulses:0 +I (80124) example: new speed:399.000000 +I (80134) example: expect speed: 0.000000 real_pulses:0 +I (80134) example: new speed:399.000000 +I (80144) example: expect speed: 0.000000 real_pulses:0 +I (80144) example: new speed:399.000000 +I (80154) example: expect speed: 0.000000 real_pulses:0 +I (80154) example: new speed:399.000000 +I (80164) example: expect speed: 0.000000 real_pulses:0 +I (80164) example: new speed:399.000000 +I (80174) example: expect speed: 0.000000 real_pulses:0 +I (80174) example: new speed:399.000000 +I (80184) example: expect speed: 0.000000 real_pulses:0 +I (80184) example: new speed:399.000000 +I (80194) example: expect speed: 0.000000 real_pulses:0 +I (80194) example: new speed:399.000000 +I (80204) example: expect speed: 0.000000 real_pulses:0 +I (80204) example: new speed:399.000000 +I (80214) example: expect speed: 0.000000 real_pulses:0 +I (80214) example: new speed:399.000000 +I (80224) example: expect speed: 0.000000 real_pulses:0 +I (80224) example: new speed:399.000000 +I (80234) example: expect speed: 0.000000 real_pulses:0 +I (80234) example: new speed:399.000000 +I (80244) example: expect speed: 0.000000 real_pulses:0 +I (80244) example: new speed:399.000000 +I (80254) example: expect speed: 0.000000 real_pulses:0 +I (80254) example: new speed:399.000000 +I (80264) example: expect speed: 0.000000 real_pulses:0 +I (80264) example: new speed:399.000000 +I (80274) example: expect speed: 0.000000 real_pulses:0 +I (80274) example: new speed:399.000000 +I (80284) example: expect speed: 0.000000 real_pulses:0 +I (80284) example: new speed:399.000000 +I (80294) example: expect speed: 0.000000 real_pulses:0 +I (80294) example: new speed:399.000000 +I (80304) example: expect speed: 0.000000 real_pulses:0 +I (80304) example: new speed:399.000000 +I (80314) example: expect speed: 0.000000 real_pulses:0 +I (80314) example: new speed:399.000000 +I (80324) example: expect speed: 0.000000 real_pulses:0 +I (80324) example: new speed:399.000000 +I (80334) example: expect speed: 0.000000 real_pulses:0 +I (80334) example: new speed:399.000000 +I (80344) example: expect speed: 0.000000 real_pulses:0 +I (80344) example: new speed:399.000000 +I (80354) example: expect speed: 0.000000 real_pulses:0 +I (80354) example: new speed:399.000000 +I (80364) example: expect speed: 0.000000 real_pulses:0 +I (80364) example: new speed:399.000000 +I (80374) example: expect speed: 0.000000 real_pulses:0 +I (80374) example: new speed:399.000000 +I (80384) example: expect speed: 0.000000 real_pulses:0 +I (80384) example: new speed:399.000000 +I (80394) example: expect speed: 0.000000 real_pulses:0 +I (80394) example: new speed:399.000000 +I (80404) example: expect speed: 0.000000 real_pulses:0 +I (80404) example: new speed:399.000000 +I (80414) example: expect speed: 0.000000 real_pulses:0 +I (80414) example: new speed:399.000000 +I (80424) example: expect speed: 0.000000 real_pulses:0 +I (80424) example: new speed:399.000000 +I (80434) example: expect speed: 0.000000 real_pulses:0 +I (80434) example: new speed:399.000000 +I (80444) example: expect speed: 0.000000 real_pulses:0 +I (80444) example: new speed:399.000000 +I (80454) example: expect speed: 0.000000 real_pulses:0 +I (80454) example: new speed:399.000000 +I (80464) example: expect speed: 0.000000 real_pulses:0 +I (80464) example: new speed:399.000000 +I (80474) example: expect speed: 0.000000 real_pulses:0 +I (80474) example: new speed:399.000000 +I (80484) example: expect speed: 0.000000 real_pulses:0 +I (80484) example: new speed:399.000000 +I (80494) example: expect speed: 0.000000 real_pulses:0 +I (80494) example: new speed:399.000000 +I (80504) example: expect speed: 0.000000 real_pulses:0 +I (80504) example: new speed:399.000000 +I (80514) example: expect speed: 0.000000 real_pulses:0 +I (80514) example: new speed:399.000000 +I (80524) example: expect speed: 0.000000 real_pulses:0 +I (80524) example: new speed:399.000000 +I (80534) example: expect speed: 0.000000 real_pulses:0 +I (80534) example: new speed:399.000000 +I (80544) example: expect speed: 0.000000 real_pulses:0 +I (80544) example: new speed:399.000000 +I (80554) example: expect speed: 0.000000 real_pulses:0 +I (80554) example: new speed:399.000000 +I (80564) example: expect speed: 0.000000 real_pulses:0 +I (80564) example: new speed:399.000000 +I (80574) example: expect speed: 0.000000 real_pulses:0 +I (80574) example: new speed:399.000000 +I (80584) example: expect speed: 0.000000 real_pulses:0 +I (80584) example: new speed:399.000000 +I (80594) example: expect speed: 0.000000 real_pulses:0 +I (80594) example: new speed:399.000000 +I (80604) example: expect speed: 0.000000 real_pulses:0 +I (80604) example: new speed:399.000000 +I (80614) example: expect speed: 0.000000 real_pulses:0 +I (80614) example: new speed:399.000000 +I (80624) example: expect speed: 0.000000 real_pulses:0 +I (80624) example: new speed:399.000000 +I (80634) example: expect speed: 0.000000 real_pulses:0 +I (80634) example: new speed:399.000000 +I (80644) example: expect speed: 0.000000 real_pulses:0 +I (80644) example: new speed:399.000000 +I (80654) example: expect speed: 0.000000 real_pulses:0 +I (80654) example: new speed:399.000000 +I (80664) example: expect speed: 0.000000 real_pulses:0 +I (80664) example: new speed:399.000000 +I (80674) example: expect speed: 0.000000 real_pulses:0 +I (80674) example: new speed:399.000000 +I (80684) example: expect speed: 0.000000 real_pulses:0 +I (80684) example: new speed:399.000000 +I (80694) example: expect speed: 0.000000 real_pulses:0 +I (80694) example: new speed:399.000000 +I (80704) example: expect speed: 0.000000 real_pulses:0 +I (80704) example: new speed:399.000000 +I (80714) example: expect speed: 0.000000 real_pulses:0 +I (80714) example: new speed:399.000000 +I (80724) example: expect speed: 0.000000 real_pulses:0 +I (80724) example: new speed:399.000000 +I (80734) example: expect speed: 0.000000 real_pulses:0 +I (80734) example: new speed:399.000000 +I (80744) example: expect speed: 0.000000 real_pulses:0 +I (80744) example: new speed:399.000000 +I (80754) example: expect speed: 0.000000 real_pulses:0 +I (80754) example: new speed:399.000000 +I (80764) example: expect speed: 0.000000 real_pulses:0 +I (80764) example: new speed:399.000000 +I (80774) example: expect speed: 0.000000 real_pulses:0 +I (80774) example: new speed:399.000000 +I (80784) example: expect speed: 0.000000 real_pulses:0 +I (80784) example: new speed:399.000000 +I (80794) example: expect speed: 0.000000 real_pulses:0 +I (80794) example: new speed:399.000000 +I (80804) example: expect speed: 0.000000 real_pulses:0 +I (80804) example: new speed:399.000000 +I (80814) example: expect speed: 0.000000 real_pulses:0 +I (80814) example: new speed:399.000000 +I (80824) example: expect speed: 0.000000 real_pulses:0 +I (80824) example: new speed:399.000000 +I (80834) example: expect speed: 0.000000 real_pulses:0 +I (80834) example: new speed:399.000000 +I (80844) example: expect speed: 0.000000 real_pulses:0 +I (80844) example: new speed:399.000000 +I (80854) example: expect speed: 0.000000 real_pulses:0 +I (80854) example: new speed:399.000000 +I (80864) example: expect speed: 0.000000 real_pulses:0 +I (80864) example: new speed:399.000000 +I (80874) example: expect speed: 0.000000 real_pulses:0 +I (80874) example: new speed:399.000000 +I (80884) example: expect speed: 0.000000 real_pulses:0 +I (80884) example: new speed:399.000000 +I (80894) example: expect speed: 0.000000 real_pulses:0 +I (80894) example: new speed:399.000000 +I (80904) example: expect speed: 0.000000 real_pulses:0 +I (80904) example: new speed:399.000000 +I (80914) example: expect speed: 0.000000 real_pulses:0 +I (80914) example: new speed:399.000000 +I (80924) example: expect speed: 0.000000 real_pulses:0 +I (80924) example: new speed:399.000000 +I (80934) example: expect speed: 0.000000 real_pulses:0 +I (80934) example: new speed:399.000000 +I (80944) example: expect speed: 0.000000 real_pulses:0 +I (80944) example: new speed:399.000000 +I (80954) example: expect speed: 0.000000 real_pulses:0 +I (80954) example: new speed:399.000000 +I (80964) example: expect speed: 0.000000 real_pulses:0 +I (80964) example: new speed:399.000000 +I (80974) example: expect speed: 0.000000 real_pulses:0 +I (80974) example: new speed:399.000000 +I (80984) example: expect speed: 0.000000 real_pulses:0 +I (80984) example: new speed:399.000000 +I (80994) example: expect speed: 0.000000 real_pulses:0 +I (80994) example: new speed:399.000000 +I (81004) example: expect speed: 0.000000 real_pulses:0 +I (81004) example: new speed:399.000000 +I (81014) example: expect speed: 0.000000 real_pulses:0 +I (81014) example: new speed:399.000000 +I (81024) example: expect speed: 0.000000 real_pulses:0 +I (81024) example: new speed:399.000000 +I (81034) example: expect speed: 0.000000 real_pulses:0 +I (81034) example: new speed:399.000000 +I (81044) example: expect speed: 0.000000 real_pulses:0 +I (81054) example: new speed:399.000000 +I (81054) example: expect speed: 0.000000 real_pulses:0 +I (81054) example: new speed:399.000000 +I (81064) example: expect speed: 0.000000 real_pulses:0 +I (81064) example: new speed:399.000000 +I (81074) example: expect speed: 0.000000 real_pulses:0 +I (81074) example: new speed:399.000000 +I (81084) example: expect speed: 0.000000 real_pulses:0 +I (81084) example: new speed:399.000000 +I (81094) example: expect speed: 0.000000 real_pulses:0 +I (81094) example: new speed:399.000000 +I (81104) example: expect speed: 0.000000 real_pulses:0 +I (81104) example: new speed:399.000000 +I (81114) example: expect speed: 0.000000 real_pulses:0 +I (81114) example: new speed:399.000000 +I (81124) example: expect speed: 0.000000 real_pulses:0 +I (81124) example: new speed:399.000000 +I (81134) example: expect speed: 0.000000 real_pulses:0 +I (81134) example: new speed:399.000000 +I (81144) example: expect speed: 0.000000 real_pulses:0 +I (81154) example: new speed:399.000000 +I (81154) example: expect speed: 0.000000 real_pulses:0 +I (81154) example: new speed:399.000000 +I (81164) example: expect speed: 0.000000 real_pulses:0 +I (81164) example: new speed:399.000000 +I (81174) example: expect speed: 0.000000 real_pulses:0 +I (81174) example: new speed:399.000000 +I (81184) example: expect speed: 0.000000 real_pulses:0 +I (81184) example: new speed:399.000000 +I (81194) example: expect speed: 0.000000 real_pulses:0 +I (81194) example: new speed:399.000000 +I (81204) example: expect speed: 0.000000 real_pulses:0 +I (81204) example: new speed:399.000000 +I (81214) example: expect speed: 0.000000 real_pulses:0 +I (81214) example: new speed:399.000000 +I (81224) example: expect speed: 0.000000 real_pulses:0 +I (81224) example: new speed:399.000000 +I (81234) example: expect speed: 0.000000 real_pulses:0 +I (81234) example: new speed:399.000000 +I (81244) example: expect speed: 0.000000 real_pulses:0 +I (81244) example: new speed:399.000000 +I (81254) example: expect speed: 0.000000 real_pulses:0 +I (81254) example: new speed:399.000000 +I (81264) example: expect speed: 0.000000 real_pulses:0 +I (81264) example: new speed:399.000000 +I (81274) example: expect speed: 0.000000 real_pulses:0 +I (81274) example: new speed:399.000000 +I (81284) example: expect speed: 0.000000 real_pulses:0 +I (81284) example: new speed:399.000000 +I (81294) example: expect speed: 0.000000 real_pulses:0 +I (81294) example: new speed:399.000000 +I (81304) example: expect speed: 0.000000 real_pulses:0 +I (81304) example: new speed:399.000000 +I (81314) example: expect speed: 0.000000 real_pulses:0 +I (81314) example: new speed:399.000000 +I (81324) example: expect speed: 0.000000 real_pulses:0 +I (81324) example: new speed:399.000000 +I (81334) example: expect speed: 0.000000 real_pulses:0 +I (81334) example: new speed:399.000000 +I (81344) example: expect speed: 0.000000 real_pulses:0 +I (81344) example: new speed:399.000000 +I (81354) example: expect speed: 0.000000 real_pulses:0 +I (81354) example: new speed:399.000000 +I (81364) example: expect speed: 0.000000 real_pulses:0 +I (81364) example: new speed:399.000000 +I (81374) example: expect speed: 0.000000 real_pulses:0 +I (81374) example: new speed:399.000000 +I (81384) example: expect speed: 0.000000 real_pulses:0 +I (81384) example: new speed:399.000000 +I (81394) example: expect speed: 0.000000 real_pulses:0 +I (81394) example: new speed:399.000000 +I (81404) example: expect speed: 0.000000 real_pulses:0 +I (81404) example: new speed:399.000000 +I (81414) example: expect speed: 0.000000 real_pulses:0 +I (81414) example: new speed:399.000000 +I (81424) example: expect speed: 0.000000 real_pulses:0 +I (81424) example: new speed:399.000000 +I (81434) example: expect speed: 0.000000 real_pulses:0 +I (81434) example: new speed:399.000000 +I (81444) example: expect speed: 0.000000 real_pulses:0 +I (81444) example: new speed:399.000000 +I (81454) example: expect speed: 0.000000 real_pulses:0 +I (81454) example: new speed:399.000000 +I (81464) example: expect speed: 0.000000 real_pulses:0 +I (81464) example: new speed:399.000000 +I (81474) example: expect speed: 0.000000 real_pulses:0 +I (81474) example: new speed:399.000000 +I (81484) example: expect speed: 0.000000 real_pulses:0 +I (81484) example: new speed:399.000000 +I (81494) example: expect speed: 0.000000 real_pulses:0 +I (81494) example: new speed:399.000000 +I (81504) example: expect speed: 0.000000 real_pulses:0 +I (81504) example: new speed:399.000000 +I (81514) example: expect speed: 0.000000 real_pulses:0 +I (81514) example: new speed:399.000000 +I (81524) example: expect speed: 0.000000 real_pulses:0 +I (81524) example: new speed:399.000000 +I (81534) example: expect speed: 0.000000 real_pulses:0 +I (81534) example: new speed:399.000000 +I (81544) example: expect speed: 0.000000 real_pulses:0 +I (81544) example: new speed:399.000000 +I (81554) example: expect speed: 0.000000 real_pulses:0 +I (81554) example: new speed:399.000000 +I (81564) example: expect speed: 0.000000 real_pulses:0 +I (81564) example: new speed:399.000000 +I (81574) example: expect speed: 0.000000 real_pulses:0 +I (81574) example: new speed:399.000000 +I (81584) example: expect speed: 0.000000 real_pulses:0 +I (81584) example: new speed:399.000000 +I (81594) example: expect speed: 0.000000 real_pulses:0 +I (81594) example: new speed:399.000000 +I (81604) example: expect speed: 0.000000 real_pulses:0 +I (81604) example: new speed:399.000000 +I (81614) example: expect speed: 0.000000 real_pulses:0 +I (81614) example: new speed:399.000000 +I (81624) example: expect speed: 0.000000 real_pulses:0 +I (81624) example: new speed:399.000000 +I (81634) example: expect speed: 0.000000 real_pulses:0 +I (81634) example: new speed:399.000000 +I (81644) example: expect speed: 0.000000 real_pulses:0 +I (81644) example: new speed:399.000000 +I (81654) example: expect speed: 0.000000 real_pulses:0 +I (81654) example: new speed:399.000000 +I (81664) example: expect speed: 0.000000 real_pulses:0 +I (81664) example: new speed:399.000000 +I (81674) example: expect speed: 0.000000 real_pulses:0 +I (81674) example: new speed:399.000000 +I (81684) example: expect speed: 0.000000 real_pulses:0 +I (81684) example: new speed:399.000000 +I (81694) example: expect speed: 0.000000 real_pulses:0 +I (81694) example: new speed:399.000000 +I (81704) example: expect speed: 0.000000 real_pulses:0 +I (81704) example: new speed:399.000000 +I (81714) example: expect speed: 0.000000 real_pulses:0 +I (81714) example: new speed:399.000000 +I (81724) example: expect speed: 0.000000 real_pulses:0 +I (81724) example: new speed:399.000000 +I (81734) example: expect speed: 0.000000 real_pulses:0 +I (81734) example: new speed:399.000000 +I (81744) example: expect speed: 0.000000 real_pulses:0 +I (81744) example: new speed:399.000000 +I (81754) example: expect speed: 0.000000 real_pulses:0 +I (81754) example: new speed:399.000000 +I (81764) example: expect speed: 0.000000 real_pulses:0 +I (81764) example: new speed:399.000000 +I (81774) example: expect speed: 0.000000 real_pulses:0 +I (81774) example: new speed:399.000000 +I (81784) example: expect speed: 0.000000 real_pulses:0 +I (81784) example: new speed:399.000000 +I (81794) example: expect speed: 0.000000 real_pulses:0 +I (81794) example: new speed:399.000000 +I (81804) example: expect speed: 0.000000 real_pulses:0 +I (81804) example: new speed:399.000000 +I (81814) example: expect speed: 0.000000 real_pulses:0 +I (81814) example: new speed:399.000000 +I (81824) example: expect speed: 0.000000 real_pulses:0 +I (81824) example: new speed:399.000000 +I (81834) example: expect speed: 0.000000 real_pulses:0 +I (81834) example: new speed:399.000000 +I (81844) example: expect speed: 0.000000 real_pulses:0 +I (81844) example: new speed:399.000000 +I (81854) example: expect speed: 0.000000 real_pulses:0 +I (81854) example: new speed:399.000000 +I (81864) example: expect speed: 0.000000 real_pulses:0 +I (81864) example: new speed:399.000000 +I (81874) example: expect speed: 0.000000 real_pulses:0 +I (81874) example: new speed:399.000000 +I (81884) example: expect speed: 0.000000 real_pulses:0 +I (81884) example: new speed:399.000000 +I (81894) example: expect speed: 0.000000 real_pulses:0 +I (81894) example: new speed:399.000000 +I (81904) example: expect speed: 0.000000 real_pulses:0 +I (81904) example: new speed:399.000000 +I (81914) example: expect speed: 0.000000 real_pulses:0 +I (81914) example: new speed:399.000000 +I (81924) example: expect speed: 0.000000 real_pulses:0 +I (81924) example: new speed:399.000000 +I (81934) example: expect speed: 0.000000 real_pulses:0 +I (81934) example: new speed:399.000000 +I (81944) example: expect speed: 0.000000 real_pulses:0 +I (81944) example: new speed:399.000000 +I (81954) example: expect speed: 0.000000 real_pulses:0 +I (81954) example: new speed:399.000000 +I (81964) example: expect speed: 0.000000 real_pulses:0 +I (81964) example: new speed:399.000000 +I (81974) example: expect speed: 0.000000 real_pulses:0 +I (81974) example: new speed:399.000000 +I (81984) example: expect speed: 0.000000 real_pulses:0 +I (81984) example: new speed:399.000000 +I (81994) example: expect speed: 0.000000 real_pulses:0 +I (81994) example: new speed:399.000000 +I (82004) example: expect speed: 0.000000 real_pulses:0 +I (82004) example: new speed:399.000000 +I (82014) example: expect speed: 0.000000 real_pulses:0 +I (82014) example: new speed:399.000000 +I (82024) example: expect speed: 0.000000 real_pulses:0 +I (82024) example: new speed:399.000000 +I (82034) example: expect speed: 0.000000 real_pulses:0 +I (82034) example: new speed:399.000000 +I (82044) example: expect speed: 0.000000 real_pulses:0 +I (82044) example: new speed:399.000000 +I (82054) example: expect speed: 0.000000 real_pulses:0 +I (82054) example: new speed:399.000000 +I (82064) example: expect speed: 0.000000 real_pulses:0 +I (82064) example: new speed:399.000000 +I (82074) example: expect speed: 0.000000 real_pulses:0 +I (82074) example: new speed:399.000000 +I (82084) example: expect speed: 0.000000 real_pulses:0 +I (82084) example: new speed:399.000000 +I (82094) example: expect speed: 0.000000 real_pulses:0 +I (82094) example: new speed:399.000000 +I (82104) example: expect speed: 0.000000 real_pulses:0 +I (82104) example: new speed:399.000000 +I (82114) example: expect speed: 0.000000 real_pulses:0 +I (82114) example: new speed:399.000000 +I (82124) example: expect speed: 0.000000 real_pulses:0 +I (82124) example: new speed:399.000000 +I (82134) example: expect speed: 0.000000 real_pulses:0 +I (82134) example: new speed:399.000000 +I (82144) example: expect speed: 0.000000 real_pulses:0 +I (82144) example: new speed:399.000000 +I (82154) example: expect speed: 0.000000 real_pulses:0 +I (82154) example: new speed:399.000000 +I (82164) example: expect speed: 0.000000 real_pulses:0 +I (82164) example: new speed:399.000000 +I (82174) example: expect speed: 0.000000 real_pulses:0 +I (82174) example: new speed:399.000000 +I (82184) example: expect speed: 0.000000 real_pulses:0 +I (82184) example: new speed:399.000000 +I (82194) example: expect speed: 0.000000 real_pulses:0 +I (82194) example: new speed:399.000000 +I (82204) example: expect speed: 0.000000 real_pulses:0 +I (82204) example: new speed:399.000000 +I (82214) example: expect speed: 0.000000 real_pulses:0 +I (82214) example: new speed:399.000000 +I (82224) example: expect speed: 0.000000 real_pulses:0 +I (82224) example: new speed:399.000000 +I (82234) example: expect speed: 0.000000 real_pulses:0 +I (82234) example: new speed:399.000000 +I (82244) example: expect speed: 0.000000 real_pulses:0 +I (82244) example: new speed:399.000000 +I (82254) example: expect speed: 0.000000 real_pulses:0 +I (82254) example: new speed:399.000000 +I (82264) example: expect speed: 0.000000 real_pulses:0 +I (82264) example: new speed:399.000000 +I (82274) example: expect speed: 0.000000 real_pulses:0 +I (82284) example: new speed:399.000000 +I (82284) example: expect speed: 0.000000 real_pulses:0 +I (82294) example: new speed:399.000000 +I (82294) example: expect speed: 0.000000 real_pulses:0 +I (82294) example: new speed:399.000000 +I (82304) modbus tcp: accept assess +I (82304) example: expect speed: 0.000000 real_pulses:0 +I (82304) example: new speed:399.000000 +I (82314) example: expect speed: 0.000000 real_pulses:0 +I (82314) example: new speed:399.000000 +I (82324) example: expect speed: 0.000000 real_pulses:0 +I (82324) example: new speed:399.000000 +I (82334) example: expect speed: 0.000000 real_pulses:0 +I (82334) example: new speed:399.000000 +I (82344) modbus tcp: ModBusSlave_recv() +I (82344) modbus: ModbusSlaveProcess() +I (82344) modbus: check id... +I (82344) modbus: ok +I (82344) modbus: add: 0, length: 10 +I (82344) modbus: Read Holding Registers +I (82344) example: expect speed: 0.000000 real_pulses:0 +I (82354) example: new speed:399.000000 +I (82354) example: expect speed: 0.000000 real_pulses:0 +I (82354) example: new speed:399.000000 +I (82364) example: expect speed: 0.000000 real_pulses:0 +I (82364) example: new speed:399.000000 +I (82374) example: expect speed: 0.000000 real_pulses:0 +I (82374) example: new speed:399.000000 +I (82384) example: expect speed: 0.000000 real_pulses:0 +I (82384) example: new speed:399.000000 +I (82394) example: expect speed: 0.000000 real_pulses:0 +I (82394) example: new speed:399.000000 +I (82404) example: expect speed: 0.000000 real_pulses:0 +I (82404) example: new speed:399.000000 +I (82414) example: expect speed: 0.000000 real_pulses:0 +I (82414) example: new speed:399.000000 +I (82424) example: expect speed: 0.000000 real_pulses:0 +I (82434) example: new speed:399.000000 +I (82434) example: expect speed: 0.000000 real_pulses:0 +I (82444) example: new speed:399.000000 +I (82444) example: expect speed: 0.000000 real_pulses:0 +I (82454) example: new speed:399.000000 +I (82454) example: expect speed: 0.000000 real_pulses:0 +I (82454) example: new speed:399.000000 +I (82464) example: expect speed: 0.000000 real_pulses:0 +I (82464) example: new speed:399.000000 +I (82474) example: expect speed: 0.000000 real_pulses:0 +I (82484) example: new speed:399.000000 +I (82484) example: expect speed: 0.000000 real_pulses:0 +I (82484) example: new speed:399.000000 +I (82494) example: expect speed: 0.000000 real_pulses:0 +I (82494) example: new speed:399.000000 +I (82504) example: expect speed: 0.000000 real_pulses:0 +I (82504) example: new speed:399.000000 +I (82514) example: expect speed: 0.000000 real_pulses:0 +I (82514) example: new speed:399.000000 +I (82524) example: expect speed: 0.000000 real_pulses:0 +I (82524) example: new speed:399.000000 +I (82534) example: expect speed: 0.000000 real_pulses:0 +I (82544) example: new speed:399.000000 +I (82544) example: expect speed: 0.000000 real_pulses:0 +I (82544) example: new speed:399.000000 +I (82554) example: expect speed: 0.000000 real_pulses:0 +I (82554) example: new speed:399.000000 +I (82564) example: expect speed: 0.000000 real_pulses:0 +I (82564) example: new speed:399.000000 +I (82574) example: expect speed: 0.000000 real_pulses:0 +I (82574) example: new speed:399.000000 +I (82584) example: expect speed: 0.000000 real_pulses:0 +I (82584) example: new speed:399.000000 +I (82594) example: expect speed: 0.000000 real_pulses:0 +I (82594) example: new speed:399.000000 +I (82604) example: expect speed: 0.000000 real_pulses:0 +I (82604) example: new speed:399.000000 +I (82614) example: expect speed: 0.000000 real_pulses:0 +I (82614) example: new speed:399.000000 +I (82624) example: expect speed: 0.000000 real_pulses:0 +I (82624) example: new speed:399.000000 +I (82634) example: expect speed: 0.000000 real_pulses:0 +I (82634) example: new speed:399.000000 +I (82644) example: expect speed: 0.000000 real_pulses:0 +I (82644) example: new speed:399.000000 +I (82654) example: expect speed: 0.000000 real_pulses:0 +I (82654) example: new speed:399.000000 +I (82664) example: expect speed: 0.000000 real_pulses:0 +I (82664) example: new speed:399.000000 +I (82674) example: expect speed: 0.000000 real_pulses:0 +I (82674) example: new speed:399.000000 +I (82684) example: expect speed: 0.000000 real_pulses:0 +I (82684) example: new speed:399.000000 +I (82694) example: expect speed: 0.000000 real_pulses:0 +I (82694) example: new speed:399.000000 +I (82704) example: expect speed: 0.000000 real_pulses:0 +I (82704) example: new speed:399.000000 +I (82714) example: expect speed: 0.000000 real_pulses:0 +I (82714) example: new speed:399.000000 +I (82724) example: expect speed: 0.000000 real_pulses:0 +I (82724) example: new speed:399.000000 +I (82734) example: expect speed: 0.000000 real_pulses:0 +I (82734) example: new speed:399.000000 +I (82744) example: expect speed: 0.000000 real_pulses:0 +I (82744) example: new speed:399.000000 +I (82754) example: expect speed: 0.000000 real_pulses:0 +I (82754) example: new speed:399.000000 +I (82764) example: expect speed: 0.000000 real_pulses:0 +I (82764) example: new speed:399.000000 +I (82774) example: expect speed: 0.000000 real_pulses:0 +I (82774) example: new speed:399.000000 +I (82784) example: expect speed: 0.000000 real_pulses:0 +I (82784) example: new speed:399.000000 +I (82794) example: expect speed: 0.000000 real_pulses:0 +I (82794) example: new speed:399.000000 +I (82804) example: expect speed: 0.000000 real_pulses:0 +I (82804) example: new speed:399.000000 +I (82814) example: expect speed: 0.000000 real_pulses:0 +I (82814) example: new speed:399.000000 +I (82824) example: expect speed: 0.000000 real_pulses:0 +I (82824) example: new speed:399.000000 +I (82834) example: expect speed: 0.000000 real_pulses:0 +I (82834) example: new speed:399.000000 +I (82844) example: expect speed: 0.000000 real_pulses:0 +I (82844) example: new speed:399.000000 +I (82854) example: expect speed: 0.000000 real_pulses:0 +I (82854) example: new speed:399.000000 +I (82864) example: expect speed: 0.000000 real_pulses:0 +I (82864) example: new speed:399.000000 +I (82874) example: expect speed: 0.000000 real_pulses:0 +I (82874) example: new speed:399.000000 +I (82884) example: expect speed: 0.000000 real_pulses:0 +I (82884) example: new speed:399.000000 +I (82894) example: expect speed: 0.000000 real_pulses:0 +I (82894) example: new speed:399.000000 +I (82904) example: expect speed: 0.000000 real_pulses:0 +I (82904) example: new speed:399.000000 +I (82914) example: expect speed: 0.000000 real_pulses:0 +I (82914) example: new speed:399.000000 +I (82924) example: expect speed: 0.000000 real_pulses:0 +I (82924) example: new speed:399.000000 +I (82934) example: expect speed: 0.000000 real_pulses:0 +I (82934) example: new speed:399.000000 +I (82944) example: expect speed: 0.000000 real_pulses:0 +I (82944) example: new speed:399.000000 +I (82954) example: expect speed: 0.000000 real_pulses:0 +I (82954) example: new speed:399.000000 +I (82964) example: expect speed: 0.000000 real_pulses:0 +I (82964) example: new speed:399.000000 +I (82974) example: expect speed: 0.000000 real_pulses:0 +I (82974) example: new speed:399.000000 +I (82984) example: expect speed: 0.000000 real_pulses:0 +I (82984) example: new speed:399.000000 +I (82994) example: expect speed: 0.000000 real_pulses:0 +I (82994) example: new speed:399.000000 +I (83004) example: expect speed: 0.000000 real_pulses:0 +I (83004) example: new speed:399.000000 +I (83014) example: expect speed: 0.000000 real_pulses:0 +I (83014) example: new speed:399.000000 +I (83024) example: expect speed: 0.000000 real_pulses:0 +I (83024) example: new speed:399.000000 +I (83034) example: expect speed: 0.000000 real_pulses:0 +I (83034) example: new speed:399.000000 +I (83044) example: expect speed: 0.000000 real_pulses:0 +I (83044) example: new speed:399.000000 +I (83054) example: expect speed: 0.000000 real_pulses:0 +I (83054) example: new speed:399.000000 +I (83064) example: expect speed: 0.000000 real_pulses:0 +I (83064) example: new speed:399.000000 +I (83074) example: expect speed: 0.000000 real_pulses:0 +I (83074) example: new speed:399.000000 +I (83084) example: expect speed: 0.000000 real_pulses:0 +I (83084) example: new speed:399.000000 +I (83094) example: expect speed: 0.000000 real_pulses:0 +I (83094) example: new speed:399.000000 +I (83104) example: expect speed: 0.000000 real_pulses:0 +I (83104) example: new speed:399.000000 +I (83114) example: expect speed: 0.000000 real_pulses:0 +I (83114) example: new speed:399.000000 +I (83124) example: expect speed: 0.000000 real_pulses:0 +I (83124) example: new speed:399.000000 +I (83134) example: expect speed: 0.000000 real_pulses:0 +I (83134) example: new speed:399.000000 +I (83144) example: expect speed: 0.000000 real_pulses:0 +I (83144) example: new speed:399.000000 +I (83154) example: expect speed: 0.000000 real_pulses:0 +I (83154) example: new speed:399.000000 +I (83164) example: expect speed: 0.000000 real_pulses:0 +I (83164) example: new speed:399.000000 +I (83174) example: expect speed: 0.000000 real_pulses:0 +I (83174) example: new speed:399.000000 +I (83184) example: expect speed: 0.000000 real_pulses:0 +I (83184) example: new speed:399.000000 +I (83194) example: expect speed: 0.000000 real_pulses:0 +I (83204) example: new speed:399.000000 +I (83204) example: expect speed: 0.000000 real_pulses:0 +I (83204) example: new speed:399.000000 +I (83214) example: expect speed: 0.000000 real_pulses:0 +I (83214) example: new speed:399.000000 +I (83224) example: expect speed: 0.000000 real_pulses:0 +I (83224) example: new speed:399.000000 +I (83234) example: expect speed: 0.000000 real_pulses:0 +I (83234) example: new speed:399.000000 +I (83244) example: expect speed: 0.000000 real_pulses:0 +I (83244) example: new speed:399.000000 +I (83254) example: expect speed: 0.000000 real_pulses:0 +I (83254) example: new speed:399.000000 +I (83264) example: expect speed: 0.000000 real_pulses:0 +I (83264) example: new speed:399.000000 +I (83274) example: expect speed: 0.000000 real_pulses:0 +I (83274) example: new speed:399.000000 +I (83284) example: expect speed: 0.000000 real_pulses:0 +I (83284) example: new speed:399.000000 +I (83294) example: expect speed: 0.000000 real_pulses:0 +I (83294) example: new speed:399.000000 +I (83304) example: expect speed: 0.000000 real_pulses:0 +I (83304) example: new speed:399.000000 +I (83314) example: expect speed: 0.000000 real_pulses:0 +I (83314) example: new speed:399.000000 +I (83324) example: expect speed: 0.000000 real_pulses:0 +I (83324) example: new speed:399.000000 +I (83334) example: expect speed: 0.000000 real_pulses:0 +I (83334) example: new speed:399.000000 +I (83344) example: expect speed: 0.000000 real_pulses:0 +I (83344) example: new speed:399.000000 +I (83354) example: expect speed: 0.000000 real_pulses:0 +I (83354) example: new speed:399.000000 +I (83364) example: expect speed: 0.000000 real_pulses:0 +I (83364) example: new speed:399.000000 +I (83374) example: expect speed: 0.000000 real_pulses:0 +I (83374) example: new speed:399.000000 +I (83384) example: expect speed: 0.000000 real_pulses:0 +I (83384) example: new speed:399.000000 +I (83394) example: expect speed: 0.000000 real_pulses:0 +I (83394) example: new speed:399.000000 +I (83404) example: expect speed: 0.000000 real_pulses:0 +I (83414) example: new speed:399.000000 +I (83414) modbus tcp: ModBusSlave_recv() +I (83414) modbus: ModbusSlaveProcess() +I (83414) modbus: check id... +I (83414) modbus: ok +I (83414) modbus: add: 0, length: 10 +I (83414) modbus: Read Holding Registers +I (83414) example: expect speed: 0.000000 real_pulses:0 +I (83424) example: new speed:399.000000 +I (83424) example: expect speed: 0.000000 real_pulses:0 +I (83424) example: new speed:399.000000 +I (83434) example: expect speed: 0.000000 real_pulses:0 +I (83434) example: new speed:399.000000 +I (83444) example: expect speed: 0.000000 real_pulses:0 +I (83444) example: new speed:399.000000 +I (83454) example: expect speed: 0.000000 real_pulses:0 +I (83454) example: new speed:399.000000 +I (83464) example: expect speed: 0.000000 real_pulses:0 +I (83474) example: new speed:399.000000 +I (83474) example: expect speed: 0.000000 real_pulses:0 +I (83484) example: new speed:399.000000 +I (83484) example: expect speed: 0.000000 real_pulses:0 +I (83484) example: new speed:399.000000 +I (83494) example: expect speed: 0.000000 real_pulses:0 +I (83494) example: new speed:399.000000 +I (83504) example: expect speed: 0.000000 real_pulses:0 +I (83514) example: new speed:399.000000 +I (83514) example: expect speed: 0.000000 real_pulses:0 +I (83514) example: new speed:399.000000 +I (83524) example: expect speed: 0.000000 real_pulses:0 +I (83524) example: new speed:399.000000 +I (83534) example: expect speed: 0.000000 real_pulses:0 +I (83534) example: new speed:399.000000 +I (83544) example: expect speed: 0.000000 real_pulses:0 +I (83544) example: new speed:399.000000 +I (83554) example: expect speed: 0.000000 real_pulses:0 +I (83564) example: new speed:399.000000 +I (83564) example: expect speed: 0.000000 real_pulses:0 +I (83564) example: new speed:399.000000 +I (83574) example: expect speed: 0.000000 real_pulses:0 +I (83584) example: new speed:399.000000 +I (83584) example: expect speed: 0.000000 real_pulses:0 +I (83584) example: new speed:399.000000 +I (83594) example: expect speed: 0.000000 real_pulses:0 +I (83594) example: new speed:399.000000 +I (83604) example: expect speed: 0.000000 real_pulses:0 +I (83604) example: new speed:399.000000 +I (83614) example: expect speed: 0.000000 real_pulses:0 +I (83614) example: new speed:399.000000 +I (83624) example: expect speed: 0.000000 real_pulses:0 +I (83624) example: new speed:399.000000 +I (83634) example: expect speed: 0.000000 real_pulses:0 +I (83634) example: new speed:399.000000 +I (83644) example: expect speed: 0.000000 real_pulses:0 +I (83644) example: new speed:399.000000 +I (83654) example: expect speed: 0.000000 real_pulses:0 +I (83654) example: new speed:399.000000 +I (83664) example: expect speed: 0.000000 real_pulses:0 +I (83664) example: new speed:399.000000 +I (83674) example: expect speed: 0.000000 real_pulses:0 +I (83674) example: new speed:399.000000 +I (83684) example: expect speed: 0.000000 real_pulses:0 +I (83684) example: new speed:399.000000 +I (83694) example: expect speed: 0.000000 real_pulses:0 +I (83694) example: new speed:399.000000 +I (83704) example: expect speed: 0.000000 real_pulses:0 +I (83704) example: new speed:399.000000 +I (83714) example: expect speed: 0.000000 real_pulses:0 +I (83714) example: new speed:399.000000 +I (83724) example: expect speed: 0.000000 real_pulses:0 +I (83724) example: new speed:399.000000 +I (83734) example: expect speed: 0.000000 real_pulses:0 +I (83734) example: new speed:399.000000 +I (83744) example: expect speed: 0.000000 real_pulses:0 +I (83744) example: new speed:399.000000 +I (83754) example: expect speed: 0.000000 real_pulses:0 +I (83754) example: new speed:399.000000 +I (83764) example: expect speed: 0.000000 real_pulses:0 +I (83764) example: new speed:399.000000 +I (83774) example: expect speed: 0.000000 real_pulses:0 +I (83774) example: new speed:399.000000 +I (83784) example: expect speed: 0.000000 real_pulses:0 +I (83784) example: new speed:399.000000 +I (83794) example: expect speed: 0.000000 real_pulses:0 +I (83794) example: new speed:399.000000 +I (83804) example: expect speed: 0.000000 real_pulses:0 +I (83804) example: new speed:399.000000 +I (83814) example: expect speed: 0.000000 real_pulses:0 +I (83814) example: new speed:399.000000 +I (83824) example: expect speed: 0.000000 real_pulses:0 +I (83824) example: new speed:399.000000 +I (83834) example: expect speed: 0.000000 real_pulses:0 +I (83834) example: new speed:399.000000 +I (83844) example: expect speed: 0.000000 real_pulses:0 +I (83844) example: new speed:399.000000 +I (83854) example: expect speed: 0.000000 real_pulses:0 +I (83854) example: new speed:399.000000 +I (83864) example: expect speed: 0.000000 real_pulses:0 +I (83864) example: new speed:399.000000 +I (83874) example: expect speed: 0.000000 real_pulses:0 +I (83874) example: new speed:399.000000 +I (83884) example: expect speed: 0.000000 real_pulses:0 +I (83884) example: new speed:399.000000 +I (83894) example: expect speed: 0.000000 real_pulses:0 +I (83894) example: new speed:399.000000 +I (83904) example: expect speed: 0.000000 real_pulses:0 +I (83904) example: new speed:399.000000 +I (83914) example: expect speed: 0.000000 real_pulses:0 +I (83914) example: new speed:399.000000 +I (83924) example: expect speed: 0.000000 real_pulses:0 +I (83924) example: new speed:399.000000 +I (83934) example: expect speed: 0.000000 real_pulses:0 +I (83934) example: new speed:399.000000 +I (83944) example: expect speed: 0.000000 real_pulses:0 +I (83944) example: new speed:399.000000 +I (83954) example: expect speed: 0.000000 real_pulses:0 +I (83954) example: new speed:399.000000 +I (83964) example: expect speed: 0.000000 real_pulses:0 +I (83964) example: new speed:399.000000 +I (83974) example: expect speed: 0.000000 real_pulses:0 +I (83974) example: new speed:399.000000 +I (83984) example: expect speed: 0.000000 real_pulses:0 +I (83984) example: new speed:399.000000 +I (83994) example: expect speed: 0.000000 real_pulses:0 +I (83994) example: new speed:399.000000 +I (84004) example: expect speed: 0.000000 real_pulses:0 +I (84004) example: new speed:399.000000 +I (84014) example: expect speed: 0.000000 real_pulses:0 +I (84014) example: new speed:399.000000 +I (84024) example: expect speed: 0.000000 real_pulses:0 +I (84024) example: new speed:399.000000 +I (84034) example: expect speed: 0.000000 real_pulses:0 +I (84034) example: new speed:399.000000 +I (84044) example: expect speed: 0.000000 real_pulses:0 +I (84044) example: new speed:399.000000 +I (84054) example: expect speed: 0.000000 real_pulses:0 +I (84054) example: new speed:399.000000 +I (84064) example: expect speed: 0.000000 real_pulses:0 +I (84064) example: new speed:399.000000 +I (84074) example: expect speed: 0.000000 real_pulses:0 +I (84074) example: new speed:399.000000 +I (84084) example: expect speed: 0.000000 real_pulses:0 +I (84084) example: new speed:399.000000 +I (84094) example: expect speed: 0.000000 real_pulses:0 +I (84094) example: new speed:399.000000 +I (84104) example: expect speed: 0.000000 real_pulses:0 +I (84104) example: new speed:399.000000 +I (84114) example: expect speed: 0.000000 real_pulses:0 +I (84114) example: new speed:399.000000 +I (84124) example: expect speed: 0.000000 real_pulses:0 +I (84124) example: new speed:399.000000 +I (84134) example: expect speed: 0.000000 real_pulses:0 +I (84134) example: new speed:399.000000 +I (84144) example: expect speed: 0.000000 real_pulses:0 +I (84144) example: new speed:399.000000 +I (84154) example: expect speed: 0.000000 real_pulses:0 +I (84154) example: new speed:399.000000 +I (84164) example: expect speed: 0.000000 real_pulses:0 +I (84164) example: new speed:399.000000 +I (84174) example: expect speed: 0.000000 real_pulses:0 +I (84174) example: new speed:399.000000 +I (84184) example: expect speed: 0.000000 real_pulses:0 +I (84184) example: new speed:399.000000 +I (84194) example: expect speed: 0.000000 real_pulses:0 +I (84194) example: new speed:399.000000 +I (84204) example: expect speed: 0.000000 real_pulses:0 +I (84204) example: new speed:399.000000 +I (84214) example: expect speed: 0.000000 real_pulses:0 +I (84214) example: new speed:399.000000 +I (84224) example: expect speed: 0.000000 real_pulses:0 +I (84224) example: new speed:399.000000 +I (84234) example: expect speed: 0.000000 real_pulses:0 +I (84234) example: new speed:399.000000 +I (84244) example: expect speed: 0.000000 real_pulses:0 +I (84244) example: new speed:399.000000 +I (84254) example: expect speed: 0.000000 real_pulses:0 +I (84254) example: new speed:399.000000 +I (84264) example: expect speed: 0.000000 real_pulses:0 +I (84264) example: new speed:399.000000 +I (84274) example: expect speed: 0.000000 real_pulses:0 +I (84274) example: new speed:399.000000 +I (84284) example: expect speed: 0.000000 real_pulses:0 +I (84284) example: new speed:399.000000 +I (84294) example: expect speed: 0.000000 real_pulses:0 +I (84294) example: new speed:399.000000 +I (84304) example: expect speed: 0.000000 real_pulses:0 +I (84304) example: new speed:399.000000 +I (84314) example: expect speed: 0.000000 real_pulses:0 +I (84314) example: new speed:399.000000 +I (84324) example: expect speed: 0.000000 real_pulses:0 +I (84324) example: new speed:399.000000 +I (84334) example: expect speed: 0.000000 real_pulses:0 +I (84334) example: new speed:399.000000 +I (84344) example: expect speed: 0.000000 real_pulses:0 +I (84344) example: new speed:399.000000 +I (84354) example: expect speed: 0.000000 real_pulses:0 +I (84354) example: new speed:399.000000 +I (84364) example: expect speed: 0.000000 real_pulses:0 +I (84364) example: new speed:399.000000 +I (84374) example: expect speed: 0.000000 real_pulses:0 +I (84374) example: new speed:399.000000 +I (84384) example: expect speed: 0.000000 real_pulses:0 +I (84384) example: new speed:399.000000 +I (84394) example: expect speed: 0.000000 real_pulses:0 +I (84394) example: new speed:399.000000 +I (84404) example: expect speed: 0.000000 real_pulses:0 +I (84404) example: new speed:399.000000 +I (84414) example: expect speed: 0.000000 real_pulses:0 +I (84414) example: new speed:399.000000 +I (84424) example: expect speed: 0.000000 real_pulses:0 +I (84434) example: new speed:399.000000 +I (84434) modbus tcp: ModBusSlave_recv() +I (84434) modbus: ModbusSlaveProcess() +I (84434) modbus: check id... +I (84434) modbus: ok +I (84434) modbus: add: 0, length: 10 +I (84434) modbus: Read Holding Registers +I (84434) example: expect speed: 0.000000 real_pulses:0 +I (84444) example: new speed:399.000000 +I (84444) example: expect speed: 0.000000 real_pulses:0 +I (84444) example: new speed:399.000000 +I (84454) example: expect speed: 0.000000 real_pulses:0 +I (84454) example: new speed:399.000000 +I (84464) example: expect speed: 0.000000 real_pulses:0 +I (84464) example: new speed:399.000000 +I (84474) example: expect speed: 0.000000 real_pulses:0 +I (84474) example: new speed:399.000000 +I (84484) example: expect speed: 0.000000 real_pulses:0 +I (84494) example: new speed:399.000000 +I (84494) example: expect speed: 0.000000 real_pulses:0 +I (84494) example: new speed:399.000000 +I (84504) example: expect speed: 0.000000 real_pulses:0 +I (84504) example: new speed:399.000000 +I (84514) example: expect speed: 0.000000 real_pulses:0 +I (84514) example: new speed:399.000000 +I (84524) example: expect speed: 0.000000 real_pulses:0 +I (84524) example: new speed:399.000000 +I (84534) example: expect speed: 0.000000 real_pulses:0 +I (84544) example: new speed:399.000000 +I (84544) example: expect speed: 0.000000 real_pulses:0 +I (84544) example: new speed:399.000000 +I (84554) example: expect speed: 0.000000 real_pulses:0 +I (84554) example: new speed:399.000000 +I (84564) example: expect speed: 0.000000 real_pulses:0 +I (84564) example: new speed:399.000000 +I (84574) example: expect speed: 0.000000 real_pulses:0 +I (84574) example: new speed:399.000000 +I (84584) example: expect speed: 0.000000 real_pulses:0 +I (84594) example: new speed:399.000000 +I (84594) example: expect speed: 0.000000 real_pulses:0 +I (84594) example: new speed:399.000000 +I (84604) example: expect speed: 0.000000 real_pulses:0 +I (84604) example: new speed:399.000000 +I (84614) example: expect speed: 0.000000 real_pulses:0 +I (84614) example: new speed:399.000000 +I (84624) example: expect speed: 0.000000 real_pulses:0 +I (84634) example: new speed:399.000000 +I (84634) example: expect speed: 0.000000 real_pulses:0 +I (84634) example: new speed:399.000000 +I (84644) example: expect speed: 0.000000 real_pulses:0 +I (84644) example: new speed:399.000000 +I (84654) example: expect speed: 0.000000 real_pulses:0 +I (84654) example: new speed:399.000000 +I (84664) example: expect speed: 0.000000 real_pulses:0 +I (84664) example: new speed:399.000000 +I (84674) example: expect speed: 0.000000 real_pulses:0 +I (84674) example: new speed:399.000000 +I (84684) example: expect speed: 0.000000 real_pulses:0 +I (84684) example: new speed:399.000000 +I (84694) example: expect speed: 0.000000 real_pulses:0 +I (84694) example: new speed:399.000000 +I (84704) example: expect speed: 0.000000 real_pulses:0 +I (84704) example: new speed:399.000000 +I (84714) example: expect speed: 0.000000 real_pulses:0 +I (84714) example: new speed:399.000000 +I (84724) example: expect speed: 0.000000 real_pulses:0 +I (84724) example: new speed:399.000000 +I (84734) example: expect speed: 0.000000 real_pulses:0 +I (84734) example: new speed:399.000000 +I (84744) example: expect speed: 0.000000 real_pulses:0 +I (84744) example: new speed:399.000000 +I (84754) example: expect speed: 0.000000 real_pulses:0 +I (84754) example: new speed:399.000000 +I (84764) example: expect speed: 0.000000 real_pulses:0 +I (84764) example: new speed:399.000000 +I (84774) example: expect speed: 0.000000 real_pulses:0 +I (84774) example: new speed:399.000000 +I (84784) example: expect speed: 0.000000 real_pulses:0 +I (84784) example: new speed:399.000000 +I (84794) example: expect speed: 0.000000 real_pulses:0 +I (84794) example: new speed:399.000000 +I (84804) example: expect speed: 0.000000 real_pulses:0 +I (84804) example: new speed:399.000000 +I (84814) example: expect speed: 0.000000 real_pulses:0 +I (84814) example: new speed:399.000000 +I (84824) example: expect speed: 0.000000 real_pulses:0 +I (84824) example: new speed:399.000000 +I (84834) example: expect speed: 0.000000 real_pulses:0 +I (84834) example: new speed:399.000000 +I (84844) example: expect speed: 0.000000 real_pulses:0 +I (84844) example: new speed:399.000000 +I (84854) example: expect speed: 0.000000 real_pulses:0 +I (84854) example: new speed:399.000000 +I (84864) example: expect speed: 0.000000 real_pulses:0 +I (84864) example: new speed:399.000000 +I (84874) example: expect speed: 0.000000 real_pulses:0 +I (84874) example: new speed:399.000000 +I (84884) example: expect speed: 0.000000 real_pulses:0 +I (84884) example: new speed:399.000000 +I (84894) example: expect speed: 0.000000 real_pulses:0 +I (84894) example: new speed:399.000000 +I (84904) example: expect speed: 0.000000 real_pulses:0 +I (84904) example: new speed:399.000000 +I (84914) example: expect speed: 0.000000 real_pulses:0 +I (84914) example: new speed:399.000000 +I (84924) example: expect speed: 0.000000 real_pulses:0 +I (84924) example: new speed:399.000000 +I (84934) example: expect speed: 0.000000 real_pulses:0 +I (84934) example: new speed:399.000000 +I (84944) example: expect speed: 0.000000 real_pulses:0 +I (84944) example: new speed:399.000000 +I (84954) example: expect speed: 0.000000 real_pulses:0 +I (84954) example: new speed:399.000000 +I (84964) example: expect speed: 0.000000 real_pulses:0 +I (84964) example: new speed:399.000000 +I (84974) example: expect speed: 0.000000 real_pulses:0 +I (84974) example: new speed:399.000000 +I (84984) example: expect speed: 0.000000 real_pulses:0 +I (84984) example: new speed:399.000000 +I (84994) example: expect speed: 0.000000 real_pulses:0 +I (84994) example: new speed:399.000000 +I (85004) example: expect speed: 0.000000 real_pulses:0 +I (85004) example: new speed:399.000000 +I (85014) example: expect speed: 0.000000 real_pulses:0 +I (85014) example: new speed:399.000000 +I (85024) example: expect speed: 0.000000 real_pulses:0 +I (85024) example: new speed:399.000000 +I (85034) example: expect speed: 0.000000 real_pulses:0 +I (85044) example: new speed:399.000000 +I (85044) example: expect speed: 0.000000 real_pulses:0 +I (85044) example: new speed:399.000000 +I (85054) example: expect speed: 0.000000 real_pulses:0 +I (85054) example: new speed:399.000000 +I (85064) example: expect speed: 0.000000 real_pulses:0 +I (85064) example: new speed:399.000000 +I (85074) example: expect speed: 0.000000 real_pulses:0 +I (85074) example: new speed:399.000000 +I (85084) example: expect speed: 0.000000 real_pulses:0 +I (85084) example: new speed:399.000000 +I (85094) example: expect speed: 0.000000 real_pulses:0 +I (85094) example: new speed:399.000000 +I (85104) example: expect speed: 0.000000 real_pulses:0 +I (85104) example: new speed:399.000000 +I (85114) example: expect speed: 0.000000 real_pulses:0 +I (85114) example: new speed:399.000000 +I (85124) example: expect speed: 0.000000 real_pulses:0 +I (85124) example: new speed:399.000000 +I (85134) example: expect speed: 0.000000 real_pulses:0 +I (85134) example: new speed:399.000000 +I (85144) example: expect speed: 0.000000 real_pulses:0 +I (85144) example: new speed:399.000000 +I (85154) example: expect speed: 0.000000 real_pulses:0 +I (85154) example: new speed:399.000000 +I (85164) example: expect speed: 0.000000 real_pulses:0 +I (85164) example: new speed:399.000000 +I (85174) example: expect speed: 0.000000 real_pulses:0 +I (85174) example: new speed:399.000000 +I (85184) example: expect speed: 0.000000 real_pulses:0 +I (85184) example: new speed:399.000000 +I (85194) example: expect speed: 0.000000 real_pulses:0 +I (85194) example: new speed:399.000000 +I (85204) example: expect speed: 0.000000 real_pulses:0 +I (85204) example: new speed:399.000000 +I (85214) example: expect speed: 0.000000 real_pulses:0 +I (85214) example: new speed:399.000000 +I (85224) example: expect speed: 0.000000 real_pulses:0 +I (85224) example: new speed:399.000000 +I (85234) example: expect speed: 0.000000 real_pulses:0 +I (85234) example: new speed:399.000000 +I (85244) example: expect speed: 0.000000 real_pulses:0 +I (85244) example: new speed:399.000000 +I (85254) example: expect speed: 0.000000 real_pulses:0 +I (85254) example: new speed:399.000000 +I (85264) example: expect speed: 0.000000 real_pulses:0 +I (85264) example: new speed:399.000000 +I (85274) example: expect speed: 0.000000 real_pulses:0 +I (85274) example: new speed:399.000000 +I (85284) example: expect speed: 0.000000 real_pulses:0 +I (85284) example: new speed:399.000000 +I (85294) example: expect speed: 0.000000 real_pulses:0 +I (85294) example: new speed:399.000000 +I (85304) example: expect speed: 0.000000 real_pulses:0 +I (85304) example: new speed:399.000000 +I (85314) example: expect speed: 0.000000 real_pulses:0 +I (85314) example: new speed:399.000000 +I (85324) example: expect speed: 0.000000 real_pulses:0 +I (85324) example: new speed:399.000000 +I (85334) example: expect speed: 0.000000 real_pulses:0 +I (85334) example: new speed:399.000000 +I (85344) example: expect speed: 0.000000 real_pulses:0 +I (85344) example: new speed:399.000000 +I (85354) example: expect speed: 0.000000 real_pulses:0 +I (85354) example: new speed:399.000000 +I (85364) example: expect speed: 0.000000 real_pulses:0 +I (85364) example: new speed:399.000000 +I (85374) example: expect speed: 0.000000 real_pulses:0 +I (85374) example: new speed:399.000000 +I (85384) example: expect speed: 0.000000 real_pulses:0 +I (85384) example: new speed:399.000000 +I (85394) example: expect speed: 0.000000 real_pulses:0 +I (85394) example: new speed:399.000000 +I (85404) example: expect speed: 0.000000 real_pulses:0 +I (85404) example: new speed:399.000000 +I (85414) example: expect speed: 0.000000 real_pulses:0 +I (85414) example: new speed:399.000000 +I (85424) example: expect speed: 0.000000 real_pulses:0 +I (85424) example: new speed:399.000000 +I (85434) example: expect speed: 0.000000 real_pulses:0 +I (85434) example: new speed:399.000000 +I (85444) example: expect speed: 0.000000 real_pulses:0 +I (85454) example: new speed:399.000000 +I (85454) modbus tcp: ModBusSlave_recv() +I (85454) modbus: ModbusSlaveProcess() +I (85454) modbus: check id... +I (85454) modbus: ok +I (85454) modbus: add: 0, length: 10 +I (85454) modbus: Read Holding Registers +I (85454) example: expect speed: 0.000000 real_pulses:0 +I (85464) example: new speed:399.000000 +I (85464) example: expect speed: 0.000000 real_pulses:0 +I (85464) example: new speed:399.000000 +I (85474) example: expect speed: 0.000000 real_pulses:0 +I (85474) example: new speed:399.000000 +I (85484) example: expect speed: 0.000000 real_pulses:0 +I (85484) example: new speed:399.000000 +I (85494) example: expect speed: 0.000000 real_pulses:0 +I (85494) example: new speed:399.000000 +I (85504) example: expect speed: 0.000000 real_pulses:0 +I (85514) example: new speed:399.000000 +I (85514) example: expect speed: 0.000000 real_pulses:0 +I (85514) example: new speed:399.000000 +I (85524) example: expect speed: 0.000000 real_pulses:0 +I (85524) example: new speed:399.000000 +I (85534) example: expect speed: 0.000000 real_pulses:0 +I (85534) example: new speed:399.000000 +I (85544) example: expect speed: 0.000000 real_pulses:0 +I (85544) example: new speed:399.000000 +I (85554) example: expect speed: 0.000000 real_pulses:0 +I (85554) example: new speed:399.000000 +I (85564) example: expect speed: 0.000000 real_pulses:0 +I (85564) example: new speed:399.000000 +I (85574) example: expect speed: 0.000000 real_pulses:0 +I (85574) example: new speed:399.000000 +I (85584) example: expect speed: 0.000000 real_pulses:0 +I (85584) example: new speed:399.000000 +I (85594) example: expect speed: 0.000000 real_pulses:0 +I (85594) example: new speed:399.000000 +I (85604) example: expect speed: 0.000000 real_pulses:0 +I (85604) example: new speed:399.000000 +I (85614) example: expect speed: 0.000000 real_pulses:0 +I (85614) example: new speed:399.000000 +I (85624) example: expect speed: 0.000000 real_pulses:0 +I (85624) example: new speed:399.000000 +I (85634) example: expect speed: 0.000000 real_pulses:0 +I (85634) example: new speed:399.000000 +I (85644) example: expect speed: 0.000000 real_pulses:0 +I (85644) example: new speed:399.000000 +I (85654) example: expect speed: 0.000000 real_pulses:0 +I (85654) example: new speed:399.000000 +I (85664) example: expect speed: 0.000000 real_pulses:0 +I (85664) example: new speed:399.000000 +I (85674) example: expect speed: 0.000000 real_pulses:0 +I (85674) example: new speed:399.000000 +I (85684) example: expect speed: 0.000000 real_pulses:0 +I (85684) example: new speed:399.000000 +I (85694) example: expect speed: 0.000000 real_pulses:0 +I (85694) example: new speed:399.000000 +I (85704) example: expect speed: 0.000000 real_pulses:0 +I (85704) example: new speed:399.000000 +I (85714) example: expect speed: 0.000000 real_pulses:0 +I (85714) example: new speed:399.000000 +I (85724) example: expect speed: 0.000000 real_pulses:0 +I (85724) example: new speed:399.000000 +I (85734) example: expect speed: 0.000000 real_pulses:0 +I (85734) example: new speed:399.000000 +I (85744) example: expect speed: 0.000000 real_pulses:0 +I (85744) example: new speed:399.000000 +I (85754) example: expect speed: 0.000000 real_pulses:0 +I (85754) example: new speed:399.000000 +I (85764) example: expect speed: 0.000000 real_pulses:0 +I (85764) example: new speed:399.000000 +I (85774) example: expect speed: 0.000000 real_pulses:0 +I (85774) example: new speed:399.000000 +I (85784) example: expect speed: 0.000000 real_pulses:0 +I (85784) example: new speed:399.000000 +I (85794) example: expect speed: 0.000000 real_pulses:0 +I (85794) example: new speed:399.000000 +I (85804) example: expect speed: 0.000000 real_pulses:0 +I (85804) example: new speed:399.000000 +I (85814) example: expect speed: 0.000000 real_pulses:0 +I (85814) example: new speed:399.000000 +I (85824) example: expect speed: 0.000000 real_pulses:0 +I (85824) example: new speed:399.000000 +I (85834) example: expect speed: 0.000000 real_pulses:0 +I (85834) example: new speed:399.000000 +I (85844) example: expect speed: 0.000000 real_pulses:0 +I (85844) example: new speed:399.000000 +I (85854) example: expect speed: 0.000000 real_pulses:0 +I (85854) example: new speed:399.000000 +I (85864) example: expect speed: 0.000000 real_pulses:0 +I (85864) example: new speed:399.000000 +I (85874) example: expect speed: 0.000000 real_pulses:0 +I (85874) example: new speed:399.000000 +I (85884) example: expect speed: 0.000000 real_pulses:0 +I (85884) example: new speed:399.000000 +I (85894) example: expect speed: 0.000000 real_pulses:0 +I (85894) example: new speed:399.000000 +I (85904) example: expect speed: 0.000000 real_pulses:0 +I (85904) example: new speed:399.000000 +I (85914) example: expect speed: 0.000000 real_pulses:0 +I (85914) example: new speed:399.000000 +I (85924) example: expect speed: 0.000000 real_pulses:0 +I (85924) example: new speed:399.000000 +I (85934) example: expect speed: 0.000000 real_pulses:0 +I (85934) example: new speed:399.000000 +I (85944) example: expect speed: 0.000000 real_pulses:0 +I (85944) example: new speed:399.000000 +I (85954) example: expect speed: 0.000000 real_pulses:0 +I (85954) example: new speed:399.000000 +I (85964) example: expect speed: 0.000000 real_pulses:0 +I (85964) example: new speed:399.000000 +I (85974) example: expect speed: 0.000000 real_pulses:0 +I (85974) example: new speed:399.000000 +I (85984) example: expect speed: 0.000000 real_pulses:0 +I (85984) example: new speed:399.000000 +I (85994) example: expect speed: 0.000000 real_pulses:0 +I (85994) example: new speed:399.000000 +I (86004) example: expect speed: 0.000000 real_pulses:0 +I (86004) example: new speed:399.000000 +I (86014) example: expect speed: 0.000000 real_pulses:0 +I (86014) example: new speed:399.000000 +I (86024) example: expect speed: 0.000000 real_pulses:0 +I (86024) example: new speed:399.000000 +I (86034) example: expect speed: 0.000000 real_pulses:0 +I (86034) example: new speed:399.000000 +I (86044) example: expect speed: 0.000000 real_pulses:0 +I (86044) example: new speed:399.000000 +I (86054) example: expect speed: 0.000000 real_pulses:0 +I (86054) example: new speed:399.000000 +I (86064) example: expect speed: 0.000000 real_pulses:0 +I (86064) example: new speed:399.000000 +I (86074) example: expect speed: 0.000000 real_pulses:0 +I (86074) example: new speed:399.000000 +I (86084) example: expect speed: 0.000000 real_pulses:0 +I (86084) example: new speed:399.000000 +I (86094) example: expect speed: 0.000000 real_pulses:0 +I (86094) example: new speed:399.000000 +I (86104) example: expect speed: 0.000000 real_pulses:0 +I (86104) example: new speed:399.000000 +I (86114) example: expect speed: 0.000000 real_pulses:0 +I (86114) example: new speed:399.000000 +I (86124) example: expect speed: 0.000000 real_pulses:0 +I (86124) example: new speed:399.000000 +I (86134) example: expect speed: 0.000000 real_pulses:0 +I (86134) example: new speed:399.000000 +I (86144) example: expect speed: 0.000000 real_pulses:0 +I (86144) example: new speed:399.000000 +I (86154) example: expect speed: 0.000000 real_pulses:0 +I (86154) example: new speed:399.000000 +I (86164) example: expect speed: 0.000000 real_pulses:0 +I (86164) example: new speed:399.000000 +I (86174) example: expect speed: 0.000000 real_pulses:0 +I (86174) example: new speed:399.000000 +I (86184) example: expect speed: 0.000000 real_pulses:0 +I (86184) example: new speed:399.000000 +I (86194) example: expect speed: 0.000000 real_pulses:0 +I (86194) example: new speed:399.000000 +I (86204) example: expect speed: 0.000000 real_pulses:0 +I (86204) example: new speed:399.000000 +I (86214) example: expect speed: 0.000000 real_pulses:0 +I (86214) example: new speed:399.000000 +I (86224) example: expect speed: 0.000000 real_pulses:0 +I (86224) example: new speed:399.000000 +I (86234) example: expect speed: 0.000000 real_pulses:0 +I (86234) example: new speed:399.000000 +I (86244) example: expect speed: 0.000000 real_pulses:0 +I (86244) example: new speed:399.000000 +I (86254) example: expect speed: 0.000000 real_pulses:0 +I (86254) example: new speed:399.000000 +I (86264) example: expect speed: 0.000000 real_pulses:0 +I (86274) example: new speed:399.000000 +I (86274) example: expect speed: 0.000000 real_pulses:0 +I (86274) example: new speed:399.000000 +I (86284) example: expect speed: 0.000000 real_pulses:0 +I (86284) example: new speed:399.000000 +I (86294) example: expect speed: 0.000000 real_pulses:0 +I (86294) example: new speed:399.000000 +I (86304) example: expect speed: 0.000000 real_pulses:0 +I (86304) example: new speed:399.000000 +I (86314) example: expect speed: 0.000000 real_pulses:0 +I (86314) example: new speed:399.000000 +I (86324) example: expect speed: 0.000000 real_pulses:0 +I (86324) example: new speed:399.000000 +I (86334) example: expect speed: 0.000000 real_pulses:0 +I (86334) example: new speed:399.000000 +I (86344) example: expect speed: 0.000000 real_pulses:0 +I (86344) example: new speed:399.000000 +I (86354) example: expect speed: 0.000000 real_pulses:0 +I (86354) example: new speed:399.000000 +I (86364) example: expect speed: 0.000000 real_pulses:0 +I (86364) example: new speed:399.000000 +I (86374) example: expect speed: 0.000000 real_pulses:0 +I (86374) example: new speed:399.000000 +I (86384) example: expect speed: 0.000000 real_pulses:0 +I (86384) example: new speed:399.000000 +I (86394) example: expect speed: 0.000000 real_pulses:0 +I (86394) example: new speed:399.000000 +I (86404) example: expect speed: 0.000000 real_pulses:0 +I (86404) example: new speed:399.000000 +I (86414) example: expect speed: 0.000000 real_pulses:0 +I (86414) example: new speed:399.000000 +I (86424) example: expect speed: 0.000000 real_pulses:0 +I (86424) example: new speed:399.000000 +I (86434) example: expect speed: 0.000000 real_pulses:0 +I (86434) example: new speed:399.000000 +I (86444) example: expect speed: 0.000000 real_pulses:0 +I (86444) example: new speed:399.000000 +I (86454) example: expect speed: 0.000000 real_pulses:0 +I (86454) example: new speed:399.000000 +I (86464) example: expect speed: 0.000000 real_pulses:0 +I (86464) example: new speed:399.000000 +I (86474) example: expect speed: 0.000000 real_pulses:0 +I (86484) example: new speed:399.000000 +I (86484) modbus tcp: ModBusSlave_recv() +I (86484) modbus: ModbusSlaveProcess() +I (86484) modbus: check id... +I (86484) modbus: ok +I (86484) modbus: add: 0, length: 10 +I (86484) modbus: Read Holding Registers +I (86484) example: expect speed: 0.000000 real_pulses:0 +I (86494) example: new speed:399.000000 +I (86494) example: expect speed: 0.000000 real_pulses:0 +I (86494) example: new speed:399.000000 +I (86504) example: expect speed: 0.000000 real_pulses:0 +I (86504) example: new speed:399.000000 +I (86514) example: expect speed: 0.000000 real_pulses:0 +I (86514) example: new speed:399.000000 +I (86524) example: expect speed: 0.000000 real_pulses:0 +I (86524) example: new speed:399.000000 +I (86534) example: expect speed: 0.000000 real_pulses:0 +I (86544) example: new speed:399.000000 +I (86544) example: expect speed: 0.000000 real_pulses:0 +I (86544) example: new speed:399.000000 +I (86554) example: expect speed: 0.000000 real_pulses:0 +I (86554) example: new speed:399.000000 +I (86564) example: expect speed: 0.000000 real_pulses:0 +I (86564) example: new speed:399.000000 +I (86574) example: expect speed: 0.000000 real_pulses:0 +I (86574) example: new speed:399.000000 +I (86584) example: expect speed: 0.000000 real_pulses:0 +I (86584) example: new speed:399.000000 +I (86594) example: expect speed: 0.000000 real_pulses:0 +I (86594) example: new speed:399.000000 +I (86604) example: expect speed: 0.000000 real_pulses:0 +I (86604) example: new speed:399.000000 +I (86614) example: expect speed: 0.000000 real_pulses:0 +I (86614) example: new speed:399.000000 +I (86624) example: expect speed: 0.000000 real_pulses:0 +I (86624) example: new speed:399.000000 +I (86634) example: expect speed: 0.000000 real_pulses:0 +I (86634) example: new speed:399.000000 +I (86644) example: expect speed: 0.000000 real_pulses:0 +I (86644) example: new speed:399.000000 +I (86654) example: expect speed: 0.000000 real_pulses:0 +I (86654) example: new speed:399.000000 +I (86664) example: expect speed: 0.000000 real_pulses:0 +I (86664) example: new speed:399.000000 +I (86674) example: expect speed: 0.000000 real_pulses:0 +I (86674) example: new speed:399.000000 +I (86684) example: expect speed: 0.000000 real_pulses:0 +I (86684) example: new speed:399.000000 +I (86694) example: expect speed: 0.000000 real_pulses:0 +I (86694) example: new speed:399.000000 +I (86704) example: expect speed: 0.000000 real_pulses:0 +I (86704) example: new speed:399.000000 +I (86714) example: expect speed: 0.000000 real_pulses:0 +I (86714) example: new speed:399.000000 +I (86724) example: expect speed: 0.000000 real_pulses:0 +I (86724) example: new speed:399.000000 +I (86734) example: expect speed: 0.000000 real_pulses:0 +I (86734) example: new speed:399.000000 +I (86744) example: expect speed: 0.000000 real_pulses:0 +I (86744) example: new speed:399.000000 +I (86754) example: expect speed: 0.000000 real_pulses:0 +I (86754) example: new speed:399.000000 +I (86764) example: expect speed: 0.000000 real_pulses:0 +I (86764) example: new speed:399.000000 +I (86774) example: expect speed: 0.000000 real_pulses:0 +I (86774) example: new speed:399.000000 +I (86784) example: expect speed: 0.000000 real_pulses:0 +I (86784) example: new speed:399.000000 +I (86794) example: expect speed: 0.000000 real_pulses:0 +I (86794) example: new speed:399.000000 +I (86804) example: expect speed: 0.000000 real_pulses:0 +I (86804) example: new speed:399.000000 +I (86814) example: expect speed: 0.000000 real_pulses:0 +I (86814) example: new speed:399.000000 +I (86824) example: expect speed: 0.000000 real_pulses:0 +I (86824) example: new speed:399.000000 +I (86834) example: expect speed: 0.000000 real_pulses:0 +I (86834) example: new speed:399.000000 +I (86844) example: expect speed: 0.000000 real_pulses:0 +I (86844) example: new speed:399.000000 +I (86854) example: expect speed: 0.000000 real_pulses:0 +I (86854) example: new speed:399.000000 +I (86864) example: expect speed: 0.000000 real_pulses:0 +I (86864) example: new speed:399.000000 +I (86874) example: expect speed: 0.000000 real_pulses:0 +I (86874) example: new speed:399.000000 +I (86884) example: expect speed: 0.000000 real_pulses:0 +I (86884) example: new speed:399.000000 +I (86894) example: expect speed: 0.000000 real_pulses:0 +I (86894) example: new speed:399.000000 +I (86904) example: expect speed: 0.000000 real_pulses:0 +I (86904) example: new speed:399.000000 +I (86914) example: expect speed: 0.000000 real_pulses:0 +I (86914) example: new speed:399.000000 +I (86924) example: expect speed: 0.000000 real_pulses:0 +I (86924) example: new speed:399.000000 +I (86934) example: expect speed: 0.000000 real_pulses:0 +I (86934) example: new speed:399.000000 +I (86944) example: expect speed: 0.000000 real_pulses:0 +I (86944) example: new speed:399.000000 +I (86954) example: expect speed: 0.000000 real_pulses:0 +I (86954) example: new speed:399.000000 +I (86964) example: expect speed: 0.000000 real_pulses:0 +I (86964) example: new speed:399.000000 +I (86974) example: expect speed: 0.000000 real_pulses:0 +I (86974) example: new speed:399.000000 +I (86984) example: expect speed: 0.000000 real_pulses:0 +I (86984) example: new speed:399.000000 +I (86994) example: expect speed: 0.000000 real_pulses:0 +I (86994) example: new speed:399.000000 +I (87004) example: expect speed: 0.000000 real_pulses:0 +I (87004) example: new speed:399.000000 +I (87014) example: expect speed: 0.000000 real_pulses:0 +I (87014) example: new speed:399.000000 +I (87024) example: expect speed: 0.000000 real_pulses:0 +I (87024) example: new speed:399.000000 +I (87034) example: expect speed: 0.000000 real_pulses:0 +I (87034) example: new speed:399.000000 +I (87044) example: expect speed: 0.000000 real_pulses:0 +I (87044) example: new speed:399.000000 +I (87054) example: expect speed: 0.000000 real_pulses:0 +I (87054) example: new speed:399.000000 +I (87064) example: expect speed: 0.000000 real_pulses:0 +I (87064) example: new speed:399.000000 +I (87074) example: expect speed: 0.000000 real_pulses:0 +I (87074) example: new speed:399.000000 +I (87084) example: expect speed: 0.000000 real_pulses:0 +I (87084) example: new speed:399.000000 +I (87094) example: expect speed: 0.000000 real_pulses:0 +I (87094) example: new speed:399.000000 +I (87104) example: expect speed: 0.000000 real_pulses:0 +I (87104) example: new speed:399.000000 +I (87114) example: expect speed: 0.000000 real_pulses:0 +I (87114) example: new speed:399.000000 +I (87124) example: expect speed: 0.000000 real_pulses:0 +I (87124) example: new speed:399.000000 +I (87134) example: expect speed: 0.000000 real_pulses:0 +I (87134) example: new speed:399.000000 +I (87144) example: expect speed: 0.000000 real_pulses:0 +I (87144) example: new speed:399.000000 +I (87154) example: expect speed: 0.000000 real_pulses:0 +I (87154) example: new speed:399.000000 +I (87164) example: expect speed: 0.000000 real_pulses:0 +I (87164) example: new speed:399.000000 +I (87174) example: expect speed: 0.000000 real_pulses:0 +I (87174) example: new speed:399.000000 +I (87184) example: expect speed: 0.000000 real_pulses:0 +I (87184) example: new speed:399.000000 +I (87194) example: expect speed: 0.000000 real_pulses:0 +I (87194) example: new speed:399.000000 +I (87204) example: expect speed: 0.000000 real_pulses:0 +I (87204) example: new speed:399.000000 +I (87214) example: expect speed: 0.000000 real_pulses:0 +I (87214) example: new speed:399.000000 +I (87224) example: expect speed: 0.000000 real_pulses:0 +I (87224) example: new speed:399.000000 +I (87234) example: expect speed: 0.000000 real_pulses:0 +I (87234) example: new speed:399.000000 +I (87244) example: expect speed: 0.000000 real_pulses:0 +I (87244) example: new speed:399.000000 +I (87254) example: expect speed: 0.000000 real_pulses:0 +I (87254) example: new speed:399.000000 +I (87264) example: expect speed: 0.000000 real_pulses:0 +I (87264) example: new speed:399.000000 +I (87274) example: expect speed: 0.000000 real_pulses:0 +I (87274) example: new speed:399.000000 +I (87284) example: expect speed: 0.000000 real_pulses:0 +I (87284) example: new speed:399.000000 +I (87294) example: expect speed: 0.000000 real_pulses:0 +I (87294) example: new speed:399.000000 +I (87304) example: expect speed: 0.000000 real_pulses:0 +I (87304) example: new speed:399.000000 +I (87314) example: expect speed: 0.000000 real_pulses:0 +I (87314) example: new speed:399.000000 +I (87324) example: expect speed: 0.000000 real_pulses:0 +I (87324) example: new speed:399.000000 +I (87334) example: expect speed: 0.000000 real_pulses:0 +I (87334) example: new speed:399.000000 +I (87344) example: expect speed: 0.000000 real_pulses:0 +I (87344) example: new speed:399.000000 +I (87354) example: expect speed: 0.000000 real_pulses:0 +I (87354) example: new speed:399.000000 +I (87364) example: expect speed: 0.000000 real_pulses:0 +I (87364) example: new speed:399.000000 +I (87374) example: expect speed: 0.000000 real_pulses:0 +I (87374) example: new speed:399.000000 +I (87384) example: expect speed: 0.000000 real_pulses:0 +I (87384) example: new speed:399.000000 +I (87394) example: expect speed: 0.000000 real_pulses:0 +I (87394) example: new speed:399.000000 +I (87404) example: expect speed: 0.000000 real_pulses:0 +I (87404) example: new speed:399.000000 +I (87414) example: expect speed: 0.000000 real_pulses:0 +I (87414) example: new speed:399.000000 +I (87424) example: expect speed: 0.000000 real_pulses:0 +I (87424) example: new speed:399.000000 +I (87434) example: expect speed: 0.000000 real_pulses:0 +I (87434) example: new speed:399.000000 +I (87444) example: expect speed: 0.000000 real_pulses:0 +I (87444) example: new speed:399.000000 +I (87454) example: expect speed: 0.000000 real_pulses:0 +I (87454) example: new speed:399.000000 +I (87464) example: expect speed: 0.000000 real_pulses:0 +I (87464) example: new speed:399.000000 +I (87474) example: expect speed: 0.000000 real_pulses:0 +I (87474) example: new speed:399.000000 +I (87484) example: expect speed: 0.000000 real_pulses:0 +I (87484) example: new speed:399.000000 +I (87494) example: expect speed: 0.000000 real_pulses:0 +I (87504) example: new speed:399.000000 +I (87504) modbus tcp: ModBusSlave_recv() +I (87504) modbus: ModbusSlaveProcess() +I (87504) modbus: check id... +I (87504) modbus: ok +I (87504) modbus: add: 0, length: 10 +I (87504) modbus: Read Holding Registers +I (87504) example: expect speed: 0.000000 real_pulses:0 +I (87514) example: new speed:399.000000 +I (87514) example: expect speed: 0.000000 real_pulses:0 +I (87514) example: new speed:399.000000 +I (87524) example: expect speed: 0.000000 real_pulses:0 +I (87524) example: new speed:399.000000 +I (87534) example: expect speed: 0.000000 real_pulses:0 +I (87534) example: new speed:399.000000 +I (87544) example: expect speed: 0.000000 real_pulses:0 +I (87544) example: new speed:399.000000 +I (87554) example: expect speed: 0.000000 real_pulses:0 +I (87554) example: new speed:399.000000 +I (87564) example: expect speed: 0.000000 real_pulses:0 +I (87564) example: new speed:399.000000 +I (87574) example: expect speed: 0.000000 real_pulses:0 +I (87574) example: new speed:399.000000 +I (87584) example: expect speed: 0.000000 real_pulses:0 +I (87584) example: new speed:399.000000 +I (87594) example: expect speed: 0.000000 real_pulses:0 +I (87594) example: new speed:399.000000 +I (87604) example: expect speed: 0.000000 real_pulses:0 +I (87614) example: new speed:399.000000 +I (87614) example: expect speed: 0.000000 real_pulses:0 +I (87614) example: new speed:399.000000 +I (87624) example: expect speed: 0.000000 real_pulses:0 +I (87624) example: new speed:399.000000 +I (87634) example: expect speed: 0.000000 real_pulses:0 +I (87634) example: new speed:399.000000 +I (87644) example: expect speed: 0.000000 real_pulses:0 +I (87644) example: new speed:399.000000 +I (87654) example: expect speed: 0.000000 real_pulses:0 +I (87664) example: new speed:399.000000 +I (87664) example: expect speed: 0.000000 real_pulses:0 +I (87664) example: new speed:399.000000 +I (87674) example: expect speed: 0.000000 real_pulses:0 +I (87674) example: new speed:399.000000 +I (87684) example: expect speed: 0.000000 real_pulses:0 +I (87684) example: new speed:399.000000 +I (87694) example: expect speed: 0.000000 real_pulses:0 +I (87694) example: new speed:399.000000 +I (87704) example: expect speed: 0.000000 real_pulses:0 +I (87704) example: new speed:399.000000 +I (87714) example: expect speed: 0.000000 real_pulses:0 +I (87724) example: new speed:399.000000 +I (87724) example: expect speed: 0.000000 real_pulses:0 +I (87724) example: new speed:399.000000 +I (87734) example: expect speed: 0.000000 real_pulses:0 +I (87734) example: new speed:399.000000 +I (87744) example: expect speed: 0.000000 real_pulses:0 +I (87744) example: new speed:399.000000 +I (87754) example: expect speed: 0.000000 real_pulses:0 +I (87754) example: new speed:399.000000 +I (87764) example: expect speed: 0.000000 real_pulses:0 +I (87764) example: new speed:399.000000 +I (87774) example: expect speed: 0.000000 real_pulses:0 +I (87774) example: new speed:399.000000 +I (87784) example: expect speed: 0.000000 real_pulses:0 +I (87784) example: new speed:399.000000 +I (87794) example: expect speed: 0.000000 real_pulses:0 +I (87794) example: new speed:399.000000 +I (87804) example: expect speed: 0.000000 real_pulses:0 +I (87804) example: new speed:399.000000 +I (87814) example: expect speed: 0.000000 real_pulses:0 +I (87814) example: new speed:399.000000 +I (87824) example: expect speed: 0.000000 real_pulses:0 +I (87824) example: new speed:399.000000 +I (87834) example: expect speed: 0.000000 real_pulses:0 +I (87834) example: new speed:399.000000 +I (87844) example: expect speed: 0.000000 real_pulses:0 +I (87844) example: new speed:399.000000 +I (87854) example: expect speed: 0.000000 real_pulses:0 +I (87854) example: new speed:399.000000 +I (87864) example: expect speed: 0.000000 real_pulses:0 +I (87864) example: new speed:399.000000 +I (87874) example: expect speed: 0.000000 real_pulses:0 +I (87874) example: new speed:399.000000 +I (87884) example: expect speed: 0.000000 real_pulses:0 +I (87884) example: new speed:399.000000 +I (87894) example: expect speed: 0.000000 real_pulses:0 +I (87894) example: new speed:399.000000 +I (87904) example: expect speed: 0.000000 real_pulses:0 +I (87904) example: new speed:399.000000 +I (87914) example: expect speed: 0.000000 real_pulses:0 +I (87914) example: new speed:399.000000 +I (87924) example: expect speed: 0.000000 real_pulses:0 +I (87924) example: new speed:399.000000 +I (87934) example: expect speed: 0.000000 real_pulses:0 +I (87934) example: new speed:399.000000 +I (87944) example: expect speed: 0.000000 real_pulses:0 +I (87944) example: new speed:399.000000 +I (87954) example: expect speed: 0.000000 real_pulses:0 +I (87954) example: new speed:399.000000 +I (87964) example: expect speed: 0.000000 real_pulses:0 +I (87964) example: new speed:399.000000 +I (87974) example: expect speed: 0.000000 real_pulses:0 +I (87974) example: new speed:399.000000 +I (87984) example: expect speed: 0.000000 real_pulses:0 +I (87984) example: new speed:399.000000 +I (87994) example: expect speed: 0.000000 real_pulses:0 +I (87994) example: new speed:399.000000 +I (88004) example: expect speed: 0.000000 real_pulses:0 +I (88004) example: new speed:399.000000 +I (88014) example: expect speed: 0.000000 real_pulses:0 +I (88014) example: new speed:399.000000 +I (88024) example: expect speed: 0.000000 real_pulses:0 +I (88024) example: new speed:399.000000 +I (88034) example: expect speed: 0.000000 real_pulses:0 +I (88034) example: new speed:399.000000 +I (88044) example: expect speed: 0.000000 real_pulses:0 +I (88044) example: new speed:399.000000 +I (88054) example: expect speed: 0.000000 real_pulses:0 +I (88054) example: new speed:399.000000 +I (88064) example: expect speed: 0.000000 real_pulses:0 +I (88064) example: new speed:399.000000 +I (88074) example: expect speed: 0.000000 real_pulses:0 +I (88074) example: new speed:399.000000 +I (88084) example: expect speed: 0.000000 real_pulses:0 +I (88084) example: new speed:399.000000 +I (88094) example: expect speed: 0.000000 real_pulses:0 +I (88094) example: new speed:399.000000 +I (88104) example: expect speed: 0.000000 real_pulses:0 +I (88104) example: new speed:399.000000 +I (88114) example: expect speed: 0.000000 real_pulses:0 +I (88114) example: new speed:399.000000 +I (88124) example: expect speed: 0.000000 real_pulses:0 +I (88124) example: new speed:399.000000 +I (88134) example: expect speed: 0.000000 real_pulses:0 +I (88134) example: new speed:399.000000 +I (88144) example: expect speed: 0.000000 real_pulses:0 +I (88144) example: new speed:399.000000 +I (88154) example: expect speed: 0.000000 real_pulses:0 +I (88154) example: new speed:399.000000 +I (88164) example: expect speed: 0.000000 real_pulses:0 +I (88164) example: new speed:399.000000 +I (88174) example: expect speed: 0.000000 real_pulses:0 +I (88174) example: new speed:399.000000 +I (88184) example: expect speed: 0.000000 real_pulses:0 +I (88184) example: new speed:399.000000 +I (88194) example: expect speed: 0.000000 real_pulses:0 +I (88194) example: new speed:399.000000 +I (88204) example: expect speed: 0.000000 real_pulses:0 +I (88204) example: new speed:399.000000 +I (88214) example: expect speed: 0.000000 real_pulses:0 +I (88214) example: new speed:399.000000 +I (88224) example: expect speed: 0.000000 real_pulses:0 +I (88224) example: new speed:399.000000 +I (88234) example: expect speed: 0.000000 real_pulses:0 +I (88234) example: new speed:399.000000 +I (88244) example: expect speed: 0.000000 real_pulses:0 +I (88244) example: new speed:399.000000 +I (88254) example: expect speed: 0.000000 real_pulses:0 +I (88254) example: new speed:399.000000 +I (88264) example: expect speed: 0.000000 real_pulses:0 +I (88264) example: new speed:399.000000 +I (88274) example: expect speed: 0.000000 real_pulses:0 +I (88274) example: new speed:399.000000 +I (88284) example: expect speed: 0.000000 real_pulses:0 +I (88284) example: new speed:399.000000 +I (88294) example: expect speed: 0.000000 real_pulses:0 +I (88294) example: new speed:399.000000 +I (88304) example: expect speed: 0.000000 real_pulses:0 +I (88304) example: new speed:399.000000 +I (88314) example: expect speed: 0.000000 real_pulses:0 +I (88314) example: new speed:399.000000 +I (88324) example: expect speed: 0.000000 real_pulses:0 +I (88324) example: new speed:399.000000 +I (88334) example: expect speed: 0.000000 real_pulses:0 +I (88334) example: new speed:399.000000 +I (88344) example: expect speed: 0.000000 real_pulses:0 +I (88344) example: new speed:399.000000 +I (88354) example: expect speed: 0.000000 real_pulses:0 +I (88354) example: new speed:399.000000 +I (88364) example: expect speed: 0.000000 real_pulses:0 +I (88364) example: new speed:399.000000 +I (88374) example: expect speed: 0.000000 real_pulses:0 +I (88374) example: new speed:399.000000 +I (88384) example: expect speed: 0.000000 real_pulses:0 +I (88384) example: new speed:399.000000 +I (88394) example: expect speed: 0.000000 real_pulses:0 +I (88394) example: new speed:399.000000 +I (88404) example: expect speed: 0.000000 real_pulses:0 +I (88404) example: new speed:399.000000 +I (88414) example: expect speed: 0.000000 real_pulses:0 +I (88414) example: new speed:399.000000 +I (88424) example: expect speed: 0.000000 real_pulses:0 +I (88424) example: new speed:399.000000 +I (88434) example: expect speed: 0.000000 real_pulses:0 +I (88434) example: new speed:399.000000 +I (88444) example: expect speed: 0.000000 real_pulses:0 +I (88444) example: new speed:399.000000 +I (88454) example: expect speed: 0.000000 real_pulses:0 +I (88454) example: new speed:399.000000 +I (88464) example: expect speed: 0.000000 real_pulses:0 +I (88464) example: new speed:399.000000 +I (88474) example: expect speed: 0.000000 real_pulses:0 +I (88474) example: new speed:399.000000 +I (88484) example: expect speed: 0.000000 real_pulses:0 +I (88484) example: new speed:399.000000 +I (88494) example: expect speed: 0.000000 real_pulses:0 +I (88494) example: new speed:399.000000 +I (88504) example: expect speed: 0.000000 real_pulses:0 +I (88504) example: new speed:399.000000 +I (88514) example: expect speed: 0.000000 real_pulses:0 +I (88514) example: new speed:399.000000 +I (88524) modbus tcp: ModBusSlave_recv() +I (88524) example: expect speed: 0.000000 real_pulses:0 +I (88524) modbus: ModbusSlaveProcess() +I (88534) example: new speed:399.000000 +I (88534) modbus: check id... +I (88534) modbus: ok +I (88534) modbus: add: 0, length: 10 +I (88534) modbus: Read Holding Registers +I (88534) example: expect speed: 0.000000 real_pulses:0 +I (88544) example: new speed:399.000000 +I (88544) example: expect speed: 0.000000 real_pulses:0 +I (88544) example: new speed:399.000000 +I (88554) example: expect speed: 0.000000 real_pulses:0 +I (88554) example: new speed:399.000000 +I (88564) example: expect speed: 0.000000 real_pulses:0 +I (88564) example: new speed:399.000000 +I (88574) example: expect speed: 0.000000 real_pulses:0 +I (88574) example: new speed:399.000000 +I (88584) example: expect speed: 0.000000 real_pulses:0 +I (88594) example: new speed:399.000000 +I (88594) example: expect speed: 0.000000 real_pulses:0 +I (88594) example: new speed:399.000000 +I (88604) example: expect speed: 0.000000 real_pulses:0 +I (88604) example: new speed:399.000000 +I (88614) example: expect speed: 0.000000 real_pulses:0 +I (88614) example: new speed:399.000000 +I (88624) example: expect speed: 0.000000 real_pulses:0 +I (88624) example: new speed:399.000000 +I (88634) example: expect speed: 0.000000 real_pulses:0 +I (88644) example: new speed:399.000000 +I (88644) example: expect speed: 0.000000 real_pulses:0 +I (88644) example: new speed:399.000000 +I (88654) example: expect speed: 0.000000 real_pulses:0 +I (88654) example: new speed:399.000000 +I (88664) example: expect speed: 0.000000 real_pulses:0 +I (88664) example: new speed:399.000000 +I (88674) example: expect speed: 0.000000 real_pulses:0 +I (88674) example: new speed:399.000000 +I (88684) example: expect speed: 0.000000 real_pulses:0 +I (88684) example: new speed:399.000000 +I (88694) example: expect speed: 0.000000 real_pulses:0 +I (88694) example: new speed:399.000000 +I (88704) example: expect speed: 0.000000 real_pulses:0 +I (88704) example: new speed:399.000000 +I (88714) example: expect speed: 0.000000 real_pulses:0 +I (88714) example: new speed:399.000000 +I (88724) example: expect speed: 0.000000 real_pulses:0 +I (88724) example: new speed:399.000000 +I (88734) example: expect speed: 0.000000 real_pulses:0 +I (88734) example: new speed:399.000000 +I (88744) example: expect speed: 0.000000 real_pulses:0 +I (88744) example: new speed:399.000000 +I (88754) example: expect speed: 0.000000 real_pulses:0 +I (88754) example: new speed:399.000000 +I (88764) example: expect speed: 0.000000 real_pulses:0 +I (88764) example: new speed:399.000000 +I (88774) example: expect speed: 0.000000 real_pulses:0 +I (88774) example: new speed:399.000000 +I (88784) example: expect speed: 0.000000 real_pulses:0 +I (88784) example: new speed:399.000000 +I (88794) example: expect speed: 0.000000 real_pulses:0 +I (88794) example: new speed:399.000000 +I (88804) example: expect speed: 0.000000 real_pulses:0 +I (88804) example: new speed:399.000000 +I (88814) example: expect speed: 0.000000 real_pulses:0 +I (88814) example: new speed:399.000000 +I (88824) example: expect speed: 0.000000 real_pulses:0 +I (88824) example: new speed:399.000000 +I (88834) example: expect speed: 0.000000 real_pulses:0 +I (88834) example: new speed:399.000000 +I (88844) example: expect speed: 0.000000 real_pulses:0 +I (88844) example: new speed:399.000000 +I (88854) example: expect speed: 0.000000 real_pulses:0 +I (88854) example: new speed:399.000000 +I (88864) example: expect speed: 0.000000 real_pulses:0 +I (88864) example: new speed:399.000000 +I (88874) example: expect speed: 0.000000 real_pulses:0 +I (88874) example: new speed:399.000000 +I (88884) example: expect speed: 0.000000 real_pulses:0 +I (88884) example: new speed:399.000000 +I (88894) example: expect speed: 0.000000 real_pulses:0 +I (88894) example: new speed:399.000000 +I (88904) example: expect speed: 0.000000 real_pulses:0 +I (88904) example: new speed:399.000000 +I (88914) example: expect speed: 0.000000 real_pulses:0 +I (88914) example: new speed:399.000000 +I (88924) example: expect speed: 0.000000 real_pulses:0 +I (88924) example: new speed:399.000000 +I (88934) example: expect speed: 0.000000 real_pulses:0 +I (88934) example: new speed:399.000000 +I (88944) example: expect speed: 0.000000 real_pulses:0 +I (88944) example: new speed:399.000000 +I (88954) example: expect speed: 0.000000 real_pulses:0 +I (88954) example: new speed:399.000000 +I (88964) example: expect speed: 0.000000 real_pulses:0 +I (88964) example: new speed:399.000000 +I (88974) example: expect speed: 0.000000 real_pulses:0 +I (88974) example: new speed:399.000000 +I (88984) example: expect speed: 0.000000 real_pulses:0 +I (88984) example: new speed:399.000000 +I (88994) example: expect speed: 0.000000 real_pulses:0 +I (88994) example: new speed:399.000000 +I (89004) example: expect speed: 0.000000 real_pulses:0 +I (89004) example: new speed:399.000000 +I (89014) example: expect speed: 0.000000 real_pulses:0 +I (89014) example: new speed:399.000000 +I (89024) example: expect speed: 0.000000 real_pulses:0 +I (89024) example: new speed:399.000000 +I (89034) example: expect speed: 0.000000 real_pulses:0 +I (89034) example: new speed:399.000000 +I (89044) example: expect speed: 0.000000 real_pulses:0 +I (89044) example: new speed:399.000000 +I (89054) example: expect speed: 0.000000 real_pulses:0 +I (89054) example: new speed:399.000000 +I (89064) example: expect speed: 0.000000 real_pulses:0 +I (89064) example: new speed:399.000000 +I (89074) example: expect speed: 0.000000 real_pulses:0 +I (89074) example: new speed:399.000000 +I (89084) example: expect speed: 0.000000 real_pulses:0 +I (89084) example: new speed:399.000000 +I (89094) example: expect speed: 0.000000 real_pulses:0 +I (89094) example: new speed:399.000000 +I (89104) example: expect speed: 0.000000 real_pulses:0 +I (89104) example: new speed:399.000000 +I (89114) example: expect speed: 0.000000 real_pulses:0 +I (89114) example: new speed:399.000000 +I (89124) example: expect speed: 0.000000 real_pulses:0 +I (89124) example: new speed:399.000000 +I (89134) example: expect speed: 0.000000 real_pulses:0 +I (89134) example: new speed:399.000000 +I (89144) example: expect speed: 0.000000 real_pulses:0 +I (89144) example: new speed:399.000000 +I (89154) example: expect speed: 0.000000 real_pulses:0 +I (89154) example: new speed:399.000000 +I (89164) example: expect speed: 0.000000 real_pulses:0 +I (89164) example: new speed:399.000000 +I (89174) example: expect speed: 0.000000 real_pulses:0 +I (89174) example: new speed:399.000000 +I (89184) example: expect speed: 0.000000 real_pulses:0 +I (89184) example: new speed:399.000000 +I (89194) example: expect speed: 0.000000 real_pulses:0 +I (89194) example: new speed:399.000000 +I (89204) example: expect speed: 0.000000 real_pulses:0 +I (89204) example: new speed:399.000000 +I (89214) example: expect speed: 0.000000 real_pulses:0 +I (89214) example: new speed:399.000000 +I (89224) example: expect speed: 0.000000 real_pulses:0 +I (89224) example: new speed:399.000000 +I (89234) example: expect speed: 0.000000 real_pulses:0 +I (89244) example: new speed:399.000000 +I (89244) example: expect speed: 0.000000 real_pulses:0 +I (89244) example: new speed:399.000000 +I (89254) example: expect speed: 0.000000 real_pulses:0 +I (89254) example: new speed:399.000000 +I (89264) example: expect speed: 0.000000 real_pulses:0 +I (89264) example: new speed:399.000000 +I (89274) example: expect speed: 0.000000 real_pulses:0 +I (89274) example: new speed:399.000000 +I (89284) example: expect speed: 0.000000 real_pulses:0 +I (89284) example: new speed:399.000000 +I (89294) example: expect speed: 0.000000 real_pulses:0 +I (89294) example: new speed:399.000000 +I (89304) example: expect speed: 0.000000 real_pulses:0 +I (89304) example: new speed:399.000000 +I (89314) example: expect speed: 0.000000 real_pulses:0 +I (89314) example: new speed:399.000000 +I (89324) example: expect speed: 0.000000 real_pulses:0 +I (89324) example: new speed:399.000000 +I (89334) example: expect speed: 0.000000 real_pulses:0 +I (89334) example: new speed:399.000000 +I (89344) example: expect speed: 0.000000 real_pulses:0 +I (89344) example: new speed:399.000000 +I (89354) example: expect speed: 0.000000 real_pulses:0 +I (89354) example: new speed:399.000000 +I (89364) example: expect speed: 0.000000 real_pulses:0 +I (89364) example: new speed:399.000000 +I (89374) example: expect speed: 0.000000 real_pulses:0 +I (89374) example: new speed:399.000000 +I (89384) example: expect speed: 0.000000 real_pulses:0 +I (89384) example: new speed:399.000000 +I (89394) example: expect speed: 0.000000 real_pulses:0 +I (89394) example: new speed:399.000000 +I (89404) example: expect speed: 0.000000 real_pulses:0 +I (89404) example: new speed:399.000000 +I (89414) example: expect speed: 0.000000 real_pulses:0 +I (89414) example: new speed:399.000000 +I (89424) example: expect speed: 0.000000 real_pulses:0 +I (89424) example: new speed:399.000000 +I (89434) example: expect speed: 0.000000 real_pulses:0 +I (89434) example: new speed:399.000000 +I (89444) example: expect speed: 0.000000 real_pulses:0 +I (89444) example: new speed:399.000000 +I (89454) example: expect speed: 0.000000 real_pulses:0 +I (89454) example: new speed:399.000000 +I (89464) example: expect speed: 0.000000 real_pulses:0 +I (89464) example: new speed:399.000000 +I (89474) example: expect speed: 0.000000 real_pulses:0 +I (89474) example: new speed:399.000000 +I (89484) example: expect speed: 0.000000 real_pulses:0 +I (89484) example: new speed:399.000000 +I (89494) example: expect speed: 0.000000 real_pulses:0 +I (89494) example: new speed:399.000000 +I (89504) example: expect speed: 0.000000 real_pulses:0 +I (89504) example: new speed:399.000000 +I (89514) example: expect speed: 0.000000 real_pulses:0 +I (89514) example: new speed:399.000000 +I (89524) example: expect speed: 0.000000 real_pulses:0 +I (89524) example: new speed:399.000000 +I (89534) example: expect speed: 0.000000 real_pulses:0 +I (89534) example: new speed:399.000000 +I (89544) example: expect speed: 0.000000 real_pulses:0 +I (89554) example: new speed:399.000000 +I (89554) modbus tcp: ModBusSlave_recv() +I (89554) modbus: ModbusSlaveProcess() +I (89554) modbus: check id... +I (89554) modbus: ok +I (89554) modbus: add: 0, length: 10 +I (89554) modbus: Read Holding Registers +I (89554) example: expect speed: 0.000000 real_pulses:0 +I (89564) example: new speed:399.000000 +I (89564) example: expect speed: 0.000000 real_pulses:0 +I (89564) example: new speed:399.000000 +I (89574) example: expect speed: 0.000000 real_pulses:0 +I (89574) example: new speed:399.000000 +I (89584) example: expect speed: 0.000000 real_pulses:0 +I (89584) example: new speed:399.000000 +I (89594) example: expect speed: 0.000000 real_pulses:0 +I (89594) example: new speed:399.000000 +I (89604) example: expect speed: 0.000000 real_pulses:0 +I (89604) example: new speed:399.000000 +I (89614) example: expect speed: 0.000000 real_pulses:0 +I (89614) example: new speed:399.000000 +I (89624) example: expect speed: 0.000000 real_pulses:0 +I (89624) example: new speed:399.000000 +I (89634) example: expect speed: 0.000000 real_pulses:0 +I (89634) example: new speed:399.000000 +I (89644) example: expect speed: 0.000000 real_pulses:0 +I (89654) example: new speed:399.000000 +I (89654) example: expect speed: 0.000000 real_pulses:0 +I (89664) example: new speed:399.000000 +I (89664) example: expect speed: 0.000000 real_pulses:0 +I (89664) example: new speed:399.000000 +I (89674) example: expect speed: 0.000000 real_pulses:0 +I (89674) example: new speed:399.000000 +I (89684) example: expect speed: 0.000000 real_pulses:0 +I (89684) example: new speed:399.000000 +I (89694) example: expect speed: 0.000000 real_pulses:0 +I (89694) example: new speed:399.000000 +I (89704) example: expect speed: 0.000000 real_pulses:0 +I (89714) example: new speed:399.000000 +I (89714) example: expect speed: 0.000000 real_pulses:0 +I (89714) example: new speed:399.000000 +I (89724) example: expect speed: 0.000000 real_pulses:0 +I (89724) example: new speed:399.000000 +I (89734) example: expect speed: 0.000000 real_pulses:0 +I (89734) example: new speed:399.000000 +I (89744) example: expect speed: 0.000000 real_pulses:0 +I (89744) example: new speed:399.000000 +I (89754) example: expect speed: 0.000000 real_pulses:0 +I (89754) example: new speed:399.000000 +I (89764) example: expect speed: 0.000000 real_pulses:0 +I (89764) example: new speed:399.000000 +I (89774) example: expect speed: 0.000000 real_pulses:0 +I (89774) example: new speed:399.000000 +I (89784) example: expect speed: 0.000000 real_pulses:0 +I (89784) example: new speed:399.000000 +I (89794) example: expect speed: 0.000000 real_pulses:0 +I (89794) example: new speed:399.000000 +I (89804) example: expect speed: 0.000000 real_pulses:0 +I (89804) example: new speed:399.000000 +I (89814) example: expect speed: 0.000000 real_pulses:0 +I (89814) example: new speed:399.000000 +I (89824) example: expect speed: 0.000000 real_pulses:0 +I (89824) example: new speed:399.000000 +I (89834) example: expect speed: 0.000000 real_pulses:0 +I (89834) example: new speed:399.000000 +I (89844) example: expect speed: 0.000000 real_pulses:0 +I (89844) example: new speed:399.000000 +I (89854) example: expect speed: 0.000000 real_pulses:0 +I (89854) example: new speed:399.000000 +I (89864) example: expect speed: 0.000000 real_pulses:0 +I (89864) example: new speed:399.000000 +I (89874) example: expect speed: 0.000000 real_pulses:0 +I (89874) example: new speed:399.000000 +I (89884) example: expect speed: 0.000000 real_pulses:0 +I (89884) example: new speed:399.000000 +I (89894) example: expect speed: 0.000000 real_pulses:0 +I (89894) example: new speed:399.000000 +I (89904) example: expect speed: 0.000000 real_pulses:0 +I (89904) example: new speed:399.000000 +I (89914) example: expect speed: 0.000000 real_pulses:0 +I (89914) example: new speed:399.000000 +I (89924) example: expect speed: 0.000000 real_pulses:0 +I (89924) example: new speed:399.000000 +I (89934) example: expect speed: 0.000000 real_pulses:0 +I (89934) example: new speed:399.000000 +I (89944) example: expect speed: 0.000000 real_pulses:0 +I (89944) example: new speed:399.000000 +I (89954) example: expect speed: 0.000000 real_pulses:0 +I (89954) example: new speed:399.000000 +I (89964) example: expect speed: 0.000000 real_pulses:0 +I (89964) example: new speed:399.000000 +I (89974) example: expect speed: 0.000000 real_pulses:0 +I (89974) example: new speed:399.000000 +I (89984) example: expect speed: 0.000000 real_pulses:0 +I (89984) example: new speed:399.000000 +I (89994) example: expect speed: 0.000000 real_pulses:0 +I (89994) example: new speed:399.000000 +I (90004) example: expect speed: 0.000000 real_pulses:0 +I (90004) example: new speed:399.000000 +I (90014) example: expect speed: 0.000000 real_pulses:0 +I (90014) example: new speed:399.000000 +I (90024) example: expect speed: 0.000000 real_pulses:0 +I (90024) example: new speed:399.000000 +I (90034) example: expect speed: 0.000000 real_pulses:0 +I (90034) example: new speed:399.000000 +I (90044) example: expect speed: 0.000000 real_pulses:0 +I (90044) example: new speed:399.000000 +I (90054) example: expect speed: 0.000000 real_pulses:0 +I (90064) example: new speed:399.000000 +I (90064) example: expect speed: 0.000000 real_pulses:0 +I (90074) example: new speed:399.000000 +I (90074) example: expect speed: 0.000000 real_pulses:0 +I (90074) example: new speed:399.000000 +I (90084) example: expect speed: 0.000000 real_pulses:0 +I (90084) example: new speed:399.000000 +I (90094) example: expect speed: 0.000000 real_pulses:0 +I (90094) example: new speed:399.000000 +I (90104) example: expect speed: 0.000000 real_pulses:0 +I (90104) example: new speed:399.000000 +I (90114) example: expect speed: 0.000000 real_pulses:0 +I (90114) example: new speed:399.000000 +I (90124) example: expect speed: 0.000000 real_pulses:0 +I (90124) example: new speed:399.000000 +I (90134) example: expect speed: 0.000000 real_pulses:0 +I (90134) example: new speed:399.000000 +I (90144) example: expect speed: 0.000000 real_pulses:0 +I (90144) example: new speed:399.000000 +I (90154) example: expect speed: 0.000000 real_pulses:0 +I (90154) example: new speed:399.000000 +I (90164) example: expect speed: 0.000000 real_pulses:0 +I (90164) example: new speed:399.000000 +I (90174) example: expect speed: 0.000000 real_pulses:0 +I (90174) example: new speed:399.000000 +I (90184) example: expect speed: 0.000000 real_pulses:0 +I (90184) example: new speed:399.000000 +I (90194) example: expect speed: 0.000000 real_pulses:0 +I (90194) example: new speed:399.000000 +I (90204) example: expect speed: 0.000000 real_pulses:0 +I (90204) example: new speed:399.000000 +I (90214) example: expect speed: 0.000000 real_pulses:0 +I (90214) example: new speed:399.000000 +I (90224) example: expect speed: 0.000000 real_pulses:0 +I (90224) example: new speed:399.000000 +I (90234) example: expect speed: 0.000000 real_pulses:0 +I (90234) example: new speed:399.000000 +I (90244) example: expect speed: 0.000000 real_pulses:0 +I (90244) example: new speed:399.000000 +I (90254) example: expect speed: 0.000000 real_pulses:0 +I (90254) example: new speed:399.000000 +I (90264) example: expect speed: 0.000000 real_pulses:0 +I (90264) example: new speed:399.000000 +I (90274) example: expect speed: 0.000000 real_pulses:0 +I (90274) example: new speed:399.000000 +I (90284) example: expect speed: 0.000000 real_pulses:0 +I (90284) example: new speed:399.000000 +I (90294) example: expect speed: 0.000000 real_pulses:0 +I (90294) example: new speed:399.000000 +I (90304) example: expect speed: 0.000000 real_pulses:0 +I (90304) example: new speed:399.000000 +I (90314) example: expect speed: 0.000000 real_pulses:0 +I (90314) example: new speed:399.000000 +I (90324) example: expect speed: 0.000000 real_pulses:0 +I (90324) example: new speed:399.000000 +I (90334) example: expect speed: 0.000000 real_pulses:0 +I (90334) example: new speed:399.000000 +I (90344) example: expect speed: 0.000000 real_pulses:0 +I (90344) example: new speed:399.000000 +I (90354) example: expect speed: 0.000000 real_pulses:0 +I (90354) example: new speed:399.000000 +I (90364) example: expect speed: 0.000000 real_pulses:0 +I (90364) example: new speed:399.000000 +I (90374) example: expect speed: 0.000000 real_pulses:0 +I (90374) example: new speed:399.000000 +I (90384) example: expect speed: 0.000000 real_pulses:0 +I (90384) example: new speed:399.000000 +I (90394) example: expect speed: 0.000000 real_pulses:0 +I (90394) example: new speed:399.000000 +I (90404) example: expect speed: 0.000000 real_pulses:0 +I (90404) example: new speed:399.000000 +I (90414) example: expect speed: 0.000000 real_pulses:0 +I (90414) example: new speed:399.000000 +I (90424) example: expect speed: 0.000000 real_pulses:0 +I (90424) example: new speed:399.000000 +I (90434) example: expect speed: 0.000000 real_pulses:0 +I (90434) example: new speed:399.000000 +I (90444) example: expect speed: 0.000000 real_pulses:0 +I (90444) example: new speed:399.000000 +I (90454) example: expect speed: 0.000000 real_pulses:0 +I (90454) example: new speed:399.000000 +I (90464) example: expect speed: 0.000000 real_pulses:0 +I (90464) example: new speed:399.000000 +I (90474) example: expect speed: 0.000000 real_pulses:0 +I (90474) example: new speed:399.000000 +I (90484) example: expect speed: 0.000000 real_pulses:0 +I (90484) example: new speed:399.000000 +I (90494) example: expect speed: 0.000000 real_pulses:0 +I (90494) example: new speed:399.000000 +I (90504) example: expect speed: 0.000000 real_pulses:0 +I (90504) example: new speed:399.000000 +I (90514) example: expect speed: 0.000000 real_pulses:0 +I (90514) example: new speed:399.000000 +I (90524) example: expect speed: 0.000000 real_pulses:0 +I (90524) example: new speed:399.000000 +I (90534) example: expect speed: 0.000000 real_pulses:0 +I (90534) example: new speed:399.000000 +I (90544) example: expect speed: 0.000000 real_pulses:0 +I (90544) example: new speed:399.000000 +I (90554) example: expect speed: 0.000000 real_pulses:0 +I (90554) example: new speed:399.000000 +I (90564) example: expect speed: 0.000000 real_pulses:0 +I (90574) example: new speed:399.000000 +I (90574) modbus tcp: ModBusSlave_recv() +I (90574) modbus: ModbusSlaveProcess() +I (90574) modbus: check id... +I (90574) modbus: ok +I (90574) modbus: add: 0, length: 10 +I (90574) modbus: Read Holding Registers +I (90574) example: expect speed: 0.000000 real_pulses:0 +I (90584) example: new speed:399.000000 +I (90584) example: expect speed: 0.000000 real_pulses:0 +I (90584) example: new speed:399.000000 +I (90594) example: expect speed: 0.000000 real_pulses:0 +I (90594) example: new speed:399.000000 +I (90604) example: expect speed: 0.000000 real_pulses:0 +I (90604) example: new speed:399.000000 +I (90614) example: expect speed: 0.000000 real_pulses:0 +I (90614) example: new speed:399.000000 +I (90624) example: expect speed: 0.000000 real_pulses:0 +I (90624) example: new speed:399.000000 +I (90634) example: expect speed: 0.000000 real_pulses:0 +I (90644) example: new speed:399.000000 +I (90644) example: expect speed: 0.000000 real_pulses:0 +I (90644) example: new speed:399.000000 +I (90654) example: expect speed: 0.000000 real_pulses:0 +I (90654) example: new speed:399.000000 +I (90664) example: expect speed: 0.000000 real_pulses:0 +I (90664) example: new speed:399.000000 +I (90674) example: expect speed: 0.000000 real_pulses:0 +I (90674) example: new speed:399.000000 +I (90684) example: expect speed: 0.000000 real_pulses:0 +I (90694) example: new speed:399.000000 +I (90694) example: expect speed: 0.000000 real_pulses:0 +I (90694) example: new speed:399.000000 +I (90704) example: expect speed: 0.000000 real_pulses:0 +I (90704) example: new speed:399.000000 +I (90714) example: expect speed: 0.000000 real_pulses:0 +I (90714) example: new speed:399.000000 +I (90724) example: expect speed: 0.000000 real_pulses:0 +I (90724) example: new speed:399.000000 +I (90734) example: expect speed: 0.000000 real_pulses:0 +I (90734) example: new speed:399.000000 +I (90744) example: expect speed: 0.000000 real_pulses:0 +I (90744) example: new speed:399.000000 +I (90754) example: expect speed: 0.000000 real_pulses:0 +I (90754) example: new speed:399.000000 +I (90764) example: expect speed: 0.000000 real_pulses:0 +I (90764) example: new speed:399.000000 +I (90774) example: expect speed: 0.000000 real_pulses:0 +I (90774) example: new speed:399.000000 +I (90784) example: expect speed: 0.000000 real_pulses:0 +I (90784) example: new speed:399.000000 +I (90794) example: expect speed: 0.000000 real_pulses:0 +I (90794) example: new speed:399.000000 +I (90804) example: expect speed: 0.000000 real_pulses:0 +I (90804) example: new speed:399.000000 +I (90814) example: expect speed: 0.000000 real_pulses:0 +I (90814) example: new speed:399.000000 +I (90824) example: expect speed: 0.000000 real_pulses:0 +I (90824) example: new speed:399.000000 +I (90834) example: expect speed: 0.000000 real_pulses:0 +I (90834) example: new speed:399.000000 +I (90844) example: expect speed: 0.000000 real_pulses:0 +I (90844) example: new speed:399.000000 +I (90854) example: expect speed: 0.000000 real_pulses:0 +I (90854) example: new speed:399.000000 +I (90864) example: expect speed: 0.000000 real_pulses:0 +I (90864) example: new speed:399.000000 +I (90874) example: expect speed: 0.000000 real_pulses:0 +I (90874) example: new speed:399.000000 +I (90884) example: expect speed: 0.000000 real_pulses:0 +I (90884) example: new speed:399.000000 +I (90894) example: expect speed: 0.000000 real_pulses:0 +I (90894) example: new speed:399.000000 +I (90904) example: expect speed: 0.000000 real_pulses:0 +I (90904) example: new speed:399.000000 +I (90914) example: expect speed: 0.000000 real_pulses:0 +I (90914) example: new speed:399.000000 +I (90924) example: expect speed: 0.000000 real_pulses:0 +I (90924) example: new speed:399.000000 +I (90934) example: expect speed: 0.000000 real_pulses:0 +I (90934) example: new speed:399.000000 +I (90944) example: expect speed: 0.000000 real_pulses:0 +I (90944) example: new speed:399.000000 +I (90954) example: expect speed: 0.000000 real_pulses:0 +I (90954) example: new speed:399.000000 +I (90964) example: expect speed: 0.000000 real_pulses:0 +I (90964) example: new speed:399.000000 +I (90974) example: expect speed: 0.000000 real_pulses:0 +I (90974) example: new speed:399.000000 +I (90984) example: expect speed: 0.000000 real_pulses:0 +I (90984) example: new speed:399.000000 +I (90994) example: expect speed: 0.000000 real_pulses:0 +I (90994) example: new speed:399.000000 +I (91004) example: expect speed: 0.000000 real_pulses:0 +I (91004) example: new speed:399.000000 +I (91014) example: expect speed: 0.000000 real_pulses:0 +I (91014) example: new speed:399.000000 +I (91024) example: expect speed: 0.000000 real_pulses:0 +I (91024) example: new speed:399.000000 +I (91034) example: expect speed: 0.000000 real_pulses:0 +I (91034) example: new speed:399.000000 +I (91044) example: expect speed: 0.000000 real_pulses:0 +I (91044) example: new speed:399.000000 +I (91054) example: expect speed: 0.000000 real_pulses:0 +I (91054) example: new speed:399.000000 +I (91064) example: expect speed: 0.000000 real_pulses:0 +I (91064) example: new speed:399.000000 +I (91074) example: expect speed: 0.000000 real_pulses:0 +I (91074) example: new speed:399.000000 +I (91084) example: expect speed: 0.000000 real_pulses:0 +I (91094) example: new speed:399.000000 +I (91094) example: expect speed: 0.000000 real_pulses:0 +I (91094) example: new speed:399.000000 +I (91104) example: expect speed: 0.000000 real_pulses:0 +I (91104) example: new speed:399.000000 +I (91114) example: expect speed: 0.000000 real_pulses:0 +I (91114) example: new speed:399.000000 +I (91124) example: expect speed: 0.000000 real_pulses:0 +I (91124) example: new speed:399.000000 +I (91134) example: expect speed: 0.000000 real_pulses:0 +I (91134) example: new speed:399.000000 +I (91144) example: expect speed: 0.000000 real_pulses:0 +I (91144) example: new speed:399.000000 +I (91154) example: expect speed: 0.000000 real_pulses:0 +I (91154) example: new speed:399.000000 +I (91164) example: expect speed: 0.000000 real_pulses:0 +I (91164) example: new speed:399.000000 +I (91174) example: expect speed: 0.000000 real_pulses:0 +I (91174) example: new speed:399.000000 +I (91184) example: expect speed: 0.000000 real_pulses:0 +I (91184) example: new speed:399.000000 +I (91194) example: expect speed: 0.000000 real_pulses:0 +I (91194) example: new speed:399.000000 +I (91204) example: expect speed: 0.000000 real_pulses:0 +I (91204) example: new speed:399.000000 +I (91214) example: expect speed: 0.000000 real_pulses:0 +I (91214) example: new speed:399.000000 +I (91224) example: expect speed: 0.000000 real_pulses:0 +I (91224) example: new speed:399.000000 +I (91234) example: expect speed: 0.000000 real_pulses:0 +I (91234) example: new speed:399.000000 +I (91244) example: expect speed: 0.000000 real_pulses:0 +I (91244) example: new speed:399.000000 +I (91254) example: expect speed: 0.000000 real_pulses:0 +I (91254) example: new speed:399.000000 +I (91264) example: expect speed: 0.000000 real_pulses:0 +I (91264) example: new speed:399.000000 +I (91274) example: expect speed: 0.000000 real_pulses:0 +I (91274) example: new speed:399.000000 +I (91284) example: expect speed: 0.000000 real_pulses:0 +I (91284) example: new speed:399.000000 +I (91294) example: expect speed: 0.000000 real_pulses:0 +I (91294) example: new speed:399.000000 +I (91304) example: expect speed: 0.000000 real_pulses:0 +I (91304) example: new speed:399.000000 +I (91314) example: expect speed: 0.000000 real_pulses:0 +I (91314) example: new speed:399.000000 +I (91324) example: expect speed: 0.000000 real_pulses:0 +I (91324) example: new speed:399.000000 +I (91334) example: expect speed: 0.000000 real_pulses:0 +I (91334) example: new speed:399.000000 +I (91344) example: expect speed: 0.000000 real_pulses:0 +I (91344) example: new speed:399.000000 +I (91354) example: expect speed: 0.000000 real_pulses:0 +I (91354) example: new speed:399.000000 +I (91364) example: expect speed: 0.000000 real_pulses:0 +I (91364) example: new speed:399.000000 +I (91374) example: expect speed: 0.000000 real_pulses:0 +I (91374) example: new speed:399.000000 +I (91384) example: expect speed: 0.000000 real_pulses:0 +I (91384) example: new speed:399.000000 +I (91394) example: expect speed: 0.000000 real_pulses:0 +I (91394) example: new speed:399.000000 +I (91404) example: expect speed: 0.000000 real_pulses:0 +I (91404) example: new speed:399.000000 +I (91414) example: expect speed: 0.000000 real_pulses:0 +I (91414) example: new speed:399.000000 +I (91424) example: expect speed: 0.000000 real_pulses:0 +I (91424) example: new speed:399.000000 +I (91434) example: expect speed: 0.000000 real_pulses:0 +I (91434) example: new speed:399.000000 +I (91444) example: expect speed: 0.000000 real_pulses:0 +I (91444) example: new speed:399.000000 +I (91454) example: expect speed: 0.000000 real_pulses:0 +I (91454) example: new speed:399.000000 +I (91464) example: expect speed: 0.000000 real_pulses:0 +I (91464) example: new speed:399.000000 +I (91474) example: expect speed: 0.000000 real_pulses:0 +I (91474) example: new speed:399.000000 +I (91484) example: expect speed: 0.000000 real_pulses:0 +I (91484) example: new speed:399.000000 +I (91494) example: expect speed: 0.000000 real_pulses:0 +I (91494) example: new speed:399.000000 +I (91504) example: expect speed: 0.000000 real_pulses:0 +I (91504) example: new speed:399.000000 +I (91514) example: expect speed: 0.000000 real_pulses:0 +I (91514) example: new speed:399.000000 +I (91524) example: expect speed: 0.000000 real_pulses:0 +I (91524) example: new speed:399.000000 +I (91534) example: expect speed: 0.000000 real_pulses:0 +I (91534) example: new speed:399.000000 +I (91544) example: expect speed: 0.000000 real_pulses:0 +I (91544) example: new speed:399.000000 +I (91554) example: expect speed: 0.000000 real_pulses:0 +I (91554) example: new speed:399.000000 +I (91564) example: expect speed: 0.000000 real_pulses:0 +I (91564) example: new speed:399.000000 +I (91574) example: expect speed: 0.000000 real_pulses:0 +I (91574) example: new speed:399.000000 +I (91584) example: expect speed: 0.000000 real_pulses:0 +I (91584) example: new speed:399.000000 +I (91594) example: expect speed: 0.000000 real_pulses:0 +I (91604) example: new speed:399.000000 +I (91604) modbus tcp: ModBusSlave_recv() +I (91604) modbus: ModbusSlaveProcess() +I (91604) modbus: check id... +I (91604) modbus: ok +I (91604) modbus: add: 0, length: 10 +I (91604) modbus: Read Holding Registers +I (91604) example: expect speed: 0.000000 real_pulses:0 +I (91614) example: new speed:399.000000 +I (91614) example: expect speed: 0.000000 real_pulses:0 +I (91614) example: new speed:399.000000 +I (91624) example: expect speed: 0.000000 real_pulses:0 +I (91624) example: new speed:399.000000 +I (91634) example: expect speed: 0.000000 real_pulses:0 +I (91634) example: new speed:399.000000 +I (91644) example: expect speed: 0.000000 real_pulses:0 +I (91644) example: new speed:399.000000 +I (91654) example: expect speed: 0.000000 real_pulses:0 +I (91654) example: new speed:399.000000 +I (91664) example: expect speed: 0.000000 real_pulses:0 +I (91664) example: new speed:399.000000 +I (91674) example: expect speed: 0.000000 real_pulses:0 +I (91674) example: new speed:399.000000 +I (91684) example: expect speed: 0.000000 real_pulses:0 +I (91684) example: new speed:399.000000 +I (91694) example: expect speed: 0.000000 real_pulses:0 +I (91694) example: new speed:399.000000 +I (91704) example: expect speed: 0.000000 real_pulses:0 +I (91714) example: new speed:399.000000 +I (91714) example: expect speed: 0.000000 real_pulses:0 +I (91714) example: new speed:399.000000 +I (91724) example: expect speed: 0.000000 real_pulses:0 +I (91724) example: new speed:399.000000 +I (91734) example: expect speed: 0.000000 real_pulses:0 +I (91734) example: new speed:399.000000 +I (91744) example: expect speed: 0.000000 real_pulses:0 +I (91744) example: new speed:399.000000 +I (91754) example: expect speed: 0.000000 real_pulses:0 +I (91764) example: new speed:399.000000 +I (91764) example: expect speed: 0.000000 real_pulses:0 +I (91764) example: new speed:399.000000 +I (91774) example: expect speed: 0.000000 real_pulses:0 +I (91774) example: new speed:399.000000 +I (91784) example: expect speed: 0.000000 real_pulses:0 +I (91784) example: new speed:399.000000 +I (91794) example: expect speed: 0.000000 real_pulses:0 +I (91794) example: new speed:399.000000 +I (91804) example: expect speed: 0.000000 real_pulses:0 +I (91804) example: new speed:399.000000 +I (91814) example: expect speed: 0.000000 real_pulses:0 +I (91814) example: new speed:399.000000 +I (91824) example: expect speed: 0.000000 real_pulses:0 +I (91824) example: new speed:399.000000 +I (91834) example: expect speed: 0.000000 real_pulses:0 +I (91834) example: new speed:399.000000 +I (91844) example: expect speed: 0.000000 real_pulses:0 +I (91844) example: new speed:399.000000 +I (91854) example: expect speed: 0.000000 real_pulses:0 +I (91854) example: new speed:399.000000 +I (91864) example: expect speed: 0.000000 real_pulses:0 +I (91864) example: new speed:399.000000 +I (91874) example: expect speed: 0.000000 real_pulses:0 +I (91874) example: new speed:399.000000 +I (91884) example: expect speed: 0.000000 real_pulses:0 +I (91884) example: new speed:399.000000 +I (91894) example: expect speed: 0.000000 real_pulses:0 +I (91894) example: new speed:399.000000 +I (91904) example: expect speed: 0.000000 real_pulses:0 +I (91904) example: new speed:399.000000 +I (91914) example: expect speed: 0.000000 real_pulses:0 +I (91914) example: new speed:399.000000 +I (91924) example: expect speed: 0.000000 real_pulses:0 +I (91924) example: new speed:399.000000 +I (91934) example: expect speed: 0.000000 real_pulses:0 +I (91934) example: new speed:399.000000 +I (91944) example: expect speed: 0.000000 real_pulses:0 +I (91944) example: new speed:399.000000 +I (91954) example: expect speed: 0.000000 real_pulses:0 +I (91954) example: new speed:399.000000 +I (91964) example: expect speed: 0.000000 real_pulses:0 +I (91964) example: new speed:399.000000 +I (91974) example: expect speed: 0.000000 real_pulses:0 +I (91974) example: new speed:399.000000 +I (91984) example: expect speed: 0.000000 real_pulses:0 +I (91984) example: new speed:399.000000 +I (91994) example: expect speed: 0.000000 real_pulses:0 +I (91994) example: new speed:399.000000 +I (92004) example: expect speed: 0.000000 real_pulses:0 +I (92004) example: new speed:399.000000 +I (92014) example: expect speed: 0.000000 real_pulses:0 +I (92014) example: new speed:399.000000 +I (92024) example: expect speed: 0.000000 real_pulses:0 +I (92024) example: new speed:399.000000 +I (92034) example: expect speed: 0.000000 real_pulses:0 +I (92034) example: new speed:399.000000 +I (92044) example: expect speed: 0.000000 real_pulses:0 +I (92044) example: new speed:399.000000 +I (92054) example: expect speed: 0.000000 real_pulses:0 +I (92054) example: new speed:399.000000 +I (92064) example: expect speed: 0.000000 real_pulses:0 +I (92064) example: new speed:399.000000 +I (92074) example: expect speed: 0.000000 real_pulses:0 +I (92074) example: new speed:399.000000 +I (92084) example: expect speed: 0.000000 real_pulses:0 +I (92084) example: new speed:399.000000 +I (92094) example: expect speed: 0.000000 real_pulses:0 +I (92094) example: new speed:399.000000 +I (92104) example: expect speed: 0.000000 real_pulses:0 +I (92114) example: new speed:399.000000 +I (92114) example: expect speed: 0.000000 real_pulses:0 +I (92114) example: new speed:399.000000 +I (92124) example: expect speed: 0.000000 real_pulses:0 +I (92124) example: new speed:399.000000 +I (92134) example: expect speed: 0.000000 real_pulses:0 +I (92134) example: new speed:399.000000 +I (92144) example: expect speed: 0.000000 real_pulses:0 +I (92144) example: new speed:399.000000 +I (92154) example: expect speed: 0.000000 real_pulses:0 +I (92154) example: new speed:399.000000 +I (92164) example: expect speed: 0.000000 real_pulses:0 +I (92164) example: new speed:399.000000 +I (92174) example: expect speed: 0.000000 real_pulses:0 +I (92174) example: new speed:399.000000 +I (92184) example: expect speed: 0.000000 real_pulses:0 +I (92184) example: new speed:399.000000 +I (92194) example: expect speed: 0.000000 real_pulses:0 +I (92194) example: new speed:399.000000 +I (92204) example: expect speed: 0.000000 real_pulses:0 +I (92204) example: new speed:399.000000 +I (92214) example: expect speed: 0.000000 real_pulses:0 +I (92214) example: new speed:399.000000 +I (92224) example: expect speed: 0.000000 real_pulses:0 +I (92224) example: new speed:399.000000 +I (92234) example: expect speed: 0.000000 real_pulses:0 +I (92234) example: new speed:399.000000 +I (92244) example: expect speed: 0.000000 real_pulses:0 +I (92244) example: new speed:399.000000 +I (92254) example: expect speed: 0.000000 real_pulses:0 +I (92254) example: new speed:399.000000 +I (92264) example: expect speed: 0.000000 real_pulses:0 +I (92264) example: new speed:399.000000 +I (92274) example: expect speed: 0.000000 real_pulses:0 +I (92274) example: new speed:399.000000 +I (92284) example: expect speed: 0.000000 real_pulses:0 +I (92284) example: new speed:399.000000 +I (92294) example: expect speed: 0.000000 real_pulses:0 +I (92294) example: new speed:399.000000 +I (92304) example: expect speed: 0.000000 real_pulses:0 +I (92304) example: new speed:399.000000 +I (92314) example: expect speed: 0.000000 real_pulses:0 +I (92314) example: new speed:399.000000 +I (92324) example: expect speed: 0.000000 real_pulses:0 +I (92324) example: new speed:399.000000 +I (92334) example: expect speed: 0.000000 real_pulses:0 +I (92334) example: new speed:399.000000 +I (92344) example: expect speed: 0.000000 real_pulses:0 +I (92344) example: new speed:399.000000 +I (92354) example: expect speed: 0.000000 real_pulses:0 +I (92354) example: new speed:399.000000 +I (92364) example: expect speed: 0.000000 real_pulses:0 +I (92364) example: new speed:399.000000 +I (92374) example: expect speed: 0.000000 real_pulses:0 +I (92374) example: new speed:399.000000 +I (92384) example: expect speed: 0.000000 real_pulses:0 +I (92384) example: new speed:399.000000 +I (92394) example: expect speed: 0.000000 real_pulses:0 +I (92394) example: new speed:399.000000 +I (92404) example: expect speed: 0.000000 real_pulses:0 +I (92404) example: new speed:399.000000 +I (92414) example: expect speed: 0.000000 real_pulses:0 +I (92414) example: new speed:399.000000 +I (92424) example: expect speed: 0.000000 real_pulses:0 +I (92424) example: new speed:399.000000 +I (92434) example: expect speed: 0.000000 real_pulses:0 +I (92434) example: new speed:399.000000 +I (92444) example: expect speed: 0.000000 real_pulses:0 +I (92444) example: new speed:399.000000 +I (92454) example: expect speed: 0.000000 real_pulses:0 +I (92454) example: new speed:399.000000 +I (92464) example: expect speed: 0.000000 real_pulses:0 +I (92464) example: new speed:399.000000 +I (92474) example: expect speed: 0.000000 real_pulses:0 +I (92474) example: new speed:399.000000 +I (92484) example: expect speed: 0.000000 real_pulses:0 +I (92484) example: new speed:399.000000 +I (92494) example: expect speed: 0.000000 real_pulses:0 +I (92494) example: new speed:399.000000 +I (92504) example: expect speed: 0.000000 real_pulses:0 +I (92504) example: new speed:399.000000 +I (92514) example: expect speed: 0.000000 real_pulses:0 +I (92524) example: new speed:399.000000 +I (92524) example: expect speed: 0.000000 real_pulses:0 +I (92534) example: new speed:399.000000 +I (92534) modbus tcp: ModBusSlave_recv() +I (92534) modbus: ModbusSlaveProcess() +I (92534) modbus: check id... +I (92534) modbus: ok +I (92534) modbus: add: 0, length: 10 +I (92534) modbus: Read Holding Registers +I (92534) example: expect speed: 0.000000 real_pulses:0 +I (92544) example: new speed:399.000000 +I (92544) example: expect speed: 0.000000 real_pulses:0 +I (92544) example: new speed:399.000000 +I (92554) example: expect speed: 0.000000 real_pulses:0 +I (92554) example: new speed:399.000000 +I (92564) example: expect speed: 0.000000 real_pulses:0 +I (92564) example: new speed:399.000000 +I (92574) example: expect speed: 0.000000 real_pulses:0 +I (92574) example: new speed:399.000000 +I (92584) example: expect speed: 0.000000 real_pulses:0 +I (92594) example: new speed:399.000000 +I (92594) example: expect speed: 0.000000 real_pulses:0 +I (92594) example: new speed:399.000000 +I (92604) example: expect speed: 0.000000 real_pulses:0 +I (92604) example: new speed:399.000000 +I (92614) example: expect speed: 0.000000 real_pulses:0 +I (92614) example: new speed:399.000000 +I (92624) example: expect speed: 0.000000 real_pulses:0 +I (92624) example: new speed:399.000000 +I (92634) example: expect speed: 0.000000 real_pulses:0 +I (92644) example: new speed:399.000000 +I (92644) example: expect speed: 0.000000 real_pulses:0 +I (92644) example: new speed:399.000000 +I (92654) example: expect speed: 0.000000 real_pulses:0 +I (92654) example: new speed:399.000000 +I (92664) example: expect speed: 0.000000 real_pulses:0 +I (92664) example: new speed:399.000000 +I (92674) example: expect speed: 0.000000 real_pulses:0 +I (92674) example: new speed:399.000000 +I (92684) example: expect speed: 0.000000 real_pulses:0 +I (92684) example: new speed:399.000000 +I (92694) example: expect speed: 0.000000 real_pulses:0 +I (92694) example: new speed:399.000000 +I (92704) example: expect speed: 0.000000 real_pulses:0 +I (92704) example: new speed:399.000000 +I (92714) example: expect speed: 0.000000 real_pulses:0 +I (92714) example: new speed:399.000000 +I (92724) example: expect speed: 0.000000 real_pulses:0 +I (92724) example: new speed:399.000000 +I (92734) example: expect speed: 0.000000 real_pulses:0 +I (92734) example: new speed:399.000000 +I (92744) example: expect speed: 0.000000 real_pulses:0 +I (92744) example: new speed:399.000000 +I (92754) example: expect speed: 0.000000 real_pulses:0 +I (92754) example: new speed:399.000000 +I (92764) example: expect speed: 0.000000 real_pulses:0 +I (92764) example: new speed:399.000000 +I (92774) example: expect speed: 0.000000 real_pulses:0 +I (92774) example: new speed:399.000000 +I (92784) example: expect speed: 0.000000 real_pulses:0 +I (92784) example: new speed:399.000000 +I (92794) example: expect speed: 0.000000 real_pulses:0 +I (92794) example: new speed:399.000000 +I (92804) example: expect speed: 0.000000 real_pulses:0 +I (92804) example: new speed:399.000000 +I (92814) example: expect speed: 0.000000 real_pulses:0 +I (92814) example: new speed:399.000000 +I (92824) example: expect speed: 0.000000 real_pulses:0 +I (92824) example: new speed:399.000000 +I (92834) example: expect speed: 0.000000 real_pulses:0 +I (92834) example: new speed:399.000000 +I (92844) example: expect speed: 0.000000 real_pulses:0 +I (92844) example: new speed:399.000000 +I (92854) example: expect speed: 0.000000 real_pulses:0 +I (92854) example: new speed:399.000000 +I (92864) example: expect speed: 0.000000 real_pulses:0 +I (92864) example: new speed:399.000000 +I (92874) example: expect speed: 0.000000 real_pulses:0 +I (92874) example: new speed:399.000000 +I (92884) example: expect speed: 0.000000 real_pulses:0 +I (92884) example: new speed:399.000000 +I (92894) example: expect speed: 0.000000 real_pulses:0 +I (92894) example: new speed:399.000000 +I (92904) example: expect speed: 0.000000 real_pulses:0 +I (92904) example: new speed:399.000000 +I (92914) example: expect speed: 0.000000 real_pulses:0 +I (92914) example: new speed:399.000000 +I (92924) example: expect speed: 0.000000 real_pulses:0 +I (92924) example: new speed:399.000000 +I (92934) example: expect speed: 0.000000 real_pulses:0 +I (92934) example: new speed:399.000000 +I (92944) example: expect speed: 0.000000 real_pulses:0 +I (92944) example: new speed:399.000000 +I (92954) example: expect speed: 0.000000 real_pulses:0 +I (92954) example: new speed:399.000000 +I (92964) example: expect speed: 0.000000 real_pulses:0 +I (92964) example: new speed:399.000000 +I (92974) example: expect speed: 0.000000 real_pulses:0 +I (92974) example: new speed:399.000000 +I (92984) example: expect speed: 0.000000 real_pulses:0 +I (92984) example: new speed:399.000000 +I (92994) example: expect speed: 0.000000 real_pulses:0 +I (92994) example: new speed:399.000000 +I (93004) example: expect speed: 0.000000 real_pulses:0 +I (93004) example: new speed:399.000000 +I (93014) example: expect speed: 0.000000 real_pulses:0 +I (93014) example: new speed:399.000000 +I (93024) example: expect speed: 0.000000 real_pulses:0 +I (93024) example: new speed:399.000000 +I (93034) example: expect speed: 0.000000 real_pulses:0 +I (93034) example: new speed:399.000000 +I (93044) example: expect speed: 0.000000 real_pulses:0 +I (93044) example: new speed:399.000000 +I (93054) example: expect speed: 0.000000 real_pulses:0 +I (93054) example: new speed:399.000000 +I (93064) example: expect speed: 0.000000 real_pulses:0 +I (93064) example: new speed:399.000000 +I (93074) example: expect speed: 0.000000 real_pulses:0 +I (93074) example: new speed:399.000000 +I (93084) example: expect speed: 0.000000 real_pulses:0 +I (93084) example: new speed:399.000000 +I (93094) example: expect speed: 0.000000 real_pulses:0 +I (93094) example: new speed:399.000000 +I (93104) example: expect speed: 0.000000 real_pulses:0 +I (93104) example: new speed:399.000000 +I (93114) example: expect speed: 0.000000 real_pulses:0 +I (93114) example: new speed:399.000000 +I (93124) example: expect speed: 0.000000 real_pulses:0 +I (93134) example: new speed:399.000000 +I (93134) example: expect speed: 0.000000 real_pulses:0 +I (93134) example: new speed:399.000000 +I (93144) example: expect speed: 0.000000 real_pulses:0 +I (93144) example: new speed:399.000000 +I (93154) example: expect speed: 0.000000 real_pulses:0 +I (93154) example: new speed:399.000000 +I (93164) example: expect speed: 0.000000 real_pulses:0 +I (93164) example: new speed:399.000000 +I (93174) example: expect speed: 0.000000 real_pulses:0 +I (93174) example: new speed:399.000000 +I (93184) example: expect speed: 0.000000 real_pulses:0 +I (93184) example: new speed:399.000000 +I (93194) example: expect speed: 0.000000 real_pulses:0 +I (93194) example: new speed:399.000000 +I (93204) example: expect speed: 0.000000 real_pulses:0 +I (93204) example: new speed:399.000000 +I (93214) example: expect speed: 0.000000 real_pulses:0 +I (93214) example: new speed:399.000000 +I (93224) example: expect speed: 0.000000 real_pulses:0 +I (93224) example: new speed:399.000000 +I (93234) example: expect speed: 0.000000 real_pulses:0 +I (93234) example: new speed:399.000000 +I (93244) example: expect speed: 0.000000 real_pulses:0 +I (93244) example: new speed:399.000000 +I (93254) example: expect speed: 0.000000 real_pulses:0 +I (93254) example: new speed:399.000000 +I (93264) example: expect speed: 0.000000 real_pulses:0 +I (93264) example: new speed:399.000000 +I (93274) example: expect speed: 0.000000 real_pulses:0 +I (93274) example: new speed:399.000000 +I (93284) example: expect speed: 0.000000 real_pulses:0 +I (93284) example: new speed:399.000000 +I (93294) example: expect speed: 0.000000 real_pulses:0 +I (93294) example: new speed:399.000000 +I (93304) example: expect speed: 0.000000 real_pulses:0 +I (93304) example: new speed:399.000000 +I (93314) example: expect speed: 0.000000 real_pulses:0 +I (93314) example: new speed:399.000000 +I (93324) example: expect speed: 0.000000 real_pulses:0 +I (93324) example: new speed:399.000000 +I (93334) example: expect speed: 0.000000 real_pulses:0 +I (93334) example: new speed:399.000000 +I (93344) example: expect speed: 0.000000 real_pulses:0 +I (93344) example: new speed:399.000000 +I (93354) example: expect speed: 0.000000 real_pulses:0 +I (93354) example: new speed:399.000000 +I (93364) example: expect speed: 0.000000 real_pulses:0 +I (93364) example: new speed:399.000000 +I (93374) example: expect speed: 0.000000 real_pulses:0 +I (93374) example: new speed:399.000000 +I (93384) example: expect speed: 0.000000 real_pulses:0 +I (93384) example: new speed:399.000000 +I (93394) example: expect speed: 0.000000 real_pulses:0 +I (93394) example: new speed:399.000000 +I (93404) example: expect speed: 0.000000 real_pulses:0 +I (93404) example: new speed:399.000000 +I (93414) example: expect speed: 0.000000 real_pulses:0 +I (93414) example: new speed:399.000000 +I (93424) example: expect speed: 0.000000 real_pulses:0 +I (93424) example: new speed:399.000000 +I (93434) example: expect speed: 0.000000 real_pulses:0 +I (93434) example: new speed:399.000000 +I (93444) example: expect speed: 0.000000 real_pulses:0 +I (93444) example: new speed:399.000000 +I (93454) example: expect speed: 0.000000 real_pulses:0 +I (93454) example: new speed:399.000000 +I (93464) example: expect speed: 0.000000 real_pulses:0 +I (93464) example: new speed:399.000000 +I (93474) example: expect speed: 0.000000 real_pulses:0 +I (93474) example: new speed:399.000000 +I (93484) example: expect speed: 0.000000 real_pulses:0 +I (93484) example: new speed:399.000000 +I (93494) example: expect speed: 0.000000 real_pulses:0 +I (93494) example: new speed:399.000000 +I (93504) example: expect speed: 0.000000 real_pulses:0 +I (93504) example: new speed:399.000000 +I (93514) example: expect speed: 0.000000 real_pulses:0 +I (93514) example: new speed:399.000000 +I (93524) example: expect speed: 0.000000 real_pulses:0 +I (93524) example: new speed:399.000000 +I (93534) example: expect speed: 0.000000 real_pulses:0 +I (93544) example: new speed:399.000000 +I (93544) modbus tcp: ModBusSlave_recv() +I (93544) modbus: ModbusSlaveProcess() +I (93544) modbus: check id... +I (93544) modbus: ok +I (93544) modbus: add: 0, length: 10 +I (93544) modbus: Read Holding Registers +I (93544) example: expect speed: 0.000000 real_pulses:0 +I (93554) example: new speed:399.000000 +I (93554) example: expect speed: 0.000000 real_pulses:0 +I (93554) example: new speed:399.000000 +I (93564) example: expect speed: 0.000000 real_pulses:0 +I (93564) example: new speed:399.000000 +I (93574) example: expect speed: 0.000000 real_pulses:0 +I (93574) example: new speed:399.000000 +I (93584) example: expect speed: 0.000000 real_pulses:0 +I (93584) example: new speed:399.000000 +I (93594) example: expect speed: 0.000000 real_pulses:0 +I (93594) example: new speed:399.000000 +I (93604) example: expect speed: 0.000000 real_pulses:0 +I (93614) example: new speed:399.000000 +I (93614) example: expect speed: 0.000000 real_pulses:0 +I (93614) example: new speed:399.000000 +I (93624) example: expect speed: 0.000000 real_pulses:0 +I (93624) example: new speed:399.000000 +I (93634) example: expect speed: 0.000000 real_pulses:0 +I (93634) example: new speed:399.000000 +I (93644) example: expect speed: 0.000000 real_pulses:0 +I (93644) example: new speed:399.000000 +I (93654) example: expect speed: 0.000000 real_pulses:0 +I (93654) example: new speed:399.000000 +I (93664) example: expect speed: 0.000000 real_pulses:0 +I (93664) example: new speed:399.000000 +I (93674) example: expect speed: 0.000000 real_pulses:0 +I (93674) example: new speed:399.000000 +I (93684) example: expect speed: 0.000000 real_pulses:0 +I (93684) example: new speed:399.000000 +I (93694) example: expect speed: 0.000000 real_pulses:0 +I (93694) example: new speed:399.000000 +I (93704) example: expect speed: 0.000000 real_pulses:0 +I (93704) example: new speed:399.000000 +I (93714) example: expect speed: 0.000000 real_pulses:0 +I (93714) example: new speed:399.000000 +I (93724) example: expect speed: 0.000000 real_pulses:0 +I (93724) example: new speed:399.000000 +I (93734) example: expect speed: 0.000000 real_pulses:0 +I (93734) example: new speed:399.000000 +I (93744) example: expect speed: 0.000000 real_pulses:0 +I (93744) example: new speed:399.000000 +I (93754) example: expect speed: 0.000000 real_pulses:0 +I (93754) example: new speed:399.000000 +I (93764) example: expect speed: 0.000000 real_pulses:0 +I (93764) example: new speed:399.000000 +I (93774) example: expect speed: 0.000000 real_pulses:0 +I (93774) example: new speed:399.000000 +I (93784) example: expect speed: 0.000000 real_pulses:0 +I (93784) example: new speed:399.000000 +I (93794) example: expect speed: 0.000000 real_pulses:0 +I (93794) example: new speed:399.000000 +I (93804) example: expect speed: 0.000000 real_pulses:0 +I (93804) example: new speed:399.000000 +I (93814) example: expect speed: 0.000000 real_pulses:0 +I (93814) example: new speed:399.000000 +I (93824) example: expect speed: 0.000000 real_pulses:0 +I (93824) example: new speed:399.000000 +I (93834) example: expect speed: 0.000000 real_pulses:0 +I (93834) example: new speed:399.000000 +I (93844) example: expect speed: 0.000000 real_pulses:0 +I (93844) example: new speed:399.000000 +I (93854) example: expect speed: 0.000000 real_pulses:0 +I (93854) example: new speed:399.000000 +I (93864) example: expect speed: 0.000000 real_pulses:0 +I (93864) example: new speed:399.000000 +I (93874) example: expect speed: 0.000000 real_pulses:0 +I (93874) example: new speed:399.000000 +I (93884) example: expect speed: 0.000000 real_pulses:0 +I (93884) example: new speed:399.000000 +I (93894) example: expect speed: 0.000000 real_pulses:0 +I (93894) example: new speed:399.000000 +I (93904) example: expect speed: 0.000000 real_pulses:0 +I (93904) example: new speed:399.000000 +I (93914) example: expect speed: 0.000000 real_pulses:0 +I (93914) example: new speed:399.000000 +I (93924) example: expect speed: 0.000000 real_pulses:0 +I (93924) example: new speed:399.000000 +I (93934) example: expect speed: 0.000000 real_pulses:0 +I (93934) example: new speed:399.000000 +I (93944) example: expect speed: 0.000000 real_pulses:0 +I (93944) example: new speed:399.000000 +I (93954) example: expect speed: 0.000000 real_pulses:0 +I (93954) example: new speed:399.000000 +I (93964) example: expect speed: 0.000000 real_pulses:0 +I (93964) example: new speed:399.000000 +I (93974) example: expect speed: 0.000000 real_pulses:0 +I (93974) example: new speed:399.000000 +I (93984) example: expect speed: 0.000000 real_pulses:0 +I (93984) example: new speed:399.000000 +I (93994) example: expect speed: 0.000000 real_pulses:0 +I (93994) example: new speed:399.000000 +I (94004) example: expect speed: 0.000000 real_pulses:0 +I (94004) example: new speed:399.000000 +I (94014) example: expect speed: 0.000000 real_pulses:0 +I (94014) example: new speed:399.000000 +I (94024) example: expect speed: 0.000000 real_pulses:0 +I (94024) example: new speed:399.000000 +I (94034) example: expect speed: 0.000000 real_pulses:0 +I (94034) example: new speed:399.000000 +I (94044) example: expect speed: 0.000000 real_pulses:0 +I (94044) example: new speed:399.000000 +I (94054) example: expect speed: 0.000000 real_pulses:0 +I (94054) example: new speed:399.000000 +I (94064) example: expect speed: 0.000000 real_pulses:0 +I (94064) example: new speed:399.000000 +I (94074) example: expect speed: 0.000000 real_pulses:0 +I (94074) example: new speed:399.000000 +I (94084) example: expect speed: 0.000000 real_pulses:0 +I (94084) example: new speed:399.000000 +I (94094) example: expect speed: 0.000000 real_pulses:0 +I (94094) example: new speed:399.000000 +I (94104) example: expect speed: 0.000000 real_pulses:0 +I (94104) example: new speed:399.000000 +I (94114) example: expect speed: 0.000000 real_pulses:0 +I (94114) example: new speed:399.000000 +I (94124) example: expect speed: 0.000000 real_pulses:0 +I (94124) example: new speed:399.000000 +I (94134) example: expect speed: 0.000000 real_pulses:0 +I (94134) example: new speed:399.000000 +I (94144) example: expect speed: 0.000000 real_pulses:0 +I (94144) example: new speed:399.000000 +I (94154) example: expect speed: 0.000000 real_pulses:0 +I (94154) example: new speed:399.000000 +I (94164) example: expect speed: 0.000000 real_pulses:0 +I (94164) example: new speed:399.000000 +I (94174) example: expect speed: 0.000000 real_pulses:0 +I (94174) example: new speed:399.000000 +I (94184) example: expect speed: 0.000000 real_pulses:0 +I (94184) example: new speed:399.000000 +I (94194) example: expect speed: 0.000000 real_pulses:0 +I (94194) example: new speed:399.000000 +I (94204) example: expect speed: 0.000000 real_pulses:0 +I (94204) example: new speed:399.000000 +I (94214) example: expect speed: 0.000000 real_pulses:0 +I (94214) example: new speed:399.000000 +I (94224) example: expect speed: 0.000000 real_pulses:0 +I (94224) example: new speed:399.000000 +I (94234) example: expect speed: 0.000000 real_pulses:0 +I (94234) example: new speed:399.000000 +I (94244) example: expect speed: 0.000000 real_pulses:0 +I (94244) example: new speed:399.000000 +I (94254) example: expect speed: 0.000000 real_pulses:0 +I (94254) example: new speed:399.000000 +I (94264) example: expect speed: 0.000000 real_pulses:0 +I (94264) example: new speed:399.000000 +I (94274) example: expect speed: 0.000000 real_pulses:0 +I (94274) example: new speed:399.000000 +I (94284) example: expect speed: 0.000000 real_pulses:0 +I (94284) example: new speed:399.000000 +I (94294) example: expect speed: 0.000000 real_pulses:0 +I (94294) example: new speed:399.000000 +I (94304) example: expect speed: 0.000000 real_pulses:0 +I (94304) example: new speed:399.000000 +I (94314) example: expect speed: 0.000000 real_pulses:0 +I (94314) example: new speed:399.000000 +I (94324) example: expect speed: 0.000000 real_pulses:0 +I (94324) example: new speed:399.000000 +I (94334) example: expect speed: 0.000000 real_pulses:0 +I (94334) example: new speed:399.000000 +I (94344) example: expect speed: 0.000000 real_pulses:0 +I (94344) example: new speed:399.000000 +I (94354) example: expect speed: 0.000000 real_pulses:0 +I (94354) example: new speed:399.000000 +I (94364) example: expect speed: 0.000000 real_pulses:0 +I (94364) example: new speed:399.000000 +I (94374) example: expect speed: 0.000000 real_pulses:0 +I (94374) example: new speed:399.000000 +I (94384) example: expect speed: 0.000000 real_pulses:0 +I (94384) example: new speed:399.000000 +I (94394) example: expect speed: 0.000000 real_pulses:0 +I (94394) example: new speed:399.000000 +I (94404) example: expect speed: 0.000000 real_pulses:0 +I (94404) example: new speed:399.000000 +I (94414) example: expect speed: 0.000000 real_pulses:0 +I (94414) example: new speed:399.000000 +I (94424) example: expect speed: 0.000000 real_pulses:0 +I (94424) example: new speed:399.000000 +I (94434) example: expect speed: 0.000000 real_pulses:0 +I (94434) example: new speed:399.000000 +I (94444) example: expect speed: 0.000000 real_pulses:0 +I (94444) example: new speed:399.000000 +I (94454) example: expect speed: 0.000000 real_pulses:0 +I (94454) example: new speed:399.000000 +I (94464) example: expect speed: 0.000000 real_pulses:0 +I (94474) example: new speed:399.000000 +I (94474) example: expect speed: 0.000000 real_pulses:0 +I (94474) example: new speed:399.000000 +I (94484) example: expect speed: 0.000000 real_pulses:0 +I (94484) example: new speed:399.000000 +I (94494) example: expect speed: 0.000000 real_pulses:0 +I (94494) example: new speed:399.000000 +I (94504) example: expect speed: 0.000000 real_pulses:0 +I (94504) example: new speed:399.000000 +I (94514) example: expect speed: 0.000000 real_pulses:0 +I (94514) example: new speed:399.000000 +I (94524) example: expect speed: 0.000000 real_pulses:0 +I (94524) example: new speed:399.000000 +I (94534) example: expect speed: 0.000000 real_pulses:0 +I (94534) example: new speed:399.000000 +I (94544) example: expect speed: 0.000000 real_pulses:0 +I (94544) example: new speed:399.000000 +I (94554) example: expect speed: 0.000000 real_pulses:0 +I (94554) example: new speed:399.000000 +I (94564) example: expect speed: 0.000000 real_pulses:0 +I (94574) example: new speed:399.000000 +I (94574) modbus tcp: ModBusSlave_recv() +I (94574) modbus: ModbusSlaveProcess() +I (94574) modbus: check id... +I (94574) modbus: ok +I (94574) modbus: add: 0, length: 10 +I (94574) modbus: Read Holding Registers +I (94574) example: expect speed: 0.000000 real_pulses:0 +I (94584) example: new speed:399.000000 +I (94584) example: expect speed: 0.000000 real_pulses:0 +I (94584) example: new speed:399.000000 +I (94594) example: expect speed: 0.000000 real_pulses:0 +I (94594) example: new speed:399.000000 +I (94604) example: expect speed: 0.000000 real_pulses:0 +I (94604) example: new speed:399.000000 +I (94614) example: expect speed: 0.000000 real_pulses:0 +I (94614) example: new speed:399.000000 +I (94624) example: expect speed: 0.000000 real_pulses:0 +I (94634) example: new speed:399.000000 +I (94634) example: expect speed: 0.000000 real_pulses:0 +I (94634) example: new speed:399.000000 +I (94644) example: expect speed: 0.000000 real_pulses:0 +I (94644) example: new speed:399.000000 +I (94654) example: expect speed: 0.000000 real_pulses:0 +I (94654) example: new speed:399.000000 +I (94664) example: expect speed: 0.000000 real_pulses:0 +I (94664) example: new speed:399.000000 +I (94674) example: expect speed: 0.000000 real_pulses:0 +I (94684) example: new speed:399.000000 +I (94684) example: expect speed: 0.000000 real_pulses:0 +I (94684) example: new speed:399.000000 +I (94694) example: expect speed: 0.000000 real_pulses:0 +I (94694) example: new speed:399.000000 +I (94704) example: expect speed: 0.000000 real_pulses:0 +I (94704) example: new speed:399.000000 +I (94714) example: expect speed: 0.000000 real_pulses:0 +I (94714) example: new speed:399.000000 +I (94724) example: expect speed: 0.000000 real_pulses:0 +I (94724) example: new speed:399.000000 +I (94734) example: expect speed: 0.000000 real_pulses:0 +I (94734) example: new speed:399.000000 +I (94744) example: expect speed: 0.000000 real_pulses:0 +I (94744) example: new speed:399.000000 +I (94754) example: expect speed: 0.000000 real_pulses:0 +I (94754) example: new speed:399.000000 +I (94764) example: expect speed: 0.000000 real_pulses:0 +I (94764) example: new speed:399.000000 +I (94774) example: expect speed: 0.000000 real_pulses:0 +I (94774) example: new speed:399.000000 +I (94784) example: expect speed: 0.000000 real_pulses:0 +I (94784) example: new speed:399.000000 +I (94794) example: expect speed: 0.000000 real_pulses:0 +I (94794) example: new speed:399.000000 +I (94804) example: expect speed: 0.000000 real_pulses:0 +I (94804) example: new speed:399.000000 +I (94814) example: expect speed: 0.000000 real_pulses:0 +I (94814) example: new speed:399.000000 +I (94824) example: expect speed: 0.000000 real_pulses:0 +I (94824) example: new speed:399.000000 +I (94834) example: expect speed: 0.000000 real_pulses:0 +I (94834) example: new speed:399.000000 +I (94844) example: expect speed: 0.000000 real_pulses:0 +I (94844) example: new speed:399.000000 +I (94854) example: expect speed: 0.000000 real_pulses:0 +I (94854) example: new speed:399.000000 +I (94864) example: expect speed: 0.000000 real_pulses:0 +I (94864) example: new speed:399.000000 +I (94874) example: expect speed: 0.000000 real_pulses:0 +I (94874) example: new speed:399.000000 +I (94884) example: expect speed: 0.000000 real_pulses:0 +I (94884) example: new speed:399.000000 +I (94894) example: expect speed: 0.000000 real_pulses:0 +I (94894) example: new speed:399.000000 +I (94904) example: expect speed: 0.000000 real_pulses:0 +I (94904) example: new speed:399.000000 +I (94914) example: expect speed: 0.000000 real_pulses:0 +I (94914) example: new speed:399.000000 +I (94924) example: expect speed: 0.000000 real_pulses:0 +I (94924) example: new speed:399.000000 +I (94934) example: expect speed: 0.000000 real_pulses:0 +I (94934) example: new speed:399.000000 +I (94944) example: expect speed: 0.000000 real_pulses:0 +I (94944) example: new speed:399.000000 +I (94954) example: expect speed: 0.000000 real_pulses:0 +I (94954) example: new speed:399.000000 +I (94964) example: expect speed: 0.000000 real_pulses:0 +I (94964) example: new speed:399.000000 +I (94974) example: expect speed: 0.000000 real_pulses:0 +I (94974) example: new speed:399.000000 +I (94984) example: expect speed: 0.000000 real_pulses:0 +I (94984) example: new speed:399.000000 +I (94994) example: expect speed: 0.000000 real_pulses:0 +I (94994) example: new speed:399.000000 +I (95004) example: expect speed: 0.000000 real_pulses:0 +I (95004) example: new speed:399.000000 +I (95014) example: expect speed: 0.000000 real_pulses:0 +I (95014) example: new speed:399.000000 +I (95024) example: expect speed: 0.000000 real_pulses:0 +I (95024) example: new speed:399.000000 +I (95034) example: expect speed: 0.000000 real_pulses:0 +I (95034) example: new speed:399.000000 +I (95044) example: expect speed: 0.000000 real_pulses:0 +I (95044) example: new speed:399.000000 +I (95054) example: expect speed: 0.000000 real_pulses:0 +I (95054) example: new speed:399.000000 +I (95064) example: expect speed: 0.000000 real_pulses:0 +I (95064) example: new speed:399.000000 +I (95074) example: expect speed: 0.000000 real_pulses:0 +I (95074) example: new speed:399.000000 +I (95084) example: expect speed: 0.000000 real_pulses:0 +I (95084) example: new speed:399.000000 +I (95094) example: expect speed: 0.000000 real_pulses:0 +I (95094) example: new speed:399.000000 +I (95104) example: expect speed: 0.000000 real_pulses:0 +I (95104) example: new speed:399.000000 +I (95114) example: expect speed: 0.000000 real_pulses:0 +I (95114) example: new speed:399.000000 +I (95124) example: expect speed: 0.000000 real_pulses:0 +I (95124) example: new speed:399.000000 +I (95134) example: expect speed: 0.000000 real_pulses:0 +I (95134) example: new speed:399.000000 +I (95144) example: expect speed: 0.000000 real_pulses:0 +I (95144) example: new speed:399.000000 +I (95154) example: expect speed: 0.000000 real_pulses:0 +I (95154) example: new speed:399.000000 +I (95164) example: expect speed: 0.000000 real_pulses:0 +I (95164) example: new speed:399.000000 +I (95174) example: expect speed: 0.000000 real_pulses:0 +I (95174) example: new speed:399.000000 +I (95184) example: expect speed: 0.000000 real_pulses:0 +I (95184) example: new speed:399.000000 +I (95194) example: expect speed: 0.000000 real_pulses:0 +I (95194) example: new speed:399.000000 +I (95204) example: expect speed: 0.000000 real_pulses:0 +I (95204) example: new speed:399.000000 +I (95214) example: expect speed: 0.000000 real_pulses:0 +I (95214) example: new speed:399.000000 +I (95224) example: expect speed: 0.000000 real_pulses:0 +I (95224) example: new speed:399.000000 +I (95234) example: expect speed: 0.000000 real_pulses:0 +I (95234) example: new speed:399.000000 +I (95244) example: expect speed: 0.000000 real_pulses:0 +I (95244) example: new speed:399.000000 +I (95254) example: expect speed: 0.000000 real_pulses:0 +I (95254) example: new speed:399.000000 +I (95264) example: expect speed: 0.000000 real_pulses:0 +I (95264) example: new speed:399.000000 +I (95274) example: expect speed: 0.000000 real_pulses:0 +I (95284) example: new speed:399.000000 +I (95284) example: expect speed: 0.000000 real_pulses:0 +I (95284) example: new speed:399.000000 +I (95294) example: expect speed: 0.000000 real_pulses:0 +I (95294) example: new speed:399.000000 +I (95304) example: expect speed: 0.000000 real_pulses:0 +I (95304) example: new speed:399.000000 +I (95314) example: expect speed: 0.000000 real_pulses:0 +I (95314) example: new speed:399.000000 +I (95324) example: expect speed: 0.000000 real_pulses:0 +I (95324) example: new speed:399.000000 +I (95334) example: expect speed: 0.000000 real_pulses:0 +I (95334) example: new speed:399.000000 +I (95344) example: expect speed: 0.000000 real_pulses:0 +I (95344) example: new speed:399.000000 +I (95354) example: expect speed: 0.000000 real_pulses:0 +I (95354) example: new speed:399.000000 +I (95364) example: expect speed: 0.000000 real_pulses:0 +I (95364) example: new speed:399.000000 +I (95374) example: expect speed: 0.000000 real_pulses:0 +I (95374) example: new speed:399.000000 +I (95384) example: expect speed: 0.000000 real_pulses:0 +I (95384) example: new speed:399.000000 +I (95394) example: expect speed: 0.000000 real_pulses:0 +I (95394) example: new speed:399.000000 +I (95404) example: expect speed: 0.000000 real_pulses:0 +I (95404) example: new speed:399.000000 +I (95414) example: expect speed: 0.000000 real_pulses:0 +I (95414) example: new speed:399.000000 +I (95424) example: expect speed: 0.000000 real_pulses:0 +I (95424) example: new speed:399.000000 +I (95434) example: expect speed: 0.000000 real_pulses:0 +I (95434) example: new speed:399.000000 +I (95444) example: expect speed: 0.000000 real_pulses:0 +I (95444) example: new speed:399.000000 +I (95454) example: expect speed: 0.000000 real_pulses:0 +I (95454) example: new speed:399.000000 +I (95464) example: expect speed: 0.000000 real_pulses:0 +I (95464) example: new speed:399.000000 +I (95474) example: expect speed: 0.000000 real_pulses:0 +I (95474) example: new speed:399.000000 +I (95484) example: expect speed: 0.000000 real_pulses:0 +I (95494) example: new speed:399.000000 +I (95494) example: expect speed: 0.000000 real_pulses:0 +I (95494) example: new speed:399.000000 +I (95504) example: expect speed: 0.000000 real_pulses:0 +I (95504) example: new speed:399.000000 +I (95514) example: expect speed: 0.000000 real_pulses:0 +I (95514) example: new speed:399.000000 +I (95524) example: expect speed: 0.000000 real_pulses:0 +I (95524) example: new speed:399.000000 +I (95534) example: expect speed: 0.000000 real_pulses:0 +I (95534) example: new speed:399.000000 +I (95544) example: expect speed: 0.000000 real_pulses:0 +I (95544) example: new speed:399.000000 +I (95554) example: expect speed: 0.000000 real_pulses:0 +I (95554) example: new speed:399.000000 +I (95564) example: expect speed: 0.000000 real_pulses:0 +I (95564) example: new speed:399.000000 +I (95574) example: expect speed: 0.000000 real_pulses:0 +I (95574) example: new speed:399.000000 +I (95584) modbus tcp: ModBusSlave_recv() +I (95584) modbus: ModbusSlaveProcess() +I (95584) example: expect speed: 0.000000 real_pulses:0 +I (95584) modbus: check id... +I (95584) example: new speed:399.000000 +I (95594) modbus: ok +I (95594) modbus: add: 0, length: 10 +I (95594) modbus: Read Holding Registers +I (95594) example: expect speed: 0.000000 real_pulses:0 +I (95604) example: new speed:399.000000 +I (95604) example: expect speed: 0.000000 real_pulses:0 +I (95604) example: new speed:399.000000 +I (95614) example: expect speed: 0.000000 real_pulses:0 +I (95614) example: new speed:399.000000 +I (95624) example: expect speed: 0.000000 real_pulses:0 +I (95624) example: new speed:399.000000 +I (95634) example: expect speed: 0.000000 real_pulses:0 +I (95634) example: new speed:399.000000 +I (95644) example: expect speed: 0.000000 real_pulses:0 +I (95654) example: new speed:399.000000 +I (95654) example: expect speed: 0.000000 real_pulses:0 +I (95654) example: new speed:399.000000 +I (95664) example: expect speed: 0.000000 real_pulses:0 +I (95664) example: new speed:399.000000 +I (95674) example: expect speed: 0.000000 real_pulses:0 +I (95674) example: new speed:399.000000 +I (95684) example: expect speed: 0.000000 real_pulses:0 +I (95684) example: new speed:399.000000 +I (95694) example: expect speed: 0.000000 real_pulses:0 +I (95694) example: new speed:399.000000 +I (95704) example: expect speed: 0.000000 real_pulses:0 +I (95704) example: new speed:399.000000 +I (95714) example: expect speed: 0.000000 real_pulses:0 +I (95714) example: new speed:399.000000 +I (95724) example: expect speed: 0.000000 real_pulses:0 +I (95724) example: new speed:399.000000 +I (95734) example: expect speed: 0.000000 real_pulses:0 +I (95734) example: new speed:399.000000 +I (95744) example: expect speed: 0.000000 real_pulses:0 +I (95744) example: new speed:399.000000 +I (95754) example: expect speed: 0.000000 real_pulses:0 +I (95754) example: new speed:399.000000 +I (95764) example: expect speed: 0.000000 real_pulses:0 +I (95764) example: new speed:399.000000 +I (95774) example: expect speed: 0.000000 real_pulses:0 +I (95774) example: new speed:399.000000 +I (95784) example: expect speed: 0.000000 real_pulses:0 +I (95784) example: new speed:399.000000 +I (95794) example: expect speed: 0.000000 real_pulses:0 +I (95794) example: new speed:399.000000 +I (95804) example: expect speed: 0.000000 real_pulses:0 +I (95804) example: new speed:399.000000 +I (95814) example: expect speed: 0.000000 real_pulses:0 +I (95814) example: new speed:399.000000 +I (95824) example: expect speed: 0.000000 real_pulses:0 +I (95824) example: new speed:399.000000 +I (95834) example: expect speed: 0.000000 real_pulses:0 +I (95834) example: new speed:399.000000 +I (95844) example: expect speed: 0.000000 real_pulses:0 +I (95844) example: new speed:399.000000 +I (95854) example: expect speed: 0.000000 real_pulses:0 +I (95854) example: new speed:399.000000 +I (95864) example: expect speed: 0.000000 real_pulses:0 +I (95864) example: new speed:399.000000 +I (95874) example: expect speed: 0.000000 real_pulses:0 +I (95874) example: new speed:399.000000 +I (95884) example: expect speed: 0.000000 real_pulses:0 +I (95884) example: new speed:399.000000 +I (95894) example: expect speed: 0.000000 real_pulses:0 +I (95894) example: new speed:399.000000 +I (95904) example: expect speed: 0.000000 real_pulses:0 +I (95904) example: new speed:399.000000 +I (95914) example: expect speed: 0.000000 real_pulses:0 +I (95914) example: new speed:399.000000 +I (95924) example: expect speed: 0.000000 real_pulses:0 +I (95924) example: new speed:399.000000 +I (95934) example: expect speed: 0.000000 real_pulses:0 +I (95934) example: new speed:399.000000 +I (95944) example: expect speed: 0.000000 real_pulses:0 +I (95944) example: new speed:399.000000 +I (95954) example: expect speed: 0.000000 real_pulses:0 +I (95954) example: new speed:399.000000 +I (95964) example: expect speed: 0.000000 real_pulses:0 +I (95964) example: new speed:399.000000 +I (95974) example: expect speed: 0.000000 real_pulses:0 +I (95974) example: new speed:399.000000 +I (95984) example: expect speed: 0.000000 real_pulses:0 +I (95984) example: new speed:399.000000 +I (95994) example: expect speed: 0.000000 real_pulses:0 +I (95994) example: new speed:399.000000 +I (96004) example: expect speed: 0.000000 real_pulses:0 +I (96004) example: new speed:399.000000 +I (96014) example: expect speed: 0.000000 real_pulses:0 +I (96014) example: new speed:399.000000 +I (96024) example: expect speed: 0.000000 real_pulses:0 +I (96024) example: new speed:399.000000 +I (96034) example: expect speed: 0.000000 real_pulses:0 +I (96034) example: new speed:399.000000 +I (96044) example: expect speed: 0.000000 real_pulses:0 +I (96044) example: new speed:399.000000 +I (96054) example: expect speed: 0.000000 real_pulses:0 +I (96054) example: new speed:399.000000 +I (96064) example: expect speed: 0.000000 real_pulses:0 +I (96064) example: new speed:399.000000 +I (96074) example: expect speed: 0.000000 real_pulses:0 +I (96074) example: new speed:399.000000 +I (96084) example: expect speed: 0.000000 real_pulses:0 +I (96084) example: new speed:399.000000 +I (96094) example: expect speed: 0.000000 real_pulses:0 +I (96094) example: new speed:399.000000 +I (96104) example: expect speed: 0.000000 real_pulses:0 +I (96104) example: new speed:399.000000 +I (96114) example: expect speed: 0.000000 real_pulses:0 +I (96114) example: new speed:399.000000 +I (96124) example: expect speed: 0.000000 real_pulses:0 +I (96124) example: new speed:399.000000 +I (96134) example: expect speed: 0.000000 real_pulses:0 +I (96134) example: new speed:399.000000 +I (96144) example: expect speed: 0.000000 real_pulses:0 +I (96144) example: new speed:399.000000 +I (96154) example: expect speed: 0.000000 real_pulses:0 +I (96154) example: new speed:399.000000 +I (96164) example: expect speed: 0.000000 real_pulses:0 +I (96164) example: new speed:399.000000 +I (96174) example: expect speed: 0.000000 real_pulses:0 +I (96174) example: new speed:399.000000 +I (96184) example: expect speed: 0.000000 real_pulses:0 +I (96184) example: new speed:399.000000 +I (96194) example: expect speed: 0.000000 real_pulses:0 +I (96194) example: new speed:399.000000 +I (96204) example: expect speed: 0.000000 real_pulses:0 +I (96204) example: new speed:399.000000 +I (96214) example: expect speed: 0.000000 real_pulses:0 +I (96214) example: new speed:399.000000 +I (96224) example: expect speed: 0.000000 real_pulses:0 +I (96224) example: new speed:399.000000 +I (96234) example: expect speed: 0.000000 real_pulses:0 +I (96234) example: new speed:399.000000 +I (96244) example: expect speed: 0.000000 real_pulses:0 +I (96244) example: new speed:399.000000 +I (96254) example: expect speed: 0.000000 real_pulses:0 +I (96254) example: new speed:399.000000 +I (96264) example: expect speed: 0.000000 real_pulses:0 +I (96264) example: new speed:399.000000 +I (96274) example: expect speed: 0.000000 real_pulses:0 +I (96274) example: new speed:399.000000 +I (96284) example: expect speed: 0.000000 real_pulses:0 +I (96284) example: new speed:399.000000 +I (96294) example: expect speed: 0.000000 real_pulses:0 +I (96294) example: new speed:399.000000 +I (96304) example: expect speed: 0.000000 real_pulses:0 +I (96304) example: new speed:399.000000 +I (96314) example: expect speed: 0.000000 real_pulses:0 +I (96314) example: new speed:399.000000 +I (96324) example: expect speed: 0.000000 real_pulses:0 +I (96324) example: new speed:399.000000 +I (96334) example: expect speed: 0.000000 real_pulses:0 +I (96334) example: new speed:399.000000 +I (96344) example: expect speed: 0.000000 real_pulses:0 +I (96344) example: new speed:399.000000 +I (96354) example: expect speed: 0.000000 real_pulses:0 +I (96354) example: new speed:399.000000 +I (96364) example: expect speed: 0.000000 real_pulses:0 +I (96364) example: new speed:399.000000 +I (96374) example: expect speed: 0.000000 real_pulses:0 +I (96374) example: new speed:399.000000 +I (96384) example: expect speed: 0.000000 real_pulses:0 +I (96384) example: new speed:399.000000 +I (96394) example: expect speed: 0.000000 real_pulses:0 +I (96394) example: new speed:399.000000 +I (96404) example: expect speed: 0.000000 real_pulses:0 +I (96404) example: new speed:399.000000 +I (96414) example: expect speed: 0.000000 real_pulses:0 +I (96414) example: new speed:399.000000 +I (96424) example: expect speed: 0.000000 real_pulses:0 +I (96424) example: new speed:399.000000 +I (96434) example: expect speed: 0.000000 real_pulses:0 +I (96434) example: new speed:399.000000 +I (96444) example: expect speed: 0.000000 real_pulses:0 +I (96444) example: new speed:399.000000 +I (96454) example: expect speed: 0.000000 real_pulses:0 +I (96454) example: new speed:399.000000 +I (96464) example: expect speed: 0.000000 real_pulses:0 +I (96464) example: new speed:399.000000 +I (96474) example: expect speed: 0.000000 real_pulses:0 +I (96474) example: new speed:399.000000 +I (96484) example: expect speed: 0.000000 real_pulses:0 +I (96484) example: new speed:399.000000 +I (96494) example: expect speed: 0.000000 real_pulses:0 +I (96494) example: new speed:399.000000 +I (96504) example: expect speed: 0.000000 real_pulses:0 +I (96514) example: new speed:399.000000 +I (96514) example: expect speed: 0.000000 real_pulses:0 +I (96514) example: new speed:399.000000 +I (96524) example: expect speed: 0.000000 real_pulses:0 +I (96524) example: new speed:399.000000 +I (96534) example: expect speed: 0.000000 real_pulses:0 +I (96534) example: new speed:399.000000 +I (96544) example: expect speed: 0.000000 real_pulses:0 +I (96544) example: new speed:399.000000 +I (96554) example: expect speed: 0.000000 real_pulses:0 +I (96554) example: new speed:399.000000 +I (96564) example: expect speed: 0.000000 real_pulses:0 +I (96564) example: new speed:399.000000 +I (96574) example: expect speed: 0.000000 real_pulses:0 +I (96574) example: new speed:399.000000 +I (96584) example: expect speed: 0.000000 real_pulses:0 +I (96584) example: new speed:399.000000 +I (96594) example: expect speed: 0.000000 real_pulses:0 +I (96594) example: new speed:399.000000 +I (96604) example: expect speed: 0.000000 real_pulses:0 +I (96604) example: new speed:399.000000 +I (96614) example: expect speed: 0.000000 real_pulses:0 +I (96624) example: new speed:399.000000 +I (96624) modbus tcp: ModBusSlave_recv() +I (96624) modbus: ModbusSlaveProcess() +I (96624) modbus: check id... +I (96624) modbus: ok +I (96624) modbus: add: 0, length: 10 +I (96624) modbus: Read Holding Registers +I (96624) example: expect speed: 0.000000 real_pulses:0 +I (96634) example: new speed:399.000000 +I (96634) example: expect speed: 0.000000 real_pulses:0 +I (96634) example: new speed:399.000000 +I (96644) example: expect speed: 0.000000 real_pulses:0 +I (96644) example: new speed:399.000000 +I (96654) example: expect speed: 0.000000 real_pulses:0 +I (96654) example: new speed:399.000000 +I (96664) example: expect speed: 0.000000 real_pulses:0 +I (96664) example: new speed:399.000000 +I (96674) example: expect speed: 0.000000 real_pulses:0 +I (96684) example: new speed:399.000000 +I (96684) example: expect speed: 0.000000 real_pulses:0 +I (96684) example: new speed:399.000000 +I (96694) example: expect speed: 0.000000 real_pulses:0 +I (96694) example: new speed:399.000000 +I (96704) example: expect speed: 0.000000 real_pulses:0 +I (96704) example: new speed:399.000000 +I (96714) example: expect speed: 0.000000 real_pulses:0 +I (96724) example: new speed:399.000000 +I (96724) example: expect speed: 0.000000 real_pulses:0 +I (96724) example: new speed:399.000000 +I (96734) example: expect speed: 0.000000 real_pulses:0 +I (96744) example: new speed:399.000000 +I (96744) example: expect speed: 0.000000 real_pulses:0 +I (96744) example: new speed:399.000000 +I (96754) example: expect speed: 0.000000 real_pulses:0 +I (96754) example: new speed:399.000000 +I (96764) example: expect speed: 0.000000 real_pulses:0 +I (96764) example: new speed:399.000000 +I (96774) example: expect speed: 0.000000 real_pulses:0 +I (96774) example: new speed:399.000000 +I (96784) example: expect speed: 0.000000 real_pulses:0 +I (96794) example: new speed:399.000000 +I (96794) example: expect speed: 0.000000 real_pulses:0 +I (96794) example: new speed:399.000000 +I (96804) example: expect speed: 0.000000 real_pulses:0 +I (96804) example: new speed:399.000000 +I (96814) example: expect speed: 0.000000 real_pulses:0 +I (96814) example: new speed:399.000000 +I (96824) example: expect speed: 0.000000 real_pulses:0 +I (96824) example: new speed:399.000000 +I (96834) example: expect speed: 0.000000 real_pulses:0 +I (96834) example: new speed:399.000000 +I (96844) example: expect speed: 0.000000 real_pulses:0 +I (96844) example: new speed:399.000000 +I (96854) example: expect speed: 0.000000 real_pulses:0 +I (96854) example: new speed:399.000000 +I (96864) example: expect speed: 0.000000 real_pulses:0 +I (96864) example: new speed:399.000000 +I (96874) example: expect speed: 0.000000 real_pulses:0 +I (96874) example: new speed:399.000000 +I (96884) example: expect speed: 0.000000 real_pulses:0 +I (96884) example: new speed:399.000000 +I (96894) example: expect speed: 0.000000 real_pulses:0 +I (96894) example: new speed:399.000000 +I (96904) example: expect speed: 0.000000 real_pulses:0 +I (96904) example: new speed:399.000000 +I (96914) example: expect speed: 0.000000 real_pulses:0 +I (96914) example: new speed:399.000000 +I (96924) example: expect speed: 0.000000 real_pulses:0 +I (96924) example: new speed:399.000000 +I (96934) example: expect speed: 0.000000 real_pulses:0 +I (96934) example: new speed:399.000000 +I (96944) example: expect speed: 0.000000 real_pulses:0 +I (96944) example: new speed:399.000000 +I (96954) example: expect speed: 0.000000 real_pulses:0 +I (96954) example: new speed:399.000000 +I (96964) example: expect speed: 0.000000 real_pulses:0 +I (96964) example: new speed:399.000000 +I (96974) example: expect speed: 0.000000 real_pulses:0 +I (96974) example: new speed:399.000000 +I (96984) example: expect speed: 0.000000 real_pulses:0 +I (96984) example: new speed:399.000000 +I (96994) example: expect speed: 0.000000 real_pulses:0 +I (96994) example: new speed:399.000000 +I (97004) example: expect speed: 0.000000 real_pulses:0 +I (97004) example: new speed:399.000000 +I (97014) example: expect speed: 0.000000 real_pulses:0 +I (97014) example: new speed:399.000000 +I (97024) example: expect speed: 0.000000 real_pulses:0 +I (97024) example: new speed:399.000000 +I (97034) example: expect speed: 0.000000 real_pulses:0 +I (97034) example: new speed:399.000000 +I (97044) example: expect speed: 0.000000 real_pulses:0 +I (97044) example: new speed:399.000000 +I (97054) example: expect speed: 0.000000 real_pulses:0 +I (97054) example: new speed:399.000000 +I (97064) example: expect speed: 0.000000 real_pulses:0 +I (97064) example: new speed:399.000000 +I (97074) example: expect speed: 0.000000 real_pulses:0 +I (97074) example: new speed:399.000000 +I (97084) example: expect speed: 0.000000 real_pulses:0 +I (97084) example: new speed:399.000000 +I (97094) example: expect speed: 0.000000 real_pulses:0 +I (97094) example: new speed:399.000000 +I (97104) example: expect speed: 0.000000 real_pulses:0 +I (97104) example: new speed:399.000000 +I (97114) example: expect speed: 0.000000 real_pulses:0 +I (97114) example: new speed:399.000000 +I (97124) example: expect speed: 0.000000 real_pulses:0 +I (97124) example: new speed:399.000000 +I (97134) example: expect speed: 0.000000 real_pulses:0 +I (97134) example: new speed:399.000000 +I (97144) example: expect speed: 0.000000 real_pulses:0 +I (97144) example: new speed:399.000000 +I (97154) example: expect speed: 0.000000 real_pulses:0 +I (97154) example: new speed:399.000000 +I (97164) example: expect speed: 0.000000 real_pulses:0 +I (97164) example: new speed:399.000000 +I (97174) example: expect speed: 0.000000 real_pulses:0 +I (97174) example: new speed:399.000000 +I (97184) example: expect speed: 0.000000 real_pulses:0 +I (97184) example: new speed:399.000000 +I (97194) example: expect speed: 0.000000 real_pulses:0 +I (97194) example: new speed:399.000000 +I (97204) example: expect speed: 0.000000 real_pulses:0 +I (97204) example: new speed:399.000000 +I (97214) example: expect speed: 0.000000 real_pulses:0 +I (97214) example: new speed:399.000000 +I (97224) example: expect speed: 0.000000 real_pulses:0 +I (97224) example: new speed:399.000000 +I (97234) example: expect speed: 0.000000 real_pulses:0 +I (97234) example: new speed:399.000000 +I (97244) example: expect speed: 0.000000 real_pulses:0 +I (97244) example: new speed:399.000000 +I (97254) example: expect speed: 0.000000 real_pulses:0 +I (97254) example: new speed:399.000000 +I (97264) example: expect speed: 0.000000 real_pulses:0 +I (97264) example: new speed:399.000000 +I (97274) example: expect speed: 0.000000 real_pulses:0 +I (97274) example: new speed:399.000000 +I (97284) example: expect speed: 0.000000 real_pulses:0 +I (97284) example: new speed:399.000000 +I (97294) example: expect speed: 0.000000 real_pulses:0 +I (97294) example: new speed:399.000000 +I (97304) example: expect speed: 0.000000 real_pulses:0 +I (97304) example: new speed:399.000000 +I (97314) example: expect speed: 0.000000 real_pulses:0 +I (97314) example: new speed:399.000000 +I (97324) example: expect speed: 0.000000 real_pulses:0 +I (97324) example: new speed:399.000000 +I (97334) example: expect speed: 0.000000 real_pulses:0 +I (97334) example: new speed:399.000000 +I (97344) example: expect speed: 0.000000 real_pulses:0 +I (97344) example: new speed:399.000000 +I (97354) example: expect speed: 0.000000 real_pulses:0 +I (97354) example: new speed:399.000000 +I (97364) example: expect speed: 0.000000 real_pulses:0 +I (97364) example: new speed:399.000000 +I (97374) example: expect speed: 0.000000 real_pulses:0 +I (97374) example: new speed:399.000000 +I (97384) example: expect speed: 0.000000 real_pulses:0 +I (97384) example: new speed:399.000000 +I (97394) example: expect speed: 0.000000 real_pulses:0 +I (97394) example: new speed:399.000000 +I (97404) example: expect speed: 0.000000 real_pulses:0 +I (97404) example: new speed:399.000000 +I (97414) example: expect speed: 0.000000 real_pulses:0 +I (97414) example: new speed:399.000000 +I (97424) example: expect speed: 0.000000 real_pulses:0 +I (97424) example: new speed:399.000000 +I (97434) example: expect speed: 0.000000 real_pulses:0 +I (97434) example: new speed:399.000000 +I (97444) example: expect speed: 0.000000 real_pulses:0 +I (97444) example: new speed:399.000000 +I (97454) example: expect speed: 0.000000 real_pulses:0 +I (97454) example: new speed:399.000000 +I (97464) example: expect speed: 0.000000 real_pulses:0 +I (97464) example: new speed:399.000000 +I (97474) example: expect speed: 0.000000 real_pulses:0 +I (97474) example: new speed:399.000000 +I (97484) example: expect speed: 0.000000 real_pulses:0 +I (97484) example: new speed:399.000000 +I (97494) example: expect speed: 0.000000 real_pulses:0 +I (97494) example: new speed:399.000000 +I (97504) example: expect speed: 0.000000 real_pulses:0 +I (97504) example: new speed:399.000000 +I (97514) example: expect speed: 0.000000 real_pulses:0 +I (97514) example: new speed:399.000000 +I (97524) example: expect speed: 0.000000 real_pulses:0 +I (97524) example: new speed:399.000000 +I (97534) example: expect speed: 0.000000 real_pulses:0 +I (97544) example: new speed:399.000000 +I (97544) example: expect speed: 0.000000 real_pulses:0 +I (97544) example: new speed:399.000000 +I (97554) example: expect speed: 0.000000 real_pulses:0 +I (97554) example: new speed:399.000000 +I (97564) example: expect speed: 0.000000 real_pulses:0 +I (97564) example: new speed:399.000000 +I (97574) example: expect speed: 0.000000 real_pulses:0 +I (97574) example: new speed:399.000000 +I (97584) example: expect speed: 0.000000 real_pulses:0 +I (97584) example: new speed:399.000000 +I (97594) example: expect speed: 0.000000 real_pulses:0 +I (97594) example: new speed:399.000000 +I (97604) example: expect speed: 0.000000 real_pulses:0 +I (97604) example: new speed:399.000000 +I (97614) example: expect speed: 0.000000 real_pulses:0 +I (97614) example: new speed:399.000000 +I (97624) example: expect speed: 0.000000 real_pulses:0 +I (97624) example: new speed:399.000000 +I (97634) example: expect speed: 0.000000 real_pulses:0 +I (97644) example: new speed:399.000000 +I (97644) modbus tcp: ModBusSlave_recv() +I (97644) modbus: ModbusSlaveProcess() +I (97644) modbus: check id... +I (97644) modbus: ok +I (97644) modbus: add: 0, length: 10 +I (97644) modbus: Read Holding Registers +I (97644) example: expect speed: 0.000000 real_pulses:0 +I (97654) example: new speed:399.000000 +I (97654) example: expect speed: 0.000000 real_pulses:0 +I (97654) example: new speed:399.000000 +I (97664) example: expect speed: 0.000000 real_pulses:0 +I (97664) example: new speed:399.000000 +I (97674) example: expect speed: 0.000000 real_pulses:0 +I (97674) example: new speed:399.000000 +I (97684) example: expect speed: 0.000000 real_pulses:0 +I (97684) example: new speed:399.000000 +I (97694) example: expect speed: 0.000000 real_pulses:0 +I (97694) example: new speed:399.000000 +I (97704) example: expect speed: 0.000000 real_pulses:0 +I (97704) example: new speed:399.000000 +I (97714) example: expect speed: 0.000000 real_pulses:0 +I (97724) example: new speed:399.000000 +I (97724) example: expect speed: 0.000000 real_pulses:0 +I (97724) example: new speed:399.000000 +I (97734) example: expect speed: 0.000000 real_pulses:0 +I (97744) example: new speed:399.000000 +I (97744) example: expect speed: 0.000000 real_pulses:0 +I (97744) example: new speed:399.000000 +I (97754) example: expect speed: 0.000000 real_pulses:0 +I (97754) example: new speed:399.000000 +I (97764) example: expect speed: 0.000000 real_pulses:0 +I (97764) example: new speed:399.000000 +I (97774) example: expect speed: 0.000000 real_pulses:0 +I (97774) example: new speed:399.000000 +I (97784) example: expect speed: 0.000000 real_pulses:0 +I (97794) example: new speed:399.000000 +I (97794) example: expect speed: 0.000000 real_pulses:0 +I (97804) example: new speed:399.000000 +I (97804) example: expect speed: 0.000000 real_pulses:0 +I (97814) example: new speed:399.000000 +I (97814) example: expect speed: 0.000000 real_pulses:0 +I (97814) example: new speed:399.000000 +I (97824) example: expect speed: 0.000000 real_pulses:0 +I (97824) example: new speed:399.000000 +I (97834) example: expect speed: 0.000000 real_pulses:0 +I (97834) example: new speed:399.000000 +I (97844) example: expect speed: 0.000000 real_pulses:0 +I (97844) example: new speed:399.000000 +I (97854) example: expect speed: 0.000000 real_pulses:0 +I (97854) example: new speed:399.000000 +I (97864) example: expect speed: 0.000000 real_pulses:0 +I (97864) example: new speed:399.000000 +I (97874) example: expect speed: 0.000000 real_pulses:0 +I (97874) example: new speed:399.000000 +I (97884) example: expect speed: 0.000000 real_pulses:0 +I (97884) example: new speed:399.000000 +I (97894) example: expect speed: 0.000000 real_pulses:0 +I (97894) example: new speed:399.000000 +I (97904) example: expect speed: 0.000000 real_pulses:0 +I (97904) example: new speed:399.000000 +I (97914) example: expect speed: 0.000000 real_pulses:0 +I (97914) example: new speed:399.000000 +I (97924) example: expect speed: 0.000000 real_pulses:0 +I (97924) example: new speed:399.000000 +I (97934) example: expect speed: 0.000000 real_pulses:0 +I (97934) example: new speed:399.000000 +I (97944) example: expect speed: 0.000000 real_pulses:0 +I (97944) example: new speed:399.000000 +I (97954) example: expect speed: 0.000000 real_pulses:0 +I (97954) example: new speed:399.000000 +I (97964) example: expect speed: 0.000000 real_pulses:0 +I (97964) example: new speed:399.000000 +I (97974) example: expect speed: 0.000000 real_pulses:0 +I (97974) example: new speed:399.000000 +I (97984) example: expect speed: 0.000000 real_pulses:0 +I (97984) example: new speed:399.000000 +I (97994) example: expect speed: 0.000000 real_pulses:0 +I (97994) example: new speed:399.000000 +I (98004) example: expect speed: 0.000000 real_pulses:0 +I (98004) example: new speed:399.000000 +I (98014) example: expect speed: 0.000000 real_pulses:0 +I (98014) example: new speed:399.000000 +I (98024) example: expect speed: 0.000000 real_pulses:0 +I (98024) example: new speed:399.000000 +I (98034) example: expect speed: 0.000000 real_pulses:0 +I (98034) example: new speed:399.000000 +I (98044) example: expect speed: 0.000000 real_pulses:0 +I (98044) example: new speed:399.000000 +I (98054) example: expect speed: 0.000000 real_pulses:0 +I (98054) example: new speed:399.000000 +I (98064) example: expect speed: 0.000000 real_pulses:0 +I (98064) example: new speed:399.000000 +I (98074) example: expect speed: 0.000000 real_pulses:0 +I (98074) example: new speed:399.000000 +I (98084) example: expect speed: 0.000000 real_pulses:0 +I (98084) example: new speed:399.000000 +I (98094) example: expect speed: 0.000000 real_pulses:0 +I (98094) example: new speed:399.000000 +I (98104) example: expect speed: 0.000000 real_pulses:0 +I (98104) example: new speed:399.000000 +I (98114) example: expect speed: 0.000000 real_pulses:0 +I (98114) example: new speed:399.000000 +I (98124) example: expect speed: 0.000000 real_pulses:0 +I (98124) example: new speed:399.000000 +I (98134) example: expect speed: 0.000000 real_pulses:0 +I (98134) example: new speed:399.000000 +I (98144) example: expect speed: 0.000000 real_pulses:0 +I (98144) example: new speed:399.000000 +I (98154) example: expect speed: 0.000000 real_pulses:0 +I (98154) example: new speed:399.000000 +I (98164) example: expect speed: 0.000000 real_pulses:0 +I (98164) example: new speed:399.000000 +I (98174) example: expect speed: 0.000000 real_pulses:0 +I (98174) example: new speed:399.000000 +I (98184) example: expect speed: 0.000000 real_pulses:0 +I (98184) example: new speed:399.000000 +I (98194) example: expect speed: 0.000000 real_pulses:0 +I (98194) example: new speed:399.000000 +I (98204) example: expect speed: 0.000000 real_pulses:0 +I (98204) example: new speed:399.000000 +I (98214) example: expect speed: 0.000000 real_pulses:0 +I (98214) example: new speed:399.000000 +I (98224) example: expect speed: 0.000000 real_pulses:0 +I (98224) example: new speed:399.000000 +I (98234) example: expect speed: 0.000000 real_pulses:0 +I (98234) example: new speed:399.000000 +I (98244) example: expect speed: 0.000000 real_pulses:0 +I (98254) example: new speed:399.000000 +I (98254) example: expect speed: 0.000000 real_pulses:0 +I (98254) example: new speed:399.000000 +I (98264) example: expect speed: 0.000000 real_pulses:0 +I (98264) example: new speed:399.000000 +I (98274) example: expect speed: 0.000000 real_pulses:0 +I (98274) example: new speed:399.000000 +I (98284) example: expect speed: 0.000000 real_pulses:0 +I (98284) example: new speed:399.000000 +I (98294) example: expect speed: 0.000000 real_pulses:0 +I (98294) example: new speed:399.000000 +I (98304) example: expect speed: 0.000000 real_pulses:0 +I (98304) example: new speed:399.000000 +I (98314) example: expect speed: 0.000000 real_pulses:0 +I (98314) example: new speed:399.000000 +I (98324) example: expect speed: 0.000000 real_pulses:0 +I (98324) example: new speed:399.000000 +I (98334) example: expect speed: 0.000000 real_pulses:0 +I (98334) example: new speed:399.000000 +I (98344) example: expect speed: 0.000000 real_pulses:0 +I (98344) example: new speed:399.000000 +I (98354) example: expect speed: 0.000000 real_pulses:0 +I (98354) example: new speed:399.000000 +I (98364) example: expect speed: 0.000000 real_pulses:0 +I (98364) example: new speed:399.000000 +I (98374) example: expect speed: 0.000000 real_pulses:0 +I (98374) example: new speed:399.000000 +I (98384) example: expect speed: 0.000000 real_pulses:0 +I (98384) example: new speed:399.000000 +I (98394) example: expect speed: 0.000000 real_pulses:0 +I (98394) example: new speed:399.000000 +I (98404) example: expect speed: 0.000000 real_pulses:0 +I (98404) example: new speed:399.000000 +I (98414) example: expect speed: 0.000000 real_pulses:0 +I (98414) example: new speed:399.000000 +I (98424) example: expect speed: 0.000000 real_pulses:0 +I (98424) example: new speed:399.000000 +I (98434) example: expect speed: 0.000000 real_pulses:0 +I (98434) example: new speed:399.000000 +I (98444) example: expect speed: 0.000000 real_pulses:0 +I (98444) example: new speed:399.000000 +I (98454) example: expect speed: 0.000000 real_pulses:0 +I (98454) example: new speed:399.000000 +I (98464) example: expect speed: 0.000000 real_pulses:0 +I (98464) example: new speed:399.000000 +I (98474) example: expect speed: 0.000000 real_pulses:0 +I (98474) example: new speed:399.000000 +I (98484) example: expect speed: 0.000000 real_pulses:0 +I (98484) example: new speed:399.000000 +I (98494) example: expect speed: 0.000000 real_pulses:0 +I (98494) example: new speed:399.000000 +I (98504) example: expect speed: 0.000000 real_pulses:0 +I (98504) example: new speed:399.000000 +I (98514) example: expect speed: 0.000000 real_pulses:0 +I (98514) example: new speed:399.000000 +I (98524) example: expect speed: 0.000000 real_pulses:0 +I (98524) example: new speed:399.000000 +I (98534) example: expect speed: 0.000000 real_pulses:0 +I (98534) example: new speed:399.000000 +I (98544) example: expect speed: 0.000000 real_pulses:0 +I (98544) example: new speed:399.000000 +I (98554) example: expect speed: 0.000000 real_pulses:0 +I (98554) example: new speed:399.000000 +I (98564) example: expect speed: 0.000000 real_pulses:0 +I (98564) example: new speed:399.000000 +I (98574) example: expect speed: 0.000000 real_pulses:0 +I (98574) example: new speed:399.000000 +I (98584) example: expect speed: 0.000000 real_pulses:0 +I (98584) example: new speed:399.000000 +I (98594) example: expect speed: 0.000000 real_pulses:0 +I (98594) example: new speed:399.000000 +I (98604) example: expect speed: 0.000000 real_pulses:0 +I (98604) example: new speed:399.000000 +I (98614) example: expect speed: 0.000000 real_pulses:0 +I (98614) example: new speed:399.000000 +I (98624) example: expect speed: 0.000000 real_pulses:0 +I (98624) example: new speed:399.000000 +I (98634) example: expect speed: 0.000000 real_pulses:0 +I (98634) example: new speed:399.000000 +I (98644) example: expect speed: 0.000000 real_pulses:0 +I (98644) example: new speed:399.000000 +I (98654) example: expect speed: 0.000000 real_pulses:0 +I (98664) example: new speed:399.000000 +I (98664) modbus tcp: ModBusSlave_recv() +I (98664) modbus: ModbusSlaveProcess() +I (98664) modbus: check id... +I (98664) modbus: ok +I (98664) modbus: add: 0, length: 10 +I (98664) modbus: Read Holding Registers +I (98664) example: expect speed: 0.000000 real_pulses:0 +I (98674) example: new speed:399.000000 +I (98674) example: expect speed: 0.000000 real_pulses:0 +I (98674) example: new speed:399.000000 +I (98684) example: expect speed: 0.000000 real_pulses:0 +I (98694) example: new speed:399.000000 +I (98694) example: expect speed: 0.000000 real_pulses:0 +I (98694) example: new speed:399.000000 +I (98704) example: expect speed: 0.000000 real_pulses:0 +I (98704) example: new speed:399.000000 +I (98714) example: expect speed: 0.000000 real_pulses:0 +I (98714) example: new speed:399.000000 +I (98724) example: expect speed: 0.000000 real_pulses:0 +I (98724) example: new speed:399.000000 +I (98734) example: expect speed: 0.000000 real_pulses:0 +I (98734) example: new speed:399.000000 +I (98744) example: expect speed: 0.000000 real_pulses:0 +I (98754) example: new speed:399.000000 +I (98754) example: expect speed: 0.000000 real_pulses:0 +I (98754) example: new speed:399.000000 +I (98764) example: expect speed: 0.000000 real_pulses:0 +I (98774) example: new speed:399.000000 +I (98774) example: expect speed: 0.000000 real_pulses:0 +I (98784) example: new speed:399.000000 +I (98784) example: expect speed: 0.000000 real_pulses:0 +I (98784) example: new speed:399.000000 +I (98794) example: expect speed: 0.000000 real_pulses:0 +I (98794) example: new speed:399.000000 +I (98804) example: expect speed: 0.000000 real_pulses:0 +I (98804) example: new speed:399.000000 +I (98814) example: expect speed: 0.000000 real_pulses:0 +I (98814) example: new speed:399.000000 +I (98824) example: expect speed: 0.000000 real_pulses:0 +I (98834) example: new speed:399.000000 +I (98834) example: expect speed: 0.000000 real_pulses:0 +I (98834) example: new speed:399.000000 +I (98844) example: expect speed: 0.000000 real_pulses:0 +I (98844) example: new speed:399.000000 +I (98854) example: expect speed: 0.000000 real_pulses:0 +I (98854) example: new speed:399.000000 +I (98864) example: expect speed: 0.000000 real_pulses:0 +I (98864) example: new speed:399.000000 +I (98874) example: expect speed: 0.000000 real_pulses:0 +I (98874) example: new speed:399.000000 +I (98884) example: expect speed: 0.000000 real_pulses:0 +I (98884) example: new speed:399.000000 +I (98894) example: expect speed: 0.000000 real_pulses:0 +I (98894) example: new speed:399.000000 +I (98904) example: expect speed: 0.000000 real_pulses:0 +I (98904) example: new speed:399.000000 +I (98914) example: expect speed: 0.000000 real_pulses:0 +I (98914) example: new speed:399.000000 +I (98924) example: expect speed: 0.000000 real_pulses:0 +I (98924) example: new speed:399.000000 +I (98934) example: expect speed: 0.000000 real_pulses:0 +I (98934) example: new speed:399.000000 +I (98944) example: expect speed: 0.000000 real_pulses:0 +I (98944) example: new speed:399.000000 +I (98954) example: expect speed: 0.000000 real_pulses:0 +I (98954) example: new speed:399.000000 +I (98964) example: expect speed: 0.000000 real_pulses:0 +I (98964) example: new speed:399.000000 +I (98974) example: expect speed: 0.000000 real_pulses:0 +I (98974) example: new speed:399.000000 +I (98984) example: expect speed: 0.000000 real_pulses:0 +I (98984) example: new speed:399.000000 +I (98994) example: expect speed: 0.000000 real_pulses:0 +I (98994) example: new speed:399.000000 +I (99004) example: expect speed: 0.000000 real_pulses:0 +I (99004) example: new speed:399.000000 +I (99014) example: expect speed: 0.000000 real_pulses:0 +I (99014) example: new speed:399.000000 +I (99024) example: expect speed: 0.000000 real_pulses:0 +I (99024) example: new speed:399.000000 +I (99034) example: expect speed: 0.000000 real_pulses:0 +I (99034) example: new speed:399.000000 +I (99044) example: expect speed: 0.000000 real_pulses:0 +I (99044) example: new speed:399.000000 +I (99054) example: expect speed: 0.000000 real_pulses:0 +I (99054) example: new speed:399.000000 +I (99064) example: expect speed: 0.000000 real_pulses:0 +I (99064) example: new speed:399.000000 +I (99074) example: expect speed: 0.000000 real_pulses:0 +I (99074) example: new speed:399.000000 +I (99084) example: expect speed: 0.000000 real_pulses:0 +I (99084) example: new speed:399.000000 +I (99094) example: expect speed: 0.000000 real_pulses:0 +I (99094) example: new speed:399.000000 +I (99104) example: expect speed: 0.000000 real_pulses:0 +I (99104) example: new speed:399.000000 +I (99114) example: expect speed: 0.000000 real_pulses:0 +I (99114) example: new speed:399.000000 +I (99124) example: expect speed: 0.000000 real_pulses:0 +I (99124) example: new speed:399.000000 +I (99134) example: expect speed: 0.000000 real_pulses:0 +I (99134) example: new speed:399.000000 +I (99144) example: expect speed: 0.000000 real_pulses:0 +I (99144) example: new speed:399.000000 +I (99154) example: expect speed: 0.000000 real_pulses:0 +I (99154) example: new speed:399.000000 +I (99164) example: expect speed: 0.000000 real_pulses:0 +I (99164) example: new speed:399.000000 +I (99174) example: expect speed: 0.000000 real_pulses:0 +I (99174) example: new speed:399.000000 +I (99184) example: expect speed: 0.000000 real_pulses:0 +I (99184) example: new speed:399.000000 +I (99194) example: expect speed: 0.000000 real_pulses:0 +I (99194) example: new speed:399.000000 +I (99204) example: expect speed: 0.000000 real_pulses:0 +I (99204) example: new speed:399.000000 +I (99214) example: expect speed: 0.000000 real_pulses:0 +I (99214) example: new speed:399.000000 +I (99224) example: expect speed: 0.000000 real_pulses:0 +I (99224) example: new speed:399.000000 +I (99234) example: expect speed: 0.000000 real_pulses:0 +I (99234) example: new speed:399.000000 +I (99244) example: expect speed: 0.000000 real_pulses:0 +I (99244) example: new speed:399.000000 +I (99254) example: expect speed: 0.000000 real_pulses:0 +I (99254) example: new speed:399.000000 +I (99264) example: expect speed: 0.000000 real_pulses:0 +I (99264) example: new speed:399.000000 +I (99274) example: expect speed: 0.000000 real_pulses:0 +I (99274) example: new speed:399.000000 +I (99284) example: expect speed: 0.000000 real_pulses:0 +I (99284) example: new speed:399.000000 +I (99294) example: expect speed: 0.000000 real_pulses:0 +I (99294) example: new speed:399.000000 +I (99304) example: expect speed: 0.000000 real_pulses:0 +I (99304) example: new speed:399.000000 +I (99314) example: expect speed: 0.000000 real_pulses:0 +I (99314) example: new speed:399.000000 +I (99324) example: expect speed: 0.000000 real_pulses:0 +I (99324) example: new speed:399.000000 +I (99334) example: expect speed: 0.000000 real_pulses:0 +I (99334) example: new speed:399.000000 +I (99344) example: expect speed: 0.000000 real_pulses:0 +I (99344) example: new speed:399.000000 +I (99354) example: expect speed: 0.000000 real_pulses:0 +I (99354) example: new speed:399.000000 +I (99364) example: expect speed: 0.000000 real_pulses:0 +I (99364) example: new speed:399.000000 +I (99374) example: expect speed: 0.000000 real_pulses:0 +I (99374) example: new speed:399.000000 +I (99384) example: expect speed: 0.000000 real_pulses:0 +I (99384) example: new speed:399.000000 +I (99394) example: expect speed: 0.000000 real_pulses:0 +I (99394) example: new speed:399.000000 +I (99404) example: expect speed: 0.000000 real_pulses:0 +I (99404) example: new speed:399.000000 +I (99414) example: expect speed: 0.000000 real_pulses:0 +I (99414) example: new speed:399.000000 +I (99424) example: expect speed: 0.000000 real_pulses:0 +I (99424) example: new speed:399.000000 +I (99434) example: expect speed: 0.000000 real_pulses:0 +I (99434) example: new speed:399.000000 +I (99444) example: expect speed: 0.000000 real_pulses:0 +I (99444) example: new speed:399.000000 +I (99454) example: expect speed: 0.000000 real_pulses:0 +I (99454) example: new speed:399.000000 +I (99464) example: expect speed: 0.000000 real_pulses:0 +I (99464) example: new speed:399.000000 +I (99474) example: expect speed: 0.000000 real_pulses:0 +I (99474) example: new speed:399.000000 +I (99484) example: expect speed: 0.000000 real_pulses:0 +I (99484) example: new speed:399.000000 +I (99494) example: expect speed: 0.000000 real_pulses:0 +I (99494) example: new speed:399.000000 +I (99504) example: expect speed: 0.000000 real_pulses:0 +I (99504) example: new speed:399.000000 +I (99514) example: expect speed: 0.000000 real_pulses:0 +I (99514) example: new speed:399.000000 +I (99524) example: expect speed: 0.000000 real_pulses:0 +I (99524) example: new speed:399.000000 +I (99534) example: expect speed: 0.000000 real_pulses:0 +I (99534) example: new speed:399.000000 +I (99544) example: expect speed: 0.000000 real_pulses:0 +I (99544) example: new speed:399.000000 +I (99554) example: expect speed: 0.000000 real_pulses:0 +I (99554) example: new speed:399.000000 +I (99564) example: expect speed: 0.000000 real_pulses:0 +I (99564) example: new speed:399.000000 +I (99574) example: expect speed: 0.000000 real_pulses:0 +I (99574) example: new speed:399.000000 +I (99584) example: expect speed: 0.000000 real_pulses:0 +I (99584) example: new speed:399.000000 +I (99594) example: expect speed: 0.000000 real_pulses:0 +I (99594) example: new speed:399.000000 +I (99604) example: expect speed: 0.000000 real_pulses:0 +I (99604) example: new speed:399.000000 +I (99614) example: expect speed: 0.000000 real_pulses:0 +I (99614) example: new speed:399.000000 +I (99624) example: expect speed: 0.000000 real_pulses:0 +I (99624) example: new speed:399.000000 +I (99634) example: expect speed: 0.000000 real_pulses:0 +I (99634) example: new speed:399.000000 +I (99644) example: expect speed: 0.000000 real_pulses:0 +I (99644) example: new speed:399.000000 +I (99654) example: expect speed: 0.000000 real_pulses:0 +I (99654) example: new speed:399.000000 +I (99664) example: expect speed: 0.000000 real_pulses:0 +I (99664) example: new speed:399.000000 +I (99674) example: expect speed: 0.000000 real_pulses:0 +I (99674) example: new speed:399.000000 +I (99684) example: expect speed: 0.000000 real_pulses:0 +I (99694) example: new speed:399.000000 +I (99694) modbus tcp: ModBusSlave_recv() +I (99694) modbus: ModbusSlaveProcess() +I (99694) modbus: check id... +I (99694) modbus: ok +I (99694) modbus: add: 0, length: 10 +I (99694) modbus: Read Holding Registers +I (99694) example: expect speed: 0.000000 real_pulses:0 +I (99704) example: new speed:399.000000 +I (99704) example: expect speed: 0.000000 real_pulses:0 +I (99704) example: new speed:399.000000 +I (99714) example: expect speed: 0.000000 real_pulses:0 +I (99714) example: new speed:399.000000 +I (99724) example: expect speed: 0.000000 real_pulses:0 +I (99724) example: new speed:399.000000 +I (99734) example: expect speed: 0.000000 real_pulses:0 +I (99734) example: new speed:399.000000 +I (99744) example: expect speed: 0.000000 real_pulses:0 +I (99744) example: new speed:399.000000 +I (99754) example: expect speed: 0.000000 real_pulses:0 +I (99754) example: new speed:399.000000 +I (99764) example: expect speed: 0.000000 real_pulses:0 +I (99764) example: new speed:399.000000 +I (99774) example: expect speed: 0.000000 real_pulses:0 +I (99774) example: new speed:399.000000 +I (99784) example: expect speed: 0.000000 real_pulses:0 +I (99794) example: new speed:399.000000 +I (99794) example: expect speed: 0.000000 real_pulses:0 +I (99794) example: new speed:399.000000 +I (99804) example: expect speed: 0.000000 real_pulses:0 +I (99804) example: new speed:399.000000 +I (99814) example: expect speed: 0.000000 real_pulses:0 +I (99814) example: new speed:399.000000 +I (99824) example: expect speed: 0.000000 real_pulses:0 +I (99824) example: new speed:399.000000 +I (99834) example: expect speed: 0.000000 real_pulses:0 +I (99834) example: new speed:399.000000 +I (99844) example: expect speed: 0.000000 real_pulses:0 +I (99844) example: new speed:399.000000 +I (99854) example: expect speed: 0.000000 real_pulses:0 +I (99854) example: new speed:399.000000 +I (99864) example: expect speed: 0.000000 real_pulses:0 +I (99864) example: new speed:399.000000 +I (99874) example: expect speed: 0.000000 real_pulses:0 +I (99874) example: new speed:399.000000 +I (99884) example: expect speed: 0.000000 real_pulses:0 +I (99884) example: new speed:399.000000 +I (99894) example: expect speed: 0.000000 real_pulses:0 +I (99894) example: new speed:399.000000 +I (99904) example: expect speed: 0.000000 real_pulses:0 +I (99904) example: new speed:399.000000 +I (99914) example: expect speed: 0.000000 real_pulses:0 +I (99914) example: new speed:399.000000 +I (99924) example: expect speed: 0.000000 real_pulses:0 +I (99924) example: new speed:399.000000 +I (99934) example: expect speed: 0.000000 real_pulses:0 +I (99934) example: new speed:399.000000 +I (99944) example: expect speed: 0.000000 real_pulses:0 +I (99944) example: new speed:399.000000 +I (99954) example: expect speed: 0.000000 real_pulses:0 +I (99954) example: new speed:399.000000 +I (99964) example: expect speed: 0.000000 real_pulses:0 +I (99964) example: new speed:399.000000 +I (99974) example: expect speed: 0.000000 real_pulses:0 +I (99974) example: new speed:399.000000 +I (99984) example: expect speed: 0.000000 real_pulses:0 +I (99984) example: new speed:399.000000 +I (99994) example: expect speed: 0.000000 real_pulses:0 +I (100004) example: new speed:399.000000 +I (100004) example: expect speed: 0.000000 real_pulses:0 +I (100004) example: new speed:399.000000 +I (100014) example: expect speed: 0.000000 real_pulses:0 +I (100014) example: new speed:399.000000 +I (100024) example: expect speed: 0.000000 real_pulses:0 +I (100024) example: new speed:399.000000 +I (100034) example: expect speed: 0.000000 real_pulses:0 +I (100034) example: new speed:399.000000 +I (100044) example: expect speed: 0.000000 real_pulses:0 +I (100044) example: new speed:399.000000 +I (100054) example: expect speed: 0.000000 real_pulses:0 +I (100064) example: new speed:399.000000 +I (100064) example: expect speed: 0.000000 real_pulses:0 +I (100064) example: new speed:399.000000 +I (100074) example: expect speed: 0.000000 real_pulses:0 +I (100074) example: new speed:399.000000 +I (100084) example: expect speed: 0.000000 real_pulses:0 +I (100084) example: new speed:399.000000 +I (100094) example: expect speed: 0.000000 real_pulses:0 +I (100094) example: new speed:399.000000 +I (100104) example: expect speed: 0.000000 real_pulses:0 +I (100104) example: new speed:399.000000 +I (100114) example: expect speed: 0.000000 real_pulses:0 +I (100114) example: new speed:399.000000 +I (100124) example: expect speed: 0.000000 real_pulses:0 +I (100124) example: new speed:399.000000 +I (100134) example: expect speed: 0.000000 real_pulses:0 +I (100134) example: new speed:399.000000 +I (100144) example: expect speed: 0.000000 real_pulses:0 +I (100144) example: new speed:399.000000 +I (100154) example: expect speed: 0.000000 real_pulses:0 +I (100154) example: new speed:399.000000 +I (100164) example: expect speed: 0.000000 real_pulses:0 +I (100164) example: new speed:399.000000 +I (100174) example: expect speed: 0.000000 real_pulses:0 +I (100174) example: new speed:399.000000 +I (100184) example: expect speed: 0.000000 real_pulses:0 +I (100184) example: new speed:399.000000 +I (100194) example: expect speed: 0.000000 real_pulses:0 +I (100194) example: new speed:399.000000 +I (100204) example: expect speed: 0.000000 real_pulses:0 +I (100204) example: new speed:399.000000 +I (100214) example: expect speed: 0.000000 real_pulses:0 +I (100214) example: new speed:399.000000 +I (100224) example: expect speed: 0.000000 real_pulses:0 +I (100224) example: new speed:399.000000 +I (100234) example: expect speed: 0.000000 real_pulses:0 +I (100234) example: new speed:399.000000 +I (100244) example: expect speed: 0.000000 real_pulses:0 +I (100244) example: new speed:399.000000 +I (100254) example: expect speed: 0.000000 real_pulses:0 +I (100254) example: new speed:399.000000 +I (100264) example: expect speed: 0.000000 real_pulses:0 +I (100264) example: new speed:399.000000 +I (100274) example: expect speed: 0.000000 real_pulses:0 +I (100274) example: new speed:399.000000 +I (100284) example: expect speed: 0.000000 real_pulses:0 +I (100284) example: new speed:399.000000 +I (100294) example: expect speed: 0.000000 real_pulses:0 +I (100304) example: new speed:399.000000 +I (100304) example: expect speed: 0.000000 real_pulses:0 +I (100314) example: new speed:399.000000 +I (100314) example: expect speed: 0.000000 real_pulses:0 +I (100314) example: new speed:399.000000 +I (100324) example: expect speed: 0.000000 real_pulses:0 +I (100324) example: new speed:399.000000 +I (100334) example: expect speed: 0.000000 real_pulses:0 +I (100334) example: new speed:399.000000 +I (100344) example: expect speed: 0.000000 real_pulses:0 +I (100344) example: new speed:399.000000 +I (100354) example: expect speed: 0.000000 real_pulses:0 +I (100354) example: new speed:399.000000 +I (100364) example: expect speed: 0.000000 real_pulses:0 +I (100374) example: new speed:399.000000 +I (100374) example: expect speed: 0.000000 real_pulses:0 +I (100374) example: new speed:399.000000 +I (100384) example: expect speed: 0.000000 real_pulses:0 +I (100384) example: new speed:399.000000 +I (100394) example: expect speed: 0.000000 real_pulses:0 +I (100394) example: new speed:399.000000 +I (100404) example: expect speed: 0.000000 real_pulses:0 +I (100404) example: new speed:399.000000 +I (100414) example: expect speed: 0.000000 real_pulses:0 +I (100414) example: new speed:399.000000 +I (100424) example: expect speed: 0.000000 real_pulses:0 +I (100424) example: new speed:399.000000 +I (100434) example: expect speed: 0.000000 real_pulses:0 +I (100434) example: new speed:399.000000 +I (100444) example: expect speed: 0.000000 real_pulses:0 +I (100444) example: new speed:399.000000 +I (100454) example: expect speed: 0.000000 real_pulses:0 +I (100454) example: new speed:399.000000 +I (100464) example: expect speed: 0.000000 real_pulses:0 +I (100464) example: new speed:399.000000 +I (100474) example: expect speed: 0.000000 real_pulses:0 +I (100474) example: new speed:399.000000 +I (100484) example: expect speed: 0.000000 real_pulses:0 +I (100484) example: new speed:399.000000 +I (100494) example: expect speed: 0.000000 real_pulses:0 +I (100494) example: new speed:399.000000 +I (100504) example: expect speed: 0.000000 real_pulses:0 +I (100504) example: new speed:399.000000 +I (100514) example: expect speed: 0.000000 real_pulses:0 +I (100514) example: new speed:399.000000 +I (100524) example: expect speed: 0.000000 real_pulses:0 +I (100524) example: new speed:399.000000 +I (100534) example: expect speed: 0.000000 real_pulses:0 +I (100534) example: new speed:399.000000 +I (100544) example: expect speed: 0.000000 real_pulses:0 +I (100544) example: new speed:399.000000 +I (100554) example: expect speed: 0.000000 real_pulses:0 +I (100554) example: new speed:399.000000 +I (100564) example: expect speed: 0.000000 real_pulses:0 +I (100564) example: new speed:399.000000 +I (100574) example: expect speed: 0.000000 real_pulses:0 +I (100574) example: new speed:399.000000 +I (100584) example: expect speed: 0.000000 real_pulses:0 +I (100584) example: new speed:399.000000 +I (100594) example: expect speed: 0.000000 real_pulses:0 +I (100594) example: new speed:399.000000 +I (100604) example: expect speed: 0.000000 real_pulses:0 +I (100604) example: new speed:399.000000 +I (100614) example: expect speed: 0.000000 real_pulses:0 +I (100614) example: new speed:399.000000 +I (100624) example: expect speed: 0.000000 real_pulses:0 +I (100624) example: new speed:399.000000 +I (100634) example: expect speed: 0.000000 real_pulses:0 +I (100634) example: new speed:399.000000 +I (100644) example: expect speed: 0.000000 real_pulses:0 +I (100644) example: new speed:399.000000 +I (100654) example: expect speed: 0.000000 real_pulses:0 +I (100654) example: new speed:399.000000 +I (100664) example: expect speed: 0.000000 real_pulses:0 +I (100664) example: new speed:399.000000 +I (100674) example: expect speed: 0.000000 real_pulses:0 +I (100674) example: new speed:399.000000 +I (100684) example: expect speed: 0.000000 real_pulses:0 +I (100684) example: new speed:399.000000 +I (100694) example: expect speed: 0.000000 real_pulses:0 +I (100694) example: new speed:399.000000 +I (100704) example: expect speed: 0.000000 real_pulses:0 +I (100704) example: new speed:399.000000 +I (100714) example: expect speed: 0.000000 real_pulses:0 +I (100714) example: new speed:399.000000 +I (100724) example: expect speed: 0.000000 real_pulses:0 +I (100724) example: new speed:399.000000 +I (100734) example: expect speed: 0.000000 real_pulses:0 +I (100734) example: new speed:399.000000 +I (100744) example: expect speed: 0.000000 real_pulses:0 +I (100744) example: new speed:399.000000 +I (100754) example: expect speed: 0.000000 real_pulses:0 +I (100754) example: new speed:399.000000 +I (100764) example: expect speed: 0.000000 real_pulses:0 +I (100764) example: new speed:399.000000 +I (100774) example: expect speed: 0.000000 real_pulses:0 +I (100774) example: new speed:399.000000 +I (100784) example: expect speed: 0.000000 real_pulses:0 +I (100784) example: new speed:399.000000 +I (100794) example: expect speed: 0.000000 real_pulses:0 +I (100794) example: new speed:399.000000 +I (100804) example: expect speed: 0.000000 real_pulses:0 +I (100804) example: new speed:399.000000 +I (100814) example: expect speed: 0.000000 real_pulses:0 +I (100814) example: new speed:399.000000 +I (100824) example: expect speed: 0.000000 real_pulses:0 +I (100824) example: new speed:399.000000 +I (100834) example: expect speed: 0.000000 real_pulses:0 +I (100834) example: new speed:399.000000 +I (100844) example: expect speed: 0.000000 real_pulses:0 +I (100844) example: new speed:399.000000 +I (100854) example: expect speed: 0.000000 real_pulses:0 +I (100854) example: new speed:399.000000 +I (100864) example: expect speed: 0.000000 real_pulses:0 +I (100864) example: new speed:399.000000 +I (100874) example: expect speed: 0.000000 real_pulses:0 +I (100874) example: new speed:399.000000 +I (100884) example: expect speed: 0.000000 real_pulses:0 +I (100884) example: new speed:399.000000 +I (100894) example: expect speed: 0.000000 real_pulses:0 +I (100894) example: new speed:399.000000 +I (100904) example: expect speed: 0.000000 real_pulses:0 +I (100904) example: new speed:399.000000 +I (100914) example: expect speed: 0.000000 real_pulses:0 +I (100924) example: new speed:399.000000 +I (100924) modbus tcp: ModBusSlave_recv() +I (100924) modbus: ModbusSlaveProcess() +I (100924) modbus: check id... +I (100924) modbus: ok +I (100924) modbus: add: 0, length: 10 +I (100924) modbus: Read Holding Registers +I (100924) example: expect speed: 0.000000 real_pulses:0 +I (100924) example: new speed:399.000000 +I (100934) example: expect speed: 0.000000 real_pulses:0 +I (100934) example: new speed:399.000000 +I (100944) example: expect speed: 0.000000 real_pulses:0 +I (100944) example: new speed:399.000000 +I (100954) example: expect speed: 0.000000 real_pulses:0 +I (100954) example: new speed:399.000000 +I (100964) example: expect speed: 0.000000 real_pulses:0 +I (100964) example: new speed:399.000000 +I (100974) example: expect speed: 0.000000 real_pulses:0 +I (100974) example: new speed:399.000000 +I (100984) example: expect speed: 0.000000 real_pulses:0 +I (100984) example: new speed:399.000000 +I (100994) example: expect speed: 0.000000 real_pulses:0 +I (100994) example: new speed:399.000000 +I (101004) example: expect speed: 0.000000 real_pulses:0 +I (101004) example: new speed:399.000000 +I (101014) example: expect speed: 0.000000 real_pulses:0 +I (101014) example: new speed:399.000000 +I (101024) example: expect speed: 0.000000 real_pulses:0 +I (101024) example: new speed:399.000000 +I (101034) example: expect speed: 0.000000 real_pulses:0 +I (101044) example: new speed:399.000000 +I (101044) example: expect speed: 0.000000 real_pulses:0 +I (101044) example: new speed:399.000000 +I (101054) example: expect speed: 0.000000 real_pulses:0 +I (101054) example: new speed:399.000000 +I (101064) example: expect speed: 0.000000 real_pulses:0 +I (101064) example: new speed:399.000000 +I (101074) example: expect speed: 0.000000 real_pulses:0 +I (101074) example: new speed:399.000000 +I (101084) example: expect speed: 0.000000 real_pulses:0 +I (101084) example: new speed:399.000000 +I (101094) example: expect speed: 0.000000 real_pulses:0 +I (101094) example: new speed:399.000000 +I (101104) example: expect speed: 0.000000 real_pulses:0 +I (101104) example: new speed:399.000000 +I (101114) example: expect speed: 0.000000 real_pulses:0 +I (101114) example: new speed:399.000000 +I (101124) example: expect speed: 0.000000 real_pulses:0 +I (101134) example: new speed:399.000000 +I (101134) example: expect speed: 0.000000 real_pulses:0 +I (101134) example: new speed:399.000000 +I (101144) example: expect speed: 0.000000 real_pulses:0 +I (101144) example: new speed:399.000000 +I (101154) example: expect speed: 0.000000 real_pulses:0 +I (101154) example: new speed:399.000000 +I (101164) example: expect speed: 0.000000 real_pulses:0 +I (101164) example: new speed:399.000000 +I (101174) example: expect speed: 0.000000 real_pulses:0 +I (101174) example: new speed:399.000000 +I (101184) example: expect speed: 0.000000 real_pulses:0 +I (101184) example: new speed:399.000000 +I (101194) example: expect speed: 0.000000 real_pulses:0 +I (101194) example: new speed:399.000000 +I (101204) example: expect speed: 0.000000 real_pulses:0 +I (101204) example: new speed:399.000000 +I (101214) example: expect speed: 0.000000 real_pulses:0 +I (101214) example: new speed:399.000000 +I (101224) example: expect speed: 0.000000 real_pulses:0 +I (101224) example: new speed:399.000000 +I (101234) example: expect speed: 0.000000 real_pulses:0 +I (101234) example: new speed:399.000000 +I (101244) example: expect speed: 0.000000 real_pulses:0 +I (101244) example: new speed:399.000000 +I (101254) example: expect speed: 0.000000 real_pulses:0 +I (101254) example: new speed:399.000000 +I (101264) example: expect speed: 0.000000 real_pulses:0 +I (101264) example: new speed:399.000000 +I (101274) example: expect speed: 0.000000 real_pulses:0 +I (101274) example: new speed:399.000000 +I (101284) example: expect speed: 0.000000 real_pulses:0 +I (101284) example: new speed:399.000000 +I (101294) example: expect speed: 0.000000 real_pulses:0 +I (101294) example: new speed:399.000000 +I (101304) example: expect speed: 0.000000 real_pulses:0 +I (101304) example: new speed:399.000000 +I (101314) example: expect speed: 0.000000 real_pulses:0 +I (101314) example: new speed:399.000000 +I (101324) example: expect speed: 0.000000 real_pulses:0 +I (101324) example: new speed:399.000000 +I (101334) example: expect speed: 0.000000 real_pulses:0 +I (101334) example: new speed:399.000000 +I (101344) example: expect speed: 0.000000 real_pulses:0 +I (101344) example: new speed:399.000000 +I (101354) example: expect speed: 0.000000 real_pulses:0 +I (101354) example: new speed:399.000000 +I (101364) example: expect speed: 0.000000 real_pulses:0 +I (101364) example: new speed:399.000000 +I (101374) example: expect speed: 0.000000 real_pulses:0 +I (101374) example: new speed:399.000000 +I (101384) example: expect speed: 0.000000 real_pulses:0 +I (101384) example: new speed:399.000000 +I (101394) example: expect speed: 0.000000 real_pulses:0 +I (101394) example: new speed:399.000000 +I (101404) example: expect speed: 0.000000 real_pulses:0 +I (101404) example: new speed:399.000000 +I (101414) example: expect speed: 0.000000 real_pulses:0 +I (101414) example: new speed:399.000000 +I (101424) example: expect speed: 0.000000 real_pulses:0 +I (101424) example: new speed:399.000000 +I (101434) example: expect speed: 0.000000 real_pulses:0 +I (101434) example: new speed:399.000000 +I (101444) example: expect speed: 0.000000 real_pulses:0 +I (101444) example: new speed:399.000000 +I (101454) example: expect speed: 0.000000 real_pulses:0 +I (101454) example: new speed:399.000000 +I (101464) example: expect speed: 0.000000 real_pulses:0 +I (101464) example: new speed:399.000000 +I (101474) example: expect speed: 0.000000 real_pulses:0 +I (101474) example: new speed:399.000000 +I (101484) example: expect speed: 0.000000 real_pulses:0 +I (101484) example: new speed:399.000000 +I (101494) example: expect speed: 0.000000 real_pulses:0 +I (101494) example: new speed:399.000000 +I (101504) example: expect speed: 0.000000 real_pulses:0 +I (101504) example: new speed:399.000000 +I (101514) example: expect speed: 0.000000 real_pulses:0 +I (101514) example: new speed:399.000000 +I (101524) example: expect speed: 0.000000 real_pulses:0 +I (101524) example: new speed:399.000000 +I (101534) example: expect speed: 0.000000 real_pulses:0 +I (101534) example: new speed:399.000000 +I (101544) example: expect speed: 0.000000 real_pulses:0 +I (101544) example: new speed:399.000000 +I (101554) example: expect speed: 0.000000 real_pulses:0 +I (101554) example: new speed:399.000000 +I (101564) example: expect speed: 0.000000 real_pulses:0 +I (101564) example: new speed:399.000000 +I (101574) example: expect speed: 0.000000 real_pulses:0 +I (101574) example: new speed:399.000000 +I (101584) example: expect speed: 0.000000 real_pulses:0 +I (101584) example: new speed:399.000000 +I (101594) example: expect speed: 0.000000 real_pulses:0 +I (101594) example: new speed:399.000000 +I (101604) example: expect speed: 0.000000 real_pulses:0 +I (101604) example: new speed:399.000000 +I (101614) example: expect speed: 0.000000 real_pulses:0 +I (101614) example: new speed:399.000000 +I (101624) example: expect speed: 0.000000 real_pulses:0 +I (101624) example: new speed:399.000000 +I (101634) example: expect speed: 0.000000 real_pulses:0 +I (101634) example: new speed:399.000000 +I (101644) example: expect speed: 0.000000 real_pulses:0 +I (101644) example: new speed:399.000000 +I (101654) example: expect speed: 0.000000 real_pulses:0 +I (101654) example: new speed:399.000000 +I (101664) example: expect speed: 0.000000 real_pulses:0 +I (101664) example: new speed:399.000000 +I (101674) example: expect speed: 0.000000 real_pulses:0 +I (101674) example: new speed:399.000000 +I (101684) example: expect speed: 0.000000 real_pulses:0 +I (101684) example: new speed:399.000000 +I (101694) example: expect speed: 0.000000 real_pulses:0 +I (101694) example: new speed:399.000000 +I (101704) example: expect speed: 0.000000 real_pulses:0 +I (101704) example: new speed:399.000000 +I (101714) example: expect speed: 0.000000 real_pulses:0 +I (101714) example: new speed:399.000000 +I (101724) example: expect speed: 0.000000 real_pulses:0 +I (101724) example: new speed:399.000000 +I (101734) example: expect speed: 0.000000 real_pulses:0 +I (101734) example: new speed:399.000000 +I (101744) example: expect speed: 0.000000 real_pulses:0 +I (101744) example: new speed:399.000000 +I (101754) example: expect speed: 0.000000 real_pulses:0 +I (101754) example: new speed:399.000000 +I (101764) example: expect speed: 0.000000 real_pulses:0 +I (101764) example: new speed:399.000000 +I (101774) example: expect speed: 0.000000 real_pulses:0 +I (101774) example: new speed:399.000000 +I (101784) example: expect speed: 0.000000 real_pulses:0 +I (101784) example: new speed:399.000000 +I (101794) example: expect speed: 0.000000 real_pulses:0 +I (101794) example: new speed:399.000000 +I (101804) example: expect speed: 0.000000 real_pulses:0 +I (101804) example: new speed:399.000000 +I (101814) example: expect speed: 0.000000 real_pulses:0 +I (101814) example: new speed:399.000000 +I (101824) example: expect speed: 0.000000 real_pulses:0 +I (101824) example: new speed:399.000000 +I (101834) example: expect speed: 0.000000 real_pulses:0 +I (101834) example: new speed:399.000000 +I (101844) example: expect speed: 0.000000 real_pulses:0 +I (101844) example: new speed:399.000000 +I (101854) example: expect speed: 0.000000 real_pulses:0 +I (101854) example: new speed:399.000000 +I (101864) example: expect speed: 0.000000 real_pulses:0 +I (101864) example: new speed:399.000000 +I (101874) example: expect speed: 0.000000 real_pulses:0 +I (101874) example: new speed:399.000000 +I (101884) example: expect speed: 0.000000 real_pulses:0 +I (101884) example: new speed:399.000000 +I (101894) example: expect speed: 0.000000 real_pulses:0 +I (101894) example: new speed:399.000000 +I (101904) example: expect speed: 0.000000 real_pulses:0 +I (101904) example: new speed:399.000000 +I (101914) example: expect speed: 0.000000 real_pulses:0 +I (101914) example: new speed:399.000000 +I (101924) example: expect speed: 0.000000 real_pulses:0 +I (101924) example: new speed:399.000000 +I (101934) example: expect speed: 0.000000 real_pulses:0 +I (101934) example: new speed:399.000000 +I (101944) example: expect speed: 0.000000 real_pulses:0 +I (101944) example: new speed:399.000000 +I (101954) example: expect speed: 0.000000 real_pulses:0 +I (101954) example: new speed:399.000000 +I (101964) example: expect speed: 0.000000 real_pulses:0 +I (101964) example: new speed:399.000000 +I (101974) example: expect speed: 0.000000 real_pulses:0 +I (101974) example: new speed:399.000000 +I (101984) example: expect speed: 0.000000 real_pulses:0 +I (101984) example: new speed:399.000000 +I (101994) example: expect speed: 0.000000 real_pulses:0 +I (101994) example: new speed:399.000000 +I (102004) example: expect speed: 0.000000 real_pulses:0 +I (102004) example: new speed:399.000000 +I (102014) example: expect speed: 0.000000 real_pulses:0 +I (102014) example: new speed:399.000000 +I (102024) example: expect speed: 0.000000 real_pulses:0 +I (102024) example: new speed:399.000000 +I (102034) example: expect speed: 0.000000 real_pulses:0 +I (102044) example: new speed:399.000000 +I (102044) example: expect speed: 0.000000 real_pulses:0 +I (102044) example: new speed:399.000000 +I (102054) modbus tcp: ModBusSlave_recv() +I (102054) modbus: ModbusSlaveProcess() +I (102054) modbus: check id... +I (102054) modbus: ok +I (102054) modbus: add: 0, length: 10 +I (102054) modbus: Read Holding Registers +I (102054) example: expect speed: 0.000000 real_pulses:0 +I (102054) example: new speed:399.000000 +I (102064) example: expect speed: 0.000000 real_pulses:0 +I (102064) example: new speed:399.000000 +I (102074) example: expect speed: 0.000000 real_pulses:0 +I (102074) example: new speed:399.000000 +I (102084) example: expect speed: 0.000000 real_pulses:0 +I (102084) example: new speed:399.000000 +I (102094) example: expect speed: 0.000000 real_pulses:0 +I (102094) example: new speed:399.000000 +I (102104) example: expect speed: 0.000000 real_pulses:0 +I (102114) example: new speed:399.000000 +I (102114) example: expect speed: 0.000000 real_pulses:0 +I (102114) example: new speed:399.000000 +I (102124) example: expect speed: 0.000000 real_pulses:0 +I (102124) example: new speed:399.000000 +I (102134) example: expect speed: 0.000000 real_pulses:0 +I (102134) example: new speed:399.000000 +I (102144) example: expect speed: 0.000000 real_pulses:0 +I (102144) example: new speed:399.000000 +I (102154) example: expect speed: 0.000000 real_pulses:0 +I (102154) example: new speed:399.000000 +I (102164) example: expect speed: 0.000000 real_pulses:0 +I (102164) example: new speed:399.000000 +I (102174) example: expect speed: 0.000000 real_pulses:0 +I (102174) example: new speed:399.000000 +I (102184) example: expect speed: 0.000000 real_pulses:0 +I (102184) example: new speed:399.000000 +I (102194) example: expect speed: 0.000000 real_pulses:0 +I (102194) example: new speed:399.000000 +I (102204) example: expect speed: 0.000000 real_pulses:0 +I (102204) example: new speed:399.000000 +I (102214) example: expect speed: 0.000000 real_pulses:0 +I (102214) example: new speed:399.000000 +I (102224) example: expect speed: 0.000000 real_pulses:0 +I (102224) example: new speed:399.000000 +I (102234) example: expect speed: 0.000000 real_pulses:0 +I (102234) example: new speed:399.000000 +I (102244) example: expect speed: 0.000000 real_pulses:0 +I (102244) example: new speed:399.000000 +I (102254) example: expect speed: 0.000000 real_pulses:0 +I (102254) example: new speed:399.000000 +I (102264) example: expect speed: 0.000000 real_pulses:0 +I (102264) example: new speed:399.000000 +I (102274) example: expect speed: 0.000000 real_pulses:0 +I (102274) example: new speed:399.000000 +I (102284) example: expect speed: 0.000000 real_pulses:0 +I (102284) example: new speed:399.000000 +I (102294) example: expect speed: 0.000000 real_pulses:0 +I (102294) example: new speed:399.000000 +I (102304) example: expect speed: 0.000000 real_pulses:0 +I (102304) example: new speed:399.000000 +I (102314) example: expect speed: 0.000000 real_pulses:0 +I (102314) example: new speed:399.000000 +I (102324) example: expect speed: 0.000000 real_pulses:0 +I (102324) example: new speed:399.000000 +I (102334) example: expect speed: 0.000000 real_pulses:0 +I (102334) example: new speed:399.000000 +I (102344) example: expect speed: 0.000000 real_pulses:0 +I (102344) example: new speed:399.000000 +I (102354) example: expect speed: 0.000000 real_pulses:0 +I (102354) example: new speed:399.000000 +I (102364) example: expect speed: 0.000000 real_pulses:0 +I (102364) example: new speed:399.000000 +I (102374) example: expect speed: 0.000000 real_pulses:0 +I (102374) example: new speed:399.000000 +I (102384) example: expect speed: 0.000000 real_pulses:0 +I (102384) example: new speed:399.000000 +I (102394) example: expect speed: 0.000000 real_pulses:0 +I (102394) example: new speed:399.000000 +I (102404) example: expect speed: 0.000000 real_pulses:0 +I (102404) example: new speed:399.000000 +I (102414) example: expect speed: 0.000000 real_pulses:0 +I (102414) example: new speed:399.000000 +I (102424) example: expect speed: 0.000000 real_pulses:0 +I (102424) example: new speed:399.000000 +I (102434) example: expect speed: 0.000000 real_pulses:0 +I (102434) example: new speed:399.000000 +I (102444) example: expect speed: 0.000000 real_pulses:0 +I (102444) example: new speed:399.000000 +I (102454) example: expect speed: 0.000000 real_pulses:0 +I (102454) example: new speed:399.000000 +I (102464) example: expect speed: 0.000000 real_pulses:0 +I (102464) example: new speed:399.000000 +I (102474) example: expect speed: 0.000000 real_pulses:0 +I (102474) example: new speed:399.000000 +I (102484) example: expect speed: 0.000000 real_pulses:0 +I (102484) example: new speed:399.000000 +I (102494) example: expect speed: 0.000000 real_pulses:0 +I (102494) example: new speed:399.000000 +I (102504) example: expect speed: 0.000000 real_pulses:0 +I (102504) example: new speed:399.000000 +I (102514) example: expect speed: 0.000000 real_pulses:0 +I (102514) example: new speed:399.000000 +I (102524) example: expect speed: 0.000000 real_pulses:0 +I (102524) example: new speed:399.000000 +I (102534) example: expect speed: 0.000000 real_pulses:0 +I (102534) example: new speed:399.000000 +I (102544) example: expect speed: 0.000000 real_pulses:0 +I (102544) example: new speed:399.000000 +I (102554) example: expect speed: 0.000000 real_pulses:0 +I (102554) example: new speed:399.000000 +I (102564) example: expect speed: 0.000000 real_pulses:0 +I (102564) example: new speed:399.000000 +I (102574) example: expect speed: 0.000000 real_pulses:0 +I (102574) example: new speed:399.000000 +I (102584) example: expect speed: 0.000000 real_pulses:0 +I (102584) example: new speed:399.000000 +I (102594) example: expect speed: 0.000000 real_pulses:0 +I (102594) example: new speed:399.000000 +I (102604) example: expect speed: 0.000000 real_pulses:0 +I (102604) example: new speed:399.000000 +I (102614) example: expect speed: 0.000000 real_pulses:0 +I (102614) example: new speed:399.000000 +I (102624) example: expect speed: 0.000000 real_pulses:0 +I (102624) example: new speed:399.000000 +I (102634) example: expect speed: 0.000000 real_pulses:0 +I (102634) example: new speed:399.000000 +I (102644) example: expect speed: 0.000000 real_pulses:0 +I (102644) example: new speed:399.000000 +I (102654) example: expect speed: 0.000000 real_pulses:0 +I (102654) example: new speed:399.000000 +I (102664) example: expect speed: 0.000000 real_pulses:0 +I (102664) example: new speed:399.000000 +I (102674) example: expect speed: 0.000000 real_pulses:0 +I (102674) example: new speed:399.000000 +I (102684) example: expect speed: 0.000000 real_pulses:0 +I (102684) example: new speed:399.000000 +I (102694) example: expect speed: 0.000000 real_pulses:0 +I (102694) example: new speed:399.000000 +I (102704) example: expect speed: 0.000000 real_pulses:0 +I (102704) example: new speed:399.000000 +I (102714) example: expect speed: 0.000000 real_pulses:0 +I (102714) example: new speed:399.000000 +I (102724) example: expect speed: 0.000000 real_pulses:0 +I (102724) example: new speed:399.000000 +I (102734) example: expect speed: 0.000000 real_pulses:0 +I (102734) example: new speed:399.000000 +I (102744) example: expect speed: 0.000000 real_pulses:0 +I (102744) example: new speed:399.000000 +I (102754) example: expect speed: 0.000000 real_pulses:0 +I (102754) example: new speed:399.000000 +I (102764) example: expect speed: 0.000000 real_pulses:0 +I (102764) example: new speed:399.000000 +I (102774) example: expect speed: 0.000000 real_pulses:0 +I (102774) example: new speed:399.000000 +I (102784) example: expect speed: 0.000000 real_pulses:0 +I (102784) example: new speed:399.000000 +I (102794) example: expect speed: 0.000000 real_pulses:0 +I (102794) example: new speed:399.000000 +I (102804) example: expect speed: 0.000000 real_pulses:0 +I (102804) example: new speed:399.000000 +I (102814) example: expect speed: 0.000000 real_pulses:0 +I (102814) example: new speed:399.000000 +I (102824) example: expect speed: 0.000000 real_pulses:0 +I (102824) example: new speed:399.000000 +I (102834) example: expect speed: 0.000000 real_pulses:0 +I (102834) example: new speed:399.000000 +I (102844) example: expect speed: 0.000000 real_pulses:0 +I (102844) example: new speed:399.000000 +I (102854) example: expect speed: 0.000000 real_pulses:0 +I (102854) example: new speed:399.000000 +I (102864) example: expect speed: 0.000000 real_pulses:0 +I (102864) example: new speed:399.000000 +I (102874) example: expect speed: 0.000000 real_pulses:0 +I (102874) example: new speed:399.000000 +I (102884) example: expect speed: 0.000000 real_pulses:0 +I (102884) example: new speed:399.000000 +I (102894) example: expect speed: 0.000000 real_pulses:0 +I (102894) example: new speed:399.000000 +I (102904) example: expect speed: 0.000000 real_pulses:0 +I (102904) example: new speed:399.000000 +I (102914) example: expect speed: 0.000000 real_pulses:0 +I (102914) example: new speed:399.000000 +I (102924) example: expect speed: 0.000000 real_pulses:0 +I (102924) example: new speed:399.000000 +I (102934) example: expect speed: 0.000000 real_pulses:0 +I (102934) example: new speed:399.000000 +I (102944) example: expect speed: 0.000000 real_pulses:0 +I (102944) example: new speed:399.000000 +I (102954) example: expect speed: 0.000000 real_pulses:0 +I (102954) example: new speed:399.000000 +I (102964) example: expect speed: 0.000000 real_pulses:0 +I (102964) example: new speed:399.000000 +I (102974) example: expect speed: 0.000000 real_pulses:0 +I (102974) example: new speed:399.000000 +I (102984) example: expect speed: 0.000000 real_pulses:0 +I (102984) example: new speed:399.000000 +I (102994) example: expect speed: 0.000000 real_pulses:0 +I (102994) example: new speed:399.000000 +I (103004) example: expect speed: 0.000000 real_pulses:0 +I (103004) example: new speed:399.000000 +I (103014) example: expect speed: 0.000000 real_pulses:0 +I (103014) example: new speed:399.000000 +I (103024) example: expect speed: 0.000000 real_pulses:0 +I (103024) example: new speed:399.000000 +I (103034) example: expect speed: 0.000000 real_pulses:0 +I (103034) example: new speed:399.000000 +I (103044) example: expect speed: 0.000000 real_pulses:0 +I (103044) example: new speed:399.000000 +I (103054) example: expect speed: 0.000000 real_pulses:0 +I (103054) example: new speed:399.000000 +I (103064) example: expect speed: 0.000000 real_pulses:0 +I (103064) example: new speed:399.000000 +I (103074) example: expect speed: 0.000000 real_pulses:0 +I (103074) example: new speed:399.000000 +I (103084) example: expect speed: 0.000000 real_pulses:0 +I (103084) example: new speed:399.000000 +I (103094) example: expect speed: 0.000000 real_pulses:0 +I (103094) example: new speed:399.000000 +I (103104) example: expect speed: 0.000000 real_pulses:0 +I (103104) example: new speed:399.000000 +I (103114) example: expect speed: 0.000000 real_pulses:0 +I (103114) example: new speed:399.000000 +I (103124) example: expect speed: 0.000000 real_pulses:0 +I (103124) example: new speed:399.000000 +I (103134) example: expect speed: 0.000000 real_pulses:0 +I (103134) example: new speed:399.000000 +I (103144) example: expect speed: 0.000000 real_pulses:0 +I (103144) example: new speed:399.000000 +I (103154) example: expect speed: 0.000000 real_pulses:0 +I (103154) example: new speed:399.000000 +I (103164) example: expect speed: 0.000000 real_pulses:0 +I (103174) example: new speed:399.000000 +I (103174) example: expect speed: 0.000000 real_pulses:0 +I (103174) example: new speed:399.000000 +I (103184) example: expect speed: 0.000000 real_pulses:0 +I (103184) example: new speed:399.000000 +I (103194) example: expect speed: 0.000000 real_pulses:0 +I (103194) example: new speed:399.000000 +I (103204) example: expect speed: 0.000000 real_pulses:0 +I (103204) example: new speed:399.000000 +I (103214) example: expect speed: 0.000000 real_pulses:0 +I (103214) example: new speed:399.000000 +I (103224) example: expect speed: 0.000000 real_pulses:0 +I (103224) example: new speed:399.000000 +I (103234) example: expect speed: 0.000000 real_pulses:0 +I (103234) example: new speed:399.000000 +I (103244) example: expect speed: 0.000000 real_pulses:0 +I (103244) example: new speed:399.000000 +I (103254) example: expect speed: 0.000000 real_pulses:0 +I (103254) example: new speed:399.000000 +I (103264) example: expect speed: 0.000000 real_pulses:0 +I (103274) example: new speed:399.000000 +I (103274) modbus tcp: ModBusSlave_recv() +I (103274) modbus: ModbusSlaveProcess() +I (103274) modbus: check id... +I (103274) modbus: ok +I (103274) modbus: add: 0, length: 10 +I (103274) modbus: Read Holding Registers +I (103274) example: expect speed: 0.000000 real_pulses:0 +I (103274) example: new speed:399.000000 +I (103284) example: expect speed: 0.000000 real_pulses:0 +I (103284) example: new speed:399.000000 +I (103294) example: expect speed: 0.000000 real_pulses:0 +I (103294) example: new speed:399.000000 +I (103304) example: expect speed: 0.000000 real_pulses:0 +I (103304) example: new speed:399.000000 +I (103314) example: expect speed: 0.000000 real_pulses:0 +I (103314) example: new speed:399.000000 +I (103324) example: expect speed: 0.000000 real_pulses:0 +I (103334) example: new speed:399.000000 +I (103334) example: expect speed: 0.000000 real_pulses:0 +I (103334) example: new speed:399.000000 +I (103344) example: expect speed: 0.000000 real_pulses:0 +I (103344) example: new speed:399.000000 +I (103354) example: expect speed: 0.000000 real_pulses:0 +I (103354) example: new speed:399.000000 +I (103364) example: expect speed: 0.000000 real_pulses:0 +I (103364) example: new speed:399.000000 +I (103374) example: expect speed: 0.000000 real_pulses:0 +I (103374) example: new speed:399.000000 +I (103384) example: expect speed: 0.000000 real_pulses:0 +I (103384) example: new speed:399.000000 +I (103394) example: expect speed: 0.000000 real_pulses:0 +I (103394) example: new speed:399.000000 +I (103404) example: expect speed: 0.000000 real_pulses:0 +I (103404) example: new speed:399.000000 +I (103414) example: expect speed: 0.000000 real_pulses:0 +I (103414) example: new speed:399.000000 +I (103424) example: expect speed: 0.000000 real_pulses:0 +I (103424) example: new speed:399.000000 +I (103434) example: expect speed: 0.000000 real_pulses:0 +I (103434) example: new speed:399.000000 +I (103444) example: expect speed: 0.000000 real_pulses:0 +I (103444) example: new speed:399.000000 +I (103454) example: expect speed: 0.000000 real_pulses:0 +I (103454) example: new speed:399.000000 +I (103464) example: expect speed: 0.000000 real_pulses:0 +I (103464) example: new speed:399.000000 +I (103474) example: expect speed: 0.000000 real_pulses:0 +I (103474) example: new speed:399.000000 +I (103484) example: expect speed: 0.000000 real_pulses:0 +I (103484) example: new speed:399.000000 +I (103494) example: expect speed: 0.000000 real_pulses:0 +I (103494) example: new speed:399.000000 +I (103504) example: expect speed: 0.000000 real_pulses:0 +I (103504) example: new speed:399.000000 +I (103514) example: expect speed: 0.000000 real_pulses:0 +I (103514) example: new speed:399.000000 +I (103524) example: expect speed: 0.000000 real_pulses:0 +I (103524) example: new speed:399.000000 +I (103534) example: expect speed: 0.000000 real_pulses:0 +I (103534) example: new speed:399.000000 +I (103544) example: expect speed: 0.000000 real_pulses:0 +I (103544) example: new speed:399.000000 +I (103554) example: expect speed: 0.000000 real_pulses:0 +I (103554) example: new speed:399.000000 +I (103564) example: expect speed: 0.000000 real_pulses:0 +I (103564) example: new speed:399.000000 +I (103574) example: expect speed: 0.000000 real_pulses:0 +I (103574) example: new speed:399.000000 +I (103584) example: expect speed: 0.000000 real_pulses:0 +I (103584) example: new speed:399.000000 +I (103594) example: expect speed: 0.000000 real_pulses:0 +I (103594) example: new speed:399.000000 +I (103604) example: expect speed: 0.000000 real_pulses:0 +I (103604) example: new speed:399.000000 +I (103614) example: expect speed: 0.000000 real_pulses:0 +I (103614) example: new speed:399.000000 +I (103624) example: expect speed: 0.000000 real_pulses:0 +I (103624) example: new speed:399.000000 +I (103634) example: expect speed: 0.000000 real_pulses:0 +I (103634) example: new speed:399.000000 +I (103644) example: expect speed: 0.000000 real_pulses:0 +I (103644) example: new speed:399.000000 +I (103654) example: expect speed: 0.000000 real_pulses:0 +I (103654) example: new speed:399.000000 +I (103664) example: expect speed: 0.000000 real_pulses:0 +I (103664) example: new speed:399.000000 +I (103674) example: expect speed: 0.000000 real_pulses:0 +I (103674) example: new speed:399.000000 +I (103684) example: expect speed: 0.000000 real_pulses:0 +I (103684) example: new speed:399.000000 +I (103694) example: expect speed: 0.000000 real_pulses:0 +I (103694) example: new speed:399.000000 +I (103704) example: expect speed: 0.000000 real_pulses:0 +I (103704) example: new speed:399.000000 +I (103714) example: expect speed: 0.000000 real_pulses:0 +I (103714) example: new speed:399.000000 +I (103724) example: expect speed: 0.000000 real_pulses:0 +I (103724) example: new speed:399.000000 +I (103734) example: expect speed: 0.000000 real_pulses:0 +I (103734) example: new speed:399.000000 +I (103744) example: expect speed: 0.000000 real_pulses:0 +I (103744) example: new speed:399.000000 +I (103754) example: expect speed: 0.000000 real_pulses:0 +I (103754) example: new speed:399.000000 +I (103764) example: expect speed: 0.000000 real_pulses:0 +I (103764) example: new speed:399.000000 +I (103774) example: expect speed: 0.000000 real_pulses:0 +I (103774) example: new speed:399.000000 +I (103784) example: expect speed: 0.000000 real_pulses:0 +I (103784) example: new speed:399.000000 +I (103794) example: expect speed: 0.000000 real_pulses:0 +I (103794) example: new speed:399.000000 +I (103804) example: expect speed: 0.000000 real_pulses:0 +I (103804) example: new speed:399.000000 +I (103814) example: expect speed: 0.000000 real_pulses:0 +I (103814) example: new speed:399.000000 +I (103824) example: expect speed: 0.000000 real_pulses:0 +I (103824) example: new speed:399.000000 +I (103834) example: expect speed: 0.000000 real_pulses:0 +I (103834) example: new speed:399.000000 +I (103844) example: expect speed: 0.000000 real_pulses:0 +I (103844) example: new speed:399.000000 +I (103854) example: expect speed: 0.000000 real_pulses:0 +I (103854) example: new speed:399.000000 +I (103864) example: expect speed: 0.000000 real_pulses:0 +I (103864) example: new speed:399.000000 +I (103874) example: expect speed: 0.000000 real_pulses:0 +I (103874) example: new speed:399.000000 +I (103884) modbus tcp: ModBusSlave_recv() +I (103884) modbus: ModbusSlaveProcess() +I (103884) modbus: check id... +I (103884) modbus: ok +I (103884) modbus: add: 0, length: 10 +I (103884) modbus: Read Holding Registers +I (103884) example: expect speed: 0.000000 real_pulses:0 +I (103884) example: new speed:399.000000 +I (103894) example: expect speed: 0.000000 real_pulses:0 +I (103894) example: new speed:399.000000 +I (103904) example: expect speed: 0.000000 real_pulses:0 +I (103904) example: new speed:399.000000 +I (103914) example: expect speed: 0.000000 real_pulses:0 +I (103914) example: new speed:399.000000 +I (103924) example: expect speed: 0.000000 real_pulses:0 +I (103924) example: new speed:399.000000 +I (103934) example: expect speed: 0.000000 real_pulses:0 +I (103944) example: new speed:399.000000 +I (103944) example: expect speed: 0.000000 real_pulses:0 +I (103944) example: new speed:399.000000 +I (103954) example: expect speed: 0.000000 real_pulses:0 +I (103954) example: new speed:399.000000 +I (103964) example: expect speed: 0.000000 real_pulses:0 +I (103964) example: new speed:399.000000 +I (103974) example: expect speed: 0.000000 real_pulses:0 +I (103974) example: new speed:399.000000 +I (103984) example: expect speed: 0.000000 real_pulses:0 +I (103984) example: new speed:399.000000 +I (103994) example: expect speed: 0.000000 real_pulses:0 +I (103994) example: new speed:399.000000 +I (104004) example: expect speed: 0.000000 real_pulses:0 +I (104004) example: new speed:399.000000 +I (104014) example: expect speed: 0.000000 real_pulses:0 +I (104014) example: new speed:399.000000 +I (104024) example: expect speed: 0.000000 real_pulses:0 +I (104024) example: new speed:399.000000 +I (104034) example: expect speed: 0.000000 real_pulses:0 +I (104044) example: new speed:399.000000 +I (104044) example: expect speed: 0.000000 real_pulses:0 +I (104044) example: new speed:399.000000 +I (104054) example: expect speed: 0.000000 real_pulses:0 +I (104054) example: new speed:399.000000 +I (104064) example: expect speed: 0.000000 real_pulses:0 +I (104064) example: new speed:399.000000 +I (104074) example: expect speed: 0.000000 real_pulses:0 +I (104074) example: new speed:399.000000 +I (104084) example: expect speed: 0.000000 real_pulses:0 +I (104084) example: new speed:399.000000 +I (104094) example: expect speed: 0.000000 real_pulses:0 +I (104094) example: new speed:399.000000 +I (104104) example: expect speed: 0.000000 real_pulses:0 +I (104104) example: new speed:399.000000 +I (104114) example: expect speed: 0.000000 real_pulses:0 +I (104114) example: new speed:399.000000 +I (104124) example: expect speed: 0.000000 real_pulses:0 +I (104124) example: new speed:399.000000 +I (104134) example: expect speed: 0.000000 real_pulses:0 +I (104134) example: new speed:399.000000 +I (104144) example: expect speed: 0.000000 real_pulses:0 +I (104144) example: new speed:399.000000 +I (104154) example: expect speed: 0.000000 real_pulses:0 +I (104154) example: new speed:399.000000 +I (104164) example: expect speed: 0.000000 real_pulses:0 +I (104164) example: new speed:399.000000 +I (104174) example: expect speed: 0.000000 real_pulses:0 +I (104174) example: new speed:399.000000 +I (104184) example: expect speed: 0.000000 real_pulses:0 +I (104194) example: new speed:399.000000 +I (104194) example: expect speed: 0.000000 real_pulses:0 +I (104204) example: new speed:399.000000 +I (104204) example: expect speed: 0.000000 real_pulses:0 +I (104204) example: new speed:399.000000 +I (104214) example: expect speed: 0.000000 real_pulses:0 +I (104214) example: new speed:399.000000 +I (104224) example: expect speed: 0.000000 real_pulses:0 +I (104224) example: new speed:399.000000 +I (104234) example: expect speed: 0.000000 real_pulses:0 +I (104234) example: new speed:399.000000 +I (104244) example: expect speed: 0.000000 real_pulses:0 +I (104254) example: new speed:399.000000 +I (104254) example: expect speed: 0.000000 real_pulses:0 +I (104254) example: new speed:399.000000 +I (104264) example: expect speed: 0.000000 real_pulses:0 +I (104264) example: new speed:399.000000 +I (104274) example: expect speed: 0.000000 real_pulses:0 +I (104274) example: new speed:399.000000 +I (104284) example: expect speed: 0.000000 real_pulses:0 +I (104284) example: new speed:399.000000 +I (104294) example: expect speed: 0.000000 real_pulses:0 +I (104294) example: new speed:399.000000 +I (104304) example: expect speed: 0.000000 real_pulses:0 +I (104304) example: new speed:399.000000 +I (104314) example: expect speed: 0.000000 real_pulses:0 +I (104314) example: new speed:399.000000 +I (104324) example: expect speed: 0.000000 real_pulses:0 +I (104324) example: new speed:399.000000 +I (104334) example: expect speed: 0.000000 real_pulses:0 +I (104334) example: new speed:399.000000 +I (104344) example: expect speed: 0.000000 real_pulses:0 +I (104344) example: new speed:399.000000 +I (104354) example: expect speed: 0.000000 real_pulses:0 +I (104354) example: new speed:399.000000 +I (104364) example: expect speed: 0.000000 real_pulses:0 +I (104364) example: new speed:399.000000 +I (104374) example: expect speed: 0.000000 real_pulses:0 +I (104374) example: new speed:399.000000 +I (104384) example: expect speed: 0.000000 real_pulses:0 +I (104384) example: new speed:399.000000 +I (104394) example: expect speed: 0.000000 real_pulses:0 +I (104394) example: new speed:399.000000 +I (104404) example: expect speed: 0.000000 real_pulses:0 +I (104404) example: new speed:399.000000 +I (104414) example: expect speed: 0.000000 real_pulses:0 +I (104414) example: new speed:399.000000 +I (104424) example: expect speed: 0.000000 real_pulses:0 +I (104424) example: new speed:399.000000 +I (104434) example: expect speed: 0.000000 real_pulses:0 +I (104434) example: new speed:399.000000 +I (104444) example: expect speed: 0.000000 real_pulses:0 +I (104444) example: new speed:399.000000 +I (104454) example: expect speed: 0.000000 real_pulses:0 +I (104454) example: new speed:399.000000 +I (104464) example: expect speed: 0.000000 real_pulses:0 +I (104464) example: new speed:399.000000 +I (104474) example: expect speed: 0.000000 real_pulses:0 +I (104474) example: new speed:399.000000 +I (104484) example: expect speed: 0.000000 real_pulses:0 +I (104484) example: new speed:399.000000 +I (104494) example: expect speed: 0.000000 real_pulses:0 +I (104494) example: new speed:399.000000 +I (104504) example: expect speed: 0.000000 real_pulses:0 +I (104504) example: new speed:399.000000 +I (104514) example: expect speed: 0.000000 real_pulses:0 +I (104514) example: new speed:399.000000 +I (104524) example: expect speed: 0.000000 real_pulses:0 +I (104524) example: new speed:399.000000 +I (104534) example: expect speed: 0.000000 real_pulses:0 +I (104534) example: new speed:399.000000 +I (104544) example: expect speed: 0.000000 real_pulses:0 +I (104544) example: new speed:399.000000 +I (104554) example: expect speed: 0.000000 real_pulses:0 +I (104554) example: new speed:399.000000 +I (104564) example: expect speed: 0.000000 real_pulses:0 +I (104564) example: new speed:399.000000 +I (104574) example: expect speed: 0.000000 real_pulses:0 +I (104574) example: new speed:399.000000 +I (104584) example: expect speed: 0.000000 real_pulses:0 +I (104584) example: new speed:399.000000 +I (104594) example: expect speed: 0.000000 real_pulses:0 +I (104594) example: new speed:399.000000 +I (104604) example: expect speed: 0.000000 real_pulses:0 +I (104604) example: new speed:399.000000 +I (104614) example: expect speed: 0.000000 real_pulses:0 +I (104614) example: new speed:399.000000 +I (104624) example: expect speed: 0.000000 real_pulses:0 +I (104624) example: new speed:399.000000 +I (104634) example: expect speed: 0.000000 real_pulses:0 +I (104634) example: new speed:399.000000 +I (104644) example: expect speed: 0.000000 real_pulses:0 +I (104644) example: new speed:399.000000 +I (104654) example: expect speed: 0.000000 real_pulses:0 +I (104654) example: new speed:399.000000 +I (104664) example: expect speed: 0.000000 real_pulses:0 +I (104664) example: new speed:399.000000 +I (104674) example: expect speed: 0.000000 real_pulses:0 +I (104674) example: new speed:399.000000 +I (104684) example: expect speed: 0.000000 real_pulses:0 +I (104684) example: new speed:399.000000 +I (104694) example: expect speed: 0.000000 real_pulses:0 +I (104694) example: new speed:399.000000 +I (104704) example: expect speed: 0.000000 real_pulses:0 +I (104704) example: new speed:399.000000 +I (104714) example: expect speed: 0.000000 real_pulses:0 +I (104714) example: new speed:399.000000 +I (104724) example: expect speed: 0.000000 real_pulses:0 +I (104724) example: new speed:399.000000 +I (104734) example: expect speed: 0.000000 real_pulses:0 +I (104734) example: new speed:399.000000 +I (104744) example: expect speed: 0.000000 real_pulses:0 +I (104744) example: new speed:399.000000 +I (104754) example: expect speed: 0.000000 real_pulses:0 +I (104754) example: new speed:399.000000 +I (104764) example: expect speed: 0.000000 real_pulses:0 +I (104764) example: new speed:399.000000 +I (104774) example: expect speed: 0.000000 real_pulses:0 +I (104774) example: new speed:399.000000 +I (104784) example: expect speed: 0.000000 real_pulses:0 +I (104784) example: new speed:399.000000 +I (104794) example: expect speed: 0.000000 real_pulses:0 +I (104794) example: new speed:399.000000 +I (104804) example: expect speed: 0.000000 real_pulses:0 +I (104814) example: new speed:399.000000 +I (104814) example: expect speed: 0.000000 real_pulses:0 +I (104824) example: new speed:399.000000 +I (104824) example: expect speed: 0.000000 real_pulses:0 +I (104824) example: new speed:399.000000 +I (104834) example: expect speed: 0.000000 real_pulses:0 +I (104834) example: new speed:399.000000 +I (104844) example: expect speed: 0.000000 real_pulses:0 +I (104844) example: new speed:399.000000 +I (104854) example: expect speed: 0.000000 real_pulses:0 +I (104854) example: new speed:399.000000 +I (104864) example: expect speed: 0.000000 real_pulses:0 +I (104864) example: new speed:399.000000 +I (104874) example: expect speed: 0.000000 real_pulses:0 +I (104884) example: new speed:399.000000 +I (104884) example: expect speed: 0.000000 real_pulses:0 +I (104884) example: new speed:399.000000 +I (104894) example: expect speed: 0.000000 real_pulses:0 +I (104894) example: new speed:399.000000 +I (104904) example: expect speed: 0.000000 real_pulses:0 +I (104904) example: new speed:399.000000 +I (104914) example: expect speed: 0.000000 real_pulses:0 +I (104914) example: new speed:399.000000 +I (104924) example: expect speed: 0.000000 real_pulses:0 +I (104924) example: new speed:399.000000 +I (104934) example: expect speed: 0.000000 real_pulses:0 +I (104934) example: new speed:399.000000 +I (104944) example: expect speed: 0.000000 real_pulses:0 +I (104944) example: new speed:399.000000 +I (104954) example: expect speed: 0.000000 real_pulses:0 +I (104954) example: new speed:399.000000 +I (104964) example: expect speed: 0.000000 real_pulses:0 +I (104964) example: new speed:399.000000 +I (104974) example: expect speed: 0.000000 real_pulses:0 +I (104974) example: new speed:399.000000 +I (104984) example: expect speed: 0.000000 real_pulses:0 +I (104984) example: new speed:399.000000 +I (104994) example: expect speed: 0.000000 real_pulses:0 +I (104994) example: new speed:399.000000 +I (105004) example: expect speed: 0.000000 real_pulses:0 +I (105004) example: new speed:399.000000 +I (105014) example: expect speed: 0.000000 real_pulses:0 +I (105014) example: new speed:399.000000 +I (105024) example: expect speed: 0.000000 real_pulses:0 +I (105024) example: new speed:399.000000 +I (105034) example: expect speed: 0.000000 real_pulses:0 +I (105034) example: new speed:399.000000 +I (105044) example: expect speed: 0.000000 real_pulses:0 +I (105044) example: new speed:399.000000 +I (105054) example: expect speed: 0.000000 real_pulses:0 +I (105054) example: new speed:399.000000 +I (105064) example: expect speed: 0.000000 real_pulses:0 +I (105064) example: new speed:399.000000 +I (105074) example: expect speed: 0.000000 real_pulses:0 +I (105074) example: new speed:399.000000 +I (105084) example: expect speed: 0.000000 real_pulses:0 +I (105084) example: new speed:399.000000 +I (105094) example: expect speed: 0.000000 real_pulses:0 +I (105094) example: new speed:399.000000 +I (105104) example: expect speed: 0.000000 real_pulses:0 +I (105104) example: new speed:399.000000 +I (105114) example: expect speed: 0.000000 real_pulses:0 +I (105114) example: new speed:399.000000 +I (105124) example: expect speed: 0.000000 real_pulses:0 +I (105124) example: new speed:399.000000 +I (105134) example: expect speed: 0.000000 real_pulses:0 +I (105134) example: new speed:399.000000 +I (105144) example: expect speed: 0.000000 real_pulses:0 +I (105144) example: new speed:399.000000 +I (105154) example: expect speed: 0.000000 real_pulses:0 +I (105154) example: new speed:399.000000 +I (105164) example: expect speed: 0.000000 real_pulses:0 +I (105164) example: new speed:399.000000 +I (105174) example: expect speed: 0.000000 real_pulses:0 +I (105174) example: new speed:399.000000 +I (105184) example: expect speed: 0.000000 real_pulses:0 +I (105184) example: new speed:399.000000 +I (105194) example: expect speed: 0.000000 real_pulses:0 +I (105194) example: new speed:399.000000 +I (105204) example: expect speed: 0.000000 real_pulses:0 +I (105204) example: new speed:399.000000 +I (105214) example: expect speed: 0.000000 real_pulses:0 +I (105214) example: new speed:399.000000 +I (105224) example: expect speed: 0.000000 real_pulses:0 +I (105224) example: new speed:399.000000 +I (105234) example: expect speed: 0.000000 real_pulses:0 +I (105234) example: new speed:399.000000 +I (105244) example: expect speed: 0.000000 real_pulses:0 +I (105244) example: new speed:399.000000 +I (105254) example: expect speed: 0.000000 real_pulses:0 +I (105254) example: new speed:399.000000 +I (105264) example: expect speed: 0.000000 real_pulses:0 +I (105264) example: new speed:399.000000 +I (105274) example: expect speed: 0.000000 real_pulses:0 +I (105274) example: new speed:399.000000 +I (105284) example: expect speed: 0.000000 real_pulses:0 +I (105284) example: new speed:399.000000 +I (105294) example: expect speed: 0.000000 real_pulses:0 +I (105294) example: new speed:399.000000 +I (105304) example: expect speed: 0.000000 real_pulses:0 +I (105304) example: new speed:399.000000 +I (105314) example: expect speed: 0.000000 real_pulses:0 +I (105314) example: new speed:399.000000 +I (105324) example: expect speed: 0.000000 real_pulses:0 +I (105324) example: new speed:399.000000 +I (105334) example: expect speed: 0.000000 real_pulses:0 +I (105334) example: new speed:399.000000 +I (105344) example: expect speed: 0.000000 real_pulses:0 +I (105344) example: new speed:399.000000 +I (105354) example: expect speed: 0.000000 real_pulses:0 +I (105354) example: new speed:399.000000 +I (105364) example: expect speed: 0.000000 real_pulses:0 +I (105364) example: new speed:399.000000 +I (105374) example: expect speed: 0.000000 real_pulses:0 +I (105374) example: new speed:399.000000 +I (105384) example: expect speed: 0.000000 real_pulses:0 +I (105384) example: new speed:399.000000 +I (105394) example: expect speed: 0.000000 real_pulses:0 +I (105394) example: new speed:399.000000 +I (105404) example: expect speed: 0.000000 real_pulses:0 +I (105404) example: new speed:399.000000 +I (105414) example: expect speed: 0.000000 real_pulses:0 +I (105414) example: new speed:399.000000 +I (105424) example: expect speed: 0.000000 real_pulses:0 +I (105424) example: new speed:399.000000 +I (105434) example: expect speed: 0.000000 real_pulses:0 +I (105434) example: new speed:399.000000 +I (105444) example: expect speed: 0.000000 real_pulses:0 +I (105444) example: new speed:399.000000 +I (105454) example: expect speed: 0.000000 real_pulses:0 +I (105454) example: new speed:399.000000 +I (105464) example: expect speed: 0.000000 real_pulses:0 +I (105464) example: new speed:399.000000 +I (105474) example: expect speed: 0.000000 real_pulses:0 +I (105474) example: new speed:399.000000 +I (105484) example: expect speed: 0.000000 real_pulses:0 +I (105484) example: new speed:399.000000 +I (105494) example: expect speed: 0.000000 real_pulses:0 +I (105494) example: new speed:399.000000 +I (105504) example: expect speed: 0.000000 real_pulses:0 +I (105504) example: new speed:399.000000 +I (105514) example: expect speed: 0.000000 real_pulses:0 +I (105524) example: new speed:399.000000 +I (105524) example: expect speed: 0.000000 real_pulses:0 +I (105524) example: new speed:399.000000 +I (105534) example: expect speed: 0.000000 real_pulses:0 +I (105544) example: new speed:399.000000 +I (105544) example: expect speed: 0.000000 real_pulses:0 +I (105544) example: new speed:399.000000 +I (105554) example: expect speed: 0.000000 real_pulses:0 +I (105554) example: new speed:399.000000 +I (105564) example: expect speed: 0.000000 real_pulses:0 +I (105564) example: new speed:399.000000 +I (105574) example: expect speed: 0.000000 real_pulses:0 +I (105574) example: new speed:399.000000 +I (105584) example: expect speed: 0.000000 real_pulses:0 +I (105584) example: new speed:399.000000 +I (105594) example: expect speed: 0.000000 real_pulses:0 +I (105594) example: new speed:399.000000 +I (105604) example: expect speed: 0.000000 real_pulses:0 +I (105604) example: new speed:399.000000 +I (105614) example: expect speed: 0.000000 real_pulses:0 +I (105614) example: new speed:399.000000 +I (105624) example: expect speed: 0.000000 real_pulses:0 +I (105624) example: new speed:399.000000 +I (105634) example: expect speed: 0.000000 real_pulses:0 +I (105634) example: new speed:399.000000 +I (105644) example: expect speed: 0.000000 real_pulses:0 +I (105654) example: new speed:399.000000 +I (105654) example: expect speed: 0.000000 real_pulses:0 +I (105654) example: new speed:399.000000 +I (105664) example: expect speed: 0.000000 real_pulses:0 +I (105664) example: new speed:399.000000 +I (105674) example: expect speed: 0.000000 real_pulses:0 +I (105674) example: new speed:399.000000 +I (105684) example: expect speed: 0.000000 real_pulses:0 +I (105684) example: new speed:399.000000 +I (105694) example: expect speed: 0.000000 real_pulses:0 +I (105694) example: new speed:399.000000 +I (105704) example: expect speed: 0.000000 real_pulses:0 +I (105704) example: new speed:399.000000 +I (105714) example: expect speed: 0.000000 real_pulses:0 +I (105714) example: new speed:399.000000 +I (105724) example: expect speed: 0.000000 real_pulses:0 +I (105724) example: new speed:399.000000 +I (105734) example: expect speed: 0.000000 real_pulses:0 +I (105734) example: new speed:399.000000 +I (105744) example: expect speed: 0.000000 real_pulses:0 +I (105744) example: new speed:399.000000 +I (105754) example: expect speed: 0.000000 real_pulses:0 +I (105754) example: new speed:399.000000 +I (105764) example: expect speed: 0.000000 real_pulses:0 +I (105764) example: new speed:399.000000 +I (105774) example: expect speed: 0.000000 real_pulses:0 +I (105774) example: new speed:399.000000 +I (105784) example: expect speed: 0.000000 real_pulses:0 +I (105784) example: new speed:399.000000 +I (105794) example: expect speed: 0.000000 real_pulses:0 +I (105794) example: new speed:399.000000 +I (105804) example: expect speed: 0.000000 real_pulses:0 +I (105804) example: new speed:399.000000 +I (105814) example: expect speed: 0.000000 real_pulses:0 +I (105814) example: new speed:399.000000 +I (105824) example: expect speed: 0.000000 real_pulses:0 +I (105824) example: new speed:399.000000 +I (105834) example: expect speed: 0.000000 real_pulses:0 +I (105834) example: new speed:399.000000 +I (105844) example: expect speed: 0.000000 real_pulses:0 +I (105844) example: new speed:399.000000 +I (105854) example: expect speed: 0.000000 real_pulses:0 +I (105854) example: new speed:399.000000 +I (105864) example: expect speed: 0.000000 real_pulses:0 +I (105864) example: new speed:399.000000 +I (105874) example: expect speed: 0.000000 real_pulses:0 +I (105874) example: new speed:399.000000 +I (105884) example: expect speed: 0.000000 real_pulses:0 +I (105884) example: new speed:399.000000 +I (105894) example: expect speed: 0.000000 real_pulses:0 +I (105894) example: new speed:399.000000 +I (105904) example: expect speed: 0.000000 real_pulses:0 +I (105904) example: new speed:399.000000 +I (105914) example: expect speed: 0.000000 real_pulses:0 +I (105914) example: new speed:399.000000 +I (105924) example: expect speed: 0.000000 real_pulses:0 +I (105934) example: new speed:399.000000 +I (105934) example: expect speed: 0.000000 real_pulses:0 +I (105934) example: new speed:399.000000 +I (105944) example: expect speed: 0.000000 real_pulses:0 +I (105944) example: new speed:399.000000 +I (105954) modbus tcp: ModBusSlave_recv() +I (105954) modbus: ModbusSlaveProcess() +I (105954) modbus: check id... +I (105954) modbus: ok +I (105954) modbus: add: 0, length: 10 +I (105954) modbus: Read Holding Registers +I (105954) example: expect speed: 0.000000 real_pulses:0 +I (105954) example: new speed:399.000000 +I (105964) example: expect speed: 0.000000 real_pulses:0 +I (105964) example: new speed:399.000000 +I (105974) example: expect speed: 0.000000 real_pulses:0 +I (105974) example: new speed:399.000000 +I (105984) example: expect speed: 0.000000 real_pulses:0 +I (105984) example: new speed:399.000000 +I (105994) example: expect speed: 0.000000 real_pulses:0 +I (105994) example: new speed:399.000000 +I (106004) example: expect speed: 0.000000 real_pulses:0 +I (106004) example: new speed:399.000000 +I (106014) example: expect speed: 0.000000 real_pulses:0 +I (106014) example: new speed:399.000000 +I (106024) example: expect speed: 0.000000 real_pulses:0 +I (106024) example: new speed:399.000000 +I (106034) example: expect speed: 0.000000 real_pulses:0 +I (106034) example: new speed:399.000000 +I (106044) example: expect speed: 0.000000 real_pulses:0 +I (106044) example: new speed:399.000000 +I (106054) example: expect speed: 0.000000 real_pulses:0 +I (106054) example: new speed:399.000000 +I (106064) example: expect speed: 0.000000 real_pulses:0 +I (106064) example: new speed:399.000000 +I (106074) example: expect speed: 0.000000 real_pulses:0 +I (106074) example: new speed:399.000000 +I (106084) example: expect speed: 0.000000 real_pulses:0 +I (106084) example: new speed:399.000000 +I (106094) example: expect speed: 0.000000 real_pulses:0 +I (106094) example: new speed:399.000000 +I (106104) example: expect speed: 0.000000 real_pulses:0 +I (106104) example: new speed:399.000000 +I (106114) example: expect speed: 0.000000 real_pulses:0 +I (106114) example: new speed:399.000000 +I (106124) example: expect speed: 0.000000 real_pulses:0 +I (106124) example: new speed:399.000000 +I (106134) example: expect speed: 0.000000 real_pulses:0 +I (106134) example: new speed:399.000000 +I (106144) example: expect speed: 0.000000 real_pulses:0 +I (106144) example: new speed:399.000000 +I (106154) example: expect speed: 0.000000 real_pulses:0 +I (106154) example: new speed:399.000000 +I (106164) example: expect speed: 0.000000 real_pulses:0 +I (106164) example: new speed:399.000000 +I (106174) example: expect speed: 0.000000 real_pulses:0 +I (106174) example: new speed:399.000000 +I (106184) example: expect speed: 0.000000 real_pulses:0 +I (106184) example: new speed:399.000000 +I (106194) example: expect speed: 0.000000 real_pulses:0 +I (106194) example: new speed:399.000000 +I (106204) example: expect speed: 0.000000 real_pulses:0 +I (106204) example: new speed:399.000000 +I (106214) example: expect speed: 0.000000 real_pulses:0 +I (106214) example: new speed:399.000000 +I (106224) example: expect speed: 0.000000 real_pulses:0 +I (106224) example: new speed:399.000000 +I (106234) example: expect speed: 0.000000 real_pulses:0 +I (106234) example: new speed:399.000000 +I (106244) example: expect speed: 0.000000 real_pulses:0 +I (106244) example: new speed:399.000000 +I (106254) example: expect speed: 0.000000 real_pulses:0 +I (106254) example: new speed:399.000000 +I (106264) example: expect speed: 0.000000 real_pulses:0 +I (106264) example: new speed:399.000000 +I (106274) example: expect speed: 0.000000 real_pulses:0 +I (106274) example: new speed:399.000000 +I (106284) example: expect speed: 0.000000 real_pulses:0 +I (106284) example: new speed:399.000000 +I (106294) example: expect speed: 0.000000 real_pulses:0 +I (106294) example: new speed:399.000000 +I (106304) example: expect speed: 0.000000 real_pulses:0 +I (106304) example: new speed:399.000000 +I (106314) example: expect speed: 0.000000 real_pulses:0 +I (106314) example: new speed:399.000000 +I (106324) example: expect speed: 0.000000 real_pulses:0 +I (106324) example: new speed:399.000000 +I (106334) example: expect speed: 0.000000 real_pulses:0 +I (106334) example: new speed:399.000000 +I (106344) example: expect speed: 0.000000 real_pulses:0 +I (106344) example: new speed:399.000000 +I (106354) example: expect speed: 0.000000 real_pulses:0 +I (106354) example: new speed:399.000000 +I (106364) example: expect speed: 0.000000 real_pulses:0 +I (106364) example: new speed:399.000000 +I (106374) example: expect speed: 0.000000 real_pulses:0 +I (106374) example: new speed:399.000000 +I (106384) example: expect speed: 0.000000 real_pulses:0 +I (106384) example: new speed:399.000000 +I (106394) example: expect speed: 0.000000 real_pulses:0 +I (106394) example: new speed:399.000000 +I (106404) example: expect speed: 0.000000 real_pulses:0 +I (106404) example: new speed:399.000000 +I (106414) example: expect speed: 0.000000 real_pulses:0 +I (106414) example: new speed:399.000000 +I (106424) example: expect speed: 0.000000 real_pulses:0 +I (106424) example: new speed:399.000000 +I (106434) example: expect speed: 0.000000 real_pulses:0 +I (106434) example: new speed:399.000000 +I (106444) example: expect speed: 0.000000 real_pulses:0 +I (106444) example: new speed:399.000000 +I (106454) example: expect speed: 0.000000 real_pulses:0 +I (106454) example: new speed:399.000000 +I (106464) example: expect speed: 0.000000 real_pulses:0 +I (106464) example: new speed:399.000000 +I (106474) example: expect speed: 0.000000 real_pulses:0 +I (106474) example: new speed:399.000000 +I (106484) example: expect speed: 0.000000 real_pulses:0 +I (106484) example: new speed:399.000000 +I (106494) example: expect speed: 0.000000 real_pulses:0 +I (106494) example: new speed:399.000000 +I (106504) example: expect speed: 0.000000 real_pulses:0 +I (106504) example: new speed:399.000000 +I (106514) example: expect speed: 0.000000 real_pulses:0 +I (106514) example: new speed:399.000000 +I (106524) example: expect speed: 0.000000 real_pulses:0 +I (106524) example: new speed:399.000000 +I (106534) example: expect speed: 0.000000 real_pulses:0 +I (106534) example: new speed:399.000000 +I (106544) example: expect speed: 0.000000 real_pulses:0 +I (106554) example: new speed:399.000000 +I (106554) example: expect speed: 0.000000 real_pulses:0 +I (106564) example: new speed:399.000000 +I (106564) example: expect speed: 0.000000 real_pulses:0 +I (106564) example: new speed:399.000000 +I (106574) example: expect speed: 0.000000 real_pulses:0 +I (106574) example: new speed:399.000000 +I (106584) example: expect speed: 0.000000 real_pulses:0 +I (106584) example: new speed:399.000000 +I (106594) example: expect speed: 0.000000 real_pulses:0 +I (106594) example: new speed:399.000000 +I (106604) example: expect speed: 0.000000 real_pulses:0 +I (106614) example: new speed:399.000000 +I (106614) example: expect speed: 0.000000 real_pulses:0 +I (106614) example: new speed:399.000000 +I (106624) example: expect speed: 0.000000 real_pulses:0 +I (106624) example: new speed:399.000000 +I (106634) example: expect speed: 0.000000 real_pulses:0 +I (106634) example: new speed:399.000000 +I (106644) example: expect speed: 0.000000 real_pulses:0 +I (106644) example: new speed:399.000000 +I (106654) example: expect speed: 0.000000 real_pulses:0 +I (106654) example: new speed:399.000000 +I (106664) example: expect speed: 0.000000 real_pulses:0 +I (106664) example: new speed:399.000000 +I (106674) example: expect speed: 0.000000 real_pulses:0 +I (106674) example: new speed:399.000000 +I (106684) example: expect speed: 0.000000 real_pulses:0 +I (106684) example: new speed:399.000000 +I (106694) example: expect speed: 0.000000 real_pulses:0 +I (106694) example: new speed:399.000000 +I (106704) example: expect speed: 0.000000 real_pulses:0 +I (106704) example: new speed:399.000000 +I (106714) example: expect speed: 0.000000 real_pulses:0 +I (106714) example: new speed:399.000000 +I (106724) example: expect speed: 0.000000 real_pulses:0 +I (106724) example: new speed:399.000000 +I (106734) example: expect speed: 0.000000 real_pulses:0 +I (106734) example: new speed:399.000000 +I (106744) example: expect speed: 0.000000 real_pulses:0 +I (106744) example: new speed:399.000000 +I (106754) example: expect speed: 0.000000 real_pulses:0 +I (106754) example: new speed:399.000000 +I (106764) example: expect speed: 0.000000 real_pulses:0 +I (106764) example: new speed:399.000000 +I (106774) example: expect speed: 0.000000 real_pulses:0 +I (106774) example: new speed:399.000000 +I (106784) example: expect speed: 0.000000 real_pulses:0 +I (106784) example: new speed:399.000000 +I (106794) example: expect speed: 0.000000 real_pulses:0 +I (106794) example: new speed:399.000000 +I (106804) example: expect speed: 0.000000 real_pulses:0 +I (106804) example: new speed:399.000000 +I (106814) example: expect speed: 0.000000 real_pulses:0 +I (106814) example: new speed:399.000000 +I (106824) example: expect speed: 0.000000 real_pulses:0 +I (106824) example: new speed:399.000000 +I (106834) example: expect speed: 0.000000 real_pulses:0 +I (106834) example: new speed:399.000000 +I (106844) example: expect speed: 0.000000 real_pulses:0 +I (106844) example: new speed:399.000000 +I (106854) example: expect speed: 0.000000 real_pulses:0 +I (106854) example: new speed:399.000000 +I (106864) example: expect speed: 0.000000 real_pulses:0 +I (106864) example: new speed:399.000000 +I (106874) example: expect speed: 0.000000 real_pulses:0 +I (106874) example: new speed:399.000000 +I (106884) example: expect speed: 0.000000 real_pulses:0 +I (106884) example: new speed:399.000000 +I (106894) example: expect speed: 0.000000 real_pulses:0 +I (106894) example: new speed:399.000000 +I (106904) example: expect speed: 0.000000 real_pulses:0 +I (106904) example: new speed:399.000000 +I (106914) example: expect speed: 0.000000 real_pulses:0 +I (106914) example: new speed:399.000000 +I (106924) example: expect speed: 0.000000 real_pulses:0 +I (106924) example: new speed:399.000000 +I (106934) example: expect speed: 0.000000 real_pulses:0 +I (106934) example: new speed:399.000000 +I (106944) example: expect speed: 0.000000 real_pulses:0 +I (106944) example: new speed:399.000000 +I (106954) example: expect speed: 0.000000 real_pulses:0 +I (106954) example: new speed:399.000000 +I (106964) example: expect speed: 0.000000 real_pulses:0 +I (106964) example: new speed:399.000000 +I (106974) example: expect speed: 0.000000 real_pulses:0 +I (106974) example: new speed:399.000000 +I (106984) example: expect speed: 0.000000 real_pulses:0 +I (106984) example: new speed:399.000000 +I (106994) example: expect speed: 0.000000 real_pulses:0 +I (106994) example: new speed:399.000000 +I (107004) example: expect speed: 0.000000 real_pulses:0 +I (107004) example: new speed:399.000000 +I (107014) example: expect speed: 0.000000 real_pulses:0 +I (107014) example: new speed:399.000000 +I (107024) example: expect speed: 0.000000 real_pulses:0 +I (107024) example: new speed:399.000000 +I (107034) example: expect speed: 0.000000 real_pulses:0 +I (107034) example: new speed:399.000000 +I (107044) example: expect speed: 0.000000 real_pulses:0 +I (107044) example: new speed:399.000000 +I (107054) example: expect speed: 0.000000 real_pulses:0 +I (107054) example: new speed:399.000000 +I (107064) example: expect speed: 0.000000 real_pulses:0 +I (107064) example: new speed:399.000000 +I (107074) example: expect speed: 0.000000 real_pulses:0 +I (107074) example: new speed:399.000000 +I (107084) example: expect speed: 0.000000 real_pulses:0 +I (107084) example: new speed:399.000000 +I (107094) example: expect speed: 0.000000 real_pulses:0 +I (107094) example: new speed:399.000000 +I (107104) example: expect speed: 0.000000 real_pulses:0 +I (107104) example: new speed:399.000000 +I (107114) example: expect speed: 0.000000 real_pulses:0 +I (107114) example: new speed:399.000000 +I (107124) example: expect speed: 0.000000 real_pulses:0 +I (107124) example: new speed:399.000000 +I (107134) example: expect speed: 0.000000 real_pulses:0 +I (107134) example: new speed:399.000000 +I (107144) example: expect speed: 0.000000 real_pulses:0 +I (107144) example: new speed:399.000000 +I (107154) example: expect speed: 0.000000 real_pulses:0 +I (107154) example: new speed:399.000000 +I (107164) example: expect speed: 0.000000 real_pulses:0 +I (107164) example: new speed:399.000000 +I (107174) example: expect speed: 0.000000 real_pulses:0 +I (107174) example: new speed:399.000000 +I (107184) example: expect speed: 0.000000 real_pulses:0 +I (107184) example: new speed:399.000000 +I (107194) example: expect speed: 0.000000 real_pulses:0 +I (107194) example: new speed:399.000000 +I (107204) example: expect speed: 0.000000 real_pulses:0 +I (107204) example: new speed:399.000000 +I (107214) example: expect speed: 0.000000 real_pulses:0 +I (107214) example: new speed:399.000000 +I (107224) example: expect speed: 0.000000 real_pulses:0 +I (107224) example: new speed:399.000000 +I (107234) example: expect speed: 0.000000 real_pulses:0 +I (107234) example: new speed:399.000000 +I (107244) example: expect speed: 0.000000 real_pulses:0 +I (107244) example: new speed:399.000000 +I (107254) example: expect speed: 0.000000 real_pulses:0 +I (107254) example: new speed:399.000000 +I (107264) example: expect speed: 0.000000 real_pulses:0 +I (107264) example: new speed:399.000000 +I (107274) example: expect speed: 0.000000 real_pulses:0 +I (107274) example: new speed:399.000000 +I (107284) example: expect speed: 0.000000 real_pulses:0 +I (107284) example: new speed:399.000000 +I (107294) example: expect speed: 0.000000 real_pulses:0 +I (107294) example: new speed:399.000000 +I (107304) example: expect speed: 0.000000 real_pulses:0 +I (107304) example: new speed:399.000000 +I (107314) example: expect speed: 0.000000 real_pulses:0 +I (107314) example: new speed:399.000000 +I (107324) example: expect speed: 0.000000 real_pulses:0 +I (107324) example: new speed:399.000000 +I (107334) example: expect speed: 0.000000 real_pulses:0 +I (107334) example: new speed:399.000000 +I (107344) example: expect speed: 0.000000 real_pulses:0 +I (107344) example: new speed:399.000000 +I (107354) example: expect speed: 0.000000 real_pulses:0 +I (107354) example: new speed:399.000000 +I (107364) example: expect speed: 0.000000 real_pulses:0 +I (107364) example: new speed:399.000000 +I (107374) example: expect speed: 0.000000 real_pulses:0 +I (107374) example: new speed:399.000000 +I (107384) example: expect speed: 0.000000 real_pulses:0 +I (107384) example: new speed:399.000000 +I (107394) example: expect speed: 0.000000 real_pulses:0 +I (107394) example: new speed:399.000000 +I (107404) example: expect speed: 0.000000 real_pulses:0 +I (107404) example: new speed:399.000000 +I (107414) example: expect speed: 0.000000 real_pulses:0 +I (107414) example: new speed:399.000000 +I (107424) example: expect speed: 0.000000 real_pulses:0 +I (107424) example: new speed:399.000000 +I (107434) example: expect speed: 0.000000 real_pulses:0 +I (107434) example: new speed:399.000000 +I (107444) example: expect speed: 0.000000 real_pulses:0 +I (107444) example: new speed:399.000000 +I (107454) example: expect speed: 0.000000 real_pulses:0 +I (107454) example: new speed:399.000000 +I (107464) example: expect speed: 0.000000 real_pulses:0 +I (107464) example: new speed:399.000000 +I (107474) example: expect speed: 0.000000 real_pulses:0 +I (107474) example: new speed:399.000000 +I (107484) example: expect speed: 0.000000 real_pulses:0 +I (107484) example: new speed:399.000000 +I (107494) example: expect speed: 0.000000 real_pulses:0 +I (107494) example: new speed:399.000000 +I (107504) example: expect speed: 0.000000 real_pulses:0 +I (107504) example: new speed:399.000000 +I (107514) example: expect speed: 0.000000 real_pulses:0 +I (107514) example: new speed:399.000000 +I (107524) example: expect speed: 0.000000 real_pulses:0 +I (107524) example: new speed:399.000000 +I (107534) example: expect speed: 0.000000 real_pulses:0 +I (107534) example: new speed:399.000000 +I (107544) example: expect speed: 0.000000 real_pulses:0 +I (107544) example: new speed:399.000000 +I (107554) example: expect speed: 0.000000 real_pulses:0 +I (107554) example: new speed:399.000000 +I (107564) example: expect speed: 0.000000 real_pulses:0 +I (107574) example: new speed:399.000000 +I (107574) example: expect speed: 0.000000 real_pulses:0 +I (107584) example: new speed:399.000000 +I (107584) example: expect speed: 0.000000 real_pulses:0 +I (107584) example: new speed:399.000000 +I (107594) example: expect speed: 0.000000 real_pulses:0 +I (107594) example: new speed:399.000000 +I (107604) example: expect speed: 0.000000 real_pulses:0 +I (107604) example: new speed:399.000000 +I (107614) example: expect speed: 0.000000 real_pulses:0 +I (107614) example: new speed:399.000000 +I (107624) example: expect speed: 0.000000 real_pulses:0 +I (107634) example: new speed:399.000000 +I (107634) example: expect speed: 0.000000 real_pulses:0 +I (107634) example: new speed:399.000000 +I (107644) example: expect speed: 0.000000 real_pulses:0 +I (107644) example: new speed:399.000000 +I (107654) example: expect speed: 0.000000 real_pulses:0 +I (107654) example: new speed:399.000000 +I (107664) example: expect speed: 0.000000 real_pulses:0 +I (107664) example: new speed:399.000000 +I (107674) example: expect speed: 0.000000 real_pulses:0 +I (107674) example: new speed:399.000000 +I (107684) example: expect speed: 0.000000 real_pulses:0 +I (107684) example: new speed:399.000000 +I (107694) example: expect speed: 0.000000 real_pulses:0 +I (107694) example: new speed:399.000000 +I (107704) example: expect speed: 0.000000 real_pulses:0 +I (107704) example: new speed:399.000000 +I (107714) example: expect speed: 0.000000 real_pulses:0 +I (107714) example: new speed:399.000000 +I (107724) example: expect speed: 0.000000 real_pulses:0 +I (107724) example: new speed:399.000000 +I (107734) example: expect speed: 0.000000 real_pulses:0 +I (107734) example: new speed:399.000000 +I (107744) example: expect speed: 0.000000 real_pulses:0 +I (107744) example: new speed:399.000000 +I (107754) example: expect speed: 0.000000 real_pulses:0 +I (107754) example: new speed:399.000000 +I (107764) example: expect speed: 0.000000 real_pulses:0 +I (107764) example: new speed:399.000000 +I (107774) example: expect speed: 0.000000 real_pulses:0 +I (107774) example: new speed:399.000000 +I (107784) example: expect speed: 0.000000 real_pulses:0 +I (107784) example: new speed:399.000000 +I (107794) example: expect speed: 0.000000 real_pulses:0 +I (107794) example: new speed:399.000000 +I (107804) example: expect speed: 0.000000 real_pulses:0 +I (107804) example: new speed:399.000000 +I (107814) example: expect speed: 0.000000 real_pulses:0 +I (107814) example: new speed:399.000000 +I (107824) example: expect speed: 0.000000 real_pulses:0 +I (107824) example: new speed:399.000000 +I (107834) example: expect speed: 0.000000 real_pulses:0 +I (107834) example: new speed:399.000000 +I (107844) example: expect speed: 0.000000 real_pulses:0 +I (107844) example: new speed:399.000000 +I (107854) example: expect speed: 0.000000 real_pulses:0 +I (107854) example: new speed:399.000000 +I (107864) example: expect speed: 0.000000 real_pulses:0 +I (107864) example: new speed:399.000000 +I (107874) example: expect speed: 0.000000 real_pulses:0 +I (107874) example: new speed:399.000000 +I (107884) example: expect speed: 0.000000 real_pulses:0 +I (107884) example: new speed:399.000000 +I (107894) example: expect speed: 0.000000 real_pulses:0 +I (107894) example: new speed:399.000000 +I (107904) example: expect speed: 0.000000 real_pulses:0 +I (107904) example: new speed:399.000000 +I (107914) example: expect speed: 0.000000 real_pulses:0 +I (107914) example: new speed:399.000000 +I (107924) example: expect speed: 0.000000 real_pulses:0 +I (107924) example: new speed:399.000000 +I (107934) example: expect speed: 0.000000 real_pulses:0 +I (107934) example: new speed:399.000000 +I (107944) example: expect speed: 0.000000 real_pulses:0 +I (107944) example: new speed:399.000000 +I (107954) example: expect speed: 0.000000 real_pulses:0 +I (107954) example: new speed:399.000000 +I (107964) example: expect speed: 0.000000 real_pulses:0 +I (107964) example: new speed:399.000000 +I (107974) example: expect speed: 0.000000 real_pulses:0 +I (107974) example: new speed:399.000000 +I (107984) example: expect speed: 0.000000 real_pulses:0 +I (107984) example: new speed:399.000000 +I (107994) example: expect speed: 0.000000 real_pulses:0 +I (107994) example: new speed:399.000000 +I (108004) example: expect speed: 0.000000 real_pulses:0 +I (108004) example: new speed:399.000000 +I (108014) example: expect speed: 0.000000 real_pulses:0 +I (108014) example: new speed:399.000000 +I (108024) example: expect speed: 0.000000 real_pulses:0 +I (108024) example: new speed:399.000000 +I (108034) example: expect speed: 0.000000 real_pulses:0 +I (108034) example: new speed:399.000000 +I (108044) example: expect speed: 0.000000 real_pulses:0 +I (108044) example: new speed:399.000000 +I (108054) example: expect speed: 0.000000 real_pulses:0 +I (108054) example: new speed:399.000000 +I (108064) example: expect speed: 0.000000 real_pulses:0 +I (108064) example: new speed:399.000000 +I (108074) example: expect speed: 0.000000 real_pulses:0 +I (108074) example: new speed:399.000000 +I (108084) example: expect speed: 0.000000 real_pulses:0 +I (108084) example: new speed:399.000000 +I (108094) example: expect speed: 0.000000 real_pulses:0 +I (108094) example: new speed:399.000000 +I (108104) example: expect speed: 0.000000 real_pulses:0 +I (108104) example: new speed:399.000000 +I (108114) example: expect speed: 0.000000 real_pulses:0 +I (108114) example: new speed:399.000000 +I (108124) example: expect speed: 0.000000 real_pulses:0 +I (108124) example: new speed:399.000000 +I (108134) example: expect speed: 0.000000 real_pulses:0 +I (108134) example: new speed:399.000000 +I (108144) example: expect speed: 0.000000 real_pulses:0 +I (108144) example: new speed:399.000000 +I (108154) example: expect speed: 0.000000 real_pulses:0 +I (108154) example: new speed:399.000000 +I (108164) example: expect speed: 0.000000 real_pulses:0 +I (108164) example: new speed:399.000000 +I (108174) example: expect speed: 0.000000 real_pulses:0 +I (108174) example: new speed:399.000000 +I (108184) example: expect speed: 0.000000 real_pulses:0 +I (108184) example: new speed:399.000000 +I (108194) example: expect speed: 0.000000 real_pulses:0 +I (108194) example: new speed:399.000000 +I (108204) example: expect speed: 0.000000 real_pulses:0 +I (108204) example: new speed:399.000000 +I (108214) example: expect speed: 0.000000 real_pulses:0 +I (108214) example: new speed:399.000000 +I (108224) example: expect speed: 0.000000 real_pulses:0 +I (108224) example: new speed:399.000000 +I (108234) example: expect speed: 0.000000 real_pulses:0 +I (108234) example: new speed:399.000000 +I (108244) example: expect speed: 0.000000 real_pulses:0 +I (108244) example: new speed:399.000000 +I (108254) example: expect speed: 0.000000 real_pulses:0 +I (108254) example: new speed:399.000000 +I (108264) example: expect speed: 0.000000 real_pulses:0 +I (108264) example: new speed:399.000000 +I (108274) example: expect speed: 0.000000 real_pulses:0 +I (108274) example: new speed:399.000000 +I (108284) example: expect speed: 0.000000 real_pulses:0 +I (108284) example: new speed:399.000000 +I (108294) example: expect speed: 0.000000 real_pulses:0 +I (108294) example: new speed:399.000000 +I (108304) example: expect speed: 0.000000 real_pulses:0 +I (108304) example: new speed:399.000000 +I (108314) example: expect speed: 0.000000 real_pulses:0 +I (108314) example: new speed:399.000000 +I (108324) example: expect speed: 0.000000 real_pulses:0 +I (108324) example: new speed:399.000000 +I (108334) example: expect speed: 0.000000 real_pulses:0 +I (108334) example: new speed:399.000000 +I (108344) example: expect speed: 0.000000 real_pulses:0 +I (108344) example: new speed:399.000000 +I (108354) example: expect speed: 0.000000 real_pulses:0 +I (108354) example: new speed:399.000000 +I (108364) example: expect speed: 0.000000 real_pulses:0 +I (108364) example: new speed:399.000000 +I (108374) example: expect speed: 0.000000 real_pulses:0 +I (108374) example: new speed:399.000000 +I (108384) example: expect speed: 0.000000 real_pulses:0 +I (108394) example: new speed:399.000000 +I (108394) modbus tcp: ModBusSlave_recv() +I (108394) modbus: ModbusSlaveProcess() +I (108394) modbus: check id... +I (108394) modbus: ok +I (108394) modbus: add: 0, length: 10 +I (108394) modbus: Read Holding Registers +I (108394) example: expect speed: 0.000000 real_pulses:0 +I (108394) example: new speed:399.000000 +I (108404) example: expect speed: 0.000000 real_pulses:0 +I (108404) example: new speed:399.000000 +I (108414) example: expect speed: 0.000000 real_pulses:0 +I (108414) example: new speed:399.000000 +I (108424) example: expect speed: 0.000000 real_pulses:0 +I (108424) example: new speed:399.000000 +I (108434) example: expect speed: 0.000000 real_pulses:0 +I (108434) example: new speed:399.000000 +I (108444) example: expect speed: 0.000000 real_pulses:0 +I (108454) example: new speed:399.000000 +I (108454) example: expect speed: 0.000000 real_pulses:0 +I (108454) example: new speed:399.000000 +I (108464) example: expect speed: 0.000000 real_pulses:0 +I (108464) example: new speed:399.000000 +I (108474) example: expect speed: 0.000000 real_pulses:0 +I (108474) example: new speed:399.000000 +I (108484) example: expect speed: 0.000000 real_pulses:0 +I (108494) example: new speed:399.000000 +I (108494) example: expect speed: 0.000000 real_pulses:0 +I (108494) example: new speed:399.000000 +I (108504) example: expect speed: 0.000000 real_pulses:0 +I (108504) example: new speed:399.000000 +I (108514) example: expect speed: 0.000000 real_pulses:0 +I (108514) example: new speed:399.000000 +I (108524) example: expect speed: 0.000000 real_pulses:0 +I (108524) example: new speed:399.000000 +I (108534) example: expect speed: 0.000000 real_pulses:0 +I (108534) example: new speed:399.000000 +I (108544) example: expect speed: 0.000000 real_pulses:0 +I (108544) example: new speed:399.000000 +I (108554) example: expect speed: 0.000000 real_pulses:0 +I (108554) example: new speed:399.000000 +I (108564) example: expect speed: 0.000000 real_pulses:0 +I (108564) example: new speed:399.000000 +I (108574) example: expect speed: 0.000000 real_pulses:0 +I (108574) example: new speed:399.000000 +I (108584) example: expect speed: 0.000000 real_pulses:0 +I (108584) example: new speed:399.000000 +I (108594) example: expect speed: 0.000000 real_pulses:0 +I (108594) example: new speed:399.000000 +I (108604) example: expect speed: 0.000000 real_pulses:0 +I (108604) example: new speed:399.000000 +I (108614) example: expect speed: 0.000000 real_pulses:0 +I (108614) example: new speed:399.000000 +I (108624) example: expect speed: 0.000000 real_pulses:0 +I (108624) example: new speed:399.000000 +I (108634) example: expect speed: 0.000000 real_pulses:0 +I (108634) example: new speed:399.000000 +I (108644) example: expect speed: 0.000000 real_pulses:0 +I (108644) example: new speed:399.000000 +I (108654) example: expect speed: 0.000000 real_pulses:0 +I (108654) example: new speed:399.000000 +I (108664) example: expect speed: 0.000000 real_pulses:0 +I (108664) example: new speed:399.000000 +I (108674) example: expect speed: 0.000000 real_pulses:0 +I (108674) example: new speed:399.000000 +I (108684) example: expect speed: 0.000000 real_pulses:0 +I (108684) example: new speed:399.000000 +I (108694) example: expect speed: 0.000000 real_pulses:0 +I (108694) example: new speed:399.000000 +I (108704) example: expect speed: 0.000000 real_pulses:0 +I (108704) example: new speed:399.000000 +I (108714) example: expect speed: 0.000000 real_pulses:0 +I (108714) example: new speed:399.000000 +I (108724) example: expect speed: 0.000000 real_pulses:0 +I (108724) example: new speed:399.000000 +I (108734) example: expect speed: 0.000000 real_pulses:0 +I (108734) example: new speed:399.000000 +I (108744) example: expect speed: 0.000000 real_pulses:0 +I (108744) example: new speed:399.000000 +I (108754) example: expect speed: 0.000000 real_pulses:0 +I (108754) example: new speed:399.000000 +I (108764) example: expect speed: 0.000000 real_pulses:0 +I (108764) example: new speed:399.000000 +I (108774) example: expect speed: 0.000000 real_pulses:0 +I (108774) example: new speed:399.000000 +I (108784) example: expect speed: 0.000000 real_pulses:0 +I (108784) example: new speed:399.000000 +I (108794) example: expect speed: 0.000000 real_pulses:0 +I (108804) example: new speed:399.000000 +I (108804) example: expect speed: 0.000000 real_pulses:0 +I (108814) example: new speed:399.000000 +I (108814) example: expect speed: 0.000000 real_pulses:0 +I (108814) example: new speed:399.000000 +I (108824) example: expect speed: 0.000000 real_pulses:0 +I (108824) example: new speed:399.000000 +I (108834) modbus tcp: ModBusSlave_recv() +I (108834) modbus: ModbusSlaveProcess() +I (108834) modbus: check id... +I (108834) modbus: ok +I (108834) modbus: add: 0, length: 10 +I (108834) modbus: Read Holding Registers +I (108834) example: expect speed: 0.000000 real_pulses:0 +I (108834) example: new speed:399.000000 +I (108844) example: expect speed: 0.000000 real_pulses:0 +I (108844) example: new speed:399.000000 +I (108854) example: expect speed: 0.000000 real_pulses:0 +I (108854) example: new speed:399.000000 +I (108864) example: expect speed: 0.000000 real_pulses:0 +I (108864) example: new speed:399.000000 +I (108874) example: expect speed: 0.000000 real_pulses:0 +I (108874) example: new speed:399.000000 +I (108884) example: expect speed: 0.000000 real_pulses:0 +I (108894) example: new speed:399.000000 +I (108894) example: expect speed: 0.000000 real_pulses:0 +I (108894) example: new speed:399.000000 +I (108904) example: expect speed: 0.000000 real_pulses:0 +I (108904) example: new speed:399.000000 +I (108914) example: expect speed: 0.000000 real_pulses:0 +I (108914) example: new speed:399.000000 +I (108924) example: expect speed: 0.000000 real_pulses:0 +I (108924) example: new speed:399.000000 +I (108934) example: expect speed: 0.000000 real_pulses:0 +I (108934) example: new speed:399.000000 +I (108944) example: expect speed: 0.000000 real_pulses:0 +I (108944) example: new speed:399.000000 +I (108954) example: expect speed: 0.000000 real_pulses:0 +I (108954) example: new speed:399.000000 +I (108964) example: expect speed: 0.000000 real_pulses:0 +I (108964) example: new speed:399.000000 +I (108974) example: expect speed: 0.000000 real_pulses:0 +I (108974) example: new speed:399.000000 +I (108984) example: expect speed: 0.000000 real_pulses:0 +I (108984) example: new speed:399.000000 +I (108994) example: expect speed: 0.000000 real_pulses:0 +I (108994) example: new speed:399.000000 +I (109004) example: expect speed: 0.000000 real_pulses:0 +I (109004) example: new speed:399.000000 +I (109014) example: expect speed: 0.000000 real_pulses:0 +I (109014) example: new speed:399.000000 +I (109024) example: expect speed: 0.000000 real_pulses:0 +I (109024) example: new speed:399.000000 +I (109034) example: expect speed: 0.000000 real_pulses:0 +I (109034) example: new speed:399.000000 +I (109044) example: expect speed: 0.000000 real_pulses:0 +I (109044) example: new speed:399.000000 +I (109054) example: expect speed: 0.000000 real_pulses:0 +I (109054) example: new speed:399.000000 +I (109064) example: expect speed: 0.000000 real_pulses:0 +I (109064) example: new speed:399.000000 +I (109074) example: expect speed: 0.000000 real_pulses:0 +I (109074) example: new speed:399.000000 +I (109084) example: expect speed: 0.000000 real_pulses:0 +I (109084) example: new speed:399.000000 +I (109094) example: expect speed: 0.000000 real_pulses:0 +I (109094) example: new speed:399.000000 +I (109104) example: expect speed: 0.000000 real_pulses:0 +I (109104) example: new speed:399.000000 +I (109114) example: expect speed: 0.000000 real_pulses:0 +I (109114) example: new speed:399.000000 +I (109124) example: expect speed: 0.000000 real_pulses:0 +I (109124) example: new speed:399.000000 +I (109134) example: expect speed: 0.000000 real_pulses:0 +I (109134) example: new speed:399.000000 +I (109144) example: expect speed: 0.000000 real_pulses:0 +I (109144) example: new speed:399.000000 +I (109154) example: expect speed: 0.000000 real_pulses:0 +I (109154) example: new speed:399.000000 +I (109164) example: expect speed: 0.000000 real_pulses:0 +I (109164) example: new speed:399.000000 +I (109174) example: expect speed: 0.000000 real_pulses:0 +I (109174) example: new speed:399.000000 +I (109184) example: expect speed: 0.000000 real_pulses:0 +I (109184) example: new speed:399.000000 +I (109194) example: expect speed: 0.000000 real_pulses:0 +I (109194) example: new speed:399.000000 +I (109204) example: expect speed: 0.000000 real_pulses:0 +I (109214) example: new speed:399.000000 +I (109214) example: expect speed: 0.000000 real_pulses:0 +I (109224) example: new speed:399.000000 +I (109224) example: expect speed: 0.000000 real_pulses:0 +I (109224) example: new speed:399.000000 +I (109234) example: expect speed: 0.000000 real_pulses:0 +I (109234) example: new speed:399.000000 +I (109244) example: expect speed: 0.000000 real_pulses:0 +I (109244) example: new speed:399.000000 +I (109254) example: expect speed: 0.000000 real_pulses:0 +I (109254) example: new speed:399.000000 +I (109264) example: expect speed: 0.000000 real_pulses:0 +I (109264) example: new speed:399.000000 +I (109274) example: expect speed: 0.000000 real_pulses:0 +I (109284) example: new speed:399.000000 +I (109284) example: expect speed: 0.000000 real_pulses:0 +I (109284) example: new speed:399.000000 +I (109294) example: expect speed: 0.000000 real_pulses:0 +I (109294) example: new speed:399.000000 +I (109304) example: expect speed: 0.000000 real_pulses:0 +I (109304) example: new speed:399.000000 +I (109314) example: expect speed: 0.000000 real_pulses:0 +I (109314) example: new speed:399.000000 +I (109324) example: expect speed: 0.000000 real_pulses:0 +I (109324) example: new speed:399.000000 +I (109334) example: expect speed: 0.000000 real_pulses:0 +I (109334) example: new speed:399.000000 +I (109344) example: expect speed: 0.000000 real_pulses:0 +I (109344) example: new speed:399.000000 +I (109354) example: expect speed: 0.000000 real_pulses:0 +I (109354) example: new speed:399.000000 +I (109364) example: expect speed: 0.000000 real_pulses:0 +I (109364) example: new speed:399.000000 +I (109374) example: expect speed: 0.000000 real_pulses:0 +I (109374) example: new speed:399.000000 +I (109384) example: expect speed: 0.000000 real_pulses:0 +I (109384) example: new speed:399.000000 +I (109394) example: expect speed: 0.000000 real_pulses:0 +I (109394) example: new speed:399.000000 +I (109404) example: expect speed: 0.000000 real_pulses:0 +I (109404) example: new speed:399.000000 +I (109414) example: expect speed: 0.000000 real_pulses:0 +I (109414) example: new speed:399.000000 +I (109424) example: expect speed: 0.000000 real_pulses:0 +I (109424) example: new speed:399.000000 +I (109434) example: expect speed: 0.000000 real_pulses:0 +I (109434) example: new speed:399.000000 +I (109444) example: expect speed: 0.000000 real_pulses:0 +I (109444) example: new speed:399.000000 +I (109454) example: expect speed: 0.000000 real_pulses:0 +I (109454) example: new speed:399.000000 +I (109464) example: expect speed: 0.000000 real_pulses:0 +I (109464) example: new speed:399.000000 +I (109474) example: expect speed: 0.000000 real_pulses:0 +I (109474) example: new speed:399.000000 +I (109484) example: expect speed: 0.000000 real_pulses:0 +I (109484) example: new speed:399.000000 +I (109494) example: expect speed: 0.000000 real_pulses:0 +I (109494) example: new speed:399.000000 +I (109504) example: expect speed: 0.000000 real_pulses:0 +I (109504) example: new speed:399.000000 +I (109514) example: expect speed: 0.000000 real_pulses:0 +I (109524) example: new speed:399.000000 +I (109524) example: expect speed: 0.000000 real_pulses:0 +I (109524) example: new speed:399.000000 +I (109534) example: expect speed: 0.000000 real_pulses:0 +I (109534) example: new speed:399.000000 +I (109544) example: expect speed: 0.000000 real_pulses:0 +I (109544) example: new speed:399.000000 +I (109554) example: expect speed: 0.000000 real_pulses:0 +I (109554) example: new speed:399.000000 +I (109564) example: expect speed: 0.000000 real_pulses:0 +I (109564) example: new speed:399.000000 +I (109574) example: expect speed: 0.000000 real_pulses:0 +I (109574) example: new speed:399.000000 +I (109584) example: expect speed: 0.000000 real_pulses:0 +I (109584) example: new speed:399.000000 +I (109594) example: expect speed: 0.000000 real_pulses:0 +I (109594) example: new speed:399.000000 +I (109604) example: expect speed: 0.000000 real_pulses:0 +I (109604) example: new speed:399.000000 +I (109614) example: expect speed: 0.000000 real_pulses:0 +I (109614) example: new speed:399.000000 +I (109624) example: expect speed: 0.000000 real_pulses:0 +I (109624) example: new speed:399.000000 +I (109634) example: expect speed: 0.000000 real_pulses:0 +I (109634) example: new speed:399.000000 +I (109644) example: expect speed: 0.000000 real_pulses:0 +I (109644) example: new speed:399.000000 +I (109654) example: expect speed: 0.000000 real_pulses:0 +I (109654) example: new speed:399.000000 +I (109664) example: expect speed: 0.000000 real_pulses:0 +I (109664) example: new speed:399.000000 +I (109674) example: expect speed: 0.000000 real_pulses:0 +I (109674) example: new speed:399.000000 +I (109684) example: expect speed: 0.000000 real_pulses:0 +I (109684) example: new speed:399.000000 +I (109694) example: expect speed: 0.000000 real_pulses:0 +I (109694) example: new speed:399.000000 +I (109704) example: expect speed: 0.000000 real_pulses:0 +I (109704) example: new speed:399.000000 +I (109714) example: expect speed: 0.000000 real_pulses:0 +I (109714) example: new speed:399.000000 +I (109724) example: expect speed: 0.000000 real_pulses:0 +I (109724) example: new speed:399.000000 +I (109734) example: expect speed: 0.000000 real_pulses:0 +I (109734) example: new speed:399.000000 +I (109744) example: expect speed: 0.000000 real_pulses:0 +I (109744) example: new speed:399.000000 +I (109754) example: expect speed: 0.000000 real_pulses:0 +I (109754) example: new speed:399.000000 +I (109764) example: expect speed: 0.000000 real_pulses:0 +I (109764) example: new speed:399.000000 +I (109774) example: expect speed: 0.000000 real_pulses:0 +I (109774) example: new speed:399.000000 +I (109784) example: expect speed: 0.000000 real_pulses:0 +I (109784) example: new speed:399.000000 +I (109794) example: expect speed: 0.000000 real_pulses:0 +I (109794) example: new speed:399.000000 +I (109804) example: expect speed: 0.000000 real_pulses:0 +I (109804) example: new speed:399.000000 +I (109814) example: expect speed: 0.000000 real_pulses:0 +I (109814) example: new speed:399.000000 +I (109824) example: expect speed: 0.000000 real_pulses:0 +I (109824) example: new speed:399.000000 +I (109834) example: expect speed: 0.000000 real_pulses:0 +I (109834) example: new speed:399.000000 +I (109844) example: expect speed: 0.000000 real_pulses:0 +I (109844) example: new speed:399.000000 +I (109854) example: expect speed: 0.000000 real_pulses:0 +I (109854) example: new speed:399.000000 +I (109864) example: expect speed: 0.000000 real_pulses:0 +I (109864) example: new speed:399.000000 +I (109874) example: expect speed: 0.000000 real_pulses:0 +I (109874) example: new speed:399.000000 +I (109884) example: expect speed: 0.000000 real_pulses:0 +I (109884) example: new speed:399.000000 +I (109894) example: expect speed: 0.000000 real_pulses:0 +I (109894) example: new speed:399.000000 +I (109904) example: expect speed: 0.000000 real_pulses:0 +I (109904) example: new speed:399.000000 +I (109914) example: expect speed: 0.000000 real_pulses:0 +I (109914) example: new speed:399.000000 +I (109924) example: expect speed: 0.000000 real_pulses:0 +I (109934) example: new speed:399.000000 +I (109934) modbus tcp: ModBusSlave_recv() +I (109934) modbus: ModbusSlaveProcess() +I (109934) modbus: check id... +I (109934) modbus: ok +I (109934) modbus: add: 0, length: 10 +I (109934) modbus: Read Holding Registers +I (109934) example: expect speed: 0.000000 real_pulses:0 +I (109934) example: new speed:399.000000 +I (109944) example: expect speed: 0.000000 real_pulses:0 +I (109944) example: new speed:399.000000 +I (109954) example: expect speed: 0.000000 real_pulses:0 +I (109954) example: new speed:399.000000 +I (109964) example: expect speed: 0.000000 real_pulses:0 +I (109964) example: new speed:399.000000 +I (109974) example: expect speed: 0.000000 real_pulses:0 +I (109974) example: new speed:399.000000 +I (109984) example: expect speed: 0.000000 real_pulses:0 +I (109994) example: new speed:399.000000 +I (109994) example: expect speed: 0.000000 real_pulses:0 +I (109994) example: new speed:399.000000 +I (110004) example: expect speed: 0.000000 real_pulses:0 +I (110004) example: new speed:399.000000 +I (110014) example: expect speed: 0.000000 real_pulses:0 +I (110014) example: new speed:399.000000 +I (110024) example: expect speed: 0.000000 real_pulses:0 +I (110024) example: new speed:399.000000 +I (110034) example: expect speed: 0.000000 real_pulses:0 +I (110044) example: new speed:399.000000 +I (110044) example: expect speed: 0.000000 real_pulses:0 +I (110044) example: new speed:399.000000 +I (110054) example: expect speed: 0.000000 real_pulses:0 +I (110054) example: new speed:399.000000 +I (110064) example: expect speed: 0.000000 real_pulses:0 +I (110064) example: new speed:399.000000 +I (110074) example: expect speed: 0.000000 real_pulses:0 +I (110084) example: new speed:399.000000 +I (110084) example: expect speed: 0.000000 real_pulses:0 +I (110094) example: new speed:399.000000 +I (110094) example: expect speed: 0.000000 real_pulses:0 +I (110094) example: new speed:399.000000 +I (110104) example: expect speed: 0.000000 real_pulses:0 +I (110104) example: new speed:399.000000 +I (110114) example: expect speed: 0.000000 real_pulses:0 +I (110114) example: new speed:399.000000 +I (110124) example: expect speed: 0.000000 real_pulses:0 +I (110124) example: new speed:399.000000 +I (110134) example: expect speed: 0.000000 real_pulses:0 +I (110134) example: new speed:399.000000 +I (110144) example: expect speed: 0.000000 real_pulses:0 +I (110154) example: new speed:399.000000 +I (110154) example: expect speed: 0.000000 real_pulses:0 +I (110154) example: new speed:399.000000 +I (110164) example: expect speed: 0.000000 real_pulses:0 +I (110164) example: new speed:399.000000 +I (110174) example: expect speed: 0.000000 real_pulses:0 +I (110174) example: new speed:399.000000 +I (110184) example: expect speed: 0.000000 real_pulses:0 +I (110184) example: new speed:399.000000 +I (110194) example: expect speed: 0.000000 real_pulses:0 +I (110194) example: new speed:399.000000 +I (110204) example: expect speed: 0.000000 real_pulses:0 +I (110204) example: new speed:399.000000 +I (110214) example: expect speed: 0.000000 real_pulses:0 +I (110214) example: new speed:399.000000 +I (110224) example: expect speed: 0.000000 real_pulses:0 +I (110224) example: new speed:399.000000 +I (110234) example: expect speed: 0.000000 real_pulses:0 +I (110234) example: new speed:399.000000 +I (110244) example: expect speed: 0.000000 real_pulses:0 +I (110244) example: new speed:399.000000 +I (110254) example: expect speed: 0.000000 real_pulses:0 +I (110254) example: new speed:399.000000 +I (110264) example: expect speed: 0.000000 real_pulses:0 +I (110264) example: new speed:399.000000 +I (110274) example: expect speed: 0.000000 real_pulses:0 +I (110274) example: new speed:399.000000 +I (110284) example: expect speed: 0.000000 real_pulses:0 +I (110284) example: new speed:399.000000 +I (110294) example: expect speed: 0.000000 real_pulses:0 +I (110294) example: new speed:399.000000 +I (110304) example: expect speed: 0.000000 real_pulses:0 +I (110304) example: new speed:399.000000 +I (110314) example: expect speed: 0.000000 real_pulses:0 +I (110314) example: new speed:399.000000 +I (110324) example: expect speed: 0.000000 real_pulses:0 +I (110324) example: new speed:399.000000 +I (110334) example: expect speed: 0.000000 real_pulses:0 +I (110334) example: new speed:399.000000 +I (110344) example: expect speed: 0.000000 real_pulses:0 +I (110344) example: new speed:399.000000 +I (110354) example: expect speed: 0.000000 real_pulses:0 +I (110354) example: new speed:399.000000 +I (110364) example: expect speed: 0.000000 real_pulses:0 +I (110364) example: new speed:399.000000 +I (110374) example: expect speed: 0.000000 real_pulses:0 +I (110374) example: new speed:399.000000 +I (110384) example: expect speed: 0.000000 real_pulses:0 +I (110384) example: new speed:399.000000 +I (110394) example: expect speed: 0.000000 real_pulses:0 +I (110394) example: new speed:399.000000 +I (110404) example: expect speed: 0.000000 real_pulses:0 +I (110404) example: new speed:399.000000 +I (110414) example: expect speed: 0.000000 real_pulses:0 +I (110414) example: new speed:399.000000 +I (110424) example: expect speed: 0.000000 real_pulses:0 +I (110424) example: new speed:399.000000 +I (110434) example: expect speed: 0.000000 real_pulses:0 +I (110434) example: new speed:399.000000 +I (110444) example: expect speed: 0.000000 real_pulses:0 +I (110444) example: new speed:399.000000 +I (110454) example: expect speed: 0.000000 real_pulses:0 +I (110454) example: new speed:399.000000 +I (110464) example: expect speed: 0.000000 real_pulses:0 +I (110464) example: new speed:399.000000 +I (110474) example: expect speed: 0.000000 real_pulses:0 +I (110474) example: new speed:399.000000 +I (110484) example: expect speed: 0.000000 real_pulses:0 +I (110484) example: new speed:399.000000 +I (110494) example: expect speed: 0.000000 real_pulses:0 +I (110494) example: new speed:399.000000 +I (110504) example: expect speed: 0.000000 real_pulses:0 +I (110504) example: new speed:399.000000 +I (110514) example: expect speed: 0.000000 real_pulses:0 +I (110514) example: new speed:399.000000 +I (110524) example: expect speed: 0.000000 real_pulses:0 +I (110524) example: new speed:399.000000 +I (110534) example: expect speed: 0.000000 real_pulses:0 +I (110544) example: new speed:399.000000 +I (110544) example: expect speed: 0.000000 real_pulses:0 +I (110544) example: new speed:399.000000 +I (110554) example: expect speed: 0.000000 real_pulses:0 +I (110554) example: new speed:399.000000 +I (110564) example: expect speed: 0.000000 real_pulses:0 +I (110564) example: new speed:399.000000 +I (110574) example: expect speed: 0.000000 real_pulses:0 +I (110574) example: new speed:399.000000 +I (110584) example: expect speed: 0.000000 real_pulses:0 +I (110584) example: new speed:399.000000 +I (110594) example: expect speed: 0.000000 real_pulses:0 +I (110594) example: new speed:399.000000 +I (110604) example: expect speed: 0.000000 real_pulses:0 +I (110604) example: new speed:399.000000 +I (110614) example: expect speed: 0.000000 real_pulses:0 +I (110614) example: new speed:399.000000 +I (110624) example: expect speed: 0.000000 real_pulses:0 +I (110624) example: new speed:399.000000 +I (110634) example: expect speed: 0.000000 real_pulses:0 +I (110634) example: new speed:399.000000 +I (110644) example: expect speed: 0.000000 real_pulses:0 +I (110644) example: new speed:399.000000 +I (110654) example: expect speed: 0.000000 real_pulses:0 +I (110654) example: new speed:399.000000 +I (110664) example: expect speed: 0.000000 real_pulses:0 +I (110664) example: new speed:399.000000 +I (110674) example: expect speed: 0.000000 real_pulses:0 +I (110674) example: new speed:399.000000 +I (110684) example: expect speed: 0.000000 real_pulses:0 +I (110684) example: new speed:399.000000 +I (110694) example: expect speed: 0.000000 real_pulses:0 +I (110694) example: new speed:399.000000 +I (110704) example: expect speed: 0.000000 real_pulses:0 +I (110704) example: new speed:399.000000 +I (110714) example: expect speed: 0.000000 real_pulses:0 +I (110714) example: new speed:399.000000 +I (110724) example: expect speed: 0.000000 real_pulses:0 +I (110724) example: new speed:399.000000 +I (110734) example: expect speed: 0.000000 real_pulses:0 +I (110734) example: new speed:399.000000 +I (110744) example: expect speed: 0.000000 real_pulses:0 +I (110744) example: new speed:399.000000 +I (110754) example: expect speed: 0.000000 real_pulses:0 +I (110754) example: new speed:399.000000 +I (110764) example: expect speed: 0.000000 real_pulses:0 +I (110764) example: new speed:399.000000 +I (110774) example: expect speed: 0.000000 real_pulses:0 +I (110774) example: new speed:399.000000 +I (110784) example: expect speed: 0.000000 real_pulses:0 +I (110784) example: new speed:399.000000 +I (110794) example: expect speed: 0.000000 real_pulses:0 +I (110794) example: new speed:399.000000 +I (110804) example: expect speed: 0.000000 real_pulses:0 +I (110804) example: new speed:399.000000 +I (110814) example: expect speed: 0.000000 real_pulses:0 +I (110814) example: new speed:399.000000 +I (110824) example: expect speed: 0.000000 real_pulses:0 +I (110824) example: new speed:399.000000 +I (110834) example: expect speed: 0.000000 real_pulses:0 +I (110834) example: new speed:399.000000 +I (110844) example: expect speed: 0.000000 real_pulses:0 +I (110844) example: new speed:399.000000 +I (110854) example: expect speed: 0.000000 real_pulses:0 +I (110854) example: new speed:399.000000 +I (110864) example: expect speed: 0.000000 real_pulses:0 +I (110864) example: new speed:399.000000 +I (110874) example: expect speed: 0.000000 real_pulses:0 +I (110874) example: new speed:399.000000 +I (110884) example: expect speed: 0.000000 real_pulses:0 +I (110884) example: new speed:399.000000 +I (110894) example: expect speed: 0.000000 real_pulses:0 +I (110894) example: new speed:399.000000 +I (110904) example: expect speed: 0.000000 real_pulses:0 +I (110904) example: new speed:399.000000 +I (110914) example: expect speed: 0.000000 real_pulses:0 +I (110914) example: new speed:399.000000 +I (110924) example: expect speed: 0.000000 real_pulses:0 +I (110924) example: new speed:399.000000 +I (110934) example: expect speed: 0.000000 real_pulses:0 +I (110934) example: new speed:399.000000 +I (110944) example: expect speed: 0.000000 real_pulses:0 +I (110944) example: new speed:399.000000 +I (110954) example: expect speed: 0.000000 real_pulses:0 +I (110954) example: new speed:399.000000 +I (110964) example: expect speed: 0.000000 real_pulses:0 +I (110964) example: new speed:399.000000 +I (110974) example: expect speed: 0.000000 real_pulses:0 +I (110974) example: new speed:399.000000 +I (110984) example: expect speed: 0.000000 real_pulses:0 +I (110984) example: new speed:399.000000 +I (110994) example: expect speed: 0.000000 real_pulses:0 +I (110994) example: new speed:399.000000 +I (111004) example: expect speed: 0.000000 real_pulses:0 +I (111004) example: new speed:399.000000 +I (111014) example: expect speed: 0.000000 real_pulses:0 +I (111014) example: new speed:399.000000 +I (111024) example: expect speed: 0.000000 real_pulses:0 +I (111024) example: new speed:399.000000 +I (111034) example: expect speed: 0.000000 real_pulses:0 +I (111034) example: new speed:399.000000 +I (111044) example: expect speed: 0.000000 real_pulses:0 +I (111044) example: new speed:399.000000 +I (111054) example: expect speed: 0.000000 real_pulses:0 +I (111054) example: new speed:399.000000 +I (111064) example: expect speed: 0.000000 real_pulses:0 +I (111064) example: new speed:399.000000 +I (111074) example: expect speed: 0.000000 real_pulses:0 +I (111074) example: new speed:399.000000 +I (111084) example: expect speed: 0.000000 real_pulses:0 +I (111084) example: new speed:399.000000 +I (111094) example: expect speed: 0.000000 real_pulses:0 +I (111094) example: new speed:399.000000 +I (111104) example: expect speed: 0.000000 real_pulses:0 +I (111104) example: new speed:399.000000 +I (111114) example: expect speed: 0.000000 real_pulses:0 +I (111114) example: new speed:399.000000 +I (111124) example: expect speed: 0.000000 real_pulses:0 +I (111124) example: new speed:399.000000 +I (111134) example: expect speed: 0.000000 real_pulses:0 +I (111134) example: new speed:399.000000 +I (111144) example: expect speed: 0.000000 real_pulses:0 +I (111144) example: new speed:399.000000 +I (111154) modbus tcp: ModBusSlave_recv() +I (111154) modbus: ModbusSlaveProcess() +I (111154) modbus: check id... +I (111154) modbus: ok +I (111154) modbus: add: 0, length: 10 +I (111154) modbus: Read Holding Registers +I (111154) example: expect speed: 0.000000 real_pulses:0 +I (111164) example: new speed:399.000000 +I (111164) example: expect speed: 0.000000 real_pulses:0 +I (111164) example: new speed:399.000000 +I (111174) example: expect speed: 0.000000 real_pulses:0 +I (111174) example: new speed:399.000000 +I (111184) example: expect speed: 0.000000 real_pulses:0 +I (111184) example: new speed:399.000000 +I (111194) example: expect speed: 0.000000 real_pulses:0 +I (111194) example: new speed:399.000000 +I (111204) example: expect speed: 0.000000 real_pulses:0 +I (111204) example: new speed:399.000000 +I (111214) example: expect speed: 0.000000 real_pulses:0 +I (111214) example: new speed:399.000000 +I (111224) example: expect speed: 0.000000 real_pulses:0 +I (111224) example: new speed:399.000000 +I (111234) example: expect speed: 0.000000 real_pulses:0 +I (111234) example: new speed:399.000000 +I (111244) example: expect speed: 0.000000 real_pulses:0 +I (111244) example: new speed:399.000000 +I (111254) example: expect speed: 0.000000 real_pulses:0 +I (111264) example: new speed:399.000000 +I (111264) example: expect speed: 0.000000 real_pulses:0 +I (111274) example: new speed:399.000000 +I (111274) example: expect speed: 0.000000 real_pulses:0 +I (111274) example: new speed:399.000000 +I (111284) example: expect speed: 0.000000 real_pulses:0 +I (111284) example: new speed:399.000000 +I (111294) example: expect speed: 0.000000 real_pulses:0 +I (111294) example: new speed:399.000000 +I (111304) example: expect speed: 0.000000 real_pulses:0 +I (111304) example: new speed:399.000000 +I (111314) example: expect speed: 0.000000 real_pulses:0 +I (111324) example: new speed:399.000000 +I (111324) example: expect speed: 0.000000 real_pulses:0 +I (111324) example: new speed:399.000000 +I (111334) example: expect speed: 0.000000 real_pulses:0 +I (111334) example: new speed:399.000000 +I (111344) example: expect speed: 0.000000 real_pulses:0 +I (111344) example: new speed:399.000000 +I (111354) example: expect speed: 0.000000 real_pulses:0 +I (111354) example: new speed:399.000000 +I (111364) example: expect speed: 0.000000 real_pulses:0 +I (111364) example: new speed:399.000000 +I (111374) example: expect speed: 0.000000 real_pulses:0 +I (111374) example: new speed:399.000000 +I (111384) example: expect speed: 0.000000 real_pulses:0 +I (111384) example: new speed:399.000000 +I (111394) example: expect speed: 0.000000 real_pulses:0 +I (111394) example: new speed:399.000000 +I (111404) example: expect speed: 0.000000 real_pulses:0 +I (111404) example: new speed:399.000000 +I (111414) example: expect speed: 0.000000 real_pulses:0 +I (111414) example: new speed:399.000000 +I (111424) example: expect speed: 0.000000 real_pulses:0 +I (111424) example: new speed:399.000000 +I (111434) example: expect speed: 0.000000 real_pulses:0 +I (111434) example: new speed:399.000000 +I (111444) example: expect speed: 0.000000 real_pulses:0 +I (111444) example: new speed:399.000000 +I (111454) example: expect speed: 0.000000 real_pulses:0 +I (111454) example: new speed:399.000000 +I (111464) example: expect speed: 0.000000 real_pulses:0 +I (111464) example: new speed:399.000000 +I (111474) example: expect speed: 0.000000 real_pulses:0 +I (111474) example: new speed:399.000000 +I (111484) example: expect speed: 0.000000 real_pulses:0 +I (111484) example: new speed:399.000000 +I (111494) example: expect speed: 0.000000 real_pulses:0 +I (111494) example: new speed:399.000000 +I (111504) example: expect speed: 0.000000 real_pulses:0 +I (111504) example: new speed:399.000000 +I (111514) example: expect speed: 0.000000 real_pulses:0 +I (111514) example: new speed:399.000000 +I (111524) example: expect speed: 0.000000 real_pulses:0 +I (111524) example: new speed:399.000000 +I (111534) example: expect speed: 0.000000 real_pulses:0 +I (111534) example: new speed:399.000000 +I (111544) example: expect speed: 0.000000 real_pulses:0 +I (111544) example: new speed:399.000000 +I (111554) example: expect speed: 0.000000 real_pulses:0 +I (111554) example: new speed:399.000000 +I (111564) example: expect speed: 0.000000 real_pulses:0 +I (111574) example: new speed:399.000000 +I (111574) example: expect speed: 0.000000 real_pulses:0 +I (111574) example: new speed:399.000000 +I (111584) example: expect speed: 0.000000 real_pulses:0 +I (111584) example: new speed:399.000000 +I (111594) example: expect speed: 0.000000 real_pulses:0 +I (111594) example: new speed:399.000000 +I (111604) example: expect speed: 0.000000 real_pulses:0 +I (111604) example: new speed:399.000000 +I (111614) example: expect speed: 0.000000 real_pulses:0 +I (111614) example: new speed:399.000000 +I (111624) example: expect speed: 0.000000 real_pulses:0 +I (111624) example: new speed:399.000000 +I (111634) example: expect speed: 0.000000 real_pulses:0 +I (111634) example: new speed:399.000000 +I (111644) example: expect speed: 0.000000 real_pulses:0 +I (111644) example: new speed:399.000000 +I (111654) example: expect speed: 0.000000 real_pulses:0 +I (111654) example: new speed:399.000000 +I (111664) example: expect speed: 0.000000 real_pulses:0 +I (111664) example: new speed:399.000000 +I (111674) example: expect speed: 0.000000 real_pulses:0 +I (111674) example: new speed:399.000000 +I (111684) example: expect speed: 0.000000 real_pulses:0 +I (111684) example: new speed:399.000000 +I (111694) example: expect speed: 0.000000 real_pulses:0 +I (111694) example: new speed:399.000000 +I (111704) example: expect speed: 0.000000 real_pulses:0 +I (111704) example: new speed:399.000000 +I (111714) example: expect speed: 0.000000 real_pulses:0 +I (111714) example: new speed:399.000000 +I (111724) example: expect speed: 0.000000 real_pulses:0 +I (111724) example: new speed:399.000000 +I (111734) example: expect speed: 0.000000 real_pulses:0 +I (111734) example: new speed:399.000000 +I (111744) example: expect speed: 0.000000 real_pulses:0 +I (111744) example: new speed:399.000000 +I (111754) example: expect speed: 0.000000 real_pulses:0 +I (111754) example: new speed:399.000000 +I (111764) example: expect speed: 0.000000 real_pulses:0 +I (111764) example: new speed:399.000000 +I (111774) example: expect speed: 0.000000 real_pulses:0 +I (111774) example: new speed:399.000000 +I (111784) example: expect speed: 0.000000 real_pulses:0 +I (111784) example: new speed:399.000000 +I (111794) example: expect speed: 0.000000 real_pulses:0 +I (111794) example: new speed:399.000000 +I (111804) example: expect speed: 0.000000 real_pulses:0 +I (111804) example: new speed:399.000000 +I (111814) example: expect speed: 0.000000 real_pulses:0 +I (111814) example: new speed:399.000000 +I (111824) example: expect speed: 0.000000 real_pulses:0 +I (111824) example: new speed:399.000000 +I (111834) example: expect speed: 0.000000 real_pulses:0 +I (111834) example: new speed:399.000000 +I (111844) example: expect speed: 0.000000 real_pulses:0 +I (111844) example: new speed:399.000000 +I (111854) example: expect speed: 0.000000 real_pulses:0 +I (111854) example: new speed:399.000000 +I (111864) example: expect speed: 0.000000 real_pulses:0 +I (111864) example: new speed:399.000000 +I (111874) example: expect speed: 0.000000 real_pulses:0 +I (111874) example: new speed:399.000000 +I (111884) example: expect speed: 0.000000 real_pulses:0 +I (111884) example: new speed:399.000000 +I (111894) example: expect speed: 0.000000 real_pulses:0 +I (111894) example: new speed:399.000000 +I (111904) example: expect speed: 0.000000 real_pulses:0 +I (111904) example: new speed:399.000000 +I (111914) example: expect speed: 0.000000 real_pulses:0 +I (111914) example: new speed:399.000000 +I (111924) example: expect speed: 0.000000 real_pulses:0 +I (111924) example: new speed:399.000000 +I (111934) example: expect speed: 0.000000 real_pulses:0 +I (111934) example: new speed:399.000000 +I (111944) example: expect speed: 0.000000 real_pulses:0 +I (111944) example: new speed:399.000000 +I (111954) example: expect speed: 0.000000 real_pulses:0 +I (111954) example: new speed:399.000000 +I (111964) example: expect speed: 0.000000 real_pulses:0 +I (111964) example: new speed:399.000000 +I (111974) example: expect speed: 0.000000 real_pulses:0 +I (111974) example: new speed:399.000000 +I (111984) example: expect speed: 0.000000 real_pulses:0 +I (111984) example: new speed:399.000000 +I (111994) example: expect speed: 0.000000 real_pulses:0 +I (111994) example: new speed:399.000000 +I (112004) example: expect speed: 0.000000 real_pulses:0 +I (112004) example: new speed:399.000000 +I (112014) example: expect speed: 0.000000 real_pulses:0 +I (112014) example: new speed:399.000000 +I (112024) example: expect speed: 0.000000 real_pulses:0 +I (112024) example: new speed:399.000000 +I (112034) example: expect speed: 0.000000 real_pulses:0 +I (112034) example: new speed:399.000000 +I (112044) example: expect speed: 0.000000 real_pulses:0 +I (112044) example: new speed:399.000000 +I (112054) example: expect speed: 0.000000 real_pulses:0 +I (112054) example: new speed:399.000000 +I (112064) example: expect speed: 0.000000 real_pulses:0 +I (112064) example: new speed:399.000000 +I (112074) example: expect speed: 0.000000 real_pulses:0 +I (112074) example: new speed:399.000000 +I (112084) example: expect speed: 0.000000 real_pulses:0 +I (112084) example: new speed:399.000000 +I (112094) example: expect speed: 0.000000 real_pulses:0 +I (112094) example: new speed:399.000000 +I (112104) example: expect speed: 0.000000 real_pulses:0 +I (112104) example: new speed:399.000000 +I (112114) example: expect speed: 0.000000 real_pulses:0 +I (112114) example: new speed:399.000000 +I (112124) example: expect speed: 0.000000 real_pulses:0 +I (112124) example: new speed:399.000000 +I (112134) example: expect speed: 0.000000 real_pulses:0 +I (112134) example: new speed:399.000000 +I (112144) example: expect speed: 0.000000 real_pulses:0 +I (112144) example: new speed:399.000000 +I (112154) example: expect speed: 0.000000 real_pulses:0 +I (112154) example: new speed:399.000000 +I (112164) example: expect speed: 0.000000 real_pulses:0 +I (112164) example: new speed:399.000000 +I (112174) example: expect speed: 0.000000 real_pulses:0 +I (112184) example: new speed:399.000000 +I (112184) modbus tcp: ModBusSlave_recv() +I (112184) modbus: ModbusSlaveProcess() +I (112184) modbus: check id... +I (112184) modbus: ok +I (112184) modbus: add: 0, length: 10 +I (112184) modbus: Read Holding Registers +I (112184) example: expect speed: 0.000000 real_pulses:0 +I (112194) example: new speed:399.000000 +I (112194) example: expect speed: 0.000000 real_pulses:0 +I (112194) example: new speed:399.000000 +I (112204) example: expect speed: 0.000000 real_pulses:0 +I (112204) example: new speed:399.000000 +I (112214) example: expect speed: 0.000000 real_pulses:0 +I (112214) example: new speed:399.000000 +I (112224) example: expect speed: 0.000000 real_pulses:0 +I (112224) example: new speed:399.000000 +I (112234) example: expect speed: 0.000000 real_pulses:0 +I (112244) example: new speed:399.000000 +I (112244) example: expect speed: 0.000000 real_pulses:0 +I (112244) example: new speed:399.000000 +I (112254) example: expect speed: 0.000000 real_pulses:0 +I (112254) example: new speed:399.000000 +I (112264) example: expect speed: 0.000000 real_pulses:0 +I (112264) example: new speed:399.000000 +I (112274) example: expect speed: 0.000000 real_pulses:0 +I (112284) example: new speed:399.000000 +I (112284) example: expect speed: 0.000000 real_pulses:0 +I (112284) example: new speed:399.000000 +I (112294) example: expect speed: 0.000000 real_pulses:0 +I (112294) example: new speed:399.000000 +I (112304) example: expect speed: 0.000000 real_pulses:0 +I (112304) example: new speed:399.000000 +I (112314) example: expect speed: 0.000000 real_pulses:0 +I (112314) example: new speed:399.000000 +I (112324) example: expect speed: 0.000000 real_pulses:0 +I (112324) example: new speed:399.000000 +I (112334) example: expect speed: 0.000000 real_pulses:0 +I (112344) example: new speed:399.000000 +I (112344) example: expect speed: 0.000000 real_pulses:0 +I (112344) example: new speed:399.000000 +I (112354) example: expect speed: 0.000000 real_pulses:0 +I (112354) example: new speed:399.000000 +I (112364) example: expect speed: 0.000000 real_pulses:0 +I (112364) example: new speed:399.000000 +I (112374) example: expect speed: 0.000000 real_pulses:0 +I (112374) example: new speed:399.000000 +I (112384) example: expect speed: 0.000000 real_pulses:0 +I (112384) example: new speed:399.000000 +I (112394) example: expect speed: 0.000000 real_pulses:0 +I (112394) example: new speed:399.000000 +I (112404) example: expect speed: 0.000000 real_pulses:0 +I (112404) example: new speed:399.000000 +I (112414) example: expect speed: 0.000000 real_pulses:0 +I (112414) example: new speed:399.000000 +I (112424) example: expect speed: 0.000000 real_pulses:0 +I (112424) example: new speed:399.000000 +I (112434) example: expect speed: 0.000000 real_pulses:0 +I (112434) example: new speed:399.000000 +I (112444) example: expect speed: 0.000000 real_pulses:0 +I (112444) example: new speed:399.000000 +I (112454) example: expect speed: 0.000000 real_pulses:0 +I (112454) example: new speed:399.000000 +I (112464) example: expect speed: 0.000000 real_pulses:0 +I (112464) example: new speed:399.000000 +I (112474) example: expect speed: 0.000000 real_pulses:0 +I (112474) example: new speed:399.000000 +I (112484) example: expect speed: 0.000000 real_pulses:0 +I (112484) example: new speed:399.000000 +I (112494) example: expect speed: 0.000000 real_pulses:0 +I (112494) example: new speed:399.000000 +I (112504) example: expect speed: 0.000000 real_pulses:0 +I (112504) example: new speed:399.000000 +I (112514) example: expect speed: 0.000000 real_pulses:0 +I (112514) example: new speed:399.000000 +I (112524) example: expect speed: 0.000000 real_pulses:0 +I (112524) example: new speed:399.000000 +I (112534) example: expect speed: 0.000000 real_pulses:0 +I (112534) example: new speed:399.000000 +I (112544) example: expect speed: 0.000000 real_pulses:0 +I (112544) example: new speed:399.000000 +I (112554) example: expect speed: 0.000000 real_pulses:0 +I (112554) example: new speed:399.000000 +I (112564) example: expect speed: 0.000000 real_pulses:0 +I (112564) example: new speed:399.000000 +I (112574) example: expect speed: 0.000000 real_pulses:0 +I (112574) example: new speed:399.000000 +I (112584) example: expect speed: 0.000000 real_pulses:0 +I (112584) example: new speed:399.000000 +I (112594) example: expect speed: 0.000000 real_pulses:0 +I (112594) example: new speed:399.000000 +I (112604) example: expect speed: 0.000000 real_pulses:0 +I (112604) example: new speed:399.000000 +I (112614) example: expect speed: 0.000000 real_pulses:0 +I (112614) example: new speed:399.000000 +I (112624) example: expect speed: 0.000000 real_pulses:0 +I (112624) example: new speed:399.000000 +I (112634) example: expect speed: 0.000000 real_pulses:0 +I (112634) example: new speed:399.000000 +I (112644) example: expect speed: 0.000000 real_pulses:0 +I (112644) example: new speed:399.000000 +I (112654) example: expect speed: 0.000000 real_pulses:0 +I (112654) example: new speed:399.000000 +I (112664) example: expect speed: 0.000000 real_pulses:0 +I (112664) example: new speed:399.000000 +I (112674) example: expect speed: 0.000000 real_pulses:0 +I (112674) example: new speed:399.000000 +I (112684) example: expect speed: 0.000000 real_pulses:0 +I (112684) example: new speed:399.000000 +I (112694) example: expect speed: 0.000000 real_pulses:0 +I (112694) example: new speed:399.000000 +I (112704) example: expect speed: 0.000000 real_pulses:0 +I (112704) example: new speed:399.000000 +I (112714) example: expect speed: 0.000000 real_pulses:0 +I (112714) example: new speed:399.000000 +I (112724) example: expect speed: 0.000000 real_pulses:0 +I (112724) example: new speed:399.000000 +I (112734) example: expect speed: 0.000000 real_pulses:0 +I (112734) example: new speed:399.000000 +I (112744) example: expect speed: 0.000000 real_pulses:0 +I (112744) example: new speed:399.000000 +I (112754) example: expect speed: 0.000000 real_pulses:0 +I (112754) example: new speed:399.000000 +I (112764) example: expect speed: 0.000000 real_pulses:0 +I (112764) example: new speed:399.000000 +I (112774) example: expect speed: 0.000000 real_pulses:0 +I (112774) example: new speed:399.000000 +I (112784) example: expect speed: 0.000000 real_pulses:0 +I (112794) example: new speed:399.000000 +I (112794) example: expect speed: 0.000000 real_pulses:0 +I (112794) example: new speed:399.000000 +I (112804) example: expect speed: 0.000000 real_pulses:0 +I (112804) example: new speed:399.000000 +I (112814) example: expect speed: 0.000000 real_pulses:0 +I (112814) example: new speed:399.000000 +I (112824) example: expect speed: 0.000000 real_pulses:0 +I (112824) example: new speed:399.000000 +I (112834) example: expect speed: 0.000000 real_pulses:0 +I (112834) example: new speed:399.000000 +I (112844) example: expect speed: 0.000000 real_pulses:0 +I (112844) example: new speed:399.000000 +I (112854) example: expect speed: 0.000000 real_pulses:0 +I (112854) example: new speed:399.000000 +I (112864) example: expect speed: 0.000000 real_pulses:0 +I (112864) example: new speed:399.000000 +I (112874) example: expect speed: 0.000000 real_pulses:0 +I (112874) example: new speed:399.000000 +I (112884) example: expect speed: 0.000000 real_pulses:0 +I (112884) example: new speed:399.000000 +I (112894) example: expect speed: 0.000000 real_pulses:0 +I (112894) example: new speed:399.000000 +I (112904) example: expect speed: 0.000000 real_pulses:0 +I (112904) example: new speed:399.000000 +I (112914) example: expect speed: 0.000000 real_pulses:0 +I (112914) example: new speed:399.000000 +I (112924) example: expect speed: 0.000000 real_pulses:0 +I (112924) example: new speed:399.000000 +I (112934) example: expect speed: 0.000000 real_pulses:0 +I (112934) example: new speed:399.000000 +I (112944) example: expect speed: 0.000000 real_pulses:0 +I (112944) example: new speed:399.000000 +I (112954) example: expect speed: 0.000000 real_pulses:0 +I (112954) example: new speed:399.000000 +I (112964) example: expect speed: 0.000000 real_pulses:0 +I (112964) example: new speed:399.000000 +I (112974) example: expect speed: 0.000000 real_pulses:0 +I (112974) example: new speed:399.000000 +I (112984) example: expect speed: 0.000000 real_pulses:0 +I (112984) example: new speed:399.000000 +I (112994) example: expect speed: 0.000000 real_pulses:0 +I (112994) example: new speed:399.000000 +I (113004) example: expect speed: 0.000000 real_pulses:0 +I (113004) example: new speed:399.000000 +I (113014) example: expect speed: 0.000000 real_pulses:0 +I (113014) example: new speed:399.000000 +I (113024) example: expect speed: 0.000000 real_pulses:0 +I (113024) example: new speed:399.000000 +I (113034) example: expect speed: 0.000000 real_pulses:0 +I (113034) example: new speed:399.000000 +I (113044) example: expect speed: 0.000000 real_pulses:0 +I (113044) example: new speed:399.000000 +I (113054) example: expect speed: 0.000000 real_pulses:0 +I (113054) example: new speed:399.000000 +I (113064) example: expect speed: 0.000000 real_pulses:0 +I (113064) example: new speed:399.000000 +I (113074) example: expect speed: 0.000000 real_pulses:0 +I (113074) example: new speed:399.000000 +I (113084) example: expect speed: 0.000000 real_pulses:0 +I (113084) example: new speed:399.000000 +I (113094) example: expect speed: 0.000000 real_pulses:0 +I (113094) example: new speed:399.000000 +I (113104) example: expect speed: 0.000000 real_pulses:0 +I (113104) example: new speed:399.000000 +I (113114) example: expect speed: 0.000000 real_pulses:0 +I (113114) example: new speed:399.000000 +I (113124) example: expect speed: 0.000000 real_pulses:0 +I (113124) example: new speed:399.000000 +I (113134) example: expect speed: 0.000000 real_pulses:0 +I (113134) example: new speed:399.000000 +I (113144) example: expect speed: 0.000000 real_pulses:0 +I (113144) example: new speed:399.000000 +I (113154) example: expect speed: 0.000000 real_pulses:0 +I (113154) example: new speed:399.000000 +I (113164) example: expect speed: 0.000000 real_pulses:0 +I (113164) example: new speed:399.000000 +I (113174) example: expect speed: 0.000000 real_pulses:0 +I (113174) example: new speed:399.000000 +I (113184) example: expect speed: 0.000000 real_pulses:0 +I (113184) example: new speed:399.000000 +I (113194) example: expect speed: 0.000000 real_pulses:0 +I (113204) example: new speed:399.000000 +I (113204) modbus tcp: ModBusSlave_recv() +I (113204) modbus: ModbusSlaveProcess() +I (113204) modbus: check id... +I (113204) modbus: ok +I (113204) modbus: add: 0, length: 10 +I (113204) modbus: Read Holding Registers +I (113204) example: expect speed: 0.000000 real_pulses:0 +I (113214) example: new speed:399.000000 +I (113214) example: expect speed: 0.000000 real_pulses:0 +I (113214) example: new speed:399.000000 +I (113224) example: expect speed: 0.000000 real_pulses:0 +I (113224) example: new speed:399.000000 +I (113234) example: expect speed: 0.000000 real_pulses:0 +I (113234) example: new speed:399.000000 +I (113244) example: expect speed: 0.000000 real_pulses:0 +I (113244) example: new speed:399.000000 +I (113254) example: expect speed: 0.000000 real_pulses:0 +I (113254) example: new speed:399.000000 +I (113264) example: expect speed: 0.000000 real_pulses:0 +I (113274) example: new speed:399.000000 +I (113274) example: expect speed: 0.000000 real_pulses:0 +I (113274) example: new speed:399.000000 +I (113284) example: expect speed: 0.000000 real_pulses:0 +I (113284) example: new speed:399.000000 +I (113294) example: expect speed: 0.000000 real_pulses:0 +I (113294) example: new speed:399.000000 +I (113304) example: expect speed: 0.000000 real_pulses:0 +I (113314) example: new speed:399.000000 +I (113314) example: expect speed: 0.000000 real_pulses:0 +I (113314) example: new speed:399.000000 +I (113324) example: expect speed: 0.000000 real_pulses:0 +I (113324) example: new speed:399.000000 +I (113334) example: expect speed: 0.000000 real_pulses:0 +I (113334) example: new speed:399.000000 +I (113344) example: expect speed: 0.000000 real_pulses:0 +I (113344) example: new speed:399.000000 +I (113354) example: expect speed: 0.000000 real_pulses:0 +I (113364) example: new speed:399.000000 +I (113364) example: expect speed: 0.000000 real_pulses:0 +I (113374) example: new speed:399.000000 +I (113374) example: expect speed: 0.000000 real_pulses:0 +I (113374) example: new speed:399.000000 +I (113384) example: expect speed: 0.000000 real_pulses:0 +I (113384) example: new speed:399.000000 +I (113394) example: expect speed: 0.000000 real_pulses:0 +I (113394) example: new speed:399.000000 +I (113404) example: expect speed: 0.000000 real_pulses:0 +I (113404) example: new speed:399.000000 +I (113414) example: expect speed: 0.000000 real_pulses:0 +I (113414) example: new speed:399.000000 +I (113424) example: expect speed: 0.000000 real_pulses:0 +I (113424) example: new speed:399.000000 +I (113434) example: expect speed: 0.000000 real_pulses:0 +I (113434) example: new speed:399.000000 +I (113444) example: expect speed: 0.000000 real_pulses:0 +I (113444) example: new speed:399.000000 +I (113454) example: expect speed: 0.000000 real_pulses:0 +I (113454) example: new speed:399.000000 +I (113464) example: expect speed: 0.000000 real_pulses:0 +I (113464) example: new speed:399.000000 +I (113474) example: expect speed: 0.000000 real_pulses:0 +I (113474) example: new speed:399.000000 +I (113484) example: expect speed: 0.000000 real_pulses:0 +I (113484) example: new speed:399.000000 +I (113494) example: expect speed: 0.000000 real_pulses:0 +I (113494) example: new speed:399.000000 +I (113504) example: expect speed: 0.000000 real_pulses:0 +I (113504) example: new speed:399.000000 +I (113514) example: expect speed: 0.000000 real_pulses:0 +I (113514) example: new speed:399.000000 +I (113524) example: expect speed: 0.000000 real_pulses:0 +I (113524) example: new speed:399.000000 +I (113534) example: expect speed: 0.000000 real_pulses:0 +I (113534) example: new speed:399.000000 +I (113544) example: expect speed: 0.000000 real_pulses:0 +I (113544) example: new speed:399.000000 +I (113554) example: expect speed: 0.000000 real_pulses:0 +I (113554) example: new speed:399.000000 +I (113564) example: expect speed: 0.000000 real_pulses:0 +I (113564) example: new speed:399.000000 +I (113574) example: expect speed: 0.000000 real_pulses:0 +I (113574) example: new speed:399.000000 +I (113584) example: expect speed: 0.000000 real_pulses:0 +I (113584) example: new speed:399.000000 +I (113594) example: expect speed: 0.000000 real_pulses:0 +I (113594) example: new speed:399.000000 +I (113604) example: expect speed: 0.000000 real_pulses:0 +I (113604) example: new speed:399.000000 +I (113614) example: expect speed: 0.000000 real_pulses:0 +I (113614) example: new speed:399.000000 +I (113624) example: expect speed: 0.000000 real_pulses:0 +I (113624) example: new speed:399.000000 +I (113634) example: expect speed: 0.000000 real_pulses:0 +I (113634) example: new speed:399.000000 +I (113644) example: expect speed: 0.000000 real_pulses:0 +I (113644) example: new speed:399.000000 +I (113654) example: expect speed: 0.000000 real_pulses:0 +I (113654) example: new speed:399.000000 +I (113664) example: expect speed: 0.000000 real_pulses:0 +I (113664) example: new speed:399.000000 +I (113674) example: expect speed: 0.000000 real_pulses:0 +I (113674) example: new speed:399.000000 +I (113684) example: expect speed: 0.000000 real_pulses:0 +I (113684) example: new speed:399.000000 +I (113694) example: expect speed: 0.000000 real_pulses:0 +I (113694) example: new speed:399.000000 +I (113704) example: expect speed: 0.000000 real_pulses:0 +I (113704) example: new speed:399.000000 +I (113714) example: expect speed: 0.000000 real_pulses:0 +I (113714) example: new speed:399.000000 +I (113724) example: expect speed: 0.000000 real_pulses:0 +I (113724) example: new speed:399.000000 +I (113734) example: expect speed: 0.000000 real_pulses:0 +I (113734) example: new speed:399.000000 +I (113744) example: expect speed: 0.000000 real_pulses:0 +I (113744) example: new speed:399.000000 +I (113754) example: expect speed: 0.000000 real_pulses:0 +I (113754) example: new speed:399.000000 +I (113764) example: expect speed: 0.000000 real_pulses:0 +I (113764) example: new speed:399.000000 +I (113774) example: expect speed: 0.000000 real_pulses:0 +I (113774) example: new speed:399.000000 +I (113784) example: expect speed: 0.000000 real_pulses:0 +I (113784) example: new speed:399.000000 +I (113794) example: expect speed: 0.000000 real_pulses:0 +I (113794) example: new speed:399.000000 +I (113804) example: expect speed: 0.000000 real_pulses:0 +I (113804) example: new speed:399.000000 +I (113814) example: expect speed: 0.000000 real_pulses:0 +I (113814) example: new speed:399.000000 +I (113824) example: expect speed: 0.000000 real_pulses:0 +I (113824) example: new speed:399.000000 +I (113834) example: expect speed: 0.000000 real_pulses:0 +I (113834) example: new speed:399.000000 +I (113844) example: expect speed: 0.000000 real_pulses:0 +I (113844) example: new speed:399.000000 +I (113854) example: expect speed: 0.000000 real_pulses:0 +I (113854) example: new speed:399.000000 +I (113864) example: expect speed: 0.000000 real_pulses:0 +I (113864) example: new speed:399.000000 +I (113874) example: expect speed: 0.000000 real_pulses:0 +I (113874) example: new speed:399.000000 +I (113884) example: expect speed: 0.000000 real_pulses:0 +I (113884) example: new speed:399.000000 +I (113894) example: expect speed: 0.000000 real_pulses:0 +I (113894) example: new speed:399.000000 +I (113904) example: expect speed: 0.000000 real_pulses:0 +I (113904) example: new speed:399.000000 +I (113914) example: expect speed: 0.000000 real_pulses:0 +I (113914) example: new speed:399.000000 +I (113924) example: expect speed: 0.000000 real_pulses:0 +I (113924) example: new speed:399.000000 +I (113934) example: expect speed: 0.000000 real_pulses:0 +I (113934) example: new speed:399.000000 +I (113944) example: expect speed: 0.000000 real_pulses:0 +I (113944) example: new speed:399.000000 +I (113954) example: expect speed: 0.000000 real_pulses:0 +I (113954) example: new speed:399.000000 +I (113964) example: expect speed: 0.000000 real_pulses:0 +I (113964) example: new speed:399.000000 +I (113974) example: expect speed: 0.000000 real_pulses:0 +I (113974) example: new speed:399.000000 +I (113984) example: expect speed: 0.000000 real_pulses:0 +I (113984) example: new speed:399.000000 +I (113994) example: expect speed: 0.000000 real_pulses:0 +I (113994) example: new speed:399.000000 +I (114004) example: expect speed: 0.000000 real_pulses:0 +I (114004) example: new speed:399.000000 +I (114014) example: expect speed: 0.000000 real_pulses:0 +I (114014) example: new speed:399.000000 +I (114024) example: expect speed: 0.000000 real_pulses:0 +I (114024) example: new speed:399.000000 +I (114034) example: expect speed: 0.000000 real_pulses:0 +I (114034) example: new speed:399.000000 +I (114044) example: expect speed: 0.000000 real_pulses:0 +I (114044) example: new speed:399.000000 +I (114054) example: expect speed: 0.000000 real_pulses:0 +I (114054) example: new speed:399.000000 +I (114064) example: expect speed: 0.000000 real_pulses:0 +I (114064) example: new speed:399.000000 +I (114074) example: expect speed: 0.000000 real_pulses:0 +I (114074) example: new speed:399.000000 +I (114084) example: expect speed: 0.000000 real_pulses:0 +I (114084) example: new speed:399.000000 +I (114094) example: expect speed: 0.000000 real_pulses:0 +I (114094) example: new speed:399.000000 +I (114104) example: expect speed: 0.000000 real_pulses:0 +I (114104) example: new speed:399.000000 +I (114114) example: expect speed: 0.000000 real_pulses:0 +I (114114) example: new speed:399.000000 +I (114124) example: expect speed: 0.000000 real_pulses:0 +I (114124) example: new speed:399.000000 +I (114134) example: expect speed: 0.000000 real_pulses:0 +I (114134) example: new speed:399.000000 +I (114144) example: expect speed: 0.000000 real_pulses:0 +I (114144) example: new speed:399.000000 +I (114154) example: expect speed: 0.000000 real_pulses:0 +I (114154) example: new speed:399.000000 +I (114164) example: expect speed: 0.000000 real_pulses:0 +I (114164) example: new speed:399.000000 +I (114174) example: expect speed: 0.000000 real_pulses:0 +I (114174) example: new speed:399.000000 +I (114184) example: expect speed: 0.000000 real_pulses:0 +I (114184) example: new speed:399.000000 +I (114194) example: expect speed: 0.000000 real_pulses:0 +I (114194) example: new speed:399.000000 +I (114204) example: expect speed: 0.000000 real_pulses:0 +I (114204) example: new speed:399.000000 +I (114214) example: expect speed: 0.000000 real_pulses:0 +I (114214) example: new speed:399.000000 +I (114224) example: expect speed: 0.000000 real_pulses:0 +I (114234) example: new speed:399.000000 +I (114234) modbus tcp: ModBusSlave_recv() +I (114234) modbus: ModbusSlaveProcess() +I (114234) modbus: check id... +I (114234) modbus: ok +I (114234) modbus: add: 0, length: 10 +I (114234) modbus: Read Holding Registers +I (114234) example: expect speed: 0.000000 real_pulses:0 +I (114244) example: new speed:399.000000 +I (114244) example: expect speed: 0.000000 real_pulses:0 +I (114244) example: new speed:399.000000 +I (114254) example: expect speed: 0.000000 real_pulses:0 +I (114254) example: new speed:399.000000 +I (114264) example: expect speed: 0.000000 real_pulses:0 +I (114264) example: new speed:399.000000 +I (114274) example: expect speed: 0.000000 real_pulses:0 +I (114274) example: new speed:399.000000 +I (114284) example: expect speed: 0.000000 real_pulses:0 +I (114284) example: new speed:399.000000 +I (114294) example: expect speed: 0.000000 real_pulses:0 +I (114294) example: new speed:399.000000 +I (114304) example: expect speed: 0.000000 real_pulses:0 +I (114304) example: new speed:399.000000 +I (114314) example: expect speed: 0.000000 real_pulses:0 +I (114314) example: new speed:399.000000 +I (114324) example: expect speed: 0.000000 real_pulses:0 +I (114324) example: new speed:399.000000 +I (114334) example: expect speed: 0.000000 real_pulses:0 +I (114344) example: new speed:399.000000 +I (114344) example: expect speed: 0.000000 real_pulses:0 +I (114354) example: new speed:399.000000 +I (114354) example: expect speed: 0.000000 real_pulses:0 +I (114364) example: new speed:399.000000 +I (114364) example: expect speed: 0.000000 real_pulses:0 +I (114364) example: new speed:399.000000 +I (114374) example: expect speed: 0.000000 real_pulses:0 +I (114374) example: new speed:399.000000 +I (114384) example: expect speed: 0.000000 real_pulses:0 +I (114384) example: new speed:399.000000 +I (114394) example: expect speed: 0.000000 real_pulses:0 +I (114394) example: new speed:399.000000 +I (114404) example: expect speed: 0.000000 real_pulses:0 +I (114414) example: new speed:399.000000 +I (114414) example: expect speed: 0.000000 real_pulses:0 +I (114414) example: new speed:399.000000 +I (114424) example: expect speed: 0.000000 real_pulses:0 +I (114434) example: new speed:399.000000 +I (114434) example: expect speed: 0.000000 real_pulses:0 +I (114434) example: new speed:399.000000 +I (114444) example: expect speed: 0.000000 real_pulses:0 +I (114444) example: new speed:399.000000 +I (114454) example: expect speed: 0.000000 real_pulses:0 +I (114454) example: new speed:399.000000 +I (114464) example: expect speed: 0.000000 real_pulses:0 +I (114464) example: new speed:399.000000 +I (114474) example: expect speed: 0.000000 real_pulses:0 +I (114474) example: new speed:399.000000 +I (114484) example: expect speed: 0.000000 real_pulses:0 +I (114484) example: new speed:399.000000 +I (114494) example: expect speed: 0.000000 real_pulses:0 +I (114494) example: new speed:399.000000 +I (114504) example: expect speed: 0.000000 real_pulses:0 +I (114504) example: new speed:399.000000 +I (114514) example: expect speed: 0.000000 real_pulses:0 +I (114514) example: new speed:399.000000 +I (114524) example: expect speed: 0.000000 real_pulses:0 +I (114524) example: new speed:399.000000 +I (114534) example: expect speed: 0.000000 real_pulses:0 +I (114534) example: new speed:399.000000 +I (114544) example: expect speed: 0.000000 real_pulses:0 +I (114544) example: new speed:399.000000 +I (114554) example: expect speed: 0.000000 real_pulses:0 +I (114554) example: new speed:399.000000 +I (114564) example: expect speed: 0.000000 real_pulses:0 +I (114564) example: new speed:399.000000 +I (114574) example: expect speed: 0.000000 real_pulses:0 +I (114574) example: new speed:399.000000 +I (114584) example: expect speed: 0.000000 real_pulses:0 +I (114584) example: new speed:399.000000 +I (114594) example: expect speed: 0.000000 real_pulses:0 +I (114594) example: new speed:399.000000 +I (114604) example: expect speed: 0.000000 real_pulses:0 +I (114604) example: new speed:399.000000 +I (114614) example: expect speed: 0.000000 real_pulses:0 +I (114614) example: new speed:399.000000 +I (114624) example: expect speed: 0.000000 real_pulses:0 +I (114624) example: new speed:399.000000 +I (114634) example: expect speed: 0.000000 real_pulses:0 +I (114634) example: new speed:399.000000 +I (114644) example: expect speed: 0.000000 real_pulses:0 +I (114644) example: new speed:399.000000 +I (114654) example: expect speed: 0.000000 real_pulses:0 +I (114654) example: new speed:399.000000 +I (114664) example: expect speed: 0.000000 real_pulses:0 +I (114664) example: new speed:399.000000 +I (114674) example: expect speed: 0.000000 real_pulses:0 +I (114674) example: new speed:399.000000 +I (114684) example: expect speed: 0.000000 real_pulses:0 +I (114684) example: new speed:399.000000 +I (114694) example: expect speed: 0.000000 real_pulses:0 +I (114694) example: new speed:399.000000 +I (114704) example: expect speed: 0.000000 real_pulses:0 +I (114704) example: new speed:399.000000 +I (114714) example: expect speed: 0.000000 real_pulses:0 +I (114714) example: new speed:399.000000 +I (114724) example: expect speed: 0.000000 real_pulses:0 +I (114724) example: new speed:399.000000 +I (114734) example: expect speed: 0.000000 real_pulses:0 +I (114734) example: new speed:399.000000 +I (114744) example: expect speed: 0.000000 real_pulses:0 +I (114744) example: new speed:399.000000 +I (114754) example: expect speed: 0.000000 real_pulses:0 +I (114754) example: new speed:399.000000 +I (114764) example: expect speed: 0.000000 real_pulses:0 +I (114764) example: new speed:399.000000 +I (114774) example: expect speed: 0.000000 real_pulses:0 +I (114774) example: new speed:399.000000 +I (114784) example: expect speed: 0.000000 real_pulses:0 +I (114784) example: new speed:399.000000 +I (114794) example: expect speed: 0.000000 real_pulses:0 +I (114794) example: new speed:399.000000 +I (114804) example: expect speed: 0.000000 real_pulses:0 +I (114804) example: new speed:399.000000 +I (114814) example: expect speed: 0.000000 real_pulses:0 +I (114814) example: new speed:399.000000 +I (114824) example: expect speed: 0.000000 real_pulses:0 +I (114824) example: new speed:399.000000 +I (114834) example: expect speed: 0.000000 real_pulses:0 +I (114834) example: new speed:399.000000 +I (114844) example: expect speed: 0.000000 real_pulses:0 +I (114844) example: new speed:399.000000 +I (114854) example: expect speed: 0.000000 real_pulses:0 +I (114854) example: new speed:399.000000 +I (114864) example: expect speed: 0.000000 real_pulses:0 +I (114864) example: new speed:399.000000 +I (114874) example: expect speed: 0.000000 real_pulses:0 +I (114874) example: new speed:399.000000 +I (114884) example: expect speed: 0.000000 real_pulses:0 +I (114884) example: new speed:399.000000 +I (114894) example: expect speed: 0.000000 real_pulses:0 +I (114894) example: new speed:399.000000 +I (114904) example: expect speed: 0.000000 real_pulses:0 +I (114904) example: new speed:399.000000 +I (114914) example: expect speed: 0.000000 real_pulses:0 +I (114914) example: new speed:399.000000 +I (114924) example: expect speed: 0.000000 real_pulses:0 +I (114924) example: new speed:399.000000 +I (114934) example: expect speed: 0.000000 real_pulses:0 +I (114934) example: new speed:399.000000 +I (114944) example: expect speed: 0.000000 real_pulses:0 +I (114944) example: new speed:399.000000 +I (114954) example: expect speed: 0.000000 real_pulses:0 +I (114954) example: new speed:399.000000 +I (114964) example: expect speed: 0.000000 real_pulses:0 +I (114964) example: new speed:399.000000 +I (114974) example: expect speed: 0.000000 real_pulses:0 +I (114974) example: new speed:399.000000 +I (114984) example: expect speed: 0.000000 real_pulses:0 +I (114984) example: new speed:399.000000 +I (114994) example: expect speed: 0.000000 real_pulses:0 +I (114994) example: new speed:399.000000 +I (115004) example: expect speed: 0.000000 real_pulses:0 +I (115004) example: new speed:399.000000 +I (115014) example: expect speed: 0.000000 real_pulses:0 +I (115014) example: new speed:399.000000 +I (115024) example: expect speed: 0.000000 real_pulses:0 +I (115024) example: new speed:399.000000 +I (115034) example: expect speed: 0.000000 real_pulses:0 +I (115034) example: new speed:399.000000 +I (115044) example: expect speed: 0.000000 real_pulses:0 +I (115044) example: new speed:399.000000 +I (115054) example: expect speed: 0.000000 real_pulses:0 +I (115054) example: new speed:399.000000 +I (115064) example: expect speed: 0.000000 real_pulses:0 +I (115064) example: new speed:399.000000 +I (115074) example: expect speed: 0.000000 real_pulses:0 +I (115074) example: new speed:399.000000 +I (115084) example: expect speed: 0.000000 real_pulses:0 +I (115084) example: new speed:399.000000 +I (115094) example: expect speed: 0.000000 real_pulses:0 +I (115094) example: new speed:399.000000 +I (115104) example: expect speed: 0.000000 real_pulses:0 +I (115104) example: new speed:399.000000 +I (115114) example: expect speed: 0.000000 real_pulses:0 +I (115114) example: new speed:399.000000 +I (115124) example: expect speed: 0.000000 real_pulses:0 +I (115124) example: new speed:399.000000 +I (115134) example: expect speed: 0.000000 real_pulses:0 +I (115134) example: new speed:399.000000 +I (115144) example: expect speed: 0.000000 real_pulses:0 +I (115144) example: new speed:399.000000 +I (115154) example: expect speed: 0.000000 real_pulses:0 +I (115154) example: new speed:399.000000 +I (115164) example: expect speed: 0.000000 real_pulses:0 +I (115164) example: new speed:399.000000 +I (115174) example: expect speed: 0.000000 real_pulses:0 +I (115174) example: new speed:399.000000 +I (115184) example: expect speed: 0.000000 real_pulses:0 +I (115184) example: new speed:399.000000 +I (115194) example: expect speed: 0.000000 real_pulses:0 +I (115194) example: new speed:399.000000 +I (115204) example: expect speed: 0.000000 real_pulses:0 +I (115204) example: new speed:399.000000 +I (115214) example: expect speed: 0.000000 real_pulses:0 +I (115214) example: new speed:399.000000 +I (115224) example: expect speed: 0.000000 real_pulses:0 +I (115224) example: new speed:399.000000 +I (115234) example: expect speed: 0.000000 real_pulses:0 +I (115234) example: new speed:399.000000 +I (115244) example: expect speed: 0.000000 real_pulses:0 +I (115254) example: new speed:399.000000 +I (115254) modbus tcp: ModBusSlave_recv() +I (115254) modbus: ModbusSlaveProcess() +I (115254) modbus: check id... +I (115254) modbus: ok +I (115254) modbus: add: 0, length: 10 +I (115254) modbus: Read Holding Registers +I (115254) example: expect speed: 0.000000 real_pulses:0 +I (115264) example: new speed:399.000000 +I (115264) example: expect speed: 0.000000 real_pulses:0 +I (115264) example: new speed:399.000000 +I (115274) example: expect speed: 0.000000 real_pulses:0 +I (115274) example: new speed:399.000000 +I (115284) example: expect speed: 0.000000 real_pulses:0 +I (115284) example: new speed:399.000000 +I (115294) example: expect speed: 0.000000 real_pulses:0 +I (115294) example: new speed:399.000000 +I (115304) example: expect speed: 0.000000 real_pulses:0 +I (115314) example: new speed:399.000000 +I (115314) example: expect speed: 0.000000 real_pulses:0 +I (115314) example: new speed:399.000000 +I (115324) example: expect speed: 0.000000 real_pulses:0 +I (115324) example: new speed:399.000000 +I (115334) example: expect speed: 0.000000 real_pulses:0 +I (115334) example: new speed:399.000000 +I (115344) example: expect speed: 0.000000 real_pulses:0 +I (115344) example: new speed:399.000000 +I (115354) example: expect speed: 0.000000 real_pulses:0 +I (115364) example: new speed:399.000000 +I (115364) example: expect speed: 0.000000 real_pulses:0 +I (115374) example: new speed:399.000000 +I (115374) example: expect speed: 0.000000 real_pulses:0 +I (115374) example: new speed:399.000000 +I (115384) example: expect speed: 0.000000 real_pulses:0 +I (115384) example: new speed:399.000000 +I (115394) example: expect speed: 0.000000 real_pulses:0 +I (115394) example: new speed:399.000000 +I (115404) example: expect speed: 0.000000 real_pulses:0 +I (115404) example: new speed:399.000000 +I (115414) example: expect speed: 0.000000 real_pulses:0 +I (115424) example: new speed:399.000000 +I (115424) example: expect speed: 0.000000 real_pulses:0 +I (115424) example: new speed:399.000000 +I (115434) example: expect speed: 0.000000 real_pulses:0 +I (115434) example: new speed:399.000000 +I (115444) example: expect speed: 0.000000 real_pulses:0 +I (115444) example: new speed:399.000000 +I (115454) example: expect speed: 0.000000 real_pulses:0 +I (115454) example: new speed:399.000000 +I (115464) example: expect speed: 0.000000 real_pulses:0 +I (115464) example: new speed:399.000000 +I (115474) example: expect speed: 0.000000 real_pulses:0 +I (115474) example: new speed:399.000000 +I (115484) example: expect speed: 0.000000 real_pulses:0 +I (115484) example: new speed:399.000000 +I (115494) example: expect speed: 0.000000 real_pulses:0 +I (115494) example: new speed:399.000000 +I (115504) example: expect speed: 0.000000 real_pulses:0 +I (115504) example: new speed:399.000000 +I (115514) example: expect speed: 0.000000 real_pulses:0 +I (115514) example: new speed:399.000000 +I (115524) example: expect speed: 0.000000 real_pulses:0 +I (115524) example: new speed:399.000000 +I (115534) example: expect speed: 0.000000 real_pulses:0 +I (115534) example: new speed:399.000000 +I (115544) example: expect speed: 0.000000 real_pulses:0 +I (115544) example: new speed:399.000000 +I (115554) example: expect speed: 0.000000 real_pulses:0 +I (115554) example: new speed:399.000000 +I (115564) example: expect speed: 0.000000 real_pulses:0 +I (115564) example: new speed:399.000000 +I (115574) example: expect speed: 0.000000 real_pulses:0 +I (115574) example: new speed:399.000000 +I (115584) example: expect speed: 0.000000 real_pulses:0 +I (115584) example: new speed:399.000000 +I (115594) example: expect speed: 0.000000 real_pulses:0 +I (115594) example: new speed:399.000000 +I (115604) example: expect speed: 0.000000 real_pulses:0 +I (115604) example: new speed:399.000000 +I (115614) example: expect speed: 0.000000 real_pulses:0 +I (115614) example: new speed:399.000000 +I (115624) example: expect speed: 0.000000 real_pulses:0 +I (115624) example: new speed:399.000000 +I (115634) example: expect speed: 0.000000 real_pulses:0 +I (115634) example: new speed:399.000000 +I (115644) example: expect speed: 0.000000 real_pulses:0 +I (115644) example: new speed:399.000000 +I (115654) example: expect speed: 0.000000 real_pulses:0 +I (115654) example: new speed:399.000000 +I (115664) example: expect speed: 0.000000 real_pulses:0 +I (115664) example: new speed:399.000000 +I (115674) example: expect speed: 0.000000 real_pulses:0 +I (115674) example: new speed:399.000000 +I (115684) example: expect speed: 0.000000 real_pulses:0 +I (115684) example: new speed:399.000000 +I (115694) example: expect speed: 0.000000 real_pulses:0 +I (115694) example: new speed:399.000000 +I (115704) example: expect speed: 0.000000 real_pulses:0 +I (115704) example: new speed:399.000000 +I (115714) example: expect speed: 0.000000 real_pulses:0 +I (115714) example: new speed:399.000000 +I (115724) example: expect speed: 0.000000 real_pulses:0 +I (115724) example: new speed:399.000000 +I (115734) example: expect speed: 0.000000 real_pulses:0 +I (115734) example: new speed:399.000000 +I (115744) example: expect speed: 0.000000 real_pulses:0 +I (115744) example: new speed:399.000000 +I (115754) example: expect speed: 0.000000 real_pulses:0 +I (115754) example: new speed:399.000000 +I (115764) example: expect speed: 0.000000 real_pulses:0 +I (115764) example: new speed:399.000000 +I (115774) example: expect speed: 0.000000 real_pulses:0 +I (115774) example: new speed:399.000000 +I (115784) example: expect speed: 0.000000 real_pulses:0 +I (115784) example: new speed:399.000000 +I (115794) example: expect speed: 0.000000 real_pulses:0 +I (115794) example: new speed:399.000000 +I (115804) example: expect speed: 0.000000 real_pulses:0 +I (115804) example: new speed:399.000000 +I (115814) example: expect speed: 0.000000 real_pulses:0 +I (115814) example: new speed:399.000000 +I (115824) example: expect speed: 0.000000 real_pulses:0 +I (115824) example: new speed:399.000000 +I (115834) example: expect speed: 0.000000 real_pulses:0 +I (115834) example: new speed:399.000000 +I (115844) example: expect speed: 0.000000 real_pulses:0 +I (115844) example: new speed:399.000000 +I (115854) example: expect speed: 0.000000 real_pulses:0 +I (115854) example: new speed:399.000000 +I (115864) example: expect speed: 0.000000 real_pulses:0 +I (115864) example: new speed:399.000000 +I (115874) example: expect speed: 0.000000 real_pulses:0 +I (115874) example: new speed:399.000000 +I (115884) example: expect speed: 0.000000 real_pulses:0 +I (115884) example: new speed:399.000000 +I (115894) example: expect speed: 0.000000 real_pulses:0 +I (115894) example: new speed:399.000000 +I (115904) example: expect speed: 0.000000 real_pulses:0 +I (115904) example: new speed:399.000000 +I (115914) example: expect speed: 0.000000 real_pulses:0 +I (115914) example: new speed:399.000000 +I (115924) example: expect speed: 0.000000 real_pulses:0 +I (115924) example: new speed:399.000000 +I (115934) example: expect speed: 0.000000 real_pulses:0 +I (115934) example: new speed:399.000000 +I (115944) example: expect speed: 0.000000 real_pulses:0 +I (115944) example: new speed:399.000000 +I (115954) example: expect speed: 0.000000 real_pulses:0 +I (115954) example: new speed:399.000000 +I (115964) example: expect speed: 0.000000 real_pulses:0 +I (115964) example: new speed:399.000000 +I (115974) example: expect speed: 0.000000 real_pulses:0 +I (115974) example: new speed:399.000000 +I (115984) example: expect speed: 0.000000 real_pulses:0 +I (115984) example: new speed:399.000000 +I (115994) example: expect speed: 0.000000 real_pulses:0 +I (115994) example: new speed:399.000000 +I (116004) example: expect speed: 0.000000 real_pulses:0 +I (116004) example: new speed:399.000000 +I (116014) example: expect speed: 0.000000 real_pulses:0 +I (116014) example: new speed:399.000000 +I (116024) example: expect speed: 0.000000 real_pulses:0 +I (116024) example: new speed:399.000000 +I (116034) example: expect speed: 0.000000 real_pulses:0 +I (116034) example: new speed:399.000000 +I (116044) example: expect speed: 0.000000 real_pulses:0 +I (116044) example: new speed:399.000000 +I (116054) example: expect speed: 0.000000 real_pulses:0 +I (116054) example: new speed:399.000000 +I (116064) example: expect speed: 0.000000 real_pulses:0 +I (116064) example: new speed:399.000000 +I (116074) example: expect speed: 0.000000 real_pulses:0 +I (116074) example: new speed:399.000000 +I (116084) example: expect speed: 0.000000 real_pulses:0 +I (116084) example: new speed:399.000000 +I (116094) example: expect speed: 0.000000 real_pulses:0 +I (116094) example: new speed:399.000000 +I (116104) example: expect speed: 0.000000 real_pulses:0 +I (116104) example: new speed:399.000000 +I (116114) example: expect speed: 0.000000 real_pulses:0 +I (116114) example: new speed:399.000000 +I (116124) example: expect speed: 0.000000 real_pulses:0 +I (116124) example: new speed:399.000000 +I (116134) example: expect speed: 0.000000 real_pulses:0 +I (116134) example: new speed:399.000000 +I (116144) example: expect speed: 0.000000 real_pulses:0 +I (116144) example: new speed:399.000000 +I (116154) example: expect speed: 0.000000 real_pulses:0 +I (116154) example: new speed:399.000000 +I (116164) example: expect speed: 0.000000 real_pulses:0 +I (116164) example: new speed:399.000000 +I (116174) example: expect speed: 0.000000 real_pulses:0 +I (116174) example: new speed:399.000000 +I (116184) example: expect speed: 0.000000 real_pulses:0 +I (116184) example: new speed:399.000000 +I (116194) example: expect speed: 0.000000 real_pulses:0 +I (116194) example: new speed:399.000000 +I (116204) example: expect speed: 0.000000 real_pulses:0 +I (116204) example: new speed:399.000000 +I (116214) example: expect speed: 0.000000 real_pulses:0 +I (116214) example: new speed:399.000000 +I (116224) example: expect speed: 0.000000 real_pulses:0 +I (116224) example: new speed:399.000000 +I (116234) example: expect speed: 0.000000 real_pulses:0 +I (116234) example: new speed:399.000000 +I (116244) example: expect speed: 0.000000 real_pulses:0 +I (116244) example: new speed:399.000000 +I (116254) example: expect speed: 0.000000 real_pulses:0 +I (116254) example: new speed:399.000000 +I (116264) example: expect speed: 0.000000 real_pulses:0 +I (116264) example: new speed:399.000000 +I (116274) example: expect speed: 0.000000 real_pulses:0 +I (116284) example: new speed:399.000000 +I (116284) example: expect speed: 0.000000 real_pulses:0 +I (116294) example: new speed:399.000000 +I (116294) example: expect speed: 0.000000 real_pulses:0 +I (116304) example: new speed:399.000000 +I (116304) example: expect speed: 0.000000 real_pulses:0 +I (116314) example: new speed:399.000000 +I (116314) example: expect speed: 0.000000 real_pulses:0 +I (116314) example: new speed:399.000000 +I (116324) modbus tcp: ModBusSlave_recv() +I (116324) modbus: ModbusSlaveProcess() +I (116324) modbus: check id... +I (116324) example: expect speed: 0.000000 real_pulses:0 +I (116324) modbus: ok +I (116324) example: new speed:399.000000 +I (116324) modbus: add: 0, length: 10 +I (116334) modbus: Read Holding Registers +I (116334) example: expect speed: 0.000000 real_pulses:0 +I (116344) example: new speed:399.000000 +I (116344) example: expect speed: 0.000000 real_pulses:0 +I (116344) example: new speed:399.000000 +I (116354) example: expect speed: 0.000000 real_pulses:0 +I (116354) example: new speed:399.000000 +I (116364) example: expect speed: 0.000000 real_pulses:0 +I (116364) example: new speed:399.000000 +I (116374) example: expect speed: 0.000000 real_pulses:0 +I (116374) example: new speed:399.000000 +I (116384) example: expect speed: 0.000000 real_pulses:0 +I (116384) example: new speed:399.000000 +I (116394) example: expect speed: 0.000000 real_pulses:0 +I (116404) example: new speed:399.000000 +I (116404) example: expect speed: 0.000000 real_pulses:0 +I (116404) example: new speed:399.000000 +I (116414) example: expect speed: 0.000000 real_pulses:0 +I (116414) example: new speed:399.000000 +I (116424) example: expect speed: 0.000000 real_pulses:0 +I (116424) example: new speed:399.000000 +I (116434) example: expect speed: 0.000000 real_pulses:0 +I (116434) example: new speed:399.000000 +I (116444) example: expect speed: 0.000000 real_pulses:0 +I (116444) example: new speed:399.000000 +I (116454) example: expect speed: 0.000000 real_pulses:0 +I (116454) example: new speed:399.000000 +I (116464) example: expect speed: 0.000000 real_pulses:0 +I (116464) example: new speed:399.000000 +I (116474) example: expect speed: 0.000000 real_pulses:0 +I (116484) example: new speed:399.000000 +I (116484) example: expect speed: 0.000000 real_pulses:0 +I (116494) example: new speed:399.000000 +I (116494) example: expect speed: 0.000000 real_pulses:0 +I (116494) example: new speed:399.000000 +I (116504) example: expect speed: 0.000000 real_pulses:0 +I (116504) example: new speed:399.000000 +I (116514) example: expect speed: 0.000000 real_pulses:0 +I (116514) example: new speed:399.000000 +I (116524) example: expect speed: 0.000000 real_pulses:0 +I (116524) example: new speed:399.000000 +I (116534) example: expect speed: 0.000000 real_pulses:0 +I (116544) example: new speed:399.000000 +I (116544) example: expect speed: 0.000000 real_pulses:0 +I (116544) example: new speed:399.000000 +I (116554) example: expect speed: 0.000000 real_pulses:0 +I (116554) example: new speed:399.000000 +I (116564) example: expect speed: 0.000000 real_pulses:0 +I (116564) example: new speed:399.000000 +I (116574) example: expect speed: 0.000000 real_pulses:0 +I (116574) example: new speed:399.000000 +I (116584) example: expect speed: 0.000000 real_pulses:0 +I (116584) example: new speed:399.000000 +I (116594) example: expect speed: 0.000000 real_pulses:0 +I (116594) example: new speed:399.000000 +I (116604) example: expect speed: 0.000000 real_pulses:0 +I (116604) example: new speed:399.000000 +I (116614) example: expect speed: 0.000000 real_pulses:0 +I (116614) example: new speed:399.000000 +I (116624) example: expect speed: 0.000000 real_pulses:0 +I (116624) example: new speed:399.000000 +I (116634) example: expect speed: 0.000000 real_pulses:0 +I (116634) example: new speed:399.000000 +I (116644) example: expect speed: 0.000000 real_pulses:0 +I (116644) example: new speed:399.000000 +I (116654) example: expect speed: 0.000000 real_pulses:0 +I (116654) example: new speed:399.000000 +I (116664) example: expect speed: 0.000000 real_pulses:0 +I (116664) example: new speed:399.000000 +I (116674) example: expect speed: 0.000000 real_pulses:0 +I (116674) example: new speed:399.000000 +I (116684) example: expect speed: 0.000000 real_pulses:0 +I (116684) example: new speed:399.000000 +I (116694) example: expect speed: 0.000000 real_pulses:0 +I (116694) example: new speed:399.000000 +I (116704) example: expect speed: 0.000000 real_pulses:0 +I (116704) example: new speed:399.000000 +I (116714) example: expect speed: 0.000000 real_pulses:0 +I (116714) example: new speed:399.000000 +I (116724) example: expect speed: 0.000000 real_pulses:0 +I (116724) example: new speed:399.000000 +I (116734) example: expect speed: 0.000000 real_pulses:0 +I (116734) example: new speed:399.000000 +I (116744) example: expect speed: 0.000000 real_pulses:0 +I (116744) example: new speed:399.000000 +I (116754) example: expect speed: 0.000000 real_pulses:0 +I (116754) example: new speed:399.000000 +I (116764) example: expect speed: 0.000000 real_pulses:0 +I (116764) example: new speed:399.000000 +I (116774) example: expect speed: 0.000000 real_pulses:0 +I (116774) example: new speed:399.000000 +I (116784) example: expect speed: 0.000000 real_pulses:0 +I (116784) example: new speed:399.000000 +I (116794) example: expect speed: 0.000000 real_pulses:0 +I (116794) example: new speed:399.000000 +I (116804) example: expect speed: 0.000000 real_pulses:0 +I (116804) example: new speed:399.000000 +I (116814) example: expect speed: 0.000000 real_pulses:0 +I (116814) example: new speed:399.000000 +I (116824) example: expect speed: 0.000000 real_pulses:0 +I (116824) example: new speed:399.000000 +I (116834) example: expect speed: 0.000000 real_pulses:0 +I (116834) example: new speed:399.000000 +I (116844) example: expect speed: 0.000000 real_pulses:0 +I (116844) example: new speed:399.000000 +I (116854) example: expect speed: 0.000000 real_pulses:0 +I (116854) example: new speed:399.000000 +I (116864) example: expect speed: 0.000000 real_pulses:0 +I (116864) example: new speed:399.000000 +I (116874) example: expect speed: 0.000000 real_pulses:0 +I (116874) example: new speed:399.000000 +I (116884) example: expect speed: 0.000000 real_pulses:0 +I (116894) example: new speed:399.000000 +I (116894) example: expect speed: 0.000000 real_pulses:0 +I (116894) example: new speed:399.000000 +I (116904) example: expect speed: 0.000000 real_pulses:0 +I (116904) example: new speed:399.000000 +I (116914) example: expect speed: 0.000000 real_pulses:0 +I (116914) example: new speed:399.000000 +I (116924) example: expect speed: 0.000000 real_pulses:0 +I (116924) example: new speed:399.000000 +I (116934) example: expect speed: 0.000000 real_pulses:0 +I (116934) example: new speed:399.000000 +I (116944) example: expect speed: 0.000000 real_pulses:0 +I (116944) example: new speed:399.000000 +I (116954) example: expect speed: 0.000000 real_pulses:0 +I (116954) example: new speed:399.000000 +I (116964) example: expect speed: 0.000000 real_pulses:0 +I (116964) example: new speed:399.000000 +I (116974) example: expect speed: 0.000000 real_pulses:0 +I (116974) example: new speed:399.000000 +I (116984) example: expect speed: 0.000000 real_pulses:0 +I (116984) example: new speed:399.000000 +I (116994) example: expect speed: 0.000000 real_pulses:0 +I (116994) example: new speed:399.000000 +I (117004) example: expect speed: 0.000000 real_pulses:0 +I (117004) example: new speed:399.000000 +I (117014) example: expect speed: 0.000000 real_pulses:0 +I (117014) example: new speed:399.000000 +I (117024) example: expect speed: 0.000000 real_pulses:0 +I (117024) example: new speed:399.000000 +I (117034) example: expect speed: 0.000000 real_pulses:0 +I (117034) example: new speed:399.000000 +I (117044) example: expect speed: 0.000000 real_pulses:0 +I (117044) example: new speed:399.000000 +I (117054) example: expect speed: 0.000000 real_pulses:0 +I (117054) example: new speed:399.000000 +I (117064) example: expect speed: 0.000000 real_pulses:0 +I (117064) example: new speed:399.000000 +I (117074) example: expect speed: 0.000000 real_pulses:0 +I (117074) example: new speed:399.000000 +I (117084) example: expect speed: 0.000000 real_pulses:0 +I (117084) example: new speed:399.000000 +I (117094) example: expect speed: 0.000000 real_pulses:0 +I (117094) example: new speed:399.000000 +I (117104) example: expect speed: 0.000000 real_pulses:0 +I (117104) example: new speed:399.000000 +I (117114) example: expect speed: 0.000000 real_pulses:0 +I (117114) example: new speed:399.000000 +I (117124) example: expect speed: 0.000000 real_pulses:0 +I (117124) example: new speed:399.000000 +I (117134) example: expect speed: 0.000000 real_pulses:0 +I (117134) example: new speed:399.000000 +I (117144) example: expect speed: 0.000000 real_pulses:0 +I (117144) example: new speed:399.000000 +I (117154) example: expect speed: 0.000000 real_pulses:0 +I (117154) example: new speed:399.000000 +I (117164) example: expect speed: 0.000000 real_pulses:0 +I (117164) example: new speed:399.000000 +I (117174) example: expect speed: 0.000000 real_pulses:0 +I (117174) example: new speed:399.000000 +I (117184) example: expect speed: 0.000000 real_pulses:0 +I (117184) example: new speed:399.000000 +I (117194) example: expect speed: 0.000000 real_pulses:0 +I (117194) example: new speed:399.000000 +I (117204) example: expect speed: 0.000000 real_pulses:0 +I (117204) example: new speed:399.000000 +I (117214) example: expect speed: 0.000000 real_pulses:0 +I (117214) example: new speed:399.000000 +I (117224) example: expect speed: 0.000000 real_pulses:0 +I (117224) example: new speed:399.000000 +I (117234) example: expect speed: 0.000000 real_pulses:0 +I (117234) example: new speed:399.000000 +I (117244) example: expect speed: 0.000000 real_pulses:0 +I (117244) example: new speed:399.000000 +I (117254) example: expect speed: 0.000000 real_pulses:0 +I (117254) example: new speed:399.000000 +I (117264) example: expect speed: 0.000000 real_pulses:0 +I (117264) example: new speed:399.000000 +I (117274) example: expect speed: 0.000000 real_pulses:0 +I (117274) example: new speed:399.000000 +I (117284) example: expect speed: 0.000000 real_pulses:0 +I (117294) example: new speed:399.000000 +I (117294) example: expect speed: 0.000000 real_pulses:0 +I (117304) example: new speed:399.000000 +I (117304) modbus tcp: ModBusSlave_recv() +I (117304) modbus: ModbusSlaveProcess() +I (117304) modbus: check id... +I (117304) modbus: ok +I (117304) modbus: add: 0, length: 10 +I (117304) modbus: Read Holding Registers +I (117304) example: expect speed: 0.000000 real_pulses:0 +I (117314) example: new speed:399.000000 +I (117314) example: expect speed: 0.000000 real_pulses:0 +I (117314) example: new speed:399.000000 +I (117324) example: expect speed: 0.000000 real_pulses:0 +I (117324) example: new speed:399.000000 +I (117334) example: expect speed: 0.000000 real_pulses:0 +I (117334) example: new speed:399.000000 +I (117344) example: expect speed: 0.000000 real_pulses:0 +I (117344) example: new speed:399.000000 +I (117354) example: expect speed: 0.000000 real_pulses:0 +I (117354) example: new speed:399.000000 +I (117364) example: expect speed: 0.000000 real_pulses:0 +I (117374) example: new speed:399.000000 +I (117374) example: expect speed: 0.000000 real_pulses:0 +I (117384) example: new speed:399.000000 +I (117384) example: expect speed: 0.000000 real_pulses:0 +I (117384) example: new speed:399.000000 +I (117394) example: expect speed: 0.000000 real_pulses:0 +I (117404) example: new speed:399.000000 +I (117404) example: expect speed: 0.000000 real_pulses:0 +I (117404) example: new speed:399.000000 +I (117414) example: expect speed: 0.000000 real_pulses:0 +I (117414) example: new speed:399.000000 +I (117424) example: expect speed: 0.000000 real_pulses:0 +I (117424) example: new speed:399.000000 +I (117434) example: expect speed: 0.000000 real_pulses:0 +I (117434) example: new speed:399.000000 +I (117444) example: expect speed: 0.000000 real_pulses:0 +I (117444) example: new speed:399.000000 +I (117454) example: expect speed: 0.000000 real_pulses:0 +I (117454) example: new speed:399.000000 +I (117464) example: expect speed: 0.000000 real_pulses:0 +I (117464) example: new speed:399.000000 +I (117474) example: expect speed: 0.000000 real_pulses:0 +I (117474) example: new speed:399.000000 +I (117484) example: expect speed: 0.000000 real_pulses:0 +I (117484) example: new speed:399.000000 +I (117494) example: expect speed: 0.000000 real_pulses:0 +I (117494) example: new speed:399.000000 +I (117504) example: expect speed: 0.000000 real_pulses:0 +I (117504) example: new speed:399.000000 +I (117514) example: expect speed: 0.000000 real_pulses:0 +I (117514) example: new speed:399.000000 +I (117524) example: expect speed: 0.000000 real_pulses:0 +I (117524) example: new speed:399.000000 +I (117534) example: expect speed: 0.000000 real_pulses:0 +I (117534) example: new speed:399.000000 +I (117544) example: expect speed: 0.000000 real_pulses:0 +I (117544) example: new speed:399.000000 +I (117554) example: expect speed: 0.000000 real_pulses:0 +I (117554) example: new speed:399.000000 +I (117564) example: expect speed: 0.000000 real_pulses:0 +I (117564) example: new speed:399.000000 +I (117574) example: expect speed: 0.000000 real_pulses:0 +I (117574) example: new speed:399.000000 +I (117584) example: expect speed: 0.000000 real_pulses:0 +I (117584) example: new speed:399.000000 +I (117594) example: expect speed: 0.000000 real_pulses:0 +I (117594) example: new speed:399.000000 +I (117604) example: expect speed: 0.000000 real_pulses:0 +I (117614) example: new speed:399.000000 +I (117614) example: expect speed: 0.000000 real_pulses:0 +I (117614) example: new speed:399.000000 +I (117624) example: expect speed: 0.000000 real_pulses:0 +I (117624) example: new speed:399.000000 +I (117634) example: expect speed: 0.000000 real_pulses:0 +I (117634) example: new speed:399.000000 +I (117644) example: expect speed: 0.000000 real_pulses:0 +I (117644) example: new speed:399.000000 +I (117654) example: expect speed: 0.000000 real_pulses:0 +I (117654) example: new speed:399.000000 +I (117664) example: expect speed: 0.000000 real_pulses:0 +I (117664) example: new speed:399.000000 +I (117674) example: expect speed: 0.000000 real_pulses:0 +I (117674) example: new speed:399.000000 +I (117684) example: expect speed: 0.000000 real_pulses:0 +I (117684) example: new speed:399.000000 +I (117694) example: expect speed: 0.000000 real_pulses:0 +I (117694) example: new speed:399.000000 +I (117704) example: expect speed: 0.000000 real_pulses:0 +I (117704) example: new speed:399.000000 +I (117714) example: expect speed: 0.000000 real_pulses:0 +I (117714) example: new speed:399.000000 +I (117724) example: expect speed: 0.000000 real_pulses:0 +I (117724) example: new speed:399.000000 +I (117734) example: expect speed: 0.000000 real_pulses:0 +I (117734) example: new speed:399.000000 +I (117744) example: expect speed: 0.000000 real_pulses:0 +I (117744) example: new speed:399.000000 +I (117754) example: expect speed: 0.000000 real_pulses:0 +I (117754) example: new speed:399.000000 +I (117764) example: expect speed: 0.000000 real_pulses:0 +I (117764) example: new speed:399.000000 +I (117774) example: expect speed: 0.000000 real_pulses:0 +I (117774) example: new speed:399.000000 +I (117784) example: expect speed: 0.000000 real_pulses:0 +I (117784) example: new speed:399.000000 +I (117794) example: expect speed: 0.000000 real_pulses:0 +I (117794) example: new speed:399.000000 +I (117804) example: expect speed: 0.000000 real_pulses:0 +I (117804) example: new speed:399.000000 +I (117814) example: expect speed: 0.000000 real_pulses:0 +I (117814) example: new speed:399.000000 +I (117824) example: expect speed: 0.000000 real_pulses:0 +I (117824) example: new speed:399.000000 +I (117834) example: expect speed: 0.000000 real_pulses:0 +I (117834) example: new speed:399.000000 +I (117844) example: expect speed: 0.000000 real_pulses:0 +I (117844) example: new speed:399.000000 +I (117854) example: expect speed: 0.000000 real_pulses:0 +I (117854) example: new speed:399.000000 +I (117864) example: expect speed: 0.000000 real_pulses:0 +I (117864) example: new speed:399.000000 +I (117874) example: expect speed: 0.000000 real_pulses:0 +I (117874) example: new speed:399.000000 +I (117884) example: expect speed: 0.000000 real_pulses:0 +I (117884) example: new speed:399.000000 +I (117894) example: expect speed: 0.000000 real_pulses:0 +I (117894) example: new speed:399.000000 +I (117904) example: expect speed: 0.000000 real_pulses:0 +I (117904) example: new speed:399.000000 +I (117914) example: expect speed: 0.000000 real_pulses:0 +I (117914) example: new speed:399.000000 +I (117924) example: expect speed: 0.000000 real_pulses:0 +I (117924) example: new speed:399.000000 +I (117934) example: expect speed: 0.000000 real_pulses:0 +I (117934) example: new speed:399.000000 +I (117944) example: expect speed: 0.000000 real_pulses:0 +I (117944) example: new speed:399.000000 +I (117954) example: expect speed: 0.000000 real_pulses:0 +I (117954) example: new speed:399.000000 +I (117964) example: expect speed: 0.000000 real_pulses:0 +I (117964) example: new speed:399.000000 +I (117974) example: expect speed: 0.000000 real_pulses:0 +I (117974) example: new speed:399.000000 +I (117984) example: expect speed: 0.000000 real_pulses:0 +I (117984) example: new speed:399.000000 +I (117994) example: expect speed: 0.000000 real_pulses:0 +I (117994) example: new speed:399.000000 +I (118004) example: expect speed: 0.000000 real_pulses:0 +I (118004) example: new speed:399.000000 +I (118014) example: expect speed: 0.000000 real_pulses:0 +I (118014) example: new speed:399.000000 +I (118024) example: expect speed: 0.000000 real_pulses:0 +I (118024) example: new speed:399.000000 +I (118034) example: expect speed: 0.000000 real_pulses:0 +I (118034) example: new speed:399.000000 +I (118044) example: expect speed: 0.000000 real_pulses:0 +I (118044) example: new speed:399.000000 +I (118054) example: expect speed: 0.000000 real_pulses:0 +I (118054) example: new speed:399.000000 +I (118064) example: expect speed: 0.000000 real_pulses:0 +I (118064) example: new speed:399.000000 +I (118074) example: expect speed: 0.000000 real_pulses:0 +I (118074) example: new speed:399.000000 +I (118084) example: expect speed: 0.000000 real_pulses:0 +I (118084) example: new speed:399.000000 +I (118094) example: expect speed: 0.000000 real_pulses:0 +I (118094) example: new speed:399.000000 +I (118104) example: expect speed: 0.000000 real_pulses:0 +I (118104) example: new speed:399.000000 +I (118114) example: expect speed: 0.000000 real_pulses:0 +I (118114) example: new speed:399.000000 +I (118124) example: expect speed: 0.000000 real_pulses:0 +I (118124) example: new speed:399.000000 +I (118134) example: expect speed: 0.000000 real_pulses:0 +I (118134) example: new speed:399.000000 +I (118144) example: expect speed: 0.000000 real_pulses:0 +I (118144) example: new speed:399.000000 +I (118154) example: expect speed: 0.000000 real_pulses:0 +I (118154) example: new speed:399.000000 +I (118164) example: expect speed: 0.000000 real_pulses:0 +I (118164) example: new speed:399.000000 +I (118174) example: expect speed: 0.000000 real_pulses:0 +I (118174) example: new speed:399.000000 +I (118184) example: expect speed: 0.000000 real_pulses:0 +I (118184) example: new speed:399.000000 +I (118194) example: expect speed: 0.000000 real_pulses:0 +I (118194) example: new speed:399.000000 +I (118204) example: expect speed: 0.000000 real_pulses:0 +I (118204) example: new speed:399.000000 +I (118214) example: expect speed: 0.000000 real_pulses:0 +I (118214) example: new speed:399.000000 +I (118224) example: expect speed: 0.000000 real_pulses:0 +I (118224) example: new speed:399.000000 +I (118234) example: expect speed: 0.000000 real_pulses:0 +I (118234) example: new speed:399.000000 +I (118244) example: expect speed: 0.000000 real_pulses:0 +I (118244) example: new speed:399.000000 +I (118254) example: expect speed: 0.000000 real_pulses:0 +I (118254) example: new speed:399.000000 +I (118264) example: expect speed: 0.000000 real_pulses:0 +I (118264) example: new speed:399.000000 +I (118274) example: expect speed: 0.000000 real_pulses:0 +I (118274) example: new speed:399.000000 +I (118284) example: expect speed: 0.000000 real_pulses:0 +I (118284) example: new speed:399.000000 +I (118294) example: expect speed: 0.000000 real_pulses:0 +I (118294) example: new speed:399.000000 +I (118304) example: expect speed: 0.000000 real_pulses:0 +I (118304) example: new speed:399.000000 +I (118314) example: expect speed: 0.000000 real_pulses:0 +I (118324) example: new speed:399.000000 +I (118324) modbus tcp: ModBusSlave_recv() +I (118324) modbus: ModbusSlaveProcess() +I (118324) modbus: check id... +I (118324) modbus: ok +I (118324) modbus: add: 0, length: 10 +I (118324) modbus: Read Holding Registers +I (118324) example: expect speed: 0.000000 real_pulses:0 +I (118334) example: new speed:399.000000 +I (118334) example: expect speed: 0.000000 real_pulses:0 +I (118334) example: new speed:399.000000 +I (118344) example: expect speed: 0.000000 real_pulses:0 +I (118344) example: new speed:399.000000 +I (118354) example: expect speed: 0.000000 real_pulses:0 +I (118354) example: new speed:399.000000 +I (118364) example: expect speed: 0.000000 real_pulses:0 +I (118364) example: new speed:399.000000 +I (118374) example: expect speed: 0.000000 real_pulses:0 +I (118374) example: new speed:399.000000 +I (118384) example: expect speed: 0.000000 real_pulses:0 +I (118384) example: new speed:399.000000 +I (118394) example: expect speed: 0.000000 real_pulses:0 +I (118394) example: new speed:399.000000 +I (118404) example: expect speed: 0.000000 real_pulses:0 +I (118404) example: new speed:399.000000 +I (118414) example: expect speed: 0.000000 real_pulses:0 +I (118414) example: new speed:399.000000 +I (118424) example: expect speed: 0.000000 real_pulses:0 +I (118434) example: new speed:399.000000 +I (118434) example: expect speed: 0.000000 real_pulses:0 +I (118444) example: new speed:399.000000 +I (118444) example: expect speed: 0.000000 real_pulses:0 +I (118444) example: new speed:399.000000 +I (118454) example: expect speed: 0.000000 real_pulses:0 +I (118454) example: new speed:399.000000 +I (118464) example: expect speed: 0.000000 real_pulses:0 +I (118464) example: new speed:399.000000 +I (118474) example: expect speed: 0.000000 real_pulses:0 +I (118474) example: new speed:399.000000 +I (118484) example: expect speed: 0.000000 real_pulses:0 +I (118484) example: new speed:399.000000 +I (118494) example: expect speed: 0.000000 real_pulses:0 +I (118494) example: new speed:399.000000 +I (118504) example: expect speed: 0.000000 real_pulses:0 +I (118504) example: new speed:399.000000 +I (118514) example: expect speed: 0.000000 real_pulses:0 +I (118514) example: new speed:399.000000 +I (118524) example: expect speed: 0.000000 real_pulses:0 +I (118524) example: new speed:399.000000 +I (118534) example: expect speed: 0.000000 real_pulses:0 +I (118534) example: new speed:399.000000 +I (118544) example: expect speed: 0.000000 real_pulses:0 +I (118544) example: new speed:399.000000 +I (118554) example: expect speed: 0.000000 real_pulses:0 +I (118554) example: new speed:399.000000 +I (118564) example: expect speed: 0.000000 real_pulses:0 +I (118564) example: new speed:399.000000 +I (118574) example: expect speed: 0.000000 real_pulses:0 +I (118574) example: new speed:399.000000 +I (118584) example: expect speed: 0.000000 real_pulses:0 +I (118584) example: new speed:399.000000 +I (118594) example: expect speed: 0.000000 real_pulses:0 +I (118594) example: new speed:399.000000 +I (118604) example: expect speed: 0.000000 real_pulses:0 +I (118604) example: new speed:399.000000 +I (118614) example: expect speed: 0.000000 real_pulses:0 +I (118614) example: new speed:399.000000 +I (118624) example: expect speed: 0.000000 real_pulses:0 +I (118624) example: new speed:399.000000 +I (118634) example: expect speed: 0.000000 real_pulses:0 +I (118634) example: new speed:399.000000 +I (118644) example: expect speed: 0.000000 real_pulses:0 +I (118644) example: new speed:399.000000 +I (118654) example: expect speed: 0.000000 real_pulses:0 +I (118654) example: new speed:399.000000 +I (118664) example: expect speed: 0.000000 real_pulses:0 +I (118664) example: new speed:399.000000 +I (118674) example: expect speed: 0.000000 real_pulses:0 +I (118674) example: new speed:399.000000 +I (118684) example: expect speed: 0.000000 real_pulses:0 +I (118684) example: new speed:399.000000 +I (118694) example: expect speed: 0.000000 real_pulses:0 +I (118694) example: new speed:399.000000 +I (118704) example: expect speed: 0.000000 real_pulses:0 +I (118704) example: new speed:399.000000 +I (118714) example: expect speed: 0.000000 real_pulses:0 +I (118714) example: new speed:399.000000 +I (118724) example: expect speed: 0.000000 real_pulses:0 +I (118724) example: new speed:399.000000 +I (118734) example: expect speed: 0.000000 real_pulses:0 +I (118734) example: new speed:399.000000 +I (118744) example: expect speed: 0.000000 real_pulses:0 +I (118744) example: new speed:399.000000 +I (118754) example: expect speed: 0.000000 real_pulses:0 +I (118754) example: new speed:399.000000 +I (118764) example: expect speed: 0.000000 real_pulses:0 +I (118764) example: new speed:399.000000 +I (118774) example: expect speed: 0.000000 real_pulses:0 +I (118774) example: new speed:399.000000 +I (118784) example: expect speed: 0.000000 real_pulses:0 +I (118784) example: new speed:399.000000 +I (118794) example: expect speed: 0.000000 real_pulses:0 +I (118794) example: new speed:399.000000 +I (118804) example: expect speed: 0.000000 real_pulses:0 +I (118804) example: new speed:399.000000 +I (118814) example: expect speed: 0.000000 real_pulses:0 +I (118814) example: new speed:399.000000 +I (118824) example: expect speed: 0.000000 real_pulses:0 +I (118824) example: new speed:399.000000 +I (118834) example: expect speed: 0.000000 real_pulses:0 +I (118834) example: new speed:399.000000 +I (118844) example: expect speed: 0.000000 real_pulses:0 +I (118844) example: new speed:399.000000 +I (118854) example: expect speed: 0.000000 real_pulses:0 +I (118854) example: new speed:399.000000 +I (118864) example: expect speed: 0.000000 real_pulses:0 +I (118864) example: new speed:399.000000 +I (118874) example: expect speed: 0.000000 real_pulses:0 +I (118874) example: new speed:399.000000 +I (118884) example: expect speed: 0.000000 real_pulses:0 +I (118884) example: new speed:399.000000 +I (118894) example: expect speed: 0.000000 real_pulses:0 +I (118894) example: new speed:399.000000 +I (118904) example: expect speed: 0.000000 real_pulses:0 +I (118904) example: new speed:399.000000 +I (118914) example: expect speed: 0.000000 real_pulses:0 +I (118914) example: new speed:399.000000 +I (118924) example: expect speed: 0.000000 real_pulses:0 +I (118924) example: new speed:399.000000 +I (118934) example: expect speed: 0.000000 real_pulses:0 +I (118934) example: new speed:399.000000 +I (118944) example: expect speed: 0.000000 real_pulses:0 +I (118944) example: new speed:399.000000 +I (118954) example: expect speed: 0.000000 real_pulses:0 +I (118954) example: new speed:399.000000 +I (118964) example: expect speed: 0.000000 real_pulses:0 +I (118964) example: new speed:399.000000 +I (118974) example: expect speed: 0.000000 real_pulses:0 +I (118974) example: new speed:399.000000 +I (118984) example: expect speed: 0.000000 real_pulses:0 +I (118984) example: new speed:399.000000 +I (118994) example: expect speed: 0.000000 real_pulses:0 +I (118994) example: new speed:399.000000 +I (119004) example: expect speed: 0.000000 real_pulses:0 +I (119004) example: new speed:399.000000 +I (119014) example: expect speed: 0.000000 real_pulses:0 +I (119014) example: new speed:399.000000 +I (119024) example: expect speed: 0.000000 real_pulses:0 +I (119024) example: new speed:399.000000 +I (119034) example: expect speed: 0.000000 real_pulses:0 +I (119034) example: new speed:399.000000 +I (119044) example: expect speed: 0.000000 real_pulses:0 +I (119044) example: new speed:399.000000 +I (119054) example: expect speed: 0.000000 real_pulses:0 +I (119054) example: new speed:399.000000 +I (119064) example: expect speed: 0.000000 real_pulses:0 +I (119064) example: new speed:399.000000 +I (119074) example: expect speed: 0.000000 real_pulses:0 +I (119074) example: new speed:399.000000 +I (119084) example: expect speed: 0.000000 real_pulses:0 +I (119084) example: new speed:399.000000 +I (119094) example: expect speed: 0.000000 real_pulses:0 +I (119094) example: new speed:399.000000 +I (119104) example: expect speed: 0.000000 real_pulses:0 +I (119104) example: new speed:399.000000 +I (119114) example: expect speed: 0.000000 real_pulses:0 +I (119114) example: new speed:399.000000 +I (119124) example: expect speed: 0.000000 real_pulses:0 +I (119124) example: new speed:399.000000 +I (119134) example: expect speed: 0.000000 real_pulses:0 +I (119144) example: new speed:399.000000 +I (119144) example: expect speed: 0.000000 real_pulses:0 +I (119144) example: new speed:399.000000 +I (119154) example: expect speed: 0.000000 real_pulses:0 +I (119154) example: new speed:399.000000 +I (119164) example: expect speed: 0.000000 real_pulses:0 +I (119164) example: new speed:399.000000 +I (119174) example: expect speed: 0.000000 real_pulses:0 +I (119174) example: new speed:399.000000 +I (119184) example: expect speed: 0.000000 real_pulses:0 +I (119184) example: new speed:399.000000 +I (119194) example: expect speed: 0.000000 real_pulses:0 +I (119194) example: new speed:399.000000 +I (119204) example: expect speed: 0.000000 real_pulses:0 +I (119204) example: new speed:399.000000 +I (119214) example: expect speed: 0.000000 real_pulses:0 +I (119214) example: new speed:399.000000 +I (119224) example: expect speed: 0.000000 real_pulses:0 +I (119224) example: new speed:399.000000 +I (119234) example: expect speed: 0.000000 real_pulses:0 +I (119234) example: new speed:399.000000 +I (119244) example: expect speed: 0.000000 real_pulses:0 +I (119244) example: new speed:399.000000 +I (119254) example: expect speed: 0.000000 real_pulses:0 +I (119254) example: new speed:399.000000 +I (119264) example: expect speed: 0.000000 real_pulses:0 +I (119264) example: new speed:399.000000 +I (119274) example: expect speed: 0.000000 real_pulses:0 +I (119274) example: new speed:399.000000 +I (119284) example: expect speed: 0.000000 real_pulses:0 +I (119284) example: new speed:399.000000 +I (119294) example: expect speed: 0.000000 real_pulses:0 +I (119294) example: new speed:399.000000 +I (119304) example: expect speed: 0.000000 real_pulses:0 +I (119304) example: new speed:399.000000 +I (119314) example: expect speed: 0.000000 real_pulses:0 +I (119314) example: new speed:399.000000 +I (119324) example: expect speed: 0.000000 real_pulses:0 +I (119324) example: new speed:399.000000 +I (119334) example: expect speed: 0.000000 real_pulses:0 +I (119334) example: new speed:399.000000 +I (119344) example: expect speed: 0.000000 real_pulses:0 +I (119354) example: new speed:399.000000 +I (119354) modbus tcp: ModBusSlave_recv() +I (119354) modbus: ModbusSlaveProcess() +I (119354) modbus: check id... +I (119354) modbus: ok +I (119354) modbus: add: 0, length: 10 +I (119354) modbus: Read Holding Registers +I (119354) example: expect speed: 0.000000 real_pulses:0 +I (119364) example: new speed:399.000000 +I (119364) example: expect speed: 0.000000 real_pulses:0 +I (119364) example: new speed:399.000000 +I (119374) example: expect speed: 0.000000 real_pulses:0 +I (119374) example: new speed:399.000000 +I (119384) example: expect speed: 0.000000 real_pulses:0 +I (119384) example: new speed:399.000000 +I (119394) example: expect speed: 0.000000 real_pulses:0 +I (119394) example: new speed:399.000000 +I (119404) example: expect speed: 0.000000 real_pulses:0 +I (119414) example: new speed:399.000000 +I (119414) example: expect speed: 0.000000 real_pulses:0 +I (119414) example: new speed:399.000000 +I (119424) example: expect speed: 0.000000 real_pulses:0 +I (119424) example: new speed:399.000000 +I (119434) example: expect speed: 0.000000 real_pulses:0 +I (119434) example: new speed:399.000000 +I (119444) example: expect speed: 0.000000 real_pulses:0 +I (119454) example: new speed:399.000000 +I (119454) example: expect speed: 0.000000 real_pulses:0 +I (119454) example: new speed:399.000000 +I (119464) example: expect speed: 0.000000 real_pulses:0 +I (119474) example: new speed:399.000000 +I (119474) example: expect speed: 0.000000 real_pulses:0 +I (119484) example: new speed:399.000000 +I (119484) example: expect speed: 0.000000 real_pulses:0 +I (119494) example: new speed:399.000000 +I (119494) example: expect speed: 0.000000 real_pulses:0 +I (119504) example: new speed:399.000000 +I (119504) example: expect speed: 0.000000 real_pulses:0 +I (119504) example: new speed:399.000000 +I (119514) example: expect speed: 0.000000 real_pulses:0 +I (119524) example: new speed:399.000000 +I (119524) example: expect speed: 0.000000 real_pulses:0 +I (119524) example: new speed:399.000000 +I (119534) example: expect speed: 0.000000 real_pulses:0 +I (119534) example: new speed:399.000000 +I (119544) example: expect speed: 0.000000 real_pulses:0 +I (119544) example: new speed:399.000000 +I (119554) example: expect speed: 0.000000 real_pulses:0 +I (119554) example: new speed:399.000000 +I (119564) example: expect speed: 0.000000 real_pulses:0 +I (119574) example: new speed:399.000000 +I (119574) example: expect speed: 0.000000 real_pulses:0 +I (119584) example: new speed:399.000000 +I (119584) example: expect speed: 0.000000 real_pulses:0 +I (119584) example: new speed:399.000000 +I (119594) example: expect speed: 0.000000 real_pulses:0 +I (119594) example: new speed:399.000000 +I (119604) example: expect speed: 0.000000 real_pulses:0 +I (119604) example: new speed:399.000000 +I (119614) example: expect speed: 0.000000 real_pulses:0 +I (119614) example: new speed:399.000000 +I (119624) example: expect speed: 0.000000 real_pulses:0 +I (119624) example: new speed:399.000000 +I (119634) example: expect speed: 0.000000 real_pulses:0 +I (119634) example: new speed:399.000000 +I (119644) example: expect speed: 0.000000 real_pulses:0 +I (119644) example: new speed:399.000000 +I (119654) example: expect speed: 0.000000 real_pulses:0 +I (119654) example: new speed:399.000000 +I (119664) example: expect speed: 0.000000 real_pulses:0 +I (119664) example: new speed:399.000000 +I (119674) example: expect speed: 0.000000 real_pulses:0 +I (119674) example: new speed:399.000000 +I (119684) example: expect speed: 0.000000 real_pulses:0 +I (119684) example: new speed:399.000000 +I (119694) example: expect speed: 0.000000 real_pulses:0 +I (119694) example: new speed:399.000000 +I (119704) example: expect speed: 0.000000 real_pulses:0 +I (119704) example: new speed:399.000000 +I (119714) example: expect speed: 0.000000 real_pulses:0 +I (119714) example: new speed:399.000000 +I (119724) example: expect speed: 0.000000 real_pulses:0 +I (119724) example: new speed:399.000000 +I (119734) example: expect speed: 0.000000 real_pulses:0 +I (119734) example: new speed:399.000000 +I (119744) example: expect speed: 0.000000 real_pulses:0 +I (119744) example: new speed:399.000000 +I (119754) example: expect speed: 0.000000 real_pulses:0 +I (119754) example: new speed:399.000000 +I (119764) example: expect speed: 0.000000 real_pulses:0 +I (119764) example: new speed:399.000000 +I (119774) example: expect speed: 0.000000 real_pulses:0 +I (119774) example: new speed:399.000000 +I (119784) example: expect speed: 0.000000 real_pulses:0 +I (119784) example: new speed:399.000000 +I (119794) example: expect speed: 0.000000 real_pulses:0 +I (119794) example: new speed:399.000000 +I (119804) example: expect speed: 0.000000 real_pulses:0 +I (119804) example: new speed:399.000000 +I (119814) example: expect speed: 0.000000 real_pulses:0 +I (119814) example: new speed:399.000000 +I (119824) example: expect speed: 0.000000 real_pulses:0 +I (119824) example: new speed:399.000000 +I (119834) example: expect speed: 0.000000 real_pulses:0 +I (119834) example: new speed:399.000000 +I (119844) example: expect speed: 0.000000 real_pulses:0 +I (119844) example: new speed:399.000000 +I (119854) example: expect speed: 0.000000 real_pulses:0 +I (119854) example: new speed:399.000000 +I (119864) example: expect speed: 0.000000 real_pulses:0 +I (119864) example: new speed:399.000000 +I (119874) example: expect speed: 0.000000 real_pulses:0 +I (119874) example: new speed:399.000000 +I (119884) example: expect speed: 0.000000 real_pulses:0 +I (119884) example: new speed:399.000000 +I (119894) example: expect speed: 0.000000 real_pulses:0 +I (119894) example: new speed:399.000000 +I (119904) example: expect speed: 0.000000 real_pulses:0 +I (119904) example: new speed:399.000000 +I (119914) example: expect speed: 0.000000 real_pulses:0 +I (119914) example: new speed:399.000000 +I (119924) example: expect speed: 0.000000 real_pulses:0 +I (119924) example: new speed:399.000000 +I (119934) example: expect speed: 0.000000 real_pulses:0 +I (119934) example: new speed:399.000000 +I (119944) example: expect speed: 0.000000 real_pulses:0 +I (119944) example: new speed:399.000000 +I (119954) example: expect speed: 0.000000 real_pulses:0 +I (119954) example: new speed:399.000000 +I (119964) example: expect speed: 0.000000 real_pulses:0 +I (119964) example: new speed:399.000000 +I (119974) example: expect speed: 0.000000 real_pulses:0 +I (119974) example: new speed:399.000000 +I (119984) example: expect speed: 0.000000 real_pulses:0 +I (119984) example: new speed:399.000000 +I (119994) example: expect speed: 0.000000 real_pulses:0 +I (119994) example: new speed:399.000000 +I (120004) example: expect speed: 0.000000 real_pulses:0 +I (120004) example: new speed:399.000000 +I (120014) example: expect speed: 0.000000 real_pulses:0 +I (120014) example: new speed:399.000000 +I (120024) example: expect speed: 0.000000 real_pulses:0 +I (120024) example: new speed:399.000000 +I (120034) example: expect speed: 0.000000 real_pulses:0 +I (120034) example: new speed:399.000000 +I (120044) example: expect speed: 0.000000 real_pulses:0 +I (120044) example: new speed:399.000000 +I (120054) example: expect speed: 0.000000 real_pulses:0 +I (120054) example: new speed:399.000000 +I (120064) example: expect speed: 0.000000 real_pulses:0 +I (120064) example: new speed:399.000000 +I (120074) example: expect speed: 0.000000 real_pulses:0 +I (120074) example: new speed:399.000000 +I (120084) example: expect speed: 0.000000 real_pulses:0 +I (120084) example: new speed:399.000000 +I (120094) example: expect speed: 0.000000 real_pulses:0 +I (120094) example: new speed:399.000000 +I (120104) example: expect speed: 0.000000 real_pulses:0 +I (120104) example: new speed:399.000000 +I (120114) example: expect speed: 0.000000 real_pulses:0 +I (120114) example: new speed:399.000000 +I (120124) example: expect speed: 0.000000 real_pulses:0 +I (120124) example: new speed:399.000000 +I (120134) example: expect speed: 0.000000 real_pulses:0 +I (120134) example: new speed:399.000000 +I (120144) example: expect speed: 0.000000 real_pulses:0 +I (120144) example: new speed:399.000000 +I (120154) example: expect speed: 0.000000 real_pulses:0 +I (120154) example: new speed:399.000000 +I (120164) example: expect speed: 0.000000 real_pulses:0 +I (120164) example: new speed:399.000000 +I (120174) example: expect speed: 0.000000 real_pulses:0 +I (120174) example: new speed:399.000000 +I (120184) example: expect speed: 0.000000 real_pulses:0 +I (120184) example: new speed:399.000000 +I (120194) example: expect speed: 0.000000 real_pulses:0 +I (120194) example: new speed:399.000000 +I (120204) example: expect speed: 0.000000 real_pulses:0 +I (120204) example: new speed:399.000000 +I (120214) example: expect speed: 0.000000 real_pulses:0 +I (120214) example: new speed:399.000000 +I (120224) example: expect speed: 0.000000 real_pulses:0 +I (120224) example: new speed:399.000000 +I (120234) example: expect speed: 0.000000 real_pulses:0 +I (120234) example: new speed:399.000000 +I (120244) example: expect speed: 0.000000 real_pulses:0 +I (120244) example: new speed:399.000000 +I (120254) example: expect speed: 0.000000 real_pulses:0 +I (120254) example: new speed:399.000000 +I (120264) example: expect speed: 0.000000 real_pulses:0 +I (120264) example: new speed:399.000000 +I (120274) example: expect speed: 0.000000 real_pulses:0 +I (120274) example: new speed:399.000000 +I (120284) example: expect speed: 0.000000 real_pulses:0 +I (120284) example: new speed:399.000000 +I (120294) example: expect speed: 0.000000 real_pulses:0 +I (120294) example: new speed:399.000000 +I (120304) example: expect speed: 0.000000 real_pulses:0 +I (120304) example: new speed:399.000000 +I (120314) example: expect speed: 0.000000 real_pulses:0 +I (120314) example: new speed:399.000000 +I (120324) example: expect speed: 0.000000 real_pulses:0 +I (120324) example: new speed:399.000000 +I (120334) example: expect speed: 0.000000 real_pulses:0 +I (120334) example: new speed:399.000000 +I (120344) example: expect speed: 0.000000 real_pulses:0 +I (120344) example: new speed:399.000000 +I (120354) example: expect speed: 0.000000 real_pulses:0 +I (120354) example: new speed:399.000000 +I (120364) example: expect speed: 0.000000 real_pulses:0 +I (120374) example: new speed:399.000000 +I (120374) modbus tcp: ModBusSlave_recv() +I (120374) modbus: ModbusSlaveProcess() +I (120374) modbus: check id... +I (120374) modbus: ok +I (120374) modbus: add: 0, length: 10 +I (120374) modbus: Read Holding Registers +I (120374) example: expect speed: 0.000000 real_pulses:0 +I (120384) example: new speed:399.000000 +I (120384) example: expect speed: 0.000000 real_pulses:0 +I (120394) example: new speed:399.000000 +I (120394) example: expect speed: 0.000000 real_pulses:0 +I (120394) example: new speed:399.000000 +I (120404) example: expect speed: 0.000000 real_pulses:0 +I (120404) example: new speed:399.000000 +I (120414) example: expect speed: 0.000000 real_pulses:0 +I (120414) example: new speed:399.000000 +I (120424) example: expect speed: 0.000000 real_pulses:0 +I (120434) example: new speed:399.000000 +I (120434) example: expect speed: 0.000000 real_pulses:0 +I (120434) example: new speed:399.000000 +I (120444) example: expect speed: 0.000000 real_pulses:0 +I (120444) example: new speed:399.000000 +I (120454) example: expect speed: 0.000000 real_pulses:0 +I (120454) example: new speed:399.000000 +I (120464) example: expect speed: 0.000000 real_pulses:0 +I (120464) example: new speed:399.000000 +I (120474) example: expect speed: 0.000000 real_pulses:0 +I (120484) example: new speed:399.000000 +I (120484) example: expect speed: 0.000000 real_pulses:0 +I (120484) example: new speed:399.000000 +I (120494) example: expect speed: 0.000000 real_pulses:0 +I (120494) example: new speed:399.000000 +I (120504) example: expect speed: 0.000000 real_pulses:0 +I (120504) example: new speed:399.000000 +I (120514) example: expect speed: 0.000000 real_pulses:0 +I (120514) example: new speed:399.000000 +I (120524) example: expect speed: 0.000000 real_pulses:0 +I (120524) example: new speed:399.000000 +I (120534) example: expect speed: 0.000000 real_pulses:0 +I (120534) example: new speed:399.000000 +I (120544) example: expect speed: 0.000000 real_pulses:0 +I (120544) example: new speed:399.000000 +I (120554) example: expect speed: 0.000000 real_pulses:0 +I (120554) example: new speed:399.000000 +I (120564) example: expect speed: 0.000000 real_pulses:0 +I (120564) example: new speed:399.000000 +I (120574) example: expect speed: 0.000000 real_pulses:0 +I (120574) example: new speed:399.000000 +I (120584) example: expect speed: 0.000000 real_pulses:0 +I (120584) example: new speed:399.000000 +I (120594) example: expect speed: 0.000000 real_pulses:0 +I (120594) example: new speed:399.000000 +I (120604) example: expect speed: 0.000000 real_pulses:0 +I (120604) example: new speed:399.000000 +I (120614) example: expect speed: 0.000000 real_pulses:0 +I (120614) example: new speed:399.000000 +I (120624) example: expect speed: 0.000000 real_pulses:0 +I (120624) example: new speed:399.000000 +I (120634) example: expect speed: 0.000000 real_pulses:0 +I (120634) example: new speed:399.000000 +I (120644) example: expect speed: 0.000000 real_pulses:0 +I (120644) example: new speed:399.000000 +I (120654) example: expect speed: 0.000000 real_pulses:0 +I (120654) example: new speed:399.000000 +I (120664) example: expect speed: 0.000000 real_pulses:0 +I (120664) example: new speed:399.000000 +I (120674) example: expect speed: 0.000000 real_pulses:0 +I (120684) example: new speed:399.000000 +I (120684) example: expect speed: 0.000000 real_pulses:0 +I (120684) example: new speed:399.000000 +I (120694) example: expect speed: 0.000000 real_pulses:0 +I (120694) example: new speed:399.000000 +I (120704) example: expect speed: 0.000000 real_pulses:0 +I (120704) example: new speed:399.000000 +I (120714) example: expect speed: 0.000000 real_pulses:0 +I (120714) example: new speed:399.000000 +I (120724) example: expect speed: 0.000000 real_pulses:0 +I (120724) example: new speed:399.000000 +I (120734) example: expect speed: 0.000000 real_pulses:0 +I (120734) example: new speed:399.000000 +I (120744) example: expect speed: 0.000000 real_pulses:0 +I (120744) example: new speed:399.000000 +I (120754) example: expect speed: 0.000000 real_pulses:0 +I (120754) example: new speed:399.000000 +I (120764) example: expect speed: 0.000000 real_pulses:0 +I (120764) example: new speed:399.000000 +I (120774) example: expect speed: 0.000000 real_pulses:0 +I (120774) example: new speed:399.000000 +I (120784) example: expect speed: 0.000000 real_pulses:0 +I (120784) example: new speed:399.000000 +I (120794) example: expect speed: 0.000000 real_pulses:0 +I (120794) example: new speed:399.000000 +I (120804) example: expect speed: 0.000000 real_pulses:0 +I (120804) example: new speed:399.000000 +I (120814) example: expect speed: 0.000000 real_pulses:0 +I (120814) example: new speed:399.000000 +I (120824) example: expect speed: 0.000000 real_pulses:0 +I (120824) example: new speed:399.000000 +I (120834) example: expect speed: 0.000000 real_pulses:0 +I (120834) example: new speed:399.000000 +I (120844) example: expect speed: 0.000000 real_pulses:0 +I (120844) example: new speed:399.000000 +I (120854) example: expect speed: 0.000000 real_pulses:0 +I (120854) example: new speed:399.000000 +I (120864) example: expect speed: 0.000000 real_pulses:0 +I (120864) example: new speed:399.000000 +I (120874) example: expect speed: 0.000000 real_pulses:0 +I (120874) example: new speed:399.000000 +I (120884) example: expect speed: 0.000000 real_pulses:0 +I (120884) example: new speed:399.000000 +I (120894) example: expect speed: 0.000000 real_pulses:0 +I (120894) example: new speed:399.000000 +I (120904) example: expect speed: 0.000000 real_pulses:0 +I (120904) example: new speed:399.000000 +I (120914) example: expect speed: 0.000000 real_pulses:0 +I (120914) example: new speed:399.000000 +I (120924) example: expect speed: 0.000000 real_pulses:0 +I (120924) example: new speed:399.000000 +I (120934) example: expect speed: 0.000000 real_pulses:0 +I (120934) example: new speed:399.000000 +I (120944) example: expect speed: 0.000000 real_pulses:0 +I (120944) example: new speed:399.000000 +I (120954) example: expect speed: 0.000000 real_pulses:0 +I (120954) example: new speed:399.000000 +I (120964) example: expect speed: 0.000000 real_pulses:0 +I (120964) example: new speed:399.000000 +I (120974) example: expect speed: 0.000000 real_pulses:0 +I (120974) example: new speed:399.000000 +I (120984) example: expect speed: 0.000000 real_pulses:0 +I (120984) example: new speed:399.000000 +I (120994) example: expect speed: 0.000000 real_pulses:0 +I (120994) example: new speed:399.000000 +I (121004) example: expect speed: 0.000000 real_pulses:0 +I (121004) example: new speed:399.000000 +I (121014) example: expect speed: 0.000000 real_pulses:0 +I (121014) example: new speed:399.000000 +I (121024) example: expect speed: 0.000000 real_pulses:0 +I (121024) example: new speed:399.000000 +I (121034) example: expect speed: 0.000000 real_pulses:0 +I (121034) example: new speed:399.000000 +I (121044) example: expect speed: 0.000000 real_pulses:0 +I (121044) example: new speed:399.000000 +I (121054) example: expect speed: 0.000000 real_pulses:0 +I (121054) example: new speed:399.000000 +I (121064) example: expect speed: 0.000000 real_pulses:0 +I (121064) example: new speed:399.000000 +I (121074) example: expect speed: 0.000000 real_pulses:0 +I (121074) example: new speed:399.000000 +I (121084) example: expect speed: 0.000000 real_pulses:0 +I (121084) example: new speed:399.000000 +I (121094) example: expect speed: 0.000000 real_pulses:0 +I (121094) example: new speed:399.000000 +I (121104) example: expect speed: 0.000000 real_pulses:0 +I (121104) example: new speed:399.000000 +I (121114) example: expect speed: 0.000000 real_pulses:0 +I (121114) example: new speed:399.000000 +I (121124) example: expect speed: 0.000000 real_pulses:0 +I (121124) example: new speed:399.000000 +I (121134) example: expect speed: 0.000000 real_pulses:0 +I (121134) example: new speed:399.000000 +I (121144) example: expect speed: 0.000000 real_pulses:0 +I (121144) example: new speed:399.000000 +I (121154) example: expect speed: 0.000000 real_pulses:0 +I (121154) example: new speed:399.000000 +I (121164) example: expect speed: 0.000000 real_pulses:0 +I (121164) example: new speed:399.000000 +I (121174) example: expect speed: 0.000000 real_pulses:0 +I (121174) example: new speed:399.000000 +I (121184) example: expect speed: 0.000000 real_pulses:0 +I (121184) example: new speed:399.000000 +I (121194) example: expect speed: 0.000000 real_pulses:0 +I (121194) example: new speed:399.000000 +I (121204) example: expect speed: 0.000000 real_pulses:0 +I (121204) example: new speed:399.000000 +I (121214) example: expect speed: 0.000000 real_pulses:0 +I (121214) example: new speed:399.000000 +I (121224) example: expect speed: 0.000000 real_pulses:0 +I (121224) example: new speed:399.000000 +I (121234) example: expect speed: 0.000000 real_pulses:0 +I (121234) example: new speed:399.000000 +I (121244) example: expect speed: 0.000000 real_pulses:0 +I (121244) example: new speed:399.000000 +I (121254) example: expect speed: 0.000000 real_pulses:0 +I (121254) example: new speed:399.000000 +I (121264) example: expect speed: 0.000000 real_pulses:0 +I (121264) example: new speed:399.000000 +I (121274) example: expect speed: 0.000000 real_pulses:0 +I (121274) example: new speed:399.000000 +I (121284) example: expect speed: 0.000000 real_pulses:0 +I (121284) example: new speed:399.000000 +I (121294) example: expect speed: 0.000000 real_pulses:0 +I (121294) example: new speed:399.000000 +I (121304) example: expect speed: 0.000000 real_pulses:0 +I (121304) example: new speed:399.000000 +I (121314) example: expect speed: 0.000000 real_pulses:0 +I (121314) example: new speed:399.000000 +I (121324) example: expect speed: 0.000000 real_pulses:0 +I (121324) example: new speed:399.000000 +I (121334) example: expect speed: 0.000000 real_pulses:0 +I (121334) example: new speed:399.000000 +I (121344) example: expect speed: 0.000000 real_pulses:0 +I (121344) example: new speed:399.000000 +I (121354) example: expect speed: 0.000000 real_pulses:0 +I (121354) example: new speed:399.000000 +I (121364) example: expect speed: 0.000000 real_pulses:0 +I (121364) example: new speed:399.000000 +I (121374) example: expect speed: 0.000000 real_pulses:0 +I (121374) example: new speed:399.000000 +I (121384) example: expect speed: 0.000000 real_pulses:0 +I (121384) example: new speed:399.000000 +I (121394) example: expect speed: 0.000000 real_pulses:0 +I (121404) example: new speed:399.000000 +I (121404) modbus tcp: ModBusSlave_recv() +I (121404) modbus: ModbusSlaveProcess() +I (121404) modbus: check id... +I (121404) modbus: ok +I (121404) modbus: add: 0, length: 10 +I (121404) modbus: Read Holding Registers +I (121404) example: expect speed: 0.000000 real_pulses:0 +I (121414) example: new speed:399.000000 +I (121414) example: expect speed: 0.000000 real_pulses:0 +I (121414) example: new speed:399.000000 +I (121424) example: expect speed: 0.000000 real_pulses:0 +I (121424) example: new speed:399.000000 +I (121434) example: expect speed: 0.000000 real_pulses:0 +I (121434) example: new speed:399.000000 +I (121444) example: expect speed: 0.000000 real_pulses:0 +I (121444) example: new speed:399.000000 +I (121454) example: expect speed: 0.000000 real_pulses:0 +I (121464) example: new speed:399.000000 +I (121464) example: expect speed: 0.000000 real_pulses:0 +I (121464) example: new speed:399.000000 +I (121474) example: expect speed: 0.000000 real_pulses:0 +I (121474) example: new speed:399.000000 +I (121484) example: expect speed: 0.000000 real_pulses:0 +I (121484) example: new speed:399.000000 +I (121494) example: expect speed: 0.000000 real_pulses:0 +I (121494) example: new speed:399.000000 +I (121504) example: expect speed: 0.000000 real_pulses:0 +I (121514) example: new speed:399.000000 +I (121514) example: expect speed: 0.000000 real_pulses:0 +I (121514) example: new speed:399.000000 +I (121524) example: expect speed: 0.000000 real_pulses:0 +I (121524) example: new speed:399.000000 +I (121534) example: expect speed: 0.000000 real_pulses:0 +I (121534) example: new speed:399.000000 +I (121544) example: expect speed: 0.000000 real_pulses:0 +I (121544) example: new speed:399.000000 +I (121554) example: expect speed: 0.000000 real_pulses:0 +I (121554) example: new speed:399.000000 +I (121564) example: expect speed: 0.000000 real_pulses:0 +I (121564) example: new speed:399.000000 +I (121574) example: expect speed: 0.000000 real_pulses:0 +I (121574) example: new speed:399.000000 +I (121584) example: expect speed: 0.000000 real_pulses:0 +I (121584) example: new speed:399.000000 +I (121594) example: expect speed: 0.000000 real_pulses:0 +I (121594) example: new speed:399.000000 +I (121604) example: expect speed: 0.000000 real_pulses:0 +I (121604) example: new speed:399.000000 +I (121614) example: expect speed: 0.000000 real_pulses:0 +I (121614) example: new speed:399.000000 +I (121624) example: expect speed: 0.000000 real_pulses:0 +I (121624) example: new speed:399.000000 +I (121634) example: expect speed: 0.000000 real_pulses:0 +I (121634) example: new speed:399.000000 +I (121644) example: expect speed: 0.000000 real_pulses:0 +I (121644) example: new speed:399.000000 +I (121654) example: expect speed: 0.000000 real_pulses:0 +I (121654) example: new speed:399.000000 +I (121664) example: expect speed: 0.000000 real_pulses:0 +I (121664) example: new speed:399.000000 +I (121674) example: expect speed: 0.000000 real_pulses:0 +I (121674) example: new speed:399.000000 +I (121684) example: expect speed: 0.000000 real_pulses:0 +I (121684) example: new speed:399.000000 +I (121694) example: expect speed: 0.000000 real_pulses:0 +I (121694) example: new speed:399.000000 +I (121704) example: expect speed: 0.000000 real_pulses:0 +I (121704) example: new speed:399.000000 +I (121714) example: expect speed: 0.000000 real_pulses:0 +I (121714) example: new speed:399.000000 +I (121724) example: expect speed: 0.000000 real_pulses:0 +I (121724) example: new speed:399.000000 +I (121734) example: expect speed: 0.000000 real_pulses:0 +I (121734) example: new speed:399.000000 +I (121744) example: expect speed: 0.000000 real_pulses:0 +I (121744) example: new speed:399.000000 +I (121754) example: expect speed: 0.000000 real_pulses:0 +I (121754) example: new speed:399.000000 +I (121764) example: expect speed: 0.000000 real_pulses:0 +I (121764) example: new speed:399.000000 +I (121774) example: expect speed: 0.000000 real_pulses:0 +I (121774) example: new speed:399.000000 +I (121784) example: expect speed: 0.000000 real_pulses:0 +I (121784) example: new speed:399.000000 +I (121794) example: expect speed: 0.000000 real_pulses:0 +I (121794) example: new speed:399.000000 +I (121804) example: expect speed: 0.000000 real_pulses:0 +I (121804) example: new speed:399.000000 +I (121814) example: expect speed: 0.000000 real_pulses:0 +I (121814) example: new speed:399.000000 +I (121824) example: expect speed: 0.000000 real_pulses:0 +I (121824) example: new speed:399.000000 +I (121834) example: expect speed: 0.000000 real_pulses:0 +I (121834) example: new speed:399.000000 +I (121844) example: expect speed: 0.000000 real_pulses:0 +I (121844) example: new speed:399.000000 +I (121854) example: expect speed: 0.000000 real_pulses:0 +I (121854) example: new speed:399.000000 +I (121864) example: expect speed: 0.000000 real_pulses:0 +I (121864) example: new speed:399.000000 +I (121874) example: expect speed: 0.000000 real_pulses:0 +I (121874) example: new speed:399.000000 +I (121884) example: expect speed: 0.000000 real_pulses:0 +I (121884) example: new speed:399.000000 +I (121894) example: expect speed: 0.000000 real_pulses:0 +I (121894) example: new speed:399.000000 +I (121904) example: expect speed: 0.000000 real_pulses:0 +I (121904) example: new speed:399.000000 +I (121914) example: expect speed: 0.000000 real_pulses:0 +I (121914) example: new speed:399.000000 +I (121924) example: expect speed: 0.000000 real_pulses:0 +I (121924) example: new speed:399.000000 +I (121934) example: expect speed: 0.000000 real_pulses:0 +I (121934) example: new speed:399.000000 +I (121944) example: expect speed: 0.000000 real_pulses:0 +I (121944) example: new speed:399.000000 +I (121954) example: expect speed: 0.000000 real_pulses:0 +I (121954) example: new speed:399.000000 +I (121964) example: expect speed: 0.000000 real_pulses:0 +I (121964) example: new speed:399.000000 +I (121974) example: expect speed: 0.000000 real_pulses:0 +I (121974) example: new speed:399.000000 +I (121984) example: expect speed: 0.000000 real_pulses:0 +I (121984) example: new speed:399.000000 +I (121994) example: expect speed: 0.000000 real_pulses:0 +I (121994) example: new speed:399.000000 +I (122004) example: expect speed: 0.000000 real_pulses:0 +I (122004) example: new speed:399.000000 +I (122014) example: expect speed: 0.000000 real_pulses:0 +I (122014) example: new speed:399.000000 +I (122024) example: expect speed: 0.000000 real_pulses:0 +I (122024) example: new speed:399.000000 +I (122034) example: expect speed: 0.000000 real_pulses:0 +I (122034) example: new speed:399.000000 +I (122044) example: expect speed: 0.000000 real_pulses:0 +I (122044) example: new speed:399.000000 +I (122054) example: expect speed: 0.000000 real_pulses:0 +I (122054) example: new speed:399.000000 +I (122064) example: expect speed: 0.000000 real_pulses:0 +I (122064) example: new speed:399.000000 +I (122074) example: expect speed: 0.000000 real_pulses:0 +I (122074) example: new speed:399.000000 +I (122084) example: expect speed: 0.000000 real_pulses:0 +I (122084) example: new speed:399.000000 +I (122094) example: expect speed: 0.000000 real_pulses:0 +I (122094) example: new speed:399.000000 +I (122104) example: expect speed: 0.000000 real_pulses:0 +I (122114) example: new speed:399.000000 +I (122114) example: expect speed: 0.000000 real_pulses:0 +I (122124) example: new speed:399.000000 +I (122124) example: expect speed: 0.000000 real_pulses:0 +I (122124) example: new speed:399.000000 +I (122134) example: expect speed: 0.000000 real_pulses:0 +I (122134) example: new speed:399.000000 +I (122144) example: expect speed: 0.000000 real_pulses:0 +I (122144) example: new speed:399.000000 +I (122154) example: expect speed: 0.000000 real_pulses:0 +I (122154) example: new speed:399.000000 +I (122164) example: expect speed: 0.000000 real_pulses:0 +I (122164) example: new speed:399.000000 +I (122174) example: expect speed: 0.000000 real_pulses:0 +I (122174) example: new speed:399.000000 +I (122184) example: expect speed: 0.000000 real_pulses:0 +I (122184) example: new speed:399.000000 +I (122194) example: expect speed: 0.000000 real_pulses:0 +I (122194) example: new speed:399.000000 +I (122204) example: expect speed: 0.000000 real_pulses:0 +I (122204) example: new speed:399.000000 +I (122214) example: expect speed: 0.000000 real_pulses:0 +I (122214) example: new speed:399.000000 +I (122224) example: expect speed: 0.000000 real_pulses:0 +I (122224) example: new speed:399.000000 +I (122234) example: expect speed: 0.000000 real_pulses:0 +I (122234) example: new speed:399.000000 +I (122244) example: expect speed: 0.000000 real_pulses:0 +I (122244) example: new speed:399.000000 +I (122254) example: expect speed: 0.000000 real_pulses:0 +I (122254) example: new speed:399.000000 +I (122264) example: expect speed: 0.000000 real_pulses:0 +I (122264) example: new speed:399.000000 +I (122274) example: expect speed: 0.000000 real_pulses:0 +I (122274) example: new speed:399.000000 +I (122284) example: expect speed: 0.000000 real_pulses:0 +I (122284) example: new speed:399.000000 +I (122294) example: expect speed: 0.000000 real_pulses:0 +I (122294) example: new speed:399.000000 +I (122304) example: expect speed: 0.000000 real_pulses:0 +I (122304) example: new speed:399.000000 +I (122314) example: expect speed: 0.000000 real_pulses:0 +I (122314) example: new speed:399.000000 +I (122324) example: expect speed: 0.000000 real_pulses:0 +I (122324) example: new speed:399.000000 +I (122334) example: expect speed: 0.000000 real_pulses:0 +I (122334) example: new speed:399.000000 +I (122344) example: expect speed: 0.000000 real_pulses:0 +I (122344) example: new speed:399.000000 +I (122354) example: expect speed: 0.000000 real_pulses:0 +I (122354) example: new speed:399.000000 +I (122364) example: expect speed: 0.000000 real_pulses:0 +I (122364) example: new speed:399.000000 +I (122374) example: expect speed: 0.000000 real_pulses:0 +I (122374) example: new speed:399.000000 +I (122384) example: expect speed: 0.000000 real_pulses:0 +I (122384) example: new speed:399.000000 +I (122394) example: expect speed: 0.000000 real_pulses:0 +I (122394) example: new speed:399.000000 +I (122404) example: expect speed: 0.000000 real_pulses:0 +I (122404) example: new speed:399.000000 +I (122414) example: expect speed: 0.000000 real_pulses:0 +I (122424) example: new speed:399.000000 +I (122424) modbus tcp: ModBusSlave_recv() +I (122424) modbus: ModbusSlaveProcess() +I (122424) modbus: check id... +I (122424) modbus: ok +I (122424) modbus: add: 0, length: 10 +I (122424) modbus: Read Holding Registers +I (122424) example: expect speed: 0.000000 real_pulses:0 +I (122434) example: new speed:399.000000 +I (122434) example: expect speed: 0.000000 real_pulses:0 +I (122434) example: new speed:399.000000 +I (122444) example: expect speed: 0.000000 real_pulses:0 +I (122444) example: new speed:399.000000 +I (122454) example: expect speed: 0.000000 real_pulses:0 +I (122454) example: new speed:399.000000 +I (122464) example: expect speed: 0.000000 real_pulses:0 +I (122464) example: new speed:399.000000 +I (122474) example: expect speed: 0.000000 real_pulses:0 +I (122484) example: new speed:399.000000 +I (122484) example: expect speed: 0.000000 real_pulses:0 +I (122484) example: new speed:399.000000 +I (122494) example: expect speed: 0.000000 real_pulses:0 +I (122494) example: new speed:399.000000 +I (122504) example: expect speed: 0.000000 real_pulses:0 +I (122504) example: new speed:399.000000 +I (122514) example: expect speed: 0.000000 real_pulses:0 +I (122524) example: new speed:399.000000 +I (122524) example: expect speed: 0.000000 real_pulses:0 +I (122524) example: new speed:399.000000 +I (122534) example: expect speed: 0.000000 real_pulses:0 +I (122534) example: new speed:399.000000 +I (122544) example: expect speed: 0.000000 real_pulses:0 +I (122544) example: new speed:399.000000 +I (122554) example: expect speed: 0.000000 real_pulses:0 +I (122564) example: new speed:399.000000 +I (122564) example: expect speed: 0.000000 real_pulses:0 +I (122564) example: new speed:399.000000 +I (122574) example: expect speed: 0.000000 real_pulses:0 +I (122574) example: new speed:399.000000 +I (122584) example: expect speed: 0.000000 real_pulses:0 +I (122584) example: new speed:399.000000 +I (122594) example: expect speed: 0.000000 real_pulses:0 +I (122594) example: new speed:399.000000 +I (122604) example: expect speed: 0.000000 real_pulses:0 +I (122614) example: new speed:399.000000 +I (122614) example: expect speed: 0.000000 real_pulses:0 +I (122624) example: new speed:399.000000 +I (122624) example: expect speed: 0.000000 real_pulses:0 +I (122634) example: new speed:399.000000 +I (122634) example: expect speed: 0.000000 real_pulses:0 +I (122644) example: new speed:399.000000 +I (122644) example: expect speed: 0.000000 real_pulses:0 +I (122644) example: new speed:399.000000 +I (122654) example: expect speed: 0.000000 real_pulses:0 +I (122654) example: new speed:399.000000 +I (122664) example: expect speed: 0.000000 real_pulses:0 +I (122664) example: new speed:399.000000 +I (122674) example: expect speed: 0.000000 real_pulses:0 +I (122674) example: new speed:399.000000 +I (122684) example: expect speed: 0.000000 real_pulses:0 +I (122684) example: new speed:399.000000 +I (122694) example: expect speed: 0.000000 real_pulses:0 +I (122694) example: new speed:399.000000 +I (122704) example: expect speed: 0.000000 real_pulses:0 +I (122704) example: new speed:399.000000 +I (122714) example: expect speed: 0.000000 real_pulses:0 +I (122714) example: new speed:399.000000 +I (122724) example: expect speed: 0.000000 real_pulses:0 +I (122724) example: new speed:399.000000 +I (122734) example: expect speed: 0.000000 real_pulses:0 +I (122734) example: new speed:399.000000 +I (122744) example: expect speed: 0.000000 real_pulses:0 +I (122744) example: new speed:399.000000 +I (122754) example: expect speed: 0.000000 real_pulses:0 +I (122754) example: new speed:399.000000 +I (122764) example: expect speed: 0.000000 real_pulses:0 +I (122764) example: new speed:399.000000 +I (122774) example: expect speed: 0.000000 real_pulses:0 +I (122774) example: new speed:399.000000 +I (122784) example: expect speed: 0.000000 real_pulses:0 +I (122784) example: new speed:399.000000 +I (122794) example: expect speed: 0.000000 real_pulses:0 +I (122794) example: new speed:399.000000 +I (122804) example: expect speed: 0.000000 real_pulses:0 +I (122804) example: new speed:399.000000 +I (122814) example: expect speed: 0.000000 real_pulses:0 +I (122814) example: new speed:399.000000 +I (122824) example: expect speed: 0.000000 real_pulses:0 +I (122824) example: new speed:399.000000 +I (122834) example: expect speed: 0.000000 real_pulses:0 +I (122834) example: new speed:399.000000 +I (122844) example: expect speed: 0.000000 real_pulses:0 +I (122844) example: new speed:399.000000 +I (122854) example: expect speed: 0.000000 real_pulses:0 +I (122854) example: new speed:399.000000 +I (122864) example: expect speed: 0.000000 real_pulses:0 +I (122864) example: new speed:399.000000 +I (122874) example: expect speed: 0.000000 real_pulses:0 +I (122874) example: new speed:399.000000 +I (122884) example: expect speed: 0.000000 real_pulses:0 +I (122884) example: new speed:399.000000 +I (122894) example: expect speed: 0.000000 real_pulses:0 +I (122894) example: new speed:399.000000 +I (122904) example: expect speed: 0.000000 real_pulses:0 +I (122904) example: new speed:399.000000 +I (122914) example: expect speed: 0.000000 real_pulses:0 +I (122914) example: new speed:399.000000 +I (122924) example: expect speed: 0.000000 real_pulses:0 +I (122924) example: new speed:399.000000 +I (122934) example: expect speed: 0.000000 real_pulses:0 +I (122944) example: new speed:399.000000 +I (122944) example: expect speed: 0.000000 real_pulses:0 +I (122944) example: new speed:399.000000 +I (122954) example: expect speed: 0.000000 real_pulses:0 +I (122954) example: new speed:399.000000 +I (122964) example: expect speed: 0.000000 real_pulses:0 +I (122964) example: new speed:399.000000 +I (122974) example: expect speed: 0.000000 real_pulses:0 +I (122974) example: new speed:399.000000 +I (122984) example: expect speed: 0.000000 real_pulses:0 +I (122984) example: new speed:399.000000 +I (122994) example: expect speed: 0.000000 real_pulses:0 +I (122994) example: new speed:399.000000 +I (123004) example: expect speed: 0.000000 real_pulses:0 +I (123004) example: new speed:399.000000 +I (123014) example: expect speed: 0.000000 real_pulses:0 +I (123014) example: new speed:399.000000 +I (123024) example: expect speed: 0.000000 real_pulses:0 +I (123024) example: new speed:399.000000 +I (123034) example: expect speed: 0.000000 real_pulses:0 +I (123034) example: new speed:399.000000 +I (123044) example: expect speed: 0.000000 real_pulses:0 +I (123044) example: new speed:399.000000 +I (123054) example: expect speed: 0.000000 real_pulses:0 +I (123054) example: new speed:399.000000 +I (123064) example: expect speed: 0.000000 real_pulses:0 +I (123064) example: new speed:399.000000 +I (123074) example: expect speed: 0.000000 real_pulses:0 +I (123074) example: new speed:399.000000 +I (123084) example: expect speed: 0.000000 real_pulses:0 +I (123084) example: new speed:399.000000 +I (123094) example: expect speed: 0.000000 real_pulses:0 +I (123094) example: new speed:399.000000 +I (123104) example: expect speed: 0.000000 real_pulses:0 +I (123104) example: new speed:399.000000 +I (123114) example: expect speed: 0.000000 real_pulses:0 +I (123114) example: new speed:399.000000 +I (123124) example: expect speed: 0.000000 real_pulses:0 +I (123124) example: new speed:399.000000 +I (123134) example: expect speed: 0.000000 real_pulses:0 +I (123134) example: new speed:399.000000 +I (123144) example: expect speed: 0.000000 real_pulses:0 +I (123144) example: new speed:399.000000 +I (123154) example: expect speed: 0.000000 real_pulses:0 +I (123154) example: new speed:399.000000 +I (123164) example: expect speed: 0.000000 real_pulses:0 +I (123164) example: new speed:399.000000 +I (123174) example: expect speed: 0.000000 real_pulses:0 +I (123174) example: new speed:399.000000 +I (123184) example: expect speed: 0.000000 real_pulses:0 +I (123184) example: new speed:399.000000 +I (123194) example: expect speed: 0.000000 real_pulses:0 +I (123194) example: new speed:399.000000 +I (123204) example: expect speed: 0.000000 real_pulses:0 +I (123204) example: new speed:399.000000 +I (123214) example: expect speed: 0.000000 real_pulses:0 +I (123214) example: new speed:399.000000 +I (123224) example: expect speed: 0.000000 real_pulses:0 +I (123224) example: new speed:399.000000 +I (123234) example: expect speed: 0.000000 real_pulses:0 +I (123234) example: new speed:399.000000 +I (123244) example: expect speed: 0.000000 real_pulses:0 +I (123244) example: new speed:399.000000 +I (123254) example: expect speed: 0.000000 real_pulses:0 +I (123254) example: new speed:399.000000 +I (123264) example: expect speed: 0.000000 real_pulses:0 +I (123264) example: new speed:399.000000 +I (123274) example: expect speed: 0.000000 real_pulses:0 +I (123274) example: new speed:399.000000 +I (123284) example: expect speed: 0.000000 real_pulses:0 +I (123284) example: new speed:399.000000 +I (123294) example: expect speed: 0.000000 real_pulses:0 +I (123294) example: new speed:399.000000 +I (123304) example: expect speed: 0.000000 real_pulses:0 +I (123304) example: new speed:399.000000 +I (123314) example: expect speed: 0.000000 real_pulses:0 +I (123314) example: new speed:399.000000 +I (123324) example: expect speed: 0.000000 real_pulses:0 +I (123324) example: new speed:399.000000 +I (123334) example: expect speed: 0.000000 real_pulses:0 +I (123344) example: new speed:399.000000 +I (123344) modbus tcp: ModBusSlave_recv() +I (123344) modbus: ModbusSlaveProcess() +I (123344) modbus: check id... +I (123344) modbus: ok +I (123344) modbus: add: 0, length: 10 +I (123344) modbus: Read Holding Registers +I (123344) example: expect speed: 0.000000 real_pulses:0 +I (123354) example: new speed:399.000000 +I (123354) example: expect speed: 0.000000 real_pulses:0 +I (123354) example: new speed:399.000000 +I (123364) example: expect speed: 0.000000 real_pulses:0 +I (123364) example: new speed:399.000000 +I (123374) example: expect speed: 0.000000 real_pulses:0 +I (123374) example: new speed:399.000000 +I (123384) example: expect speed: 0.000000 real_pulses:0 +I (123384) example: new speed:399.000000 +I (123394) example: expect speed: 0.000000 real_pulses:0 +I (123394) example: new speed:399.000000 +I (123404) example: expect speed: 0.000000 real_pulses:0 +I (123414) example: new speed:399.000000 +I (123414) example: expect speed: 0.000000 real_pulses:0 +I (123414) example: new speed:399.000000 +I (123424) example: expect speed: 0.000000 real_pulses:0 +I (123424) example: new speed:399.000000 +I (123434) example: expect speed: 0.000000 real_pulses:0 +I (123444) example: new speed:399.000000 +I (123444) example: expect speed: 0.000000 real_pulses:0 +I (123454) example: new speed:399.000000 +I (123454) example: expect speed: 0.000000 real_pulses:0 +I (123454) example: new speed:399.000000 +I (123464) example: expect speed: 0.000000 real_pulses:0 +I (123464) example: new speed:399.000000 +I (123474) example: expect speed: 0.000000 real_pulses:0 +I (123474) example: new speed:399.000000 +I (123484) example: expect speed: 0.000000 real_pulses:0 +I (123484) example: new speed:399.000000 +I (123494) example: expect speed: 0.000000 real_pulses:0 +I (123504) example: new speed:399.000000 +I (123504) example: expect speed: 0.000000 real_pulses:0 +I (123504) example: new speed:399.000000 +I (123514) example: expect speed: 0.000000 real_pulses:0 +I (123514) example: new speed:399.000000 +I (123524) example: expect speed: 0.000000 real_pulses:0 +I (123524) example: new speed:399.000000 +I (123534) example: expect speed: 0.000000 real_pulses:0 +I (123534) example: new speed:399.000000 +I (123544) example: expect speed: 0.000000 real_pulses:0 +I (123544) example: new speed:399.000000 +I (123554) example: expect speed: 0.000000 real_pulses:0 +I (123554) example: new speed:399.000000 +I (123564) example: expect speed: 0.000000 real_pulses:0 +I (123564) example: new speed:399.000000 +I (123574) example: expect speed: 0.000000 real_pulses:0 +I (123574) example: new speed:399.000000 +I (123584) example: expect speed: 0.000000 real_pulses:0 +I (123584) example: new speed:399.000000 +I (123594) example: expect speed: 0.000000 real_pulses:0 +I (123594) example: new speed:399.000000 +I (123604) example: expect speed: 0.000000 real_pulses:0 +I (123604) example: new speed:399.000000 +I (123614) example: expect speed: 0.000000 real_pulses:0 +I (123614) example: new speed:399.000000 +I (123624) example: expect speed: 0.000000 real_pulses:0 +I (123624) example: new speed:399.000000 +I (123634) example: expect speed: 0.000000 real_pulses:0 +I (123634) example: new speed:399.000000 +I (123644) example: expect speed: 0.000000 real_pulses:0 +I (123654) example: new speed:399.000000 +I (123654) example: expect speed: 0.000000 real_pulses:0 +I (123654) example: new speed:399.000000 +I (123664) example: expect speed: 0.000000 real_pulses:0 +I (123664) example: new speed:399.000000 +I (123674) example: expect speed: 0.000000 real_pulses:0 +I (123674) example: new speed:399.000000 +I (123684) example: expect speed: 0.000000 real_pulses:0 +I (123684) example: new speed:399.000000 +I (123694) example: expect speed: 0.000000 real_pulses:0 +I (123694) example: new speed:399.000000 +I (123704) example: expect speed: 0.000000 real_pulses:0 +I (123704) example: new speed:399.000000 +I (123714) example: expect speed: 0.000000 real_pulses:0 +I (123714) example: new speed:399.000000 +I (123724) example: expect speed: 0.000000 real_pulses:0 +I (123724) example: new speed:399.000000 +I (123734) example: expect speed: 0.000000 real_pulses:0 +I (123734) example: new speed:399.000000 +I (123744) example: expect speed: 0.000000 real_pulses:0 +I (123744) example: new speed:399.000000 +I (123754) example: expect speed: 0.000000 real_pulses:0 +I (123754) example: new speed:399.000000 +I (123764) example: expect speed: 0.000000 real_pulses:0 +I (123764) example: new speed:399.000000 +I (123774) example: expect speed: 0.000000 real_pulses:0 +I (123774) example: new speed:399.000000 +I (123784) example: expect speed: 0.000000 real_pulses:0 +I (123784) example: new speed:399.000000 +I (123794) example: expect speed: 0.000000 real_pulses:0 +I (123794) example: new speed:399.000000 +I (123804) example: expect speed: 0.000000 real_pulses:0 +I (123804) example: new speed:399.000000 +I (123814) example: expect speed: 0.000000 real_pulses:0 +I (123814) example: new speed:399.000000 +I (123824) example: expect speed: 0.000000 real_pulses:0 +I (123824) example: new speed:399.000000 +I (123834) example: expect speed: 0.000000 real_pulses:0 +I (123834) example: new speed:399.000000 +I (123844) example: expect speed: 0.000000 real_pulses:0 +I (123844) example: new speed:399.000000 +I (123854) example: expect speed: 0.000000 real_pulses:0 +I (123854) example: new speed:399.000000 +I (123864) example: expect speed: 0.000000 real_pulses:0 +I (123864) example: new speed:399.000000 +I (123874) example: expect speed: 0.000000 real_pulses:0 +I (123874) example: new speed:399.000000 +I (123884) example: expect speed: 0.000000 real_pulses:0 +I (123884) example: new speed:399.000000 +I (123894) example: expect speed: 0.000000 real_pulses:0 +I (123894) example: new speed:399.000000 +I (123904) example: expect speed: 0.000000 real_pulses:0 +I (123904) example: new speed:399.000000 +I (123914) example: expect speed: 0.000000 real_pulses:0 +I (123914) example: new speed:399.000000 +I (123924) example: expect speed: 0.000000 real_pulses:0 +I (123924) example: new speed:399.000000 +I (123934) example: expect speed: 0.000000 real_pulses:0 +I (123934) example: new speed:399.000000 +I (123944) example: expect speed: 0.000000 real_pulses:0 +I (123944) example: new speed:399.000000 +I (123954) example: expect speed: 0.000000 real_pulses:0 +I (123954) example: new speed:399.000000 +I (123964) example: expect speed: 0.000000 real_pulses:0 +I (123964) example: new speed:399.000000 +I (123974) example: expect speed: 0.000000 real_pulses:0 +I (123974) example: new speed:399.000000 +I (123984) example: expect speed: 0.000000 real_pulses:0 +I (123984) example: new speed:399.000000 +I (123994) example: expect speed: 0.000000 real_pulses:0 +I (123994) example: new speed:399.000000 +I (124004) example: expect speed: 0.000000 real_pulses:0 +I (124004) example: new speed:399.000000 +I (124014) example: expect speed: 0.000000 real_pulses:0 +I (124014) example: new speed:399.000000 +I (124024) example: expect speed: 0.000000 real_pulses:0 +I (124024) example: new speed:399.000000 +I (124034) example: expect speed: 0.000000 real_pulses:0 +I (124034) example: new speed:399.000000 +I (124044) example: expect speed: 0.000000 real_pulses:0 +I (124044) example: new speed:399.000000 +I (124054) example: expect speed: 0.000000 real_pulses:0 +I (124054) example: new speed:399.000000 +I (124064) example: expect speed: 0.000000 real_pulses:0 +I (124064) example: new speed:399.000000 +I (124074) example: expect speed: 0.000000 real_pulses:0 +I (124074) example: new speed:399.000000 +I (124084) example: expect speed: 0.000000 real_pulses:0 +I (124084) example: new speed:399.000000 +I (124094) example: expect speed: 0.000000 real_pulses:0 +I (124094) example: new speed:399.000000 +I (124104) example: expect speed: 0.000000 real_pulses:0 +I (124104) example: new speed:399.000000 +I (124114) example: expect speed: 0.000000 real_pulses:0 +I (124114) example: new speed:399.000000 +I (124124) example: expect speed: 0.000000 real_pulses:0 +I (124124) example: new speed:399.000000 +I (124134) example: expect speed: 0.000000 real_pulses:0 +I (124134) example: new speed:399.000000 +I (124144) example: expect speed: 0.000000 real_pulses:0 +I (124144) example: new speed:399.000000 +I (124154) example: expect speed: 0.000000 real_pulses:0 +I (124154) example: new speed:399.000000 +I (124164) example: expect speed: 0.000000 real_pulses:0 +I (124164) example: new speed:399.000000 +I (124174) example: expect speed: 0.000000 real_pulses:0 +I (124174) example: new speed:399.000000 +I (124184) example: expect speed: 0.000000 real_pulses:0 +I (124184) example: new speed:399.000000 +I (124194) example: expect speed: 0.000000 real_pulses:0 +I (124194) example: new speed:399.000000 +I (124204) example: expect speed: 0.000000 real_pulses:0 +I (124204) example: new speed:399.000000 +I (124214) example: expect speed: 0.000000 real_pulses:0 +I (124214) example: new speed:399.000000 +I (124224) example: expect speed: 0.000000 real_pulses:0 +I (124224) example: new speed:399.000000 +I (124234) example: expect speed: 0.000000 real_pulses:0 +I (124234) example: new speed:399.000000 +I (124244) example: expect speed: 0.000000 real_pulses:0 +I (124244) example: new speed:399.000000 +I (124254) example: expect speed: 0.000000 real_pulses:0 +I (124254) example: new speed:399.000000 +I (124264) example: expect speed: 0.000000 real_pulses:0 +I (124264) example: new speed:399.000000 +I (124274) example: expect speed: 0.000000 real_pulses:0 +I (124274) example: new speed:399.000000 +I (124284) example: expect speed: 0.000000 real_pulses:0 +I (124284) example: new speed:399.000000 +I (124294) example: expect speed: 0.000000 real_pulses:0 +I (124294) example: new speed:399.000000 +I (124304) example: expect speed: 0.000000 real_pulses:0 +I (124304) example: new speed:399.000000 +I (124314) example: expect speed: 0.000000 real_pulses:0 +I (124314) example: new speed:399.000000 +I (124324) example: expect speed: 0.000000 real_pulses:0 +I (124324) example: new speed:399.000000 +I (124334) example: expect speed: 0.000000 real_pulses:0 +I (124334) example: new speed:399.000000 +I (124344) example: expect speed: 0.000000 real_pulses:0 +I (124344) example: new speed:399.000000 +I (124354) example: expect speed: 0.000000 real_pulses:0 +I (124354) example: new speed:399.000000 +I (124364) modbus tcp: ModBusSlave_recv() +I (124364) modbus: ModbusSlaveProcess() +I (124364) modbus: check id... +I (124364) modbus: ok +I (124364) modbus: add: 0, length: 10 +I (124364) modbus: Read Holding Registers +I (124364) example: expect speed: 0.000000 real_pulses:0 +I (124374) example: new speed:399.000000 +I (124374) example: expect speed: 0.000000 real_pulses:0 +I (124374) example: new speed:399.000000 +I (124384) example: expect speed: 0.000000 real_pulses:0 +I (124384) example: new speed:399.000000 +I (124394) example: expect speed: 0.000000 real_pulses:0 +I (124394) example: new speed:399.000000 +I (124404) example: expect speed: 0.000000 real_pulses:0 +I (124404) example: new speed:399.000000 +I (124414) example: expect speed: 0.000000 real_pulses:0 +I (124414) example: new speed:399.000000 +I (124424) example: expect speed: 0.000000 real_pulses:0 +I (124424) example: new speed:399.000000 +I (124434) example: expect speed: 0.000000 real_pulses:0 +I (124434) example: new speed:399.000000 +I (124444) example: expect speed: 0.000000 real_pulses:0 +I (124444) example: new speed:399.000000 +I (124454) example: expect speed: 0.000000 real_pulses:0 +I (124454) example: new speed:399.000000 +I (124464) example: expect speed: 0.000000 real_pulses:0 +I (124474) example: new speed:399.000000 +I (124474) example: expect speed: 0.000000 real_pulses:0 +I (124484) example: new speed:399.000000 +I (124484) example: expect speed: 0.000000 real_pulses:0 +I (124484) example: new speed:399.000000 +I (124494) example: expect speed: 0.000000 real_pulses:0 +I (124494) example: new speed:399.000000 +I (124504) example: expect speed: 0.000000 real_pulses:0 +I (124504) example: new speed:399.000000 +I (124514) example: expect speed: 0.000000 real_pulses:0 +I (124514) example: new speed:399.000000 +I (124524) example: expect speed: 0.000000 real_pulses:0 +I (124534) example: new speed:399.000000 +I (124534) example: expect speed: 0.000000 real_pulses:0 +I (124534) example: new speed:399.000000 +I (124544) example: expect speed: 0.000000 real_pulses:0 +I (124544) example: new speed:399.000000 +I (124554) example: expect speed: 0.000000 real_pulses:0 +I (124554) example: new speed:399.000000 +I (124564) example: expect speed: 0.000000 real_pulses:0 +I (124564) example: new speed:399.000000 +I (124574) example: expect speed: 0.000000 real_pulses:0 +I (124574) example: new speed:399.000000 +I (124584) example: expect speed: 0.000000 real_pulses:0 +I (124584) example: new speed:399.000000 +I (124594) example: expect speed: 0.000000 real_pulses:0 +I (124594) example: new speed:399.000000 +I (124604) example: expect speed: 0.000000 real_pulses:0 +I (124604) example: new speed:399.000000 +I (124614) example: expect speed: 0.000000 real_pulses:0 +I (124614) example: new speed:399.000000 +I (124624) example: expect speed: 0.000000 real_pulses:0 +I (124624) example: new speed:399.000000 +I (124634) example: expect speed: 0.000000 real_pulses:0 +I (124634) example: new speed:399.000000 +I (124644) example: expect speed: 0.000000 real_pulses:0 +I (124644) example: new speed:399.000000 +I (124654) example: expect speed: 0.000000 real_pulses:0 +I (124654) example: new speed:399.000000 +I (124664) example: expect speed: 0.000000 real_pulses:0 +I (124664) example: new speed:399.000000 +I (124674) example: expect speed: 0.000000 real_pulses:0 +I (124674) example: new speed:399.000000 +I (124684) example: expect speed: 0.000000 real_pulses:0 +I (124684) example: new speed:399.000000 +I (124694) example: expect speed: 0.000000 real_pulses:0 +I (124694) example: new speed:399.000000 +I (124704) example: expect speed: 0.000000 real_pulses:0 +I (124704) example: new speed:399.000000 +I (124714) example: expect speed: 0.000000 real_pulses:0 +I (124714) example: new speed:399.000000 +I (124724) example: expect speed: 0.000000 real_pulses:0 +I (124724) example: new speed:399.000000 +I (124734) example: expect speed: 0.000000 real_pulses:0 +I (124734) example: new speed:399.000000 +I (124744) example: expect speed: 0.000000 real_pulses:0 +I (124744) example: new speed:399.000000 +I (124754) example: expect speed: 0.000000 real_pulses:0 +I (124754) example: new speed:399.000000 +I (124764) example: expect speed: 0.000000 real_pulses:0 +I (124764) example: new speed:399.000000 +I (124774) example: expect speed: 0.000000 real_pulses:0 +I (124774) example: new speed:399.000000 +I (124784) example: expect speed: 0.000000 real_pulses:0 +I (124784) example: new speed:399.000000 +I (124794) example: expect speed: 0.000000 real_pulses:0 +I (124794) example: new speed:399.000000 +I (124804) example: expect speed: 0.000000 real_pulses:0 +I (124804) example: new speed:399.000000 +I (124814) example: expect speed: 0.000000 real_pulses:0 +I (124814) example: new speed:399.000000 +I (124824) example: expect speed: 0.000000 real_pulses:0 +I (124824) example: new speed:399.000000 +I (124834) example: expect speed: 0.000000 real_pulses:0 +I (124834) example: new speed:399.000000 +I (124844) example: expect speed: 0.000000 real_pulses:0 +I (124844) example: new speed:399.000000 +I (124854) example: expect speed: 0.000000 real_pulses:0 +I (124854) example: new speed:399.000000 +I (124864) example: expect speed: 0.000000 real_pulses:0 +I (124864) example: new speed:399.000000 +I (124874) example: expect speed: 0.000000 real_pulses:0 +I (124874) example: new speed:399.000000 +I (124884) example: expect speed: 0.000000 real_pulses:0 +I (124884) example: new speed:399.000000 +I (124894) example: expect speed: 0.000000 real_pulses:0 +I (124894) example: new speed:399.000000 +I (124904) example: expect speed: 0.000000 real_pulses:0 +I (124904) example: new speed:399.000000 +I (124914) example: expect speed: 0.000000 real_pulses:0 +I (124914) example: new speed:399.000000 +I (124924) example: expect speed: 0.000000 real_pulses:0 +I (124924) example: new speed:399.000000 +I (124934) example: expect speed: 0.000000 real_pulses:0 +I (124934) example: new speed:399.000000 +I (124944) example: expect speed: 0.000000 real_pulses:0 +I (124944) example: new speed:399.000000 +I (124954) example: expect speed: 0.000000 real_pulses:0 +I (124954) example: new speed:399.000000 +I (124964) example: expect speed: 0.000000 real_pulses:0 +I (124964) example: new speed:399.000000 +I (124974) example: expect speed: 0.000000 real_pulses:0 +I (124974) example: new speed:399.000000 +I (124984) example: expect speed: 0.000000 real_pulses:0 +I (124984) example: new speed:399.000000 +I (124994) example: expect speed: 0.000000 real_pulses:0 +I (124994) example: new speed:399.000000 +I (125004) example: expect speed: 0.000000 real_pulses:0 +I (125004) example: new speed:399.000000 +I (125014) example: expect speed: 0.000000 real_pulses:0 +I (125014) example: new speed:399.000000 +I (125024) example: expect speed: 0.000000 real_pulses:0 +I (125024) example: new speed:399.000000 +I (125034) example: expect speed: 0.000000 real_pulses:0 +I (125034) example: new speed:399.000000 +I (125044) example: expect speed: 0.000000 real_pulses:0 +I (125044) example: new speed:399.000000 +I (125054) example: expect speed: 0.000000 real_pulses:0 +I (125054) example: new speed:399.000000 +I (125064) example: expect speed: 0.000000 real_pulses:0 +I (125064) example: new speed:399.000000 +I (125074) example: expect speed: 0.000000 real_pulses:0 +I (125074) example: new speed:399.000000 +I (125084) example: expect speed: 0.000000 real_pulses:0 +I (125084) example: new speed:399.000000 +I (125094) example: expect speed: 0.000000 real_pulses:0 +I (125094) example: new speed:399.000000 +I (125104) example: expect speed: 0.000000 real_pulses:0 +I (125104) example: new speed:399.000000 +I (125114) example: expect speed: 0.000000 real_pulses:0 +I (125114) example: new speed:399.000000 +I (125124) example: expect speed: 0.000000 real_pulses:0 +I (125124) example: new speed:399.000000 +I (125134) example: expect speed: 0.000000 real_pulses:0 +I (125134) example: new speed:399.000000 +I (125144) example: expect speed: 0.000000 real_pulses:0 +I (125144) example: new speed:399.000000 +I (125154) example: expect speed: 0.000000 real_pulses:0 +I (125154) example: new speed:399.000000 +I (125164) example: expect speed: 0.000000 real_pulses:0 +I (125164) example: new speed:399.000000 +I (125174) example: expect speed: 0.000000 real_pulses:0 +I (125174) example: new speed:399.000000 +I (125184) example: expect speed: 0.000000 real_pulses:0 +I (125194) example: new speed:399.000000 +I (125194) example: expect speed: 0.000000 real_pulses:0 +I (125194) example: new speed:399.000000 +I (125204) example: expect speed: 0.000000 real_pulses:0 +I (125204) example: new speed:399.000000 +I (125214) example: expect speed: 0.000000 real_pulses:0 +I (125214) example: new speed:399.000000 +I (125224) example: expect speed: 0.000000 real_pulses:0 +I (125224) example: new speed:399.000000 +I (125234) example: expect speed: 0.000000 real_pulses:0 +I (125234) example: new speed:399.000000 +I (125244) example: expect speed: 0.000000 real_pulses:0 +I (125244) example: new speed:399.000000 +I (125254) example: expect speed: 0.000000 real_pulses:0 +I (125254) example: new speed:399.000000 +I (125264) example: expect speed: 0.000000 real_pulses:0 +I (125264) example: new speed:399.000000 +I (125274) example: expect speed: 0.000000 real_pulses:0 +I (125274) example: new speed:399.000000 +I (125284) example: expect speed: 0.000000 real_pulses:0 +I (125284) example: new speed:399.000000 +I (125294) example: expect speed: 0.000000 real_pulses:0 +I (125294) example: new speed:399.000000 +I (125304) example: expect speed: 0.000000 real_pulses:0 +I (125304) example: new speed:399.000000 +I (125314) example: expect speed: 0.000000 real_pulses:0 +I (125314) example: new speed:399.000000 +I (125324) example: expect speed: 0.000000 real_pulses:0 +I (125324) example: new speed:399.000000 +I (125334) example: expect speed: 0.000000 real_pulses:0 +I (125334) example: new speed:399.000000 +I (125344) example: expect speed: 0.000000 real_pulses:0 +I (125344) example: new speed:399.000000 +I (125354) example: expect speed: 0.000000 real_pulses:0 +I (125354) example: new speed:399.000000 +I (125364) example: expect speed: 0.000000 real_pulses:0 +I (125364) example: new speed:399.000000 +I (125374) example: expect speed: 0.000000 real_pulses:0 +I (125374) example: new speed:399.000000 +I (125384) example: expect speed: 0.000000 real_pulses:0 +I (125394) example: new speed:399.000000 +I (125394) example: expect speed: 0.000000 real_pulses:0 +I (125404) modbus tcp: ModBusSlave_recv() +I (125404) example: new speed:399.000000 +I (125404) modbus: ModbusSlaveProcess() +I (125404) modbus: check id... +I (125404) modbus: ok +I (125404) modbus: add: 0, length: 10 +I (125404) modbus: Read Holding Registers +I (125404) example: expect speed: 0.000000 real_pulses:0 +I (125414) example: new speed:399.000000 +I (125414) example: expect speed: 0.000000 real_pulses:0 +I (125414) example: new speed:399.000000 +I (125424) example: expect speed: 0.000000 real_pulses:0 +I (125424) example: new speed:399.000000 +I (125434) example: expect speed: 0.000000 real_pulses:0 +I (125434) example: new speed:399.000000 +I (125444) example: expect speed: 0.000000 real_pulses:0 +I (125444) example: new speed:399.000000 +I (125454) example: expect speed: 0.000000 real_pulses:0 +I (125454) example: new speed:399.000000 +I (125464) example: expect speed: 0.000000 real_pulses:0 +I (125464) example: new speed:399.000000 +I (125474) example: expect speed: 0.000000 real_pulses:0 +I (125474) example: new speed:399.000000 +I (125484) example: expect speed: 0.000000 real_pulses:0 +I (125494) example: new speed:399.000000 +I (125494) example: expect speed: 0.000000 real_pulses:0 +I (125504) example: new speed:399.000000 +I (125504) example: expect speed: 0.000000 real_pulses:0 +I (125504) example: new speed:399.000000 +I (125514) example: expect speed: 0.000000 real_pulses:0 +I (125514) example: new speed:399.000000 +I (125524) example: expect speed: 0.000000 real_pulses:0 +I (125524) example: new speed:399.000000 +I (125534) example: expect speed: 0.000000 real_pulses:0 +I (125534) example: new speed:399.000000 +I (125544) example: expect speed: 0.000000 real_pulses:0 +I (125554) example: new speed:399.000000 +I (125554) example: expect speed: 0.000000 real_pulses:0 +I (125554) example: new speed:399.000000 +I (125564) example: expect speed: 0.000000 real_pulses:0 +I (125564) example: new speed:399.000000 +I (125574) example: expect speed: 0.000000 real_pulses:0 +I (125574) example: new speed:399.000000 +I (125584) example: expect speed: 0.000000 real_pulses:0 +I (125584) example: new speed:399.000000 +I (125594) example: expect speed: 0.000000 real_pulses:0 +I (125594) example: new speed:399.000000 +I (125604) example: expect speed: 0.000000 real_pulses:0 +I (125604) example: new speed:399.000000 +I (125614) example: expect speed: 0.000000 real_pulses:0 +I (125614) example: new speed:399.000000 +I (125624) example: expect speed: 0.000000 real_pulses:0 +I (125624) example: new speed:399.000000 +I (125634) example: expect speed: 0.000000 real_pulses:0 +I (125634) example: new speed:399.000000 +I (125644) example: expect speed: 0.000000 real_pulses:0 +I (125644) example: new speed:399.000000 +I (125654) example: expect speed: 0.000000 real_pulses:0 +I (125654) example: new speed:399.000000 +I (125664) example: expect speed: 0.000000 real_pulses:0 +I (125664) example: new speed:399.000000 +I (125674) example: expect speed: 0.000000 real_pulses:0 +I (125674) example: new speed:399.000000 +I (125684) example: expect speed: 0.000000 real_pulses:0 +I (125684) example: new speed:399.000000 +I (125694) example: expect speed: 0.000000 real_pulses:0 +I (125694) example: new speed:399.000000 +I (125704) example: expect speed: 0.000000 real_pulses:0 +I (125704) example: new speed:399.000000 +I (125714) example: expect speed: 0.000000 real_pulses:0 +I (125714) example: new speed:399.000000 +I (125724) example: expect speed: 0.000000 real_pulses:0 +I (125724) example: new speed:399.000000 +I (125734) example: expect speed: 0.000000 real_pulses:0 +I (125734) example: new speed:399.000000 +I (125744) example: expect speed: 0.000000 real_pulses:0 +I (125744) example: new speed:399.000000 +I (125754) example: expect speed: 0.000000 real_pulses:0 +I (125754) example: new speed:399.000000 +I (125764) example: expect speed: 0.000000 real_pulses:0 +I (125764) example: new speed:399.000000 +I (125774) example: expect speed: 0.000000 real_pulses:0 +I (125774) example: new speed:399.000000 +I (125784) example: expect speed: 0.000000 real_pulses:0 +I (125784) example: new speed:399.000000 +I (125794) example: expect speed: 0.000000 real_pulses:0 +I (125794) example: new speed:399.000000 +I (125804) example: expect speed: 0.000000 real_pulses:0 +I (125804) example: new speed:399.000000 +I (125814) example: expect speed: 0.000000 real_pulses:0 +I (125814) example: new speed:399.000000 +I (125824) example: expect speed: 0.000000 real_pulses:0 +I (125824) example: new speed:399.000000 +I (125834) example: expect speed: 0.000000 real_pulses:0 +I (125834) example: new speed:399.000000 +I (125844) example: expect speed: 0.000000 real_pulses:0 +I (125844) example: new speed:399.000000 +I (125854) example: expect speed: 0.000000 real_pulses:0 +I (125854) example: new speed:399.000000 +I (125864) example: expect speed: 0.000000 real_pulses:0 +I (125864) example: new speed:399.000000 +I (125874) example: expect speed: 0.000000 real_pulses:0 +I (125874) example: new speed:399.000000 +I (125884) example: expect speed: 0.000000 real_pulses:0 +I (125884) example: new speed:399.000000 +I (125894) example: expect speed: 0.000000 real_pulses:0 +I (125904) example: new speed:399.000000 +I (125904) example: expect speed: 0.000000 real_pulses:0 +I (125914) example: new speed:399.000000 +I (125914) example: expect speed: 0.000000 real_pulses:0 +I (125914) example: new speed:399.000000 +I (125924) example: expect speed: 0.000000 real_pulses:0 +I (125924) example: new speed:399.000000 +I (125934) example: expect speed: 0.000000 real_pulses:0 +I (125934) example: new speed:399.000000 +I (125944) example: expect speed: 0.000000 real_pulses:0 +I (125944) example: new speed:399.000000 +I (125954) example: expect speed: 0.000000 real_pulses:0 +I (125954) example: new speed:399.000000 +I (125964) example: expect speed: 0.000000 real_pulses:0 +I (125964) example: new speed:399.000000 +I (125974) example: expect speed: 0.000000 real_pulses:0 +I (125974) example: new speed:399.000000 +I (125984) example: expect speed: 0.000000 real_pulses:0 +I (125984) example: new speed:399.000000 +I (125994) example: expect speed: 0.000000 real_pulses:0 +I (125994) example: new speed:399.000000 +I (126004) example: expect speed: 0.000000 real_pulses:0 +I (126004) example: new speed:399.000000 +I (126014) example: expect speed: 0.000000 real_pulses:0 +I (126014) example: new speed:399.000000 +I (126024) example: expect speed: 0.000000 real_pulses:0 +I (126024) example: new speed:399.000000 +I (126034) example: expect speed: 0.000000 real_pulses:0 +I (126034) example: new speed:399.000000 +I (126044) example: expect speed: 0.000000 real_pulses:0 +I (126044) example: new speed:399.000000 +I (126054) example: expect speed: 0.000000 real_pulses:0 +I (126054) example: new speed:399.000000 +I (126064) example: expect speed: 0.000000 real_pulses:0 +I (126064) example: new speed:399.000000 +I (126074) example: expect speed: 0.000000 real_pulses:0 +I (126074) example: new speed:399.000000 +I (126084) example: expect speed: 0.000000 real_pulses:0 +I (126084) example: new speed:399.000000 +I (126094) example: expect speed: 0.000000 real_pulses:0 +I (126094) example: new speed:399.000000 +I (126104) example: expect speed: 0.000000 real_pulses:0 +I (126104) example: new speed:399.000000 +I (126114) example: expect speed: 0.000000 real_pulses:0 +I (126114) example: new speed:399.000000 +I (126124) example: expect speed: 0.000000 real_pulses:0 +I (126124) example: new speed:399.000000 +I (126134) example: expect speed: 0.000000 real_pulses:0 +I (126134) example: new speed:399.000000 +I (126144) example: expect speed: 0.000000 real_pulses:0 +I (126144) example: new speed:399.000000 +I (126154) example: expect speed: 0.000000 real_pulses:0 +I (126154) example: new speed:399.000000 +I (126164) example: expect speed: 0.000000 real_pulses:0 +I (126164) example: new speed:399.000000 +I (126174) example: expect speed: 0.000000 real_pulses:0 +I (126174) example: new speed:399.000000 +I (126184) example: expect speed: 0.000000 real_pulses:0 +I (126184) example: new speed:399.000000 +I (126194) example: expect speed: 0.000000 real_pulses:0 +I (126194) example: new speed:399.000000 +I (126204) example: expect speed: 0.000000 real_pulses:0 +I (126204) example: new speed:399.000000 +I (126214) example: expect speed: 0.000000 real_pulses:0 +I (126214) example: new speed:399.000000 +I (126224) example: expect speed: 0.000000 real_pulses:0 +I (126224) example: new speed:399.000000 +I (126234) example: expect speed: 0.000000 real_pulses:0 +I (126234) example: new speed:399.000000 +I (126244) example: expect speed: 0.000000 real_pulses:0 +I (126244) example: new speed:399.000000 +I (126254) example: expect speed: 0.000000 real_pulses:0 +I (126254) example: new speed:399.000000 +I (126264) example: expect speed: 0.000000 real_pulses:0 +I (126264) example: new speed:399.000000 +I (126274) example: expect speed: 0.000000 real_pulses:0 +I (126274) example: new speed:399.000000 +I (126284) example: expect speed: 0.000000 real_pulses:0 +I (126284) example: new speed:399.000000 +I (126294) example: expect speed: 0.000000 real_pulses:0 +I (126294) example: new speed:399.000000 +I (126304) example: expect speed: 0.000000 real_pulses:0 +I (126304) example: new speed:399.000000 +I (126314) example: expect speed: 0.000000 real_pulses:0 +I (126314) example: new speed:399.000000 +I (126324) example: expect speed: 0.000000 real_pulses:0 +I (126324) example: new speed:399.000000 +I (126334) example: expect speed: 0.000000 real_pulses:0 +I (126334) example: new speed:399.000000 +I (126344) example: expect speed: 0.000000 real_pulses:0 +I (126344) example: new speed:399.000000 +I (126354) example: expect speed: 0.000000 real_pulses:0 +I (126354) example: new speed:399.000000 +I (126364) example: expect speed: 0.000000 real_pulses:0 +I (126364) example: new speed:399.000000 +I (126374) example: expect speed: 0.000000 real_pulses:0 +I (126374) example: new speed:399.000000 +I (126384) example: expect speed: 0.000000 real_pulses:0 +I (126384) example: new speed:399.000000 +I (126394) example: expect speed: 0.000000 real_pulses:0 +I (126394) example: new speed:399.000000 +I (126414) example: expect speed: 0.000000 real_pulses:0 +I (126414) example: new speed:399.000000 +I (126414) modbus tcp: ModBusSlave_recv() +I (126414) modbus: ModbusSlaveProcess() +I (126414) modbus: check id... +I (126414) modbus: ok +I (126414) modbus: add: 0, length: 10 +I (126414) modbus: Read Holding Registers +I (126414) example: expect speed: 0.000000 real_pulses:0 +I (126424) example: new speed:399.000000 +I (126424) example: expect speed: 0.000000 real_pulses:0 +I (126424) example: new speed:399.000000 +I (126434) example: expect speed: 0.000000 real_pulses:0 +I (126434) example: new speed:399.000000 +I (126444) example: expect speed: 0.000000 real_pulses:0 +I (126444) example: new speed:399.000000 +I (126454) example: expect speed: 0.000000 real_pulses:0 +I (126454) example: new speed:399.000000 +I (126464) example: expect speed: 0.000000 real_pulses:0 +I (126464) example: new speed:399.000000 +I (126474) example: expect speed: 0.000000 real_pulses:0 +I (126484) example: new speed:399.000000 +I (126484) example: expect speed: 0.000000 real_pulses:0 +I (126484) example: new speed:399.000000 +I (126494) example: expect speed: 0.000000 real_pulses:0 +I (126494) example: new speed:399.000000 +I (126504) example: expect speed: 0.000000 real_pulses:0 +I (126504) example: new speed:399.000000 +I (126514) example: expect speed: 0.000000 real_pulses:0 +I (126524) example: new speed:399.000000 +I (126524) example: expect speed: 0.000000 real_pulses:0 +I (126524) example: new speed:399.000000 +I (126534) example: expect speed: 0.000000 real_pulses:0 +I (126534) example: new speed:399.000000 +I (126544) example: expect speed: 0.000000 real_pulses:0 +I (126544) example: new speed:399.000000 +I (126554) example: expect speed: 0.000000 real_pulses:0 +I (126554) example: new speed:399.000000 +I (126564) example: expect speed: 0.000000 real_pulses:0 +I (126564) example: new speed:399.000000 +I (126574) example: expect speed: 0.000000 real_pulses:0 +I (126584) example: new speed:399.000000 +I (126584) example: expect speed: 0.000000 real_pulses:0 +I (126584) example: new speed:399.000000 +I (126594) example: expect speed: 0.000000 real_pulses:0 +I (126594) example: new speed:399.000000 +I (126604) example: expect speed: 0.000000 real_pulses:0 +I (126604) example: new speed:399.000000 +I (126614) example: expect speed: 0.000000 real_pulses:0 +I (126624) example: new speed:399.000000 +I (126624) example: expect speed: 0.000000 real_pulses:0 +I (126624) example: new speed:399.000000 +I (126634) example: expect speed: 0.000000 real_pulses:0 +I (126634) example: new speed:399.000000 +I (126644) example: expect speed: 0.000000 real_pulses:0 +I (126644) example: new speed:399.000000 +I (126654) example: expect speed: 0.000000 real_pulses:0 +I (126654) example: new speed:399.000000 +I (126664) example: expect speed: 0.000000 real_pulses:0 +I (126664) example: new speed:399.000000 +I (126674) example: expect speed: 0.000000 real_pulses:0 +I (126674) example: new speed:399.000000 +I (126684) example: expect speed: 0.000000 real_pulses:0 +I (126684) example: new speed:399.000000 +I (126694) example: expect speed: 0.000000 real_pulses:0 +I (126694) example: new speed:399.000000 +I (126704) example: expect speed: 0.000000 real_pulses:0 +I (126704) example: new speed:399.000000 +I (126714) example: expect speed: 0.000000 real_pulses:0 +I (126714) example: new speed:399.000000 +I (126724) example: expect speed: 0.000000 real_pulses:0 +I (126724) example: new speed:399.000000 +I (126734) example: expect speed: 0.000000 real_pulses:0 +I (126734) example: new speed:399.000000 +I (126744) example: expect speed: 0.000000 real_pulses:0 +I (126744) example: new speed:399.000000 +I (126754) example: expect speed: 0.000000 real_pulses:0 +I (126754) example: new speed:399.000000 +I (126764) example: expect speed: 0.000000 real_pulses:0 +I (126764) example: new speed:399.000000 +I (126774) example: expect speed: 0.000000 real_pulses:0 +I (126774) example: new speed:399.000000 +I (126784) example: expect speed: 0.000000 real_pulses:0 +I (126784) example: new speed:399.000000 +I (126794) example: expect speed: 0.000000 real_pulses:0 +I (126794) example: new speed:399.000000 +I (126804) example: expect speed: 0.000000 real_pulses:0 +I (126804) example: new speed:399.000000 +I (126814) example: expect speed: 0.000000 real_pulses:0 +I (126814) example: new speed:399.000000 +I (126824) example: expect speed: 0.000000 real_pulses:0 +I (126824) example: new speed:399.000000 +I (126834) example: expect speed: 0.000000 real_pulses:0 +I (126834) example: new speed:399.000000 +I (126844) example: expect speed: 0.000000 real_pulses:0 +I (126844) example: new speed:399.000000 +I (126854) example: expect speed: 0.000000 real_pulses:0 +I (126854) example: new speed:399.000000 +I (126864) example: expect speed: 0.000000 real_pulses:0 +I (126864) example: new speed:399.000000 +I (126874) example: expect speed: 0.000000 real_pulses:0 +I (126874) example: new speed:399.000000 +I (126884) example: expect speed: 0.000000 real_pulses:0 +I (126884) example: new speed:399.000000 +I (126894) example: expect speed: 0.000000 real_pulses:0 +I (126894) example: new speed:399.000000 +I (126904) example: expect speed: 0.000000 real_pulses:0 +I (126904) example: new speed:399.000000 +I (126914) example: expect speed: 0.000000 real_pulses:0 +I (126914) example: new speed:399.000000 +I (126924) example: expect speed: 0.000000 real_pulses:0 +I (126924) example: new speed:399.000000 +I (126934) example: expect speed: 0.000000 real_pulses:0 +I (126934) example: new speed:399.000000 +I (126944) example: expect speed: 0.000000 real_pulses:0 +I (126944) example: new speed:399.000000 +I (126954) example: expect speed: 0.000000 real_pulses:0 +I (126954) example: new speed:399.000000 +I (126964) example: expect speed: 0.000000 real_pulses:0 +I (126964) example: new speed:399.000000 +I (126974) example: expect speed: 0.000000 real_pulses:0 +I (126974) example: new speed:399.000000 +I (126984) example: expect speed: 0.000000 real_pulses:0 +I (126984) example: new speed:399.000000 +I (126994) example: expect speed: 0.000000 real_pulses:0 +I (126994) example: new speed:399.000000 +I (127004) example: expect speed: 0.000000 real_pulses:0 +I (127004) example: new speed:399.000000 +I (127014) example: expect speed: 0.000000 real_pulses:0 +I (127014) example: new speed:399.000000 +I (127024) example: expect speed: 0.000000 real_pulses:0 +I (127024) example: new speed:399.000000 +I (127034) example: expect speed: 0.000000 real_pulses:0 +I (127034) example: new speed:399.000000 +I (127044) example: expect speed: 0.000000 real_pulses:0 +I (127044) example: new speed:399.000000 +I (127054) example: expect speed: 0.000000 real_pulses:0 +I (127054) example: new speed:399.000000 +I (127064) example: expect speed: 0.000000 real_pulses:0 +I (127064) example: new speed:399.000000 +I (127074) example: expect speed: 0.000000 real_pulses:0 +I (127074) example: new speed:399.000000 +I (127084) example: expect speed: 0.000000 real_pulses:0 +I (127084) example: new speed:399.000000 +I (127094) example: expect speed: 0.000000 real_pulses:0 +I (127094) example: new speed:399.000000 +I (127104) example: expect speed: 0.000000 real_pulses:0 +I (127104) example: new speed:399.000000 +I (127114) example: expect speed: 0.000000 real_pulses:0 +I (127114) example: new speed:399.000000 +I (127124) example: expect speed: 0.000000 real_pulses:0 +I (127124) example: new speed:399.000000 +I (127134) example: expect speed: 0.000000 real_pulses:0 +I (127134) example: new speed:399.000000 +I (127144) example: expect speed: 0.000000 real_pulses:0 +I (127144) example: new speed:399.000000 +I (127154) example: expect speed: 0.000000 real_pulses:0 +I (127154) example: new speed:399.000000 +I (127164) example: expect speed: 0.000000 real_pulses:0 +I (127164) example: new speed:399.000000 +I (127174) example: expect speed: 0.000000 real_pulses:0 +I (127174) example: new speed:399.000000 +I (127184) example: expect speed: 0.000000 real_pulses:0 +I (127184) example: new speed:399.000000 +I (127194) example: expect speed: 0.000000 real_pulses:0 +I (127194) example: new speed:399.000000 +I (127204) example: expect speed: 0.000000 real_pulses:0 +I (127204) example: new speed:399.000000 +I (127214) example: expect speed: 0.000000 real_pulses:0 +I (127214) example: new speed:399.000000 +I (127224) example: expect speed: 0.000000 real_pulses:0 +I (127224) example: new speed:399.000000 +I (127234) example: expect speed: 0.000000 real_pulses:0 +I (127234) example: new speed:399.000000 +I (127244) example: expect speed: 0.000000 real_pulses:0 +I (127244) example: new speed:399.000000 +I (127254) example: expect speed: 0.000000 real_pulses:0 +I (127254) example: new speed:399.000000 +I (127264) example: expect speed: 0.000000 real_pulses:0 +I (127264) example: new speed:399.000000 +I (127274) example: expect speed: 0.000000 real_pulses:0 +I (127274) example: new speed:399.000000 +I (127284) example: expect speed: 0.000000 real_pulses:0 +I (127284) example: new speed:399.000000 +I (127294) example: expect speed: 0.000000 real_pulses:0 +I (127294) example: new speed:399.000000 +I (127304) example: expect speed: 0.000000 real_pulses:0 +I (127304) example: new speed:399.000000 +I (127314) example: expect speed: 0.000000 real_pulses:0 +I (127314) example: new speed:399.000000 +I (127324) example: expect speed: 0.000000 real_pulses:0 +I (127324) example: new speed:399.000000 +I (127334) example: expect speed: 0.000000 real_pulses:0 +I (127334) example: new speed:399.000000 +I (127344) example: expect speed: 0.000000 real_pulses:0 +I (127344) example: new speed:399.000000 +I (127354) example: expect speed: 0.000000 real_pulses:0 +I (127354) example: new speed:399.000000 +I (127364) example: expect speed: 0.000000 real_pulses:0 +I (127364) example: new speed:399.000000 +I (127374) example: expect speed: 0.000000 real_pulses:0 +I (127374) example: new speed:399.000000 +I (127384) example: expect speed: 0.000000 real_pulses:0 +I (127384) example: new speed:399.000000 +I (127394) example: expect speed: 0.000000 real_pulses:0 +I (127394) example: new speed:399.000000 +I (127404) example: expect speed: 0.000000 real_pulses:0 +I (127404) example: new speed:399.000000 +I (127414) example: expect speed: 0.000000 real_pulses:0 +I (127414) example: new speed:399.000000 +I (127424) example: expect speed: 0.000000 real_pulses:0 +I (127424) example: new speed:399.000000 +I (127434) example: expect speed: 0.000000 real_pulses:0 +I (127444) example: new speed:399.000000 +I (127444) modbus tcp: ModBusSlave_recv() +I (127444) modbus: ModbusSlaveProcess() +I (127444) modbus: check id... +I (127444) modbus: ok +I (127444) modbus: add: 0, length: 10 +I (127444) modbus: Read Holding Registers +I (127444) example: expect speed: 0.000000 real_pulses:0 +I (127454) example: new speed:399.000000 +I (127454) example: expect speed: 0.000000 real_pulses:0 +I (127454) example: new speed:399.000000 +I (127464) example: expect speed: 0.000000 real_pulses:0 +I (127464) example: new speed:399.000000 +I (127474) example: expect speed: 0.000000 real_pulses:0 +I (127474) example: new speed:399.000000 +I (127484) example: expect speed: 0.000000 real_pulses:0 +I (127494) example: new speed:399.000000 +I (127494) example: expect speed: 0.000000 real_pulses:0 +I (127494) example: new speed:399.000000 +I (127504) example: expect speed: 0.000000 real_pulses:0 +I (127504) example: new speed:399.000000 +I (127514) example: expect speed: 0.000000 real_pulses:0 +I (127514) example: new speed:399.000000 +I (127524) example: expect speed: 0.000000 real_pulses:0 +I (127524) example: new speed:399.000000 +I (127534) example: expect speed: 0.000000 real_pulses:0 +I (127544) example: new speed:399.000000 +I (127544) example: expect speed: 0.000000 real_pulses:0 +I (127544) example: new speed:399.000000 +I (127554) example: expect speed: 0.000000 real_pulses:0 +I (127554) example: new speed:399.000000 +I (127564) example: expect speed: 0.000000 real_pulses:0 +I (127564) example: new speed:399.000000 +I (127574) example: expect speed: 0.000000 real_pulses:0 +I (127574) example: new speed:399.000000 +I (127584) example: expect speed: 0.000000 real_pulses:0 +I (127584) example: new speed:399.000000 +I (127594) example: expect speed: 0.000000 real_pulses:0 +I (127594) example: new speed:399.000000 +I (127604) example: expect speed: 0.000000 real_pulses:0 +I (127604) example: new speed:399.000000 +I (127614) example: expect speed: 0.000000 real_pulses:0 +I (127614) example: new speed:399.000000 +I (127624) example: expect speed: 0.000000 real_pulses:0 +I (127624) example: new speed:399.000000 +I (127634) example: expect speed: 0.000000 real_pulses:0 +I (127634) example: new speed:399.000000 +I (127644) example: expect speed: 0.000000 real_pulses:0 +I (127644) example: new speed:399.000000 +I (127654) example: expect speed: 0.000000 real_pulses:0 +I (127654) example: new speed:399.000000 +I (127664) example: expect speed: 0.000000 real_pulses:0 +I (127664) example: new speed:399.000000 +I (127674) example: expect speed: 0.000000 real_pulses:0 +I (127674) example: new speed:399.000000 +I (127684) example: expect speed: 0.000000 real_pulses:0 +I (127684) example: new speed:399.000000 +I (127694) example: expect speed: 0.000000 real_pulses:0 +I (127694) example: new speed:399.000000 +I (127704) example: expect speed: 0.000000 real_pulses:0 +I (127704) example: new speed:399.000000 +I (127714) example: expect speed: 0.000000 real_pulses:0 +I (127714) example: new speed:399.000000 +I (127724) example: expect speed: 0.000000 real_pulses:0 +I (127724) example: new speed:399.000000 +I (127734) example: expect speed: 0.000000 real_pulses:0 +I (127734) example: new speed:399.000000 +I (127744) example: expect speed: 0.000000 real_pulses:0 +I (127744) example: new speed:399.000000 +I (127754) example: expect speed: 0.000000 real_pulses:0 +I (127754) example: new speed:399.000000 +I (127764) example: expect speed: 0.000000 real_pulses:0 +I (127764) example: new speed:399.000000 +I (127774) example: expect speed: 0.000000 real_pulses:0 +I (127774) example: new speed:399.000000 +I (127784) example: expect speed: 0.000000 real_pulses:0 +I (127784) example: new speed:399.000000 +I (127794) example: expect speed: 0.000000 real_pulses:0 +I (127794) example: new speed:399.000000 +I (127804) example: expect speed: 0.000000 real_pulses:0 +I (127804) example: new speed:399.000000 +I (127814) example: expect speed: 0.000000 real_pulses:0 +I (127814) example: new speed:399.000000 +I (127824) example: expect speed: 0.000000 real_pulses:0 +I (127824) example: new speed:399.000000 +I (127834) example: expect speed: 0.000000 real_pulses:0 +I (127834) example: new speed:399.000000 +I (127844) example: expect speed: 0.000000 real_pulses:0 +I (127844) example: new speed:399.000000 +I (127854) example: expect speed: 0.000000 real_pulses:0 +I (127854) example: new speed:399.000000 +I (127864) example: expect speed: 0.000000 real_pulses:0 +I (127864) example: new speed:399.000000 +I (127874) example: expect speed: 0.000000 real_pulses:0 +I (127874) example: new speed:399.000000 +I (127884) example: expect speed: 0.000000 real_pulses:0 +I (127884) example: new speed:399.000000 +I (127894) example: expect speed: 0.000000 real_pulses:0 +I (127894) example: new speed:399.000000 +I (127904) example: expect speed: 0.000000 real_pulses:0 +I (127904) example: new speed:399.000000 +I (127914) example: expect speed: 0.000000 real_pulses:0 +I (127914) example: new speed:399.000000 +I (127924) example: expect speed: 0.000000 real_pulses:0 +I (127924) example: new speed:399.000000 +I (127934) example: expect speed: 0.000000 real_pulses:0 +I (127934) example: new speed:399.000000 +I (127944) example: expect speed: 0.000000 real_pulses:0 +I (127944) example: new speed:399.000000 +I (127954) example: expect speed: 0.000000 real_pulses:0 +I (127954) example: new speed:399.000000 +I (127964) example: expect speed: 0.000000 real_pulses:0 +I (127964) example: new speed:399.000000 +I (127974) example: expect speed: 0.000000 real_pulses:0 +I (127974) example: new speed:399.000000 +I (127984) example: expect speed: 0.000000 real_pulses:0 +I (127984) example: new speed:399.000000 +I (127994) example: expect speed: 0.000000 real_pulses:0 +I (127994) example: new speed:399.000000 +I (128004) example: expect speed: 0.000000 real_pulses:0 +I (128004) example: new speed:399.000000 +I (128014) example: expect speed: 0.000000 real_pulses:0 +I (128014) example: new speed:399.000000 +I (128024) example: expect speed: 0.000000 real_pulses:0 +I (128024) example: new speed:399.000000 +I (128034) example: expect speed: 0.000000 real_pulses:0 +I (128034) example: new speed:399.000000 +I (128044) example: expect speed: 0.000000 real_pulses:0 +I (128044) example: new speed:399.000000 +I (128054) example: expect speed: 0.000000 real_pulses:0 +I (128054) example: new speed:399.000000 +I (128064) example: expect speed: 0.000000 real_pulses:0 +I (128064) example: new speed:399.000000 +I (128074) example: expect speed: 0.000000 real_pulses:0 +I (128074) example: new speed:399.000000 +I (128084) example: expect speed: 0.000000 real_pulses:0 +I (128084) example: new speed:399.000000 +I (128094) example: expect speed: 0.000000 real_pulses:0 +I (128094) example: new speed:399.000000 +I (128104) example: expect speed: 0.000000 real_pulses:0 +I (128104) example: new speed:399.000000 +I (128114) example: expect speed: 0.000000 real_pulses:0 +I (128114) example: new speed:399.000000 +I (128124) example: expect speed: 0.000000 real_pulses:0 +I (128124) example: new speed:399.000000 +I (128134) example: expect speed: 0.000000 real_pulses:0 +I (128134) example: new speed:399.000000 +I (128144) example: expect speed: 0.000000 real_pulses:0 +I (128144) example: new speed:399.000000 +I (128154) example: expect speed: 0.000000 real_pulses:0 +I (128154) example: new speed:399.000000 +I (128164) example: expect speed: 0.000000 real_pulses:0 +I (128164) example: new speed:399.000000 +I (128174) example: expect speed: 0.000000 real_pulses:0 +I (128174) example: new speed:399.000000 +I (128184) example: expect speed: 0.000000 real_pulses:0 +I (128184) example: new speed:399.000000 +I (128194) example: expect speed: 0.000000 real_pulses:0 +I (128194) example: new speed:399.000000 +I (128204) example: expect speed: 0.000000 real_pulses:0 +I (128204) example: new speed:399.000000 +I (128214) example: expect speed: 0.000000 real_pulses:0 +I (128214) example: new speed:399.000000 +I (128224) example: expect speed: 0.000000 real_pulses:0 +I (128224) example: new speed:399.000000 +I (128234) example: expect speed: 0.000000 real_pulses:0 +I (128234) example: new speed:399.000000 +I (128244) example: expect speed: 0.000000 real_pulses:0 +I (128244) example: new speed:399.000000 +I (128254) example: expect speed: 0.000000 real_pulses:0 +I (128264) example: new speed:399.000000 +I (128264) example: expect speed: 0.000000 real_pulses:0 +I (128274) example: new speed:399.000000 +I (128274) example: expect speed: 0.000000 real_pulses:0 +I (128274) example: new speed:399.000000 +I (128284) example: expect speed: 0.000000 real_pulses:0 +I (128284) example: new speed:399.000000 +I (128294) example: expect speed: 0.000000 real_pulses:0 +I (128294) example: new speed:399.000000 +I (128304) example: expect speed: 0.000000 real_pulses:0 +I (128304) example: new speed:399.000000 +I (128314) example: expect speed: 0.000000 real_pulses:0 +I (128314) example: new speed:399.000000 +I (128324) example: expect speed: 0.000000 real_pulses:0 +I (128324) example: new speed:399.000000 +I (128334) example: expect speed: 0.000000 real_pulses:0 +I (128334) example: new speed:399.000000 +I (128344) example: expect speed: 0.000000 real_pulses:0 +I (128344) example: new speed:399.000000 +I (128354) example: expect speed: 0.000000 real_pulses:0 +I (128354) example: new speed:399.000000 +I (128364) example: expect speed: 0.000000 real_pulses:0 +I (128364) example: new speed:399.000000 +I (128374) example: expect speed: 0.000000 real_pulses:0 +I (128374) example: new speed:399.000000 +I (128384) example: expect speed: 0.000000 real_pulses:0 +I (128384) example: new speed:399.000000 +I (128394) example: expect speed: 0.000000 real_pulses:0 +I (128394) example: new speed:399.000000 +I (128404) example: expect speed: 0.000000 real_pulses:0 +I (128404) example: new speed:399.000000 +I (128414) example: expect speed: 0.000000 real_pulses:0 +I (128414) example: new speed:399.000000 +I (128424) example: expect speed: 0.000000 real_pulses:0 +I (128424) example: new speed:399.000000 +I (128434) example: expect speed: 0.000000 real_pulses:0 +I (128434) example: new speed:399.000000 +I (128444) example: expect speed: 0.000000 real_pulses:0 +I (128444) example: new speed:399.000000 +I (128454) example: expect speed: 0.000000 real_pulses:0 +I (128464) example: new speed:399.000000 +I (128464) modbus tcp: ModBusSlave_recv() +I (128464) modbus: ModbusSlaveProcess() +I (128464) modbus: check id... +I (128464) modbus: ok +I (128464) modbus: add: 0, length: 10 +I (128464) modbus: Read Holding Registers +I (128464) example: expect speed: 0.000000 real_pulses:0 +I (128474) example: new speed:399.000000 +I (128474) example: expect speed: 0.000000 real_pulses:0 +I (128474) example: new speed:399.000000 +I (128484) example: expect speed: 0.000000 real_pulses:0 +I (128484) example: new speed:399.000000 +I (128494) example: expect speed: 0.000000 real_pulses:0 +I (128494) example: new speed:399.000000 +I (128504) example: expect speed: 0.000000 real_pulses:0 +I (128504) example: new speed:399.000000 +I (128514) example: expect speed: 0.000000 real_pulses:0 +I (128524) example: new speed:399.000000 +I (128524) example: expect speed: 0.000000 real_pulses:0 +I (128524) example: new speed:399.000000 +I (128534) example: expect speed: 0.000000 real_pulses:0 +I (128534) example: new speed:399.000000 +I (128544) example: expect speed: 0.000000 real_pulses:0 +I (128544) example: new speed:399.000000 +I (128554) example: expect speed: 0.000000 real_pulses:0 +I (128564) example: new speed:399.000000 +I (128564) example: expect speed: 0.000000 real_pulses:0 +I (128574) example: new speed:399.000000 +I (128574) example: expect speed: 0.000000 real_pulses:0 +I (128574) example: new speed:399.000000 +I (128584) example: expect speed: 0.000000 real_pulses:0 +I (128584) example: new speed:399.000000 +I (128594) example: expect speed: 0.000000 real_pulses:0 +I (128594) example: new speed:399.000000 +I (128604) example: expect speed: 0.000000 real_pulses:0 +I (128604) example: new speed:399.000000 +I (128614) example: expect speed: 0.000000 real_pulses:0 +I (128624) example: new speed:399.000000 +I (128624) example: expect speed: 0.000000 real_pulses:0 +I (128624) example: new speed:399.000000 +I (128634) example: expect speed: 0.000000 real_pulses:0 +I (128634) example: new speed:399.000000 +I (128644) example: expect speed: 0.000000 real_pulses:0 +I (128644) example: new speed:399.000000 +I (128654) example: expect speed: 0.000000 real_pulses:0 +I (128654) example: new speed:399.000000 +I (128664) example: expect speed: 0.000000 real_pulses:0 +I (128664) example: new speed:399.000000 +I (128674) example: expect speed: 0.000000 real_pulses:0 +I (128674) example: new speed:399.000000 +I (128684) example: expect speed: 0.000000 real_pulses:0 +I (128684) example: new speed:399.000000 +I (128694) example: expect speed: 0.000000 real_pulses:0 +I (128694) example: new speed:399.000000 +I (128704) example: expect speed: 0.000000 real_pulses:0 +I (128704) example: new speed:399.000000 +I (128714) example: expect speed: 0.000000 real_pulses:0 +I (128714) example: new speed:399.000000 +I (128724) example: expect speed: 0.000000 real_pulses:0 +I (128724) example: new speed:399.000000 +I (128734) example: expect speed: 0.000000 real_pulses:0 +I (128734) example: new speed:399.000000 +I (128744) example: expect speed: 0.000000 real_pulses:0 +I (128744) example: new speed:399.000000 +I (128754) example: expect speed: 0.000000 real_pulses:0 +I (128754) example: new speed:399.000000 +I (128764) example: expect speed: 0.000000 real_pulses:0 +I (128764) example: new speed:399.000000 +I (128774) example: expect speed: 0.000000 real_pulses:0 +I (128774) example: new speed:399.000000 +I (128784) example: expect speed: 0.000000 real_pulses:0 +I (128784) example: new speed:399.000000 +I (128794) example: expect speed: 0.000000 real_pulses:0 +I (128794) example: new speed:399.000000 +I (128804) example: expect speed: 0.000000 real_pulses:0 +I (128804) example: new speed:399.000000 +I (128814) example: expect speed: 0.000000 real_pulses:0 +I (128814) example: new speed:399.000000 +I (128824) example: expect speed: 0.000000 real_pulses:0 +I (128824) example: new speed:399.000000 +I (128834) example: expect speed: 0.000000 real_pulses:0 +I (128834) example: new speed:399.000000 +I (128844) example: expect speed: 0.000000 real_pulses:0 +I (128844) example: new speed:399.000000 +I (128854) example: expect speed: 0.000000 real_pulses:0 +I (128854) example: new speed:399.000000 +I (128864) example: expect speed: 0.000000 real_pulses:0 +I (128864) example: new speed:399.000000 +I (128874) example: expect speed: 0.000000 real_pulses:0 +I (128874) example: new speed:399.000000 +I (128884) example: expect speed: 0.000000 real_pulses:0 +I (128884) example: new speed:399.000000 +I (128894) example: expect speed: 0.000000 real_pulses:0 +I (128894) example: new speed:399.000000 +I (128904) example: expect speed: 0.000000 real_pulses:0 +I (128904) example: new speed:399.000000 +I (128914) example: expect speed: 0.000000 real_pulses:0 +I (128914) example: new speed:399.000000 +I (128924) example: expect speed: 0.000000 real_pulses:0 +I (128924) example: new speed:399.000000 +I (128934) example: expect speed: 0.000000 real_pulses:0 +I (128934) example: new speed:399.000000 +I (128944) example: expect speed: 0.000000 real_pulses:0 +I (128944) example: new speed:399.000000 +I (128954) example: expect speed: 0.000000 real_pulses:0 +I (128954) example: new speed:399.000000 +I (128964) example: expect speed: 0.000000 real_pulses:0 +I (128964) example: new speed:399.000000 +I (128974) example: expect speed: 0.000000 real_pulses:0 +I (128974) example: new speed:399.000000 +I (128984) example: expect speed: 0.000000 real_pulses:0 +I (128984) example: new speed:399.000000 +I (128994) example: expect speed: 0.000000 real_pulses:0 +I (128994) example: new speed:399.000000 +I (129004) example: expect speed: 0.000000 real_pulses:0 +I (129004) example: new speed:399.000000 +I (129014) example: expect speed: 0.000000 real_pulses:0 +I (129014) example: new speed:399.000000 +I (129024) example: expect speed: 0.000000 real_pulses:0 +I (129024) example: new speed:399.000000 +I (129034) example: expect speed: 0.000000 real_pulses:0 +I (129034) example: new speed:399.000000 +I (129044) example: expect speed: 0.000000 real_pulses:0 +I (129044) example: new speed:399.000000 +I (129054) example: expect speed: 0.000000 real_pulses:0 +I (129054) example: new speed:399.000000 +I (129064) example: expect speed: 0.000000 real_pulses:0 +I (129064) example: new speed:399.000000 +I (129074) example: expect speed: 0.000000 real_pulses:0 +I (129074) example: new speed:399.000000 +I (129084) example: expect speed: 0.000000 real_pulses:0 +I (129084) example: new speed:399.000000 +I (129094) example: expect speed: 0.000000 real_pulses:0 +I (129094) example: new speed:399.000000 +I (129104) example: expect speed: 0.000000 real_pulses:0 +I (129104) example: new speed:399.000000 +I (129114) example: expect speed: 0.000000 real_pulses:0 +I (129114) example: new speed:399.000000 +I (129124) example: expect speed: 0.000000 real_pulses:0 +I (129124) example: new speed:399.000000 +I (129134) example: expect speed: 0.000000 real_pulses:0 +I (129134) example: new speed:399.000000 +I (129144) example: expect speed: 0.000000 real_pulses:0 +I (129144) example: new speed:399.000000 +I (129154) example: expect speed: 0.000000 real_pulses:0 +I (129154) example: new speed:399.000000 +I (129164) example: expect speed: 0.000000 real_pulses:0 +I (129164) example: new speed:399.000000 +I (129174) example: expect speed: 0.000000 real_pulses:0 +I (129174) example: new speed:399.000000 +I (129184) example: expect speed: 0.000000 real_pulses:0 +I (129184) example: new speed:399.000000 +I (129194) example: expect speed: 0.000000 real_pulses:0 +I (129194) example: new speed:399.000000 +I (129204) example: expect speed: 0.000000 real_pulses:0 +I (129204) example: new speed:399.000000 +I (129214) example: expect speed: 0.000000 real_pulses:0 +I (129214) example: new speed:399.000000 +I (129224) example: expect speed: 0.000000 real_pulses:0 +I (129224) example: new speed:399.000000 +I (129234) example: expect speed: 0.000000 real_pulses:0 +I (129234) example: new speed:399.000000 +I (129244) example: expect speed: 0.000000 real_pulses:0 +I (129244) example: new speed:399.000000 +I (129254) example: expect speed: 0.000000 real_pulses:0 +I (129254) example: new speed:399.000000 +I (129264) example: expect speed: 0.000000 real_pulses:0 +I (129264) example: new speed:399.000000 +I (129274) example: expect speed: 0.000000 real_pulses:0 +I (129284) example: new speed:399.000000 +I (129284) example: expect speed: 0.000000 real_pulses:0 +I (129294) example: new speed:399.000000 +I (129294) example: expect speed: 0.000000 real_pulses:0 +I (129294) example: new speed:399.000000 +I (129304) example: expect speed: 0.000000 real_pulses:0 +I (129304) example: new speed:399.000000 +I (129314) example: expect speed: 0.000000 real_pulses:0 +I (129314) example: new speed:399.000000 +I (129324) example: expect speed: 0.000000 real_pulses:0 +I (129324) example: new speed:399.000000 +I (129334) example: expect speed: 0.000000 real_pulses:0 +I (129334) example: new speed:399.000000 +I (129344) example: expect speed: 0.000000 real_pulses:0 +I (129344) example: new speed:399.000000 +I (129354) example: expect speed: 0.000000 real_pulses:0 +I (129354) example: new speed:399.000000 +I (129364) example: expect speed: 0.000000 real_pulses:0 +I (129364) example: new speed:399.000000 +I (129374) example: expect speed: 0.000000 real_pulses:0 +I (129374) example: new speed:399.000000 +I (129384) example: expect speed: 0.000000 real_pulses:0 +I (129384) example: new speed:399.000000 +I (129394) example: expect speed: 0.000000 real_pulses:0 +I (129394) example: new speed:399.000000 +I (129404) example: expect speed: 0.000000 real_pulses:0 +I (129404) example: new speed:399.000000 +I (129414) example: expect speed: 0.000000 real_pulses:0 +I (129414) example: new speed:399.000000 +I (129424) example: expect speed: 0.000000 real_pulses:0 +I (129424) example: new speed:399.000000 +I (129434) example: expect speed: 0.000000 real_pulses:0 +I (129434) example: new speed:399.000000 +I (129444) example: expect speed: 0.000000 real_pulses:0 +I (129444) example: new speed:399.000000 +I (129454) example: expect speed: 0.000000 real_pulses:0 +I (129454) example: new speed:399.000000 +I (129464) example: expect speed: 0.000000 real_pulses:0 +I (129464) example: new speed:399.000000 +I (129474) example: expect speed: 0.000000 real_pulses:0 +I (129474) example: new speed:399.000000 +I (129484) modbus tcp: ModBusSlave_recv() +I (129484) modbus: ModbusSlaveProcess() +I (129484) modbus: check id... +I (129484) example: expect speed: 0.000000 real_pulses:0 +I (129484) modbus: ok +I (129484) example: new speed:399.000000 +I (129484) modbus: add: 0, length: 10 +I (129494) modbus: Read Holding Registers +I (129494) example: expect speed: 0.000000 real_pulses:0 +I (129504) example: new speed:399.000000 +I (129504) example: expect speed: 0.000000 real_pulses:0 +I (129504) example: new speed:399.000000 +I (129514) example: expect speed: 0.000000 real_pulses:0 +I (129514) example: new speed:399.000000 +I (129524) example: expect speed: 0.000000 real_pulses:0 +I (129524) example: new speed:399.000000 +I (129534) example: expect speed: 0.000000 real_pulses:0 +I (129534) example: new speed:399.000000 +I (129544) example: expect speed: 0.000000 real_pulses:0 +I (129554) example: new speed:399.000000 +I (129554) example: expect speed: 0.000000 real_pulses:0 +I (129554) example: new speed:399.000000 +I (129564) example: expect speed: 0.000000 real_pulses:0 +I (129564) example: new speed:399.000000 +I (129574) example: expect speed: 0.000000 real_pulses:0 +I (129574) example: new speed:399.000000 +I (129584) example: expect speed: 0.000000 real_pulses:0 +I (129594) example: new speed:399.000000 +I (129594) example: expect speed: 0.000000 real_pulses:0 +I (129604) example: new speed:399.000000 +I (129604) example: expect speed: 0.000000 real_pulses:0 +I (129604) example: new speed:399.000000 +I (129614) example: expect speed: 0.000000 real_pulses:0 +I (129614) example: new speed:399.000000 +I (129624) example: expect speed: 0.000000 real_pulses:0 +I (129624) example: new speed:399.000000 +I (129634) example: expect speed: 0.000000 real_pulses:0 +I (129634) example: new speed:399.000000 +I (129644) example: expect speed: 0.000000 real_pulses:0 +I (129654) example: new speed:399.000000 +I (129654) example: expect speed: 0.000000 real_pulses:0 +I (129664) example: new speed:399.000000 +I (129664) example: expect speed: 0.000000 real_pulses:0 +I (129664) example: new speed:399.000000 +I (129674) example: expect speed: 0.000000 real_pulses:0 +I (129674) example: new speed:399.000000 +I (129684) example: expect speed: 0.000000 real_pulses:0 +I (129684) example: new speed:399.000000 +I (129694) example: expect speed: 0.000000 real_pulses:0 +I (129694) example: new speed:399.000000 +I (129704) example: expect speed: 0.000000 real_pulses:0 +I (129704) example: new speed:399.000000 +I (129714) example: expect speed: 0.000000 real_pulses:0 +I (129714) example: new speed:399.000000 +I (129724) example: expect speed: 0.000000 real_pulses:0 +I (129724) example: new speed:399.000000 +I (129734) example: expect speed: 0.000000 real_pulses:0 +I (129734) example: new speed:399.000000 +I (129744) example: expect speed: 0.000000 real_pulses:0 +I (129744) example: new speed:399.000000 +I (129754) example: expect speed: 0.000000 real_pulses:0 +I (129754) example: new speed:399.000000 +I (129764) example: expect speed: 0.000000 real_pulses:0 +I (129764) example: new speed:399.000000 +I (129774) example: expect speed: 0.000000 real_pulses:0 +I (129774) example: new speed:399.000000 +I (129784) example: expect speed: 0.000000 real_pulses:0 +I (129784) example: new speed:399.000000 +I (129794) example: expect speed: 0.000000 real_pulses:0 +I (129794) example: new speed:399.000000 +I (129804) example: expect speed: 0.000000 real_pulses:0 +I (129804) example: new speed:399.000000 +I (129814) example: expect speed: 0.000000 real_pulses:0 +I (129814) example: new speed:399.000000 +I (129824) example: expect speed: 0.000000 real_pulses:0 +I (129824) example: new speed:399.000000 +I (129834) example: expect speed: 0.000000 real_pulses:0 +I (129834) example: new speed:399.000000 +I (129844) example: expect speed: 0.000000 real_pulses:0 +I (129844) example: new speed:399.000000 +I (129854) example: expect speed: 0.000000 real_pulses:0 +I (129854) example: new speed:399.000000 +I (129864) example: expect speed: 0.000000 real_pulses:0 +I (129864) example: new speed:399.000000 +I (129874) example: expect speed: 0.000000 real_pulses:0 +I (129874) example: new speed:399.000000 +I (129884) example: expect speed: 0.000000 real_pulses:0 +I (129884) example: new speed:399.000000 +I (129894) example: expect speed: 0.000000 real_pulses:0 +I (129894) example: new speed:399.000000 +I (129904) example: expect speed: 0.000000 real_pulses:0 +I (129904) example: new speed:399.000000 +I (129914) example: expect speed: 0.000000 real_pulses:0 +I (129914) example: new speed:399.000000 +I (129924) example: expect speed: 0.000000 real_pulses:0 +I (129924) example: new speed:399.000000 +I (129934) example: expect speed: 0.000000 real_pulses:0 +I (129934) example: new speed:399.000000 +I (129944) example: expect speed: 0.000000 real_pulses:0 +I (129944) example: new speed:399.000000 +I (129954) example: expect speed: 0.000000 real_pulses:0 +I (129954) example: new speed:399.000000 +I (129964) example: expect speed: 0.000000 real_pulses:0 +I (129964) example: new speed:399.000000 +I (129974) example: expect speed: 0.000000 real_pulses:0 +I (129974) example: new speed:399.000000 +I (129984) example: expect speed: 0.000000 real_pulses:0 +I (129984) example: new speed:399.000000 +I (129994) example: expect speed: 0.000000 real_pulses:0 +I (129994) example: new speed:399.000000 +I (130004) example: expect speed: 0.000000 real_pulses:0 +I (130004) example: new speed:399.000000 +I (130014) example: expect speed: 0.000000 real_pulses:0 +I (130014) example: new speed:399.000000 +I (130024) example: expect speed: 0.000000 real_pulses:0 +I (130024) example: new speed:399.000000 +I (130034) example: expect speed: 0.000000 real_pulses:0 +I (130034) example: new speed:399.000000 +I (130044) example: expect speed: 0.000000 real_pulses:0 +I (130044) example: new speed:399.000000 +I (130054) example: expect speed: 0.000000 real_pulses:0 +I (130054) example: new speed:399.000000 +I (130064) example: expect speed: 0.000000 real_pulses:0 +I (130064) example: new speed:399.000000 +I (130074) example: expect speed: 0.000000 real_pulses:0 +I (130074) example: new speed:399.000000 +I (130084) example: expect speed: 0.000000 real_pulses:0 +I (130084) example: new speed:399.000000 +I (130094) example: expect speed: 0.000000 real_pulses:0 +I (130094) example: new speed:399.000000 +I (130104) example: expect speed: 0.000000 real_pulses:0 +I (130104) example: new speed:399.000000 +I (130114) example: expect speed: 0.000000 real_pulses:0 +I (130114) example: new speed:399.000000 +I (130124) example: expect speed: 0.000000 real_pulses:0 +I (130124) example: new speed:399.000000 +I (130134) example: expect speed: 0.000000 real_pulses:0 +I (130134) example: new speed:399.000000 +I (130144) example: expect speed: 0.000000 real_pulses:0 +I (130144) example: new speed:399.000000 +I (130154) example: expect speed: 0.000000 real_pulses:0 +I (130154) example: new speed:399.000000 +I (130164) example: expect speed: 0.000000 real_pulses:0 +I (130164) example: new speed:399.000000 +I (130174) example: expect speed: 0.000000 real_pulses:0 +I (130174) example: new speed:399.000000 +I (130184) example: expect speed: 0.000000 real_pulses:0 +I (130184) example: new speed:399.000000 +I (130194) example: expect speed: 0.000000 real_pulses:0 +I (130194) example: new speed:399.000000 +I (130204) example: expect speed: 0.000000 real_pulses:0 +I (130204) example: new speed:399.000000 +I (130214) example: expect speed: 0.000000 real_pulses:0 +I (130214) example: new speed:399.000000 +I (130224) example: expect speed: 0.000000 real_pulses:0 +I (130224) example: new speed:399.000000 +I (130234) example: expect speed: 0.000000 real_pulses:0 +I (130234) example: new speed:399.000000 +I (130244) example: expect speed: 0.000000 real_pulses:0 +I (130244) example: new speed:399.000000 +I (130254) example: expect speed: 0.000000 real_pulses:0 +I (130254) example: new speed:399.000000 +I (130264) example: expect speed: 0.000000 real_pulses:0 +I (130264) example: new speed:399.000000 +I (130274) example: expect speed: 0.000000 real_pulses:0 +I (130274) example: new speed:399.000000 +I (130284) example: expect speed: 0.000000 real_pulses:0 +I (130284) example: new speed:399.000000 +I (130294) example: expect speed: 0.000000 real_pulses:0 +I (130294) example: new speed:399.000000 +I (130304) example: expect speed: 0.000000 real_pulses:0 +I (130314) example: new speed:399.000000 +I (130314) example: expect speed: 0.000000 real_pulses:0 +I (130314) example: new speed:399.000000 +I (130324) example: expect speed: 0.000000 real_pulses:0 +I (130324) example: new speed:399.000000 +I (130334) example: expect speed: 0.000000 real_pulses:0 +I (130334) example: new speed:399.000000 +I (130344) example: expect speed: 0.000000 real_pulses:0 +I (130344) example: new speed:399.000000 +I (130354) example: expect speed: 0.000000 real_pulses:0 +I (130354) example: new speed:399.000000 +I (130364) example: expect speed: 0.000000 real_pulses:0 +I (130364) example: new speed:399.000000 +I (130374) example: expect speed: 0.000000 real_pulses:0 +I (130374) example: new speed:399.000000 +I (130384) example: expect speed: 0.000000 real_pulses:0 +I (130384) example: new speed:399.000000 +I (130394) example: expect speed: 0.000000 real_pulses:0 +I (130394) example: new speed:399.000000 +I (130404) example: expect speed: 0.000000 real_pulses:0 +I (130404) example: new speed:399.000000 +I (130414) example: expect speed: 0.000000 real_pulses:0 +I (130414) example: new speed:399.000000 +I (130424) example: expect speed: 0.000000 real_pulses:0 +I (130424) example: new speed:399.000000 +I (130434) example: expect speed: 0.000000 real_pulses:0 +I (130434) example: new speed:399.000000 +I (130444) example: expect speed: 0.000000 real_pulses:0 +I (130444) example: new speed:399.000000 +I (130454) example: expect speed: 0.000000 real_pulses:0 +I (130454) example: new speed:399.000000 +I (130464) example: expect speed: 0.000000 real_pulses:0 +I (130464) example: new speed:399.000000 +I (130474) example: expect speed: 0.000000 real_pulses:0 +I (130474) example: new speed:399.000000 +I (130484) example: expect speed: 0.000000 real_pulses:0 +I (130484) example: new speed:399.000000 +I (130494) example: expect speed: 0.000000 real_pulses:0 +I (130494) example: new speed:399.000000 +I (130504) example: expect speed: 0.000000 real_pulses:0 +I (130514) example: new speed:399.000000 +I (130514) modbus tcp: ModBusSlave_recv() +I (130514) modbus: ModbusSlaveProcess() +I (130514) modbus: check id... +I (130514) modbus: ok +I (130514) modbus: add: 0, length: 10 +I (130514) modbus: Read Holding Registers +I (130514) example: expect speed: 0.000000 real_pulses:0 +I (130524) example: new speed:399.000000 +I (130524) example: expect speed: 0.000000 real_pulses:0 +I (130524) example: new speed:399.000000 +I (130534) example: expect speed: 0.000000 real_pulses:0 +I (130534) example: new speed:399.000000 +I (130544) example: expect speed: 0.000000 real_pulses:0 +I (130544) example: new speed:399.000000 +I (130554) example: expect speed: 0.000000 real_pulses:0 +I (130554) example: new speed:399.000000 +I (130564) example: expect speed: 0.000000 real_pulses:0 +I (130564) example: new speed:399.000000 +I (130574) example: expect speed: 0.000000 real_pulses:0 +I (130584) example: new speed:399.000000 +I (130584) example: expect speed: 0.000000 real_pulses:0 +I (130584) example: new speed:399.000000 +I (130594) example: expect speed: 0.000000 real_pulses:0 +I (130594) example: new speed:399.000000 +I (130604) example: expect speed: 0.000000 real_pulses:0 +I (130604) example: new speed:399.000000 +I (130614) example: expect speed: 0.000000 real_pulses:0 +I (130614) example: new speed:399.000000 +I (130624) example: expect speed: 0.000000 real_pulses:0 +I (130634) example: new speed:399.000000 +I (130634) example: expect speed: 0.000000 real_pulses:0 +I (130634) example: new speed:399.000000 +I (130644) example: expect speed: 0.000000 real_pulses:0 +I (130644) example: new speed:399.000000 +I (130654) example: expect speed: 0.000000 real_pulses:0 +I (130654) example: new speed:399.000000 +I (130664) example: expect speed: 0.000000 real_pulses:0 +I (130664) example: new speed:399.000000 +I (130674) example: expect speed: 0.000000 real_pulses:0 +I (130674) example: new speed:399.000000 +I (130684) example: expect speed: 0.000000 real_pulses:0 +I (130684) example: new speed:399.000000 +I (130694) example: expect speed: 0.000000 real_pulses:0 +I (130694) example: new speed:399.000000 +I (130704) example: expect speed: 0.000000 real_pulses:0 +I (130704) example: new speed:399.000000 +I (130714) example: expect speed: 0.000000 real_pulses:0 +I (130714) example: new speed:399.000000 +I (130724) example: expect speed: 0.000000 real_pulses:0 +I (130724) example: new speed:399.000000 +I (130734) example: expect speed: 0.000000 real_pulses:0 +I (130734) example: new speed:399.000000 +I (130744) example: expect speed: 0.000000 real_pulses:0 +I (130744) example: new speed:399.000000 +I (130754) example: expect speed: 0.000000 real_pulses:0 +I (130754) example: new speed:399.000000 +I (130764) example: expect speed: 0.000000 real_pulses:0 +I (130764) example: new speed:399.000000 +I (130774) example: expect speed: 0.000000 real_pulses:0 +I (130774) example: new speed:399.000000 +I (130784) example: expect speed: 0.000000 real_pulses:0 +I (130784) example: new speed:399.000000 +I (130794) example: expect speed: 0.000000 real_pulses:0 +I (130794) example: new speed:399.000000 +I (130804) example: expect speed: 0.000000 real_pulses:0 +I (130804) example: new speed:399.000000 +I (130814) example: expect speed: 0.000000 real_pulses:0 +I (130814) example: new speed:399.000000 +I (130824) example: expect speed: 0.000000 real_pulses:0 +I (130824) example: new speed:399.000000 +I (130834) example: expect speed: 0.000000 real_pulses:0 +I (130834) example: new speed:399.000000 +I (130844) example: expect speed: 0.000000 real_pulses:0 +I (130844) example: new speed:399.000000 +I (130854) example: expect speed: 0.000000 real_pulses:0 +I (130854) example: new speed:399.000000 +I (130864) example: expect speed: 0.000000 real_pulses:0 +I (130864) example: new speed:399.000000 +I (130874) example: expect speed: 0.000000 real_pulses:0 +I (130874) example: new speed:399.000000 +I (130884) example: expect speed: 0.000000 real_pulses:0 +I (130884) example: new speed:399.000000 +I (130894) example: expect speed: 0.000000 real_pulses:0 +I (130894) example: new speed:399.000000 +I (130904) example: expect speed: 0.000000 real_pulses:0 +I (130904) example: new speed:399.000000 +I (130914) example: expect speed: 0.000000 real_pulses:0 +I (130914) example: new speed:399.000000 +I (130924) example: expect speed: 0.000000 real_pulses:0 +I (130924) example: new speed:399.000000 +I (130934) example: expect speed: 0.000000 real_pulses:0 +I (130934) example: new speed:399.000000 +I (130944) example: expect speed: 0.000000 real_pulses:0 +I (130944) example: new speed:399.000000 +I (130954) example: expect speed: 0.000000 real_pulses:0 +I (130954) example: new speed:399.000000 +I (130964) example: expect speed: 0.000000 real_pulses:0 +I (130964) example: new speed:399.000000 +I (130974) example: expect speed: 0.000000 real_pulses:0 +I (130974) example: new speed:399.000000 +I (130984) example: expect speed: 0.000000 real_pulses:0 +I (130984) example: new speed:399.000000 +I (130994) example: expect speed: 0.000000 real_pulses:0 +I (130994) example: new speed:399.000000 +I (131004) example: expect speed: 0.000000 real_pulses:0 +I (131004) example: new speed:399.000000 +I (131014) example: expect speed: 0.000000 real_pulses:0 +I (131014) example: new speed:399.000000 +I (131024) example: expect speed: 0.000000 real_pulses:0 +I (131024) example: new speed:399.000000 +I (131034) example: expect speed: 0.000000 real_pulses:0 +I (131034) example: new speed:399.000000 +I (131044) example: expect speed: 0.000000 real_pulses:0 +I (131044) example: new speed:399.000000 +I (131054) example: expect speed: 0.000000 real_pulses:0 +I (131054) example: new speed:399.000000 +I (131064) example: expect speed: 0.000000 real_pulses:0 +I (131064) example: new speed:399.000000 +I (131074) example: expect speed: 0.000000 real_pulses:0 +I (131074) example: new speed:399.000000 +I (131084) example: expect speed: 0.000000 real_pulses:0 +I (131084) example: new speed:399.000000 +I (131094) example: expect speed: 0.000000 real_pulses:0 +I (131094) example: new speed:399.000000 +I (131104) example: expect speed: 0.000000 real_pulses:0 +I (131104) example: new speed:399.000000 +I (131114) example: expect speed: 0.000000 real_pulses:0 +I (131114) example: new speed:399.000000 +I (131124) example: expect speed: 0.000000 real_pulses:0 +I (131124) example: new speed:399.000000 +I (131134) example: expect speed: 0.000000 real_pulses:0 +I (131134) example: new speed:399.000000 +I (131144) example: expect speed: 0.000000 real_pulses:0 +I (131144) example: new speed:399.000000 +I (131154) example: expect speed: 0.000000 real_pulses:0 +I (131154) example: new speed:399.000000 +I (131164) example: expect speed: 0.000000 real_pulses:0 +I (131164) example: new speed:399.000000 +I (131174) example: expect speed: 0.000000 real_pulses:0 +I (131174) example: new speed:399.000000 +I (131184) example: expect speed: 0.000000 real_pulses:0 +I (131184) example: new speed:399.000000 +I (131194) example: expect speed: 0.000000 real_pulses:0 +I (131194) example: new speed:399.000000 +I (131204) example: expect speed: 0.000000 real_pulses:0 +I (131204) example: new speed:399.000000 +I (131214) example: expect speed: 0.000000 real_pulses:0 +I (131214) example: new speed:399.000000 +I (131224) example: expect speed: 0.000000 real_pulses:0 +I (131224) example: new speed:399.000000 +I (131234) example: expect speed: 0.000000 real_pulses:0 +I (131234) example: new speed:399.000000 +I (131244) example: expect speed: 0.000000 real_pulses:0 +I (131244) example: new speed:399.000000 +I (131254) example: expect speed: 0.000000 real_pulses:0 +I (131254) example: new speed:399.000000 +I (131264) example: expect speed: 0.000000 real_pulses:0 +I (131264) example: new speed:399.000000 +I (131274) example: expect speed: 0.000000 real_pulses:0 +I (131274) example: new speed:399.000000 +I (131284) example: expect speed: 0.000000 real_pulses:0 +I (131284) example: new speed:399.000000 +I (131294) example: expect speed: 0.000000 real_pulses:0 +I (131294) example: new speed:399.000000 +I (131304) example: expect speed: 0.000000 real_pulses:0 +I (131304) example: new speed:399.000000 +I (131314) example: expect speed: 0.000000 real_pulses:0 +I (131314) example: new speed:399.000000 +I (131324) example: expect speed: 0.000000 real_pulses:0 +I (131334) example: new speed:399.000000 +I (131334) example: expect speed: 0.000000 real_pulses:0 +I (131334) example: new speed:399.000000 +I (131344) example: expect speed: 0.000000 real_pulses:0 +I (131344) example: new speed:399.000000 +I (131354) example: expect speed: 0.000000 real_pulses:0 +I (131354) example: new speed:399.000000 +I (131364) example: expect speed: 0.000000 real_pulses:0 +I (131364) example: new speed:399.000000 +I (131374) example: expect speed: 0.000000 real_pulses:0 +I (131374) example: new speed:399.000000 +I (131384) example: expect speed: 0.000000 real_pulses:0 +I (131384) example: new speed:399.000000 +I (131394) example: expect speed: 0.000000 real_pulses:0 +I (131394) example: new speed:399.000000 +I (131404) example: expect speed: 0.000000 real_pulses:0 +I (131404) example: new speed:399.000000 +I (131414) example: expect speed: 0.000000 real_pulses:0 +I (131414) example: new speed:399.000000 +I (131424) example: expect speed: 0.000000 real_pulses:0 +I (131424) example: new speed:399.000000 +I (131434) example: expect speed: 0.000000 real_pulses:0 +I (131434) example: new speed:399.000000 +I (131444) example: expect speed: 0.000000 real_pulses:0 +I (131444) example: new speed:399.000000 +I (131454) example: expect speed: 0.000000 real_pulses:0 +I (131454) example: new speed:399.000000 +I (131464) example: expect speed: 0.000000 real_pulses:0 +I (131464) example: new speed:399.000000 +I (131474) example: expect speed: 0.000000 real_pulses:0 +I (131474) example: new speed:399.000000 +I (131484) example: expect speed: 0.000000 real_pulses:0 +I (131484) example: new speed:399.000000 +I (131494) example: expect speed: 0.000000 real_pulses:0 +I (131494) example: new speed:399.000000 +I (131504) example: expect speed: 0.000000 real_pulses:0 +I (131504) example: new speed:399.000000 +I (131514) example: expect speed: 0.000000 real_pulses:0 +I (131514) example: new speed:399.000000 +I (131524) example: expect speed: 0.000000 real_pulses:0 +I (131534) example: new speed:399.000000 +I (131534) modbus tcp: ModBusSlave_recv() +I (131534) modbus: ModbusSlaveProcess() +I (131534) modbus: check id... +I (131534) modbus: ok +I (131534) modbus: add: 0, length: 10 +I (131534) modbus: Read Holding Registers +I (131534) example: expect speed: 0.000000 real_pulses:0 +I (131544) example: new speed:399.000000 +I (131544) example: expect speed: 0.000000 real_pulses:0 +I (131544) example: new speed:399.000000 +I (131554) example: expect speed: 0.000000 real_pulses:0 +I (131554) example: new speed:399.000000 +I (131564) example: expect speed: 0.000000 real_pulses:0 +I (131564) example: new speed:399.000000 +I (131574) example: expect speed: 0.000000 real_pulses:0 +I (131574) example: new speed:399.000000 +I (131584) example: expect speed: 0.000000 real_pulses:0 +I (131584) example: new speed:399.000000 +I (131594) example: expect speed: 0.000000 real_pulses:0 +I (131594) example: new speed:399.000000 +I (131604) example: expect speed: 0.000000 real_pulses:0 +I (131604) example: new speed:399.000000 +I (131614) example: expect speed: 0.000000 real_pulses:0 +I (131614) example: new speed:399.000000 +I (131624) example: expect speed: 0.000000 real_pulses:0 +I (131624) example: new speed:399.000000 +I (131634) example: expect speed: 0.000000 real_pulses:0 +I (131644) example: new speed:399.000000 +I (131644) example: expect speed: 0.000000 real_pulses:0 +I (131644) example: new speed:399.000000 +I (131654) example: expect speed: 0.000000 real_pulses:0 +I (131654) example: new speed:399.000000 +I (131664) example: expect speed: 0.000000 real_pulses:0 +I (131664) example: new speed:399.000000 +I (131674) example: expect speed: 0.000000 real_pulses:0 +I (131674) example: new speed:399.000000 +I (131684) example: expect speed: 0.000000 real_pulses:0 +I (131694) example: new speed:399.000000 +I (131694) example: expect speed: 0.000000 real_pulses:0 +I (131694) example: new speed:399.000000 +I (131704) example: expect speed: 0.000000 real_pulses:0 +I (131704) example: new speed:399.000000 +I (131714) example: expect speed: 0.000000 real_pulses:0 +I (131714) example: new speed:399.000000 +I (131724) example: expect speed: 0.000000 real_pulses:0 +I (131724) example: new speed:399.000000 +I (131734) example: expect speed: 0.000000 real_pulses:0 +I (131734) example: new speed:399.000000 +I (131744) example: expect speed: 0.000000 real_pulses:0 +I (131744) example: new speed:399.000000 +I (131754) example: expect speed: 0.000000 real_pulses:0 +I (131754) example: new speed:399.000000 +I (131764) example: expect speed: 0.000000 real_pulses:0 +I (131764) example: new speed:399.000000 +I (131774) example: expect speed: 0.000000 real_pulses:0 +I (131774) example: new speed:399.000000 +I (131784) example: expect speed: 0.000000 real_pulses:0 +I (131784) example: new speed:399.000000 +I (131794) example: expect speed: 0.000000 real_pulses:0 +I (131794) example: new speed:399.000000 +I (131804) example: expect speed: 0.000000 real_pulses:0 +I (131804) example: new speed:399.000000 +I (131814) example: expect speed: 0.000000 real_pulses:0 +I (131814) example: new speed:399.000000 +I (131824) example: expect speed: 0.000000 real_pulses:0 +I (131824) example: new speed:399.000000 +I (131834) example: expect speed: 0.000000 real_pulses:0 +I (131834) example: new speed:399.000000 +I (131844) example: expect speed: 0.000000 real_pulses:0 +I (131844) example: new speed:399.000000 +I (131854) example: expect speed: 0.000000 real_pulses:0 +I (131854) example: new speed:399.000000 +I (131864) example: expect speed: 0.000000 real_pulses:0 +I (131864) example: new speed:399.000000 +I (131874) example: expect speed: 0.000000 real_pulses:0 +I (131874) example: new speed:399.000000 +I (131884) example: expect speed: 0.000000 real_pulses:0 +I (131884) example: new speed:399.000000 +I (131894) example: expect speed: 0.000000 real_pulses:0 +I (131894) example: new speed:399.000000 +I (131904) example: expect speed: 0.000000 real_pulses:0 +I (131904) example: new speed:399.000000 +I (131914) example: expect speed: 0.000000 real_pulses:0 +I (131914) example: new speed:399.000000 +I (131924) example: expect speed: 0.000000 real_pulses:0 +I (131924) example: new speed:399.000000 +I (131934) example: expect speed: 0.000000 real_pulses:0 +I (131934) example: new speed:399.000000 +I (131944) example: expect speed: 0.000000 real_pulses:0 +I (131944) example: new speed:399.000000 +I (131954) example: expect speed: 0.000000 real_pulses:0 +I (131954) example: new speed:399.000000 +I (131964) example: expect speed: 0.000000 real_pulses:0 +I (131964) example: new speed:399.000000 +I (131974) example: expect speed: 0.000000 real_pulses:0 +I (131974) example: new speed:399.000000 +I (131984) example: expect speed: 0.000000 real_pulses:0 +I (131984) example: new speed:399.000000 +I (131994) example: expect speed: 0.000000 real_pulses:0 +I (131994) example: new speed:399.000000 +I (132004) example: expect speed: 0.000000 real_pulses:0 +I (132004) example: new speed:399.000000 +I (132014) example: expect speed: 0.000000 real_pulses:0 +I (132014) example: new speed:399.000000 +I (132024) example: expect speed: 0.000000 real_pulses:0 +I (132024) example: new speed:399.000000 +I (132034) example: expect speed: 0.000000 real_pulses:0 +I (132034) example: new speed:399.000000 +I (132044) example: expect speed: 0.000000 real_pulses:0 +I (132044) example: new speed:399.000000 +I (132054) example: expect speed: 0.000000 real_pulses:0 +I (132054) example: new speed:399.000000 +I (132064) example: expect speed: 0.000000 real_pulses:0 +I (132064) example: new speed:399.000000 +I (132074) example: expect speed: 0.000000 real_pulses:0 +I (132074) example: new speed:399.000000 +I (132084) example: expect speed: 0.000000 real_pulses:0 +I (132084) example: new speed:399.000000 +I (132094) example: expect speed: 0.000000 real_pulses:0 +I (132094) example: new speed:399.000000 +I (132104) example: expect speed: 0.000000 real_pulses:0 +I (132104) example: new speed:399.000000 +I (132114) example: expect speed: 0.000000 real_pulses:0 +I (132114) example: new speed:399.000000 +I (132124) example: expect speed: 0.000000 real_pulses:0 +I (132124) example: new speed:399.000000 +I (132134) example: expect speed: 0.000000 real_pulses:0 +I (132134) example: new speed:399.000000 +I (132144) example: expect speed: 0.000000 real_pulses:0 +I (132144) example: new speed:399.000000 +I (132154) example: expect speed: 0.000000 real_pulses:0 +I (132154) example: new speed:399.000000 +I (132164) example: expect speed: 0.000000 real_pulses:0 +I (132164) example: new speed:399.000000 +I (132174) example: expect speed: 0.000000 real_pulses:0 +I (132174) example: new speed:399.000000 +I (132184) example: expect speed: 0.000000 real_pulses:0 +I (132184) example: new speed:399.000000 +I (132194) example: expect speed: 0.000000 real_pulses:0 +I (132194) example: new speed:399.000000 +I (132204) example: expect speed: 0.000000 real_pulses:0 +I (132204) example: new speed:399.000000 +I (132214) example: expect speed: 0.000000 real_pulses:0 +I (132214) example: new speed:399.000000 +I (132224) example: expect speed: 0.000000 real_pulses:0 +I (132224) example: new speed:399.000000 +I (132234) example: expect speed: 0.000000 real_pulses:0 +I (132234) example: new speed:399.000000 +I (132244) example: expect speed: 0.000000 real_pulses:0 +I (132244) example: new speed:399.000000 +I (132254) example: expect speed: 0.000000 real_pulses:0 +I (132254) example: new speed:399.000000 +I (132264) example: expect speed: 0.000000 real_pulses:0 +I (132264) example: new speed:399.000000 +I (132274) example: expect speed: 0.000000 real_pulses:0 +I (132274) example: new speed:399.000000 +I (132284) example: expect speed: 0.000000 real_pulses:0 +I (132284) example: new speed:399.000000 +I (132294) example: expect speed: 0.000000 real_pulses:0 +I (132294) example: new speed:399.000000 +I (132304) example: expect speed: 0.000000 real_pulses:0 +I (132304) example: new speed:399.000000 +I (132314) example: expect speed: 0.000000 real_pulses:0 +I (132314) example: new speed:399.000000 +I (132324) example: expect speed: 0.000000 real_pulses:0 +I (132324) example: new speed:399.000000 +I (132334) example: expect speed: 0.000000 real_pulses:0 +I (132334) example: new speed:399.000000 +I (132344) example: expect speed: 0.000000 real_pulses:0 +I (132344) example: new speed:399.000000 +I (132354) example: expect speed: 0.000000 real_pulses:0 +I (132354) example: new speed:399.000000 +I (132364) example: expect speed: 0.000000 real_pulses:0 +I (132364) example: new speed:399.000000 +I (132374) example: expect speed: 0.000000 real_pulses:0 +I (132374) example: new speed:399.000000 +I (132384) example: expect speed: 0.000000 real_pulses:0 +I (132384) example: new speed:399.000000 +I (132394) example: expect speed: 0.000000 real_pulses:0 +I (132394) example: new speed:399.000000 +I (132404) example: expect speed: 0.000000 real_pulses:0 +I (132404) example: new speed:399.000000 +I (132414) example: expect speed: 0.000000 real_pulses:0 +I (132414) example: new speed:399.000000 +I (132424) example: expect speed: 0.000000 real_pulses:0 +I (132424) example: new speed:399.000000 +I (132434) example: expect speed: 0.000000 real_pulses:0 +I (132434) example: new speed:399.000000 +I (132444) example: expect speed: 0.000000 real_pulses:0 +I (132444) example: new speed:399.000000 +I (132454) example: expect speed: 0.000000 real_pulses:0 +I (132454) example: new speed:399.000000 +I (132464) example: expect speed: 0.000000 real_pulses:0 +I (132464) example: new speed:399.000000 +I (132474) example: expect speed: 0.000000 real_pulses:0 +I (132474) example: new speed:399.000000 +I (132484) example: expect speed: 0.000000 real_pulses:0 +I (132484) example: new speed:399.000000 +I (132494) example: expect speed: 0.000000 real_pulses:0 +I (132494) example: new speed:399.000000 +I (132504) example: expect speed: 0.000000 real_pulses:0 +I (132504) example: new speed:399.000000 +I (132514) example: expect speed: 0.000000 real_pulses:0 +I (132514) example: new speed:399.000000 +I (132524) example: expect speed: 0.000000 real_pulses:0 +I (132524) example: new speed:399.000000 +I (132534) example: expect speed: 0.000000 real_pulses:0 +I (132534) example: new speed:399.000000 +I (132544) example: expect speed: 0.000000 real_pulses:0 +I (132544) example: new speed:399.000000 +I (132554) example: expect speed: 0.000000 real_pulses:0 +I (132564) example: new speed:399.000000 +I (132564) modbus tcp: ModBusSlave_recv() +I (132564) modbus: ModbusSlaveProcess() +I (132564) modbus: check id... +I (132564) modbus: ok +I (132564) modbus: add: 0, length: 10 +I (132564) modbus: Read Holding Registers +I (132564) example: expect speed: 0.000000 real_pulses:0 +I (132574) example: new speed:399.000000 +I (132574) example: expect speed: 0.000000 real_pulses:0 +I (132574) example: new speed:399.000000 +I (132584) example: expect speed: 0.000000 real_pulses:0 +I (132584) example: new speed:399.000000 +I (132594) example: expect speed: 0.000000 real_pulses:0 +I (132594) example: new speed:399.000000 +I (132604) example: expect speed: 0.000000 real_pulses:0 +I (132614) example: new speed:399.000000 +I (132614) example: expect speed: 0.000000 real_pulses:0 +I (132614) example: new speed:399.000000 +I (132624) example: expect speed: 0.000000 real_pulses:0 +I (132624) example: new speed:399.000000 +I (132634) example: expect speed: 0.000000 real_pulses:0 +I (132634) example: new speed:399.000000 +I (132644) example: expect speed: 0.000000 real_pulses:0 +I (132644) example: new speed:399.000000 +I (132654) example: expect speed: 0.000000 real_pulses:0 +I (132664) example: new speed:399.000000 +I (132664) example: expect speed: 0.000000 real_pulses:0 +I (132664) example: new speed:399.000000 +I (132674) example: expect speed: 0.000000 real_pulses:0 +I (132674) example: new speed:399.000000 +I (132684) example: expect speed: 0.000000 real_pulses:0 +I (132684) example: new speed:399.000000 +I (132694) example: expect speed: 0.000000 real_pulses:0 +I (132694) example: new speed:399.000000 +I (132704) example: expect speed: 0.000000 real_pulses:0 +I (132704) example: new speed:399.000000 +I (132714) example: expect speed: 0.000000 real_pulses:0 +I (132714) example: new speed:399.000000 +I (132724) example: expect speed: 0.000000 real_pulses:0 +I (132724) example: new speed:399.000000 +I (132734) example: expect speed: 0.000000 real_pulses:0 +I (132734) example: new speed:399.000000 +I (132744) example: expect speed: 0.000000 real_pulses:0 +I (132744) example: new speed:399.000000 +I (132754) example: expect speed: 0.000000 real_pulses:0 +I (132754) example: new speed:399.000000 +I (132764) example: expect speed: 0.000000 real_pulses:0 +I (132764) example: new speed:399.000000 +I (132774) example: expect speed: 0.000000 real_pulses:0 +I (132774) example: new speed:399.000000 +I (132784) example: expect speed: 0.000000 real_pulses:0 +I (132784) example: new speed:399.000000 +I (132794) example: expect speed: 0.000000 real_pulses:0 +I (132794) example: new speed:399.000000 +I (132804) example: expect speed: 0.000000 real_pulses:0 +I (132804) example: new speed:399.000000 +I (132814) example: expect speed: 0.000000 real_pulses:0 +I (132814) example: new speed:399.000000 +I (132824) example: expect speed: 0.000000 real_pulses:0 +I (132824) example: new speed:399.000000 +I (132834) example: expect speed: 0.000000 real_pulses:0 +I (132834) example: new speed:399.000000 +I (132844) example: expect speed: 0.000000 real_pulses:0 +I (132844) example: new speed:399.000000 +I (132854) example: expect speed: 0.000000 real_pulses:0 +I (132854) example: new speed:399.000000 +I (132864) example: expect speed: 0.000000 real_pulses:0 +I (132864) example: new speed:399.000000 +I (132874) example: expect speed: 0.000000 real_pulses:0 +I (132874) example: new speed:399.000000 +I (132884) example: expect speed: 0.000000 real_pulses:0 +I (132884) example: new speed:399.000000 +I (132894) example: expect speed: 0.000000 real_pulses:0 +I (132894) example: new speed:399.000000 +I (132904) example: expect speed: 0.000000 real_pulses:0 +I (132904) example: new speed:399.000000 +I (132914) example: expect speed: 0.000000 real_pulses:0 +I (132914) example: new speed:399.000000 +I (132924) example: expect speed: 0.000000 real_pulses:0 +I (132924) example: new speed:399.000000 +I (132934) example: expect speed: 0.000000 real_pulses:0 +I (132934) example: new speed:399.000000 +I (132944) example: expect speed: 0.000000 real_pulses:0 +I (132944) example: new speed:399.000000 +I (132954) example: expect speed: 0.000000 real_pulses:0 +I (132954) example: new speed:399.000000 +I (132964) example: expect speed: 0.000000 real_pulses:0 +I (132974) example: new speed:399.000000 +I (132974) example: expect speed: 0.000000 real_pulses:0 +I (132984) example: new speed:399.000000 +I (132984) example: expect speed: 0.000000 real_pulses:0 +I (132984) example: new speed:399.000000 +I (132994) example: expect speed: 0.000000 real_pulses:0 +I (132994) example: new speed:399.000000 +I (133004) example: expect speed: 0.000000 real_pulses:0 +I (133004) example: new speed:399.000000 +I (133014) example: expect speed: 0.000000 real_pulses:0 +I (133014) example: new speed:399.000000 +I (133024) example: expect speed: 0.000000 real_pulses:0 +I (133024) example: new speed:399.000000 +I (133034) example: expect speed: 0.000000 real_pulses:0 +I (133044) example: new speed:399.000000 +I (133044) example: expect speed: 0.000000 real_pulses:0 +I (133044) example: new speed:399.000000 +I (133054) example: expect speed: 0.000000 real_pulses:0 +I (133054) example: new speed:399.000000 +I (133064) example: expect speed: 0.000000 real_pulses:0 +I (133064) example: new speed:399.000000 +I (133074) example: expect speed: 0.000000 real_pulses:0 +I (133074) example: new speed:399.000000 +I (133084) example: expect speed: 0.000000 real_pulses:0 +I (133084) example: new speed:399.000000 +I (133094) example: expect speed: 0.000000 real_pulses:0 +I (133094) example: new speed:399.000000 +I (133104) example: expect speed: 0.000000 real_pulses:0 +I (133104) example: new speed:399.000000 +I (133114) example: expect speed: 0.000000 real_pulses:0 +I (133114) example: new speed:399.000000 +I (133124) example: expect speed: 0.000000 real_pulses:0 +I (133124) example: new speed:399.000000 +I (133134) example: expect speed: 0.000000 real_pulses:0 +I (133134) example: new speed:399.000000 +I (133144) example: expect speed: 0.000000 real_pulses:0 +I (133144) example: new speed:399.000000 +I (133154) example: expect speed: 0.000000 real_pulses:0 +I (133154) example: new speed:399.000000 +I (133164) example: expect speed: 0.000000 real_pulses:0 +I (133164) example: new speed:399.000000 +I (133174) example: expect speed: 0.000000 real_pulses:0 +I (133174) example: new speed:399.000000 +I (133184) example: expect speed: 0.000000 real_pulses:0 +I (133184) example: new speed:399.000000 +I (133194) example: expect speed: 0.000000 real_pulses:0 +I (133194) example: new speed:399.000000 +I (133204) example: expect speed: 0.000000 real_pulses:0 +I (133204) example: new speed:399.000000 +I (133214) example: expect speed: 0.000000 real_pulses:0 +I (133214) example: new speed:399.000000 +I (133224) example: expect speed: 0.000000 real_pulses:0 +I (133224) example: new speed:399.000000 +I (133234) example: expect speed: 0.000000 real_pulses:0 +I (133234) example: new speed:399.000000 +I (133244) example: expect speed: 0.000000 real_pulses:0 +I (133244) example: new speed:399.000000 +I (133254) example: expect speed: 0.000000 real_pulses:0 +I (133254) example: new speed:399.000000 +I (133264) example: expect speed: 0.000000 real_pulses:0 +I (133264) example: new speed:399.000000 +I (133274) example: expect speed: 0.000000 real_pulses:0 +I (133274) example: new speed:399.000000 +I (133284) example: expect speed: 0.000000 real_pulses:0 +I (133284) example: new speed:399.000000 +I (133294) example: expect speed: 0.000000 real_pulses:0 +I (133294) example: new speed:399.000000 +I (133304) example: expect speed: 0.000000 real_pulses:0 +I (133304) example: new speed:399.000000 +I (133314) example: expect speed: 0.000000 real_pulses:0 +I (133314) example: new speed:399.000000 +I (133324) example: expect speed: 0.000000 real_pulses:0 +I (133324) example: new speed:399.000000 +I (133334) example: expect speed: 0.000000 real_pulses:0 +I (133334) example: new speed:399.000000 +I (133344) example: expect speed: 0.000000 real_pulses:0 +I (133344) example: new speed:399.000000 +I (133354) example: expect speed: 0.000000 real_pulses:0 +I (133354) example: new speed:399.000000 +I (133364) example: expect speed: 0.000000 real_pulses:0 +I (133364) example: new speed:399.000000 +I (133374) example: expect speed: 0.000000 real_pulses:0 +I (133374) example: new speed:399.000000 +I (133384) example: expect speed: 0.000000 real_pulses:0 +I (133384) example: new speed:399.000000 +I (133394) example: expect speed: 0.000000 real_pulses:0 +I (133394) example: new speed:399.000000 +I (133404) example: expect speed: 0.000000 real_pulses:0 +I (133404) example: new speed:399.000000 +I (133414) example: expect speed: 0.000000 real_pulses:0 +I (133414) example: new speed:399.000000 +I (133424) example: expect speed: 0.000000 real_pulses:0 +I (133424) example: new speed:399.000000 +I (133434) example: expect speed: 0.000000 real_pulses:0 +I (133434) example: new speed:399.000000 +I (133444) example: expect speed: 0.000000 real_pulses:0 +I (133444) example: new speed:399.000000 +I (133454) example: expect speed: 0.000000 real_pulses:0 +I (133454) example: new speed:399.000000 +I (133464) example: expect speed: 0.000000 real_pulses:0 +I (133464) example: new speed:399.000000 +I (133474) example: expect speed: 0.000000 real_pulses:0 +I (133474) example: new speed:399.000000 +I (133484) example: expect speed: 0.000000 real_pulses:0 +I (133484) example: new speed:399.000000 +I (133494) example: expect speed: 0.000000 real_pulses:0 +I (133494) example: new speed:399.000000 +I (133504) example: expect speed: 0.000000 real_pulses:0 +I (133504) example: new speed:399.000000 +I (133514) example: expect speed: 0.000000 real_pulses:0 +I (133514) example: new speed:399.000000 +I (133524) example: expect speed: 0.000000 real_pulses:0 +I (133524) example: new speed:399.000000 +I (133534) example: expect speed: 0.000000 real_pulses:0 +I (133534) example: new speed:399.000000 +I (133544) example: expect speed: 0.000000 real_pulses:0 +I (133544) example: new speed:399.000000 +I (133554) example: expect speed: 0.000000 real_pulses:0 +I (133554) example: new speed:399.000000 +I (133564) example: expect speed: 0.000000 real_pulses:0 +I (133564) example: new speed:399.000000 +I (133574) example: expect speed: 0.000000 real_pulses:0 +I (133584) example: new speed:399.000000 +I (133584) modbus tcp: ModBusSlave_recv() +I (133584) modbus: ModbusSlaveProcess() +I (133584) modbus: check id... +I (133584) modbus: ok +I (133584) modbus: add: 0, length: 10 +I (133584) modbus: Read Holding Registers +I (133584) example: expect speed: 0.000000 real_pulses:0 +I (133594) example: new speed:399.000000 +I (133594) example: expect speed: 0.000000 real_pulses:0 +I (133594) example: new speed:399.000000 +I (133604) example: expect speed: 0.000000 real_pulses:0 +I (133604) example: new speed:399.000000 +I (133614) example: expect speed: 0.000000 real_pulses:0 +I (133614) example: new speed:399.000000 +I (133624) example: expect speed: 0.000000 real_pulses:0 +I (133624) example: new speed:399.000000 +I (133634) example: expect speed: 0.000000 real_pulses:0 +I (133644) example: new speed:399.000000 +I (133644) example: expect speed: 0.000000 real_pulses:0 +I (133644) example: new speed:399.000000 +I (133654) example: expect speed: 0.000000 real_pulses:0 +I (133654) example: new speed:399.000000 +I (133664) example: expect speed: 0.000000 real_pulses:0 +I (133664) example: new speed:399.000000 +I (133674) example: expect speed: 0.000000 real_pulses:0 +I (133674) example: new speed:399.000000 +I (133684) example: expect speed: 0.000000 real_pulses:0 +I (133694) example: new speed:399.000000 +I (133694) example: expect speed: 0.000000 real_pulses:0 +I (133694) example: new speed:399.000000 +I (133704) example: expect speed: 0.000000 real_pulses:0 +I (133704) example: new speed:399.000000 +I (133714) example: expect speed: 0.000000 real_pulses:0 +I (133714) example: new speed:399.000000 +I (133724) example: expect speed: 0.000000 real_pulses:0 +I (133724) example: new speed:399.000000 +I (133734) example: expect speed: 0.000000 real_pulses:0 +I (133744) example: new speed:399.000000 +I (133744) example: expect speed: 0.000000 real_pulses:0 +I (133744) example: new speed:399.000000 +I (133754) example: expect speed: 0.000000 real_pulses:0 +I (133754) example: new speed:399.000000 +I (133764) example: expect speed: 0.000000 real_pulses:0 +I (133764) example: new speed:399.000000 +I (133774) example: expect speed: 0.000000 real_pulses:0 +I (133774) example: new speed:399.000000 +I (133784) example: expect speed: 0.000000 real_pulses:0 +I (133784) example: new speed:399.000000 +I (133794) example: expect speed: 0.000000 real_pulses:0 +I (133794) example: new speed:399.000000 +I (133804) example: expect speed: 0.000000 real_pulses:0 +I (133804) example: new speed:399.000000 +I (133814) example: expect speed: 0.000000 real_pulses:0 +I (133814) example: new speed:399.000000 +I (133824) example: expect speed: 0.000000 real_pulses:0 +I (133824) example: new speed:399.000000 +I (133834) example: expect speed: 0.000000 real_pulses:0 +I (133834) example: new speed:399.000000 +I (133844) example: expect speed: 0.000000 real_pulses:0 +I (133844) example: new speed:399.000000 +I (133854) example: expect speed: 0.000000 real_pulses:0 +I (133854) example: new speed:399.000000 +I (133864) example: expect speed: 0.000000 real_pulses:0 +I (133864) example: new speed:399.000000 +I (133874) example: expect speed: 0.000000 real_pulses:0 +I (133874) example: new speed:399.000000 +I (133884) example: expect speed: 0.000000 real_pulses:0 +I (133884) example: new speed:399.000000 +I (133894) example: expect speed: 0.000000 real_pulses:0 +I (133894) example: new speed:399.000000 +I (133904) example: expect speed: 0.000000 real_pulses:0 +I (133904) example: new speed:399.000000 +I (133914) example: expect speed: 0.000000 real_pulses:0 +I (133914) example: new speed:399.000000 +I (133924) example: expect speed: 0.000000 real_pulses:0 +I (133924) example: new speed:399.000000 +I (133934) example: expect speed: 0.000000 real_pulses:0 +I (133934) example: new speed:399.000000 +I (133944) example: expect speed: 0.000000 real_pulses:0 +I (133944) example: new speed:399.000000 +I (133954) example: expect speed: 0.000000 real_pulses:0 +I (133954) example: new speed:399.000000 +I (133964) example: expect speed: 0.000000 real_pulses:0 +I (133964) example: new speed:399.000000 +I (133974) example: expect speed: 0.000000 real_pulses:0 +I (133974) example: new speed:399.000000 +I (133984) example: expect speed: 0.000000 real_pulses:0 +I (133984) example: new speed:399.000000 +I (133994) example: expect speed: 0.000000 real_pulses:0 +I (133994) example: new speed:399.000000 +I (134004) example: expect speed: 0.000000 real_pulses:0 +I (134004) example: new speed:399.000000 +I (134014) example: expect speed: 0.000000 real_pulses:0 +I (134014) example: new speed:399.000000 +I (134024) example: expect speed: 0.000000 real_pulses:0 +I (134024) example: new speed:399.000000 +I (134034) example: expect speed: 0.000000 real_pulses:0 +I (134034) example: new speed:399.000000 +I (134044) example: expect speed: 0.000000 real_pulses:0 +I (134044) example: new speed:399.000000 +I (134054) example: expect speed: 0.000000 real_pulses:0 +I (134054) example: new speed:399.000000 +I (134064) example: expect speed: 0.000000 real_pulses:0 +I (134064) example: new speed:399.000000 +I (134074) example: expect speed: 0.000000 real_pulses:0 +I (134074) example: new speed:399.000000 +I (134084) example: expect speed: 0.000000 real_pulses:0 +I (134084) example: new speed:399.000000 +I (134094) example: expect speed: 0.000000 real_pulses:0 +I (134094) example: new speed:399.000000 +I (134104) example: expect speed: 0.000000 real_pulses:0 +I (134104) example: new speed:399.000000 +I (134114) example: expect speed: 0.000000 real_pulses:0 +I (134114) example: new speed:399.000000 +I (134124) example: expect speed: 0.000000 real_pulses:0 +I (134124) example: new speed:399.000000 +I (134134) example: expect speed: 0.000000 real_pulses:0 +I (134134) example: new speed:399.000000 +I (134144) example: expect speed: 0.000000 real_pulses:0 +I (134144) example: new speed:399.000000 +I (134154) example: expect speed: 0.000000 real_pulses:0 +I (134154) example: new speed:399.000000 +I (134164) example: expect speed: 0.000000 real_pulses:0 +I (134164) example: new speed:399.000000 +I (134174) example: expect speed: 0.000000 real_pulses:0 +I (134174) example: new speed:399.000000 +I (134184) example: expect speed: 0.000000 real_pulses:0 +I (134184) example: new speed:399.000000 +I (134194) example: expect speed: 0.000000 real_pulses:0 +I (134194) example: new speed:399.000000 +I (134204) example: expect speed: 0.000000 real_pulses:0 +I (134204) example: new speed:399.000000 +I (134214) example: expect speed: 0.000000 real_pulses:0 +I (134214) example: new speed:399.000000 +I (134224) example: expect speed: 0.000000 real_pulses:0 +I (134224) example: new speed:399.000000 +I (134234) example: expect speed: 0.000000 real_pulses:0 +I (134234) example: new speed:399.000000 +I (134244) example: expect speed: 0.000000 real_pulses:0 +I (134244) example: new speed:399.000000 +I (134254) example: expect speed: 0.000000 real_pulses:0 +I (134254) example: new speed:399.000000 +I (134264) example: expect speed: 0.000000 real_pulses:0 +I (134264) example: new speed:399.000000 +I (134274) example: expect speed: 0.000000 real_pulses:0 +I (134274) example: new speed:399.000000 +I (134284) example: expect speed: 0.000000 real_pulses:0 +I (134284) example: new speed:399.000000 +I (134294) example: expect speed: 0.000000 real_pulses:0 +I (134294) example: new speed:399.000000 +I (134304) example: expect speed: 0.000000 real_pulses:0 +I (134304) example: new speed:399.000000 +I (134314) example: expect speed: 0.000000 real_pulses:0 +I (134314) example: new speed:399.000000 +I (134324) example: expect speed: 0.000000 real_pulses:0 +I (134324) example: new speed:399.000000 +I (134334) example: expect speed: 0.000000 real_pulses:0 +I (134334) example: new speed:399.000000 +I (134344) example: expect speed: 0.000000 real_pulses:0 +I (134344) example: new speed:399.000000 +I (134354) example: expect speed: 0.000000 real_pulses:0 +I (134354) example: new speed:399.000000 +I (134364) example: expect speed: 0.000000 real_pulses:0 +I (134364) example: new speed:399.000000 +I (134374) example: expect speed: 0.000000 real_pulses:0 +I (134374) example: new speed:399.000000 +I (134384) example: expect speed: 0.000000 real_pulses:0 +I (134384) example: new speed:399.000000 +I (134394) example: expect speed: 0.000000 real_pulses:0 +I (134394) example: new speed:399.000000 +I (134404) example: expect speed: 0.000000 real_pulses:0 +I (134404) example: new speed:399.000000 +I (134414) example: expect speed: 0.000000 real_pulses:0 +I (134414) example: new speed:399.000000 +I (134424) example: expect speed: 0.000000 real_pulses:0 +I (134424) example: new speed:399.000000 +I (134434) example: expect speed: 0.000000 real_pulses:0 +I (134434) example: new speed:399.000000 +I (134444) example: expect speed: 0.000000 real_pulses:0 +I (134444) example: new speed:399.000000 +I (134454) example: expect speed: 0.000000 real_pulses:0 +I (134454) example: new speed:399.000000 +I (134464) example: expect speed: 0.000000 real_pulses:0 +I (134464) example: new speed:399.000000 +I (134474) example: expect speed: 0.000000 real_pulses:0 +I (134474) example: new speed:399.000000 +I (134484) example: expect speed: 0.000000 real_pulses:0 +I (134484) example: new speed:399.000000 +I (134494) example: expect speed: 0.000000 real_pulses:0 +I (134504) example: new speed:399.000000 +I (134504) modbus tcp: ModBusSlave_recv() +I (134504) modbus: ModbusSlaveProcess() +I (134504) modbus: check id... +I (134504) modbus: ok +I (134504) modbus: add: 0, length: 10 +I (134504) modbus: Read Holding Registers +I (134504) example: expect speed: 0.000000 real_pulses:0 +I (134514) example: new speed:399.000000 +I (134514) example: expect speed: 0.000000 real_pulses:0 +I (134514) example: new speed:399.000000 +I (134524) example: expect speed: 0.000000 real_pulses:0 +I (134524) example: new speed:399.000000 +I (134534) example: expect speed: 0.000000 real_pulses:0 +I (134534) example: new speed:399.000000 +I (134544) example: expect speed: 0.000000 real_pulses:0 +I (134544) example: new speed:399.000000 +I (134554) example: expect speed: 0.000000 real_pulses:0 +I (134554) example: new speed:399.000000 +I (134564) example: expect speed: 0.000000 real_pulses:0 +I (134564) example: new speed:399.000000 +I (134574) example: expect speed: 0.000000 real_pulses:0 +I (134574) example: new speed:399.000000 +I (134584) example: expect speed: 0.000000 real_pulses:0 +I (134594) example: new speed:399.000000 +I (134594) example: expect speed: 0.000000 real_pulses:0 +I (134594) example: new speed:399.000000 +I (134604) example: expect speed: 0.000000 real_pulses:0 +I (134614) example: new speed:399.000000 +I (134614) example: expect speed: 0.000000 real_pulses:0 +I (134614) example: new speed:399.000000 +I (134624) example: expect speed: 0.000000 real_pulses:0 +I (134624) example: new speed:399.000000 +I (134634) example: expect speed: 0.000000 real_pulses:0 +I (134634) example: new speed:399.000000 +I (134644) example: expect speed: 0.000000 real_pulses:0 +I (134644) example: new speed:399.000000 +I (134654) example: expect speed: 0.000000 real_pulses:0 +I (134654) example: new speed:399.000000 +I (134664) example: expect speed: 0.000000 real_pulses:0 +I (134664) example: new speed:399.000000 +I (134674) example: expect speed: 0.000000 real_pulses:0 +I (134674) example: new speed:399.000000 +I (134684) example: expect speed: 0.000000 real_pulses:0 +I (134684) example: new speed:399.000000 +I (134694) example: expect speed: 0.000000 real_pulses:0 +I (134694) example: new speed:399.000000 +I (134704) example: expect speed: 0.000000 real_pulses:0 +I (134714) example: new speed:399.000000 +I (134714) example: expect speed: 0.000000 real_pulses:0 +I (134714) example: new speed:399.000000 +I (134724) example: expect speed: 0.000000 real_pulses:0 +I (134724) example: new speed:399.000000 +I (134734) example: expect speed: 0.000000 real_pulses:0 +I (134734) example: new speed:399.000000 +I (134744) example: expect speed: 0.000000 real_pulses:0 +I (134744) example: new speed:399.000000 +I (134754) example: expect speed: 0.000000 real_pulses:0 +I (134754) example: new speed:399.000000 +I (134764) example: expect speed: 0.000000 real_pulses:0 +I (134774) example: new speed:399.000000 +I (134774) example: expect speed: 0.000000 real_pulses:0 +I (134774) example: new speed:399.000000 +I (134784) example: expect speed: 0.000000 real_pulses:0 +I (134784) example: new speed:399.000000 +I (134794) example: expect speed: 0.000000 real_pulses:0 +I (134794) example: new speed:399.000000 +I (134804) example: expect speed: 0.000000 real_pulses:0 +I (134804) example: new speed:399.000000 +I (134814) example: expect speed: 0.000000 real_pulses:0 +I (134814) example: new speed:399.000000 +I (134824) example: expect speed: 0.000000 real_pulses:0 +I (134824) example: new speed:399.000000 +I (134834) example: expect speed: 0.000000 real_pulses:0 +I (134834) example: new speed:399.000000 +I (134844) example: expect speed: 0.000000 real_pulses:0 +I (134844) example: new speed:399.000000 +I (134854) example: expect speed: 0.000000 real_pulses:0 +I (134854) example: new speed:399.000000 +I (134864) example: expect speed: 0.000000 real_pulses:0 +I (134864) example: new speed:399.000000 +I (134874) example: expect speed: 0.000000 real_pulses:0 +I (134874) example: new speed:399.000000 +I (134884) example: expect speed: 0.000000 real_pulses:0 +I (134884) example: new speed:399.000000 +I (134894) example: expect speed: 0.000000 real_pulses:0 +I (134894) example: new speed:399.000000 +I (134904) example: expect speed: 0.000000 real_pulses:0 +I (134904) example: new speed:399.000000 +I (134914) example: expect speed: 0.000000 real_pulses:0 +I (134914) example: new speed:399.000000 +I (134924) example: expect speed: 0.000000 real_pulses:0 +I (134924) example: new speed:399.000000 +I (134934) example: expect speed: 0.000000 real_pulses:0 +I (134934) example: new speed:399.000000 +I (134944) example: expect speed: 0.000000 real_pulses:0 +I (134944) example: new speed:399.000000 +I (134954) example: expect speed: 0.000000 real_pulses:0 +I (134954) example: new speed:399.000000 +I (134964) example: expect speed: 0.000000 real_pulses:0 +I (134964) example: new speed:399.000000 +I (134974) example: expect speed: 0.000000 real_pulses:0 +I (134974) example: new speed:399.000000 +I (134984) example: expect speed: 0.000000 real_pulses:0 +I (134984) example: new speed:399.000000 +I (134994) example: expect speed: 0.000000 real_pulses:0 +I (134994) example: new speed:399.000000 +I (135004) example: expect speed: 0.000000 real_pulses:0 +I (135004) example: new speed:399.000000 +I (135014) example: expect speed: 0.000000 real_pulses:0 +I (135014) example: new speed:399.000000 +I (135024) example: expect speed: 0.000000 real_pulses:0 +I (135024) example: new speed:399.000000 +I (135034) example: expect speed: 0.000000 real_pulses:0 +I (135034) example: new speed:399.000000 +I (135044) example: expect speed: 0.000000 real_pulses:0 +I (135044) example: new speed:399.000000 +I (135054) example: expect speed: 0.000000 real_pulses:0 +I (135054) example: new speed:399.000000 +I (135064) example: expect speed: 0.000000 real_pulses:0 +I (135064) example: new speed:399.000000 +I (135074) example: expect speed: 0.000000 real_pulses:0 +I (135074) example: new speed:399.000000 +I (135084) example: expect speed: 0.000000 real_pulses:0 +I (135084) example: new speed:399.000000 +I (135094) example: expect speed: 0.000000 real_pulses:0 +I (135094) example: new speed:399.000000 +I (135104) example: expect speed: 0.000000 real_pulses:0 +I (135104) example: new speed:399.000000 +I (135114) example: expect speed: 0.000000 real_pulses:0 +I (135114) example: new speed:399.000000 +I (135124) example: expect speed: 0.000000 real_pulses:0 +I (135124) example: new speed:399.000000 +I (135134) example: expect speed: 0.000000 real_pulses:0 +I (135134) example: new speed:399.000000 +I (135144) example: expect speed: 0.000000 real_pulses:0 +I (135144) example: new speed:399.000000 +I (135154) example: expect speed: 0.000000 real_pulses:0 +I (135154) example: new speed:399.000000 +I (135164) example: expect speed: 0.000000 real_pulses:0 +I (135164) example: new speed:399.000000 +I (135174) example: expect speed: 0.000000 real_pulses:0 +I (135174) example: new speed:399.000000 +I (135184) example: expect speed: 0.000000 real_pulses:0 +I (135184) example: new speed:399.000000 +I (135194) example: expect speed: 0.000000 real_pulses:0 +I (135194) example: new speed:399.000000 +I (135204) example: expect speed: 0.000000 real_pulses:0 +I (135204) example: new speed:399.000000 +I (135214) example: expect speed: 0.000000 real_pulses:0 +I (135214) example: new speed:399.000000 +I (135224) example: expect speed: 0.000000 real_pulses:0 +I (135224) example: new speed:399.000000 +I (135234) example: expect speed: 0.000000 real_pulses:0 +I (135234) example: new speed:399.000000 +I (135244) example: expect speed: 0.000000 real_pulses:0 +I (135244) example: new speed:399.000000 +I (135254) example: expect speed: 0.000000 real_pulses:0 +I (135254) example: new speed:399.000000 +I (135264) example: expect speed: 0.000000 real_pulses:0 +I (135264) example: new speed:399.000000 +I (135274) example: expect speed: 0.000000 real_pulses:0 +I (135274) example: new speed:399.000000 +I (135284) example: expect speed: 0.000000 real_pulses:0 +I (135284) example: new speed:399.000000 +I (135294) example: expect speed: 0.000000 real_pulses:0 +I (135294) example: new speed:399.000000 +I (135304) example: expect speed: 0.000000 real_pulses:0 +I (135304) example: new speed:399.000000 +I (135314) example: expect speed: 0.000000 real_pulses:0 +I (135314) example: new speed:399.000000 +I (135324) example: expect speed: 0.000000 real_pulses:0 +I (135324) example: new speed:399.000000 +I (135334) example: expect speed: 0.000000 real_pulses:0 +I (135334) example: new speed:399.000000 +I (135344) example: expect speed: 0.000000 real_pulses:0 +I (135344) example: new speed:399.000000 +I (135354) example: expect speed: 0.000000 real_pulses:0 +I (135354) example: new speed:399.000000 +I (135364) example: expect speed: 0.000000 real_pulses:0 +I (135364) example: new speed:399.000000 +I (135374) example: expect speed: 0.000000 real_pulses:0 +I (135374) example: new speed:399.000000 +I (135384) example: expect speed: 0.000000 real_pulses:0 +I (135384) example: new speed:399.000000 +I (135394) example: expect speed: 0.000000 real_pulses:0 +I (135394) example: new speed:399.000000 +I (135404) example: expect speed: 0.000000 real_pulses:0 +I (135404) example: new speed:399.000000 +I (135414) example: expect speed: 0.000000 real_pulses:0 +I (135414) example: new speed:399.000000 +I (135424) example: expect speed: 0.000000 real_pulses:0 +I (135424) example: new speed:399.000000 +I (135434) example: expect speed: 0.000000 real_pulses:0 +I (135434) example: new speed:399.000000 +I (135444) example: expect speed: 0.000000 real_pulses:0 +I (135444) example: new speed:399.000000 +I (135454) example: expect speed: 0.000000 real_pulses:0 +I (135454) example: new speed:399.000000 +I (135464) example: expect speed: 0.000000 real_pulses:0 +I (135464) example: new speed:399.000000 +I (135474) example: expect speed: 0.000000 real_pulses:0 +I (135474) example: new speed:399.000000 +I (135484) example: expect speed: 0.000000 real_pulses:0 +I (135484) example: new speed:399.000000 +I (135494) example: expect speed: 0.000000 real_pulses:0 +I (135494) example: new speed:399.000000 +I (135504) example: expect speed: 0.000000 real_pulses:0 +I (135504) example: new speed:399.000000 +I (135514) example: expect speed: 0.000000 real_pulses:0 +I (135514) example: new speed:399.000000 +I (135524) modbus tcp: ModBusSlave_recv() +I (135524) modbus: ModbusSlaveProcess() +I (135524) example: expect speed: 0.000000 real_pulses:0 +I (135524) modbus: check id... +I (135524) example: new speed:399.000000 +I (135534) modbus: ok +I (135534) modbus: add: 0, length: 10 +I (135534) modbus: Read Holding Registers +I (135534) example: expect speed: 0.000000 real_pulses:0 +I (135544) example: new speed:399.000000 +I (135544) example: expect speed: 0.000000 real_pulses:0 +I (135544) example: new speed:399.000000 +I (135554) example: expect speed: 0.000000 real_pulses:0 +I (135554) example: new speed:399.000000 +I (135564) example: expect speed: 0.000000 real_pulses:0 +I (135564) example: new speed:399.000000 +I (135574) example: expect speed: 0.000000 real_pulses:0 +I (135574) example: new speed:399.000000 +I (135584) example: expect speed: 0.000000 real_pulses:0 +I (135594) example: new speed:399.000000 +I (135594) example: expect speed: 0.000000 real_pulses:0 +I (135594) example: new speed:399.000000 +I (135604) example: expect speed: 0.000000 real_pulses:0 +I (135604) example: new speed:399.000000 +I (135614) example: expect speed: 0.000000 real_pulses:0 +I (135614) example: new speed:399.000000 +I (135624) example: expect speed: 0.000000 real_pulses:0 +I (135634) example: new speed:399.000000 +I (135634) example: expect speed: 0.000000 real_pulses:0 +I (135644) example: new speed:399.000000 +I (135644) example: expect speed: 0.000000 real_pulses:0 +I (135644) example: new speed:399.000000 +I (135654) example: expect speed: 0.000000 real_pulses:0 +I (135654) example: new speed:399.000000 +I (135664) example: expect speed: 0.000000 real_pulses:0 +I (135664) example: new speed:399.000000 +I (135674) example: expect speed: 0.000000 real_pulses:0 +I (135674) example: new speed:399.000000 +I (135684) example: expect speed: 0.000000 real_pulses:0 +I (135694) example: new speed:399.000000 +I (135694) example: expect speed: 0.000000 real_pulses:0 +I (135694) example: new speed:399.000000 +I (135704) example: expect speed: 0.000000 real_pulses:0 +I (135704) example: new speed:399.000000 +I (135714) example: expect speed: 0.000000 real_pulses:0 +I (135714) example: new speed:399.000000 +I (135724) example: expect speed: 0.000000 real_pulses:0 +I (135724) example: new speed:399.000000 +I (135734) example: expect speed: 0.000000 real_pulses:0 +I (135734) example: new speed:399.000000 +I (135744) example: expect speed: 0.000000 real_pulses:0 +I (135744) example: new speed:399.000000 +I (135754) example: expect speed: 0.000000 real_pulses:0 +I (135754) example: new speed:399.000000 +I (135764) example: expect speed: 0.000000 real_pulses:0 +I (135764) example: new speed:399.000000 +I (135774) example: expect speed: 0.000000 real_pulses:0 +I (135774) example: new speed:399.000000 +I (135784) example: expect speed: 0.000000 real_pulses:0 +I (135784) example: new speed:399.000000 +I (135794) example: expect speed: 0.000000 real_pulses:0 +I (135794) example: new speed:399.000000 +I (135804) example: expect speed: 0.000000 real_pulses:0 +I (135804) example: new speed:399.000000 +I (135814) example: expect speed: 0.000000 real_pulses:0 +I (135814) example: new speed:399.000000 +I (135824) example: expect speed: 0.000000 real_pulses:0 +I (135824) example: new speed:399.000000 +I (135834) example: expect speed: 0.000000 real_pulses:0 +I (135834) example: new speed:399.000000 +I (135844) example: expect speed: 0.000000 real_pulses:0 +I (135844) example: new speed:399.000000 +I (135854) example: expect speed: 0.000000 real_pulses:0 +I (135854) example: new speed:399.000000 +I (135864) example: expect speed: 0.000000 real_pulses:0 +I (135864) example: new speed:399.000000 +I (135874) example: expect speed: 0.000000 real_pulses:0 +I (135874) example: new speed:399.000000 +I (135884) example: expect speed: 0.000000 real_pulses:0 +I (135884) example: new speed:399.000000 +I (135894) example: expect speed: 0.000000 real_pulses:0 +I (135894) example: new speed:399.000000 +I (135904) example: expect speed: 0.000000 real_pulses:0 +I (135904) example: new speed:399.000000 +I (135914) example: expect speed: 0.000000 real_pulses:0 +I (135914) example: new speed:399.000000 +I (135924) example: expect speed: 0.000000 real_pulses:0 +I (135924) example: new speed:399.000000 +I (135934) example: expect speed: 0.000000 real_pulses:0 +I (135934) example: new speed:399.000000 +I (135944) example: expect speed: 0.000000 real_pulses:0 +I (135944) example: new speed:399.000000 +I (135954) example: expect speed: 0.000000 real_pulses:0 +I (135954) example: new speed:399.000000 +I (135964) example: expect speed: 0.000000 real_pulses:0 +I (135964) example: new speed:399.000000 +I (135974) example: expect speed: 0.000000 real_pulses:0 +I (135974) example: new speed:399.000000 +I (135984) example: expect speed: 0.000000 real_pulses:0 +I (135984) example: new speed:399.000000 +I (135994) example: expect speed: 0.000000 real_pulses:0 +I (135994) example: new speed:399.000000 +I (136004) example: expect speed: 0.000000 real_pulses:0 +I (136004) example: new speed:399.000000 +I (136014) example: expect speed: 0.000000 real_pulses:0 +I (136014) example: new speed:399.000000 +I (136024) example: expect speed: 0.000000 real_pulses:0 +I (136024) example: new speed:399.000000 +I (136034) example: expect speed: 0.000000 real_pulses:0 +I (136034) example: new speed:399.000000 +I (136044) example: expect speed: 0.000000 real_pulses:0 +I (136044) example: new speed:399.000000 +I (136054) example: expect speed: 0.000000 real_pulses:0 +I (136054) example: new speed:399.000000 +I (136064) example: expect speed: 0.000000 real_pulses:0 +I (136064) example: new speed:399.000000 +I (136074) example: expect speed: 0.000000 real_pulses:0 +I (136074) example: new speed:399.000000 +I (136084) example: expect speed: 0.000000 real_pulses:0 +I (136084) example: new speed:399.000000 +I (136094) example: expect speed: 0.000000 real_pulses:0 +I (136094) example: new speed:399.000000 +I (136104) example: expect speed: 0.000000 real_pulses:0 +I (136104) example: new speed:399.000000 +I (136114) example: expect speed: 0.000000 real_pulses:0 +I (136114) example: new speed:399.000000 +I (136124) example: expect speed: 0.000000 real_pulses:0 +I (136124) example: new speed:399.000000 +I (136134) example: expect speed: 0.000000 real_pulses:0 +I (136134) example: new speed:399.000000 +I (136144) example: expect speed: 0.000000 real_pulses:0 +I (136144) example: new speed:399.000000 +I (136154) example: expect speed: 0.000000 real_pulses:0 +I (136154) example: new speed:399.000000 +I (136164) example: expect speed: 0.000000 real_pulses:0 +I (136164) example: new speed:399.000000 +I (136174) example: expect speed: 0.000000 real_pulses:0 +I (136174) example: new speed:399.000000 +I (136184) example: expect speed: 0.000000 real_pulses:0 +I (136184) example: new speed:399.000000 +I (136194) example: expect speed: 0.000000 real_pulses:0 +I (136194) example: new speed:399.000000 +I (136204) example: expect speed: 0.000000 real_pulses:0 +I (136204) example: new speed:399.000000 +I (136214) example: expect speed: 0.000000 real_pulses:0 +I (136214) example: new speed:399.000000 +I (136224) example: expect speed: 0.000000 real_pulses:0 +I (136224) example: new speed:399.000000 +I (136234) example: expect speed: 0.000000 real_pulses:0 +I (136234) example: new speed:399.000000 +I (136244) example: expect speed: 0.000000 real_pulses:0 +I (136244) example: new speed:399.000000 +I (136254) example: expect speed: 0.000000 real_pulses:0 +I (136254) example: new speed:399.000000 +I (136264) example: expect speed: 0.000000 real_pulses:0 +I (136264) example: new speed:399.000000 +I (136274) example: expect speed: 0.000000 real_pulses:0 +I (136274) example: new speed:399.000000 +I (136284) example: expect speed: 0.000000 real_pulses:0 +I (136284) example: new speed:399.000000 +I (136294) example: expect speed: 0.000000 real_pulses:0 +I (136294) example: new speed:399.000000 +I (136304) example: expect speed: 0.000000 real_pulses:0 +I (136304) example: new speed:399.000000 +I (136314) example: expect speed: 0.000000 real_pulses:0 +I (136314) example: new speed:399.000000 +I (136324) example: expect speed: 0.000000 real_pulses:0 +I (136324) example: new speed:399.000000 +I (136334) example: expect speed: 0.000000 real_pulses:0 +I (136334) example: new speed:399.000000 +I (136344) example: expect speed: 0.000000 real_pulses:0 +I (136344) example: new speed:399.000000 +I (136354) example: expect speed: 0.000000 real_pulses:0 +I (136354) example: new speed:399.000000 +I (136364) example: expect speed: 0.000000 real_pulses:0 +I (136364) example: new speed:399.000000 +I (136374) example: expect speed: 0.000000 real_pulses:0 +I (136374) example: new speed:399.000000 +I (136384) example: expect speed: 0.000000 real_pulses:0 +I (136384) example: new speed:399.000000 +I (136394) example: expect speed: 0.000000 real_pulses:0 +I (136394) example: new speed:399.000000 +I (136404) example: expect speed: 0.000000 real_pulses:0 +I (136404) example: new speed:399.000000 +I (136414) example: expect speed: 0.000000 real_pulses:0 +I (136414) example: new speed:399.000000 +I (136424) example: expect speed: 0.000000 real_pulses:0 +I (136424) example: new speed:399.000000 +I (136434) example: expect speed: 0.000000 real_pulses:0 +I (136434) example: new speed:399.000000 +I (136444) example: expect speed: 0.000000 real_pulses:0 +I (136444) example: new speed:399.000000 +I (136454) example: expect speed: 0.000000 real_pulses:0 +I (136454) example: new speed:399.000000 +I (136464) example: expect speed: 0.000000 real_pulses:0 +I (136464) example: new speed:399.000000 +I (136474) example: expect speed: 0.000000 real_pulses:0 +I (136474) example: new speed:399.000000 +I (136484) example: expect speed: 0.000000 real_pulses:0 +I (136484) example: new speed:399.000000 +I (136494) example: expect speed: 0.000000 real_pulses:0 +I (136494) example: new speed:399.000000 +I (136504) example: expect speed: 0.000000 real_pulses:0 +I (136504) example: new speed:399.000000 +I (136514) example: expect speed: 0.000000 real_pulses:0 +I (136514) example: new speed:399.000000 +I (136524) example: expect speed: 0.000000 real_pulses:0 +I (136524) example: new speed:399.000000 +I (136534) example: expect speed: 0.000000 real_pulses:0 +I (136534) example: new speed:399.000000 +I (136544) modbus tcp: ModBusSlave_recv() +I (136544) example: expect speed: 0.000000 real_pulses:0 +I (136544) modbus: ModbusSlaveProcess() +I (136544) example: new speed:399.000000 +I (136544) modbus: check id... +I (136554) modbus: ok +I (136554) modbus: add: 0, length: 10 +I (136554) modbus: Read Holding Registers +I (136554) example: expect speed: 0.000000 real_pulses:0 +I (136564) example: new speed:399.000000 +I (136564) example: expect speed: 0.000000 real_pulses:0 +I (136564) example: new speed:399.000000 +I (136574) example: expect speed: 0.000000 real_pulses:0 +I (136574) example: new speed:399.000000 +I (136584) example: expect speed: 0.000000 real_pulses:0 +I (136584) example: new speed:399.000000 +I (136594) example: expect speed: 0.000000 real_pulses:0 +I (136594) example: new speed:399.000000 +I (136604) example: expect speed: 0.000000 real_pulses:0 +I (136604) example: new speed:399.000000 +I (136614) example: expect speed: 0.000000 real_pulses:0 +I (136624) example: new speed:399.000000 +I (136624) example: expect speed: 0.000000 real_pulses:0 +I (136624) example: new speed:399.000000 +I (136634) example: expect speed: 0.000000 real_pulses:0 +I (136634) example: new speed:399.000000 +I (136644) example: expect speed: 0.000000 real_pulses:0 +I (136654) example: new speed:399.000000 +I (136654) example: expect speed: 0.000000 real_pulses:0 +I (136664) example: new speed:399.000000 +I (136664) example: expect speed: 0.000000 real_pulses:0 +I (136664) example: new speed:399.000000 +I (136674) example: expect speed: 0.000000 real_pulses:0 +I (136674) example: new speed:399.000000 +I (136684) example: expect speed: 0.000000 real_pulses:0 +I (136684) example: new speed:399.000000 +I (136694) example: expect speed: 0.000000 real_pulses:0 +I (136694) example: new speed:399.000000 +I (136704) example: expect speed: 0.000000 real_pulses:0 +I (136714) example: new speed:399.000000 +I (136714) example: expect speed: 0.000000 real_pulses:0 +I (136714) example: new speed:399.000000 +I (136724) example: expect speed: 0.000000 real_pulses:0 +I (136724) example: new speed:399.000000 +I (136734) example: expect speed: 0.000000 real_pulses:0 +I (136734) example: new speed:399.000000 +I (136744) example: expect speed: 0.000000 real_pulses:0 +I (136744) example: new speed:399.000000 +I (136754) example: expect speed: 0.000000 real_pulses:0 +I (136754) example: new speed:399.000000 +I (136764) example: expect speed: 0.000000 real_pulses:0 +I (136764) example: new speed:399.000000 +I (136774) example: expect speed: 0.000000 real_pulses:0 +I (136774) example: new speed:399.000000 +I (136784) example: expect speed: 0.000000 real_pulses:0 +I (136784) example: new speed:399.000000 +I (136794) example: expect speed: 0.000000 real_pulses:0 +I (136794) example: new speed:399.000000 +I (136804) example: expect speed: 0.000000 real_pulses:0 +I (136804) example: new speed:399.000000 +I (136814) example: expect speed: 0.000000 real_pulses:0 +I (136814) example: new speed:399.000000 +I (136824) example: expect speed: 0.000000 real_pulses:0 +I (136824) example: new speed:399.000000 +I (136834) example: expect speed: 0.000000 real_pulses:0 +I (136834) example: new speed:399.000000 +I (136844) example: expect speed: 0.000000 real_pulses:0 +I (136844) example: new speed:399.000000 +I (136854) example: expect speed: 0.000000 real_pulses:0 +I (136854) example: new speed:399.000000 +I (136864) example: expect speed: 0.000000 real_pulses:0 +I (136864) example: new speed:399.000000 +I (136874) example: expect speed: 0.000000 real_pulses:0 +I (136874) example: new speed:399.000000 +I (136884) example: expect speed: 0.000000 real_pulses:0 +I (136884) example: new speed:399.000000 +I (136894) example: expect speed: 0.000000 real_pulses:0 +I (136894) example: new speed:399.000000 +I (136904) example: expect speed: 0.000000 real_pulses:0 +I (136904) example: new speed:399.000000 +I (136914) example: expect speed: 0.000000 real_pulses:0 +I (136914) example: new speed:399.000000 +I (136924) example: expect speed: 0.000000 real_pulses:0 +I (136924) example: new speed:399.000000 +I (136934) example: expect speed: 0.000000 real_pulses:0 +I (136934) example: new speed:399.000000 +I (136944) example: expect speed: 0.000000 real_pulses:0 +I (136944) example: new speed:399.000000 +I (136954) example: expect speed: 0.000000 real_pulses:0 +I (136954) example: new speed:399.000000 +I (136964) example: expect speed: 0.000000 real_pulses:0 +I (136964) example: new speed:399.000000 +I (136974) example: expect speed: 0.000000 real_pulses:0 +I (136974) example: new speed:399.000000 +I (136984) example: expect speed: 0.000000 real_pulses:0 +I (136984) example: new speed:399.000000 +I (136994) example: expect speed: 0.000000 real_pulses:0 +I (136994) example: new speed:399.000000 +I (137004) example: expect speed: 0.000000 real_pulses:0 +I (137004) example: new speed:399.000000 +I (137014) example: expect speed: 0.000000 real_pulses:0 +I (137014) example: new speed:399.000000 +I (137024) example: expect speed: 0.000000 real_pulses:0 +I (137024) example: new speed:399.000000 +I (137034) example: expect speed: 0.000000 real_pulses:0 +I (137034) example: new speed:399.000000 +I (137044) example: expect speed: 0.000000 real_pulses:0 +I (137044) example: new speed:399.000000 +I (137054) example: expect speed: 0.000000 real_pulses:0 +I (137054) example: new speed:399.000000 +I (137064) example: expect speed: 0.000000 real_pulses:0 +I (137064) example: new speed:399.000000 +I (137074) example: expect speed: 0.000000 real_pulses:0 +I (137074) example: new speed:399.000000 +I (137084) example: expect speed: 0.000000 real_pulses:0 +I (137084) example: new speed:399.000000 +I (137094) example: expect speed: 0.000000 real_pulses:0 +I (137094) example: new speed:399.000000 +I (137104) example: expect speed: 0.000000 real_pulses:0 +I (137104) example: new speed:399.000000 +I (137114) example: expect speed: 0.000000 real_pulses:0 +I (137114) example: new speed:399.000000 +I (137124) example: expect speed: 0.000000 real_pulses:0 +I (137124) example: new speed:399.000000 +I (137134) example: expect speed: 0.000000 real_pulses:0 +I (137134) example: new speed:399.000000 +I (137144) example: expect speed: 0.000000 real_pulses:0 +I (137144) example: new speed:399.000000 +I (137154) example: expect speed: 0.000000 real_pulses:0 +I (137154) example: new speed:399.000000 +I (137164) example: expect speed: 0.000000 real_pulses:0 +I (137164) example: new speed:399.000000 +I (137174) example: expect speed: 0.000000 real_pulses:0 +I (137174) example: new speed:399.000000 +I (137184) example: expect speed: 0.000000 real_pulses:0 +I (137184) example: new speed:399.000000 +I (137194) example: expect speed: 0.000000 real_pulses:0 +I (137194) example: new speed:399.000000 +I (137204) example: expect speed: 0.000000 real_pulses:0 +I (137204) example: new speed:399.000000 +I (137214) example: expect speed: 0.000000 real_pulses:0 +I (137214) example: new speed:399.000000 +I (137224) example: expect speed: 0.000000 real_pulses:0 +I (137224) example: new speed:399.000000 +I (137234) example: expect speed: 0.000000 real_pulses:0 +I (137234) example: new speed:399.000000 +I (137244) example: expect speed: 0.000000 real_pulses:0 +I (137244) example: new speed:399.000000 +I (137254) example: expect speed: 0.000000 real_pulses:0 +I (137254) example: new speed:399.000000 +I (137264) example: expect speed: 0.000000 real_pulses:0 +I (137264) example: new speed:399.000000 +I (137274) example: expect speed: 0.000000 real_pulses:0 +I (137274) example: new speed:399.000000 +I (137284) example: expect speed: 0.000000 real_pulses:0 +I (137284) example: new speed:399.000000 +I (137294) example: expect speed: 0.000000 real_pulses:0 +I (137294) example: new speed:399.000000 +I (137304) example: expect speed: 0.000000 real_pulses:0 +I (137304) example: new speed:399.000000 +I (137314) example: expect speed: 0.000000 real_pulses:0 +I (137314) example: new speed:399.000000 +I (137324) example: expect speed: 0.000000 real_pulses:0 +I (137324) example: new speed:399.000000 +I (137334) example: expect speed: 0.000000 real_pulses:0 +I (137334) example: new speed:399.000000 +I (137344) example: expect speed: 0.000000 real_pulses:0 +I (137344) example: new speed:399.000000 +I (137354) example: expect speed: 0.000000 real_pulses:0 +I (137354) example: new speed:399.000000 +I (137364) example: expect speed: 0.000000 real_pulses:0 +I (137364) example: new speed:399.000000 +I (137374) example: expect speed: 0.000000 real_pulses:0 +I (137374) example: new speed:399.000000 +I (137384) example: expect speed: 0.000000 real_pulses:0 +I (137384) example: new speed:399.000000 +I (137394) example: expect speed: 0.000000 real_pulses:0 +I (137394) example: new speed:399.000000 +I (137404) example: expect speed: 0.000000 real_pulses:0 +I (137404) example: new speed:399.000000 +I (137414) example: expect speed: 0.000000 real_pulses:0 +I (137414) example: new speed:399.000000 +I (137424) example: expect speed: 0.000000 real_pulses:0 +I (137424) example: new speed:399.000000 +I (137434) example: expect speed: 0.000000 real_pulses:0 +I (137434) example: new speed:399.000000 +I (137444) example: expect speed: 0.000000 real_pulses:0 +I (137444) example: new speed:399.000000 +I (137454) example: expect speed: 0.000000 real_pulses:0 +I (137454) example: new speed:399.000000 +I (137464) example: expect speed: 0.000000 real_pulses:0 +I (137464) example: new speed:399.000000 +I (137474) example: expect speed: 0.000000 real_pulses:0 +I (137474) example: new speed:399.000000 +I (137484) example: expect speed: 0.000000 real_pulses:0 +I (137484) example: new speed:399.000000 +I (137494) example: expect speed: 0.000000 real_pulses:0 +I (137494) example: new speed:399.000000 +I (137504) example: expect speed: 0.000000 real_pulses:0 +I (137504) example: new speed:399.000000 +I (137514) example: expect speed: 0.000000 real_pulses:0 +I (137514) example: new speed:399.000000 +I (137524) example: expect speed: 0.000000 real_pulses:0 +I (137524) example: new speed:399.000000 +I (137534) example: expect speed: 0.000000 real_pulses:0 +I (137534) example: new speed:399.000000 +I (137544) example: expect speed: 0.000000 real_pulses:0 +I (137544) example: new speed:399.000000 +I (137554) example: expect speed: 0.000000 real_pulses:0 +I (137554) example: new speed:399.000000 +I (137564) example: expect speed: 0.000000 real_pulses:0 +I (137564) example: new speed:399.000000 +I (137574) modbus tcp: ModBusSlave_recv() +I (137574) modbus: ModbusSlaveProcess() +I (137574) modbus: check id... +I (137574) modbus: ok +I (137574) modbus: add: 0, length: 10 +I (137574) example: expect speed: 0.000000 real_pulses:0 +I (137574) modbus: Read Holding Registers +I (137574) example: new speed:399.000000 +I (137584) example: expect speed: 0.000000 real_pulses:0 +I (137594) example: new speed:399.000000 +I (137594) example: expect speed: 0.000000 real_pulses:0 +I (137594) example: new speed:399.000000 +I (137604) example: expect speed: 0.000000 real_pulses:0 +I (137604) example: new speed:399.000000 +I (137614) example: expect speed: 0.000000 real_pulses:0 +I (137614) example: new speed:399.000000 +I (137624) example: expect speed: 0.000000 real_pulses:0 +I (137624) example: new speed:399.000000 +I (137634) example: expect speed: 0.000000 real_pulses:0 +I (137634) example: new speed:399.000000 +I (137644) example: expect speed: 0.000000 real_pulses:0 +I (137654) example: new speed:399.000000 +I (137654) example: expect speed: 0.000000 real_pulses:0 +I (137654) example: new speed:399.000000 +I (137664) example: expect speed: 0.000000 real_pulses:0 +I (137664) example: new speed:399.000000 +I (137674) example: expect speed: 0.000000 real_pulses:0 +I (137684) example: new speed:399.000000 +I (137684) example: expect speed: 0.000000 real_pulses:0 +I (137694) example: new speed:399.000000 +I (137694) example: expect speed: 0.000000 real_pulses:0 +I (137694) example: new speed:399.000000 +I (137704) example: expect speed: 0.000000 real_pulses:0 +I (137704) example: new speed:399.000000 +I (137714) example: expect speed: 0.000000 real_pulses:0 +I (137714) example: new speed:399.000000 +I (137724) example: expect speed: 0.000000 real_pulses:0 +I (137724) example: new speed:399.000000 +I (137734) example: expect speed: 0.000000 real_pulses:0 +I (137744) example: new speed:399.000000 +I (137744) example: expect speed: 0.000000 real_pulses:0 +I (137744) example: new speed:399.000000 +I (137754) example: expect speed: 0.000000 real_pulses:0 +I (137754) example: new speed:399.000000 +I (137764) example: expect speed: 0.000000 real_pulses:0 +I (137764) example: new speed:399.000000 +I (137774) example: expect speed: 0.000000 real_pulses:0 +I (137774) example: new speed:399.000000 +I (137784) example: expect speed: 0.000000 real_pulses:0 +I (137784) example: new speed:399.000000 +I (137794) example: expect speed: 0.000000 real_pulses:0 +I (137794) example: new speed:399.000000 +I (137804) example: expect speed: 0.000000 real_pulses:0 +I (137804) example: new speed:399.000000 +I (137814) example: expect speed: 0.000000 real_pulses:0 +I (137814) example: new speed:399.000000 +I (137824) example: expect speed: 0.000000 real_pulses:0 +I (137824) example: new speed:399.000000 +I (137834) example: expect speed: 0.000000 real_pulses:0 +I (137834) example: new speed:399.000000 +I (137844) example: expect speed: 0.000000 real_pulses:0 +I (137844) example: new speed:399.000000 +I (137854) example: expect speed: 0.000000 real_pulses:0 +I (137854) example: new speed:399.000000 +I (137864) example: expect speed: 0.000000 real_pulses:0 +I (137864) example: new speed:399.000000 +I (137874) example: expect speed: 0.000000 real_pulses:0 +I (137874) example: new speed:399.000000 +I (137884) example: expect speed: 0.000000 real_pulses:0 +I (137884) example: new speed:399.000000 +I (137894) example: expect speed: 0.000000 real_pulses:0 +I (137894) example: new speed:399.000000 +I (137904) example: expect speed: 0.000000 real_pulses:0 +I (137904) example: new speed:399.000000 +I (137914) example: expect speed: 0.000000 real_pulses:0 +I (137914) example: new speed:399.000000 +I (137924) example: expect speed: 0.000000 real_pulses:0 +I (137924) example: new speed:399.000000 +I (137934) example: expect speed: 0.000000 real_pulses:0 +I (137934) example: new speed:399.000000 +I (137944) example: expect speed: 0.000000 real_pulses:0 +I (137944) example: new speed:399.000000 +I (137954) example: expect speed: 0.000000 real_pulses:0 +I (137954) example: new speed:399.000000 +I (137964) example: expect speed: 0.000000 real_pulses:0 +I (137964) example: new speed:399.000000 +I (137974) example: expect speed: 0.000000 real_pulses:0 +I (137974) example: new speed:399.000000 +I (137984) example: expect speed: 0.000000 real_pulses:0 +I (137984) example: new speed:399.000000 +I (137994) example: expect speed: 0.000000 real_pulses:0 +I (137994) example: new speed:399.000000 +I (138004) example: expect speed: 0.000000 real_pulses:0 +I (138004) example: new speed:399.000000 +I (138014) example: expect speed: 0.000000 real_pulses:0 +I (138014) example: new speed:399.000000 +I (138024) example: expect speed: 0.000000 real_pulses:0 +I (138024) example: new speed:399.000000 +I (138034) example: expect speed: 0.000000 real_pulses:0 +I (138034) example: new speed:399.000000 +I (138044) example: expect speed: 0.000000 real_pulses:0 +I (138044) example: new speed:399.000000 +I (138054) example: expect speed: 0.000000 real_pulses:0 +I (138054) example: new speed:399.000000 +I (138064) example: expect speed: 0.000000 real_pulses:0 +I (138064) example: new speed:399.000000 +I (138074) example: expect speed: 0.000000 real_pulses:0 +I (138074) example: new speed:399.000000 +I (138084) example: expect speed: 0.000000 real_pulses:0 +I (138084) example: new speed:399.000000 +I (138094) example: expect speed: 0.000000 real_pulses:0 +I (138094) example: new speed:399.000000 +I (138104) example: expect speed: 0.000000 real_pulses:0 +I (138104) example: new speed:399.000000 +I (138114) example: expect speed: 0.000000 real_pulses:0 +I (138114) example: new speed:399.000000 +I (138124) example: expect speed: 0.000000 real_pulses:0 +I (138124) example: new speed:399.000000 +I (138134) example: expect speed: 0.000000 real_pulses:0 +I (138134) example: new speed:399.000000 +I (138144) example: expect speed: 0.000000 real_pulses:0 +I (138144) example: new speed:399.000000 +I (138154) example: expect speed: 0.000000 real_pulses:0 +I (138154) example: new speed:399.000000 +I (138164) example: expect speed: 0.000000 real_pulses:0 +I (138164) example: new speed:399.000000 +I (138174) example: expect speed: 0.000000 real_pulses:0 +I (138174) example: new speed:399.000000 +I (138184) example: expect speed: 0.000000 real_pulses:0 +I (138184) example: new speed:399.000000 +I (138194) example: expect speed: 0.000000 real_pulses:0 +I (138194) example: new speed:399.000000 +I (138204) example: expect speed: 0.000000 real_pulses:0 +I (138204) example: new speed:399.000000 +I (138214) example: expect speed: 0.000000 real_pulses:0 +I (138214) example: new speed:399.000000 +I (138224) example: expect speed: 0.000000 real_pulses:0 +I (138224) example: new speed:399.000000 +I (138234) example: expect speed: 0.000000 real_pulses:0 +I (138234) example: new speed:399.000000 +I (138244) example: expect speed: 0.000000 real_pulses:0 +I (138244) example: new speed:399.000000 +I (138254) example: expect speed: 0.000000 real_pulses:0 +I (138254) example: new speed:399.000000 +I (138264) example: expect speed: 0.000000 real_pulses:0 +I (138264) example: new speed:399.000000 +I (138274) example: expect speed: 0.000000 real_pulses:0 +I (138274) example: new speed:399.000000 +I (138284) example: expect speed: 0.000000 real_pulses:0 +I (138284) example: new speed:399.000000 +I (138294) example: expect speed: 0.000000 real_pulses:0 +I (138294) example: new speed:399.000000 +I (138304) example: expect speed: 0.000000 real_pulses:0 +I (138304) example: new speed:399.000000 +I (138314) example: expect speed: 0.000000 real_pulses:0 +I (138314) example: new speed:399.000000 +I (138324) example: expect speed: 0.000000 real_pulses:0 +I (138324) example: new speed:399.000000 +I (138334) example: expect speed: 0.000000 real_pulses:0 +I (138334) example: new speed:399.000000 +I (138344) example: expect speed: 0.000000 real_pulses:0 +I (138344) example: new speed:399.000000 +I (138354) example: expect speed: 0.000000 real_pulses:0 +I (138354) example: new speed:399.000000 +I (138364) example: expect speed: 0.000000 real_pulses:0 +I (138364) example: new speed:399.000000 +I (138374) example: expect speed: 0.000000 real_pulses:0 +I (138374) example: new speed:399.000000 +I (138384) example: expect speed: 0.000000 real_pulses:0 +I (138384) example: new speed:399.000000 +I (138394) example: expect speed: 0.000000 real_pulses:0 +I (138394) example: new speed:399.000000 +I (138404) example: expect speed: 0.000000 real_pulses:0 +I (138404) example: new speed:399.000000 +I (138414) example: expect speed: 0.000000 real_pulses:0 +I (138414) example: new speed:399.000000 +I (138424) example: expect speed: 0.000000 real_pulses:0 +I (138424) example: new speed:399.000000 +I (138434) example: expect speed: 0.000000 real_pulses:0 +I (138434) example: new speed:399.000000 +I (138444) example: expect speed: 0.000000 real_pulses:0 +I (138444) example: new speed:399.000000 +I (138454) example: expect speed: 0.000000 real_pulses:0 +I (138454) example: new speed:399.000000 +I (138464) example: expect speed: 0.000000 real_pulses:0 +I (138464) example: new speed:399.000000 +I (138474) example: expect speed: 0.000000 real_pulses:0 +I (138474) example: new speed:399.000000 +I (138484) example: expect speed: 0.000000 real_pulses:0 +I (138484) example: new speed:399.000000 +I (138494) example: expect speed: 0.000000 real_pulses:0 +I (138494) example: new speed:399.000000 +I (138504) example: expect speed: 0.000000 real_pulses:0 +I (138504) example: new speed:399.000000 +I (138514) example: expect speed: 0.000000 real_pulses:0 +I (138514) example: new speed:399.000000 +I (138524) example: expect speed: 0.000000 real_pulses:0 +I (138524) example: new speed:399.000000 +I (138534) example: expect speed: 0.000000 real_pulses:0 +I (138534) example: new speed:399.000000 +I (138544) example: expect speed: 0.000000 real_pulses:0 +I (138544) example: new speed:399.000000 +I (138554) example: expect speed: 0.000000 real_pulses:0 +I (138554) example: new speed:399.000000 +I (138564) example: expect speed: 0.000000 real_pulses:0 +I (138564) example: new speed:399.000000 +I (138574) example: expect speed: 0.000000 real_pulses:0 +I (138574) example: new speed:399.000000 +I (138584) example: expect speed: 0.000000 real_pulses:0 +I (138584) example: new speed:399.000000 +I (138594) example: expect speed: 0.000000 real_pulses:0 +I (138594) example: new speed:399.000000 +I (138604) example: expect speed: 0.000000 real_pulses:0 +I (138614) example: new speed:399.000000 +I (138614) example: expect speed: 0.000000 real_pulses:0 +I (138624) modbus tcp: ModBusSlave_recv() +I (138624) example: new speed:399.000000 +I (138624) modbus: ModbusSlaveProcess() +I (138624) modbus: check id... +I (138624) modbus: ok +I (138624) modbus: add: 0, length: 10 +I (138624) modbus: Read Holding Registers +I (138624) example: expect speed: 0.000000 real_pulses:0 +I (138634) example: new speed:399.000000 +I (138634) example: expect speed: 0.000000 real_pulses:0 +I (138634) example: new speed:399.000000 +I (138644) example: expect speed: 0.000000 real_pulses:0 +I (138644) example: new speed:399.000000 +I (138654) example: expect speed: 0.000000 real_pulses:0 +I (138654) example: new speed:399.000000 +I (138664) example: expect speed: 0.000000 real_pulses:0 +I (138674) example: new speed:399.000000 +I (138674) example: expect speed: 0.000000 real_pulses:0 +I (138674) example: new speed:399.000000 +I (138684) example: expect speed: 0.000000 real_pulses:0 +I (138684) example: new speed:399.000000 +I (138694) example: expect speed: 0.000000 real_pulses:0 +I (138694) example: new speed:399.000000 +I (138704) example: expect speed: 0.000000 real_pulses:0 +I (138704) example: new speed:399.000000 +I (138714) example: expect speed: 0.000000 real_pulses:0 +I (138724) example: new speed:399.000000 +I (138724) example: expect speed: 0.000000 real_pulses:0 +I (138724) example: new speed:399.000000 +I (138734) example: expect speed: 0.000000 real_pulses:0 +I (138734) example: new speed:399.000000 +I (138744) example: expect speed: 0.000000 real_pulses:0 +I (138744) example: new speed:399.000000 +I (138754) example: expect speed: 0.000000 real_pulses:0 +I (138754) example: new speed:399.000000 +I (138764) example: expect speed: 0.000000 real_pulses:0 +I (138764) example: new speed:399.000000 +I (138774) example: expect speed: 0.000000 real_pulses:0 +I (138774) example: new speed:399.000000 +I (138784) example: expect speed: 0.000000 real_pulses:0 +I (138784) example: new speed:399.000000 +I (138794) example: expect speed: 0.000000 real_pulses:0 +I (138794) example: new speed:399.000000 +I (138804) example: expect speed: 0.000000 real_pulses:0 +I (138804) example: new speed:399.000000 +I (138814) example: expect speed: 0.000000 real_pulses:0 +I (138814) example: new speed:399.000000 +I (138824) example: expect speed: 0.000000 real_pulses:0 +I (138824) example: new speed:399.000000 +I (138834) example: expect speed: 0.000000 real_pulses:0 +I (138834) example: new speed:399.000000 +I (138844) example: expect speed: 0.000000 real_pulses:0 +I (138844) example: new speed:399.000000 +I (138854) example: expect speed: 0.000000 real_pulses:0 +I (138854) example: new speed:399.000000 +I (138864) example: expect speed: 0.000000 real_pulses:0 +I (138864) example: new speed:399.000000 +I (138874) example: expect speed: 0.000000 real_pulses:0 +I (138874) example: new speed:399.000000 +I (138884) example: expect speed: 0.000000 real_pulses:0 +I (138884) example: new speed:399.000000 +I (138894) example: expect speed: 0.000000 real_pulses:0 +I (138894) example: new speed:399.000000 +I (138904) example: expect speed: 0.000000 real_pulses:0 +I (138904) example: new speed:399.000000 +I (138914) example: expect speed: 0.000000 real_pulses:0 +I (138914) example: new speed:399.000000 +I (138924) example: expect speed: 0.000000 real_pulses:0 +I (138924) example: new speed:399.000000 +I (138934) example: expect speed: 0.000000 real_pulses:0 +I (138934) example: new speed:399.000000 +I (138944) example: expect speed: 0.000000 real_pulses:0 +I (138944) example: new speed:399.000000 +I (138954) example: expect speed: 0.000000 real_pulses:0 +I (138954) example: new speed:399.000000 +I (138964) example: expect speed: 0.000000 real_pulses:0 +I (138964) example: new speed:399.000000 +I (138974) example: expect speed: 0.000000 real_pulses:0 +I (138974) example: new speed:399.000000 +I (138984) example: expect speed: 0.000000 real_pulses:0 +I (138984) example: new speed:399.000000 +I (138994) example: expect speed: 0.000000 real_pulses:0 +I (138994) example: new speed:399.000000 +I (139004) example: expect speed: 0.000000 real_pulses:0 +I (139004) example: new speed:399.000000 +I (139014) example: expect speed: 0.000000 real_pulses:0 +I (139014) example: new speed:399.000000 +I (139024) example: expect speed: 0.000000 real_pulses:0 +I (139024) example: new speed:399.000000 +I (139034) example: expect speed: 0.000000 real_pulses:0 +I (139034) example: new speed:399.000000 +I (139044) example: expect speed: 0.000000 real_pulses:0 +I (139044) example: new speed:399.000000 +I (139054) example: expect speed: 0.000000 real_pulses:0 +I (139054) example: new speed:399.000000 +I (139064) example: expect speed: 0.000000 real_pulses:0 +I (139064) example: new speed:399.000000 +I (139074) example: expect speed: 0.000000 real_pulses:0 +I (139074) example: new speed:399.000000 +I (139084) example: expect speed: 0.000000 real_pulses:0 +I (139084) example: new speed:399.000000 +I (139094) example: expect speed: 0.000000 real_pulses:0 +I (139094) example: new speed:399.000000 +I (139104) example: expect speed: 0.000000 real_pulses:0 +I (139104) example: new speed:399.000000 +I (139114) example: expect speed: 0.000000 real_pulses:0 +I (139114) example: new speed:399.000000 +I (139124) example: expect speed: 0.000000 real_pulses:0 +I (139124) example: new speed:399.000000 +I (139134) example: expect speed: 0.000000 real_pulses:0 +I (139134) example: new speed:399.000000 +I (139144) example: expect speed: 0.000000 real_pulses:0 +I (139144) example: new speed:399.000000 +I (139154) example: expect speed: 0.000000 real_pulses:0 +I (139154) example: new speed:399.000000 +I (139164) example: expect speed: 0.000000 real_pulses:0 +I (139164) example: new speed:399.000000 +I (139174) example: expect speed: 0.000000 real_pulses:0 +I (139174) example: new speed:399.000000 +I (139184) example: expect speed: 0.000000 real_pulses:0 +I (139184) example: new speed:399.000000 +I (139194) example: expect speed: 0.000000 real_pulses:0 +I (139194) example: new speed:399.000000 +I (139204) example: expect speed: 0.000000 real_pulses:0 +I (139204) example: new speed:399.000000 +I (139214) example: expect speed: 0.000000 real_pulses:0 +I (139214) example: new speed:399.000000 +I (139224) example: expect speed: 0.000000 real_pulses:0 +I (139224) example: new speed:399.000000 +I (139234) example: expect speed: 0.000000 real_pulses:0 +I (139234) example: new speed:399.000000 +I (139244) example: expect speed: 0.000000 real_pulses:0 +I (139244) example: new speed:399.000000 +I (139254) example: expect speed: 0.000000 real_pulses:0 +I (139254) example: new speed:399.000000 +I (139264) example: expect speed: 0.000000 real_pulses:0 +I (139264) example: new speed:399.000000 +I (139274) example: expect speed: 0.000000 real_pulses:0 +I (139274) example: new speed:399.000000 +I (139284) example: expect speed: 0.000000 real_pulses:0 +I (139284) example: new speed:399.000000 +I (139294) example: expect speed: 0.000000 real_pulses:0 +I (139294) example: new speed:399.000000 +I (139304) example: expect speed: 0.000000 real_pulses:0 +I (139304) example: new speed:399.000000 +I (139314) example: expect speed: 0.000000 real_pulses:0 +I (139314) example: new speed:399.000000 +I (139324) example: expect speed: 0.000000 real_pulses:0 +I (139324) example: new speed:399.000000 +I (139334) example: expect speed: 0.000000 real_pulses:0 +I (139334) example: new speed:399.000000 +I (139344) example: expect speed: 0.000000 real_pulses:0 +I (139344) example: new speed:399.000000 +I (139354) example: expect speed: 0.000000 real_pulses:0 +I (139354) example: new speed:399.000000 +I (139364) example: expect speed: 0.000000 real_pulses:0 +I (139364) example: new speed:399.000000 +I (139374) example: expect speed: 0.000000 real_pulses:0 +I (139374) example: new speed:399.000000 +I (139384) example: expect speed: 0.000000 real_pulses:0 +I (139384) example: new speed:399.000000 +I (139394) example: expect speed: 0.000000 real_pulses:0 +I (139394) example: new speed:399.000000 +I (139404) example: expect speed: 0.000000 real_pulses:0 +I (139404) example: new speed:399.000000 +I (139414) example: expect speed: 0.000000 real_pulses:0 +I (139414) example: new speed:399.000000 +I (139424) example: expect speed: 0.000000 real_pulses:0 +I (139424) example: new speed:399.000000 +I (139434) example: expect speed: 0.000000 real_pulses:0 +I (139434) example: new speed:399.000000 +I (139444) example: expect speed: 0.000000 real_pulses:0 +I (139444) example: new speed:399.000000 +I (139454) example: expect speed: 0.000000 real_pulses:0 +I (139454) example: new speed:399.000000 +I (139464) example: expect speed: 0.000000 real_pulses:0 +I (139464) example: new speed:399.000000 +I (139474) example: expect speed: 0.000000 real_pulses:0 +I (139474) example: new speed:399.000000 +I (139484) example: expect speed: 0.000000 real_pulses:0 +I (139484) example: new speed:399.000000 +I (139494) example: expect speed: 0.000000 real_pulses:0 +I (139494) example: new speed:399.000000 +I (139504) example: expect speed: 0.000000 real_pulses:0 +I (139504) example: new speed:399.000000 +I (139514) example: expect speed: 0.000000 real_pulses:0 +I (139514) example: new speed:399.000000 +I (139524) example: expect speed: 0.000000 real_pulses:0 +I (139524) example: new speed:399.000000 +I (139534) example: expect speed: 0.000000 real_pulses:0 +I (139534) example: new speed:399.000000 +I (139544) example: expect speed: 0.000000 real_pulses:0 +I (139544) example: new speed:399.000000 +I (139554) example: expect speed: 0.000000 real_pulses:0 +I (139554) example: new speed:399.000000 +I (139564) example: expect speed: 0.000000 real_pulses:0 +I (139564) example: new speed:399.000000 +I (139574) example: expect speed: 0.000000 real_pulses:0 +I (139574) example: new speed:399.000000 +I (139584) example: expect speed: 0.000000 real_pulses:0 +I (139584) example: new speed:399.000000 +I (139594) example: expect speed: 0.000000 real_pulses:0 +I (139594) example: new speed:399.000000 +I (139604) example: expect speed: 0.000000 real_pulses:0 +I (139604) example: new speed:399.000000 +I (139614) example: expect speed: 0.000000 real_pulses:0 +I (139624) example: new speed:399.000000 +I (139624) example: expect speed: 0.000000 real_pulses:0 +I (139634) example: new speed:399.000000 +I (139634) modbus tcp: ModBusSlave_recv() +I (139634) modbus: ModbusSlaveProcess() +I (139634) modbus: check id... +I (139634) modbus: ok +I (139634) modbus: add: 0, length: 10 +I (139634) modbus: Read Holding Registers +I (139634) example: expect speed: 0.000000 real_pulses:0 +I (139644) example: new speed:399.000000 +I (139644) example: expect speed: 0.000000 real_pulses:0 +I (139644) example: new speed:399.000000 +I (139654) example: expect speed: 0.000000 real_pulses:0 +I (139654) example: new speed:399.000000 +I (139664) example: expect speed: 0.000000 real_pulses:0 +I (139664) example: new speed:399.000000 +I (139674) example: expect speed: 0.000000 real_pulses:0 +I (139674) example: new speed:399.000000 +I (139684) example: expect speed: 0.000000 real_pulses:0 +I (139684) example: new speed:399.000000 +I (139694) example: expect speed: 0.000000 real_pulses:0 +I (139704) example: new speed:399.000000 +I (139704) example: expect speed: 0.000000 real_pulses:0 +I (139704) example: new speed:399.000000 +I (139714) example: expect speed: 0.000000 real_pulses:0 +I (139714) example: new speed:399.000000 +I (139724) example: expect speed: 0.000000 real_pulses:0 +I (139724) example: new speed:399.000000 +I (139734) example: expect speed: 0.000000 real_pulses:0 +I (139734) example: new speed:399.000000 +I (139744) example: expect speed: 0.000000 real_pulses:0 +I (139754) example: new speed:399.000000 +I (139754) example: expect speed: 0.000000 real_pulses:0 +I (139754) example: new speed:399.000000 +I (139764) example: expect speed: 0.000000 real_pulses:0 +I (139774) example: new speed:399.000000 +I (139774) example: expect speed: 0.000000 real_pulses:0 +I (139774) example: new speed:399.000000 +I (139784) example: expect speed: 0.000000 real_pulses:0 +I (139784) example: new speed:399.000000 +I (139794) example: expect speed: 0.000000 real_pulses:0 +I (139794) example: new speed:399.000000 +I (139804) example: expect speed: 0.000000 real_pulses:0 +I (139804) example: new speed:399.000000 +I (139814) example: expect speed: 0.000000 real_pulses:0 +I (139814) example: new speed:399.000000 +I (139824) example: expect speed: 0.000000 real_pulses:0 +I (139824) example: new speed:399.000000 +I (139834) example: expect speed: 0.000000 real_pulses:0 +I (139834) example: new speed:399.000000 +I (139844) example: expect speed: 0.000000 real_pulses:0 +I (139844) example: new speed:399.000000 +I (139854) example: expect speed: 0.000000 real_pulses:0 +I (139854) example: new speed:399.000000 +I (139864) example: expect speed: 0.000000 real_pulses:0 +I (139864) example: new speed:399.000000 +I (139874) example: expect speed: 0.000000 real_pulses:0 +I (139874) example: new speed:399.000000 +I (139884) example: expect speed: 0.000000 real_pulses:0 +I (139884) example: new speed:399.000000 +I (139894) example: expect speed: 0.000000 real_pulses:0 +I (139894) example: new speed:399.000000 +I (139904) example: expect speed: 0.000000 real_pulses:0 +I (139904) example: new speed:399.000000 +I (139914) example: expect speed: 0.000000 real_pulses:0 +I (139914) example: new speed:399.000000 +I (139924) example: expect speed: 0.000000 real_pulses:0 +I (139924) example: new speed:399.000000 +I (139934) example: expect speed: 0.000000 real_pulses:0 +I (139934) example: new speed:399.000000 +I (139944) example: expect speed: 0.000000 real_pulses:0 +I (139944) example: new speed:399.000000 +I (139954) example: expect speed: 0.000000 real_pulses:0 +I (139954) example: new speed:399.000000 +I (139964) example: expect speed: 0.000000 real_pulses:0 +I (139964) example: new speed:399.000000 +I (139974) example: expect speed: 0.000000 real_pulses:0 +I (139974) example: new speed:399.000000 +I (139984) example: expect speed: 0.000000 real_pulses:0 +I (139984) example: new speed:399.000000 +I (139994) example: expect speed: 0.000000 real_pulses:0 +I (139994) example: new speed:399.000000 +I (140004) example: expect speed: 0.000000 real_pulses:0 +I (140004) example: new speed:399.000000 +I (140014) example: expect speed: 0.000000 real_pulses:0 +I (140014) example: new speed:399.000000 +I (140024) example: expect speed: 0.000000 real_pulses:0 +I (140024) example: new speed:399.000000 +I (140034) example: expect speed: 0.000000 real_pulses:0 +I (140034) example: new speed:399.000000 +I (140044) example: expect speed: 0.000000 real_pulses:0 +I (140044) example: new speed:399.000000 +I (140054) example: expect speed: 0.000000 real_pulses:0 +I (140054) example: new speed:399.000000 +I (140064) example: expect speed: 0.000000 real_pulses:0 +I (140064) example: new speed:399.000000 +I (140074) example: expect speed: 0.000000 real_pulses:0 +I (140074) example: new speed:399.000000 +I (140084) example: expect speed: 0.000000 real_pulses:0 +I (140084) example: new speed:399.000000 +I (140094) example: expect speed: 0.000000 real_pulses:0 +I (140094) example: new speed:399.000000 +I (140104) example: expect speed: 0.000000 real_pulses:0 +I (140104) example: new speed:399.000000 +I (140114) example: expect speed: 0.000000 real_pulses:0 +I (140114) example: new speed:399.000000 +I (140124) example: expect speed: 0.000000 real_pulses:0 +I (140124) example: new speed:399.000000 +I (140134) example: expect speed: 0.000000 real_pulses:0 +I (140134) example: new speed:399.000000 +I (140144) example: expect speed: 0.000000 real_pulses:0 +I (140144) example: new speed:399.000000 +I (140154) example: expect speed: 0.000000 real_pulses:0 +I (140154) example: new speed:399.000000 +I (140164) example: expect speed: 0.000000 real_pulses:0 +I (140164) example: new speed:399.000000 +I (140174) example: expect speed: 0.000000 real_pulses:0 +I (140174) example: new speed:399.000000 +I (140184) example: expect speed: 0.000000 real_pulses:0 +I (140184) example: new speed:399.000000 +I (140194) example: expect speed: 0.000000 real_pulses:0 +I (140194) example: new speed:399.000000 +I (140204) example: expect speed: 0.000000 real_pulses:0 +I (140204) example: new speed:399.000000 +I (140214) example: expect speed: 0.000000 real_pulses:0 +I (140214) example: new speed:399.000000 +I (140224) example: expect speed: 0.000000 real_pulses:0 +I (140224) example: new speed:399.000000 +I (140234) example: expect speed: 0.000000 real_pulses:0 +I (140234) example: new speed:399.000000 +I (140244) example: expect speed: 0.000000 real_pulses:0 +I (140244) example: new speed:399.000000 +I (140254) example: expect speed: 0.000000 real_pulses:0 +I (140254) example: new speed:399.000000 +I (140264) example: expect speed: 0.000000 real_pulses:0 +I (140264) example: new speed:399.000000 +I (140274) example: expect speed: 0.000000 real_pulses:0 +I (140274) example: new speed:399.000000 +I (140284) example: expect speed: 0.000000 real_pulses:0 +I (140284) example: new speed:399.000000 +I (140294) example: expect speed: 0.000000 real_pulses:0 +I (140294) example: new speed:399.000000 +I (140304) example: expect speed: 0.000000 real_pulses:0 +I (140304) example: new speed:399.000000 +I (140314) example: expect speed: 0.000000 real_pulses:0 +I (140314) example: new speed:399.000000 +I (140324) example: expect speed: 0.000000 real_pulses:0 +I (140324) example: new speed:399.000000 +I (140334) example: expect speed: 0.000000 real_pulses:0 +I (140334) example: new speed:399.000000 +I (140344) example: expect speed: 0.000000 real_pulses:0 +I (140344) example: new speed:399.000000 +I (140354) example: expect speed: 0.000000 real_pulses:0 +I (140354) example: new speed:399.000000 +I (140364) example: expect speed: 0.000000 real_pulses:0 +I (140364) example: new speed:399.000000 +I (140374) example: expect speed: 0.000000 real_pulses:0 +I (140374) example: new speed:399.000000 +I (140384) example: expect speed: 0.000000 real_pulses:0 +I (140384) example: new speed:399.000000 +I (140394) example: expect speed: 0.000000 real_pulses:0 +I (140394) example: new speed:399.000000 +I (140404) example: expect speed: 0.000000 real_pulses:0 +I (140404) example: new speed:399.000000 +I (140414) example: expect speed: 0.000000 real_pulses:0 +I (140414) example: new speed:399.000000 +I (140424) example: expect speed: 0.000000 real_pulses:0 +I (140424) example: new speed:399.000000 +I (140434) example: expect speed: 0.000000 real_pulses:0 +I (140434) example: new speed:399.000000 +I (140444) example: expect speed: 0.000000 real_pulses:0 +I (140444) example: new speed:399.000000 +I (140454) example: expect speed: 0.000000 real_pulses:0 +I (140454) example: new speed:399.000000 +I (140464) example: expect speed: 0.000000 real_pulses:0 +I (140464) example: new speed:399.000000 +I (140474) example: expect speed: 0.000000 real_pulses:0 +I (140474) example: new speed:399.000000 +I (140484) example: expect speed: 0.000000 real_pulses:0 +I (140484) example: new speed:399.000000 +I (140494) example: expect speed: 0.000000 real_pulses:0 +I (140494) example: new speed:399.000000 +I (140504) example: expect speed: 0.000000 real_pulses:0 +I (140504) example: new speed:399.000000 +I (140514) example: expect speed: 0.000000 real_pulses:0 +I (140514) example: new speed:399.000000 +I (140524) example: expect speed: 0.000000 real_pulses:0 +I (140524) example: new speed:399.000000 +I (140534) example: expect speed: 0.000000 real_pulses:0 +I (140534) example: new speed:399.000000 +I (140544) example: expect speed: 0.000000 real_pulses:0 +I (140544) example: new speed:399.000000 +I (140554) example: expect speed: 0.000000 real_pulses:0 +I (140554) example: new speed:399.000000 +I (140564) example: expect speed: 0.000000 real_pulses:0 +I (140564) example: new speed:399.000000 +I (140574) example: expect speed: 0.000000 real_pulses:0 +I (140574) example: new speed:399.000000 +I (140584) example: expect speed: 0.000000 real_pulses:0 +I (140584) example: new speed:399.000000 +I (140594) example: expect speed: 0.000000 real_pulses:0 +I (140594) example: new speed:399.000000 +I (140604) example: expect speed: 0.000000 real_pulses:0 +I (140604) example: new speed:399.000000 +I (140614) example: expect speed: 0.000000 real_pulses:0 +I (140614) example: new speed:399.000000 +I (140624) example: expect speed: 0.000000 real_pulses:0 +I (140624) example: new speed:399.000000 +I (140634) example: expect speed: 0.000000 real_pulses:0 +I (140634) example: new speed:399.000000 +I (140644) modbus tcp: ModBusSlave_recv() +I (140644) modbus: ModbusSlaveProcess() +I (140644) modbus: check id... +I (140644) modbus: ok +I (140644) modbus: add: 0, length: 10 +I (140644) example: expect speed: 0.000000 real_pulses:0 +I (140644) modbus: Read Holding Registers +I (140644) example: new speed:399.000000 +I (140654) example: expect speed: 0.000000 real_pulses:0 +I (140664) example: new speed:399.000000 +I (140664) example: expect speed: 0.000000 real_pulses:0 +I (140664) example: new speed:399.000000 +I (140674) example: expect speed: 0.000000 real_pulses:0 +I (140674) example: new speed:399.000000 +I (140684) example: expect speed: 0.000000 real_pulses:0 +I (140684) example: new speed:399.000000 +I (140694) example: expect speed: 0.000000 real_pulses:0 +I (140694) example: new speed:399.000000 +I (140704) example: expect speed: 0.000000 real_pulses:0 +I (140714) example: new speed:399.000000 +I (140714) example: expect speed: 0.000000 real_pulses:0 +I (140714) example: new speed:399.000000 +I (140724) example: expect speed: 0.000000 real_pulses:0 +I (140724) example: new speed:399.000000 +I (140734) example: expect speed: 0.000000 real_pulses:0 +I (140734) example: new speed:399.000000 +I (140744) example: expect speed: 0.000000 real_pulses:0 +I (140744) example: new speed:399.000000 +I (140754) example: expect speed: 0.000000 real_pulses:0 +I (140764) example: new speed:399.000000 +I (140764) example: expect speed: 0.000000 real_pulses:0 +I (140764) example: new speed:399.000000 +I (140774) example: expect speed: 0.000000 real_pulses:0 +I (140774) example: new speed:399.000000 +I (140784) example: expect speed: 0.000000 real_pulses:0 +I (140784) example: new speed:399.000000 +I (140794) example: expect speed: 0.000000 real_pulses:0 +I (140794) example: new speed:399.000000 +I (140804) example: expect speed: 0.000000 real_pulses:0 +I (140804) example: new speed:399.000000 +I (140814) example: expect speed: 0.000000 real_pulses:0 +I (140814) example: new speed:399.000000 +I (140824) example: expect speed: 0.000000 real_pulses:0 +I (140824) example: new speed:399.000000 +I (140834) example: expect speed: 0.000000 real_pulses:0 +I (140834) example: new speed:399.000000 +I (140844) example: expect speed: 0.000000 real_pulses:0 +I (140844) example: new speed:399.000000 +I (140854) example: expect speed: 0.000000 real_pulses:0 +I (140854) example: new speed:399.000000 +I (140864) example: expect speed: 0.000000 real_pulses:0 +I (140864) example: new speed:399.000000 +I (140874) example: expect speed: 0.000000 real_pulses:0 +I (140874) example: new speed:399.000000 +I (140884) example: expect speed: 0.000000 real_pulses:0 +I (140884) example: new speed:399.000000 +I (140894) example: expect speed: 0.000000 real_pulses:0 +I (140894) example: new speed:399.000000 +I (140904) example: expect speed: 0.000000 real_pulses:0 +I (140904) example: new speed:399.000000 +I (140914) example: expect speed: 0.000000 real_pulses:0 +I (140914) example: new speed:399.000000 +I (140924) example: expect speed: 0.000000 real_pulses:0 +I (140924) example: new speed:399.000000 +I (140934) example: expect speed: 0.000000 real_pulses:0 +I (140934) example: new speed:399.000000 +I (140944) example: expect speed: 0.000000 real_pulses:0 +I (140944) example: new speed:399.000000 +I (140954) example: expect speed: 0.000000 real_pulses:0 +I (140954) example: new speed:399.000000 +I (140964) example: expect speed: 0.000000 real_pulses:0 +I (140964) example: new speed:399.000000 +I (140974) example: expect speed: 0.000000 real_pulses:0 +I (140974) example: new speed:399.000000 +I (140984) example: expect speed: 0.000000 real_pulses:0 +I (140984) example: new speed:399.000000 +I (140994) example: expect speed: 0.000000 real_pulses:0 +I (140994) example: new speed:399.000000 +I (141004) example: expect speed: 0.000000 real_pulses:0 +I (141004) example: new speed:399.000000 +I (141014) example: expect speed: 0.000000 real_pulses:0 +I (141014) example: new speed:399.000000 +I (141024) example: expect speed: 0.000000 real_pulses:0 +I (141024) example: new speed:399.000000 +I (141034) example: expect speed: 0.000000 real_pulses:0 +I (141034) example: new speed:399.000000 +I (141044) example: expect speed: 0.000000 real_pulses:0 +I (141044) example: new speed:399.000000 +I (141054) example: expect speed: 0.000000 real_pulses:0 +I (141054) example: new speed:399.000000 +I (141064) example: expect speed: 0.000000 real_pulses:0 +I (141064) example: new speed:399.000000 +I (141074) example: expect speed: 0.000000 real_pulses:0 +I (141074) example: new speed:399.000000 +I (141084) example: expect speed: 0.000000 real_pulses:0 +I (141084) example: new speed:399.000000 +I (141094) example: expect speed: 0.000000 real_pulses:0 +I (141094) example: new speed:399.000000 +I (141104) example: expect speed: 0.000000 real_pulses:0 +I (141104) example: new speed:399.000000 +I (141114) example: expect speed: 0.000000 real_pulses:0 +I (141114) example: new speed:399.000000 +I (141124) example: expect speed: 0.000000 real_pulses:0 +I (141124) example: new speed:399.000000 +I (141134) example: expect speed: 0.000000 real_pulses:0 +I (141134) example: new speed:399.000000 +I (141144) example: expect speed: 0.000000 real_pulses:0 +I (141144) example: new speed:399.000000 +I (141154) example: expect speed: 0.000000 real_pulses:0 +I (141154) example: new speed:399.000000 +I (141164) example: expect speed: 0.000000 real_pulses:0 +I (141164) example: new speed:399.000000 +I (141174) example: expect speed: 0.000000 real_pulses:0 +I (141174) example: new speed:399.000000 +I (141184) example: expect speed: 0.000000 real_pulses:0 +I (141184) example: new speed:399.000000 +I (141194) example: expect speed: 0.000000 real_pulses:0 +I (141194) example: new speed:399.000000 +I (141204) example: expect speed: 0.000000 real_pulses:0 +I (141204) example: new speed:399.000000 +I (141214) example: expect speed: 0.000000 real_pulses:0 +I (141214) example: new speed:399.000000 +I (141224) example: expect speed: 0.000000 real_pulses:0 +I (141224) example: new speed:399.000000 +I (141234) example: expect speed: 0.000000 real_pulses:0 +I (141234) example: new speed:399.000000 +I (141244) example: expect speed: 0.000000 real_pulses:0 +I (141244) example: new speed:399.000000 +I (141254) example: expect speed: 0.000000 real_pulses:0 +I (141254) example: new speed:399.000000 +I (141264) example: expect speed: 0.000000 real_pulses:0 +I (141264) example: new speed:399.000000 +I (141274) example: expect speed: 0.000000 real_pulses:0 +I (141274) example: new speed:399.000000 +I (141284) example: expect speed: 0.000000 real_pulses:0 +I (141284) example: new speed:399.000000 +I (141294) example: expect speed: 0.000000 real_pulses:0 +I (141294) example: new speed:399.000000 +I (141304) example: expect speed: 0.000000 real_pulses:0 +I (141304) example: new speed:399.000000 +I (141314) example: expect speed: 0.000000 real_pulses:0 +I (141314) example: new speed:399.000000 +I (141324) example: expect speed: 0.000000 real_pulses:0 +I (141324) example: new speed:399.000000 +I (141334) example: expect speed: 0.000000 real_pulses:0 +I (141334) example: new speed:399.000000 +I (141344) example: expect speed: 0.000000 real_pulses:0 +I (141344) example: new speed:399.000000 +I (141354) example: expect speed: 0.000000 real_pulses:0 +I (141354) example: new speed:399.000000 +I (141364) example: expect speed: 0.000000 real_pulses:0 +I (141364) example: new speed:399.000000 +I (141374) example: expect speed: 0.000000 real_pulses:0 +I (141374) example: new speed:399.000000 +I (141384) example: expect speed: 0.000000 real_pulses:0 +I (141384) example: new speed:399.000000 +I (141394) example: expect speed: 0.000000 real_pulses:0 +I (141394) example: new speed:399.000000 +I (141404) example: expect speed: 0.000000 real_pulses:0 +I (141404) example: new speed:399.000000 +I (141414) example: expect speed: 0.000000 real_pulses:0 +I (141414) example: new speed:399.000000 +I (141424) example: expect speed: 0.000000 real_pulses:0 +I (141424) example: new speed:399.000000 +I (141434) example: expect speed: 0.000000 real_pulses:0 +I (141434) example: new speed:399.000000 +I (141444) example: expect speed: 0.000000 real_pulses:0 +I (141444) example: new speed:399.000000 +I (141454) example: expect speed: 0.000000 real_pulses:0 +I (141454) example: new speed:399.000000 +I (141464) example: expect speed: 0.000000 real_pulses:0 +I (141464) example: new speed:399.000000 +I (141474) example: expect speed: 0.000000 real_pulses:0 +I (141474) example: new speed:399.000000 +I (141484) example: expect speed: 0.000000 real_pulses:0 +I (141484) example: new speed:399.000000 +I (141494) example: expect speed: 0.000000 real_pulses:0 +I (141494) example: new speed:399.000000 +I (141504) example: expect speed: 0.000000 real_pulses:0 +I (141504) example: new speed:399.000000 +I (141514) example: expect speed: 0.000000 real_pulses:0 +I (141514) example: new speed:399.000000 +I (141524) example: expect speed: 0.000000 real_pulses:0 +I (141524) example: new speed:399.000000 +I (141534) example: expect speed: 0.000000 real_pulses:0 +I (141534) example: new speed:399.000000 +I (141544) example: expect speed: 0.000000 real_pulses:0 +I (141544) example: new speed:399.000000 +I (141554) example: expect speed: 0.000000 real_pulses:0 +I (141554) example: new speed:399.000000 +I (141564) example: expect speed: 0.000000 real_pulses:0 +I (141564) example: new speed:399.000000 +I (141574) example: expect speed: 0.000000 real_pulses:0 +I (141574) example: new speed:399.000000 +I (141584) example: expect speed: 0.000000 real_pulses:0 +I (141584) example: new speed:399.000000 +I (141594) example: expect speed: 0.000000 real_pulses:0 +I (141594) example: new speed:399.000000 +I (141604) example: expect speed: 0.000000 real_pulses:0 +I (141604) example: new speed:399.000000 +I (141614) example: expect speed: 0.000000 real_pulses:0 +I (141614) example: new speed:399.000000 +I (141624) example: expect speed: 0.000000 real_pulses:0 +I (141624) example: new speed:399.000000 +I (141634) example: expect speed: 0.000000 real_pulses:0 +I (141634) example: new speed:399.000000 +I (141644) example: expect speed: 0.000000 real_pulses:0 +I (141644) example: new speed:399.000000 +I (141654) example: expect speed: 0.000000 real_pulses:0 +I (141654) example: new speed:399.000000 +I (141664) example: expect speed: 0.000000 real_pulses:0 +I (141674) example: new speed:399.000000 +I (141674) modbus tcp: ModBusSlave_recv() +I (141674) modbus: ModbusSlaveProcess() +I (141674) modbus: check id... +I (141674) modbus: ok +I (141674) modbus: add: 0, length: 10 +I (141674) modbus: Read Holding Registers +I (141674) example: expect speed: 0.000000 real_pulses:0 +I (141684) example: new speed:399.000000 +I (141684) example: expect speed: 0.000000 real_pulses:0 +I (141684) example: new speed:399.000000 +I (141694) example: expect speed: 0.000000 real_pulses:0 +I (141694) example: new speed:399.000000 +I (141704) example: expect speed: 0.000000 real_pulses:0 +I (141704) example: new speed:399.000000 +I (141714) example: expect speed: 0.000000 real_pulses:0 +I (141714) example: new speed:399.000000 +I (141724) example: expect speed: 0.000000 real_pulses:0 +I (141734) example: new speed:399.000000 +I (141734) example: expect speed: 0.000000 real_pulses:0 +I (141734) example: new speed:399.000000 +I (141744) example: expect speed: 0.000000 real_pulses:0 +I (141744) example: new speed:399.000000 +I (141754) example: expect speed: 0.000000 real_pulses:0 +I (141754) example: new speed:399.000000 +I (141764) example: expect speed: 0.000000 real_pulses:0 +I (141764) example: new speed:399.000000 +I (141774) example: expect speed: 0.000000 real_pulses:0 +I (141774) example: new speed:399.000000 +I (141784) example: expect speed: 0.000000 real_pulses:0 +I (141784) example: new speed:399.000000 +I (141794) example: expect speed: 0.000000 real_pulses:0 +I (141794) example: new speed:399.000000 +I (141804) example: expect speed: 0.000000 real_pulses:0 +I (141804) example: new speed:399.000000 +I (141814) example: expect speed: 0.000000 real_pulses:0 +I (141814) example: new speed:399.000000 +I (141824) example: expect speed: 0.000000 real_pulses:0 +I (141824) example: new speed:399.000000 +I (141834) example: expect speed: 0.000000 real_pulses:0 +I (141834) example: new speed:399.000000 +I (141844) example: expect speed: 0.000000 real_pulses:0 +I (141844) example: new speed:399.000000 +I (141854) example: expect speed: 0.000000 real_pulses:0 +I (141854) example: new speed:399.000000 +I (141864) example: expect speed: 0.000000 real_pulses:0 +I (141864) example: new speed:399.000000 +I (141874) example: expect speed: 0.000000 real_pulses:0 +I (141874) example: new speed:399.000000 +I (141884) example: expect speed: 0.000000 real_pulses:0 +I (141884) example: new speed:399.000000 +I (141894) example: expect speed: 0.000000 real_pulses:0 +I (141894) example: new speed:399.000000 +I (141904) example: expect speed: 0.000000 real_pulses:0 +I (141904) example: new speed:399.000000 +I (141914) example: expect speed: 0.000000 real_pulses:0 +I (141914) example: new speed:399.000000 +I (141924) example: expect speed: 0.000000 real_pulses:0 +I (141924) example: new speed:399.000000 +I (141934) example: expect speed: 0.000000 real_pulses:0 +I (141934) example: new speed:399.000000 +I (141944) example: expect speed: 0.000000 real_pulses:0 +I (141944) example: new speed:399.000000 +I (141954) example: expect speed: 0.000000 real_pulses:0 +I (141954) example: new speed:399.000000 +I (141964) example: expect speed: 0.000000 real_pulses:0 +I (141964) example: new speed:399.000000 +I (141974) example: expect speed: 0.000000 real_pulses:0 +I (141984) example: new speed:399.000000 +I (141984) example: expect speed: 0.000000 real_pulses:0 +I (141984) example: new speed:399.000000 +I (141994) example: expect speed: 0.000000 real_pulses:0 +I (141994) example: new speed:399.000000 +I (142004) example: expect speed: 0.000000 real_pulses:0 +I (142004) example: new speed:399.000000 +I (142014) example: expect speed: 0.000000 real_pulses:0 +I (142014) example: new speed:399.000000 +I (142024) example: expect speed: 0.000000 real_pulses:0 +I (142024) example: new speed:399.000000 +I (142034) example: expect speed: 0.000000 real_pulses:0 +I (142034) example: new speed:399.000000 +I (142044) example: expect speed: 0.000000 real_pulses:0 +I (142044) example: new speed:399.000000 +I (142054) example: expect speed: 0.000000 real_pulses:0 +I (142054) example: new speed:399.000000 +I (142064) example: expect speed: 0.000000 real_pulses:0 +I (142064) example: new speed:399.000000 +I (142074) example: expect speed: 0.000000 real_pulses:0 +I (142074) example: new speed:399.000000 +I (142084) example: expect speed: 0.000000 real_pulses:0 +I (142084) example: new speed:399.000000 +I (142094) example: expect speed: 0.000000 real_pulses:0 +I (142094) example: new speed:399.000000 +I (142104) example: expect speed: 0.000000 real_pulses:0 +I (142104) example: new speed:399.000000 +I (142114) example: expect speed: 0.000000 real_pulses:0 +I (142114) example: new speed:399.000000 +I (142124) example: expect speed: 0.000000 real_pulses:0 +I (142124) example: new speed:399.000000 +I (142134) example: expect speed: 0.000000 real_pulses:0 +I (142134) example: new speed:399.000000 +I (142144) example: expect speed: 0.000000 real_pulses:0 +I (142144) example: new speed:399.000000 +I (142154) example: expect speed: 0.000000 real_pulses:0 +I (142154) example: new speed:399.000000 +I (142164) example: expect speed: 0.000000 real_pulses:0 +I (142164) example: new speed:399.000000 +I (142174) example: expect speed: 0.000000 real_pulses:0 +I (142174) example: new speed:399.000000 +I (142184) example: expect speed: 0.000000 real_pulses:0 +I (142184) example: new speed:399.000000 +I (142194) example: expect speed: 0.000000 real_pulses:0 +I (142194) example: new speed:399.000000 +I (142204) example: expect speed: 0.000000 real_pulses:0 +I (142204) example: new speed:399.000000 +I (142214) example: expect speed: 0.000000 real_pulses:0 +I (142214) example: new speed:399.000000 +I (142224) example: expect speed: 0.000000 real_pulses:0 +I (142224) example: new speed:399.000000 +I (142234) example: expect speed: 0.000000 real_pulses:0 +I (142234) example: new speed:399.000000 +I (142244) example: expect speed: 0.000000 real_pulses:0 +I (142244) example: new speed:399.000000 +I (142254) example: expect speed: 0.000000 real_pulses:0 +I (142254) example: new speed:399.000000 +I (142264) example: expect speed: 0.000000 real_pulses:0 +I (142264) example: new speed:399.000000 +I (142274) example: expect speed: 0.000000 real_pulses:0 +I (142274) example: new speed:399.000000 +I (142284) example: expect speed: 0.000000 real_pulses:0 +I (142284) example: new speed:399.000000 +I (142294) example: expect speed: 0.000000 real_pulses:0 +I (142294) example: new speed:399.000000 +I (142304) example: expect speed: 0.000000 real_pulses:0 +I (142304) example: new speed:399.000000 +I (142314) example: expect speed: 0.000000 real_pulses:0 +I (142314) example: new speed:399.000000 +I (142324) example: expect speed: 0.000000 real_pulses:0 +I (142324) example: new speed:399.000000 +I (142334) example: expect speed: 0.000000 real_pulses:0 +I (142334) example: new speed:399.000000 +I (142344) example: expect speed: 0.000000 real_pulses:0 +I (142344) example: new speed:399.000000 +I (142354) example: expect speed: 0.000000 real_pulses:0 +I (142354) example: new speed:399.000000 +I (142364) example: expect speed: 0.000000 real_pulses:0 +I (142364) example: new speed:399.000000 +I (142374) example: expect speed: 0.000000 real_pulses:0 +I (142374) example: new speed:399.000000 +I (142384) example: expect speed: 0.000000 real_pulses:0 +I (142384) example: new speed:399.000000 +I (142394) example: expect speed: 0.000000 real_pulses:0 +I (142394) example: new speed:399.000000 +I (142404) example: expect speed: 0.000000 real_pulses:0 +I (142404) example: new speed:399.000000 +I (142414) example: expect speed: 0.000000 real_pulses:0 +I (142414) example: new speed:399.000000 +I (142424) example: expect speed: 0.000000 real_pulses:0 +I (142424) example: new speed:399.000000 +I (142434) example: expect speed: 0.000000 real_pulses:0 +I (142434) example: new speed:399.000000 +I (142444) example: expect speed: 0.000000 real_pulses:0 +I (142444) example: new speed:399.000000 +I (142454) example: expect speed: 0.000000 real_pulses:0 +I (142454) example: new speed:399.000000 +I (142464) example: expect speed: 0.000000 real_pulses:0 +I (142464) example: new speed:399.000000 +I (142474) example: expect speed: 0.000000 real_pulses:0 +I (142474) example: new speed:399.000000 +I (142484) example: expect speed: 0.000000 real_pulses:0 +I (142484) example: new speed:399.000000 +I (142494) example: expect speed: 0.000000 real_pulses:0 +I (142494) example: new speed:399.000000 +I (142504) example: expect speed: 0.000000 real_pulses:0 +I (142504) example: new speed:399.000000 +I (142514) example: expect speed: 0.000000 real_pulses:0 +I (142514) example: new speed:399.000000 +I (142524) example: expect speed: 0.000000 real_pulses:0 +I (142524) example: new speed:399.000000 +I (142534) example: expect speed: 0.000000 real_pulses:0 +I (142534) example: new speed:399.000000 +I (142544) example: expect speed: 0.000000 real_pulses:0 +I (142544) example: new speed:399.000000 +I (142554) example: expect speed: 0.000000 real_pulses:0 +I (142554) example: new speed:399.000000 +I (142564) example: expect speed: 0.000000 real_pulses:0 +I (142564) example: new speed:399.000000 +I (142574) example: expect speed: 0.000000 real_pulses:0 +I (142574) example: new speed:399.000000 +I (142584) example: expect speed: 0.000000 real_pulses:0 +I (142584) example: new speed:399.000000 +I (142594) example: expect speed: 0.000000 real_pulses:0 +I (142594) example: new speed:399.000000 +I (142604) example: expect speed: 0.000000 real_pulses:0 +I (142604) example: new speed:399.000000 +I (142614) example: expect speed: 0.000000 real_pulses:0 +I (142614) example: new speed:399.000000 +I (142624) example: expect speed: 0.000000 real_pulses:0 +I (142624) example: new speed:399.000000 +I (142634) example: expect speed: 0.000000 real_pulses:0 +I (142634) example: new speed:399.000000 +I (142644) example: expect speed: 0.000000 real_pulses:0 +I (142644) example: new speed:399.000000 +I (142654) example: expect speed: 0.000000 real_pulses:0 +I (142654) example: new speed:399.000000 +I (142664) example: expect speed: 0.000000 real_pulses:0 +I (142664) example: new speed:399.000000 +I (142674) example: expect speed: 0.000000 real_pulses:0 +I (142674) example: new speed:399.000000 +I (142684) example: expect speed: 0.000000 real_pulses:0 +I (142684) example: new speed:399.000000 +I (142694) modbus tcp: ModBusSlave_recv() +I (142694) modbus: ModbusSlaveProcess() +I (142694) example: expect speed: 0.000000 real_pulses:0 +I (142694) modbus: check id... +I (142694) example: new speed:399.000000 +I (142704) modbus: ok +I (142704) modbus: add: 0, length: 10 +I (142704) modbus: Read Holding Registers +I (142704) example: expect speed: 0.000000 real_pulses:0 +I (142714) example: new speed:399.000000 +I (142714) example: expect speed: 0.000000 real_pulses:0 +I (142714) example: new speed:399.000000 +I (142724) example: expect speed: 0.000000 real_pulses:0 +I (142724) example: new speed:399.000000 +I (142734) example: expect speed: 0.000000 real_pulses:0 +I (142734) example: new speed:399.000000 +I (142744) example: expect speed: 0.000000 real_pulses:0 +I (142744) example: new speed:399.000000 +I (142754) example: expect speed: 0.000000 real_pulses:0 +I (142754) example: new speed:399.000000 +I (142764) example: expect speed: 0.000000 real_pulses:0 +I (142764) example: new speed:399.000000 +I (142774) example: expect speed: 0.000000 real_pulses:0 +I (142784) example: new speed:399.000000 +I (142784) example: expect speed: 0.000000 real_pulses:0 +I (142794) example: new speed:399.000000 +I (142794) example: expect speed: 0.000000 real_pulses:0 +I (142804) example: new speed:399.000000 +I (142804) example: expect speed: 0.000000 real_pulses:0 +I (142804) example: new speed:399.000000 +I (142814) example: expect speed: 0.000000 real_pulses:0 +I (142814) example: new speed:399.000000 +I (142824) example: expect speed: 0.000000 real_pulses:0 +I (142824) example: new speed:399.000000 +I (142834) example: expect speed: 0.000000 real_pulses:0 +I (142834) example: new speed:399.000000 +I (142844) example: expect speed: 0.000000 real_pulses:0 +I (142844) example: new speed:399.000000 +I (142854) example: expect speed: 0.000000 real_pulses:0 +I (142854) example: new speed:399.000000 +I (142864) example: expect speed: 0.000000 real_pulses:0 +I (142864) example: new speed:399.000000 +I (142874) example: expect speed: 0.000000 real_pulses:0 +I (142874) example: new speed:399.000000 +I (142884) example: expect speed: 0.000000 real_pulses:0 +I (142884) example: new speed:399.000000 +I (142894) example: expect speed: 0.000000 real_pulses:0 +I (142894) example: new speed:399.000000 +I (142904) example: expect speed: 0.000000 real_pulses:0 +I (142904) example: new speed:399.000000 +I (142914) example: expect speed: 0.000000 real_pulses:0 +I (142914) example: new speed:399.000000 +I (142924) example: expect speed: 0.000000 real_pulses:0 +I (142924) example: new speed:399.000000 +I (142934) example: expect speed: 0.000000 real_pulses:0 +I (142934) example: new speed:399.000000 +I (142944) example: expect speed: 0.000000 real_pulses:0 +I (142944) example: new speed:399.000000 +I (142954) example: expect speed: 0.000000 real_pulses:0 +I (142954) example: new speed:399.000000 +I (142964) example: expect speed: 0.000000 real_pulses:0 +I (142964) example: new speed:399.000000 +I (142974) example: expect speed: 0.000000 real_pulses:0 +I (142974) example: new speed:399.000000 +I (142984) example: expect speed: 0.000000 real_pulses:0 +I (142984) example: new speed:399.000000 +I (142994) example: expect speed: 0.000000 real_pulses:0 +I (143004) example: new speed:399.000000 +I (143004) example: expect speed: 0.000000 real_pulses:0 +I (143004) example: new speed:399.000000 +I (143014) example: expect speed: 0.000000 real_pulses:0 +I (143014) example: new speed:399.000000 +I (143024) example: expect speed: 0.000000 real_pulses:0 +I (143024) example: new speed:399.000000 +I (143034) example: expect speed: 0.000000 real_pulses:0 +I (143034) example: new speed:399.000000 +I (143044) example: expect speed: 0.000000 real_pulses:0 +I (143044) example: new speed:399.000000 +I (143054) example: expect speed: 0.000000 real_pulses:0 +I (143054) example: new speed:399.000000 +I (143064) example: expect speed: 0.000000 real_pulses:0 +I (143064) example: new speed:399.000000 +I (143074) example: expect speed: 0.000000 real_pulses:0 +I (143074) example: new speed:399.000000 +I (143084) example: expect speed: 0.000000 real_pulses:0 +I (143084) example: new speed:399.000000 +I (143094) example: expect speed: 0.000000 real_pulses:0 +I (143094) example: new speed:399.000000 +I (143104) example: expect speed: 0.000000 real_pulses:0 +I (143104) example: new speed:399.000000 +I (143114) example: expect speed: 0.000000 real_pulses:0 +I (143114) example: new speed:399.000000 +I (143124) example: expect speed: 0.000000 real_pulses:0 +I (143124) example: new speed:399.000000 +I (143134) example: expect speed: 0.000000 real_pulses:0 +I (143134) example: new speed:399.000000 +I (143144) example: expect speed: 0.000000 real_pulses:0 +I (143144) example: new speed:399.000000 +I (143154) example: expect speed: 0.000000 real_pulses:0 +I (143154) example: new speed:399.000000 +I (143164) example: expect speed: 0.000000 real_pulses:0 +I (143164) example: new speed:399.000000 +I (143174) example: expect speed: 0.000000 real_pulses:0 +I (143174) example: new speed:399.000000 +I (143184) example: expect speed: 0.000000 real_pulses:0 +I (143184) example: new speed:399.000000 +I (143194) example: expect speed: 0.000000 real_pulses:0 +I (143194) example: new speed:399.000000 +I (143204) example: expect speed: 0.000000 real_pulses:0 +I (143204) example: new speed:399.000000 +I (143214) example: expect speed: 0.000000 real_pulses:0 +I (143214) example: new speed:399.000000 +I (143224) example: expect speed: 0.000000 real_pulses:0 +I (143224) example: new speed:399.000000 +I (143234) example: expect speed: 0.000000 real_pulses:0 +I (143234) example: new speed:399.000000 +I (143244) example: expect speed: 0.000000 real_pulses:0 +I (143244) example: new speed:399.000000 +I (143254) example: expect speed: 0.000000 real_pulses:0 +I (143254) example: new speed:399.000000 +I (143264) example: expect speed: 0.000000 real_pulses:0 +I (143264) example: new speed:399.000000 +I (143274) example: expect speed: 0.000000 real_pulses:0 +I (143274) example: new speed:399.000000 +I (143284) example: expect speed: 0.000000 real_pulses:0 +I (143284) example: new speed:399.000000 +I (143294) example: expect speed: 0.000000 real_pulses:0 +I (143294) example: new speed:399.000000 +I (143304) example: expect speed: 0.000000 real_pulses:0 +I (143304) example: new speed:399.000000 +I (143314) example: expect speed: 0.000000 real_pulses:0 +I (143314) example: new speed:399.000000 +I (143324) example: expect speed: 0.000000 real_pulses:0 +I (143324) example: new speed:399.000000 +I (143334) example: expect speed: 0.000000 real_pulses:0 +I (143334) example: new speed:399.000000 +I (143344) example: expect speed: 0.000000 real_pulses:0 +I (143344) example: new speed:399.000000 +I (143354) example: expect speed: 0.000000 real_pulses:0 +I (143354) example: new speed:399.000000 +I (143364) example: expect speed: 0.000000 real_pulses:0 +I (143364) example: new speed:399.000000 +I (143374) example: expect speed: 0.000000 real_pulses:0 +I (143374) example: new speed:399.000000 +I (143384) example: expect speed: 0.000000 real_pulses:0 +I (143384) example: new speed:399.000000 +I (143394) example: expect speed: 0.000000 real_pulses:0 +I (143394) example: new speed:399.000000 +I (143404) example: expect speed: 0.000000 real_pulses:0 +I (143404) example: new speed:399.000000 +I (143414) example: expect speed: 0.000000 real_pulses:0 +I (143414) example: new speed:399.000000 +I (143424) example: expect speed: 0.000000 real_pulses:0 +I (143424) example: new speed:399.000000 +I (143434) example: expect speed: 0.000000 real_pulses:0 +I (143434) example: new speed:399.000000 +I (143444) example: expect speed: 0.000000 real_pulses:0 +I (143444) example: new speed:399.000000 +I (143454) example: expect speed: 0.000000 real_pulses:0 +I (143454) example: new speed:399.000000 +I (143464) example: expect speed: 0.000000 real_pulses:0 +I (143464) example: new speed:399.000000 +I (143474) example: expect speed: 0.000000 real_pulses:0 +I (143474) example: new speed:399.000000 +I (143484) example: expect speed: 0.000000 real_pulses:0 +I (143484) example: new speed:399.000000 +I (143494) example: expect speed: 0.000000 real_pulses:0 +I (143494) example: new speed:399.000000 +I (143504) example: expect speed: 0.000000 real_pulses:0 +I (143504) example: new speed:399.000000 +I (143514) example: expect speed: 0.000000 real_pulses:0 +I (143514) example: new speed:399.000000 +I (143524) example: expect speed: 0.000000 real_pulses:0 +I (143524) example: new speed:399.000000 +I (143534) example: expect speed: 0.000000 real_pulses:0 +I (143534) example: new speed:399.000000 +I (143544) example: expect speed: 0.000000 real_pulses:0 +I (143544) example: new speed:399.000000 +I (143554) example: expect speed: 0.000000 real_pulses:0 +I (143554) example: new speed:399.000000 +I (143564) example: expect speed: 0.000000 real_pulses:0 +I (143564) example: new speed:399.000000 +I (143574) example: expect speed: 0.000000 real_pulses:0 +I (143574) example: new speed:399.000000 +I (143584) example: expect speed: 0.000000 real_pulses:0 +I (143584) example: new speed:399.000000 +I (143594) example: expect speed: 0.000000 real_pulses:0 +I (143594) example: new speed:399.000000 +I (143604) example: expect speed: 0.000000 real_pulses:0 +I (143604) example: new speed:399.000000 +I (143614) example: expect speed: 0.000000 real_pulses:0 +I (143614) example: new speed:399.000000 +I (143624) example: expect speed: 0.000000 real_pulses:0 +I (143624) example: new speed:399.000000 +I (143634) example: expect speed: 0.000000 real_pulses:0 +I (143634) example: new speed:399.000000 +I (143644) example: expect speed: 0.000000 real_pulses:0 +I (143644) example: new speed:399.000000 +I (143654) example: expect speed: 0.000000 real_pulses:0 +I (143654) example: new speed:399.000000 +I (143664) example: expect speed: 0.000000 real_pulses:0 +I (143664) example: new speed:399.000000 +I (143674) example: expect speed: 0.000000 real_pulses:0 +I (143674) example: new speed:399.000000 +I (143684) example: expect speed: 0.000000 real_pulses:0 +I (143684) example: new speed:399.000000 +I (143694) example: expect speed: 0.000000 real_pulses:0 +I (143694) example: new speed:399.000000 +I (143704) example: expect speed: 0.000000 real_pulses:0 +I (143704) example: new speed:399.000000 +I (143714) example: expect speed: 0.000000 real_pulses:0 +I (143724) example: new speed:399.000000 +I (143724) modbus tcp: ModBusSlave_recv() +I (143724) modbus: ModbusSlaveProcess() +I (143724) modbus: check id... +I (143724) modbus: ok +I (143724) modbus: add: 0, length: 10 +I (143724) modbus: Read Holding Registers +I (143724) example: expect speed: 0.000000 real_pulses:0 +I (143734) example: new speed:399.000000 +I (143734) example: expect speed: 0.000000 real_pulses:0 +I (143734) example: new speed:399.000000 +I (143744) example: expect speed: 0.000000 real_pulses:0 +I (143744) example: new speed:399.000000 +I (143754) example: expect speed: 0.000000 real_pulses:0 +I (143754) example: new speed:399.000000 +I (143764) example: expect speed: 0.000000 real_pulses:0 +I (143774) example: new speed:399.000000 +I (143774) example: expect speed: 0.000000 real_pulses:0 +I (143774) example: new speed:399.000000 +I (143784) example: expect speed: 0.000000 real_pulses:0 +I (143784) example: new speed:399.000000 +I (143794) example: expect speed: 0.000000 real_pulses:0 +I (143794) example: new speed:399.000000 +I (143804) example: expect speed: 0.000000 real_pulses:0 +I (143804) example: new speed:399.000000 +I (143814) example: expect speed: 0.000000 real_pulses:0 +I (143824) example: new speed:399.000000 +I (143824) example: expect speed: 0.000000 real_pulses:0 +I (143824) example: new speed:399.000000 +I (143834) example: expect speed: 0.000000 real_pulses:0 +I (143834) example: new speed:399.000000 +I (143844) example: expect speed: 0.000000 real_pulses:0 +I (143844) example: new speed:399.000000 +I (143854) example: expect speed: 0.000000 real_pulses:0 +I (143854) example: new speed:399.000000 +I (143864) example: expect speed: 0.000000 real_pulses:0 +I (143864) example: new speed:399.000000 +I (143874) example: expect speed: 0.000000 real_pulses:0 +I (143874) example: new speed:399.000000 +I (143884) example: expect speed: 0.000000 real_pulses:0 +I (143884) example: new speed:399.000000 +I (143894) example: expect speed: 0.000000 real_pulses:0 +I (143894) example: new speed:399.000000 +I (143904) example: expect speed: 0.000000 real_pulses:0 +I (143904) example: new speed:399.000000 +I (143914) example: expect speed: 0.000000 real_pulses:0 +I (143914) example: new speed:399.000000 +I (143924) example: expect speed: 0.000000 real_pulses:0 +I (143924) example: new speed:399.000000 +I (143934) example: expect speed: 0.000000 real_pulses:0 +I (143934) example: new speed:399.000000 +I (143944) example: expect speed: 0.000000 real_pulses:0 +I (143944) example: new speed:399.000000 +I (143954) example: expect speed: 0.000000 real_pulses:0 +I (143954) example: new speed:399.000000 +I (143964) example: expect speed: 0.000000 real_pulses:0 +I (143964) example: new speed:399.000000 +I (143974) example: expect speed: 0.000000 real_pulses:0 +I (143974) example: new speed:399.000000 +I (143984) example: expect speed: 0.000000 real_pulses:0 +I (143984) example: new speed:399.000000 +I (143994) example: expect speed: 0.000000 real_pulses:0 +I (143994) example: new speed:399.000000 +I (144004) example: expect speed: 0.000000 real_pulses:0 +I (144004) example: new speed:399.000000 +I (144014) example: expect speed: 0.000000 real_pulses:0 +I (144014) example: new speed:399.000000 +I (144024) example: expect speed: 0.000000 real_pulses:0 +I (144034) example: new speed:399.000000 +I (144034) example: expect speed: 0.000000 real_pulses:0 +I (144034) example: new speed:399.000000 +I (144044) example: expect speed: 0.000000 real_pulses:0 +I (144044) example: new speed:399.000000 +I (144054) example: expect speed: 0.000000 real_pulses:0 +I (144054) example: new speed:399.000000 +I (144064) example: expect speed: 0.000000 real_pulses:0 +I (144064) example: new speed:399.000000 +I (144074) example: expect speed: 0.000000 real_pulses:0 +I (144074) example: new speed:399.000000 +I (144084) example: expect speed: 0.000000 real_pulses:0 +I (144084) example: new speed:399.000000 +I (144094) example: expect speed: 0.000000 real_pulses:0 +I (144094) example: new speed:399.000000 +I (144104) example: expect speed: 0.000000 real_pulses:0 +I (144104) example: new speed:399.000000 +I (144114) example: expect speed: 0.000000 real_pulses:0 +I (144114) example: new speed:399.000000 +I (144124) example: expect speed: 0.000000 real_pulses:0 +I (144124) example: new speed:399.000000 +I (144134) example: expect speed: 0.000000 real_pulses:0 +I (144134) example: new speed:399.000000 +I (144144) example: expect speed: 0.000000 real_pulses:0 +I (144144) example: new speed:399.000000 +I (144154) example: expect speed: 0.000000 real_pulses:0 +I (144154) example: new speed:399.000000 +I (144164) example: expect speed: 0.000000 real_pulses:0 +I (144164) example: new speed:399.000000 +I (144174) example: expect speed: 0.000000 real_pulses:0 +I (144174) example: new speed:399.000000 +I (144184) example: expect speed: 0.000000 real_pulses:0 +I (144184) example: new speed:399.000000 +I (144194) example: expect speed: 0.000000 real_pulses:0 +I (144194) example: new speed:399.000000 +I (144204) example: expect speed: 0.000000 real_pulses:0 +I (144204) example: new speed:399.000000 +I (144214) example: expect speed: 0.000000 real_pulses:0 +I (144214) example: new speed:399.000000 +I (144224) example: expect speed: 0.000000 real_pulses:0 +I (144224) example: new speed:399.000000 +I (144234) example: expect speed: 0.000000 real_pulses:0 +I (144234) example: new speed:399.000000 +I (144244) example: expect speed: 0.000000 real_pulses:0 +I (144244) example: new speed:399.000000 +I (144254) example: expect speed: 0.000000 real_pulses:0 +I (144254) example: new speed:399.000000 +I (144264) example: expect speed: 0.000000 real_pulses:0 +I (144264) example: new speed:399.000000 +I (144274) example: expect speed: 0.000000 real_pulses:0 +I (144274) example: new speed:399.000000 +I (144284) example: expect speed: 0.000000 real_pulses:0 +I (144284) example: new speed:399.000000 +I (144294) example: expect speed: 0.000000 real_pulses:0 +I (144294) example: new speed:399.000000 +I (144304) example: expect speed: 0.000000 real_pulses:0 +I (144304) example: new speed:399.000000 +I (144314) example: expect speed: 0.000000 real_pulses:0 +I (144314) example: new speed:399.000000 +I (144324) example: expect speed: 0.000000 real_pulses:0 +I (144324) example: new speed:399.000000 +I (144334) example: expect speed: 0.000000 real_pulses:0 +I (144334) example: new speed:399.000000 +I (144344) example: expect speed: 0.000000 real_pulses:0 +I (144344) example: new speed:399.000000 +I (144354) example: expect speed: 0.000000 real_pulses:0 +I (144354) example: new speed:399.000000 +I (144364) example: expect speed: 0.000000 real_pulses:0 +I (144364) example: new speed:399.000000 +I (144374) example: expect speed: 0.000000 real_pulses:0 +I (144374) example: new speed:399.000000 +I (144384) example: expect speed: 0.000000 real_pulses:0 +I (144384) example: new speed:399.000000 +I (144394) example: expect speed: 0.000000 real_pulses:0 +I (144394) example: new speed:399.000000 +I (144404) example: expect speed: 0.000000 real_pulses:0 +I (144404) example: new speed:399.000000 +I (144414) example: expect speed: 0.000000 real_pulses:0 +I (144414) example: new speed:399.000000 +I (144424) example: expect speed: 0.000000 real_pulses:0 +I (144424) example: new speed:399.000000 +I (144434) example: expect speed: 0.000000 real_pulses:0 +I (144434) example: new speed:399.000000 +I (144444) example: expect speed: 0.000000 real_pulses:0 +I (144444) example: new speed:399.000000 +I (144454) example: expect speed: 0.000000 real_pulses:0 +I (144454) example: new speed:399.000000 +I (144464) example: expect speed: 0.000000 real_pulses:0 +I (144464) example: new speed:399.000000 +I (144474) example: expect speed: 0.000000 real_pulses:0 +I (144474) example: new speed:399.000000 +I (144484) example: expect speed: 0.000000 real_pulses:0 +I (144484) example: new speed:399.000000 +I (144494) example: expect speed: 0.000000 real_pulses:0 +I (144494) example: new speed:399.000000 +I (144504) example: expect speed: 0.000000 real_pulses:0 +I (144504) example: new speed:399.000000 +I (144514) example: expect speed: 0.000000 real_pulses:0 +I (144514) example: new speed:399.000000 +I (144524) example: expect speed: 0.000000 real_pulses:0 +I (144524) example: new speed:399.000000 +I (144534) example: expect speed: 0.000000 real_pulses:0 +I (144534) example: new speed:399.000000 +I (144544) example: expect speed: 0.000000 real_pulses:0 +I (144544) example: new speed:399.000000 +I (144554) example: expect speed: 0.000000 real_pulses:0 +I (144554) example: new speed:399.000000 +I (144564) example: expect speed: 0.000000 real_pulses:0 +I (144564) example: new speed:399.000000 +I (144574) example: expect speed: 0.000000 real_pulses:0 +I (144574) example: new speed:399.000000 +I (144584) example: expect speed: 0.000000 real_pulses:0 +I (144584) example: new speed:399.000000 +I (144594) example: expect speed: 0.000000 real_pulses:0 +I (144594) example: new speed:399.000000 +I (144604) example: expect speed: 0.000000 real_pulses:0 +I (144604) example: new speed:399.000000 +I (144614) example: expect speed: 0.000000 real_pulses:0 +I (144614) example: new speed:399.000000 +I (144624) example: expect speed: 0.000000 real_pulses:0 +I (144624) example: new speed:399.000000 +I (144634) example: expect speed: 0.000000 real_pulses:0 +I (144634) example: new speed:399.000000 +I (144644) example: expect speed: 0.000000 real_pulses:0 +I (144644) example: new speed:399.000000 +I (144654) example: expect speed: 0.000000 real_pulses:0 +I (144654) example: new speed:399.000000 +I (144664) example: expect speed: 0.000000 real_pulses:0 +I (144664) example: new speed:399.000000 +I (144674) example: expect speed: 0.000000 real_pulses:0 +I (144674) example: new speed:399.000000 +I (144684) example: expect speed: 0.000000 real_pulses:0 +I (144684) example: new speed:399.000000 +I (144694) example: expect speed: 0.000000 real_pulses:0 +I (144694) example: new speed:399.000000 +I (144704) example: expect speed: 0.000000 real_pulses:0 +I (144704) example: new speed:399.000000 +I (144714) example: expect speed: 0.000000 real_pulses:0 +I (144714) example: new speed:399.000000 +I (144724) example: expect speed: 0.000000 real_pulses:0 +I (144724) example: new speed:399.000000 +I (144734) example: expect speed: 0.000000 real_pulses:0 +I (144744) example: new speed:399.000000 +I (144744) modbus tcp: ModBusSlave_recv() +I (144744) modbus: ModbusSlaveProcess() +I (144744) modbus: check id... +I (144744) modbus: ok +I (144744) modbus: add: 0, length: 10 +I (144744) modbus: Read Holding Registers +I (144744) example: expect speed: 0.000000 real_pulses:0 +I (144754) example: new speed:399.000000 +I (144754) example: expect speed: 0.000000 real_pulses:0 +I (144754) example: new speed:399.000000 +I (144764) example: expect speed: 0.000000 real_pulses:0 +I (144764) example: new speed:399.000000 +I (144774) example: expect speed: 0.000000 real_pulses:0 +I (144774) example: new speed:399.000000 +I (144784) example: expect speed: 0.000000 real_pulses:0 +I (144784) example: new speed:399.000000 +I (144794) example: expect speed: 0.000000 real_pulses:0 +I (144804) example: new speed:399.000000 +I (144804) example: expect speed: 0.000000 real_pulses:0 +I (144804) example: new speed:399.000000 +I (144814) example: expect speed: 0.000000 real_pulses:0 +I (144814) example: new speed:399.000000 +I (144824) example: expect speed: 0.000000 real_pulses:0 +I (144824) example: new speed:399.000000 +I (144834) example: expect speed: 0.000000 real_pulses:0 +I (144834) example: new speed:399.000000 +I (144844) example: expect speed: 0.000000 real_pulses:0 +I (144854) example: new speed:399.000000 +I (144854) example: expect speed: 0.000000 real_pulses:0 +I (144854) example: new speed:399.000000 +I (144864) example: expect speed: 0.000000 real_pulses:0 +I (144864) example: new speed:399.000000 +I (144874) example: expect speed: 0.000000 real_pulses:0 +I (144874) example: new speed:399.000000 +I (144884) example: expect speed: 0.000000 real_pulses:0 +I (144884) example: new speed:399.000000 +I (144894) example: expect speed: 0.000000 real_pulses:0 +I (144904) example: new speed:399.000000 +I (144904) example: expect speed: 0.000000 real_pulses:0 +I (144904) example: new speed:399.000000 +I (144914) example: expect speed: 0.000000 real_pulses:0 +I (144914) example: new speed:399.000000 +I (144924) example: expect speed: 0.000000 real_pulses:0 +I (144924) example: new speed:399.000000 +I (144934) example: expect speed: 0.000000 real_pulses:0 +I (144934) example: new speed:399.000000 +I (144944) example: expect speed: 0.000000 real_pulses:0 +I (144954) example: new speed:399.000000 +I (144954) example: expect speed: 0.000000 real_pulses:0 +I (144954) example: new speed:399.000000 +I (144964) example: expect speed: 0.000000 real_pulses:0 +I (144964) example: new speed:399.000000 +I (144974) example: expect speed: 0.000000 real_pulses:0 +I (144974) example: new speed:399.000000 +I (144984) example: expect speed: 0.000000 real_pulses:0 +I (144984) example: new speed:399.000000 +I (144994) example: expect speed: 0.000000 real_pulses:0 +I (144994) example: new speed:399.000000 +I (145004) example: expect speed: 0.000000 real_pulses:0 +I (145004) example: new speed:399.000000 +I (145014) example: expect speed: 0.000000 real_pulses:0 +I (145014) example: new speed:399.000000 +I (145024) example: expect speed: 0.000000 real_pulses:0 +I (145024) example: new speed:399.000000 +I (145034) example: expect speed: 0.000000 real_pulses:0 +I (145034) example: new speed:399.000000 +I (145044) example: expect speed: 0.000000 real_pulses:0 +I (145044) example: new speed:399.000000 +I (145054) example: expect speed: 0.000000 real_pulses:0 +I (145054) example: new speed:399.000000 +I (145064) example: expect speed: 0.000000 real_pulses:0 +I (145064) example: new speed:399.000000 +I (145074) example: expect speed: 0.000000 real_pulses:0 +I (145074) example: new speed:399.000000 +I (145084) example: expect speed: 0.000000 real_pulses:0 +I (145084) example: new speed:399.000000 +I (145094) example: expect speed: 0.000000 real_pulses:0 +I (145094) example: new speed:399.000000 +I (145104) example: expect speed: 0.000000 real_pulses:0 +I (145104) example: new speed:399.000000 +I (145114) example: expect speed: 0.000000 real_pulses:0 +I (145114) example: new speed:399.000000 +I (145124) example: expect speed: 0.000000 real_pulses:0 +I (145124) example: new speed:399.000000 +I (145134) example: expect speed: 0.000000 real_pulses:0 +I (145134) example: new speed:399.000000 +I (145144) example: expect speed: 0.000000 real_pulses:0 +I (145144) example: new speed:399.000000 +I (145154) example: expect speed: 0.000000 real_pulses:0 +I (145154) example: new speed:399.000000 +I (145164) example: expect speed: 0.000000 real_pulses:0 +I (145164) example: new speed:399.000000 +I (145174) example: expect speed: 0.000000 real_pulses:0 +I (145174) example: new speed:399.000000 +I (145184) example: expect speed: 0.000000 real_pulses:0 +I (145184) example: new speed:399.000000 +I (145194) example: expect speed: 0.000000 real_pulses:0 +I (145194) example: new speed:399.000000 +I (145204) example: expect speed: 0.000000 real_pulses:0 +I (145204) example: new speed:399.000000 +I (145214) example: expect speed: 0.000000 real_pulses:0 +I (145214) example: new speed:399.000000 +I (145224) example: expect speed: 0.000000 real_pulses:0 +I (145224) example: new speed:399.000000 +I (145234) example: expect speed: 0.000000 real_pulses:0 +I (145234) example: new speed:399.000000 +I (145244) example: expect speed: 0.000000 real_pulses:0 +I (145244) example: new speed:399.000000 +I (145254) example: expect speed: 0.000000 real_pulses:0 +I (145254) example: new speed:399.000000 +I (145264) example: expect speed: 0.000000 real_pulses:0 +I (145264) example: new speed:399.000000 +I (145274) example: expect speed: 0.000000 real_pulses:0 +I (145274) example: new speed:399.000000 +I (145284) example: expect speed: 0.000000 real_pulses:0 +I (145284) example: new speed:399.000000 +I (145294) example: expect speed: 0.000000 real_pulses:0 +I (145294) example: new speed:399.000000 +I (145304) example: expect speed: 0.000000 real_pulses:0 +I (145304) example: new speed:399.000000 +I (145314) example: expect speed: 0.000000 real_pulses:0 +I (145314) example: new speed:399.000000 +I (145324) example: expect speed: 0.000000 real_pulses:0 +I (145324) example: new speed:399.000000 +I (145334) example: expect speed: 0.000000 real_pulses:0 +I (145334) example: new speed:399.000000 +I (145344) example: expect speed: 0.000000 real_pulses:0 +I (145344) example: new speed:399.000000 +I (145354) example: expect speed: 0.000000 real_pulses:0 +I (145354) example: new speed:399.000000 +I (145364) example: expect speed: 0.000000 real_pulses:0 +I (145364) example: new speed:399.000000 +I (145374) example: expect speed: 0.000000 real_pulses:0 +I (145374) example: new speed:399.000000 +I (145384) example: expect speed: 0.000000 real_pulses:0 +I (145384) example: new speed:399.000000 +I (145394) example: expect speed: 0.000000 real_pulses:0 +I (145394) example: new speed:399.000000 +I (145404) example: expect speed: 0.000000 real_pulses:0 +I (145404) example: new speed:399.000000 +I (145414) example: expect speed: 0.000000 real_pulses:0 +I (145414) example: new speed:399.000000 +I (145424) example: expect speed: 0.000000 real_pulses:0 +I (145424) example: new speed:399.000000 +I (145434) example: expect speed: 0.000000 real_pulses:0 +I (145434) example: new speed:399.000000 +I (145444) example: expect speed: 0.000000 real_pulses:0 +I (145444) example: new speed:399.000000 +I (145454) example: expect speed: 0.000000 real_pulses:0 +I (145454) example: new speed:399.000000 +I (145464) example: expect speed: 0.000000 real_pulses:0 +I (145464) example: new speed:399.000000 +I (145474) example: expect speed: 0.000000 real_pulses:0 +I (145474) example: new speed:399.000000 +I (145484) example: expect speed: 0.000000 real_pulses:0 +I (145484) example: new speed:399.000000 +I (145494) example: expect speed: 0.000000 real_pulses:0 +I (145494) example: new speed:399.000000 +I (145504) example: expect speed: 0.000000 real_pulses:0 +I (145504) example: new speed:399.000000 +I (145514) example: expect speed: 0.000000 real_pulses:0 +I (145514) example: new speed:399.000000 +I (145524) example: expect speed: 0.000000 real_pulses:0 +I (145524) example: new speed:399.000000 +I (145534) example: expect speed: 0.000000 real_pulses:0 +I (145534) example: new speed:399.000000 +I (145544) example: expect speed: 0.000000 real_pulses:0 +I (145544) example: new speed:399.000000 +I (145554) example: expect speed: 0.000000 real_pulses:0 +I (145554) example: new speed:399.000000 +I (145564) example: expect speed: 0.000000 real_pulses:0 +I (145564) example: new speed:399.000000 +I (145574) example: expect speed: 0.000000 real_pulses:0 +I (145574) example: new speed:399.000000 +I (145584) example: expect speed: 0.000000 real_pulses:0 +I (145584) example: new speed:399.000000 +I (145594) example: expect speed: 0.000000 real_pulses:0 +I (145594) example: new speed:399.000000 +I (145604) example: expect speed: 0.000000 real_pulses:0 +I (145604) example: new speed:399.000000 +I (145614) example: expect speed: 0.000000 real_pulses:0 +I (145614) example: new speed:399.000000 +I (145624) example: expect speed: 0.000000 real_pulses:0 +I (145624) example: new speed:399.000000 +I (145634) example: expect speed: 0.000000 real_pulses:0 +I (145634) example: new speed:399.000000 +I (145644) example: expect speed: 0.000000 real_pulses:0 +I (145644) example: new speed:399.000000 +I (145654) example: expect speed: 0.000000 real_pulses:0 +I (145654) example: new speed:399.000000 +I (145664) example: expect speed: 0.000000 real_pulses:0 +I (145664) example: new speed:399.000000 +I (145674) example: expect speed: 0.000000 real_pulses:0 +I (145674) example: new speed:399.000000 +I (145684) example: expect speed: 0.000000 real_pulses:0 +I (145684) example: new speed:399.000000 +I (145694) example: expect speed: 0.000000 real_pulses:0 +I (145694) example: new speed:399.000000 +I (145704) example: expect speed: 0.000000 real_pulses:0 +I (145704) example: new speed:399.000000 +I (145714) example: expect speed: 0.000000 real_pulses:0 +I (145714) example: new speed:399.000000 +I (145724) example: expect speed: 0.000000 real_pulses:0 +I (145724) example: new speed:399.000000 +I (145734) example: expect speed: 0.000000 real_pulses:0 +I (145734) example: new speed:399.000000 +I (145744) example: expect speed: 0.000000 real_pulses:0 +I (145744) example: new speed:399.000000 +I (145754) example: expect speed: 0.000000 real_pulses:0 +I (145754) example: new speed:399.000000 +I (145764) example: expect speed: 0.000000 real_pulses:0 +I (145774) example: new speed:399.000000 +I (145774) modbus tcp: ModBusSlave_recv() +I (145774) modbus: ModbusSlaveProcess() +I (145774) modbus: check id... +I (145774) modbus: ok +I (145774) modbus: add: 0, length: 10 +I (145774) modbus: Read Holding Registers +I (145774) example: expect speed: 0.000000 real_pulses:0 +I (145784) example: new speed:399.000000 +I (145784) example: expect speed: 0.000000 real_pulses:0 +I (145794) example: new speed:399.000000 +I (145794) example: expect speed: 0.000000 real_pulses:0 +I (145794) example: new speed:399.000000 +I (145804) example: expect speed: 0.000000 real_pulses:0 +I (145804) example: new speed:399.000000 +I (145814) example: expect speed: 0.000000 real_pulses:0 +I (145814) example: new speed:399.000000 +I (145824) example: expect speed: 0.000000 real_pulses:0 +I (145824) example: new speed:399.000000 +I (145834) example: expect speed: 0.000000 real_pulses:0 +I (145834) example: new speed:399.000000 +I (145844) example: expect speed: 0.000000 real_pulses:0 +I (145854) example: new speed:399.000000 +I (145854) example: expect speed: 0.000000 real_pulses:0 +I (145854) example: new speed:399.000000 +I (145864) example: expect speed: 0.000000 real_pulses:0 +I (145874) example: new speed:399.000000 +I (145874) example: expect speed: 0.000000 real_pulses:0 +I (145874) example: new speed:399.000000 +I (145884) example: expect speed: 0.000000 real_pulses:0 +I (145884) example: new speed:399.000000 +I (145894) example: expect speed: 0.000000 real_pulses:0 +I (145894) example: new speed:399.000000 +I (145904) example: expect speed: 0.000000 real_pulses:0 +I (145904) example: new speed:399.000000 +I (145914) example: expect speed: 0.000000 real_pulses:0 +I (145914) example: new speed:399.000000 +I (145924) example: expect speed: 0.000000 real_pulses:0 +I (145924) example: new speed:399.000000 +I (145934) example: expect speed: 0.000000 real_pulses:0 +I (145934) example: new speed:399.000000 +I (145944) example: expect speed: 0.000000 real_pulses:0 +I (145944) example: new speed:399.000000 +I (145954) example: expect speed: 0.000000 real_pulses:0 +I (145954) example: new speed:399.000000 +I (145964) example: expect speed: 0.000000 real_pulses:0 +I (145964) example: new speed:399.000000 +I (145974) example: expect speed: 0.000000 real_pulses:0 +I (145974) example: new speed:399.000000 +I (145984) example: expect speed: 0.000000 real_pulses:0 +I (145984) example: new speed:399.000000 +I (145994) example: expect speed: 0.000000 real_pulses:0 +I (145994) example: new speed:399.000000 +I (146004) example: expect speed: 0.000000 real_pulses:0 +I (146004) example: new speed:399.000000 +I (146014) example: expect speed: 0.000000 real_pulses:0 +I (146014) example: new speed:399.000000 +I (146024) example: expect speed: 0.000000 real_pulses:0 +I (146024) example: new speed:399.000000 +I (146034) example: expect speed: 0.000000 real_pulses:0 +I (146034) example: new speed:399.000000 +I (146044) example: expect speed: 0.000000 real_pulses:0 +I (146044) example: new speed:399.000000 +I (146054) example: expect speed: 0.000000 real_pulses:0 +I (146054) example: new speed:399.000000 +I (146064) example: expect speed: 0.000000 real_pulses:0 +I (146064) example: new speed:399.000000 +I (146074) example: expect speed: 0.000000 real_pulses:0 +I (146074) example: new speed:399.000000 +I (146084) example: expect speed: 0.000000 real_pulses:0 +I (146084) example: new speed:399.000000 +I (146094) example: expect speed: 0.000000 real_pulses:0 +I (146094) example: new speed:399.000000 +I (146104) example: expect speed: 0.000000 real_pulses:0 +I (146104) example: new speed:399.000000 +I (146114) example: expect speed: 0.000000 real_pulses:0 +I (146114) example: new speed:399.000000 +I (146124) example: expect speed: 0.000000 real_pulses:0 +I (146124) example: new speed:399.000000 +I (146134) example: expect speed: 0.000000 real_pulses:0 +I (146134) example: new speed:399.000000 +I (146144) example: expect speed: 0.000000 real_pulses:0 +I (146144) example: new speed:399.000000 +I (146154) example: expect speed: 0.000000 real_pulses:0 +I (146154) example: new speed:399.000000 +I (146164) example: expect speed: 0.000000 real_pulses:0 +I (146164) example: new speed:399.000000 +I (146174) example: expect speed: 0.000000 real_pulses:0 +I (146174) example: new speed:399.000000 +I (146184) example: expect speed: 0.000000 real_pulses:0 +I (146184) example: new speed:399.000000 +I (146194) example: expect speed: 0.000000 real_pulses:0 +I (146194) example: new speed:399.000000 +I (146204) example: expect speed: 0.000000 real_pulses:0 +I (146204) example: new speed:399.000000 +I (146214) example: expect speed: 0.000000 real_pulses:0 +I (146214) example: new speed:399.000000 +I (146224) example: expect speed: 0.000000 real_pulses:0 +I (146224) example: new speed:399.000000 +I (146234) example: expect speed: 0.000000 real_pulses:0 +I (146234) example: new speed:399.000000 +I (146244) example: expect speed: 0.000000 real_pulses:0 +I (146244) example: new speed:399.000000 +I (146254) example: expect speed: 0.000000 real_pulses:0 +I (146254) example: new speed:399.000000 +I (146264) example: expect speed: 0.000000 real_pulses:0 +I (146264) example: new speed:399.000000 +I (146274) example: expect speed: 0.000000 real_pulses:0 +I (146274) example: new speed:399.000000 +I (146284) example: expect speed: 0.000000 real_pulses:0 +I (146284) example: new speed:399.000000 +I (146294) example: expect speed: 0.000000 real_pulses:0 +I (146294) example: new speed:399.000000 +I (146304) example: expect speed: 0.000000 real_pulses:0 +I (146304) example: new speed:399.000000 +I (146314) example: expect speed: 0.000000 real_pulses:0 +I (146314) example: new speed:399.000000 +I (146324) example: expect speed: 0.000000 real_pulses:0 +I (146324) example: new speed:399.000000 +I (146334) example: expect speed: 0.000000 real_pulses:0 +I (146334) example: new speed:399.000000 +I (146344) example: expect speed: 0.000000 real_pulses:0 +I (146344) example: new speed:399.000000 +I (146354) example: expect speed: 0.000000 real_pulses:0 +I (146354) example: new speed:399.000000 +I (146364) example: expect speed: 0.000000 real_pulses:0 +I (146364) example: new speed:399.000000 +I (146374) example: expect speed: 0.000000 real_pulses:0 +I (146374) example: new speed:399.000000 +I (146384) example: expect speed: 0.000000 real_pulses:0 +I (146384) example: new speed:399.000000 +I (146394) example: expect speed: 0.000000 real_pulses:0 +I (146394) example: new speed:399.000000 +I (146404) example: expect speed: 0.000000 real_pulses:0 +I (146404) example: new speed:399.000000 +I (146414) example: expect speed: 0.000000 real_pulses:0 +I (146414) example: new speed:399.000000 +I (146424) example: expect speed: 0.000000 real_pulses:0 +I (146424) example: new speed:399.000000 +I (146434) example: expect speed: 0.000000 real_pulses:0 +I (146434) example: new speed:399.000000 +I (146444) example: expect speed: 0.000000 real_pulses:0 +I (146444) example: new speed:399.000000 +I (146454) example: expect speed: 0.000000 real_pulses:0 +I (146454) example: new speed:399.000000 +I (146464) example: expect speed: 0.000000 real_pulses:0 +I (146464) example: new speed:399.000000 +I (146474) example: expect speed: 0.000000 real_pulses:0 +I (146474) example: new speed:399.000000 +I (146484) example: expect speed: 0.000000 real_pulses:0 +I (146484) example: new speed:399.000000 +I (146494) example: expect speed: 0.000000 real_pulses:0 +I (146494) example: new speed:399.000000 +I (146504) example: expect speed: 0.000000 real_pulses:0 +I (146504) example: new speed:399.000000 +I (146514) example: expect speed: 0.000000 real_pulses:0 +I (146514) example: new speed:399.000000 +I (146524) example: expect speed: 0.000000 real_pulses:0 +I (146524) example: new speed:399.000000 +I (146534) example: expect speed: 0.000000 real_pulses:0 +I (146534) example: new speed:399.000000 +I (146544) example: expect speed: 0.000000 real_pulses:0 +I (146544) example: new speed:399.000000 +I (146554) example: expect speed: 0.000000 real_pulses:0 +I (146554) example: new speed:399.000000 +I (146564) example: expect speed: 0.000000 real_pulses:0 +I (146564) example: new speed:399.000000 +I (146574) example: expect speed: 0.000000 real_pulses:0 +I (146574) example: new speed:399.000000 +I (146584) example: expect speed: 0.000000 real_pulses:0 +I (146584) example: new speed:399.000000 +I (146594) example: expect speed: 0.000000 real_pulses:0 +I (146594) example: new speed:399.000000 +I (146604) example: expect speed: 0.000000 real_pulses:0 +I (146604) example: new speed:399.000000 +I (146614) example: expect speed: 0.000000 real_pulses:0 +I (146614) example: new speed:399.000000 +I (146624) example: expect speed: 0.000000 real_pulses:0 +I (146624) example: new speed:399.000000 +I (146634) example: expect speed: 0.000000 real_pulses:0 +I (146634) example: new speed:399.000000 +I (146644) example: expect speed: 0.000000 real_pulses:0 +I (146644) example: new speed:399.000000 +I (146654) example: expect speed: 0.000000 real_pulses:0 +I (146654) example: new speed:399.000000 +I (146664) example: expect speed: 0.000000 real_pulses:0 +I (146664) example: new speed:399.000000 +I (146674) example: expect speed: 0.000000 real_pulses:0 +I (146674) example: new speed:399.000000 +I (146684) example: expect speed: 0.000000 real_pulses:0 +I (146684) example: new speed:399.000000 +I (146694) example: expect speed: 0.000000 real_pulses:0 +I (146694) example: new speed:399.000000 +I (146704) example: expect speed: 0.000000 real_pulses:0 +I (146704) example: new speed:399.000000 +I (146714) example: expect speed: 0.000000 real_pulses:0 +I (146714) example: new speed:399.000000 +I (146724) example: expect speed: 0.000000 real_pulses:0 +I (146724) example: new speed:399.000000 +I (146734) example: expect speed: 0.000000 real_pulses:0 +I (146734) example: new speed:399.000000 +I (146744) example: expect speed: 0.000000 real_pulses:0 +I (146744) example: new speed:399.000000 +I (146754) example: expect speed: 0.000000 real_pulses:0 +I (146754) example: new speed:399.000000 +I (146764) example: expect speed: 0.000000 real_pulses:0 +I (146764) example: new speed:399.000000 +I (146774) example: expect speed: 0.000000 real_pulses:0 +I (146774) example: new speed:399.000000 +I (146784) example: expect speed: 0.000000 real_pulses:0 +I (146794) example: new speed:399.000000 +I (146794) example: expect speed: 0.000000 real_pulses:0 +I (146804) modbus tcp: ModBusSlave_recv() +I (146804) example: new speed:399.000000 +I (146804) modbus: ModbusSlaveProcess() +I (146804) modbus: check id... +I (146804) modbus: ok +I (146804) modbus: add: 0, length: 10 +I (146804) modbus: Read Holding Registers +I (146804) example: expect speed: 0.000000 real_pulses:0 +I (146814) example: new speed:399.000000 +I (146814) example: expect speed: 0.000000 real_pulses:0 +I (146814) example: new speed:399.000000 +I (146824) example: expect speed: 0.000000 real_pulses:0 +I (146824) example: new speed:399.000000 +I (146834) example: expect speed: 0.000000 real_pulses:0 +I (146834) example: new speed:399.000000 +I (146844) example: expect speed: 0.000000 real_pulses:0 +I (146844) example: new speed:399.000000 +I (146854) example: expect speed: 0.000000 real_pulses:0 +I (146854) example: new speed:399.000000 +I (146864) example: expect speed: 0.000000 real_pulses:0 +I (146874) example: new speed:399.000000 +I (146874) example: expect speed: 0.000000 real_pulses:0 +I (146874) example: new speed:399.000000 +I (146884) example: expect speed: 0.000000 real_pulses:0 +I (146884) example: new speed:399.000000 +I (146894) example: expect speed: 0.000000 real_pulses:0 +I (146894) example: new speed:399.000000 +I (146904) example: expect speed: 0.000000 real_pulses:0 +I (146904) example: new speed:399.000000 +I (146914) example: expect speed: 0.000000 real_pulses:0 +I (146924) example: new speed:399.000000 +I (146924) example: expect speed: 0.000000 real_pulses:0 +I (146924) example: new speed:399.000000 +I (146934) example: expect speed: 0.000000 real_pulses:0 +I (146934) example: new speed:399.000000 +I (146944) example: expect speed: 0.000000 real_pulses:0 +I (146944) example: new speed:399.000000 +I (146954) example: expect speed: 0.000000 real_pulses:0 +I (146954) example: new speed:399.000000 +I (146964) example: expect speed: 0.000000 real_pulses:0 +I (146964) example: new speed:399.000000 +I (146974) example: expect speed: 0.000000 real_pulses:0 +I (146974) example: new speed:399.000000 +I (146984) example: expect speed: 0.000000 real_pulses:0 +I (146984) example: new speed:399.000000 +I (146994) example: expect speed: 0.000000 real_pulses:0 +I (146994) example: new speed:399.000000 +I (147004) example: expect speed: 0.000000 real_pulses:0 +I (147004) example: new speed:399.000000 +I (147014) example: expect speed: 0.000000 real_pulses:0 +I (147014) example: new speed:399.000000 +I (147024) example: expect speed: 0.000000 real_pulses:0 +I (147024) example: new speed:399.000000 +I (147034) example: expect speed: 0.000000 real_pulses:0 +I (147034) example: new speed:399.000000 +I (147044) example: expect speed: 0.000000 real_pulses:0 +I (147044) example: new speed:399.000000 +I (147054) example: expect speed: 0.000000 real_pulses:0 +I (147054) example: new speed:399.000000 +I (147064) example: expect speed: 0.000000 real_pulses:0 +I (147064) example: new speed:399.000000 +I (147074) example: expect speed: 0.000000 real_pulses:0 +I (147074) example: new speed:399.000000 +I (147084) example: expect speed: 0.000000 real_pulses:0 +I (147084) example: new speed:399.000000 +I (147094) example: expect speed: 0.000000 real_pulses:0 +I (147094) example: new speed:399.000000 +I (147104) example: expect speed: 0.000000 real_pulses:0 +I (147104) example: new speed:399.000000 +I (147114) example: expect speed: 0.000000 real_pulses:0 +I (147114) example: new speed:399.000000 +I (147124) example: expect speed: 0.000000 real_pulses:0 +I (147124) example: new speed:399.000000 +I (147134) example: expect speed: 0.000000 real_pulses:0 +I (147134) example: new speed:399.000000 +I (147144) example: expect speed: 0.000000 real_pulses:0 +I (147144) example: new speed:399.000000 +I (147154) example: expect speed: 0.000000 real_pulses:0 +I (147154) example: new speed:399.000000 +I (147164) example: expect speed: 0.000000 real_pulses:0 +I (147164) example: new speed:399.000000 +I (147174) example: expect speed: 0.000000 real_pulses:0 +I (147174) example: new speed:399.000000 +I (147184) example: expect speed: 0.000000 real_pulses:0 +I (147184) example: new speed:399.000000 +I (147194) example: expect speed: 0.000000 real_pulses:0 +I (147194) example: new speed:399.000000 +I (147204) example: expect speed: 0.000000 real_pulses:0 +I (147204) example: new speed:399.000000 +I (147214) example: expect speed: 0.000000 real_pulses:0 +I (147214) example: new speed:399.000000 +I (147224) example: expect speed: 0.000000 real_pulses:0 +I (147224) example: new speed:399.000000 +I (147234) example: expect speed: 0.000000 real_pulses:0 +I (147234) example: new speed:399.000000 +I (147244) example: expect speed: 0.000000 real_pulses:0 +I (147244) example: new speed:399.000000 +I (147254) example: expect speed: 0.000000 real_pulses:0 +I (147254) example: new speed:399.000000 +I (147264) example: expect speed: 0.000000 real_pulses:0 +I (147264) example: new speed:399.000000 +I (147274) example: expect speed: 0.000000 real_pulses:0 +I (147274) example: new speed:399.000000 +I (147284) example: expect speed: 0.000000 real_pulses:0 +I (147284) example: new speed:399.000000 +I (147294) example: expect speed: 0.000000 real_pulses:0 +I (147294) example: new speed:399.000000 +I (147304) example: expect speed: 0.000000 real_pulses:0 +I (147304) example: new speed:399.000000 +I (147314) example: expect speed: 0.000000 real_pulses:0 +I (147314) example: new speed:399.000000 +I (147324) example: expect speed: 0.000000 real_pulses:0 +I (147324) example: new speed:399.000000 +I (147334) example: expect speed: 0.000000 real_pulses:0 +I (147334) example: new speed:399.000000 +I (147344) example: expect speed: 0.000000 real_pulses:0 +I (147344) example: new speed:399.000000 +I (147354) example: expect speed: 0.000000 real_pulses:0 +I (147354) example: new speed:399.000000 +I (147364) example: expect speed: 0.000000 real_pulses:0 +I (147364) example: new speed:399.000000 +I (147374) example: expect speed: 0.000000 real_pulses:0 +I (147374) example: new speed:399.000000 +I (147384) example: expect speed: 0.000000 real_pulses:0 +I (147384) example: new speed:399.000000 +I (147394) example: expect speed: 0.000000 real_pulses:0 +I (147394) example: new speed:399.000000 +I (147404) example: expect speed: 0.000000 real_pulses:0 +I (147404) example: new speed:399.000000 +I (147414) example: expect speed: 0.000000 real_pulses:0 +I (147414) example: new speed:399.000000 +I (147424) example: expect speed: 0.000000 real_pulses:0 +I (147424) example: new speed:399.000000 +I (147434) example: expect speed: 0.000000 real_pulses:0 +I (147434) example: new speed:399.000000 +I (147444) example: expect speed: 0.000000 real_pulses:0 +I (147444) example: new speed:399.000000 +I (147454) example: expect speed: 0.000000 real_pulses:0 +I (147454) example: new speed:399.000000 +I (147464) example: expect speed: 0.000000 real_pulses:0 +I (147464) example: new speed:399.000000 +I (147474) example: expect speed: 0.000000 real_pulses:0 +I (147474) example: new speed:399.000000 +I (147484) example: expect speed: 0.000000 real_pulses:0 +I (147484) example: new speed:399.000000 +I (147494) example: expect speed: 0.000000 real_pulses:0 +I (147494) example: new speed:399.000000 +I (147504) example: expect speed: 0.000000 real_pulses:0 +I (147504) example: new speed:399.000000 +I (147514) example: expect speed: 0.000000 real_pulses:0 +I (147514) example: new speed:399.000000 +I (147524) example: expect speed: 0.000000 real_pulses:0 +I (147524) example: new speed:399.000000 +I (147534) example: expect speed: 0.000000 real_pulses:0 +I (147534) example: new speed:399.000000 +I (147544) example: expect speed: 0.000000 real_pulses:0 +I (147544) example: new speed:399.000000 +I (147554) example: expect speed: 0.000000 real_pulses:0 +I (147554) example: new speed:399.000000 +I (147564) example: expect speed: 0.000000 real_pulses:0 +I (147564) example: new speed:399.000000 +I (147574) example: expect speed: 0.000000 real_pulses:0 +I (147574) example: new speed:399.000000 +I (147584) example: expect speed: 0.000000 real_pulses:0 +I (147584) example: new speed:399.000000 +I (147594) example: expect speed: 0.000000 real_pulses:0 +I (147594) example: new speed:399.000000 +I (147604) example: expect speed: 0.000000 real_pulses:0 +I (147604) example: new speed:399.000000 +I (147614) example: expect speed: 0.000000 real_pulses:0 +I (147614) example: new speed:399.000000 +I (147624) example: expect speed: 0.000000 real_pulses:0 +I (147624) example: new speed:399.000000 +I (147634) example: expect speed: 0.000000 real_pulses:0 +I (147634) example: new speed:399.000000 +I (147644) example: expect speed: 0.000000 real_pulses:0 +I (147644) example: new speed:399.000000 +I (147654) example: expect speed: 0.000000 real_pulses:0 +I (147654) example: new speed:399.000000 +I (147664) example: expect speed: 0.000000 real_pulses:0 +I (147664) example: new speed:399.000000 +I (147674) example: expect speed: 0.000000 real_pulses:0 +I (147674) example: new speed:399.000000 +I (147684) example: expect speed: 0.000000 real_pulses:0 +I (147684) example: new speed:399.000000 +I (147694) example: expect speed: 0.000000 real_pulses:0 +I (147694) example: new speed:399.000000 +I (147704) example: expect speed: 0.000000 real_pulses:0 +I (147714) example: new speed:399.000000 +I (147714) example: expect speed: 0.000000 real_pulses:0 +I (147714) example: new speed:399.000000 +I (147724) example: expect speed: 0.000000 real_pulses:0 +I (147724) example: new speed:399.000000 +I (147734) example: expect speed: 0.000000 real_pulses:0 +I (147734) example: new speed:399.000000 +I (147744) example: expect speed: 0.000000 real_pulses:0 +I (147744) example: new speed:399.000000 +I (147754) example: expect speed: 0.000000 real_pulses:0 +I (147754) example: new speed:399.000000 +I (147764) example: expect speed: 0.000000 real_pulses:0 +I (147764) example: new speed:399.000000 +I (147774) example: expect speed: 0.000000 real_pulses:0 +I (147774) example: new speed:399.000000 +I (147784) example: expect speed: 0.000000 real_pulses:0 +I (147784) example: new speed:399.000000 +I (147794) example: expect speed: 0.000000 real_pulses:0 +I (147794) example: new speed:399.000000 +I (147804) example: expect speed: 0.000000 real_pulses:0 +I (147804) example: new speed:399.000000 +I (147814) example: expect speed: 0.000000 real_pulses:0 +I (147824) modbus tcp: ModBusSlave_recv() +I (147824) example: new speed:399.000000 +I (147824) modbus: ModbusSlaveProcess() +I (147824) modbus: check id... +I (147824) modbus: ok +I (147824) modbus: add: 0, length: 10 +I (147824) modbus: Read Holding Registers +I (147824) example: expect speed: 0.000000 real_pulses:0 +I (147834) example: new speed:399.000000 +I (147834) example: expect speed: 0.000000 real_pulses:0 +I (147834) example: new speed:399.000000 +I (147844) example: expect speed: 0.000000 real_pulses:0 +I (147844) example: new speed:399.000000 +I (147854) example: expect speed: 0.000000 real_pulses:0 +I (147854) example: new speed:399.000000 +I (147864) example: expect speed: 0.000000 real_pulses:0 +I (147864) example: new speed:399.000000 +I (147874) example: expect speed: 0.000000 real_pulses:0 +I (147884) example: new speed:399.000000 +I (147884) example: expect speed: 0.000000 real_pulses:0 +I (147884) example: new speed:399.000000 +I (147894) example: expect speed: 0.000000 real_pulses:0 +I (147894) example: new speed:399.000000 +I (147904) example: expect speed: 0.000000 real_pulses:0 +I (147904) example: new speed:399.000000 +I (147914) example: expect speed: 0.000000 real_pulses:0 +I (147924) example: new speed:399.000000 +I (147924) example: expect speed: 0.000000 real_pulses:0 +I (147924) example: new speed:399.000000 +I (147934) example: expect speed: 0.000000 real_pulses:0 +I (147934) example: new speed:399.000000 +I (147944) example: expect speed: 0.000000 real_pulses:0 +I (147944) example: new speed:399.000000 +I (147954) example: expect speed: 0.000000 real_pulses:0 +I (147954) example: new speed:399.000000 +I (147964) example: expect speed: 0.000000 real_pulses:0 +I (147964) example: new speed:399.000000 +I (147974) example: expect speed: 0.000000 real_pulses:0 +I (147984) example: new speed:399.000000 +I (147984) example: expect speed: 0.000000 real_pulses:0 +I (147984) example: new speed:399.000000 +I (147994) example: expect speed: 0.000000 real_pulses:0 +I (147994) example: new speed:399.000000 +I (148004) example: expect speed: 0.000000 real_pulses:0 +I (148004) example: new speed:399.000000 +I (148014) example: expect speed: 0.000000 real_pulses:0 +I (148014) example: new speed:399.000000 +I (148024) example: expect speed: 0.000000 real_pulses:0 +I (148024) example: new speed:399.000000 +I (148034) example: expect speed: 0.000000 real_pulses:0 +I (148034) example: new speed:399.000000 +I (148044) example: expect speed: 0.000000 real_pulses:0 +I (148044) example: new speed:399.000000 +I (148054) example: expect speed: 0.000000 real_pulses:0 +I (148054) example: new speed:399.000000 +I (148064) example: expect speed: 0.000000 real_pulses:0 +I (148064) example: new speed:399.000000 +I (148074) example: expect speed: 0.000000 real_pulses:0 +I (148074) example: new speed:399.000000 +I (148084) example: expect speed: 0.000000 real_pulses:0 +I (148084) example: new speed:399.000000 +I (148094) example: expect speed: 0.000000 real_pulses:0 +I (148094) example: new speed:399.000000 +I (148104) example: expect speed: 0.000000 real_pulses:0 +I (148104) example: new speed:399.000000 +I (148114) example: expect speed: 0.000000 real_pulses:0 +I (148114) example: new speed:399.000000 +I (148124) example: expect speed: 0.000000 real_pulses:0 +I (148124) example: new speed:399.000000 +I (148134) example: expect speed: 0.000000 real_pulses:0 +I (148134) example: new speed:399.000000 +I (148144) example: expect speed: 0.000000 real_pulses:0 +I (148144) example: new speed:399.000000 +I (148154) example: expect speed: 0.000000 real_pulses:0 +I (148154) example: new speed:399.000000 +I (148164) example: expect speed: 0.000000 real_pulses:0 +I (148164) example: new speed:399.000000 +I (148174) example: expect speed: 0.000000 real_pulses:0 +I (148174) example: new speed:399.000000 +I (148184) example: expect speed: 0.000000 real_pulses:0 +I (148184) example: new speed:399.000000 +I (148194) example: expect speed: 0.000000 real_pulses:0 +I (148194) example: new speed:399.000000 +I (148204) example: expect speed: 0.000000 real_pulses:0 +I (148204) example: new speed:399.000000 +I (148214) example: expect speed: 0.000000 real_pulses:0 +I (148214) example: new speed:399.000000 +I (148224) example: expect speed: 0.000000 real_pulses:0 +I (148224) example: new speed:399.000000 +I (148234) example: expect speed: 0.000000 real_pulses:0 +I (148234) example: new speed:399.000000 +I (148244) example: expect speed: 0.000000 real_pulses:0 +I (148244) example: new speed:399.000000 +I (148254) example: expect speed: 0.000000 real_pulses:0 +I (148254) example: new speed:399.000000 +I (148264) example: expect speed: 0.000000 real_pulses:0 +I (148264) example: new speed:399.000000 +I (148274) example: expect speed: 0.000000 real_pulses:0 +I (148274) example: new speed:399.000000 +I (148284) example: expect speed: 0.000000 real_pulses:0 +I (148284) example: new speed:399.000000 +I (148294) example: expect speed: 0.000000 real_pulses:0 +I (148294) example: new speed:399.000000 +I (148304) example: expect speed: 0.000000 real_pulses:0 +I (148304) example: new speed:399.000000 +I (148314) example: expect speed: 0.000000 real_pulses:0 +I (148314) example: new speed:399.000000 +I (148324) example: expect speed: 0.000000 real_pulses:0 +I (148324) example: new speed:399.000000 +I (148334) example: expect speed: 0.000000 real_pulses:0 +I (148334) example: new speed:399.000000 +I (148344) example: expect speed: 0.000000 real_pulses:0 +I (148344) example: new speed:399.000000 +I (148354) example: expect speed: 0.000000 real_pulses:0 +I (148354) example: new speed:399.000000 +I (148364) example: expect speed: 0.000000 real_pulses:0 +I (148364) example: new speed:399.000000 +I (148374) example: expect speed: 0.000000 real_pulses:0 +I (148374) example: new speed:399.000000 +I (148384) example: expect speed: 0.000000 real_pulses:0 +I (148384) example: new speed:399.000000 +I (148394) example: expect speed: 0.000000 real_pulses:0 +I (148394) example: new speed:399.000000 +I (148404) example: expect speed: 0.000000 real_pulses:0 +I (148404) example: new speed:399.000000 +I (148414) example: expect speed: 0.000000 real_pulses:0 +I (148414) example: new speed:399.000000 +I (148424) example: expect speed: 0.000000 real_pulses:0 +I (148424) example: new speed:399.000000 +I (148434) example: expect speed: 0.000000 real_pulses:0 +I (148434) example: new speed:399.000000 +I (148444) example: expect speed: 0.000000 real_pulses:0 +I (148444) example: new speed:399.000000 +I (148454) example: expect speed: 0.000000 real_pulses:0 +I (148454) example: new speed:399.000000 +I (148464) example: expect speed: 0.000000 real_pulses:0 +I (148464) example: new speed:399.000000 +I (148474) example: expect speed: 0.000000 real_pulses:0 +I (148474) example: new speed:399.000000 +I (148484) example: expect speed: 0.000000 real_pulses:0 +I (148484) example: new speed:399.000000 +I (148494) example: expect speed: 0.000000 real_pulses:0 +I (148494) example: new speed:399.000000 +I (148504) example: expect speed: 0.000000 real_pulses:0 +I (148504) example: new speed:399.000000 +I (148514) example: expect speed: 0.000000 real_pulses:0 +I (148514) example: new speed:399.000000 +I (148524) example: expect speed: 0.000000 real_pulses:0 +I (148524) example: new speed:399.000000 +I (148534) example: expect speed: 0.000000 real_pulses:0 +I (148534) example: new speed:399.000000 +I (148544) example: expect speed: 0.000000 real_pulses:0 +I (148544) example: new speed:399.000000 +I (148554) example: expect speed: 0.000000 real_pulses:0 +I (148554) example: new speed:399.000000 +I (148564) example: expect speed: 0.000000 real_pulses:0 +I (148564) example: new speed:399.000000 +I (148574) example: expect speed: 0.000000 real_pulses:0 +I (148574) example: new speed:399.000000 +I (148584) example: expect speed: 0.000000 real_pulses:0 +I (148584) example: new speed:399.000000 +I (148594) example: expect speed: 0.000000 real_pulses:0 +I (148594) example: new speed:399.000000 +I (148604) example: expect speed: 0.000000 real_pulses:0 +I (148604) example: new speed:399.000000 +I (148614) example: expect speed: 0.000000 real_pulses:0 +I (148614) example: new speed:399.000000 +I (148624) example: expect speed: 0.000000 real_pulses:0 +I (148624) example: new speed:399.000000 +I (148634) example: expect speed: 0.000000 real_pulses:0 +I (148634) example: new speed:399.000000 +I (148644) example: expect speed: 0.000000 real_pulses:0 +I (148644) example: new speed:399.000000 +I (148654) example: expect speed: 0.000000 real_pulses:0 +I (148654) example: new speed:399.000000 +I (148664) example: expect speed: 0.000000 real_pulses:0 +I (148664) example: new speed:399.000000 +I (148674) example: expect speed: 0.000000 real_pulses:0 +I (148674) example: new speed:399.000000 +I (148684) example: expect speed: 0.000000 real_pulses:0 +I (148684) example: new speed:399.000000 +I (148694) example: expect speed: 0.000000 real_pulses:0 +I (148694) example: new speed:399.000000 +I (148704) example: expect speed: 0.000000 real_pulses:0 +I (148704) example: new speed:399.000000 +I (148714) example: expect speed: 0.000000 real_pulses:0 +I (148714) example: new speed:399.000000 +I (148724) example: expect speed: 0.000000 real_pulses:0 +I (148724) example: new speed:399.000000 +I (148734) example: expect speed: 0.000000 real_pulses:0 +I (148734) example: new speed:399.000000 +I (148744) example: expect speed: 0.000000 real_pulses:0 +I (148744) example: new speed:399.000000 +I (148754) example: expect speed: 0.000000 real_pulses:0 +I (148754) example: new speed:399.000000 +I (148764) example: expect speed: 0.000000 real_pulses:0 +I (148764) example: new speed:399.000000 +I (148774) example: expect speed: 0.000000 real_pulses:0 +I (148774) example: new speed:399.000000 +I (148784) example: expect speed: 0.000000 real_pulses:0 +I (148784) example: new speed:399.000000 +I (148794) example: expect speed: 0.000000 real_pulses:0 +I (148794) example: new speed:399.000000 +I (148804) example: expect speed: 0.000000 real_pulses:0 +I (148804) example: new speed:399.000000 +I (148814) example: expect speed: 0.000000 real_pulses:0 +I (148814) example: new speed:399.000000 +I (148824) example: expect speed: 0.000000 real_pulses:0 +I (148824) example: new speed:399.000000 +I (148834) example: expect speed: 0.000000 real_pulses:0 +I (148844) example: new speed:399.000000 +I (148844) modbus tcp: ModBusSlave_recv() +I (148844) modbus: ModbusSlaveProcess() +I (148844) modbus: check id... +I (148844) modbus: ok +I (148844) modbus: add: 0, length: 10 +I (148844) modbus: Read Holding Registers +I (148844) example: expect speed: 0.000000 real_pulses:0 +I (148854) example: new speed:399.000000 +I (148854) example: expect speed: 0.000000 real_pulses:0 +I (148854) example: new speed:399.000000 +I (148864) example: expect speed: 0.000000 real_pulses:0 +I (148864) example: new speed:399.000000 +I (148874) example: expect speed: 0.000000 real_pulses:0 +I (148874) example: new speed:399.000000 +I (148884) example: expect speed: 0.000000 real_pulses:0 +I (148884) example: new speed:399.000000 +I (148894) example: expect speed: 0.000000 real_pulses:0 +I (148904) example: new speed:399.000000 +I (148904) example: expect speed: 0.000000 real_pulses:0 +I (148914) example: new speed:399.000000 +I (148914) example: expect speed: 0.000000 real_pulses:0 +I (148914) example: new speed:399.000000 +I (148924) example: expect speed: 0.000000 real_pulses:0 +I (148924) example: new speed:399.000000 +I (148934) example: expect speed: 0.000000 real_pulses:0 +I (148944) example: new speed:399.000000 +I (148944) example: expect speed: 0.000000 real_pulses:0 +I (148944) example: new speed:399.000000 +I (148954) example: expect speed: 0.000000 real_pulses:0 +I (148954) example: new speed:399.000000 +I (148964) example: expect speed: 0.000000 real_pulses:0 +I (148964) example: new speed:399.000000 +I (148974) example: expect speed: 0.000000 real_pulses:0 +I (148974) example: new speed:399.000000 +I (148984) example: expect speed: 0.000000 real_pulses:0 +I (148984) example: new speed:399.000000 +I (148994) example: expect speed: 0.000000 real_pulses:0 +I (149004) example: new speed:399.000000 +I (149004) example: expect speed: 0.000000 real_pulses:0 +I (149004) example: new speed:399.000000 +I (149014) example: expect speed: 0.000000 real_pulses:0 +I (149014) example: new speed:399.000000 +I (149024) example: expect speed: 0.000000 real_pulses:0 +I (149024) example: new speed:399.000000 +I (149034) example: expect speed: 0.000000 real_pulses:0 +I (149044) example: new speed:399.000000 +I (149044) example: expect speed: 0.000000 real_pulses:0 +I (149044) example: new speed:399.000000 +I (149054) example: expect speed: 0.000000 real_pulses:0 +I (149054) example: new speed:399.000000 +I (149064) example: expect speed: 0.000000 real_pulses:0 +I (149064) example: new speed:399.000000 +I (149074) example: expect speed: 0.000000 real_pulses:0 +I (149074) example: new speed:399.000000 +I (149084) example: expect speed: 0.000000 real_pulses:0 +I (149084) example: new speed:399.000000 +I (149094) example: expect speed: 0.000000 real_pulses:0 +I (149094) example: new speed:399.000000 +I (149104) example: expect speed: 0.000000 real_pulses:0 +I (149104) example: new speed:399.000000 +I (149114) example: expect speed: 0.000000 real_pulses:0 +I (149114) example: new speed:399.000000 +I (149124) example: expect speed: 0.000000 real_pulses:0 +I (149124) example: new speed:399.000000 +I (149134) example: expect speed: 0.000000 real_pulses:0 +I (149134) example: new speed:399.000000 +I (149144) example: expect speed: 0.000000 real_pulses:0 +I (149144) example: new speed:399.000000 +I (149154) example: expect speed: 0.000000 real_pulses:0 +I (149154) example: new speed:399.000000 +I (149164) example: expect speed: 0.000000 real_pulses:0 +I (149164) example: new speed:399.000000 +I (149174) example: expect speed: 0.000000 real_pulses:0 +I (149174) example: new speed:399.000000 +I (149184) example: expect speed: 0.000000 real_pulses:0 +I (149184) example: new speed:399.000000 +I (149194) example: expect speed: 0.000000 real_pulses:0 +I (149194) example: new speed:399.000000 +I (149204) example: expect speed: 0.000000 real_pulses:0 +I (149204) example: new speed:399.000000 +I (149214) example: expect speed: 0.000000 real_pulses:0 +I (149214) example: new speed:399.000000 +I (149224) example: expect speed: 0.000000 real_pulses:0 +I (149224) example: new speed:399.000000 +I (149234) example: expect speed: 0.000000 real_pulses:0 +I (149234) example: new speed:399.000000 +I (149244) example: expect speed: 0.000000 real_pulses:0 +I (149244) example: new speed:399.000000 +I (149254) example: expect speed: 0.000000 real_pulses:0 +I (149254) example: new speed:399.000000 +I (149264) example: expect speed: 0.000000 real_pulses:0 +I (149264) example: new speed:399.000000 +I (149274) example: expect speed: 0.000000 real_pulses:0 +I (149274) example: new speed:399.000000 +I (149284) example: expect speed: 0.000000 real_pulses:0 +I (149284) example: new speed:399.000000 +I (149294) example: expect speed: 0.000000 real_pulses:0 +I (149294) example: new speed:399.000000 +I (149304) example: expect speed: 0.000000 real_pulses:0 +I (149304) example: new speed:399.000000 +I (149314) example: expect speed: 0.000000 real_pulses:0 +I (149314) example: new speed:399.000000 +I (149324) example: expect speed: 0.000000 real_pulses:0 +I (149324) example: new speed:399.000000 +I (149334) example: expect speed: 0.000000 real_pulses:0 +I (149334) example: new speed:399.000000 +I (149344) example: expect speed: 0.000000 real_pulses:0 +I (149344) example: new speed:399.000000 +I (149354) example: expect speed: 0.000000 real_pulses:0 +I (149354) example: new speed:399.000000 +I (149364) example: expect speed: 0.000000 real_pulses:0 +I (149364) example: new speed:399.000000 +I (149374) example: expect speed: 0.000000 real_pulses:0 +I (149374) example: new speed:399.000000 +I (149384) example: expect speed: 0.000000 real_pulses:0 +I (149384) example: new speed:399.000000 +I (149394) example: expect speed: 0.000000 real_pulses:0 +I (149394) example: new speed:399.000000 +I (149404) example: expect speed: 0.000000 real_pulses:0 +I (149404) example: new speed:399.000000 +I (149414) example: expect speed: 0.000000 real_pulses:0 +I (149414) example: new speed:399.000000 +I (149424) example: expect speed: 0.000000 real_pulses:0 +I (149424) example: new speed:399.000000 +I (149434) example: expect speed: 0.000000 real_pulses:0 +I (149434) example: new speed:399.000000 +I (149444) example: expect speed: 0.000000 real_pulses:0 +I (149444) example: new speed:399.000000 +I (149454) example: expect speed: 0.000000 real_pulses:0 +I (149454) example: new speed:399.000000 +I (149464) example: expect speed: 0.000000 real_pulses:0 +I (149464) example: new speed:399.000000 +I (149474) example: expect speed: 0.000000 real_pulses:0 +I (149474) example: new speed:399.000000 +I (149484) example: expect speed: 0.000000 real_pulses:0 +I (149484) example: new speed:399.000000 +I (149494) example: expect speed: 0.000000 real_pulses:0 +I (149494) example: new speed:399.000000 +I (149504) example: expect speed: 0.000000 real_pulses:0 +I (149504) example: new speed:399.000000 +I (149514) example: expect speed: 0.000000 real_pulses:0 +I (149514) example: new speed:399.000000 +I (149524) example: expect speed: 0.000000 real_pulses:0 +I (149524) example: new speed:399.000000 +I (149534) example: expect speed: 0.000000 real_pulses:0 +I (149534) example: new speed:399.000000 +I (149544) example: expect speed: 0.000000 real_pulses:0 +I (149544) example: new speed:399.000000 +I (149554) example: expect speed: 0.000000 real_pulses:0 +I (149554) example: new speed:399.000000 +I (149564) example: expect speed: 0.000000 real_pulses:0 +I (149564) example: new speed:399.000000 +I (149574) example: expect speed: 0.000000 real_pulses:0 +I (149574) example: new speed:399.000000 +I (149584) example: expect speed: 0.000000 real_pulses:0 +I (149584) example: new speed:399.000000 +I (149594) example: expect speed: 0.000000 real_pulses:0 +I (149594) example: new speed:399.000000 +I (149604) example: expect speed: 0.000000 real_pulses:0 +I (149604) example: new speed:399.000000 +I (149614) example: expect speed: 0.000000 real_pulses:0 +I (149614) example: new speed:399.000000 +I (149624) example: expect speed: 0.000000 real_pulses:0 +I (149624) example: new speed:399.000000 +I (149634) example: expect speed: 0.000000 real_pulses:0 +I (149634) example: new speed:399.000000 +I (149644) example: expect speed: 0.000000 real_pulses:0 +I (149644) example: new speed:399.000000 +I (149654) example: expect speed: 0.000000 real_pulses:0 +I (149654) example: new speed:399.000000 +I (149664) example: expect speed: 0.000000 real_pulses:0 +I (149664) example: new speed:399.000000 +I (149674) example: expect speed: 0.000000 real_pulses:0 +I (149674) example: new speed:399.000000 +I (149684) example: expect speed: 0.000000 real_pulses:0 +I (149684) example: new speed:399.000000 +I (149694) example: expect speed: 0.000000 real_pulses:0 +I (149694) example: new speed:399.000000 +I (149704) example: expect speed: 0.000000 real_pulses:0 +I (149704) example: new speed:399.000000 +I (149714) example: expect speed: 0.000000 real_pulses:0 +I (149714) example: new speed:399.000000 +I (149724) example: expect speed: 0.000000 real_pulses:0 +I (149724) example: new speed:399.000000 +I (149734) example: expect speed: 0.000000 real_pulses:0 +I (149734) example: new speed:399.000000 +I (149744) example: expect speed: 0.000000 real_pulses:0 +I (149744) example: new speed:399.000000 +I (149754) example: expect speed: 0.000000 real_pulses:0 +I (149754) example: new speed:399.000000 +I (149764) example: expect speed: 0.000000 real_pulses:0 +I (149764) example: new speed:399.000000 +I (149774) example: expect speed: 0.000000 real_pulses:0 +I (149774) example: new speed:399.000000 +I (149784) example: expect speed: 0.000000 real_pulses:0 +I (149784) example: new speed:399.000000 +I (149794) example: expect speed: 0.000000 real_pulses:0 +I (149794) example: new speed:399.000000 +I (149804) example: expect speed: 0.000000 real_pulses:0 +I (149804) example: new speed:399.000000 +I (149814) example: expect speed: 0.000000 real_pulses:0 +I (149814) example: new speed:399.000000 +I (149824) example: expect speed: 0.000000 real_pulses:0 +I (149824) example: new speed:399.000000 +I (149834) example: expect speed: 0.000000 real_pulses:0 +I (149834) example: new speed:399.000000 +I (149844) example: expect speed: 0.000000 real_pulses:0 +I (149844) example: new speed:399.000000 +I (149854) example: expect speed: 0.000000 real_pulses:0 +I (149864) example: new speed:399.000000 +I (149864) example: expect speed: 0.000000 real_pulses:0 +I (149874) modbus tcp: ModBusSlave_recv() +I (149874) example: new speed:399.000000 +I (149874) modbus: ModbusSlaveProcess() +I (149874) modbus: check id... +I (149874) modbus: ok +I (149874) modbus: add: 0, length: 10 +I (149874) modbus: Read Holding Registers +I (149874) example: expect speed: 0.000000 real_pulses:0 +I (149884) example: new speed:399.000000 +I (149884) example: expect speed: 0.000000 real_pulses:0 +I (149884) example: new speed:399.000000 +I (149894) example: expect speed: 0.000000 real_pulses:0 +I (149894) example: new speed:399.000000 +I (149904) example: expect speed: 0.000000 real_pulses:0 +I (149904) example: new speed:399.000000 +I (149914) example: expect speed: 0.000000 real_pulses:0 +I (149914) example: new speed:399.000000 +I (149924) example: expect speed: 0.000000 real_pulses:0 +I (149924) example: new speed:399.000000 +I (149934) example: expect speed: 0.000000 real_pulses:0 +I (149934) example: new speed:399.000000 +I (149944) example: expect speed: 0.000000 real_pulses:0 +I (149944) example: new speed:399.000000 +I (149954) example: expect speed: 0.000000 real_pulses:0 +I (149954) example: new speed:399.000000 +I (149964) example: expect speed: 0.000000 real_pulses:0 +I (149964) example: new speed:399.000000 +I (149974) example: expect speed: 0.000000 real_pulses:0 +I (149974) example: new speed:399.000000 +I (149984) example: expect speed: 0.000000 real_pulses:0 +I (149984) example: new speed:399.000000 +I (149994) example: expect speed: 0.000000 real_pulses:0 +I (149994) example: new speed:399.000000 +I (150004) example: expect speed: 0.000000 real_pulses:0 +I (150004) example: new speed:399.000000 +I (150014) example: expect speed: 0.000000 real_pulses:0 +I (150014) example: new speed:399.000000 +I (150024) example: expect speed: 0.000000 real_pulses:0 +I (150024) example: new speed:399.000000 +I (150034) example: expect speed: 0.000000 real_pulses:0 +I (150034) example: new speed:399.000000 +I (150044) example: expect speed: 0.000000 real_pulses:0 +I (150044) example: new speed:399.000000 +I (150054) example: expect speed: 0.000000 real_pulses:0 +I (150054) example: new speed:399.000000 +I (150064) example: expect speed: 0.000000 real_pulses:0 +I (150064) example: new speed:399.000000 +I (150074) example: expect speed: 0.000000 real_pulses:0 +I (150074) example: new speed:399.000000 +I (150084) example: expect speed: 0.000000 real_pulses:0 +I (150084) example: new speed:399.000000 +I (150094) example: expect speed: 0.000000 real_pulses:0 +I (150094) example: new speed:399.000000 +I (150104) example: expect speed: 0.000000 real_pulses:0 +I (150104) example: new speed:399.000000 +I (150114) example: expect speed: 0.000000 real_pulses:0 +I (150114) example: new speed:399.000000 +I (150124) example: expect speed: 0.000000 real_pulses:0 +I (150124) example: new speed:399.000000 +I (150134) example: expect speed: 0.000000 real_pulses:0 +I (150134) example: new speed:399.000000 +I (150144) example: expect speed: 0.000000 real_pulses:0 +I (150144) example: new speed:399.000000 +I (150154) example: expect speed: 0.000000 real_pulses:0 +I (150154) example: new speed:399.000000 +I (150164) example: expect speed: 0.000000 real_pulses:0 +I (150164) example: new speed:399.000000 +I (150174) example: expect speed: 0.000000 real_pulses:0 +I (150174) example: new speed:399.000000 +I (150184) example: expect speed: 0.000000 real_pulses:0 +I (150184) example: new speed:399.000000 +I (150194) example: expect speed: 0.000000 real_pulses:0 +I (150194) example: new speed:399.000000 +I (150204) example: expect speed: 0.000000 real_pulses:0 +I (150204) example: new speed:399.000000 +I (150214) example: expect speed: 0.000000 real_pulses:0 +I (150214) example: new speed:399.000000 +I (150224) example: expect speed: 0.000000 real_pulses:0 +I (150224) example: new speed:399.000000 +I (150234) example: expect speed: 0.000000 real_pulses:0 +I (150234) example: new speed:399.000000 +I (150244) example: expect speed: 0.000000 real_pulses:0 +I (150244) example: new speed:399.000000 +I (150254) example: expect speed: 0.000000 real_pulses:0 +I (150254) example: new speed:399.000000 +I (150264) example: expect speed: 0.000000 real_pulses:0 +I (150264) example: new speed:399.000000 +I (150274) example: expect speed: 0.000000 real_pulses:0 +I (150274) example: new speed:399.000000 +I (150284) example: expect speed: 0.000000 real_pulses:0 +I (150284) example: new speed:399.000000 +I (150294) example: expect speed: 0.000000 real_pulses:0 +I (150294) example: new speed:399.000000 +I (150304) example: expect speed: 0.000000 real_pulses:0 +I (150304) example: new speed:399.000000 +I (150314) example: expect speed: 0.000000 real_pulses:0 +I (150314) example: new speed:399.000000 +I (150324) example: expect speed: 0.000000 real_pulses:0 +I (150324) example: new speed:399.000000 +I (150334) example: expect speed: 0.000000 real_pulses:0 +I (150334) example: new speed:399.000000 +I (150344) example: expect speed: 0.000000 real_pulses:0 +I (150344) example: new speed:399.000000 +I (150354) example: expect speed: 0.000000 real_pulses:0 +I (150354) example: new speed:399.000000 +I (150364) example: expect speed: 0.000000 real_pulses:0 +I (150364) example: new speed:399.000000 +I (150374) example: expect speed: 0.000000 real_pulses:0 +I (150374) example: new speed:399.000000 +I (150384) example: expect speed: 0.000000 real_pulses:0 +I (150384) example: new speed:399.000000 +I (150394) example: expect speed: 0.000000 real_pulses:0 +I (150394) example: new speed:399.000000 +I (150404) example: expect speed: 0.000000 real_pulses:0 +I (150404) example: new speed:399.000000 +I (150414) example: expect speed: 0.000000 real_pulses:0 +I (150414) example: new speed:399.000000 +I (150424) example: expect speed: 0.000000 real_pulses:0 +I (150424) example: new speed:399.000000 +I (150434) example: expect speed: 0.000000 real_pulses:0 +I (150434) example: new speed:399.000000 +I (150444) example: expect speed: 0.000000 real_pulses:0 +I (150444) example: new speed:399.000000 +I (150454) example: expect speed: 0.000000 real_pulses:0 +I (150454) example: new speed:399.000000 +I (150464) example: expect speed: 0.000000 real_pulses:0 +I (150464) example: new speed:399.000000 +I (150474) example: expect speed: 0.000000 real_pulses:0 +I (150474) example: new speed:399.000000 +I (150484) example: expect speed: 0.000000 real_pulses:0 +I (150484) example: new speed:399.000000 +I (150494) example: expect speed: 0.000000 real_pulses:0 +I (150494) example: new speed:399.000000 +I (150504) example: expect speed: 0.000000 real_pulses:0 +I (150504) example: new speed:399.000000 +I (150514) example: expect speed: 0.000000 real_pulses:0 +I (150514) example: new speed:399.000000 +I (150524) example: expect speed: 0.000000 real_pulses:0 +I (150524) example: new speed:399.000000 +I (150534) example: expect speed: 0.000000 real_pulses:0 +I (150534) example: new speed:399.000000 +I (150544) example: expect speed: 0.000000 real_pulses:0 +I (150544) example: new speed:399.000000 +I (150554) example: expect speed: 0.000000 real_pulses:0 +I (150554) example: new speed:399.000000 +I (150564) example: expect speed: 0.000000 real_pulses:0 +I (150564) example: new speed:399.000000 +I (150574) example: expect speed: 0.000000 real_pulses:0 +I (150574) example: new speed:399.000000 +I (150584) example: expect speed: 0.000000 real_pulses:0 +I (150584) example: new speed:399.000000 +I (150594) example: expect speed: 0.000000 real_pulses:0 +I (150594) example: new speed:399.000000 +I (150604) example: expect speed: 0.000000 real_pulses:0 +I (150604) example: new speed:399.000000 +I (150614) example: expect speed: 0.000000 real_pulses:0 +I (150614) example: new speed:399.000000 +I (150624) example: expect speed: 0.000000 real_pulses:0 +I (150624) example: new speed:399.000000 +I (150634) example: expect speed: 0.000000 real_pulses:0 +I (150634) example: new speed:399.000000 +I (150644) example: expect speed: 0.000000 real_pulses:0 +I (150644) example: new speed:399.000000 +I (150654) example: expect speed: 0.000000 real_pulses:0 +I (150654) example: new speed:399.000000 +I (150664) example: expect speed: 0.000000 real_pulses:0 +I (150664) example: new speed:399.000000 +I (150674) example: expect speed: 0.000000 real_pulses:0 +I (150674) example: new speed:399.000000 +I (150684) example: expect speed: 0.000000 real_pulses:0 +I (150684) example: new speed:399.000000 +I (150694) example: expect speed: 0.000000 real_pulses:0 +I (150694) example: new speed:399.000000 +I (150704) example: expect speed: 0.000000 real_pulses:0 +I (150704) example: new speed:399.000000 +I (150714) example: expect speed: 0.000000 real_pulses:0 +I (150714) example: new speed:399.000000 +I (150724) example: expect speed: 0.000000 real_pulses:0 +I (150724) example: new speed:399.000000 +I (150734) example: expect speed: 0.000000 real_pulses:0 +I (150734) example: new speed:399.000000 +I (150744) example: expect speed: 0.000000 real_pulses:0 +I (150744) example: new speed:399.000000 +I (150754) example: expect speed: 0.000000 real_pulses:0 +I (150754) example: new speed:399.000000 +I (150764) example: expect speed: 0.000000 real_pulses:0 +I (150764) example: new speed:399.000000 +I (150774) example: expect speed: 0.000000 real_pulses:0 +I (150774) example: new speed:399.000000 +I (150784) example: expect speed: 0.000000 real_pulses:0 +I (150784) example: new speed:399.000000 +I (150794) example: expect speed: 0.000000 real_pulses:0 +I (150794) example: new speed:399.000000 +I (150804) example: expect speed: 0.000000 real_pulses:0 +I (150804) example: new speed:399.000000 +I (150814) example: expect speed: 0.000000 real_pulses:0 +I (150814) example: new speed:399.000000 +I (150824) example: expect speed: 0.000000 real_pulses:0 +I (150824) example: new speed:399.000000 +I (150834) example: expect speed: 0.000000 real_pulses:0 +I (150834) example: new speed:399.000000 +I (150844) example: expect speed: 0.000000 real_pulses:0 +I (150844) example: new speed:399.000000 +I (150854) example: expect speed: 0.000000 real_pulses:0 +I (150854) example: new speed:399.000000 +I (150864) example: expect speed: 0.000000 real_pulses:0 +I (150864) example: new speed:399.000000 +I (150874) example: expect speed: 0.000000 real_pulses:0 +I (150874) example: new speed:399.000000 +I (150884) example: expect speed: 0.000000 real_pulses:0 +I (150884) modbus tcp: ModBusSlave_recv() +I (150894) example: new speed:399.000000 +I (150894) modbus: ModbusSlaveProcess() +I (150894) modbus: check id... +I (150894) modbus: ok +I (150894) modbus: add: 0, length: 10 +I (150894) modbus: Read Holding Registers +I (150894) example: expect speed: 0.000000 real_pulses:0 +I (150904) example: new speed:399.000000 +I (150904) example: expect speed: 0.000000 real_pulses:0 +I (150904) example: new speed:399.000000 +I (150914) example: expect speed: 0.000000 real_pulses:0 +I (150914) example: new speed:399.000000 +I (150924) example: expect speed: 0.000000 real_pulses:0 +I (150924) example: new speed:399.000000 +I (150934) example: expect speed: 0.000000 real_pulses:0 +I (150934) example: new speed:399.000000 +I (150944) example: expect speed: 0.000000 real_pulses:0 +I (150954) example: new speed:399.000000 +I (150954) example: expect speed: 0.000000 real_pulses:0 +I (150954) example: new speed:399.000000 +I (150964) example: expect speed: 0.000000 real_pulses:0 +I (150964) example: new speed:399.000000 +I (150974) example: expect speed: 0.000000 real_pulses:0 +I (150984) example: new speed:399.000000 +I (150984) example: expect speed: 0.000000 real_pulses:0 +I (150984) example: new speed:399.000000 +I (150994) example: expect speed: 0.000000 real_pulses:0 +I (150994) example: new speed:399.000000 +I (151004) example: expect speed: 0.000000 real_pulses:0 +I (151004) example: new speed:399.000000 +I (151014) example: expect speed: 0.000000 real_pulses:0 +I (151014) example: new speed:399.000000 +I (151024) example: expect speed: 0.000000 real_pulses:0 +I (151024) example: new speed:399.000000 +I (151034) example: expect speed: 0.000000 real_pulses:0 +I (151044) example: new speed:399.000000 +I (151044) example: expect speed: 0.000000 real_pulses:0 +I (151044) example: new speed:399.000000 +I (151054) example: expect speed: 0.000000 real_pulses:0 +I (151054) example: new speed:399.000000 +I (151064) example: expect speed: 0.000000 real_pulses:0 +I (151064) example: new speed:399.000000 +I (151074) example: expect speed: 0.000000 real_pulses:0 +I (151074) example: new speed:399.000000 +I (151084) example: expect speed: 0.000000 real_pulses:0 +I (151084) example: new speed:399.000000 +I (151094) example: expect speed: 0.000000 real_pulses:0 +I (151094) example: new speed:399.000000 +I (151104) example: expect speed: 0.000000 real_pulses:0 +I (151104) example: new speed:399.000000 +I (151114) example: expect speed: 0.000000 real_pulses:0 +I (151114) example: new speed:399.000000 +I (151124) example: expect speed: 0.000000 real_pulses:0 +I (151124) example: new speed:399.000000 +I (151134) example: expect speed: 0.000000 real_pulses:0 +I (151134) example: new speed:399.000000 +I (151144) example: expect speed: 0.000000 real_pulses:0 +I (151144) example: new speed:399.000000 +I (151154) example: expect speed: 0.000000 real_pulses:0 +I (151154) example: new speed:399.000000 +I (151164) example: expect speed: 0.000000 real_pulses:0 +I (151164) example: new speed:399.000000 +I (151174) example: expect speed: 0.000000 real_pulses:0 +I (151174) example: new speed:399.000000 +I (151184) example: expect speed: 0.000000 real_pulses:0 +I (151184) example: new speed:399.000000 +I (151194) example: expect speed: 0.000000 real_pulses:0 +I (151194) example: new speed:399.000000 +I (151204) example: expect speed: 0.000000 real_pulses:0 +I (151204) example: new speed:399.000000 +I (151214) example: expect speed: 0.000000 real_pulses:0 +I (151214) example: new speed:399.000000 +I (151224) example: expect speed: 0.000000 real_pulses:0 +I (151224) example: new speed:399.000000 +I (151234) example: expect speed: 0.000000 real_pulses:0 +I (151234) example: new speed:399.000000 +I (151244) example: expect speed: 0.000000 real_pulses:0 +I (151244) example: new speed:399.000000 +I (151254) example: expect speed: 0.000000 real_pulses:0 +I (151254) example: new speed:399.000000 +I (151264) example: expect speed: 0.000000 real_pulses:0 +I (151264) example: new speed:399.000000 +I (151274) example: expect speed: 0.000000 real_pulses:0 +I (151274) example: new speed:399.000000 +I (151284) example: expect speed: 0.000000 real_pulses:0 +I (151284) example: new speed:399.000000 +I (151294) example: expect speed: 0.000000 real_pulses:0 +I (151294) example: new speed:399.000000 +I (151304) example: expect speed: 0.000000 real_pulses:0 +I (151304) example: new speed:399.000000 +I (151314) example: expect speed: 0.000000 real_pulses:0 +I (151314) example: new speed:399.000000 +I (151324) example: expect speed: 0.000000 real_pulses:0 +I (151324) example: new speed:399.000000 +I (151334) example: expect speed: 0.000000 real_pulses:0 +I (151334) example: new speed:399.000000 +I (151344) example: expect speed: 0.000000 real_pulses:0 +I (151344) example: new speed:399.000000 +I (151354) example: expect speed: 0.000000 real_pulses:0 +I (151354) example: new speed:399.000000 +I (151364) example: expect speed: 0.000000 real_pulses:0 +I (151364) example: new speed:399.000000 +I (151374) example: expect speed: 0.000000 real_pulses:0 +I (151374) example: new speed:399.000000 +I (151384) example: expect speed: 0.000000 real_pulses:0 +I (151384) example: new speed:399.000000 +I (151394) example: expect speed: 0.000000 real_pulses:0 +I (151394) example: new speed:399.000000 +I (151404) example: expect speed: 0.000000 real_pulses:0 +I (151404) example: new speed:399.000000 +I (151414) example: expect speed: 0.000000 real_pulses:0 +I (151414) example: new speed:399.000000 +I (151424) example: expect speed: 0.000000 real_pulses:0 +I (151424) example: new speed:399.000000 +I (151434) example: expect speed: 0.000000 real_pulses:0 +I (151434) example: new speed:399.000000 +I (151444) example: expect speed: 0.000000 real_pulses:0 +I (151444) example: new speed:399.000000 +I (151454) example: expect speed: 0.000000 real_pulses:0 +I (151454) example: new speed:399.000000 +I (151464) example: expect speed: 0.000000 real_pulses:0 +I (151464) example: new speed:399.000000 +I (151474) example: expect speed: 0.000000 real_pulses:0 +I (151474) example: new speed:399.000000 +I (151484) example: expect speed: 0.000000 real_pulses:0 +I (151484) example: new speed:399.000000 +I (151494) example: expect speed: 0.000000 real_pulses:0 +I (151494) example: new speed:399.000000 +I (151504) example: expect speed: 0.000000 real_pulses:0 +I (151504) example: new speed:399.000000 +I (151514) example: expect speed: 0.000000 real_pulses:0 +I (151514) example: new speed:399.000000 +I (151524) example: expect speed: 0.000000 real_pulses:0 +I (151524) example: new speed:399.000000 +I (151534) example: expect speed: 0.000000 real_pulses:0 +I (151534) example: new speed:399.000000 +I (151544) example: expect speed: 0.000000 real_pulses:0 +I (151544) example: new speed:399.000000 +I (151554) example: expect speed: 0.000000 real_pulses:0 +I (151554) example: new speed:399.000000 +I (151564) example: expect speed: 0.000000 real_pulses:0 +I (151564) example: new speed:399.000000 +I (151574) example: expect speed: 0.000000 real_pulses:0 +I (151574) example: new speed:399.000000 +I (151584) example: expect speed: 0.000000 real_pulses:0 +I (151584) example: new speed:399.000000 +I (151594) example: expect speed: 0.000000 real_pulses:0 +I (151594) example: new speed:399.000000 +I (151604) example: expect speed: 0.000000 real_pulses:0 +I (151604) example: new speed:399.000000 +I (151614) example: expect speed: 0.000000 real_pulses:0 +I (151614) example: new speed:399.000000 +I (151624) example: expect speed: 0.000000 real_pulses:0 +I (151624) example: new speed:399.000000 +I (151634) example: expect speed: 0.000000 real_pulses:0 +I (151634) example: new speed:399.000000 +I (151644) example: expect speed: 0.000000 real_pulses:0 +I (151644) example: new speed:399.000000 +I (151654) example: expect speed: 0.000000 real_pulses:0 +I (151654) example: new speed:399.000000 +I (151664) example: expect speed: 0.000000 real_pulses:0 +I (151664) example: new speed:399.000000 +I (151674) example: expect speed: 0.000000 real_pulses:0 +I (151674) example: new speed:399.000000 +I (151684) example: expect speed: 0.000000 real_pulses:0 +I (151684) example: new speed:399.000000 +I (151694) example: expect speed: 0.000000 real_pulses:0 +I (151694) example: new speed:399.000000 +I (151704) example: expect speed: 0.000000 real_pulses:0 +I (151704) example: new speed:399.000000 +I (151714) example: expect speed: 0.000000 real_pulses:0 +I (151714) example: new speed:399.000000 +I (151724) example: expect speed: 0.000000 real_pulses:0 +I (151724) example: new speed:399.000000 +I (151734) example: expect speed: 0.000000 real_pulses:0 +I (151734) example: new speed:399.000000 +I (151744) example: expect speed: 0.000000 real_pulses:0 +I (151744) example: new speed:399.000000 +I (151754) example: expect speed: 0.000000 real_pulses:0 +I (151754) example: new speed:399.000000 +I (151764) example: expect speed: 0.000000 real_pulses:0 +I (151764) example: new speed:399.000000 +I (151774) example: expect speed: 0.000000 real_pulses:0 +I (151774) example: new speed:399.000000 +I (151784) example: expect speed: 0.000000 real_pulses:0 +I (151784) example: new speed:399.000000 +I (151794) example: expect speed: 0.000000 real_pulses:0 +I (151794) example: new speed:399.000000 +I (151804) example: expect speed: 0.000000 real_pulses:0 +I (151814) example: new speed:399.000000 +I (151814) example: expect speed: 0.000000 real_pulses:0 +I (151814) example: new speed:399.000000 +I (151824) example: expect speed: 0.000000 real_pulses:0 +I (151824) example: new speed:399.000000 +I (151834) example: expect speed: 0.000000 real_pulses:0 +I (151834) example: new speed:399.000000 +I (151844) example: expect speed: 0.000000 real_pulses:0 +I (151844) example: new speed:399.000000 +I (151854) example: expect speed: 0.000000 real_pulses:0 +I (151854) example: new speed:399.000000 +I (151864) example: expect speed: 0.000000 real_pulses:0 +I (151864) example: new speed:399.000000 +I (151874) example: expect speed: 0.000000 real_pulses:0 +I (151874) example: new speed:399.000000 +I (151884) example: expect speed: 0.000000 real_pulses:0 +I (151884) example: new speed:399.000000 +I (151894) example: expect speed: 0.000000 real_pulses:0 +I (151894) example: new speed:399.000000 +I (151904) example: expect speed: 0.000000 real_pulses:0 +I (151914) example: new speed:399.000000 +I (151914) modbus tcp: ModBusSlave_recv() +I (151914) modbus: ModbusSlaveProcess() +I (151914) modbus: check id... +I (151914) modbus: ok +I (151914) modbus: add: 0, length: 10 +I (151914) modbus: Read Holding Registers +I (151914) example: expect speed: 0.000000 real_pulses:0 +I (151924) example: new speed:399.000000 +I (151924) example: expect speed: 0.000000 real_pulses:0 +I (151924) example: new speed:399.000000 +I (151934) example: expect speed: 0.000000 real_pulses:0 +I (151934) example: new speed:399.000000 +I (151944) example: expect speed: 0.000000 real_pulses:0 +I (151944) example: new speed:399.000000 +I (151954) example: expect speed: 0.000000 real_pulses:0 +I (151954) example: new speed:399.000000 +I (151964) example: expect speed: 0.000000 real_pulses:0 +I (151974) example: new speed:399.000000 +I (151974) example: expect speed: 0.000000 real_pulses:0 +I (151974) example: new speed:399.000000 +I (151984) example: expect speed: 0.000000 real_pulses:0 +I (151984) example: new speed:399.000000 +I (151994) example: expect speed: 0.000000 real_pulses:0 +I (151994) example: new speed:399.000000 +I (152004) example: expect speed: 0.000000 real_pulses:0 +I (152004) example: new speed:399.000000 +I (152014) example: expect speed: 0.000000 real_pulses:0 +I (152024) example: new speed:399.000000 +I (152024) example: expect speed: 0.000000 real_pulses:0 +I (152024) example: new speed:399.000000 +I (152034) example: expect speed: 0.000000 real_pulses:0 +I (152034) example: new speed:399.000000 +I (152044) example: expect speed: 0.000000 real_pulses:0 +I (152044) example: new speed:399.000000 +I (152054) example: expect speed: 0.000000 real_pulses:0 +I (152054) example: new speed:399.000000 +I (152064) example: expect speed: 0.000000 real_pulses:0 +I (152064) example: new speed:399.000000 +I (152074) example: expect speed: 0.000000 real_pulses:0 +I (152074) example: new speed:399.000000 +I (152084) example: expect speed: 0.000000 real_pulses:0 +I (152084) example: new speed:399.000000 +I (152094) example: expect speed: 0.000000 real_pulses:0 +I (152094) example: new speed:399.000000 +I (152104) example: expect speed: 0.000000 real_pulses:0 +I (152104) example: new speed:399.000000 +I (152114) example: expect speed: 0.000000 real_pulses:0 +I (152114) example: new speed:399.000000 +I (152124) example: expect speed: 0.000000 real_pulses:0 +I (152124) example: new speed:399.000000 +I (152134) example: expect speed: 0.000000 real_pulses:0 +I (152134) example: new speed:399.000000 +I (152144) example: expect speed: 0.000000 real_pulses:0 +I (152144) example: new speed:399.000000 +I (152154) example: expect speed: 0.000000 real_pulses:0 +I (152154) example: new speed:399.000000 +I (152164) example: expect speed: 0.000000 real_pulses:0 +I (152164) example: new speed:399.000000 +I (152174) example: expect speed: 0.000000 real_pulses:0 +I (152174) example: new speed:399.000000 +I (152184) example: expect speed: 0.000000 real_pulses:0 +I (152184) example: new speed:399.000000 +I (152194) example: expect speed: 0.000000 real_pulses:0 +I (152194) example: new speed:399.000000 +I (152204) example: expect speed: 0.000000 real_pulses:0 +I (152204) example: new speed:399.000000 +I (152214) example: expect speed: 0.000000 real_pulses:0 +I (152214) example: new speed:399.000000 +I (152224) example: expect speed: 0.000000 real_pulses:0 +I (152224) example: new speed:399.000000 +I (152234) example: expect speed: 0.000000 real_pulses:0 +I (152234) example: new speed:399.000000 +I (152244) example: expect speed: 0.000000 real_pulses:0 +I (152244) example: new speed:399.000000 +I (152254) example: expect speed: 0.000000 real_pulses:0 +I (152254) example: new speed:399.000000 +I (152264) example: expect speed: 0.000000 real_pulses:0 +I (152264) example: new speed:399.000000 +I (152274) example: expect speed: 0.000000 real_pulses:0 +I (152274) example: new speed:399.000000 +I (152284) example: expect speed: 0.000000 real_pulses:0 +I (152284) example: new speed:399.000000 +I (152294) example: expect speed: 0.000000 real_pulses:0 +I (152294) example: new speed:399.000000 +I (152304) example: expect speed: 0.000000 real_pulses:0 +I (152304) example: new speed:399.000000 +I (152314) example: expect speed: 0.000000 real_pulses:0 +I (152314) example: new speed:399.000000 +I (152324) example: expect speed: 0.000000 real_pulses:0 +I (152324) example: new speed:399.000000 +I (152334) example: expect speed: 0.000000 real_pulses:0 +I (152334) example: new speed:399.000000 +I (152344) example: expect speed: 0.000000 real_pulses:0 +I (152344) example: new speed:399.000000 +I (152354) example: expect speed: 0.000000 real_pulses:0 +I (152354) example: new speed:399.000000 +I (152364) example: expect speed: 0.000000 real_pulses:0 +I (152364) example: new speed:399.000000 +I (152374) example: expect speed: 0.000000 real_pulses:0 +I (152374) example: new speed:399.000000 +I (152384) example: expect speed: 0.000000 real_pulses:0 +I (152384) example: new speed:399.000000 +I (152394) example: expect speed: 0.000000 real_pulses:0 +I (152394) example: new speed:399.000000 +I (152404) example: expect speed: 0.000000 real_pulses:0 +I (152404) example: new speed:399.000000 +I (152414) example: expect speed: 0.000000 real_pulses:0 +I (152414) example: new speed:399.000000 +I (152424) example: expect speed: 0.000000 real_pulses:0 +I (152424) example: new speed:399.000000 +I (152434) example: expect speed: 0.000000 real_pulses:0 +I (152434) example: new speed:399.000000 +I (152444) example: expect speed: 0.000000 real_pulses:0 +I (152444) example: new speed:399.000000 +I (152454) example: expect speed: 0.000000 real_pulses:0 +I (152454) example: new speed:399.000000 +I (152464) example: expect speed: 0.000000 real_pulses:0 +I (152464) example: new speed:399.000000 +I (152474) example: expect speed: 0.000000 real_pulses:0 +I (152474) example: new speed:399.000000 +I (152484) example: expect speed: 0.000000 real_pulses:0 +I (152484) example: new speed:399.000000 +I (152494) example: expect speed: 0.000000 real_pulses:0 +I (152494) example: new speed:399.000000 +I (152504) example: expect speed: 0.000000 real_pulses:0 +I (152504) example: new speed:399.000000 +I (152514) example: expect speed: 0.000000 real_pulses:0 +I (152514) example: new speed:399.000000 +I (152524) example: expect speed: 0.000000 real_pulses:0 +I (152524) example: new speed:399.000000 +I (152534) example: expect speed: 0.000000 real_pulses:0 +I (152534) example: new speed:399.000000 +I (152544) example: expect speed: 0.000000 real_pulses:0 +I (152544) example: new speed:399.000000 +I (152554) example: expect speed: 0.000000 real_pulses:0 +I (152554) example: new speed:399.000000 +I (152564) example: expect speed: 0.000000 real_pulses:0 +I (152564) example: new speed:399.000000 +I (152574) example: expect speed: 0.000000 real_pulses:0 +I (152574) example: new speed:399.000000 +I (152584) example: expect speed: 0.000000 real_pulses:0 +I (152584) example: new speed:399.000000 +I (152594) example: expect speed: 0.000000 real_pulses:0 +I (152594) example: new speed:399.000000 +I (152604) example: expect speed: 0.000000 real_pulses:0 +I (152604) example: new speed:399.000000 +I (152614) example: expect speed: 0.000000 real_pulses:0 +I (152614) example: new speed:399.000000 +I (152624) example: expect speed: 0.000000 real_pulses:0 +I (152624) example: new speed:399.000000 +I (152634) example: expect speed: 0.000000 real_pulses:0 +I (152634) example: new speed:399.000000 +I (152644) example: expect speed: 0.000000 real_pulses:0 +I (152644) example: new speed:399.000000 +I (152654) example: expect speed: 0.000000 real_pulses:0 +I (152654) example: new speed:399.000000 +I (152664) example: expect speed: 0.000000 real_pulses:0 +I (152664) example: new speed:399.000000 +I (152674) example: expect speed: 0.000000 real_pulses:0 +I (152674) example: new speed:399.000000 +I (152684) example: expect speed: 0.000000 real_pulses:0 +I (152684) example: new speed:399.000000 +I (152694) example: expect speed: 0.000000 real_pulses:0 +I (152694) example: new speed:399.000000 +I (152704) example: expect speed: 0.000000 real_pulses:0 +I (152704) example: new speed:399.000000 +I (152714) example: expect speed: 0.000000 real_pulses:0 +I (152714) example: new speed:399.000000 +I (152724) example: expect speed: 0.000000 real_pulses:0 +I (152724) example: new speed:399.000000 +I (152734) example: expect speed: 0.000000 real_pulses:0 +I (152734) example: new speed:399.000000 +I (152744) example: expect speed: 0.000000 real_pulses:0 +I (152744) example: new speed:399.000000 +I (152754) example: expect speed: 0.000000 real_pulses:0 +I (152754) example: new speed:399.000000 +I (152764) example: expect speed: 0.000000 real_pulses:0 +I (152764) example: new speed:399.000000 +I (152774) example: expect speed: 0.000000 real_pulses:0 +I (152774) example: new speed:399.000000 +I (152784) example: expect speed: 0.000000 real_pulses:0 +I (152784) example: new speed:399.000000 +I (152794) example: expect speed: 0.000000 real_pulses:0 +I (152794) example: new speed:399.000000 +I (152804) example: expect speed: 0.000000 real_pulses:0 +I (152804) example: new speed:399.000000 +I (152814) example: expect speed: 0.000000 real_pulses:0 +I (152814) example: new speed:399.000000 +I (152824) example: expect speed: 0.000000 real_pulses:0 +I (152834) example: new speed:399.000000 +I (152834) modbus tcp: ModBusSlave_recv() +I (152834) modbus: ModbusSlaveProcess() +I (152834) modbus: check id... +I (152834) modbus: ok +I (152834) modbus: add: 0, length: 10 +I (152834) modbus: Read Holding Registers +I (152834) example: expect speed: 0.000000 real_pulses:0 +I (152844) example: new speed:399.000000 +I (152844) example: expect speed: 0.000000 real_pulses:0 +I (152844) example: new speed:399.000000 +I (152854) example: expect speed: 0.000000 real_pulses:0 +I (152854) example: new speed:399.000000 +I (152864) example: expect speed: 0.000000 real_pulses:0 +I (152864) example: new speed:399.000000 +I (152874) example: expect speed: 0.000000 real_pulses:0 +I (152874) example: new speed:399.000000 +I (152884) example: expect speed: 0.000000 real_pulses:0 +I (152884) example: new speed:399.000000 +I (152894) example: expect speed: 0.000000 real_pulses:0 +I (152904) example: new speed:399.000000 +I (152904) example: expect speed: 0.000000 real_pulses:0 +I (152904) example: new speed:399.000000 +I (152914) example: expect speed: 0.000000 real_pulses:0 +I (152914) example: new speed:399.000000 +I (152924) example: expect speed: 0.000000 real_pulses:0 +I (152934) example: new speed:399.000000 +I (152934) example: expect speed: 0.000000 real_pulses:0 +I (152934) example: new speed:399.000000 +I (152944) example: expect speed: 0.000000 real_pulses:0 +I (152944) example: new speed:399.000000 +I (152954) example: expect speed: 0.000000 real_pulses:0 +I (152954) example: new speed:399.000000 +I (152964) example: expect speed: 0.000000 real_pulses:0 +I (152964) example: new speed:399.000000 +I (152974) example: expect speed: 0.000000 real_pulses:0 +I (152974) example: new speed:399.000000 +I (152984) example: expect speed: 0.000000 real_pulses:0 +I (152984) example: new speed:399.000000 +I (152994) example: expect speed: 0.000000 real_pulses:0 +I (153004) example: new speed:399.000000 +I (153004) example: expect speed: 0.000000 real_pulses:0 +I (153004) example: new speed:399.000000 +I (153014) example: expect speed: 0.000000 real_pulses:0 +I (153014) example: new speed:399.000000 +I (153024) example: expect speed: 0.000000 real_pulses:0 +I (153024) example: new speed:399.000000 +I (153034) example: expect speed: 0.000000 real_pulses:0 +I (153034) example: new speed:399.000000 +I (153044) example: expect speed: 0.000000 real_pulses:0 +I (153044) example: new speed:399.000000 +I (153054) example: expect speed: 0.000000 real_pulses:0 +I (153054) example: new speed:399.000000 +I (153064) example: expect speed: 0.000000 real_pulses:0 +I (153064) example: new speed:399.000000 +I (153074) example: expect speed: 0.000000 real_pulses:0 +I (153074) example: new speed:399.000000 +I (153084) example: expect speed: 0.000000 real_pulses:0 +I (153084) example: new speed:399.000000 +I (153094) example: expect speed: 0.000000 real_pulses:0 +I (153094) example: new speed:399.000000 +I (153104) example: expect speed: 0.000000 real_pulses:0 +I (153104) example: new speed:399.000000 +I (153114) example: expect speed: 0.000000 real_pulses:0 +I (153114) example: new speed:399.000000 +I (153124) example: expect speed: 0.000000 real_pulses:0 +I (153124) example: new speed:399.000000 +I (153134) example: expect speed: 0.000000 real_pulses:0 +I (153134) example: new speed:399.000000 +I (153144) example: expect speed: 0.000000 real_pulses:0 +I (153144) example: new speed:399.000000 +I (153154) example: expect speed: 0.000000 real_pulses:0 +I (153154) example: new speed:399.000000 +I (153164) example: expect speed: 0.000000 real_pulses:0 +I (153164) example: new speed:399.000000 +I (153174) example: expect speed: 0.000000 real_pulses:0 +I (153174) example: new speed:399.000000 +I (153184) example: expect speed: 0.000000 real_pulses:0 +I (153184) example: new speed:399.000000 +I (153194) example: expect speed: 0.000000 real_pulses:0 +I (153194) example: new speed:399.000000 +I (153204) example: expect speed: 0.000000 real_pulses:0 +I (153204) example: new speed:399.000000 +I (153214) example: expect speed: 0.000000 real_pulses:0 +I (153214) example: new speed:399.000000 +I (153224) example: expect speed: 0.000000 real_pulses:0 +I (153224) example: new speed:399.000000 +I (153234) example: expect speed: 0.000000 real_pulses:0 +I (153234) example: new speed:399.000000 +I (153244) example: expect speed: 0.000000 real_pulses:0 +I (153244) example: new speed:399.000000 +I (153254) example: expect speed: 0.000000 real_pulses:0 +I (153254) example: new speed:399.000000 +I (153264) example: expect speed: 0.000000 real_pulses:0 +I (153264) example: new speed:399.000000 +I (153274) example: expect speed: 0.000000 real_pulses:0 +I (153274) example: new speed:399.000000 +I (153284) example: expect speed: 0.000000 real_pulses:0 +I (153284) example: new speed:399.000000 +I (153294) example: expect speed: 0.000000 real_pulses:0 +I (153294) example: new speed:399.000000 +I (153304) example: expect speed: 0.000000 real_pulses:0 +I (153304) example: new speed:399.000000 +I (153314) example: expect speed: 0.000000 real_pulses:0 +I (153314) example: new speed:399.000000 +I (153324) example: expect speed: 0.000000 real_pulses:0 +I (153324) example: new speed:399.000000 +I (153334) example: expect speed: 0.000000 real_pulses:0 +I (153334) example: new speed:399.000000 +I (153344) example: expect speed: 0.000000 real_pulses:0 +I (153344) example: new speed:399.000000 +I (153354) example: expect speed: 0.000000 real_pulses:0 +I (153354) example: new speed:399.000000 +I (153364) example: expect speed: 0.000000 real_pulses:0 +I (153364) example: new speed:399.000000 +I (153374) example: expect speed: 0.000000 real_pulses:0 +I (153374) example: new speed:399.000000 +I (153384) example: expect speed: 0.000000 real_pulses:0 +I (153384) example: new speed:399.000000 +I (153394) example: expect speed: 0.000000 real_pulses:0 +I (153394) example: new speed:399.000000 +I (153404) example: expect speed: 0.000000 real_pulses:0 +I (153404) example: new speed:399.000000 +I (153414) example: expect speed: 0.000000 real_pulses:0 +I (153414) example: new speed:399.000000 +I (153424) example: expect speed: 0.000000 real_pulses:0 +I (153424) example: new speed:399.000000 +I (153434) example: expect speed: 0.000000 real_pulses:0 +I (153434) example: new speed:399.000000 +I (153444) example: expect speed: 0.000000 real_pulses:0 +I (153444) example: new speed:399.000000 +I (153454) example: expect speed: 0.000000 real_pulses:0 +I (153454) example: new speed:399.000000 +I (153464) example: expect speed: 0.000000 real_pulses:0 +I (153464) example: new speed:399.000000 +I (153474) example: expect speed: 0.000000 real_pulses:0 +I (153474) example: new speed:399.000000 +I (153484) example: expect speed: 0.000000 real_pulses:0 +I (153484) example: new speed:399.000000 +I (153494) example: expect speed: 0.000000 real_pulses:0 +I (153494) example: new speed:399.000000 +I (153504) example: expect speed: 0.000000 real_pulses:0 +I (153504) example: new speed:399.000000 +I (153514) example: expect speed: 0.000000 real_pulses:0 +I (153514) example: new speed:399.000000 +I (153524) example: expect speed: 0.000000 real_pulses:0 +I (153524) example: new speed:399.000000 +I (153534) example: expect speed: 0.000000 real_pulses:0 +I (153534) example: new speed:399.000000 +I (153544) example: expect speed: 0.000000 real_pulses:0 +I (153554) example: new speed:399.000000 +I (153554) example: expect speed: 0.000000 real_pulses:0 +I (153554) example: new speed:399.000000 +I (153564) example: expect speed: 0.000000 real_pulses:0 +I (153564) example: new speed:399.000000 +I (153574) example: expect speed: 0.000000 real_pulses:0 +I (153574) example: new speed:399.000000 +I (153584) example: expect speed: 0.000000 real_pulses:0 +I (153584) example: new speed:399.000000 +I (153594) example: expect speed: 0.000000 real_pulses:0 +I (153594) example: new speed:399.000000 +I (153604) example: expect speed: 0.000000 real_pulses:0 +I (153604) example: new speed:399.000000 +I (153614) example: expect speed: 0.000000 real_pulses:0 +I (153614) example: new speed:399.000000 +I (153624) example: expect speed: 0.000000 real_pulses:0 +I (153624) example: new speed:399.000000 +I (153634) example: expect speed: 0.000000 real_pulses:0 +I (153634) example: new speed:399.000000 +I (153644) example: expect speed: 0.000000 real_pulses:0 +I (153644) example: new speed:399.000000 +I (153654) example: expect speed: 0.000000 real_pulses:0 +I (153654) example: new speed:399.000000 +I (153664) example: expect speed: 0.000000 real_pulses:0 +I (153664) example: new speed:399.000000 +I (153674) example: expect speed: 0.000000 real_pulses:0 +I (153674) example: new speed:399.000000 +I (153684) example: expect speed: 0.000000 real_pulses:0 +I (153684) example: new speed:399.000000 +I (153694) example: expect speed: 0.000000 real_pulses:0 +I (153694) example: new speed:399.000000 +I (153704) example: expect speed: 0.000000 real_pulses:0 +I (153704) example: new speed:399.000000 +I (153714) example: expect speed: 0.000000 real_pulses:0 +I (153714) example: new speed:399.000000 +I (153724) example: expect speed: 0.000000 real_pulses:0 +I (153724) example: new speed:399.000000 +I (153734) example: expect speed: 0.000000 real_pulses:0 +I (153734) example: new speed:399.000000 +I (153744) example: expect speed: 0.000000 real_pulses:0 +I (153744) example: new speed:399.000000 +I (153754) example: expect speed: 0.000000 real_pulses:0 +I (153754) example: new speed:399.000000 +I (153764) example: expect speed: 0.000000 real_pulses:0 +I (153764) example: new speed:399.000000 +I (153774) example: expect speed: 0.000000 real_pulses:0 +I (153774) example: new speed:399.000000 +I (153784) example: expect speed: 0.000000 real_pulses:0 +I (153784) example: new speed:399.000000 +I (153794) example: expect speed: 0.000000 real_pulses:0 +I (153794) example: new speed:399.000000 +I (153804) example: expect speed: 0.000000 real_pulses:0 +I (153804) example: new speed:399.000000 +I (153814) example: expect speed: 0.000000 real_pulses:0 +I (153814) example: new speed:399.000000 +I (153824) example: expect speed: 0.000000 real_pulses:0 +I (153824) example: new speed:399.000000 +I (153834) example: expect speed: 0.000000 real_pulses:0 +I (153834) example: new speed:399.000000 +I (153844) example: expect speed: 0.000000 real_pulses:0 +I (153844) example: new speed:399.000000 +I (153854) modbus tcp: ModBusSlave_recv() +I (153854) example: expect speed: 0.000000 real_pulses:0 +I (153854) modbus: ModbusSlaveProcess() +I (153864) example: new speed:399.000000 +I (153864) modbus: check id... +I (153864) modbus: ok +I (153864) modbus: add: 0, length: 10 +I (153864) modbus: Read Holding Registers +I (153864) example: expect speed: 0.000000 real_pulses:0 +I (153874) example: new speed:399.000000 +I (153874) example: expect speed: 0.000000 real_pulses:0 +I (153874) example: new speed:399.000000 +I (153884) example: expect speed: 0.000000 real_pulses:0 +I (153884) example: new speed:399.000000 +I (153894) example: expect speed: 0.000000 real_pulses:0 +I (153894) example: new speed:399.000000 +I (153904) example: expect speed: 0.000000 real_pulses:0 +I (153904) example: new speed:399.000000 +I (153914) example: expect speed: 0.000000 real_pulses:0 +I (153924) example: new speed:399.000000 +I (153924) example: expect speed: 0.000000 real_pulses:0 +I (153924) example: new speed:399.000000 +I (153934) example: expect speed: 0.000000 real_pulses:0 +I (153934) example: new speed:399.000000 +I (153944) example: expect speed: 0.000000 real_pulses:0 +I (153944) example: new speed:399.000000 +I (153954) example: expect speed: 0.000000 real_pulses:0 +I (153964) example: new speed:399.000000 +I (153964) example: expect speed: 0.000000 real_pulses:0 +I (153974) example: new speed:399.000000 +I (153974) example: expect speed: 0.000000 real_pulses:0 +I (153974) example: new speed:399.000000 +I (153984) example: expect speed: 0.000000 real_pulses:0 +I (153984) example: new speed:399.000000 +I (153994) example: expect speed: 0.000000 real_pulses:0 +I (153994) example: new speed:399.000000 +I (154004) example: expect speed: 0.000000 real_pulses:0 +I (154004) example: new speed:399.000000 +I (154014) example: expect speed: 0.000000 real_pulses:0 +I (154024) example: new speed:399.000000 +I (154024) example: expect speed: 0.000000 real_pulses:0 +I (154024) example: new speed:399.000000 +I (154034) example: expect speed: 0.000000 real_pulses:0 +I (154034) example: new speed:399.000000 +I (154044) example: expect speed: 0.000000 real_pulses:0 +I (154044) example: new speed:399.000000 +I (154054) example: expect speed: 0.000000 real_pulses:0 +I (154054) example: new speed:399.000000 +I (154064) example: expect speed: 0.000000 real_pulses:0 +I (154064) example: new speed:399.000000 +I (154074) example: expect speed: 0.000000 real_pulses:0 +I (154074) example: new speed:399.000000 +I (154084) example: expect speed: 0.000000 real_pulses:0 +I (154084) example: new speed:399.000000 +I (154094) example: expect speed: 0.000000 real_pulses:0 +I (154094) example: new speed:399.000000 +I (154104) example: expect speed: 0.000000 real_pulses:0 +I (154104) example: new speed:399.000000 +I (154114) example: expect speed: 0.000000 real_pulses:0 +I (154114) example: new speed:399.000000 +I (154124) example: expect speed: 0.000000 real_pulses:0 +I (154124) example: new speed:399.000000 +I (154134) example: expect speed: 0.000000 real_pulses:0 +I (154134) example: new speed:399.000000 +I (154144) example: expect speed: 0.000000 real_pulses:0 +I (154144) example: new speed:399.000000 +I (154154) example: expect speed: 0.000000 real_pulses:0 +I (154154) example: new speed:399.000000 +I (154164) example: expect speed: 0.000000 real_pulses:0 +I (154164) example: new speed:399.000000 +I (154174) example: expect speed: 0.000000 real_pulses:0 +I (154174) example: new speed:399.000000 +I (154184) example: expect speed: 0.000000 real_pulses:0 +I (154184) example: new speed:399.000000 +I (154194) example: expect speed: 0.000000 real_pulses:0 +I (154194) example: new speed:399.000000 +I (154204) example: expect speed: 0.000000 real_pulses:0 +I (154204) example: new speed:399.000000 +I (154214) example: expect speed: 0.000000 real_pulses:0 +I (154214) example: new speed:399.000000 +I (154224) example: expect speed: 0.000000 real_pulses:0 +I (154224) example: new speed:399.000000 +I (154234) example: expect speed: 0.000000 real_pulses:0 +I (154234) example: new speed:399.000000 +I (154244) example: expect speed: 0.000000 real_pulses:0 +I (154244) example: new speed:399.000000 +I (154254) example: expect speed: 0.000000 real_pulses:0 +I (154254) example: new speed:399.000000 +I (154264) example: expect speed: 0.000000 real_pulses:0 +I (154264) example: new speed:399.000000 +I (154274) example: expect speed: 0.000000 real_pulses:0 +I (154274) example: new speed:399.000000 +I (154284) example: expect speed: 0.000000 real_pulses:0 +I (154284) example: new speed:399.000000 +I (154294) example: expect speed: 0.000000 real_pulses:0 +I (154294) example: new speed:399.000000 +I (154304) example: expect speed: 0.000000 real_pulses:0 +I (154304) example: new speed:399.000000 +I (154314) example: expect speed: 0.000000 real_pulses:0 +I (154314) example: new speed:399.000000 +I (154324) example: expect speed: 0.000000 real_pulses:0 +I (154324) example: new speed:399.000000 +I (154334) example: expect speed: 0.000000 real_pulses:0 +I (154334) example: new speed:399.000000 +I (154344) example: expect speed: 0.000000 real_pulses:0 +I (154344) example: new speed:399.000000 +I (154354) example: expect speed: 0.000000 real_pulses:0 +I (154354) example: new speed:399.000000 +I (154364) example: expect speed: 0.000000 real_pulses:0 +I (154364) example: new speed:399.000000 +I (154374) example: expect speed: 0.000000 real_pulses:0 +I (154374) example: new speed:399.000000 +I (154384) example: expect speed: 0.000000 real_pulses:0 +I (154384) example: new speed:399.000000 +I (154394) example: expect speed: 0.000000 real_pulses:0 +I (154394) example: new speed:399.000000 +I (154404) example: expect speed: 0.000000 real_pulses:0 +I (154404) example: new speed:399.000000 +I (154414) example: expect speed: 0.000000 real_pulses:0 +I (154414) example: new speed:399.000000 +I (154424) example: expect speed: 0.000000 real_pulses:0 +I (154424) example: new speed:399.000000 +I (154434) example: expect speed: 0.000000 real_pulses:0 +I (154434) example: new speed:399.000000 +I (154444) example: expect speed: 0.000000 real_pulses:0 +I (154444) example: new speed:399.000000 +I (154454) example: expect speed: 0.000000 real_pulses:0 +I (154454) example: new speed:399.000000 +I (154464) example: expect speed: 0.000000 real_pulses:0 +I (154464) example: new speed:399.000000 +I (154474) example: expect speed: 0.000000 real_pulses:0 +I (154474) example: new speed:399.000000 +I (154484) example: expect speed: 0.000000 real_pulses:0 +I (154484) example: new speed:399.000000 +I (154494) example: expect speed: 0.000000 real_pulses:0 +I (154494) example: new speed:399.000000 +I (154504) example: expect speed: 0.000000 real_pulses:0 +I (154504) example: new speed:399.000000 +I (154514) example: expect speed: 0.000000 real_pulses:0 +I (154514) example: new speed:399.000000 +I (154524) example: expect speed: 0.000000 real_pulses:0 +I (154524) example: new speed:399.000000 +I (154534) example: expect speed: 0.000000 real_pulses:0 +I (154534) example: new speed:399.000000 +I (154544) example: expect speed: 0.000000 real_pulses:0 +I (154544) example: new speed:399.000000 +I (154554) example: expect speed: 0.000000 real_pulses:0 +I (154554) example: new speed:399.000000 +I (154564) example: expect speed: 0.000000 real_pulses:0 +I (154574) example: new speed:399.000000 +I (154574) example: expect speed: 0.000000 real_pulses:0 +I (154584) example: new speed:399.000000 +I (154584) example: expect speed: 0.000000 real_pulses:0 +I (154584) example: new speed:399.000000 +I (154594) example: expect speed: 0.000000 real_pulses:0 +I (154594) example: new speed:399.000000 +I (154604) example: expect speed: 0.000000 real_pulses:0 +I (154604) example: new speed:399.000000 +I (154614) example: expect speed: 0.000000 real_pulses:0 +I (154614) example: new speed:399.000000 +I (154624) example: expect speed: 0.000000 real_pulses:0 +I (154624) example: new speed:399.000000 +I (154634) example: expect speed: 0.000000 real_pulses:0 +I (154634) example: new speed:399.000000 +I (154644) example: expect speed: 0.000000 real_pulses:0 +I (154644) example: new speed:399.000000 +I (154654) example: expect speed: 0.000000 real_pulses:0 +I (154654) example: new speed:399.000000 +I (154664) example: expect speed: 0.000000 real_pulses:0 +I (154664) example: new speed:399.000000 +I (154674) example: expect speed: 0.000000 real_pulses:0 +I (154674) example: new speed:399.000000 +I (154684) example: expect speed: 0.000000 real_pulses:0 +I (154684) example: new speed:399.000000 +I (154694) example: expect speed: 0.000000 real_pulses:0 +I (154694) example: new speed:399.000000 +I (154704) example: expect speed: 0.000000 real_pulses:0 +I (154704) example: new speed:399.000000 +I (154714) example: expect speed: 0.000000 real_pulses:0 +I (154714) example: new speed:399.000000 +I (154724) example: expect speed: 0.000000 real_pulses:0 +I (154724) example: new speed:399.000000 +I (154734) example: expect speed: 0.000000 real_pulses:0 +I (154734) example: new speed:399.000000 +I (154744) example: expect speed: 0.000000 real_pulses:0 +I (154744) example: new speed:399.000000 +I (154754) example: expect speed: 0.000000 real_pulses:0 +I (154754) example: new speed:399.000000 +I (154764) example: expect speed: 0.000000 real_pulses:0 +I (154764) example: new speed:399.000000 +I (154774) example: expect speed: 0.000000 real_pulses:0 +I (154774) example: new speed:399.000000 +I (154784) example: expect speed: 0.000000 real_pulses:0 +I (154784) example: new speed:399.000000 +I (154794) example: expect speed: 0.000000 real_pulses:0 +I (154794) example: new speed:399.000000 +I (154804) example: expect speed: 0.000000 real_pulses:0 +I (154804) example: new speed:399.000000 +I (154814) example: expect speed: 0.000000 real_pulses:0 +I (154814) example: new speed:399.000000 +I (154824) example: expect speed: 0.000000 real_pulses:0 +I (154824) example: new speed:399.000000 +I (154834) example: expect speed: 0.000000 real_pulses:0 +I (154834) example: new speed:399.000000 +I (154844) example: expect speed: 0.000000 real_pulses:0 +I (154844) example: new speed:399.000000 +I (154854) example: expect speed: 0.000000 real_pulses:0 +I (154854) example: new speed:399.000000 +I (154864) example: expect speed: 0.000000 real_pulses:0 +I (154864) example: new speed:399.000000 +I (154874) example: expect speed: 0.000000 real_pulses:0 +I (154884) example: new speed:399.000000 +I (154884) modbus tcp: ModBusSlave_recv() +I (154884) modbus: ModbusSlaveProcess() +I (154884) modbus: check id... +I (154884) modbus: ok +I (154884) modbus: add: 0, length: 10 +I (154884) modbus: Read Holding Registers +I (154884) example: expect speed: 0.000000 real_pulses:0 +I (154894) example: new speed:399.000000 +I (154894) example: expect speed: 0.000000 real_pulses:0 +I (154894) example: new speed:399.000000 +I (154904) example: expect speed: 0.000000 real_pulses:0 +I (154904) example: new speed:399.000000 +I (154914) example: expect speed: 0.000000 real_pulses:0 +I (154914) example: new speed:399.000000 +I (154924) example: expect speed: 0.000000 real_pulses:0 +I (154924) example: new speed:399.000000 +I (154934) example: expect speed: 0.000000 real_pulses:0 +I (154934) example: new speed:399.000000 +I (154944) example: expect speed: 0.000000 real_pulses:0 +I (154954) example: new speed:399.000000 +I (154954) example: expect speed: 0.000000 real_pulses:0 +I (154954) example: new speed:399.000000 +I (154964) example: expect speed: 0.000000 real_pulses:0 +I (154964) example: new speed:399.000000 +I (154974) example: expect speed: 0.000000 real_pulses:0 +I (154984) example: new speed:399.000000 +I (154984) example: expect speed: 0.000000 real_pulses:0 +I (154984) example: new speed:399.000000 +I (154994) example: expect speed: 0.000000 real_pulses:0 +I (154994) example: new speed:399.000000 +I (155004) example: expect speed: 0.000000 real_pulses:0 +I (155004) example: new speed:399.000000 +I (155014) example: expect speed: 0.000000 real_pulses:0 +I (155014) example: new speed:399.000000 +I (155024) example: expect speed: 0.000000 real_pulses:0 +I (155024) example: new speed:399.000000 +I (155034) example: expect speed: 0.000000 real_pulses:0 +I (155034) example: new speed:399.000000 +I (155044) example: expect speed: 0.000000 real_pulses:0 +I (155054) example: new speed:399.000000 +I (155054) example: expect speed: 0.000000 real_pulses:0 +I (155054) example: new speed:399.000000 +I (155064) example: expect speed: 0.000000 real_pulses:0 +I (155064) example: new speed:399.000000 +I (155074) example: expect speed: 0.000000 real_pulses:0 +I (155074) example: new speed:399.000000 +I (155084) example: expect speed: 0.000000 real_pulses:0 +I (155084) example: new speed:399.000000 +I (155094) example: expect speed: 0.000000 real_pulses:0 +I (155094) example: new speed:399.000000 +I (155104) example: expect speed: 0.000000 real_pulses:0 +I (155104) example: new speed:399.000000 +I (155114) example: expect speed: 0.000000 real_pulses:0 +I (155114) example: new speed:399.000000 +I (155124) example: expect speed: 0.000000 real_pulses:0 +I (155124) example: new speed:399.000000 +I (155134) example: expect speed: 0.000000 real_pulses:0 +I (155134) example: new speed:399.000000 +I (155144) example: expect speed: 0.000000 real_pulses:0 +I (155144) example: new speed:399.000000 +I (155154) example: expect speed: 0.000000 real_pulses:0 +I (155154) example: new speed:399.000000 +I (155164) example: expect speed: 0.000000 real_pulses:0 +I (155164) example: new speed:399.000000 +I (155174) example: expect speed: 0.000000 real_pulses:0 +I (155174) example: new speed:399.000000 +I (155184) example: expect speed: 0.000000 real_pulses:0 +I (155184) example: new speed:399.000000 +I (155194) example: expect speed: 0.000000 real_pulses:0 +I (155194) example: new speed:399.000000 +I (155204) example: expect speed: 0.000000 real_pulses:0 +I (155204) example: new speed:399.000000 +I (155214) example: expect speed: 0.000000 real_pulses:0 +I (155214) example: new speed:399.000000 +I (155224) example: expect speed: 0.000000 real_pulses:0 +I (155224) example: new speed:399.000000 +I (155234) example: expect speed: 0.000000 real_pulses:0 +I (155234) example: new speed:399.000000 +I (155244) example: expect speed: 0.000000 real_pulses:0 +I (155244) example: new speed:399.000000 +I (155254) example: expect speed: 0.000000 real_pulses:0 +I (155254) example: new speed:399.000000 +I (155264) example: expect speed: 0.000000 real_pulses:0 +I (155264) example: new speed:399.000000 +I (155274) example: expect speed: 0.000000 real_pulses:0 +I (155274) example: new speed:399.000000 +I (155284) example: expect speed: 0.000000 real_pulses:0 +I (155284) example: new speed:399.000000 +I (155294) example: expect speed: 0.000000 real_pulses:0 +I (155294) example: new speed:399.000000 +I (155304) example: expect speed: 0.000000 real_pulses:0 +I (155304) example: new speed:399.000000 +I (155314) example: expect speed: 0.000000 real_pulses:0 +I (155314) example: new speed:399.000000 +I (155324) example: expect speed: 0.000000 real_pulses:0 +I (155324) example: new speed:399.000000 +I (155334) example: expect speed: 0.000000 real_pulses:0 +I (155334) example: new speed:399.000000 +I (155344) example: expect speed: 0.000000 real_pulses:0 +I (155344) example: new speed:399.000000 +I (155354) example: expect speed: 0.000000 real_pulses:0 +I (155354) example: new speed:399.000000 +I (155364) example: expect speed: 0.000000 real_pulses:0 +I (155364) example: new speed:399.000000 +I (155374) example: expect speed: 0.000000 real_pulses:0 +I (155374) example: new speed:399.000000 +I (155384) example: expect speed: 0.000000 real_pulses:0 +I (155394) example: new speed:399.000000 +I (155394) example: expect speed: 0.000000 real_pulses:0 +I (155394) example: new speed:399.000000 +I (155404) example: expect speed: 0.000000 real_pulses:0 +I (155404) example: new speed:399.000000 +I (155414) example: expect speed: 0.000000 real_pulses:0 +I (155414) example: new speed:399.000000 +I (155424) example: expect speed: 0.000000 real_pulses:0 +I (155424) example: new speed:399.000000 +I (155434) example: expect speed: 0.000000 real_pulses:0 +I (155434) example: new speed:399.000000 +I (155444) example: expect speed: 0.000000 real_pulses:0 +I (155444) example: new speed:399.000000 +I (155454) example: expect speed: 0.000000 real_pulses:0 +I (155454) example: new speed:399.000000 +I (155464) example: expect speed: 0.000000 real_pulses:0 +I (155464) example: new speed:399.000000 +I (155474) example: expect speed: 0.000000 real_pulses:0 +I (155474) example: new speed:399.000000 +I (155484) example: expect speed: 0.000000 real_pulses:0 +I (155484) example: new speed:399.000000 +I (155494) example: expect speed: 0.000000 real_pulses:0 +I (155494) example: new speed:399.000000 +I (155504) example: expect speed: 0.000000 real_pulses:0 +I (155504) example: new speed:399.000000 +I (155514) example: expect speed: 0.000000 real_pulses:0 +I (155514) example: new speed:399.000000 +I (155524) example: expect speed: 0.000000 real_pulses:0 +I (155524) example: new speed:399.000000 +I (155534) example: expect speed: 0.000000 real_pulses:0 +I (155534) example: new speed:399.000000 +I (155544) example: expect speed: 0.000000 real_pulses:0 +I (155544) example: new speed:399.000000 +I (155554) example: expect speed: 0.000000 real_pulses:0 +I (155554) example: new speed:399.000000 +I (155564) example: expect speed: 0.000000 real_pulses:0 +I (155564) example: new speed:399.000000 +I (155574) example: expect speed: 0.000000 real_pulses:0 +I (155574) example: new speed:399.000000 +I (155584) example: expect speed: 0.000000 real_pulses:0 +I (155584) example: new speed:399.000000 +I (155594) example: expect speed: 0.000000 real_pulses:0 +I (155594) example: new speed:399.000000 +I (155604) example: expect speed: 0.000000 real_pulses:0 +I (155604) example: new speed:399.000000 +I (155614) example: expect speed: 0.000000 real_pulses:0 +I (155614) example: new speed:399.000000 +I (155624) example: expect speed: 0.000000 real_pulses:0 +I (155624) example: new speed:399.000000 +I (155634) example: expect speed: 0.000000 real_pulses:0 +I (155634) example: new speed:399.000000 +I (155644) example: expect speed: 0.000000 real_pulses:0 +I (155644) example: new speed:399.000000 +I (155654) example: expect speed: 0.000000 real_pulses:0 +I (155654) example: new speed:399.000000 +I (155664) example: expect speed: 0.000000 real_pulses:0 +I (155664) example: new speed:399.000000 +I (155674) example: expect speed: 0.000000 real_pulses:0 +I (155674) example: new speed:399.000000 +I (155684) example: expect speed: 0.000000 real_pulses:0 +I (155684) example: new speed:399.000000 +I (155694) example: expect speed: 0.000000 real_pulses:0 +I (155694) example: new speed:399.000000 +I (155704) example: expect speed: 0.000000 real_pulses:0 +I (155704) example: new speed:399.000000 +I (155714) example: expect speed: 0.000000 real_pulses:0 +I (155714) example: new speed:399.000000 +I (155724) example: expect speed: 0.000000 real_pulses:0 +I (155724) example: new speed:399.000000 +I (155734) example: expect speed: 0.000000 real_pulses:0 +I (155734) example: new speed:399.000000 +I (155744) example: expect speed: 0.000000 real_pulses:0 +I (155744) example: new speed:399.000000 +I (155754) example: expect speed: 0.000000 real_pulses:0 +I (155754) example: new speed:399.000000 +I (155764) example: expect speed: 0.000000 real_pulses:0 +I (155764) example: new speed:399.000000 +I (155774) example: expect speed: 0.000000 real_pulses:0 +I (155774) example: new speed:399.000000 +I (155784) example: expect speed: 0.000000 real_pulses:0 +I (155784) example: new speed:399.000000 +I (155794) example: expect speed: 0.000000 real_pulses:0 +I (155794) example: new speed:399.000000 +I (155804) example: expect speed: 0.000000 real_pulses:0 +I (155804) example: new speed:399.000000 +I (155814) example: expect speed: 0.000000 real_pulses:0 +I (155814) example: new speed:399.000000 +I (155824) example: expect speed: 0.000000 real_pulses:0 +I (155824) example: new speed:399.000000 +I (155834) example: expect speed: 0.000000 real_pulses:0 +I (155834) example: new speed:399.000000 +I (155844) example: expect speed: 0.000000 real_pulses:0 +I (155844) example: new speed:399.000000 +I (155854) example: expect speed: 0.000000 real_pulses:0 +I (155854) example: new speed:399.000000 +I (155864) example: expect speed: 0.000000 real_pulses:0 +I (155864) example: new speed:399.000000 +I (155874) example: expect speed: 0.000000 real_pulses:0 +I (155874) example: new speed:399.000000 +I (155884) example: expect speed: 0.000000 real_pulses:0 +I (155884) example: new speed:399.000000 +I (155894) example: expect speed: 0.000000 real_pulses:0 +I (155894) example: new speed:399.000000 +I (155904) example: expect speed: 0.000000 real_pulses:0 +I (155904) modbus tcp: ModBusSlave_recv() +I (155914) example: new speed:399.000000 +I (155914) modbus: ModbusSlaveProcess() +I (155914) modbus: check id... +I (155914) modbus: ok +I (155914) modbus: add: 0, length: 10 +I (155914) modbus: Read Holding Registers +I (155914) example: expect speed: 0.000000 real_pulses:0 +I (155924) example: new speed:399.000000 +I (155924) example: expect speed: 0.000000 real_pulses:0 +I (155924) example: new speed:399.000000 +I (155934) example: expect speed: 0.000000 real_pulses:0 +I (155934) example: new speed:399.000000 +I (155944) example: expect speed: 0.000000 real_pulses:0 +I (155944) example: new speed:399.000000 +I (155954) example: expect speed: 0.000000 real_pulses:0 +I (155954) example: new speed:399.000000 +I (155964) example: expect speed: 0.000000 real_pulses:0 +I (155964) example: new speed:399.000000 +I (155974) example: expect speed: 0.000000 real_pulses:0 +I (155984) example: new speed:399.000000 +I (155984) example: expect speed: 0.000000 real_pulses:0 +I (155984) example: new speed:399.000000 +I (155994) example: expect speed: 0.000000 real_pulses:0 +I (155994) example: new speed:399.000000 +I (156004) example: expect speed: 0.000000 real_pulses:0 +I (156004) example: new speed:399.000000 +I (156014) example: expect speed: 0.000000 real_pulses:0 +I (156014) example: new speed:399.000000 +I (156024) example: expect speed: 0.000000 real_pulses:0 +I (156034) example: new speed:399.000000 +I (156034) example: expect speed: 0.000000 real_pulses:0 +I (156044) example: new speed:399.000000 +I (156044) example: expect speed: 0.000000 real_pulses:0 +I (156044) example: new speed:399.000000 +I (156054) example: expect speed: 0.000000 real_pulses:0 +I (156054) example: new speed:399.000000 +I (156064) example: expect speed: 0.000000 real_pulses:0 +I (156064) example: new speed:399.000000 +I (156074) example: expect speed: 0.000000 real_pulses:0 +I (156074) example: new speed:399.000000 +I (156084) example: expect speed: 0.000000 real_pulses:0 +I (156084) example: new speed:399.000000 +I (156094) example: expect speed: 0.000000 real_pulses:0 +I (156094) example: new speed:399.000000 +I (156104) example: expect speed: 0.000000 real_pulses:0 +I (156114) example: new speed:399.000000 +I (156114) example: expect speed: 0.000000 real_pulses:0 +I (156124) example: new speed:399.000000 +I (156124) example: expect speed: 0.000000 real_pulses:0 +I (156124) example: new speed:399.000000 +I (156134) example: expect speed: 0.000000 real_pulses:0 +I (156134) example: new speed:399.000000 +I (156144) example: expect speed: 0.000000 real_pulses:0 +I (156144) example: new speed:399.000000 +I (156154) example: expect speed: 0.000000 real_pulses:0 +I (156154) example: new speed:399.000000 +I (156164) example: expect speed: 0.000000 real_pulses:0 +I (156164) example: new speed:399.000000 +I (156174) example: expect speed: 0.000000 real_pulses:0 +I (156174) example: new speed:399.000000 +I (156184) example: expect speed: 0.000000 real_pulses:0 +I (156184) example: new speed:399.000000 +I (156194) example: expect speed: 0.000000 real_pulses:0 +I (156194) example: new speed:399.000000 +I (156204) example: expect speed: 0.000000 real_pulses:0 +I (156204) example: new speed:399.000000 +I (156214) example: expect speed: 0.000000 real_pulses:0 +I (156214) example: new speed:399.000000 +I (156224) example: expect speed: 0.000000 real_pulses:0 +I (156224) example: new speed:399.000000 +I (156234) example: expect speed: 0.000000 real_pulses:0 +I (156234) example: new speed:399.000000 +I (156244) example: expect speed: 0.000000 real_pulses:0 +I (156244) example: new speed:399.000000 +I (156254) example: expect speed: 0.000000 real_pulses:0 +I (156254) example: new speed:399.000000 +I (156264) example: expect speed: 0.000000 real_pulses:0 +I (156264) example: new speed:399.000000 +I (156274) example: expect speed: 0.000000 real_pulses:0 +I (156274) example: new speed:399.000000 +I (156284) example: expect speed: 0.000000 real_pulses:0 +I (156284) example: new speed:399.000000 +I (156294) example: expect speed: 0.000000 real_pulses:0 +I (156294) example: new speed:399.000000 +I (156304) example: expect speed: 0.000000 real_pulses:0 +I (156304) example: new speed:399.000000 +I (156314) example: expect speed: 0.000000 real_pulses:0 +I (156314) example: new speed:399.000000 +I (156324) example: expect speed: 0.000000 real_pulses:0 +I (156324) example: new speed:399.000000 +I (156334) example: expect speed: 0.000000 real_pulses:0 +I (156334) example: new speed:399.000000 +I (156344) example: expect speed: 0.000000 real_pulses:0 +I (156344) example: new speed:399.000000 +I (156354) example: expect speed: 0.000000 real_pulses:0 +I (156354) example: new speed:399.000000 +I (156364) example: expect speed: 0.000000 real_pulses:0 +I (156364) example: new speed:399.000000 +I (156374) example: expect speed: 0.000000 real_pulses:0 +I (156374) example: new speed:399.000000 +I (156384) example: expect speed: 0.000000 real_pulses:0 +I (156384) example: new speed:399.000000 +I (156394) example: expect speed: 0.000000 real_pulses:0 +I (156394) example: new speed:399.000000 +I (156404) example: expect speed: 0.000000 real_pulses:0 +I (156404) example: new speed:399.000000 +I (156414) example: expect speed: 0.000000 real_pulses:0 +I (156414) example: new speed:399.000000 +I (156424) example: expect speed: 0.000000 real_pulses:0 +I (156424) example: new speed:399.000000 +I (156434) example: expect speed: 0.000000 real_pulses:0 +I (156434) example: new speed:399.000000 +I (156444) example: expect speed: 0.000000 real_pulses:0 +I (156444) example: new speed:399.000000 +I (156454) example: expect speed: 0.000000 real_pulses:0 +I (156454) example: new speed:399.000000 +I (156464) example: expect speed: 0.000000 real_pulses:0 +I (156464) example: new speed:399.000000 +I (156474) example: expect speed: 0.000000 real_pulses:0 +I (156474) example: new speed:399.000000 +I (156484) example: expect speed: 0.000000 real_pulses:0 +I (156484) example: new speed:399.000000 +I (156494) example: expect speed: 0.000000 real_pulses:0 +I (156494) example: new speed:399.000000 +I (156504) example: expect speed: 0.000000 real_pulses:0 +I (156504) example: new speed:399.000000 +I (156514) example: expect speed: 0.000000 real_pulses:0 +I (156524) example: new speed:399.000000 +I (156524) example: expect speed: 0.000000 real_pulses:0 +I (156534) example: new speed:399.000000 +I (156534) example: expect speed: 0.000000 real_pulses:0 +I (156534) example: new speed:399.000000 +I (156544) example: expect speed: 0.000000 real_pulses:0 +I (156544) example: new speed:399.000000 +I (156554) example: expect speed: 0.000000 real_pulses:0 +I (156554) example: new speed:399.000000 +I (156564) example: expect speed: 0.000000 real_pulses:0 +I (156564) example: new speed:399.000000 +I (156574) example: expect speed: 0.000000 real_pulses:0 +I (156574) example: new speed:399.000000 +I (156584) example: expect speed: 0.000000 real_pulses:0 +I (156584) example: new speed:399.000000 +I (156594) example: expect speed: 0.000000 real_pulses:0 +I (156594) example: new speed:399.000000 +I (156604) example: expect speed: 0.000000 real_pulses:0 +I (156604) example: new speed:399.000000 +I (156614) example: expect speed: 0.000000 real_pulses:0 +I (156614) example: new speed:399.000000 +I (156624) example: expect speed: 0.000000 real_pulses:0 +I (156624) example: new speed:399.000000 +I (156634) example: expect speed: 0.000000 real_pulses:0 +I (156634) example: new speed:399.000000 +I (156644) example: expect speed: 0.000000 real_pulses:0 +I (156644) example: new speed:399.000000 +I (156654) example: expect speed: 0.000000 real_pulses:0 +I (156654) example: new speed:399.000000 +I (156664) example: expect speed: 0.000000 real_pulses:0 +I (156664) example: new speed:399.000000 +I (156674) example: expect speed: 0.000000 real_pulses:0 +I (156674) example: new speed:399.000000 +I (156684) example: expect speed: 0.000000 real_pulses:0 +I (156684) example: new speed:399.000000 +I (156694) example: expect speed: 0.000000 real_pulses:0 +I (156694) example: new speed:399.000000 +I (156704) example: expect speed: 0.000000 real_pulses:0 +I (156704) example: new speed:399.000000 +I (156714) example: expect speed: 0.000000 real_pulses:0 +I (156714) example: new speed:399.000000 +I (156724) example: expect speed: 0.000000 real_pulses:0 +I (156724) example: new speed:399.000000 +I (156734) example: expect speed: 0.000000 real_pulses:0 +I (156734) example: new speed:399.000000 +I (156744) example: expect speed: 0.000000 real_pulses:0 +I (156744) example: new speed:399.000000 +I (156754) example: expect speed: 0.000000 real_pulses:0 +I (156754) example: new speed:399.000000 +I (156764) example: expect speed: 0.000000 real_pulses:0 +I (156764) example: new speed:399.000000 +I (156774) example: expect speed: 0.000000 real_pulses:0 +I (156774) example: new speed:399.000000 +I (156784) example: expect speed: 0.000000 real_pulses:0 +I (156784) example: new speed:399.000000 +I (156794) example: expect speed: 0.000000 real_pulses:0 +I (156794) example: new speed:399.000000 +I (156804) example: expect speed: 0.000000 real_pulses:0 +I (156804) example: new speed:399.000000 +I (156814) example: expect speed: 0.000000 real_pulses:0 +I (156814) example: new speed:399.000000 +I (156824) example: expect speed: 0.000000 real_pulses:0 +I (156834) example: new speed:399.000000 +I (156834) example: expect speed: 0.000000 real_pulses:0 +I (156834) example: new speed:399.000000 +I (156844) example: expect speed: 0.000000 real_pulses:0 +I (156844) example: new speed:399.000000 +I (156854) example: expect speed: 0.000000 real_pulses:0 +I (156854) example: new speed:399.000000 +I (156864) example: expect speed: 0.000000 real_pulses:0 +I (156864) example: new speed:399.000000 +I (156874) example: expect speed: 0.000000 real_pulses:0 +I (156874) example: new speed:399.000000 +I (156884) example: expect speed: 0.000000 real_pulses:0 +I (156884) example: new speed:399.000000 +I (156894) example: expect speed: 0.000000 real_pulses:0 +I (156894) example: new speed:399.000000 +I (156904) example: expect speed: 0.000000 real_pulses:0 +I (156904) example: new speed:399.000000 +I (156914) example: expect speed: 0.000000 real_pulses:0 +I (156914) example: new speed:399.000000 +I (156924) example: expect speed: 0.000000 real_pulses:0 +I (156934) modbus tcp: ModBusSlave_recv() +I (156934) example: new speed:399.000000 +I (156934) modbus: ModbusSlaveProcess() +I (156934) modbus: check id... +I (156934) modbus: ok +I (156934) modbus: add: 0, length: 10 +I (156934) modbus: Read Holding Registers +I (156934) example: expect speed: 0.000000 real_pulses:0 +I (156944) example: new speed:399.000000 +I (156944) example: expect speed: 0.000000 real_pulses:0 +I (156944) example: new speed:399.000000 +I (156954) example: expect speed: 0.000000 real_pulses:0 +I (156954) example: new speed:399.000000 +I (156964) example: expect speed: 0.000000 real_pulses:0 +I (156964) example: new speed:399.000000 +I (156974) example: expect speed: 0.000000 real_pulses:0 +I (156974) example: new speed:399.000000 +I (156984) example: expect speed: 0.000000 real_pulses:0 +I (156994) example: new speed:399.000000 +I (156994) example: expect speed: 0.000000 real_pulses:0 +I (156994) example: new speed:399.000000 +I (157004) example: expect speed: 0.000000 real_pulses:0 +I (157004) example: new speed:399.000000 +I (157014) example: expect speed: 0.000000 real_pulses:0 +I (157014) example: new speed:399.000000 +I (157024) example: expect speed: 0.000000 real_pulses:0 +I (157034) example: new speed:399.000000 +I (157034) example: expect speed: 0.000000 real_pulses:0 +I (157044) example: new speed:399.000000 +I (157044) example: expect speed: 0.000000 real_pulses:0 +I (157044) example: new speed:399.000000 +I (157054) example: expect speed: 0.000000 real_pulses:0 +I (157054) example: new speed:399.000000 +I (157064) example: expect speed: 0.000000 real_pulses:0 +I (157064) example: new speed:399.000000 +I (157074) example: expect speed: 0.000000 real_pulses:0 +I (157074) example: new speed:399.000000 +I (157084) example: expect speed: 0.000000 real_pulses:0 +I (157094) example: new speed:399.000000 +I (157094) example: expect speed: 0.000000 real_pulses:0 +I (157094) example: new speed:399.000000 +I (157104) example: expect speed: 0.000000 real_pulses:0 +I (157104) example: new speed:399.000000 +I (157114) example: expect speed: 0.000000 real_pulses:0 +I (157114) example: new speed:399.000000 +I (157124) example: expect speed: 0.000000 real_pulses:0 +I (157124) example: new speed:399.000000 +I (157134) example: expect speed: 0.000000 real_pulses:0 +I (157134) example: new speed:399.000000 +I (157144) example: expect speed: 0.000000 real_pulses:0 +I (157144) example: new speed:399.000000 +I (157154) example: expect speed: 0.000000 real_pulses:0 +I (157154) example: new speed:399.000000 +I (157164) example: expect speed: 0.000000 real_pulses:0 +I (157164) example: new speed:399.000000 +I (157174) example: expect speed: 0.000000 real_pulses:0 +I (157174) example: new speed:399.000000 +I (157184) example: expect speed: 0.000000 real_pulses:0 +I (157184) example: new speed:399.000000 +I (157194) example: expect speed: 0.000000 real_pulses:0 +I (157194) example: new speed:399.000000 +I (157204) example: expect speed: 0.000000 real_pulses:0 +I (157204) example: new speed:399.000000 +I (157214) example: expect speed: 0.000000 real_pulses:0 +I (157214) example: new speed:399.000000 +I (157224) example: expect speed: 0.000000 real_pulses:0 +I (157224) example: new speed:399.000000 +I (157234) example: expect speed: 0.000000 real_pulses:0 +I (157234) example: new speed:399.000000 +I (157244) example: expect speed: 0.000000 real_pulses:0 +I (157244) example: new speed:399.000000 +I (157254) example: expect speed: 0.000000 real_pulses:0 +I (157254) example: new speed:399.000000 +I (157264) example: expect speed: 0.000000 real_pulses:0 +I (157264) example: new speed:399.000000 +I (157274) example: expect speed: 0.000000 real_pulses:0 +I (157274) example: new speed:399.000000 +I (157284) example: expect speed: 0.000000 real_pulses:0 +I (157284) example: new speed:399.000000 +I (157294) example: expect speed: 0.000000 real_pulses:0 +I (157294) example: new speed:399.000000 +I (157304) example: expect speed: 0.000000 real_pulses:0 +I (157304) example: new speed:399.000000 +I (157314) example: expect speed: 0.000000 real_pulses:0 +I (157314) example: new speed:399.000000 +I (157324) example: expect speed: 0.000000 real_pulses:0 +I (157324) example: new speed:399.000000 +I (157334) example: expect speed: 0.000000 real_pulses:0 +I (157334) example: new speed:399.000000 +I (157344) example: expect speed: 0.000000 real_pulses:0 +I (157344) example: new speed:399.000000 +I (157354) example: expect speed: 0.000000 real_pulses:0 +I (157354) example: new speed:399.000000 +I (157364) example: expect speed: 0.000000 real_pulses:0 +I (157364) example: new speed:399.000000 +I (157374) example: expect speed: 0.000000 real_pulses:0 +I (157374) example: new speed:399.000000 +I (157384) example: expect speed: 0.000000 real_pulses:0 +I (157384) example: new speed:399.000000 +I (157394) example: expect speed: 0.000000 real_pulses:0 +I (157394) example: new speed:399.000000 +I (157404) example: expect speed: 0.000000 real_pulses:0 +I (157404) example: new speed:399.000000 +I (157414) example: expect speed: 0.000000 real_pulses:0 +I (157414) example: new speed:399.000000 +I (157424) example: expect speed: 0.000000 real_pulses:0 +I (157424) example: new speed:399.000000 +I (157434) example: expect speed: 0.000000 real_pulses:0 +I (157434) example: new speed:399.000000 +I (157444) example: expect speed: 0.000000 real_pulses:0 +I (157444) example: new speed:399.000000 +I (157454) example: expect speed: 0.000000 real_pulses:0 +I (157454) example: new speed:399.000000 +I (157464) example: expect speed: 0.000000 real_pulses:0 +I (157464) example: new speed:399.000000 +I (157474) example: expect speed: 0.000000 real_pulses:0 +I (157474) example: new speed:399.000000 +I (157484) example: expect speed: 0.000000 real_pulses:0 +I (157484) example: new speed:399.000000 +I (157494) example: expect speed: 0.000000 real_pulses:0 +I (157494) example: new speed:399.000000 +I (157504) example: expect speed: 0.000000 real_pulses:0 +I (157504) example: new speed:399.000000 +I (157514) example: expect speed: 0.000000 real_pulses:0 +I (157514) example: new speed:399.000000 +I (157524) example: expect speed: 0.000000 real_pulses:0 +I (157524) example: new speed:399.000000 +I (157534) example: expect speed: 0.000000 real_pulses:0 +I (157534) example: new speed:399.000000 +I (157544) example: expect speed: 0.000000 real_pulses:0 +I (157544) example: new speed:399.000000 +I (157554) example: expect speed: 0.000000 real_pulses:0 +I (157554) example: new speed:399.000000 +I (157564) example: expect speed: 0.000000 real_pulses:0 +I (157564) example: new speed:399.000000 +I (157574) example: expect speed: 0.000000 real_pulses:0 +I (157574) example: new speed:399.000000 +I (157584) example: expect speed: 0.000000 real_pulses:0 +I (157584) example: new speed:399.000000 +I (157594) example: expect speed: 0.000000 real_pulses:0 +I (157594) example: new speed:399.000000 +I (157604) example: expect speed: 0.000000 real_pulses:0 +I (157604) example: new speed:399.000000 +I (157614) example: expect speed: 0.000000 real_pulses:0 +I (157614) example: new speed:399.000000 +I (157624) example: expect speed: 0.000000 real_pulses:0 +I (157624) example: new speed:399.000000 +I (157634) example: expect speed: 0.000000 real_pulses:0 +I (157634) example: new speed:399.000000 +I (157644) example: expect speed: 0.000000 real_pulses:0 +I (157654) example: new speed:399.000000 +I (157654) example: expect speed: 0.000000 real_pulses:0 +I (157654) example: new speed:399.000000 +I (157664) example: expect speed: 0.000000 real_pulses:0 +I (157664) example: new speed:399.000000 +I (157674) example: expect speed: 0.000000 real_pulses:0 +I (157674) example: new speed:399.000000 +I (157684) example: expect speed: 0.000000 real_pulses:0 +I (157684) example: new speed:399.000000 +I (157694) example: expect speed: 0.000000 real_pulses:0 +I (157694) example: new speed:399.000000 +I (157704) example: expect speed: 0.000000 real_pulses:0 +I (157704) example: new speed:399.000000 +I (157714) example: expect speed: 0.000000 real_pulses:0 +I (157714) example: new speed:399.000000 +I (157724) example: expect speed: 0.000000 real_pulses:0 +I (157724) example: new speed:399.000000 +I (157734) example: expect speed: 0.000000 real_pulses:0 +I (157734) example: new speed:399.000000 +I (157744) example: expect speed: 0.000000 real_pulses:0 +I (157744) example: new speed:399.000000 +I (157754) example: expect speed: 0.000000 real_pulses:0 +I (157754) example: new speed:399.000000 +I (157764) example: expect speed: 0.000000 real_pulses:0 +I (157764) example: new speed:399.000000 +I (157774) example: expect speed: 0.000000 real_pulses:0 +I (157774) example: new speed:399.000000 +I (157784) example: expect speed: 0.000000 real_pulses:0 +I (157784) example: new speed:399.000000 +I (157794) example: expect speed: 0.000000 real_pulses:0 +I (157794) example: new speed:399.000000 +I (157804) example: expect speed: 0.000000 real_pulses:0 +I (157804) example: new speed:399.000000 +I (157814) example: expect speed: 0.000000 real_pulses:0 +I (157814) example: new speed:399.000000 +I (157824) example: expect speed: 0.000000 real_pulses:0 +I (157824) example: new speed:399.000000 +I (157834) example: expect speed: 0.000000 real_pulses:0 +I (157834) example: new speed:399.000000 +I (157844) example: expect speed: 0.000000 real_pulses:0 +I (157854) example: new speed:399.000000 +I (157854) example: expect speed: 0.000000 real_pulses:0 +I (157854) example: new speed:399.000000 +I (157864) example: expect speed: 0.000000 real_pulses:0 +I (157864) example: new speed:399.000000 +I (157874) example: expect speed: 0.000000 real_pulses:0 +I (157874) example: new speed:399.000000 +I (157884) example: expect speed: 0.000000 real_pulses:0 +I (157884) example: new speed:399.000000 +I (157894) example: expect speed: 0.000000 real_pulses:0 +I (157894) example: new speed:399.000000 +I (157904) example: expect speed: 0.000000 real_pulses:0 +I (157904) example: new speed:399.000000 +I (157914) example: expect speed: 0.000000 real_pulses:0 +I (157914) example: new speed:399.000000 +I (157924) example: expect speed: 0.000000 real_pulses:0 +I (157924) example: new speed:399.000000 +I (157934) example: expect speed: 0.000000 real_pulses:0 +I (157934) example: new speed:399.000000 +I (157944) example: expect speed: 0.000000 real_pulses:0 +I (157954) example: new speed:399.000000 +I (157954) modbus tcp: ModBusSlave_recv() +I (157954) modbus: ModbusSlaveProcess() +I (157954) modbus: check id... +I (157954) modbus: ok +I (157954) modbus: add: 0, length: 10 +I (157954) modbus: Read Holding Registers +I (157954) example: expect speed: 0.000000 real_pulses:0 +I (157964) example: new speed:399.000000 +I (157964) example: expect speed: 0.000000 real_pulses:0 +I (157964) example: new speed:399.000000 +I (157974) example: expect speed: 0.000000 real_pulses:0 +I (157974) example: new speed:399.000000 +I (157984) example: expect speed: 0.000000 real_pulses:0 +I (157984) example: new speed:399.000000 +I (157994) example: expect speed: 0.000000 real_pulses:0 +I (157994) example: new speed:399.000000 +I (158004) example: expect speed: 0.000000 real_pulses:0 +I (158014) example: new speed:399.000000 +I (158014) example: expect speed: 0.000000 real_pulses:0 +I (158014) example: new speed:399.000000 +I (158024) example: expect speed: 0.000000 real_pulses:0 +I (158024) example: new speed:399.000000 +I (158034) example: expect speed: 0.000000 real_pulses:0 +I (158034) example: new speed:399.000000 +I (158044) example: expect speed: 0.000000 real_pulses:0 +I (158044) example: new speed:399.000000 +I (158054) example: expect speed: 0.000000 real_pulses:0 +I (158064) example: new speed:399.000000 +I (158064) example: expect speed: 0.000000 real_pulses:0 +I (158064) example: new speed:399.000000 +I (158074) example: expect speed: 0.000000 real_pulses:0 +I (158074) example: new speed:399.000000 +I (158084) example: expect speed: 0.000000 real_pulses:0 +I (158084) example: new speed:399.000000 +I (158094) example: expect speed: 0.000000 real_pulses:0 +I (158094) example: new speed:399.000000 +I (158104) example: expect speed: 0.000000 real_pulses:0 +I (158104) example: new speed:399.000000 +I (158114) example: expect speed: 0.000000 real_pulses:0 +I (158114) example: new speed:399.000000 +I (158124) example: expect speed: 0.000000 real_pulses:0 +I (158124) example: new speed:399.000000 +I (158134) example: expect speed: 0.000000 real_pulses:0 +I (158134) example: new speed:399.000000 +I (158144) example: expect speed: 0.000000 real_pulses:0 +I (158144) example: new speed:399.000000 +I (158154) example: expect speed: 0.000000 real_pulses:0 +I (158154) example: new speed:399.000000 +I (158164) example: expect speed: 0.000000 real_pulses:0 +I (158164) example: new speed:399.000000 +I (158174) example: expect speed: 0.000000 real_pulses:0 +I (158174) example: new speed:399.000000 +I (158184) example: expect speed: 0.000000 real_pulses:0 +I (158184) example: new speed:399.000000 +I (158194) example: expect speed: 0.000000 real_pulses:0 +I (158194) example: new speed:399.000000 +I (158204) example: expect speed: 0.000000 real_pulses:0 +I (158204) example: new speed:399.000000 +I (158214) example: expect speed: 0.000000 real_pulses:0 +I (158214) example: new speed:399.000000 +I (158224) example: expect speed: 0.000000 real_pulses:0 +I (158224) example: new speed:399.000000 +I (158234) example: expect speed: 0.000000 real_pulses:0 +I (158234) example: new speed:399.000000 +I (158244) example: expect speed: 0.000000 real_pulses:0 +I (158244) example: new speed:399.000000 +I (158254) example: expect speed: 0.000000 real_pulses:0 +I (158254) example: new speed:399.000000 +I (158264) example: expect speed: 0.000000 real_pulses:0 +I (158264) example: new speed:399.000000 +I (158274) example: expect speed: 0.000000 real_pulses:0 +I (158274) example: new speed:399.000000 +I (158284) example: expect speed: 0.000000 real_pulses:0 +I (158284) example: new speed:399.000000 +I (158294) example: expect speed: 0.000000 real_pulses:0 +I (158294) example: new speed:399.000000 +I (158304) example: expect speed: 0.000000 real_pulses:0 +I (158304) example: new speed:399.000000 +I (158314) example: expect speed: 0.000000 real_pulses:0 +I (158314) example: new speed:399.000000 +I (158324) example: expect speed: 0.000000 real_pulses:0 +I (158324) example: new speed:399.000000 +I (158334) example: expect speed: 0.000000 real_pulses:0 +I (158334) example: new speed:399.000000 +I (158344) example: expect speed: 0.000000 real_pulses:0 +I (158344) example: new speed:399.000000 +I (158354) example: expect speed: 0.000000 real_pulses:0 +I (158364) example: new speed:399.000000 +I (158364) example: expect speed: 0.000000 real_pulses:0 +I (158364) example: new speed:399.000000 +I (158374) example: expect speed: 0.000000 real_pulses:0 +I (158374) example: new speed:399.000000 +I (158384) example: expect speed: 0.000000 real_pulses:0 +I (158384) example: new speed:399.000000 +I (158394) example: expect speed: 0.000000 real_pulses:0 +I (158394) example: new speed:399.000000 +I (158404) example: expect speed: 0.000000 real_pulses:0 +I (158404) example: new speed:399.000000 +I (158414) example: expect speed: 0.000000 real_pulses:0 +I (158414) example: new speed:399.000000 +I (158424) example: expect speed: 0.000000 real_pulses:0 +I (158424) example: new speed:399.000000 +I (158434) example: expect speed: 0.000000 real_pulses:0 +I (158434) example: new speed:399.000000 +I (158444) example: expect speed: 0.000000 real_pulses:0 +I (158444) example: new speed:399.000000 +I (158454) example: expect speed: 0.000000 real_pulses:0 +I (158454) example: new speed:399.000000 +I (158464) example: expect speed: 0.000000 real_pulses:0 +I (158464) example: new speed:399.000000 +I (158474) example: expect speed: 0.000000 real_pulses:0 +I (158474) example: new speed:399.000000 +I (158484) example: expect speed: 0.000000 real_pulses:0 +I (158484) example: new speed:399.000000 +I (158494) example: expect speed: 0.000000 real_pulses:0 +I (158494) example: new speed:399.000000 +I (158504) example: expect speed: 0.000000 real_pulses:0 +I (158504) example: new speed:399.000000 +I (158514) example: expect speed: 0.000000 real_pulses:0 +I (158514) example: new speed:399.000000 +I (158524) example: expect speed: 0.000000 real_pulses:0 +I (158524) example: new speed:399.000000 +I (158534) example: expect speed: 0.000000 real_pulses:0 +I (158534) example: new speed:399.000000 +I (158544) example: expect speed: 0.000000 real_pulses:0 +I (158544) example: new speed:399.000000 +I (158554) example: expect speed: 0.000000 real_pulses:0 +I (158554) example: new speed:399.000000 +I (158564) example: expect speed: 0.000000 real_pulses:0 +I (158564) example: new speed:399.000000 +I (158574) example: expect speed: 0.000000 real_pulses:0 +I (158574) example: new speed:399.000000 +I (158584) example: expect speed: 0.000000 real_pulses:0 +I (158584) example: new speed:399.000000 +I (158594) example: expect speed: 0.000000 real_pulses:0 +I (158594) example: new speed:399.000000 +I (158604) example: expect speed: 0.000000 real_pulses:0 +I (158604) example: new speed:399.000000 +I (158614) example: expect speed: 0.000000 real_pulses:0 +I (158614) example: new speed:399.000000 +I (158624) example: expect speed: 0.000000 real_pulses:0 +I (158624) example: new speed:399.000000 +I (158634) example: expect speed: 0.000000 real_pulses:0 +I (158634) example: new speed:399.000000 +I (158644) example: expect speed: 0.000000 real_pulses:0 +I (158644) example: new speed:399.000000 +I (158654) example: expect speed: 0.000000 real_pulses:0 +I (158654) example: new speed:399.000000 +I (158664) example: expect speed: 0.000000 real_pulses:0 +I (158664) example: new speed:399.000000 +I (158674) example: expect speed: 0.000000 real_pulses:0 +I (158674) example: new speed:399.000000 +I (158684) example: expect speed: 0.000000 real_pulses:0 +I (158684) example: new speed:399.000000 +I (158694) example: expect speed: 0.000000 real_pulses:0 +I (158694) example: new speed:399.000000 +I (158704) example: expect speed: 0.000000 real_pulses:0 +I (158704) example: new speed:399.000000 +I (158714) example: expect speed: 0.000000 real_pulses:0 +I (158714) example: new speed:399.000000 +I (158724) example: expect speed: 0.000000 real_pulses:0 +I (158724) example: new speed:399.000000 +I (158734) example: expect speed: 0.000000 real_pulses:0 +I (158734) example: new speed:399.000000 +I (158744) example: expect speed: 0.000000 real_pulses:0 +I (158744) example: new speed:399.000000 +I (158754) example: expect speed: 0.000000 real_pulses:0 +I (158754) example: new speed:399.000000 +I (158764) example: expect speed: 0.000000 real_pulses:0 +I (158764) example: new speed:399.000000 +I (158774) example: expect speed: 0.000000 real_pulses:0 +I (158774) example: new speed:399.000000 +I (158784) example: expect speed: 0.000000 real_pulses:0 +I (158784) example: new speed:399.000000 +I (158794) example: expect speed: 0.000000 real_pulses:0 +I (158794) example: new speed:399.000000 +I (158804) example: expect speed: 0.000000 real_pulses:0 +I (158804) example: new speed:399.000000 +I (158814) example: expect speed: 0.000000 real_pulses:0 +I (158814) example: new speed:399.000000 +I (158824) example: expect speed: 0.000000 real_pulses:0 +I (158824) example: new speed:399.000000 +I (158834) example: expect speed: 0.000000 real_pulses:0 +I (158834) example: new speed:399.000000 +I (158844) example: expect speed: 0.000000 real_pulses:0 +I (158844) example: new speed:399.000000 +I (158854) example: expect speed: 0.000000 real_pulses:0 +I (158854) example: new speed:399.000000 +I (158864) example: expect speed: 0.000000 real_pulses:0 +I (158864) example: new speed:399.000000 +I (158874) example: expect speed: 0.000000 real_pulses:0 +I (158874) example: new speed:399.000000 +I (158884) example: expect speed: 0.000000 real_pulses:0 +I (158884) example: new speed:399.000000 +I (158894) example: expect speed: 0.000000 real_pulses:0 +I (158894) example: new speed:399.000000 +I (158904) example: expect speed: 0.000000 real_pulses:0 +I (158904) example: new speed:399.000000 +I (158914) example: expect speed: 0.000000 real_pulses:0 +I (158914) example: new speed:399.000000 +I (158924) example: expect speed: 0.000000 real_pulses:0 +I (158924) example: new speed:399.000000 +I (158934) example: expect speed: 0.000000 real_pulses:0 +I (158934) example: new speed:399.000000 +I (158944) example: expect speed: 0.000000 real_pulses:0 +I (158944) example: new speed:399.000000 +I (158954) example: expect speed: 0.000000 real_pulses:0 +I (158954) example: new speed:399.000000 +I (158964) example: expect speed: 0.000000 real_pulses:0 +I (158964) example: new speed:399.000000 +I (158974) example: expect speed: 0.000000 real_pulses:0 +I (158974) modbus tcp: ModBusSlave_recv() +I (158984) example: new speed:399.000000 +I (158984) modbus: ModbusSlaveProcess() +I (158984) modbus: check id... +I (158984) modbus: ok +I (158984) modbus: add: 0, length: 10 +I (158984) modbus: Read Holding Registers +I (158984) example: expect speed: 0.000000 real_pulses:0 +I (158994) example: new speed:399.000000 +I (158994) example: expect speed: 0.000000 real_pulses:0 +I (158994) example: new speed:399.000000 +I (159004) example: expect speed: 0.000000 real_pulses:0 +I (159004) example: new speed:399.000000 +I (159014) example: expect speed: 0.000000 real_pulses:0 +I (159014) example: new speed:399.000000 +I (159024) example: expect speed: 0.000000 real_pulses:0 +I (159024) example: new speed:399.000000 +I (159034) example: expect speed: 0.000000 real_pulses:0 +I (159044) example: new speed:399.000000 +I (159044) example: expect speed: 0.000000 real_pulses:0 +I (159044) example: new speed:399.000000 +I (159054) example: expect speed: 0.000000 real_pulses:0 +I (159054) example: new speed:399.000000 +I (159064) example: expect speed: 0.000000 real_pulses:0 +I (159064) example: new speed:399.000000 +I (159074) example: expect speed: 0.000000 real_pulses:0 +I (159074) example: new speed:399.000000 +I (159084) example: expect speed: 0.000000 real_pulses:0 +I (159094) example: new speed:399.000000 +I (159094) example: expect speed: 0.000000 real_pulses:0 +I (159094) example: new speed:399.000000 +I (159104) example: expect speed: 0.000000 real_pulses:0 +I (159104) example: new speed:399.000000 +I (159114) example: expect speed: 0.000000 real_pulses:0 +I (159114) example: new speed:399.000000 +I (159124) example: expect speed: 0.000000 real_pulses:0 +I (159124) example: new speed:399.000000 +I (159134) example: expect speed: 0.000000 real_pulses:0 +I (159134) example: new speed:399.000000 +I (159144) example: expect speed: 0.000000 real_pulses:0 +I (159144) example: new speed:399.000000 +I (159154) example: expect speed: 0.000000 real_pulses:0 +I (159154) example: new speed:399.000000 +I (159164) example: expect speed: 0.000000 real_pulses:0 +I (159164) example: new speed:399.000000 +I (159174) example: expect speed: 0.000000 real_pulses:0 +I (159184) example: new speed:399.000000 +I (159184) example: expect speed: 0.000000 real_pulses:0 +I (159184) example: new speed:399.000000 +I (159194) example: expect speed: 0.000000 real_pulses:0 +I (159194) example: new speed:399.000000 +I (159204) example: expect speed: 0.000000 real_pulses:0 +I (159204) example: new speed:399.000000 +I (159214) example: expect speed: 0.000000 real_pulses:0 +I (159214) example: new speed:399.000000 +I (159224) example: expect speed: 0.000000 real_pulses:0 +I (159224) example: new speed:399.000000 +I (159234) example: expect speed: 0.000000 real_pulses:0 +I (159234) example: new speed:399.000000 +I (159244) example: expect speed: 0.000000 real_pulses:0 +I (159244) example: new speed:399.000000 +I (159254) example: expect speed: 0.000000 real_pulses:0 +I (159254) example: new speed:399.000000 +I (159264) example: expect speed: 0.000000 real_pulses:0 +I (159264) example: new speed:399.000000 +I (159274) example: expect speed: 0.000000 real_pulses:0 +I (159274) example: new speed:399.000000 +I (159284) example: expect speed: 0.000000 real_pulses:0 +I (159284) example: new speed:399.000000 +I (159294) example: expect speed: 0.000000 real_pulses:0 +I (159294) example: new speed:399.000000 +I (159304) example: expect speed: 0.000000 real_pulses:0 +I (159304) example: new speed:399.000000 +I (159314) example: expect speed: 0.000000 real_pulses:0 +I (159314) example: new speed:399.000000 +I (159324) example: expect speed: 0.000000 real_pulses:0 +I (159324) example: new speed:399.000000 +I (159334) example: expect speed: 0.000000 real_pulses:0 +I (159334) example: new speed:399.000000 +I (159344) example: expect speed: 0.000000 real_pulses:0 +I (159344) example: new speed:399.000000 +I (159354) example: expect speed: 0.000000 real_pulses:0 +I (159354) example: new speed:399.000000 +I (159364) example: expect speed: 0.000000 real_pulses:0 +I (159364) example: new speed:399.000000 +I (159374) example: expect speed: 0.000000 real_pulses:0 +I (159374) example: new speed:399.000000 +I (159384) example: expect speed: 0.000000 real_pulses:0 +I (159384) example: new speed:399.000000 +I (159394) example: expect speed: 0.000000 real_pulses:0 +I (159394) example: new speed:399.000000 +I (159404) example: expect speed: 0.000000 real_pulses:0 +I (159404) example: new speed:399.000000 +I (159414) example: expect speed: 0.000000 real_pulses:0 +I (159414) example: new speed:399.000000 +I (159424) example: expect speed: 0.000000 real_pulses:0 +I (159424) example: new speed:399.000000 +I (159434) example: expect speed: 0.000000 real_pulses:0 +I (159434) example: new speed:399.000000 +I (159444) example: expect speed: 0.000000 real_pulses:0 +I (159444) example: new speed:399.000000 +I (159454) example: expect speed: 0.000000 real_pulses:0 +I (159454) example: new speed:399.000000 +I (159464) example: expect speed: 0.000000 real_pulses:0 +I (159464) example: new speed:399.000000 +I (159474) example: expect speed: 0.000000 real_pulses:0 +I (159474) example: new speed:399.000000 +I (159484) example: expect speed: 0.000000 real_pulses:0 +I (159484) example: new speed:399.000000 +I (159494) example: expect speed: 0.000000 real_pulses:0 +I (159494) example: new speed:399.000000 +I (159504) example: expect speed: 0.000000 real_pulses:0 +I (159504) example: new speed:399.000000 +I (159514) example: expect speed: 0.000000 real_pulses:0 +I (159514) example: new speed:399.000000 +I (159524) example: expect speed: 0.000000 real_pulses:0 +I (159524) example: new speed:399.000000 +I (159534) example: expect speed: 0.000000 real_pulses:0 +I (159534) example: new speed:399.000000 +I (159544) example: expect speed: 0.000000 real_pulses:0 +I (159544) example: new speed:399.000000 +I (159554) example: expect speed: 0.000000 real_pulses:0 +I (159554) example: new speed:399.000000 +I (159564) example: expect speed: 0.000000 real_pulses:0 +I (159564) example: new speed:399.000000 +I (159574) example: expect speed: 0.000000 real_pulses:0 +I (159574) example: new speed:399.000000 +I (159584) example: expect speed: 0.000000 real_pulses:0 +I (159594) example: new speed:399.000000 +I (159594) example: expect speed: 0.000000 real_pulses:0 +I (159604) example: new speed:399.000000 +I (159604) example: expect speed: 0.000000 real_pulses:0 +I (159604) example: new speed:399.000000 +I (159614) example: expect speed: 0.000000 real_pulses:0 +I (159614) example: new speed:399.000000 +I (159624) example: expect speed: 0.000000 real_pulses:0 +I (159624) example: new speed:399.000000 +I (159634) example: expect speed: 0.000000 real_pulses:0 +I (159634) example: new speed:399.000000 +I (159644) example: expect speed: 0.000000 real_pulses:0 +I (159654) example: new speed:399.000000 +I (159654) example: expect speed: 0.000000 real_pulses:0 +I (159654) example: new speed:399.000000 +I (159664) example: expect speed: 0.000000 real_pulses:0 +I (159664) example: new speed:399.000000 +I (159674) example: expect speed: 0.000000 real_pulses:0 +I (159674) example: new speed:399.000000 +I (159684) example: expect speed: 0.000000 real_pulses:0 +I (159684) example: new speed:399.000000 +I (159694) example: expect speed: 0.000000 real_pulses:0 +I (159694) example: new speed:399.000000 +I (159704) example: expect speed: 0.000000 real_pulses:0 +I (159704) example: new speed:399.000000 +I (159714) example: expect speed: 0.000000 real_pulses:0 +I (159714) example: new speed:399.000000 +I (159724) example: expect speed: 0.000000 real_pulses:0 +I (159724) example: new speed:399.000000 +I (159734) example: expect speed: 0.000000 real_pulses:0 +I (159734) example: new speed:399.000000 +I (159744) example: expect speed: 0.000000 real_pulses:0 +I (159744) example: new speed:399.000000 +I (159754) example: expect speed: 0.000000 real_pulses:0 +I (159754) example: new speed:399.000000 +I (159764) example: expect speed: 0.000000 real_pulses:0 +I (159764) example: new speed:399.000000 +I (159774) example: expect speed: 0.000000 real_pulses:0 +I (159774) example: new speed:399.000000 +I (159784) example: expect speed: 0.000000 real_pulses:0 +I (159784) example: new speed:399.000000 +I (159794) example: expect speed: 0.000000 real_pulses:0 +I (159794) example: new speed:399.000000 +I (159804) example: expect speed: 0.000000 real_pulses:0 +I (159804) example: new speed:399.000000 +I (159814) example: expect speed: 0.000000 real_pulses:0 +I (159814) example: new speed:399.000000 +I (159824) example: expect speed: 0.000000 real_pulses:0 +I (159824) example: new speed:399.000000 +I (159834) example: expect speed: 0.000000 real_pulses:0 +I (159834) example: new speed:399.000000 +I (159844) example: expect speed: 0.000000 real_pulses:0 +I (159844) example: new speed:399.000000 +I (159854) example: expect speed: 0.000000 real_pulses:0 +I (159854) example: new speed:399.000000 +I (159864) example: expect speed: 0.000000 real_pulses:0 +I (159864) example: new speed:399.000000 +I (159874) example: expect speed: 0.000000 real_pulses:0 +I (159874) example: new speed:399.000000 +I (159884) example: expect speed: 0.000000 real_pulses:0 +I (159884) example: new speed:399.000000 +I (159894) example: expect speed: 0.000000 real_pulses:0 +I (159904) example: new speed:399.000000 +I (159904) example: expect speed: 0.000000 real_pulses:0 +I (159904) example: new speed:399.000000 +I (159914) example: expect speed: 0.000000 real_pulses:0 +I (159914) example: new speed:399.000000 +I (159924) example: expect speed: 0.000000 real_pulses:0 +I (159924) example: new speed:399.000000 +I (159934) example: expect speed: 0.000000 real_pulses:0 +I (159934) example: new speed:399.000000 +I (159944) example: expect speed: 0.000000 real_pulses:0 +I (159944) example: new speed:399.000000 +I (159954) example: expect speed: 0.000000 real_pulses:0 +I (159954) example: new speed:399.000000 +I (159964) example: expect speed: 0.000000 real_pulses:0 +I (159964) example: new speed:399.000000 +I (159974) example: expect speed: 0.000000 real_pulses:0 +I (159974) example: new speed:399.000000 +I (159984) example: expect speed: 0.000000 real_pulses:0 +I (159984) example: new speed:399.000000 +I (159994) example: expect speed: 0.000000 real_pulses:0 +I (160004) example: new speed:399.000000 +I (160004) modbus tcp: ModBusSlave_recv() +I (160004) modbus: ModbusSlaveProcess() +I (160004) modbus: check id... +I (160004) modbus: ok +I (160004) modbus: add: 0, length: 10 +I (160004) modbus: Read Holding Registers +I (160004) example: expect speed: 0.000000 real_pulses:0 +I (160014) example: new speed:399.000000 +I (160014) example: expect speed: 0.000000 real_pulses:0 +I (160014) example: new speed:399.000000 +I (160024) example: expect speed: 0.000000 real_pulses:0 +I (160024) example: new speed:399.000000 +I (160034) example: expect speed: 0.000000 real_pulses:0 +I (160034) example: new speed:399.000000 +I (160044) example: expect speed: 0.000000 real_pulses:0 +I (160044) example: new speed:399.000000 +I (160054) example: expect speed: 0.000000 real_pulses:0 +I (160064) example: new speed:399.000000 +I (160064) example: expect speed: 0.000000 real_pulses:0 +I (160064) example: new speed:399.000000 +I (160074) example: expect speed: 0.000000 real_pulses:0 +I (160074) example: new speed:399.000000 +I (160084) example: expect speed: 0.000000 real_pulses:0 +I (160084) example: new speed:399.000000 +I (160094) example: expect speed: 0.000000 real_pulses:0 +I (160094) example: new speed:399.000000 +I (160104) example: expect speed: 0.000000 real_pulses:0 +I (160114) example: new speed:399.000000 +I (160114) example: expect speed: 0.000000 real_pulses:0 +I (160114) example: new speed:399.000000 +I (160124) example: expect speed: 0.000000 real_pulses:0 +I (160124) example: new speed:399.000000 +I (160134) example: expect speed: 0.000000 real_pulses:0 +I (160134) example: new speed:399.000000 +I (160144) example: expect speed: 0.000000 real_pulses:0 +I (160144) example: new speed:399.000000 +I (160154) example: expect speed: 0.000000 real_pulses:0 +I (160154) example: new speed:399.000000 +I (160164) example: expect speed: 0.000000 real_pulses:0 +I (160164) example: new speed:399.000000 +I (160174) example: expect speed: 0.000000 real_pulses:0 +I (160174) example: new speed:399.000000 +I (160184) example: expect speed: 0.000000 real_pulses:0 +I (160184) example: new speed:399.000000 +I (160194) example: expect speed: 0.000000 real_pulses:0 +I (160194) example: new speed:399.000000 +I (160204) example: expect speed: 0.000000 real_pulses:0 +I (160204) example: new speed:399.000000 +I (160214) example: expect speed: 0.000000 real_pulses:0 +I (160214) example: new speed:399.000000 +I (160224) example: expect speed: 0.000000 real_pulses:0 +I (160224) example: new speed:399.000000 +I (160234) example: expect speed: 0.000000 real_pulses:0 +I (160234) example: new speed:399.000000 +I (160244) example: expect speed: 0.000000 real_pulses:0 +I (160244) example: new speed:399.000000 +I (160254) example: expect speed: 0.000000 real_pulses:0 +I (160254) example: new speed:399.000000 +I (160264) example: expect speed: 0.000000 real_pulses:0 +I (160264) example: new speed:399.000000 +I (160274) example: expect speed: 0.000000 real_pulses:0 +I (160274) example: new speed:399.000000 +I (160284) example: expect speed: 0.000000 real_pulses:0 +I (160284) example: new speed:399.000000 +I (160294) example: expect speed: 0.000000 real_pulses:0 +I (160294) example: new speed:399.000000 +I (160304) example: expect speed: 0.000000 real_pulses:0 +I (160304) example: new speed:399.000000 +I (160314) example: expect speed: 0.000000 real_pulses:0 +I (160314) example: new speed:399.000000 +I (160324) example: expect speed: 0.000000 real_pulses:0 +I (160324) example: new speed:399.000000 +I (160334) example: expect speed: 0.000000 real_pulses:0 +I (160334) example: new speed:399.000000 +I (160344) example: expect speed: 0.000000 real_pulses:0 +I (160344) example: new speed:399.000000 +I (160354) example: expect speed: 0.000000 real_pulses:0 +I (160354) example: new speed:399.000000 +I (160364) example: expect speed: 0.000000 real_pulses:0 +I (160364) example: new speed:399.000000 +I (160374) example: expect speed: 0.000000 real_pulses:0 +I (160374) example: new speed:399.000000 +I (160384) example: expect speed: 0.000000 real_pulses:0 +I (160384) example: new speed:399.000000 +I (160394) example: expect speed: 0.000000 real_pulses:0 +I (160394) example: new speed:399.000000 +I (160404) example: expect speed: 0.000000 real_pulses:0 +I (160404) example: new speed:399.000000 +I (160414) example: expect speed: 0.000000 real_pulses:0 +I (160414) example: new speed:399.000000 +I (160424) example: expect speed: 0.000000 real_pulses:0 +I (160424) example: new speed:399.000000 +I (160434) example: expect speed: 0.000000 real_pulses:0 +I (160434) example: new speed:399.000000 +I (160444) example: expect speed: 0.000000 real_pulses:0 +I (160444) example: new speed:399.000000 +I (160454) example: expect speed: 0.000000 real_pulses:0 +I (160454) example: new speed:399.000000 +I (160464) example: expect speed: 0.000000 real_pulses:0 +I (160464) example: new speed:399.000000 +I (160474) example: expect speed: 0.000000 real_pulses:0 +I (160474) example: new speed:399.000000 +I (160484) example: expect speed: 0.000000 real_pulses:0 +I (160484) example: new speed:399.000000 +I (160494) example: expect speed: 0.000000 real_pulses:0 +I (160494) example: new speed:399.000000 +I (160504) example: expect speed: 0.000000 real_pulses:0 +I (160514) example: new speed:399.000000 +I (160514) example: expect speed: 0.000000 real_pulses:0 +I (160514) example: new speed:399.000000 +I (160524) example: expect speed: 0.000000 real_pulses:0 +I (160524) example: new speed:399.000000 +I (160534) example: expect speed: 0.000000 real_pulses:0 +I (160534) example: new speed:399.000000 +I (160544) example: expect speed: 0.000000 real_pulses:0 +I (160544) example: new speed:399.000000 +I (160554) example: expect speed: 0.000000 real_pulses:0 +I (160554) example: new speed:399.000000 +I (160564) example: expect speed: 0.000000 real_pulses:0 +I (160564) example: new speed:399.000000 +I (160574) example: expect speed: 0.000000 real_pulses:0 +I (160574) example: new speed:399.000000 +I (160584) example: expect speed: 0.000000 real_pulses:0 +I (160584) example: new speed:399.000000 +I (160594) example: expect speed: 0.000000 real_pulses:0 +I (160594) example: new speed:399.000000 +I (160604) example: expect speed: 0.000000 real_pulses:0 +I (160604) example: new speed:399.000000 +I (160614) example: expect speed: 0.000000 real_pulses:0 +I (160614) example: new speed:399.000000 +I (160624) example: expect speed: 0.000000 real_pulses:0 +I (160624) example: new speed:399.000000 +I (160634) example: expect speed: 0.000000 real_pulses:0 +I (160634) example: new speed:399.000000 +I (160644) example: expect speed: 0.000000 real_pulses:0 +I (160644) example: new speed:399.000000 +I (160654) example: expect speed: 0.000000 real_pulses:0 +I (160654) example: new speed:399.000000 +I (160664) example: expect speed: 0.000000 real_pulses:0 +I (160664) example: new speed:399.000000 +I (160674) example: expect speed: 0.000000 real_pulses:0 +I (160674) example: new speed:399.000000 +I (160684) example: expect speed: 0.000000 real_pulses:0 +I (160684) example: new speed:399.000000 +I (160694) example: expect speed: 0.000000 real_pulses:0 +I (160694) example: new speed:399.000000 +I (160704) example: expect speed: 0.000000 real_pulses:0 +I (160704) example: new speed:399.000000 +I (160714) example: expect speed: 0.000000 real_pulses:0 +I (160724) example: new speed:399.000000 +I (160724) example: expect speed: 0.000000 real_pulses:0 +I (160724) example: new speed:399.000000 +I (160734) example: expect speed: 0.000000 real_pulses:0 +I (160734) example: new speed:399.000000 +I (160744) example: expect speed: 0.000000 real_pulses:0 +I (160744) example: new speed:399.000000 +I (160754) example: expect speed: 0.000000 real_pulses:0 +I (160754) example: new speed:399.000000 +I (160764) example: expect speed: 0.000000 real_pulses:0 +I (160764) example: new speed:399.000000 +I (160774) example: expect speed: 0.000000 real_pulses:0 +I (160774) example: new speed:399.000000 +I (160784) example: expect speed: 0.000000 real_pulses:0 +I (160784) example: new speed:399.000000 +I (160794) example: expect speed: 0.000000 real_pulses:0 +I (160794) example: new speed:399.000000 +I (160804) example: expect speed: 0.000000 real_pulses:0 +I (160804) example: new speed:399.000000 +I (160814) example: expect speed: 0.000000 real_pulses:0 +I (160814) example: new speed:399.000000 +I (160824) example: expect speed: 0.000000 real_pulses:0 +I (160824) example: new speed:399.000000 +I (160834) example: expect speed: 0.000000 real_pulses:0 +I (160834) example: new speed:399.000000 +I (160844) example: expect speed: 0.000000 real_pulses:0 +I (160844) example: new speed:399.000000 +I (160854) example: expect speed: 0.000000 real_pulses:0 +I (160854) example: new speed:399.000000 +I (160864) example: expect speed: 0.000000 real_pulses:0 +I (160864) example: new speed:399.000000 +I (160874) example: expect speed: 0.000000 real_pulses:0 +I (160874) example: new speed:399.000000 +I (160884) example: expect speed: 0.000000 real_pulses:0 +I (160884) example: new speed:399.000000 +I (160894) example: expect speed: 0.000000 real_pulses:0 +I (160894) example: new speed:399.000000 +I (160904) example: expect speed: 0.000000 real_pulses:0 +I (160904) example: new speed:399.000000 +I (160914) example: expect speed: 0.000000 real_pulses:0 +I (160924) example: new speed:399.000000 +I (160924) example: expect speed: 0.000000 real_pulses:0 +I (160934) example: new speed:399.000000 +I (160934) example: expect speed: 0.000000 real_pulses:0 +I (160934) example: new speed:399.000000 +I (160944) example: expect speed: 0.000000 real_pulses:0 +I (160944) example: new speed:399.000000 +I (160954) example: expect speed: 0.000000 real_pulses:0 +I (160954) example: new speed:399.000000 +I (160964) example: expect speed: 0.000000 real_pulses:0 +I (160964) example: new speed:399.000000 +I (160974) example: expect speed: 0.000000 real_pulses:0 +I (160974) example: new speed:399.000000 +I (160984) example: expect speed: 0.000000 real_pulses:0 +I (160984) example: new speed:399.000000 +I (160994) example: expect speed: 0.000000 real_pulses:0 +I (160994) example: new speed:399.000000 +I (161004) example: expect speed: 0.000000 real_pulses:0 +I (161004) example: new speed:399.000000 +I (161014) example: expect speed: 0.000000 real_pulses:0 +I (161014) example: new speed:399.000000 +I (161024) example: expect speed: 0.000000 real_pulses:0 +I (161034) example: new speed:399.000000 +I (161034) modbus tcp: ModBusSlave_recv() +I (161034) modbus: ModbusSlaveProcess() +I (161034) modbus: check id... +I (161034) modbus: ok +I (161034) modbus: add: 0, length: 10 +I (161034) modbus: Read Holding Registers +I (161034) example: expect speed: 0.000000 real_pulses:0 +I (161044) example: new speed:399.000000 +I (161044) example: expect speed: 0.000000 real_pulses:0 +I (161044) example: new speed:399.000000 +I (161054) example: expect speed: 0.000000 real_pulses:0 +I (161054) example: new speed:399.000000 +I (161064) example: expect speed: 0.000000 real_pulses:0 +I (161064) example: new speed:399.000000 +I (161074) example: expect speed: 0.000000 real_pulses:0 +I (161074) example: new speed:399.000000 +I (161084) example: expect speed: 0.000000 real_pulses:0 +I (161084) example: new speed:399.000000 +I (161094) example: expect speed: 0.000000 real_pulses:0 +I (161094) example: new speed:399.000000 +I (161104) example: expect speed: 0.000000 real_pulses:0 +I (161114) example: new speed:399.000000 +I (161114) example: expect speed: 0.000000 real_pulses:0 +I (161114) example: new speed:399.000000 +I (161124) example: expect speed: 0.000000 real_pulses:0 +I (161134) example: new speed:399.000000 +I (161134) example: expect speed: 0.000000 real_pulses:0 +I (161134) example: new speed:399.000000 +I (161144) example: expect speed: 0.000000 real_pulses:0 +I (161144) example: new speed:399.000000 +I (161154) example: expect speed: 0.000000 real_pulses:0 +I (161154) example: new speed:399.000000 +I (161164) example: expect speed: 0.000000 real_pulses:0 +I (161164) example: new speed:399.000000 +I (161174) example: expect speed: 0.000000 real_pulses:0 +I (161184) example: new speed:399.000000 +I (161184) example: expect speed: 0.000000 real_pulses:0 +I (161184) example: new speed:399.000000 +I (161194) example: expect speed: 0.000000 real_pulses:0 +I (161194) example: new speed:399.000000 +I (161204) example: expect speed: 0.000000 real_pulses:0 +I (161204) example: new speed:399.000000 +I (161214) example: expect speed: 0.000000 real_pulses:0 +I (161214) example: new speed:399.000000 +I (161224) example: expect speed: 0.000000 real_pulses:0 +I (161224) example: new speed:399.000000 +I (161234) example: expect speed: 0.000000 real_pulses:0 +I (161234) example: new speed:399.000000 +I (161244) example: expect speed: 0.000000 real_pulses:0 +I (161244) example: new speed:399.000000 +I (161254) example: expect speed: 0.000000 real_pulses:0 +I (161254) example: new speed:399.000000 +I (161264) example: expect speed: 0.000000 real_pulses:0 +I (161264) example: new speed:399.000000 +I (161274) example: expect speed: 0.000000 real_pulses:0 +I (161274) example: new speed:399.000000 +I (161284) example: expect speed: 0.000000 real_pulses:0 +I (161284) example: new speed:399.000000 +I (161294) example: expect speed: 0.000000 real_pulses:0 +I (161294) example: new speed:399.000000 +I (161304) example: expect speed: 0.000000 real_pulses:0 +I (161304) example: new speed:399.000000 +I (161314) example: expect speed: 0.000000 real_pulses:0 +I (161314) example: new speed:399.000000 +I (161324) example: expect speed: 0.000000 real_pulses:0 +I (161324) example: new speed:399.000000 +I (161334) example: expect speed: 0.000000 real_pulses:0 +I (161334) example: new speed:399.000000 +I (161344) example: expect speed: 0.000000 real_pulses:0 +I (161344) example: new speed:399.000000 +I (161354) example: expect speed: 0.000000 real_pulses:0 +I (161354) example: new speed:399.000000 +I (161364) example: expect speed: 0.000000 real_pulses:0 +I (161364) example: new speed:399.000000 +I (161374) example: expect speed: 0.000000 real_pulses:0 +I (161374) example: new speed:399.000000 +I (161384) example: expect speed: 0.000000 real_pulses:0 +I (161384) example: new speed:399.000000 +I (161394) example: expect speed: 0.000000 real_pulses:0 +I (161394) example: new speed:399.000000 +I (161404) example: expect speed: 0.000000 real_pulses:0 +I (161404) example: new speed:399.000000 +I (161414) example: expect speed: 0.000000 real_pulses:0 +I (161414) example: new speed:399.000000 +I (161424) example: expect speed: 0.000000 real_pulses:0 +I (161424) example: new speed:399.000000 +I (161434) example: expect speed: 0.000000 real_pulses:0 +I (161444) example: new speed:399.000000 +I (161444) example: expect speed: 0.000000 real_pulses:0 +I (161444) example: new speed:399.000000 +I (161454) example: expect speed: 0.000000 real_pulses:0 +I (161454) example: new speed:399.000000 +I (161464) example: expect speed: 0.000000 real_pulses:0 +I (161464) example: new speed:399.000000 +I (161474) example: expect speed: 0.000000 real_pulses:0 +I (161474) example: new speed:399.000000 +I (161484) example: expect speed: 0.000000 real_pulses:0 +I (161484) example: new speed:399.000000 +I (161494) example: expect speed: 0.000000 real_pulses:0 +I (161494) example: new speed:399.000000 +I (161504) example: expect speed: 0.000000 real_pulses:0 +I (161504) example: new speed:399.000000 +I (161514) example: expect speed: 0.000000 real_pulses:0 +I (161514) example: new speed:399.000000 +I (161524) example: expect speed: 0.000000 real_pulses:0 +I (161524) example: new speed:399.000000 +I (161534) example: expect speed: 0.000000 real_pulses:0 +I (161534) example: new speed:399.000000 +I (161544) example: expect speed: 0.000000 real_pulses:0 +I (161544) example: new speed:399.000000 +I (161554) example: expect speed: 0.000000 real_pulses:0 +I (161554) example: new speed:399.000000 +I (161564) example: expect speed: 0.000000 real_pulses:0 +I (161564) example: new speed:399.000000 +I (161574) example: expect speed: 0.000000 real_pulses:0 +I (161574) example: new speed:399.000000 +I (161584) example: expect speed: 0.000000 real_pulses:0 +I (161584) example: new speed:399.000000 +I (161594) example: expect speed: 0.000000 real_pulses:0 +I (161594) example: new speed:399.000000 +I (161604) example: expect speed: 0.000000 real_pulses:0 +I (161604) example: new speed:399.000000 +I (161614) example: expect speed: 0.000000 real_pulses:0 +I (161614) example: new speed:399.000000 +I (161624) example: expect speed: 0.000000 real_pulses:0 +I (161624) example: new speed:399.000000 +I (161634) example: expect speed: 0.000000 real_pulses:0 +I (161644) example: new speed:399.000000 +I (161644) example: expect speed: 0.000000 real_pulses:0 +I (161654) example: new speed:399.000000 +I (161654) example: expect speed: 0.000000 real_pulses:0 +I (161654) example: new speed:399.000000 +I (161664) example: expect speed: 0.000000 real_pulses:0 +I (161664) example: new speed:399.000000 +I (161674) example: expect speed: 0.000000 real_pulses:0 +I (161674) example: new speed:399.000000 +I (161684) example: expect speed: 0.000000 real_pulses:0 +I (161684) example: new speed:399.000000 +I (161694) example: expect speed: 0.000000 real_pulses:0 +I (161694) example: new speed:399.000000 +I (161704) example: expect speed: 0.000000 real_pulses:0 +I (161704) example: new speed:399.000000 +I (161714) example: expect speed: 0.000000 real_pulses:0 +I (161714) example: new speed:399.000000 +I (161724) example: expect speed: 0.000000 real_pulses:0 +I (161724) example: new speed:399.000000 +I (161734) example: expect speed: 0.000000 real_pulses:0 +I (161734) example: new speed:399.000000 +I (161744) example: expect speed: 0.000000 real_pulses:0 +I (161744) example: new speed:399.000000 +I (161754) example: expect speed: 0.000000 real_pulses:0 +I (161754) example: new speed:399.000000 +I (161764) example: expect speed: 0.000000 real_pulses:0 +I (161764) example: new speed:399.000000 +I (161774) example: expect speed: 0.000000 real_pulses:0 +I (161774) example: new speed:399.000000 +I (161784) example: expect speed: 0.000000 real_pulses:0 +I (161784) example: new speed:399.000000 +I (161794) example: expect speed: 0.000000 real_pulses:0 +I (161794) example: new speed:399.000000 +I (161804) example: expect speed: 0.000000 real_pulses:0 +I (161804) example: new speed:399.000000 +I (161814) example: expect speed: 0.000000 real_pulses:0 +I (161814) example: new speed:399.000000 +I (161824) example: expect speed: 0.000000 real_pulses:0 +I (161824) example: new speed:399.000000 +I (161834) example: expect speed: 0.000000 real_pulses:0 +I (161834) example: new speed:399.000000 +I (161844) example: expect speed: 0.000000 real_pulses:0 +I (161844) example: new speed:399.000000 +I (161854) example: expect speed: 0.000000 real_pulses:0 +I (161854) example: new speed:399.000000 +I (161864) example: expect speed: 0.000000 real_pulses:0 +I (161864) example: new speed:399.000000 +I (161874) example: expect speed: 0.000000 real_pulses:0 +I (161874) example: new speed:399.000000 +I (161884) example: expect speed: 0.000000 real_pulses:0 +I (161884) example: new speed:399.000000 +I (161894) example: expect speed: 0.000000 real_pulses:0 +I (161894) example: new speed:399.000000 +I (161904) example: expect speed: 0.000000 real_pulses:0 +I (161904) example: new speed:399.000000 +I (161914) example: expect speed: 0.000000 real_pulses:0 +I (161914) example: new speed:399.000000 +I (161924) example: expect speed: 0.000000 real_pulses:0 +I (161924) example: new speed:399.000000 +I (161934) example: expect speed: 0.000000 real_pulses:0 +I (161934) example: new speed:399.000000 +I (161944) example: expect speed: 0.000000 real_pulses:0 +I (161944) example: new speed:399.000000 +I (161954) example: expect speed: 0.000000 real_pulses:0 +I (161954) example: new speed:399.000000 +I (161964) example: expect speed: 0.000000 real_pulses:0 +I (161964) example: new speed:399.000000 +I (161974) example: expect speed: 0.000000 real_pulses:0 +I (161974) example: new speed:399.000000 +I (161984) example: expect speed: 0.000000 real_pulses:0 +I (161984) example: new speed:399.000000 +I (161994) example: expect speed: 0.000000 real_pulses:0 +I (161994) example: new speed:399.000000 +I (162004) example: expect speed: 0.000000 real_pulses:0 +I (162004) example: new speed:399.000000 +I (162014) example: expect speed: 0.000000 real_pulses:0 +I (162014) example: new speed:399.000000 +I (162024) example: expect speed: 0.000000 real_pulses:0 +I (162024) example: new speed:399.000000 +I (162034) example: expect speed: 0.000000 real_pulses:0 +I (162034) example: new speed:399.000000 +I (162044) example: expect speed: 0.000000 real_pulses:0 +I (162054) modbus tcp: ModBusSlave_recv() +I (162054) example: new speed:399.000000 +I (162054) modbus: ModbusSlaveProcess() +I (162054) modbus: check id... +I (162054) modbus: ok +I (162054) modbus: add: 0, length: 10 +I (162054) modbus: Read Holding Registers +I (162054) example: expect speed: 0.000000 real_pulses:0 +I (162064) example: new speed:399.000000 +I (162064) example: expect speed: 0.000000 real_pulses:0 +I (162064) example: new speed:399.000000 +I (162074) example: expect speed: 0.000000 real_pulses:0 +I (162074) example: new speed:399.000000 +I (162084) example: expect speed: 0.000000 real_pulses:0 +I (162084) example: new speed:399.000000 +I (162094) example: expect speed: 0.000000 real_pulses:0 +I (162094) example: new speed:399.000000 +I (162104) example: expect speed: 0.000000 real_pulses:0 +I (162114) example: new speed:399.000000 +I (162114) example: expect speed: 0.000000 real_pulses:0 +I (162114) example: new speed:399.000000 +I (162124) example: expect speed: 0.000000 real_pulses:0 +I (162124) example: new speed:399.000000 +I (162134) example: expect speed: 0.000000 real_pulses:0 +I (162134) example: new speed:399.000000 +I (162144) example: expect speed: 0.000000 real_pulses:0 +I (162154) example: new speed:399.000000 +I (162154) example: expect speed: 0.000000 real_pulses:0 +I (162154) example: new speed:399.000000 +I (162164) example: expect speed: 0.000000 real_pulses:0 +I (162164) example: new speed:399.000000 +I (162174) example: expect speed: 0.000000 real_pulses:0 +I (162174) example: new speed:399.000000 +I (162184) example: expect speed: 0.000000 real_pulses:0 +I (162184) example: new speed:399.000000 +I (162194) example: expect speed: 0.000000 real_pulses:0 +I (162194) example: new speed:399.000000 +I (162204) example: expect speed: 0.000000 real_pulses:0 +I (162214) example: new speed:399.000000 +I (162214) example: expect speed: 0.000000 real_pulses:0 +I (162214) example: new speed:399.000000 +I (162224) example: expect speed: 0.000000 real_pulses:0 +I (162224) example: new speed:399.000000 +I (162234) example: expect speed: 0.000000 real_pulses:0 +I (162234) example: new speed:399.000000 +I (162244) example: expect speed: 0.000000 real_pulses:0 +I (162244) example: new speed:399.000000 +I (162254) example: expect speed: 0.000000 real_pulses:0 +I (162254) example: new speed:399.000000 +I (162264) example: expect speed: 0.000000 real_pulses:0 +I (162264) example: new speed:399.000000 +I (162274) example: expect speed: 0.000000 real_pulses:0 +I (162274) example: new speed:399.000000 +I (162284) example: expect speed: 0.000000 real_pulses:0 +I (162284) example: new speed:399.000000 +I (162294) example: expect speed: 0.000000 real_pulses:0 +I (162294) example: new speed:399.000000 +I (162304) example: expect speed: 0.000000 real_pulses:0 +I (162304) example: new speed:399.000000 +I (162314) example: expect speed: 0.000000 real_pulses:0 +I (162314) example: new speed:399.000000 +I (162324) example: expect speed: 0.000000 real_pulses:0 +I (162324) example: new speed:399.000000 +I (162334) example: expect speed: 0.000000 real_pulses:0 +I (162334) example: new speed:399.000000 +I (162344) example: expect speed: 0.000000 real_pulses:0 +I (162344) example: new speed:399.000000 +I (162354) example: expect speed: 0.000000 real_pulses:0 +I (162354) example: new speed:399.000000 +I (162364) example: expect speed: 0.000000 real_pulses:0 +I (162364) example: new speed:399.000000 +I (162374) example: expect speed: 0.000000 real_pulses:0 +I (162374) example: new speed:399.000000 +I (162384) example: expect speed: 0.000000 real_pulses:0 +I (162384) example: new speed:399.000000 +I (162394) example: expect speed: 0.000000 real_pulses:0 +I (162394) example: new speed:399.000000 +I (162404) example: expect speed: 0.000000 real_pulses:0 +I (162404) example: new speed:399.000000 +I (162414) example: expect speed: 0.000000 real_pulses:0 +I (162414) example: new speed:399.000000 +I (162424) example: expect speed: 0.000000 real_pulses:0 +I (162424) example: new speed:399.000000 +I (162434) example: expect speed: 0.000000 real_pulses:0 +I (162434) example: new speed:399.000000 +I (162444) example: expect speed: 0.000000 real_pulses:0 +I (162444) example: new speed:399.000000 +I (162454) example: expect speed: 0.000000 real_pulses:0 +I (162464) example: new speed:399.000000 +I (162464) example: expect speed: 0.000000 real_pulses:0 +I (162464) example: new speed:399.000000 +I (162474) example: expect speed: 0.000000 real_pulses:0 +I (162474) example: new speed:399.000000 +I (162484) example: expect speed: 0.000000 real_pulses:0 +I (162484) example: new speed:399.000000 +I (162494) example: expect speed: 0.000000 real_pulses:0 +I (162494) example: new speed:399.000000 +I (162504) example: expect speed: 0.000000 real_pulses:0 +I (162504) example: new speed:399.000000 +I (162514) example: expect speed: 0.000000 real_pulses:0 +I (162514) example: new speed:399.000000 +I (162524) example: expect speed: 0.000000 real_pulses:0 +I (162524) example: new speed:399.000000 +I (162534) example: expect speed: 0.000000 real_pulses:0 +I (162534) example: new speed:399.000000 +I (162544) example: expect speed: 0.000000 real_pulses:0 +I (162544) example: new speed:399.000000 +I (162554) example: expect speed: 0.000000 real_pulses:0 +I (162554) example: new speed:399.000000 +I (162564) example: expect speed: 0.000000 real_pulses:0 +I (162564) example: new speed:399.000000 +I (162574) example: expect speed: 0.000000 real_pulses:0 +I (162574) example: new speed:399.000000 +I (162584) example: expect speed: 0.000000 real_pulses:0 +I (162584) example: new speed:399.000000 +I (162594) example: expect speed: 0.000000 real_pulses:0 +I (162594) example: new speed:399.000000 +I (162604) example: expect speed: 0.000000 real_pulses:0 +I (162604) example: new speed:399.000000 +I (162614) example: expect speed: 0.000000 real_pulses:0 +I (162614) example: new speed:399.000000 +I (162624) example: expect speed: 0.000000 real_pulses:0 +I (162624) example: new speed:399.000000 +I (162634) example: expect speed: 0.000000 real_pulses:0 +I (162634) example: new speed:399.000000 +I (162644) example: expect speed: 0.000000 real_pulses:0 +I (162644) example: new speed:399.000000 +I (162654) example: expect speed: 0.000000 real_pulses:0 +I (162654) example: new speed:399.000000 +I (162664) example: expect speed: 0.000000 real_pulses:0 +I (162664) example: new speed:399.000000 +I (162674) example: expect speed: 0.000000 real_pulses:0 +I (162674) example: new speed:399.000000 +I (162684) example: expect speed: 0.000000 real_pulses:0 +I (162684) example: new speed:399.000000 +I (162694) example: expect speed: 0.000000 real_pulses:0 +I (162694) example: new speed:399.000000 +I (162704) example: expect speed: 0.000000 real_pulses:0 +I (162704) example: new speed:399.000000 +I (162714) example: expect speed: 0.000000 real_pulses:0 +I (162714) example: new speed:399.000000 +I (162724) example: expect speed: 0.000000 real_pulses:0 +I (162724) example: new speed:399.000000 +I (162734) example: expect speed: 0.000000 real_pulses:0 +I (162734) example: new speed:399.000000 +I (162744) example: expect speed: 0.000000 real_pulses:0 +I (162744) example: new speed:399.000000 +I (162754) example: expect speed: 0.000000 real_pulses:0 +I (162754) example: new speed:399.000000 +I (162764) example: expect speed: 0.000000 real_pulses:0 +I (162764) example: new speed:399.000000 +I (162774) example: expect speed: 0.000000 real_pulses:0 +I (162774) example: new speed:399.000000 +I (162784) example: expect speed: 0.000000 real_pulses:0 +I (162784) example: new speed:399.000000 +I (162794) example: expect speed: 0.000000 real_pulses:0 +I (162794) example: new speed:399.000000 +I (162804) example: expect speed: 0.000000 real_pulses:0 +I (162804) example: new speed:399.000000 +I (162814) example: expect speed: 0.000000 real_pulses:0 +I (162814) example: new speed:399.000000 +I (162824) example: expect speed: 0.000000 real_pulses:0 +I (162824) example: new speed:399.000000 +I (162834) example: expect speed: 0.000000 real_pulses:0 +I (162834) example: new speed:399.000000 +I (162844) example: expect speed: 0.000000 real_pulses:0 +I (162844) example: new speed:399.000000 +I (162854) example: expect speed: 0.000000 real_pulses:0 +I (162854) example: new speed:399.000000 +I (162864) example: expect speed: 0.000000 real_pulses:0 +I (162864) example: new speed:399.000000 +I (162874) example: expect speed: 0.000000 real_pulses:0 +I (162874) example: new speed:399.000000 +I (162884) example: expect speed: 0.000000 real_pulses:0 +I (162884) example: new speed:399.000000 +I (162894) example: expect speed: 0.000000 real_pulses:0 +I (162894) example: new speed:399.000000 +I (162904) example: expect speed: 0.000000 real_pulses:0 +I (162904) example: new speed:399.000000 +I (162914) example: expect speed: 0.000000 real_pulses:0 +I (162914) example: new speed:399.000000 +I (162924) example: expect speed: 0.000000 real_pulses:0 +I (162924) example: new speed:399.000000 +I (162934) example: expect speed: 0.000000 real_pulses:0 +I (162934) example: new speed:399.000000 +I (162944) example: expect speed: 0.000000 real_pulses:0 +I (162944) example: new speed:399.000000 +I (162954) example: expect speed: 0.000000 real_pulses:0 +I (162954) example: new speed:399.000000 +I (162964) example: expect speed: 0.000000 real_pulses:0 +I (162974) example: new speed:399.000000 +I (162974) example: expect speed: 0.000000 real_pulses:0 +I (162984) example: new speed:399.000000 +I (162984) example: expect speed: 0.000000 real_pulses:0 +I (162984) example: new speed:399.000000 +I (162994) example: expect speed: 0.000000 real_pulses:0 +I (162994) example: new speed:399.000000 +I (163004) example: expect speed: 0.000000 real_pulses:0 +I (163004) example: new speed:399.000000 +I (163014) example: expect speed: 0.000000 real_pulses:0 +I (163014) example: new speed:399.000000 +I (163024) example: expect speed: 0.000000 real_pulses:0 +I (163024) example: new speed:399.000000 +I (163034) example: expect speed: 0.000000 real_pulses:0 +I (163034) example: new speed:399.000000 +I (163044) example: expect speed: 0.000000 real_pulses:0 +I (163044) example: new speed:399.000000 +I (163054) example: expect speed: 0.000000 real_pulses:0 +I (163054) example: new speed:399.000000 +I (163064) example: expect speed: 0.000000 real_pulses:0 +I (163064) example: new speed:399.000000 +I (163074) example: expect speed: 0.000000 real_pulses:0 +I (163084) example: new speed:399.000000 +I (163084) modbus tcp: ModBusSlave_recv() +I (163084) modbus: ModbusSlaveProcess() +I (163084) modbus: check id... +I (163084) modbus: ok +I (163084) modbus: add: 0, length: 10 +I (163084) modbus: Read Holding Registers +I (163084) example: expect speed: 0.000000 real_pulses:0 +I (163094) example: new speed:399.000000 +I (163094) example: expect speed: 0.000000 real_pulses:0 +I (163094) example: new speed:399.000000 +I (163104) example: expect speed: 0.000000 real_pulses:0 +I (163104) example: new speed:399.000000 +I (163114) example: expect speed: 0.000000 real_pulses:0 +I (163114) example: new speed:399.000000 +I (163124) example: expect speed: 0.000000 real_pulses:0 +I (163124) example: new speed:399.000000 +I (163134) example: expect speed: 0.000000 real_pulses:0 +I (163144) example: new speed:399.000000 +I (163144) example: expect speed: 0.000000 real_pulses:0 +I (163144) example: new speed:399.000000 +I (163154) example: expect speed: 0.000000 real_pulses:0 +I (163154) example: new speed:399.000000 +I (163164) example: expect speed: 0.000000 real_pulses:0 +I (163164) example: new speed:399.000000 +I (163174) example: expect speed: 0.000000 real_pulses:0 +I (163174) example: new speed:399.000000 +I (163184) example: expect speed: 0.000000 real_pulses:0 +I (163184) example: new speed:399.000000 +I (163194) example: expect speed: 0.000000 real_pulses:0 +I (163194) example: new speed:399.000000 +I (163204) example: expect speed: 0.000000 real_pulses:0 +I (163204) example: new speed:399.000000 +I (163214) example: expect speed: 0.000000 real_pulses:0 +I (163214) example: new speed:399.000000 +I (163224) example: expect speed: 0.000000 real_pulses:0 +I (163224) example: new speed:399.000000 +I (163234) example: expect speed: 0.000000 real_pulses:0 +I (163234) example: new speed:399.000000 +I (163244) example: expect speed: 0.000000 real_pulses:0 +I (163244) example: new speed:399.000000 +I (163254) example: expect speed: 0.000000 real_pulses:0 +I (163254) example: new speed:399.000000 +I (163264) example: expect speed: 0.000000 real_pulses:0 +I (163264) example: new speed:399.000000 +I (163274) example: expect speed: 0.000000 real_pulses:0 +I (163274) example: new speed:399.000000 +I (163284) example: expect speed: 0.000000 real_pulses:0 +I (163284) example: new speed:399.000000 +I (163294) example: expect speed: 0.000000 real_pulses:0 +I (163294) example: new speed:399.000000 +I (163304) example: expect speed: 0.000000 real_pulses:0 +I (163304) example: new speed:399.000000 +I (163314) example: expect speed: 0.000000 real_pulses:0 +I (163314) example: new speed:399.000000 +I (163324) example: expect speed: 0.000000 real_pulses:0 +I (163324) example: new speed:399.000000 +I (163334) example: expect speed: 0.000000 real_pulses:0 +I (163334) example: new speed:399.000000 +I (163344) example: expect speed: 0.000000 real_pulses:0 +I (163344) example: new speed:399.000000 +I (163354) example: expect speed: 0.000000 real_pulses:0 +I (163354) example: new speed:399.000000 +I (163364) example: expect speed: 0.000000 real_pulses:0 +I (163364) example: new speed:399.000000 +I (163374) example: expect speed: 0.000000 real_pulses:0 +I (163374) example: new speed:399.000000 +I (163384) example: expect speed: 0.000000 real_pulses:0 +I (163384) example: new speed:399.000000 +I (163394) example: expect speed: 0.000000 real_pulses:0 +I (163394) example: new speed:399.000000 +I (163404) example: expect speed: 0.000000 real_pulses:0 +I (163404) example: new speed:399.000000 +I (163414) example: expect speed: 0.000000 real_pulses:0 +I (163414) example: new speed:399.000000 +I (163424) example: expect speed: 0.000000 real_pulses:0 +I (163424) example: new speed:399.000000 +I (163434) example: expect speed: 0.000000 real_pulses:0 +I (163434) example: new speed:399.000000 +I (163444) example: expect speed: 0.000000 real_pulses:0 +I (163444) example: new speed:399.000000 +I (163454) example: expect speed: 0.000000 real_pulses:0 +I (163454) example: new speed:399.000000 +I (163464) example: expect speed: 0.000000 real_pulses:0 +I (163464) example: new speed:399.000000 +I (163474) example: expect speed: 0.000000 real_pulses:0 +I (163484) example: new speed:399.000000 +I (163484) example: expect speed: 0.000000 real_pulses:0 +I (163484) example: new speed:399.000000 +I (163494) example: expect speed: 0.000000 real_pulses:0 +I (163494) example: new speed:399.000000 +I (163504) example: expect speed: 0.000000 real_pulses:0 +I (163504) example: new speed:399.000000 +I (163514) example: expect speed: 0.000000 real_pulses:0 +I (163514) example: new speed:399.000000 +I (163524) example: expect speed: 0.000000 real_pulses:0 +I (163524) example: new speed:399.000000 +I (163534) example: expect speed: 0.000000 real_pulses:0 +I (163534) example: new speed:399.000000 +I (163544) example: expect speed: 0.000000 real_pulses:0 +I (163544) example: new speed:399.000000 +I (163554) example: expect speed: 0.000000 real_pulses:0 +I (163554) example: new speed:399.000000 +I (163564) example: expect speed: 0.000000 real_pulses:0 +I (163564) example: new speed:399.000000 +I (163574) example: expect speed: 0.000000 real_pulses:0 +I (163574) example: new speed:399.000000 +I (163584) example: expect speed: 0.000000 real_pulses:0 +I (163584) example: new speed:399.000000 +I (163594) example: expect speed: 0.000000 real_pulses:0 +I (163594) example: new speed:399.000000 +I (163604) example: expect speed: 0.000000 real_pulses:0 +I (163604) example: new speed:399.000000 +I (163614) example: expect speed: 0.000000 real_pulses:0 +I (163614) example: new speed:399.000000 +I (163624) example: expect speed: 0.000000 real_pulses:0 +I (163624) example: new speed:399.000000 +I (163634) example: expect speed: 0.000000 real_pulses:0 +I (163634) example: new speed:399.000000 +I (163644) example: expect speed: 0.000000 real_pulses:0 +I (163644) example: new speed:399.000000 +I (163654) example: expect speed: 0.000000 real_pulses:0 +I (163654) example: new speed:399.000000 +I (163664) example: expect speed: 0.000000 real_pulses:0 +I (163664) example: new speed:399.000000 +I (163674) example: expect speed: 0.000000 real_pulses:0 +I (163674) example: new speed:399.000000 +I (163684) example: expect speed: 0.000000 real_pulses:0 +I (163694) example: new speed:399.000000 +I (163694) example: expect speed: 0.000000 real_pulses:0 +I (163694) example: new speed:399.000000 +I (163704) example: expect speed: 0.000000 real_pulses:0 +I (163704) example: new speed:399.000000 +I (163714) example: expect speed: 0.000000 real_pulses:0 +I (163714) example: new speed:399.000000 +I (163724) example: expect speed: 0.000000 real_pulses:0 +I (163724) example: new speed:399.000000 +I (163734) example: expect speed: 0.000000 real_pulses:0 +I (163734) example: new speed:399.000000 +I (163744) example: expect speed: 0.000000 real_pulses:0 +I (163744) example: new speed:399.000000 +I (163754) example: expect speed: 0.000000 real_pulses:0 +I (163754) example: new speed:399.000000 +I (163764) example: expect speed: 0.000000 real_pulses:0 +I (163764) example: new speed:399.000000 +I (163774) example: expect speed: 0.000000 real_pulses:0 +I (163774) example: new speed:399.000000 +I (163784) example: expect speed: 0.000000 real_pulses:0 +I (163784) example: new speed:399.000000 +I (163794) example: expect speed: 0.000000 real_pulses:0 +I (163794) example: new speed:399.000000 +I (163804) example: expect speed: 0.000000 real_pulses:0 +I (163804) example: new speed:399.000000 +I (163814) example: expect speed: 0.000000 real_pulses:0 +I (163814) example: new speed:399.000000 +I (163824) example: expect speed: 0.000000 real_pulses:0 +I (163824) example: new speed:399.000000 +I (163834) example: expect speed: 0.000000 real_pulses:0 +I (163834) example: new speed:399.000000 +I (163844) example: expect speed: 0.000000 real_pulses:0 +I (163844) example: new speed:399.000000 +I (163854) example: expect speed: 0.000000 real_pulses:0 +I (163854) example: new speed:399.000000 +I (163864) example: expect speed: 0.000000 real_pulses:0 +I (163864) example: new speed:399.000000 +I (163874) example: expect speed: 0.000000 real_pulses:0 +I (163874) example: new speed:399.000000 +I (163884) example: expect speed: 0.000000 real_pulses:0 +I (163884) example: new speed:399.000000 +I (163894) example: expect speed: 0.000000 real_pulses:0 +I (163894) example: new speed:399.000000 +I (163904) example: expect speed: 0.000000 real_pulses:0 +I (163904) example: new speed:399.000000 +I (163914) example: expect speed: 0.000000 real_pulses:0 +I (163914) example: new speed:399.000000 +I (163924) example: expect speed: 0.000000 real_pulses:0 +I (163924) example: new speed:399.000000 +I (163934) example: expect speed: 0.000000 real_pulses:0 +I (163934) example: new speed:399.000000 +I (163944) example: expect speed: 0.000000 real_pulses:0 +I (163944) example: new speed:399.000000 +I (163954) example: expect speed: 0.000000 real_pulses:0 +I (163954) example: new speed:399.000000 +I (163964) example: expect speed: 0.000000 real_pulses:0 +I (163964) example: new speed:399.000000 +I (163974) example: expect speed: 0.000000 real_pulses:0 +I (163974) example: new speed:399.000000 +I (163984) example: expect speed: 0.000000 real_pulses:0 +I (163984) example: new speed:399.000000 +I (163994) example: expect speed: 0.000000 real_pulses:0 +I (163994) example: new speed:399.000000 +I (164004) example: expect speed: 0.000000 real_pulses:0 +I (164004) example: new speed:399.000000 +I (164014) example: expect speed: 0.000000 real_pulses:0 +I (164014) example: new speed:399.000000 +I (164024) example: expect speed: 0.000000 real_pulses:0 +I (164024) example: new speed:399.000000 +I (164034) example: expect speed: 0.000000 real_pulses:0 +I (164034) example: new speed:399.000000 +I (164044) example: expect speed: 0.000000 real_pulses:0 +I (164044) example: new speed:399.000000 +I (164054) example: expect speed: 0.000000 real_pulses:0 +I (164054) example: new speed:399.000000 +I (164064) example: expect speed: 0.000000 real_pulses:0 +I (164064) example: new speed:399.000000 +I (164074) example: expect speed: 0.000000 real_pulses:0 +I (164074) example: new speed:399.000000 +I (164084) example: expect speed: 0.000000 real_pulses:0 +I (164084) example: new speed:399.000000 +I (164094) example: expect speed: 0.000000 real_pulses:0 +I (164104) example: new speed:399.000000 +I (164104) modbus tcp: ModBusSlave_recv() +I (164104) modbus: ModbusSlaveProcess() +I (164104) modbus: check id... +I (164104) modbus: ok +I (164104) example: expect speed: 0.000000 real_pulses:0 +I (164104) modbus: add: 0, length: 10 +I (164104) example: new speed:399.000000 +I (164104) modbus: Read Holding Registers +I (164114) example: expect speed: 0.000000 real_pulses:0 +I (164124) example: new speed:399.000000 +I (164124) example: expect speed: 0.000000 real_pulses:0 +I (164124) example: new speed:399.000000 +I (164134) example: expect speed: 0.000000 real_pulses:0 +I (164134) example: new speed:399.000000 +I (164144) example: expect speed: 0.000000 real_pulses:0 +I (164144) example: new speed:399.000000 +I (164154) example: expect speed: 0.000000 real_pulses:0 +I (164154) example: new speed:399.000000 +I (164164) example: expect speed: 0.000000 real_pulses:0 +I (164164) example: new speed:399.000000 +I (164174) example: expect speed: 0.000000 real_pulses:0 +I (164174) example: new speed:399.000000 +I (164184) example: expect speed: 0.000000 real_pulses:0 +I (164184) example: new speed:399.000000 +I (164194) example: expect speed: 0.000000 real_pulses:0 +I (164194) example: new speed:399.000000 +I (164204) example: expect speed: 0.000000 real_pulses:0 +I (164204) example: new speed:399.000000 +I (164214) example: expect speed: 0.000000 real_pulses:0 +I (164224) example: new speed:399.000000 +I (164224) example: expect speed: 0.000000 real_pulses:0 +I (164224) example: new speed:399.000000 +I (164234) example: expect speed: 0.000000 real_pulses:0 +I (164234) example: new speed:399.000000 +I (164244) example: expect speed: 0.000000 real_pulses:0 +I (164244) example: new speed:399.000000 +I (164254) example: expect speed: 0.000000 real_pulses:0 +I (164254) example: new speed:399.000000 +I (164264) example: expect speed: 0.000000 real_pulses:0 +I (164264) example: new speed:399.000000 +I (164274) example: expect speed: 0.000000 real_pulses:0 +I (164274) example: new speed:399.000000 +I (164284) example: expect speed: 0.000000 real_pulses:0 +I (164284) example: new speed:399.000000 +I (164294) example: expect speed: 0.000000 real_pulses:0 +I (164294) example: new speed:399.000000 +I (164304) example: expect speed: 0.000000 real_pulses:0 +I (164304) example: new speed:399.000000 +I (164314) example: expect speed: 0.000000 real_pulses:0 +I (164314) example: new speed:399.000000 +I (164324) example: expect speed: 0.000000 real_pulses:0 +I (164324) example: new speed:399.000000 +I (164334) example: expect speed: 0.000000 real_pulses:0 +I (164334) example: new speed:399.000000 +I (164344) example: expect speed: 0.000000 real_pulses:0 +I (164344) example: new speed:399.000000 +I (164354) example: expect speed: 0.000000 real_pulses:0 +I (164354) example: new speed:399.000000 +I (164364) example: expect speed: 0.000000 real_pulses:0 +I (164364) example: new speed:399.000000 +I (164374) example: expect speed: 0.000000 real_pulses:0 +I (164374) example: new speed:399.000000 +I (164384) example: expect speed: 0.000000 real_pulses:0 +I (164384) example: new speed:399.000000 +I (164394) example: expect speed: 0.000000 real_pulses:0 +I (164394) example: new speed:399.000000 +I (164404) example: expect speed: 0.000000 real_pulses:0 +I (164404) example: new speed:399.000000 +I (164414) example: expect speed: 0.000000 real_pulses:0 +I (164414) example: new speed:399.000000 +I (164424) example: expect speed: 0.000000 real_pulses:0 +I (164424) example: new speed:399.000000 +I (164434) example: expect speed: 0.000000 real_pulses:0 +I (164434) example: new speed:399.000000 +I (164444) example: expect speed: 0.000000 real_pulses:0 +I (164444) example: new speed:399.000000 +I (164454) example: expect speed: 0.000000 real_pulses:0 +I (164454) example: new speed:399.000000 +I (164464) example: expect speed: 0.000000 real_pulses:0 +I (164464) example: new speed:399.000000 +I (164474) example: expect speed: 0.000000 real_pulses:0 +I (164474) example: new speed:399.000000 +I (164484) example: expect speed: 0.000000 real_pulses:0 +I (164484) example: new speed:399.000000 +I (164494) example: expect speed: 0.000000 real_pulses:0 +I (164494) example: new speed:399.000000 +I (164504) example: expect speed: 0.000000 real_pulses:0 +I (164514) example: new speed:399.000000 +I (164514) example: expect speed: 0.000000 real_pulses:0 +I (164514) example: new speed:399.000000 +I (164524) example: expect speed: 0.000000 real_pulses:0 +I (164524) example: new speed:399.000000 +I (164534) example: expect speed: 0.000000 real_pulses:0 +I (164534) example: new speed:399.000000 +I (164544) example: expect speed: 0.000000 real_pulses:0 +I (164544) example: new speed:399.000000 +I (164554) example: expect speed: 0.000000 real_pulses:0 +I (164554) example: new speed:399.000000 +I (164564) example: expect speed: 0.000000 real_pulses:0 +I (164564) example: new speed:399.000000 +I (164574) example: expect speed: 0.000000 real_pulses:0 +I (164574) example: new speed:399.000000 +I (164584) example: expect speed: 0.000000 real_pulses:0 +I (164584) example: new speed:399.000000 +I (164594) example: expect speed: 0.000000 real_pulses:0 +I (164594) example: new speed:399.000000 +I (164604) example: expect speed: 0.000000 real_pulses:0 +I (164604) example: new speed:399.000000 +I (164614) example: expect speed: 0.000000 real_pulses:0 +I (164614) example: new speed:399.000000 +I (164624) example: expect speed: 0.000000 real_pulses:0 +I (164624) example: new speed:399.000000 +I (164634) example: expect speed: 0.000000 real_pulses:0 +I (164634) example: new speed:399.000000 +I (164644) example: expect speed: 0.000000 real_pulses:0 +I (164644) example: new speed:399.000000 +I (164654) example: expect speed: 0.000000 real_pulses:0 +I (164654) example: new speed:399.000000 +I (164664) example: expect speed: 0.000000 real_pulses:0 +I (164664) example: new speed:399.000000 +I (164674) example: expect speed: 0.000000 real_pulses:0 +I (164674) example: new speed:399.000000 +I (164684) example: expect speed: 0.000000 real_pulses:0 +I (164684) example: new speed:399.000000 +I (164694) example: expect speed: 0.000000 real_pulses:0 +I (164694) example: new speed:399.000000 +I (164704) example: expect speed: 0.000000 real_pulses:0 +I (164704) example: new speed:399.000000 +I (164714) example: expect speed: 0.000000 real_pulses:0 +I (164714) example: new speed:399.000000 +I (164724) example: expect speed: 0.000000 real_pulses:0 +I (164724) example: new speed:399.000000 +I (164734) example: expect speed: 0.000000 real_pulses:0 +I (164734) example: new speed:399.000000 +I (164744) example: expect speed: 0.000000 real_pulses:0 +I (164744) example: new speed:399.000000 +I (164754) example: expect speed: 0.000000 real_pulses:0 +I (164754) example: new speed:399.000000 +I (164764) example: expect speed: 0.000000 real_pulses:0 +I (164764) example: new speed:399.000000 +I (164774) example: expect speed: 0.000000 real_pulses:0 +I (164774) example: new speed:399.000000 +I (164784) example: expect speed: 0.000000 real_pulses:0 +I (164784) example: new speed:399.000000 +I (164794) example: expect speed: 0.000000 real_pulses:0 +I (164794) example: new speed:399.000000 +I (164804) example: expect speed: 0.000000 real_pulses:0 +I (164804) example: new speed:399.000000 +I (164814) example: expect speed: 0.000000 real_pulses:0 +I (164814) example: new speed:399.000000 +I (164824) example: expect speed: 0.000000 real_pulses:0 +I (164824) example: new speed:399.000000 +I (164834) example: expect speed: 0.000000 real_pulses:0 +I (164834) example: new speed:399.000000 +I (164844) example: expect speed: 0.000000 real_pulses:0 +I (164844) example: new speed:399.000000 +I (164854) example: expect speed: 0.000000 real_pulses:0 +I (164854) example: new speed:399.000000 +I (164864) example: expect speed: 0.000000 real_pulses:0 +I (164864) example: new speed:399.000000 +I (164874) example: expect speed: 0.000000 real_pulses:0 +I (164874) example: new speed:399.000000 +I (164884) example: expect speed: 0.000000 real_pulses:0 +I (164884) example: new speed:399.000000 +I (164894) example: expect speed: 0.000000 real_pulses:0 +I (164894) example: new speed:399.000000 +I (164904) example: expect speed: 0.000000 real_pulses:0 +I (164904) example: new speed:399.000000 +I (164914) example: expect speed: 0.000000 real_pulses:0 +I (164914) example: new speed:399.000000 +I (164924) example: expect speed: 0.000000 real_pulses:0 +I (164924) example: new speed:399.000000 +I (164934) example: expect speed: 0.000000 real_pulses:0 +I (164934) example: new speed:399.000000 +I (164944) example: expect speed: 0.000000 real_pulses:0 +I (164944) example: new speed:399.000000 +I (164954) example: expect speed: 0.000000 real_pulses:0 +I (164954) example: new speed:399.000000 +I (164964) example: expect speed: 0.000000 real_pulses:0 +I (164964) example: new speed:399.000000 +I (164974) example: expect speed: 0.000000 real_pulses:0 +I (164974) example: new speed:399.000000 +I (164984) example: expect speed: 0.000000 real_pulses:0 +I (164984) example: new speed:399.000000 +I (164994) example: expect speed: 0.000000 real_pulses:0 +I (164994) example: new speed:399.000000 +I (165004) example: expect speed: 0.000000 real_pulses:0 +I (165004) example: new speed:399.000000 +I (165014) example: expect speed: 0.000000 real_pulses:0 +I (165014) example: new speed:399.000000 +I (165024) example: expect speed: 0.000000 real_pulses:0 +I (165024) example: new speed:399.000000 +I (165034) example: expect speed: 0.000000 real_pulses:0 +I (165034) example: new speed:399.000000 +I (165044) example: expect speed: 0.000000 real_pulses:0 +I (165044) example: new speed:399.000000 +I (165054) example: expect speed: 0.000000 real_pulses:0 +I (165054) example: new speed:399.000000 +I (165064) example: expect speed: 0.000000 real_pulses:0 +I (165064) example: new speed:399.000000 +I (165074) example: expect speed: 0.000000 real_pulses:0 +I (165074) example: new speed:399.000000 +I (165084) example: expect speed: 0.000000 real_pulses:0 +I (165084) example: new speed:399.000000 +I (165094) example: expect speed: 0.000000 real_pulses:0 +I (165094) example: new speed:399.000000 +I (165104) example: expect speed: 0.000000 real_pulses:0 +I (165104) example: new speed:399.000000 +I (165114) example: expect speed: 0.000000 real_pulses:0 +I (165124) example: new speed:399.000000 +I (165124) modbus tcp: ModBusSlave_recv() +I (165124) modbus: ModbusSlaveProcess() +I (165124) modbus: check id... +I (165124) modbus: ok +I (165124) modbus: add: 0, length: 10 +I (165124) modbus: Read Holding Registers +I (165124) example: expect speed: 0.000000 real_pulses:0 +I (165134) example: new speed:399.000000 +I (165134) example: expect speed: 0.000000 real_pulses:0 +I (165134) example: new speed:399.000000 +I (165144) example: expect speed: 0.000000 real_pulses:0 +I (165144) example: new speed:399.000000 +I (165154) example: expect speed: 0.000000 real_pulses:0 +I (165154) example: new speed:399.000000 +I (165164) example: expect speed: 0.000000 real_pulses:0 +I (165164) example: new speed:399.000000 +I (165174) example: expect speed: 0.000000 real_pulses:0 +I (165184) example: new speed:399.000000 +I (165184) example: expect speed: 0.000000 real_pulses:0 +I (165184) example: new speed:399.000000 +I (165194) example: expect speed: 0.000000 real_pulses:0 +I (165194) example: new speed:399.000000 +I (165204) example: expect speed: 0.000000 real_pulses:0 +I (165204) example: new speed:399.000000 +I (165214) example: expect speed: 0.000000 real_pulses:0 +I (165214) example: new speed:399.000000 +I (165224) example: expect speed: 0.000000 real_pulses:0 +I (165234) example: new speed:399.000000 +I (165234) example: expect speed: 0.000000 real_pulses:0 +I (165234) example: new speed:399.000000 +I (165244) example: expect speed: 0.000000 real_pulses:0 +I (165244) example: new speed:399.000000 +I (165254) example: expect speed: 0.000000 real_pulses:0 +I (165254) example: new speed:399.000000 +I (165264) example: expect speed: 0.000000 real_pulses:0 +I (165264) example: new speed:399.000000 +I (165274) example: expect speed: 0.000000 real_pulses:0 +I (165274) example: new speed:399.000000 +I (165284) example: expect speed: 0.000000 real_pulses:0 +I (165284) example: new speed:399.000000 +I (165294) example: expect speed: 0.000000 real_pulses:0 +I (165294) example: new speed:399.000000 +I (165304) example: expect speed: 0.000000 real_pulses:0 +I (165304) example: new speed:399.000000 +I (165314) example: expect speed: 0.000000 real_pulses:0 +I (165314) example: new speed:399.000000 +I (165324) example: expect speed: 0.000000 real_pulses:0 +I (165324) example: new speed:399.000000 +I (165334) example: expect speed: 0.000000 real_pulses:0 +I (165334) example: new speed:399.000000 +I (165344) example: expect speed: 0.000000 real_pulses:0 +I (165344) example: new speed:399.000000 +I (165354) example: expect speed: 0.000000 real_pulses:0 +I (165354) example: new speed:399.000000 +I (165364) example: expect speed: 0.000000 real_pulses:0 +I (165364) example: new speed:399.000000 +I (165374) example: expect speed: 0.000000 real_pulses:0 +I (165374) example: new speed:399.000000 +I (165384) example: expect speed: 0.000000 real_pulses:0 +I (165384) example: new speed:399.000000 +I (165394) example: expect speed: 0.000000 real_pulses:0 +I (165394) example: new speed:399.000000 +I (165404) example: expect speed: 0.000000 real_pulses:0 +I (165404) example: new speed:399.000000 +I (165414) example: expect speed: 0.000000 real_pulses:0 +I (165414) example: new speed:399.000000 +I (165424) example: expect speed: 0.000000 real_pulses:0 +I (165424) example: new speed:399.000000 +I (165434) example: expect speed: 0.000000 real_pulses:0 +I (165434) example: new speed:399.000000 +I (165444) example: expect speed: 0.000000 real_pulses:0 +I (165444) example: new speed:399.000000 +I (165454) example: expect speed: 0.000000 real_pulses:0 +I (165454) example: new speed:399.000000 +I (165464) example: expect speed: 0.000000 real_pulses:0 +I (165464) example: new speed:399.000000 +I (165474) example: expect speed: 0.000000 real_pulses:0 +I (165474) example: new speed:399.000000 +I (165484) example: expect speed: 0.000000 real_pulses:0 +I (165484) example: new speed:399.000000 +I (165494) example: expect speed: 0.000000 real_pulses:0 +I (165494) example: new speed:399.000000 +I (165504) example: expect speed: 0.000000 real_pulses:0 +I (165504) example: new speed:399.000000 +I (165514) example: expect speed: 0.000000 real_pulses:0 +I (165514) example: new speed:399.000000 +I (165524) example: expect speed: 0.000000 real_pulses:0 +I (165524) example: new speed:399.000000 +I (165534) example: expect speed: 0.000000 real_pulses:0 +I (165534) example: new speed:399.000000 +I (165544) example: expect speed: 0.000000 real_pulses:0 +I (165544) example: new speed:399.000000 +I (165554) example: expect speed: 0.000000 real_pulses:0 +I (165554) example: new speed:399.000000 +I (165564) example: expect speed: 0.000000 real_pulses:0 +I (165564) example: new speed:399.000000 +I (165574) example: expect speed: 0.000000 real_pulses:0 +I (165574) example: new speed:399.000000 +I (165584) example: expect speed: 0.000000 real_pulses:0 +I (165584) example: new speed:399.000000 +I (165594) example: expect speed: 0.000000 real_pulses:0 +I (165594) example: new speed:399.000000 +I (165604) example: expect speed: 0.000000 real_pulses:0 +I (165604) example: new speed:399.000000 +I (165614) example: expect speed: 0.000000 real_pulses:0 +I (165614) example: new speed:399.000000 +I (165624) example: expect speed: 0.000000 real_pulses:0 +I (165624) example: new speed:399.000000 +I (165634) example: expect speed: 0.000000 real_pulses:0 +I (165634) example: new speed:399.000000 +I (165644) example: expect speed: 0.000000 real_pulses:0 +I (165644) example: new speed:399.000000 +I (165654) example: expect speed: 0.000000 real_pulses:0 +I (165654) example: new speed:399.000000 +I (165664) example: expect speed: 0.000000 real_pulses:0 +I (165664) example: new speed:399.000000 +I (165674) example: expect speed: 0.000000 real_pulses:0 +I (165674) example: new speed:399.000000 +I (165684) example: expect speed: 0.000000 real_pulses:0 +I (165684) example: new speed:399.000000 +I (165694) example: expect speed: 0.000000 real_pulses:0 +I (165694) example: new speed:399.000000 +I (165704) example: expect speed: 0.000000 real_pulses:0 +I (165704) example: new speed:399.000000 +I (165714) example: expect speed: 0.000000 real_pulses:0 +I (165714) example: new speed:399.000000 +I (165724) example: expect speed: 0.000000 real_pulses:0 +I (165724) example: new speed:399.000000 +I (165734) example: expect speed: 0.000000 real_pulses:0 +I (165734) example: new speed:399.000000 +I (165744) example: expect speed: 0.000000 real_pulses:0 +I (165744) example: new speed:399.000000 +I (165754) example: expect speed: 0.000000 real_pulses:0 +I (165754) example: new speed:399.000000 +I (165764) example: expect speed: 0.000000 real_pulses:0 +I (165764) example: new speed:399.000000 +I (165774) example: expect speed: 0.000000 real_pulses:0 +I (165774) example: new speed:399.000000 +I (165784) example: expect speed: 0.000000 real_pulses:0 +I (165784) example: new speed:399.000000 +I (165794) example: expect speed: 0.000000 real_pulses:0 +I (165794) example: new speed:399.000000 +I (165804) example: expect speed: 0.000000 real_pulses:0 +I (165804) example: new speed:399.000000 +I (165814) example: expect speed: 0.000000 real_pulses:0 +I (165814) example: new speed:399.000000 +I (165824) example: expect speed: 0.000000 real_pulses:0 +I (165824) example: new speed:399.000000 +I (165834) example: expect speed: 0.000000 real_pulses:0 +I (165834) example: new speed:399.000000 +I (165844) example: expect speed: 0.000000 real_pulses:0 +I (165844) example: new speed:399.000000 +I (165854) example: expect speed: 0.000000 real_pulses:0 +I (165854) example: new speed:399.000000 +I (165864) example: expect speed: 0.000000 real_pulses:0 +I (165864) example: new speed:399.000000 +I (165874) example: expect speed: 0.000000 real_pulses:0 +I (165874) example: new speed:399.000000 +I (165884) example: expect speed: 0.000000 real_pulses:0 +I (165884) example: new speed:399.000000 +I (165894) example: expect speed: 0.000000 real_pulses:0 +I (165894) example: new speed:399.000000 +I (165904) example: expect speed: 0.000000 real_pulses:0 +I (165904) example: new speed:399.000000 +I (165914) example: expect speed: 0.000000 real_pulses:0 +I (165914) example: new speed:399.000000 +I (165924) example: expect speed: 0.000000 real_pulses:0 +I (165924) example: new speed:399.000000 +I (165934) example: expect speed: 0.000000 real_pulses:0 +I (165934) example: new speed:399.000000 +I (165944) example: expect speed: 0.000000 real_pulses:0 +I (165954) example: new speed:399.000000 +I (165954) example: expect speed: 0.000000 real_pulses:0 +I (165954) example: new speed:399.000000 +I (165964) example: expect speed: 0.000000 real_pulses:0 +I (165964) example: new speed:399.000000 +I (165974) example: expect speed: 0.000000 real_pulses:0 +I (165974) example: new speed:399.000000 +I (165984) example: expect speed: 0.000000 real_pulses:0 +I (165984) example: new speed:399.000000 +I (165994) example: expect speed: 0.000000 real_pulses:0 +I (165994) example: new speed:399.000000 +I (166004) example: expect speed: 0.000000 real_pulses:0 +I (166004) example: new speed:399.000000 +I (166014) example: expect speed: 0.000000 real_pulses:0 +I (166014) example: new speed:399.000000 +I (166024) example: expect speed: 0.000000 real_pulses:0 +I (166024) example: new speed:399.000000 +I (166034) example: expect speed: 0.000000 real_pulses:0 +I (166034) example: new speed:399.000000 +I (166044) example: expect speed: 0.000000 real_pulses:0 +I (166054) example: new speed:399.000000 +I (166054) modbus tcp: ModBusSlave_recv() +I (166054) modbus: ModbusSlaveProcess() +I (166054) modbus: check id... +I (166054) modbus: ok +I (166054) modbus: add: 0, length: 10 +I (166054) modbus: Read Holding Registers +I (166054) example: expect speed: 0.000000 real_pulses:0 +I (166064) example: new speed:399.000000 +I (166064) example: expect speed: 0.000000 real_pulses:0 +I (166064) example: new speed:399.000000 +I (166074) example: expect speed: 0.000000 real_pulses:0 +I (166074) example: new speed:399.000000 +I (166084) example: expect speed: 0.000000 real_pulses:0 +I (166084) example: new speed:399.000000 +I (166094) example: expect speed: 0.000000 real_pulses:0 +I (166094) example: new speed:399.000000 +I (166104) example: expect speed: 0.000000 real_pulses:0 +I (166104) example: new speed:399.000000 +I (166114) example: expect speed: 0.000000 real_pulses:0 +I (166114) example: new speed:399.000000 +I (166124) example: expect speed: 0.000000 real_pulses:0 +I (166134) example: new speed:399.000000 +I (166134) example: expect speed: 0.000000 real_pulses:0 +I (166134) example: new speed:399.000000 +I (166144) example: expect speed: 0.000000 real_pulses:0 +I (166154) example: new speed:399.000000 +I (166154) example: expect speed: 0.000000 real_pulses:0 +I (166154) example: new speed:399.000000 +I (166164) example: expect speed: 0.000000 real_pulses:0 +I (166164) example: new speed:399.000000 +I (166174) example: expect speed: 0.000000 real_pulses:0 +I (166174) example: new speed:399.000000 +I (166184) example: expect speed: 0.000000 real_pulses:0 +I (166184) example: new speed:399.000000 +I (166194) example: expect speed: 0.000000 real_pulses:0 +I (166204) example: new speed:399.000000 +I (166204) example: expect speed: 0.000000 real_pulses:0 +I (166204) example: new speed:399.000000 +I (166214) example: expect speed: 0.000000 real_pulses:0 +I (166214) example: new speed:399.000000 +I (166224) example: expect speed: 0.000000 real_pulses:0 +I (166224) example: new speed:399.000000 +I (166234) example: expect speed: 0.000000 real_pulses:0 +I (166234) example: new speed:399.000000 +I (166244) example: expect speed: 0.000000 real_pulses:0 +I (166244) example: new speed:399.000000 +I (166254) example: expect speed: 0.000000 real_pulses:0 +I (166254) example: new speed:399.000000 +I (166264) example: expect speed: 0.000000 real_pulses:0 +I (166264) example: new speed:399.000000 +I (166274) example: expect speed: 0.000000 real_pulses:0 +I (166274) example: new speed:399.000000 +I (166284) example: expect speed: 0.000000 real_pulses:0 +I (166284) example: new speed:399.000000 +I (166294) example: expect speed: 0.000000 real_pulses:0 +I (166294) example: new speed:399.000000 +I (166304) example: expect speed: 0.000000 real_pulses:0 +I (166304) example: new speed:399.000000 +I (166314) example: expect speed: 0.000000 real_pulses:0 +I (166314) example: new speed:399.000000 +I (166324) example: expect speed: 0.000000 real_pulses:0 +I (166324) example: new speed:399.000000 +I (166334) example: expect speed: 0.000000 real_pulses:0 +I (166334) example: new speed:399.000000 +I (166344) example: expect speed: 0.000000 real_pulses:0 +I (166354) example: new speed:399.000000 +I (166354) modbus tcp: ModBusSlave_recv() +I (166354) modbus: ModbusSlaveProcess() +I (166354) modbus: check id... +I (166354) modbus: ok +I (166354) modbus: add: 0, length: 2 +I (166354) modbus: Write Single Register +I (166354) example: expect speed: 0.000000 real_pulses:0 +I (166364) example: new speed:399.000000 +I (166364) example: expect speed: 0.000000 real_pulses:0 +I (166364) example: new speed:399.000000 +I (166374) example: expect speed: 0.000000 real_pulses:0 +I (166374) example: new speed:399.000000 +I (166384) example: expect speed: 0.000000 real_pulses:0 +I (166384) example: new speed:399.000000 +I (166394) example: expect speed: 0.000000 real_pulses:0 +I (166394) example: new speed:399.000000 +I (166404) example: expect speed: 0.000000 real_pulses:0 +I (166414) example: new speed:399.000000 +I (166414) example: expect speed: 0.000000 real_pulses:0 +I (166414) example: new speed:399.000000 +I (166424) example: expect speed: 0.000000 real_pulses:0 +I (166424) example: new speed:399.000000 +I (166434) example: expect speed: 0.000000 real_pulses:0 +I (166434) example: new speed:399.000000 +I (166444) example: expect speed: 0.000000 real_pulses:0 +I (166454) example: new speed:399.000000 +I (166454) example: expect speed: 0.000000 real_pulses:0 +I (166464) example: new speed:399.000000 +I (166464) example: expect speed: 0.000000 real_pulses:0 +I (166464) example: new speed:399.000000 +I (166474) example: expect speed: 0.000000 real_pulses:0 +I (166474) example: new speed:399.000000 +I (166484) example: expect speed: 0.000000 real_pulses:0 +I (166484) example: new speed:399.000000 +I (166494) example: expect speed: 0.000000 real_pulses:0 +I (166494) example: new speed:399.000000 +I (166504) example: expect speed: 0.000000 real_pulses:0 +I (166514) example: new speed:399.000000 +I (166514) example: expect speed: 0.000000 real_pulses:0 +I (166514) example: new speed:399.000000 +I (166524) example: expect speed: 0.000000 real_pulses:0 +I (166524) example: new speed:399.000000 +I (166534) example: expect speed: 0.000000 real_pulses:0 +I (166534) example: new speed:399.000000 +I (166544) example: expect speed: 0.000000 real_pulses:0 +I (166544) example: new speed:399.000000 +I (166554) example: expect speed: 0.000000 real_pulses:0 +I (166554) example: new speed:399.000000 +I (166564) example: expect speed: 0.000000 real_pulses:0 +I (166564) example: new speed:399.000000 +I (166574) example: expect speed: 0.000000 real_pulses:0 +I (166574) example: new speed:399.000000 +I (166584) example: expect speed: 0.000000 real_pulses:0 +I (166584) example: new speed:399.000000 +I (166594) example: expect speed: 0.000000 real_pulses:0 +I (166594) example: new speed:399.000000 +I (166604) example: expect speed: 0.000000 real_pulses:0 +I (166604) example: new speed:399.000000 +I (166614) example: expect speed: 0.000000 real_pulses:0 +I (166614) example: new speed:399.000000 +I (166624) example: expect speed: 0.000000 real_pulses:0 +I (166624) example: new speed:399.000000 +I (166634) example: expect speed: 0.000000 real_pulses:0 +I (166634) example: new speed:399.000000 +I (166644) example: expect speed: 0.000000 real_pulses:0 +I (166644) example: new speed:399.000000 +I (166654) example: expect speed: 0.000000 real_pulses:0 +I (166654) example: new speed:399.000000 +I (166664) example: expect speed: 0.000000 real_pulses:0 +I (166664) example: new speed:399.000000 +I (166674) example: expect speed: 0.000000 real_pulses:0 +I (166674) example: new speed:399.000000 +I (166684) example: expect speed: 0.000000 real_pulses:0 +I (166684) example: new speed:399.000000 +I (166694) example: expect speed: 0.000000 real_pulses:0 +I (166694) example: new speed:399.000000 +I (166704) example: expect speed: 0.000000 real_pulses:0 +I (166704) example: new speed:399.000000 +I (166714) example: expect speed: 0.000000 real_pulses:0 +I (166714) example: new speed:399.000000 +I (166724) example: expect speed: 0.000000 real_pulses:0 +I (166724) example: new speed:399.000000 +I (166734) example: expect speed: 0.000000 real_pulses:0 +I (166734) example: new speed:399.000000 +I (166744) example: expect speed: 0.000000 real_pulses:0 +I (166744) example: new speed:399.000000 +I (166754) example: expect speed: 0.000000 real_pulses:0 +I (166764) example: new speed:399.000000 +I (166764) example: expect speed: 0.000000 real_pulses:0 +I (166764) example: new speed:399.000000 +I (166774) example: expect speed: 0.000000 real_pulses:0 +I (166774) example: new speed:399.000000 +I (166784) example: expect speed: 0.000000 real_pulses:0 +I (166784) example: new speed:399.000000 +I (166794) example: expect speed: 0.000000 real_pulses:0 +I (166794) example: new speed:399.000000 +I (166804) example: expect speed: 0.000000 real_pulses:0 +I (166804) example: new speed:399.000000 +I (166814) example: expect speed: 0.000000 real_pulses:0 +I (166814) example: new speed:399.000000 +I (166824) example: expect speed: 0.000000 real_pulses:0 +I (166824) example: new speed:399.000000 +I (166834) example: expect speed: 0.000000 real_pulses:0 +I (166834) example: new speed:399.000000 +I (166844) example: expect speed: 0.000000 real_pulses:0 +I (166844) example: new speed:399.000000 +I (166854) example: expect speed: 0.000000 real_pulses:0 +I (166854) example: new speed:399.000000 +I (166864) example: expect speed: 0.000000 real_pulses:0 +I (166864) example: new speed:399.000000 +I (166874) example: expect speed: 0.000000 real_pulses:0 +I (166874) example: new speed:399.000000 +I (166884) example: expect speed: 0.000000 real_pulses:0 +I (166884) example: new speed:399.000000 +I (166894) example: expect speed: 0.000000 real_pulses:0 +I (166894) example: new speed:399.000000 +I (166904) example: expect speed: 0.000000 real_pulses:0 +I (166904) example: new speed:399.000000 +I (166914) example: expect speed: 0.000000 real_pulses:0 +I (166914) example: new speed:399.000000 +I (166924) example: expect speed: 0.000000 real_pulses:0 +I (166924) example: new speed:399.000000 +I (166934) example: expect speed: 0.000000 real_pulses:0 +I (166934) example: new speed:399.000000 +I (166944) example: expect speed: 0.000000 real_pulses:0 +I (166944) example: new speed:399.000000 +I (166954) example: expect speed: 0.000000 real_pulses:0 +I (166954) example: new speed:399.000000 +I (166964) example: expect speed: 0.000000 real_pulses:0 +I (166964) example: new speed:399.000000 +I (166974) example: expect speed: 0.000000 real_pulses:0 +I (166974) example: new speed:399.000000 +I (166984) example: expect speed: 0.000000 real_pulses:0 +I (166984) example: new speed:399.000000 +I (166994) example: expect speed: 0.000000 real_pulses:0 +I (166994) example: new speed:399.000000 +I (167004) example: expect speed: 0.000000 real_pulses:0 +I (167004) example: new speed:399.000000 +I (167014) example: expect speed: 0.000000 real_pulses:0 +I (167014) example: new speed:399.000000 +I (167024) example: expect speed: 0.000000 real_pulses:0 +I (167024) example: new speed:399.000000 +I (167034) example: expect speed: 0.000000 real_pulses:0 +I (167034) example: new speed:399.000000 +I (167044) example: expect speed: 0.000000 real_pulses:0 +I (167044) example: new speed:399.000000 +I (167054) example: expect speed: 0.000000 real_pulses:0 +I (167054) example: new speed:399.000000 +I (167064) example: expect speed: 0.000000 real_pulses:0 +I (167074) example: new speed:399.000000 +I (167074) example: expect speed: 0.000000 real_pulses:0 +I (167074) example: new speed:399.000000 +I (167084) example: expect speed: 0.000000 real_pulses:0 +I (167094) example: new speed:399.000000 +I (167094) modbus tcp: ModBusSlave_recv() +I (167094) modbus: ModbusSlaveProcess() +I (167094) modbus: check id... +I (167094) modbus: ok +I (167094) modbus: add: 0, length: 10 +I (167094) modbus: Read Holding Registers +I (167094) example: expect speed: 0.000000 real_pulses:0 +I (167104) example: new speed:399.000000 +I (167104) example: expect speed: 0.000000 real_pulses:0 +I (167104) example: new speed:399.000000 +I (167114) example: expect speed: 0.000000 real_pulses:0 +I (167114) example: new speed:399.000000 +I (167124) example: expect speed: 0.000000 real_pulses:0 +I (167124) example: new speed:399.000000 +I (167134) example: expect speed: 0.000000 real_pulses:0 +I (167144) example: new speed:399.000000 +I (167144) example: expect speed: 0.000000 real_pulses:0 +I (167144) example: new speed:399.000000 +I (167154) example: expect speed: 0.000000 real_pulses:0 +I (167154) example: new speed:399.000000 +I (167164) example: expect speed: 0.000000 real_pulses:0 +I (167164) example: new speed:399.000000 +I (167174) example: expect speed: 0.000000 real_pulses:0 +I (167174) example: new speed:399.000000 +I (167184) example: expect speed: 0.000000 real_pulses:0 +I (167194) example: new speed:399.000000 +I (167194) example: expect speed: 0.000000 real_pulses:0 +I (167194) example: new speed:399.000000 +I (167204) example: expect speed: 0.000000 real_pulses:0 +I (167204) example: new speed:399.000000 +I (167214) example: expect speed: 0.000000 real_pulses:0 +I (167214) example: new speed:399.000000 +I (167224) example: expect speed: 0.000000 real_pulses:0 +I (167224) example: new speed:399.000000 +I (167234) example: expect speed: 0.000000 real_pulses:0 +I (167234) example: new speed:399.000000 +I (167244) example: expect speed: 0.000000 real_pulses:0 +I (167244) example: new speed:399.000000 +I (167254) example: expect speed: 0.000000 real_pulses:0 +I (167254) example: new speed:399.000000 +I (167264) example: expect speed: 0.000000 real_pulses:0 +I (167264) example: new speed:399.000000 +I (167274) example: expect speed: 0.000000 real_pulses:0 +I (167274) example: new speed:399.000000 +I (167284) example: expect speed: 0.000000 real_pulses:0 +I (167284) example: new speed:399.000000 +I (167294) example: expect speed: 0.000000 real_pulses:0 +I (167294) example: new speed:399.000000 +I (167304) example: expect speed: 0.000000 real_pulses:0 +I (167304) example: new speed:399.000000 +I (167314) example: expect speed: 0.000000 real_pulses:0 +I (167314) example: new speed:399.000000 +I (167324) example: expect speed: 0.000000 real_pulses:0 +I (167324) example: new speed:399.000000 +I (167334) example: expect speed: 0.000000 real_pulses:0 +I (167334) example: new speed:399.000000 +I (167344) example: expect speed: 0.000000 real_pulses:0 +I (167344) example: new speed:399.000000 +I (167354) example: expect speed: 0.000000 real_pulses:0 +I (167354) example: new speed:399.000000 +I (167364) example: expect speed: 0.000000 real_pulses:0 +I (167364) example: new speed:399.000000 +I (167374) example: expect speed: 0.000000 real_pulses:0 +I (167374) example: new speed:399.000000 +I (167384) example: expect speed: 0.000000 real_pulses:0 +I (167384) example: new speed:399.000000 +I (167394) example: expect speed: 0.000000 real_pulses:0 +I (167394) example: new speed:399.000000 +I (167404) example: expect speed: 0.000000 real_pulses:0 +I (167404) example: new speed:399.000000 +I (167414) example: expect speed: 0.000000 real_pulses:0 +I (167414) example: new speed:399.000000 +I (167424) example: expect speed: 0.000000 real_pulses:0 +I (167424) example: new speed:399.000000 +I (167434) example: expect speed: 0.000000 real_pulses:0 +I (167434) example: new speed:399.000000 +I (167444) example: expect speed: 0.000000 real_pulses:0 +I (167444) example: new speed:399.000000 +I (167454) example: expect speed: 0.000000 real_pulses:0 +I (167454) example: new speed:399.000000 +I (167464) example: expect speed: 0.000000 real_pulses:0 +I (167464) example: new speed:399.000000 +I (167474) example: expect speed: 0.000000 real_pulses:0 +I (167484) example: new speed:399.000000 +I (167484) example: expect speed: 0.000000 real_pulses:0 +I (167484) example: new speed:399.000000 +I (167494) example: expect speed: 0.000000 real_pulses:0 +I (167494) example: new speed:399.000000 +I (167504) example: expect speed: 0.000000 real_pulses:0 +I (167504) example: new speed:399.000000 +I (167514) example: expect speed: 0.000000 real_pulses:0 +I (167514) example: new speed:399.000000 +I (167524) example: expect speed: 0.000000 real_pulses:0 +I (167524) example: new speed:399.000000 +I (167534) example: expect speed: 0.000000 real_pulses:0 +I (167534) example: new speed:399.000000 +I (167544) example: expect speed: 0.000000 real_pulses:0 +I (167544) example: new speed:399.000000 +I (167554) example: expect speed: 0.000000 real_pulses:0 +I (167554) example: new speed:399.000000 +I (167564) example: expect speed: 0.000000 real_pulses:0 +I (167564) example: new speed:399.000000 +I (167574) example: expect speed: 0.000000 real_pulses:0 +I (167574) example: new speed:399.000000 +I (167584) example: expect speed: 0.000000 real_pulses:0 +I (167584) example: new speed:399.000000 +I (167594) example: expect speed: 0.000000 real_pulses:0 +I (167594) example: new speed:399.000000 +I (167604) example: expect speed: 0.000000 real_pulses:0 +I (167604) example: new speed:399.000000 +I (167614) example: expect speed: 0.000000 real_pulses:0 +I (167614) example: new speed:399.000000 +I (167624) example: expect speed: 0.000000 real_pulses:0 +I (167624) example: new speed:399.000000 +I (167634) example: expect speed: 0.000000 real_pulses:0 +I (167634) example: new speed:399.000000 +I (167644) example: expect speed: 0.000000 real_pulses:0 +I (167644) example: new speed:399.000000 +I (167654) example: expect speed: 0.000000 real_pulses:0 +I (167654) example: new speed:399.000000 +I (167664) example: expect speed: 0.000000 real_pulses:0 +I (167664) example: new speed:399.000000 +I (167674) example: expect speed: 0.000000 real_pulses:0 +I (167674) example: new speed:399.000000 +I (167684) example: expect speed: 0.000000 real_pulses:0 +I (167684) example: new speed:399.000000 +I (167694) example: expect speed: 0.000000 real_pulses:0 +I (167694) example: new speed:399.000000 +I (167704) example: expect speed: 0.000000 real_pulses:0 +I (167704) example: new speed:399.000000 +I (167714) example: expect speed: 0.000000 real_pulses:0 +I (167714) example: new speed:399.000000 +I (167724) example: expect speed: 0.000000 real_pulses:0 +I (167724) example: new speed:399.000000 +I (167734) example: expect speed: 0.000000 real_pulses:0 +I (167734) example: new speed:399.000000 +I (167744) example: expect speed: 0.000000 real_pulses:0 +I (167744) example: new speed:399.000000 +I (167754) example: expect speed: 0.000000 real_pulses:0 +I (167754) example: new speed:399.000000 +I (167764) example: expect speed: 0.000000 real_pulses:0 +I (167764) example: new speed:399.000000 +I (167774) example: expect speed: 0.000000 real_pulses:0 +I (167774) example: new speed:399.000000 +I (167784) example: expect speed: 0.000000 real_pulses:0 +I (167784) example: new speed:399.000000 +I (167794) example: expect speed: 0.000000 real_pulses:0 +I (167794) example: new speed:399.000000 +I (167804) example: expect speed: 0.000000 real_pulses:0 +I (167804) example: new speed:399.000000 +I (167814) example: expect speed: 0.000000 real_pulses:0 +I (167814) example: new speed:399.000000 +I (167824) example: expect speed: 0.000000 real_pulses:0 +I (167824) example: new speed:399.000000 +I (167834) example: expect speed: 0.000000 real_pulses:0 +I (167834) example: new speed:399.000000 +I (167844) example: expect speed: 0.000000 real_pulses:0 +I (167844) example: new speed:399.000000 +I (167854) example: expect speed: 0.000000 real_pulses:0 +I (167854) example: new speed:399.000000 +I (167864) example: expect speed: 0.000000 real_pulses:0 +I (167864) example: new speed:399.000000 +I (167874) example: expect speed: 0.000000 real_pulses:0 +I (167874) example: new speed:399.000000 +I (167884) example: expect speed: 0.000000 real_pulses:0 +I (167884) example: new speed:399.000000 +I (167894) example: expect speed: 0.000000 real_pulses:0 +I (167894) example: new speed:399.000000 +I (167904) example: expect speed: 0.000000 real_pulses:0 +I (167904) example: new speed:399.000000 +I (167914) example: expect speed: 0.000000 real_pulses:0 +I (167914) example: new speed:399.000000 +I (167924) example: expect speed: 0.000000 real_pulses:0 +I (167924) example: new speed:399.000000 +I (167934) example: expect speed: 0.000000 real_pulses:0 +I (167934) example: new speed:399.000000 +I (167944) example: expect speed: 0.000000 real_pulses:0 +I (167944) example: new speed:399.000000 +I (167954) example: expect speed: 0.000000 real_pulses:0 +I (167954) example: new speed:399.000000 +I (167964) example: expect speed: 0.000000 real_pulses:0 +I (167964) example: new speed:399.000000 +I (167974) example: expect speed: 0.000000 real_pulses:0 +I (167974) example: new speed:399.000000 +I (167984) example: expect speed: 0.000000 real_pulses:0 +I (167984) example: new speed:399.000000 +I (167994) example: expect speed: 0.000000 real_pulses:0 +I (167994) example: new speed:399.000000 +I (168004) example: expect speed: 0.000000 real_pulses:0 +I (168004) example: new speed:399.000000 +I (168014) example: expect speed: 0.000000 real_pulses:0 +I (168014) example: new speed:399.000000 +I (168024) example: expect speed: 0.000000 real_pulses:0 +I (168024) example: new speed:399.000000 +I (168034) example: expect speed: 0.000000 real_pulses:0 +I (168034) example: new speed:399.000000 +I (168044) example: expect speed: 0.000000 real_pulses:0 +I (168044) example: new speed:399.000000 +I (168054) example: expect speed: 0.000000 real_pulses:0 +I (168054) example: new speed:399.000000 +I (168064) example: expect speed: 0.000000 real_pulses:0 +I (168064) example: new speed:399.000000 +I (168074) example: expect speed: 0.000000 real_pulses:0 +I (168074) example: new speed:399.000000 +I (168084) example: expect speed: 0.000000 real_pulses:0 +I (168094) example: new speed:399.000000 +I (168094) modbus tcp: ModBusSlave_recv() +I (168094) modbus: ModbusSlaveProcess() +I (168094) modbus: check id... +I (168094) modbus: ok +I (168094) modbus: add: 0, length: 10 +I (168094) modbus: Read Holding Registers +I (168094) example: expect speed: 0.000000 real_pulses:0 +I (168104) example: new speed:399.000000 +I (168104) example: expect speed: 0.000000 real_pulses:0 +I (168104) example: new speed:399.000000 +I (168114) example: expect speed: 0.000000 real_pulses:0 +I (168114) example: new speed:399.000000 +I (168124) example: expect speed: 0.000000 real_pulses:0 +I (168124) example: new speed:399.000000 +I (168134) example: expect speed: 0.000000 real_pulses:0 +I (168134) example: new speed:399.000000 +I (168144) example: expect speed: 0.000000 real_pulses:0 +I (168154) example: new speed:399.000000 +I (168154) example: expect speed: 0.000000 real_pulses:0 +I (168154) example: new speed:399.000000 +I (168164) example: expect speed: 0.000000 real_pulses:0 +I (168164) example: new speed:399.000000 +I (168174) example: expect speed: 0.000000 real_pulses:0 +I (168174) example: new speed:399.000000 +I (168184) example: expect speed: 0.000000 real_pulses:0 +I (168184) example: new speed:399.000000 +I (168194) example: expect speed: 0.000000 real_pulses:0 +I (168204) example: new speed:399.000000 +I (168204) example: expect speed: 0.000000 real_pulses:0 +I (168204) example: new speed:399.000000 +I (168214) example: expect speed: 0.000000 real_pulses:0 +I (168214) example: new speed:399.000000 +I (168224) example: expect speed: 0.000000 real_pulses:0 +I (168224) example: new speed:399.000000 +I (168234) example: expect speed: 0.000000 real_pulses:0 +I (168234) example: new speed:399.000000 +I (168244) example: expect speed: 0.000000 real_pulses:0 +I (168244) example: new speed:399.000000 +I (168254) example: expect speed: 0.000000 real_pulses:0 +I (168254) example: new speed:399.000000 +I (168264) example: expect speed: 0.000000 real_pulses:0 +I (168264) example: new speed:399.000000 +I (168274) example: expect speed: 0.000000 real_pulses:0 +I (168274) example: new speed:399.000000 +I (168284) example: expect speed: 0.000000 real_pulses:0 +I (168284) example: new speed:399.000000 +I (168294) example: expect speed: 0.000000 real_pulses:0 +I (168304) example: new speed:399.000000 +I (168304) example: expect speed: 0.000000 real_pulses:0 +I (168304) example: new speed:399.000000 +I (168314) example: expect speed: 0.000000 real_pulses:0 +I (168314) example: new speed:399.000000 +I (168324) example: expect speed: 0.000000 real_pulses:0 +I (168324) example: new speed:399.000000 +I (168334) example: expect speed: 0.000000 real_pulses:0 +I (168334) example: new speed:399.000000 +I (168344) example: expect speed: 0.000000 real_pulses:0 +I (168344) example: new speed:399.000000 +I (168354) example: expect speed: 0.000000 real_pulses:0 +I (168354) example: new speed:399.000000 +I (168364) example: expect speed: 0.000000 real_pulses:0 +I (168364) example: new speed:399.000000 +I (168374) example: expect speed: 0.000000 real_pulses:0 +I (168374) example: new speed:399.000000 +I (168384) example: expect speed: 0.000000 real_pulses:0 +I (168384) example: new speed:399.000000 +I (168394) example: expect speed: 0.000000 real_pulses:0 +I (168394) example: new speed:399.000000 +I (168404) example: expect speed: 0.000000 real_pulses:0 +I (168404) example: new speed:399.000000 +I (168414) example: expect speed: 0.000000 real_pulses:0 +I (168414) example: new speed:399.000000 +I (168424) example: expect speed: 0.000000 real_pulses:0 +I (168424) example: new speed:399.000000 +I (168434) example: expect speed: 0.000000 real_pulses:0 +I (168434) example: new speed:399.000000 +I (168444) example: expect speed: 0.000000 real_pulses:0 +I (168444) example: new speed:399.000000 +I (168454) example: expect speed: 0.000000 real_pulses:0 +I (168454) example: new speed:399.000000 +I (168464) example: expect speed: 0.000000 real_pulses:0 +I (168464) example: new speed:399.000000 +I (168474) example: expect speed: 0.000000 real_pulses:0 +I (168474) example: new speed:399.000000 +I (168484) example: expect speed: 0.000000 real_pulses:0 +I (168484) example: new speed:399.000000 +I (168494) example: expect speed: 0.000000 real_pulses:0 +I (168494) example: new speed:399.000000 +I (168504) example: expect speed: 0.000000 real_pulses:0 +I (168504) example: new speed:399.000000 +I (168514) example: expect speed: 0.000000 real_pulses:0 +I (168514) example: new speed:399.000000 +I (168524) example: expect speed: 0.000000 real_pulses:0 +I (168524) example: new speed:399.000000 +I (168534) example: expect speed: 0.000000 real_pulses:0 +I (168534) example: new speed:399.000000 +I (168544) example: expect speed: 0.000000 real_pulses:0 +I (168544) example: new speed:399.000000 +I (168554) example: expect speed: 0.000000 real_pulses:0 +I (168554) example: new speed:399.000000 +I (168564) example: expect speed: 0.000000 real_pulses:0 +I (168564) example: new speed:399.000000 +I (168574) example: expect speed: 0.000000 real_pulses:0 +I (168574) example: new speed:399.000000 +I (168584) example: expect speed: 0.000000 real_pulses:0 +I (168584) example: new speed:399.000000 +I (168594) example: expect speed: 0.000000 real_pulses:0 +I (168594) example: new speed:399.000000 +I (168604) example: expect speed: 0.000000 real_pulses:0 +I (168604) example: new speed:399.000000 +I (168614) example: expect speed: 0.000000 real_pulses:0 +I (168614) example: new speed:399.000000 +I (168624) example: expect speed: 0.000000 real_pulses:0 +I (168624) example: new speed:399.000000 +I (168634) example: expect speed: 0.000000 real_pulses:0 +I (168634) example: new speed:399.000000 +I (168644) example: expect speed: 0.000000 real_pulses:0 +I (168644) example: new speed:399.000000 +I (168654) example: expect speed: 0.000000 real_pulses:0 +I (168654) example: new speed:399.000000 +I (168664) example: expect speed: 0.000000 real_pulses:0 +I (168664) example: new speed:399.000000 +I (168674) example: expect speed: 0.000000 real_pulses:0 +I (168674) example: new speed:399.000000 +I (168684) example: expect speed: 0.000000 real_pulses:0 +I (168684) example: new speed:399.000000 +I (168694) example: expect speed: 0.000000 real_pulses:0 +I (168694) example: new speed:399.000000 +I (168704) example: expect speed: 0.000000 real_pulses:0 +I (168704) example: new speed:399.000000 +I (168714) example: expect speed: 0.000000 real_pulses:0 +I (168714) example: new speed:399.000000 +I (168724) example: expect speed: 0.000000 real_pulses:0 +I (168724) example: new speed:399.000000 +I (168734) example: expect speed: 0.000000 real_pulses:0 +I (168734) example: new speed:399.000000 +I (168744) example: expect speed: 0.000000 real_pulses:0 +I (168744) example: new speed:399.000000 +I (168754) example: expect speed: 0.000000 real_pulses:0 +I (168754) example: new speed:399.000000 +I (168764) example: expect speed: 0.000000 real_pulses:0 +I (168764) example: new speed:399.000000 +I (168774) example: expect speed: 0.000000 real_pulses:0 +I (168774) example: new speed:399.000000 +I (168784) example: expect speed: 0.000000 real_pulses:0 +I (168784) example: new speed:399.000000 +I (168794) example: expect speed: 0.000000 real_pulses:0 +I (168794) example: new speed:399.000000 +I (168804) example: expect speed: 0.000000 real_pulses:0 +I (168814) example: new speed:399.000000 +I (168814) example: expect speed: 0.000000 real_pulses:0 +I (168824) example: new speed:399.000000 +I (168824) example: expect speed: 0.000000 real_pulses:0 +I (168824) example: new speed:399.000000 +I (168834) example: expect speed: 0.000000 real_pulses:0 +I (168844) example: new speed:399.000000 +I (168844) example: expect speed: 0.000000 real_pulses:0 +I (168844) example: new speed:399.000000 +I (168854) example: expect speed: 0.000000 real_pulses:0 +I (168854) example: new speed:399.000000 +I (168864) example: expect speed: 0.000000 real_pulses:0 +I (168864) example: new speed:399.000000 +I (168874) example: expect speed: 0.000000 real_pulses:0 +I (168874) example: new speed:399.000000 +I (168884) example: expect speed: 0.000000 real_pulses:0 +I (168884) example: new speed:399.000000 +I (168894) example: expect speed: 0.000000 real_pulses:0 +I (168894) example: new speed:399.000000 +I (168904) example: expect speed: 0.000000 real_pulses:0 +I (168904) example: new speed:399.000000 +I (168914) example: expect speed: 0.000000 real_pulses:0 +I (168914) example: new speed:399.000000 +I (168924) example: expect speed: 0.000000 real_pulses:0 +I (168924) example: new speed:399.000000 +I (168934) example: expect speed: 0.000000 real_pulses:0 +I (168934) example: new speed:399.000000 +I (168944) example: expect speed: 0.000000 real_pulses:0 +I (168944) example: new speed:399.000000 +I (168954) example: expect speed: 0.000000 real_pulses:0 +I (168954) example: new speed:399.000000 +I (168964) example: expect speed: 0.000000 real_pulses:0 +I (168964) example: new speed:399.000000 +I (168974) example: expect speed: 0.000000 real_pulses:0 +I (168974) example: new speed:399.000000 +I (168984) example: expect speed: 0.000000 real_pulses:0 +I (168984) example: new speed:399.000000 +I (168994) example: expect speed: 0.000000 real_pulses:0 +I (168994) example: new speed:399.000000 +I (169004) example: expect speed: 0.000000 real_pulses:0 +I (169014) example: new speed:399.000000 +I (169014) example: expect speed: 0.000000 real_pulses:0 +I (169014) example: new speed:399.000000 +I (169024) example: expect speed: 0.000000 real_pulses:0 +I (169024) example: new speed:399.000000 +I (169034) example: expect speed: 0.000000 real_pulses:0 +I (169034) example: new speed:399.000000 +I (169044) example: expect speed: 0.000000 real_pulses:0 +I (169044) example: new speed:399.000000 +I (169054) example: expect speed: 0.000000 real_pulses:0 +I (169054) example: new speed:399.000000 +I (169064) example: expect speed: 0.000000 real_pulses:0 +I (169064) example: new speed:399.000000 +I (169074) example: expect speed: 0.000000 real_pulses:0 +I (169074) example: new speed:399.000000 +I (169084) example: expect speed: 0.000000 real_pulses:0 +I (169084) example: new speed:399.000000 +I (169094) example: expect speed: 0.000000 real_pulses:0 +I (169094) example: new speed:399.000000 +I (169104) example: expect speed: 0.000000 real_pulses:0 +I (169104) example: new speed:399.000000 +I (169114) example: expect speed: 0.000000 real_pulses:0 +I (169124) modbus tcp: ModBusSlave_recv() +I (169124) example: new speed:399.000000 +I (169124) modbus: ModbusSlaveProcess() +I (169124) modbus: check id... +I (169124) modbus: ok +I (169124) modbus: add: 0, length: 10 +I (169124) modbus: Read Holding Registers +I (169124) example: expect speed: 0.000000 real_pulses:0 +I (169134) example: new speed:399.000000 +I (169134) example: expect speed: 0.000000 real_pulses:0 +I (169134) example: new speed:399.000000 +I (169144) example: expect speed: 0.000000 real_pulses:0 +I (169144) example: new speed:399.000000 +I (169154) example: expect speed: 0.000000 real_pulses:0 +I (169154) example: new speed:399.000000 +I (169164) example: expect speed: 0.000000 real_pulses:0 +I (169164) example: new speed:399.000000 +I (169174) example: expect speed: 0.000000 real_pulses:0 +I (169184) example: new speed:399.000000 +I (169184) example: expect speed: 0.000000 real_pulses:0 +I (169184) example: new speed:399.000000 +I (169194) example: expect speed: 0.000000 real_pulses:0 +I (169194) example: new speed:399.000000 +I (169204) example: expect speed: 0.000000 real_pulses:0 +I (169204) example: new speed:399.000000 +I (169214) example: expect speed: 0.000000 real_pulses:0 +I (169214) example: new speed:399.000000 +I (169224) example: expect speed: 0.000000 real_pulses:0 +I (169224) example: new speed:399.000000 +I (169234) example: expect speed: 0.000000 real_pulses:0 +I (169234) example: new speed:399.000000 +I (169244) example: expect speed: 0.000000 real_pulses:0 +I (169244) example: new speed:399.000000 +I (169254) example: expect speed: 0.000000 real_pulses:0 +I (169254) example: new speed:399.000000 +I (169264) example: expect speed: 0.000000 real_pulses:0 +I (169264) example: new speed:399.000000 +I (169274) example: expect speed: 0.000000 real_pulses:0 +I (169274) example: new speed:399.000000 +I (169284) example: expect speed: 0.000000 real_pulses:0 +I (169284) example: new speed:399.000000 +I (169294) example: expect speed: 0.000000 real_pulses:0 +I (169294) example: new speed:399.000000 +I (169304) example: expect speed: 0.000000 real_pulses:0 +I (169304) example: new speed:399.000000 +I (169314) example: expect speed: 0.000000 real_pulses:0 +I (169314) example: new speed:399.000000 +I (169324) example: expect speed: 0.000000 real_pulses:0 +I (169324) example: new speed:399.000000 +I (169334) example: expect speed: 0.000000 real_pulses:0 +I (169334) example: new speed:399.000000 +I (169344) example: expect speed: 0.000000 real_pulses:0 +I (169344) example: new speed:399.000000 +I (169354) example: expect speed: 0.000000 real_pulses:0 +I (169354) example: new speed:399.000000 +I (169364) example: expect speed: 0.000000 real_pulses:0 +I (169364) example: new speed:399.000000 +I (169374) example: expect speed: 0.000000 real_pulses:0 +I (169374) example: new speed:399.000000 +I (169384) example: expect speed: 0.000000 real_pulses:0 +I (169384) example: new speed:399.000000 +I (169394) example: expect speed: 0.000000 real_pulses:0 +I (169394) example: new speed:399.000000 +I (169404) example: expect speed: 0.000000 real_pulses:0 +I (169404) example: new speed:399.000000 +I (169414) example: expect speed: 0.000000 real_pulses:0 +I (169414) example: new speed:399.000000 +I (169424) example: expect speed: 0.000000 real_pulses:0 +I (169424) example: new speed:399.000000 +I (169434) example: expect speed: 0.000000 real_pulses:0 +I (169434) example: new speed:399.000000 +I (169444) example: expect speed: 0.000000 real_pulses:0 +I (169444) example: new speed:399.000000 +I (169454) example: expect speed: 0.000000 real_pulses:0 +I (169454) example: new speed:399.000000 +I (169464) example: expect speed: 0.000000 real_pulses:0 +I (169464) example: new speed:399.000000 +I (169474) example: expect speed: 0.000000 real_pulses:0 +I (169474) example: new speed:399.000000 +I (169484) example: expect speed: 0.000000 real_pulses:0 +I (169484) example: new speed:399.000000 +I (169494) example: expect speed: 0.000000 real_pulses:0 +I (169494) example: new speed:399.000000 +I (169504) example: expect speed: 0.000000 real_pulses:0 +I (169504) example: new speed:399.000000 +I (169514) example: expect speed: 0.000000 real_pulses:0 +I (169514) example: new speed:399.000000 +I (169524) example: expect speed: 0.000000 real_pulses:0 +I (169524) example: new speed:399.000000 +I (169534) example: expect speed: 0.000000 real_pulses:0 +I (169534) example: new speed:399.000000 +I (169544) example: expect speed: 0.000000 real_pulses:0 +I (169544) example: new speed:399.000000 +I (169554) example: expect speed: 0.000000 real_pulses:0 +I (169554) example: new speed:399.000000 +I (169564) example: expect speed: 0.000000 real_pulses:0 +I (169564) example: new speed:399.000000 +I (169574) example: expect speed: 0.000000 real_pulses:0 +I (169574) example: new speed:399.000000 +I (169584) example: expect speed: 0.000000 real_pulses:0 +I (169584) example: new speed:399.000000 +I (169594) example: expect speed: 0.000000 real_pulses:0 +I (169594) example: new speed:399.000000 +I (169604) example: expect speed: 0.000000 real_pulses:0 +I (169604) example: new speed:399.000000 +I (169614) example: expect speed: 0.000000 real_pulses:0 +I (169614) example: new speed:399.000000 +I (169624) example: expect speed: 0.000000 real_pulses:0 +I (169624) example: new speed:399.000000 +I (169634) example: expect speed: 0.000000 real_pulses:0 +I (169634) example: new speed:399.000000 +I (169644) example: expect speed: 0.000000 real_pulses:0 +I (169644) example: new speed:399.000000 +I (169654) example: expect speed: 0.000000 real_pulses:0 +I (169654) example: new speed:399.000000 +I (169664) example: expect speed: 0.000000 real_pulses:0 +I (169664) example: new speed:399.000000 +I (169674) example: expect speed: 0.000000 real_pulses:0 +I (169674) example: new speed:399.000000 +I (169684) example: expect speed: 0.000000 real_pulses:0 +I (169684) example: new speed:399.000000 +I (169694) example: expect speed: 0.000000 real_pulses:0 +I (169694) example: new speed:399.000000 +I (169704) example: expect speed: 0.000000 real_pulses:0 +I (169704) example: new speed:399.000000 +I (169714) example: expect speed: 0.000000 real_pulses:0 +I (169714) example: new speed:399.000000 +I (169724) example: expect speed: 0.000000 real_pulses:0 +I (169734) example: new speed:399.000000 +I (169734) example: expect speed: 0.000000 real_pulses:0 +I (169734) example: new speed:399.000000 +I (169744) example: expect speed: 0.000000 real_pulses:0 +I (169744) example: new speed:399.000000 +I (169754) example: expect speed: 0.000000 real_pulses:0 +I (169754) example: new speed:399.000000 +I (169764) example: expect speed: 0.000000 real_pulses:0 +I (169764) example: new speed:399.000000 +I (169774) example: expect speed: 0.000000 real_pulses:0 +I (169774) example: new speed:399.000000 +I (169784) example: expect speed: 0.000000 real_pulses:0 +I (169784) example: new speed:399.000000 +I (169794) example: expect speed: 0.000000 real_pulses:0 +I (169794) example: new speed:399.000000 +I (169804) example: expect speed: 0.000000 real_pulses:0 +I (169804) example: new speed:399.000000 +I (169814) example: expect speed: 0.000000 real_pulses:0 +I (169814) example: new speed:399.000000 +I (169824) example: expect speed: 0.000000 real_pulses:0 +I (169824) example: new speed:399.000000 +I (169834) example: expect speed: 0.000000 real_pulses:0 +I (169834) example: new speed:399.000000 +I (169844) example: expect speed: 0.000000 real_pulses:0 +I (169844) example: new speed:399.000000 +I (169854) example: expect speed: 0.000000 real_pulses:0 +I (169854) example: new speed:399.000000 +I (169864) example: expect speed: 0.000000 real_pulses:0 +I (169864) example: new speed:399.000000 +I (169874) example: expect speed: 0.000000 real_pulses:0 +I (169874) example: new speed:399.000000 +I (169884) example: expect speed: 0.000000 real_pulses:0 +I (169884) example: new speed:399.000000 +I (169894) example: expect speed: 0.000000 real_pulses:0 +I (169894) example: new speed:399.000000 +I (169904) example: expect speed: 0.000000 real_pulses:0 +I (169904) example: new speed:399.000000 +I (169914) example: expect speed: 0.000000 real_pulses:0 +I (169914) example: new speed:399.000000 +I (169924) example: expect speed: 0.000000 real_pulses:0 +I (169924) example: new speed:399.000000 +I (169934) example: expect speed: 0.000000 real_pulses:0 +I (169934) example: new speed:399.000000 +I (169944) example: expect speed: 0.000000 real_pulses:0 +I (169944) example: new speed:399.000000 +I (169954) example: expect speed: 0.000000 real_pulses:0 +I (169954) example: new speed:399.000000 +I (169964) example: expect speed: 0.000000 real_pulses:0 +I (169964) example: new speed:399.000000 +I (169974) example: expect speed: 0.000000 real_pulses:0 +I (169974) example: new speed:399.000000 +I (169984) example: expect speed: 0.000000 real_pulses:0 +I (169984) example: new speed:399.000000 +I (169994) example: expect speed: 0.000000 real_pulses:0 +I (169994) example: new speed:399.000000 +I (170004) example: expect speed: 0.000000 real_pulses:0 +I (170004) example: new speed:399.000000 +I (170014) example: expect speed: 0.000000 real_pulses:0 +I (170014) example: new speed:399.000000 +I (170024) example: expect speed: 0.000000 real_pulses:0 +I (170024) example: new speed:399.000000 +I (170034) example: expect speed: 0.000000 real_pulses:0 +I (170044) example: new speed:399.000000 +I (170044) example: expect speed: 0.000000 real_pulses:0 +I (170044) example: new speed:399.000000 +I (170054) example: expect speed: 0.000000 real_pulses:0 +I (170054) example: new speed:399.000000 +I (170064) example: expect speed: 0.000000 real_pulses:0 +I (170064) example: new speed:399.000000 +I (170074) example: expect speed: 0.000000 real_pulses:0 +I (170074) example: new speed:399.000000 +I (170084) example: expect speed: 0.000000 real_pulses:0 +I (170084) example: new speed:399.000000 +I (170094) example: expect speed: 0.000000 real_pulses:0 +I (170094) example: new speed:399.000000 +I (170104) example: expect speed: 0.000000 real_pulses:0 +I (170104) example: new speed:399.000000 +I (170114) example: expect speed: 0.000000 real_pulses:0 +I (170114) example: new speed:399.000000 +I (170124) example: expect speed: 0.000000 real_pulses:0 +I (170124) example: new speed:399.000000 +I (170134) example: expect speed: 0.000000 real_pulses:0 +I (170144) example: new speed:399.000000 +I (170144) modbus tcp: ModBusSlave_recv() +I (170144) modbus: ModbusSlaveProcess() +I (170144) modbus: check id... +I (170144) modbus: ok +I (170144) modbus: add: 0, length: 10 +I (170144) modbus: Read Holding Registers +I (170144) example: expect speed: 0.000000 real_pulses:0 +I (170154) example: new speed:399.000000 +I (170154) example: expect speed: 0.000000 real_pulses:0 +I (170154) example: new speed:399.000000 +I (170164) example: expect speed: 0.000000 real_pulses:0 +I (170164) example: new speed:399.000000 +I (170174) example: expect speed: 0.000000 real_pulses:0 +I (170174) example: new speed:399.000000 +I (170184) example: expect speed: 0.000000 real_pulses:0 +I (170184) example: new speed:399.000000 +I (170194) example: expect speed: 0.000000 real_pulses:0 +I (170194) example: new speed:399.000000 +I (170204) example: expect speed: 0.000000 real_pulses:0 +I (170204) example: new speed:399.000000 +I (170214) example: expect speed: 0.000000 real_pulses:0 +I (170214) example: new speed:399.000000 +I (170224) example: expect speed: 0.000000 real_pulses:0 +I (170224) example: new speed:399.000000 +I (170234) example: expect speed: 0.000000 real_pulses:0 +I (170244) example: new speed:399.000000 +I (170244) example: expect speed: 0.000000 real_pulses:0 +I (170254) example: new speed:399.000000 +I (170254) example: expect speed: 0.000000 real_pulses:0 +I (170254) example: new speed:399.000000 +I (170264) example: expect speed: 0.000000 real_pulses:0 +I (170264) example: new speed:399.000000 +I (170274) example: expect speed: 0.000000 real_pulses:0 +I (170274) example: new speed:399.000000 +I (170284) example: expect speed: 0.000000 real_pulses:0 +I (170284) example: new speed:399.000000 +I (170294) example: expect speed: 0.000000 real_pulses:0 +I (170304) example: new speed:399.000000 +I (170304) example: expect speed: 0.000000 real_pulses:0 +I (170304) example: new speed:399.000000 +I (170314) example: expect speed: 0.000000 real_pulses:0 +I (170314) example: new speed:399.000000 +I (170324) example: expect speed: 0.000000 real_pulses:0 +I (170324) example: new speed:399.000000 +I (170334) example: expect speed: 0.000000 real_pulses:0 +I (170334) example: new speed:399.000000 +I (170344) example: expect speed: 0.000000 real_pulses:0 +I (170344) example: new speed:399.000000 +I (170354) example: expect speed: 0.000000 real_pulses:0 +I (170354) example: new speed:399.000000 +I (170364) example: expect speed: 0.000000 real_pulses:0 +I (170364) example: new speed:399.000000 +I (170374) example: expect speed: 0.000000 real_pulses:0 +I (170374) example: new speed:399.000000 +I (170384) example: expect speed: 0.000000 real_pulses:0 +I (170384) example: new speed:399.000000 +I (170394) example: expect speed: 0.000000 real_pulses:0 +I (170394) example: new speed:399.000000 +I (170404) example: expect speed: 0.000000 real_pulses:0 +I (170404) example: new speed:399.000000 +I (170414) example: expect speed: 0.000000 real_pulses:0 +I (170414) example: new speed:399.000000 +I (170424) example: expect speed: 0.000000 real_pulses:0 +I (170424) example: new speed:399.000000 +I (170434) example: expect speed: 0.000000 real_pulses:0 +I (170434) example: new speed:399.000000 +I (170444) example: expect speed: 0.000000 real_pulses:0 +I (170444) example: new speed:399.000000 +I (170454) example: expect speed: 0.000000 real_pulses:0 +I (170454) example: new speed:399.000000 +I (170464) example: expect speed: 0.000000 real_pulses:0 +I (170464) example: new speed:399.000000 +I (170474) example: expect speed: 0.000000 real_pulses:0 +I (170474) example: new speed:399.000000 +I (170484) example: expect speed: 0.000000 real_pulses:0 +I (170484) example: new speed:399.000000 +I (170494) example: expect speed: 0.000000 real_pulses:0 +I (170494) example: new speed:399.000000 +I (170504) example: expect speed: 0.000000 real_pulses:0 +I (170504) example: new speed:399.000000 +I (170514) example: expect speed: 0.000000 real_pulses:0 +I (170514) example: new speed:399.000000 +I (170524) example: expect speed: 0.000000 real_pulses:0 +I (170524) example: new speed:399.000000 +I (170534) example: expect speed: 0.000000 real_pulses:0 +I (170534) example: new speed:399.000000 +I (170544) example: expect speed: 0.000000 real_pulses:0 +I (170544) example: new speed:399.000000 +I (170554) example: expect speed: 0.000000 real_pulses:0 +I (170564) example: new speed:399.000000 +I (170564) example: expect speed: 0.000000 real_pulses:0 +I (170564) example: new speed:399.000000 +I (170574) example: expect speed: 0.000000 real_pulses:0 +I (170574) example: new speed:399.000000 +I (170584) example: expect speed: 0.000000 real_pulses:0 +I (170584) example: new speed:399.000000 +I (170594) example: expect speed: 0.000000 real_pulses:0 +I (170594) example: new speed:399.000000 +I (170604) example: expect speed: 0.000000 real_pulses:0 +I (170604) example: new speed:399.000000 +I (170614) example: expect speed: 0.000000 real_pulses:0 +I (170614) example: new speed:399.000000 +I (170624) example: expect speed: 0.000000 real_pulses:0 +I (170624) example: new speed:399.000000 +I (170634) example: expect speed: 0.000000 real_pulses:0 +I (170634) example: new speed:399.000000 +I (170644) example: expect speed: 0.000000 real_pulses:0 +I (170644) example: new speed:399.000000 +I (170654) example: expect speed: 0.000000 real_pulses:0 +I (170654) example: new speed:399.000000 +I (170664) example: expect speed: 0.000000 real_pulses:0 +I (170664) example: new speed:399.000000 +I (170674) example: expect speed: 0.000000 real_pulses:0 +I (170674) example: new speed:399.000000 +I (170684) example: expect speed: 0.000000 real_pulses:0 +I (170684) example: new speed:399.000000 +I (170694) example: expect speed: 0.000000 real_pulses:0 +I (170694) example: new speed:399.000000 +I (170704) example: expect speed: 0.000000 real_pulses:0 +I (170704) example: new speed:399.000000 +I (170714) example: expect speed: 0.000000 real_pulses:0 +I (170714) example: new speed:399.000000 +I (170724) example: expect speed: 0.000000 real_pulses:0 +I (170724) example: new speed:399.000000 +I (170734) example: expect speed: 0.000000 real_pulses:0 +I (170734) example: new speed:399.000000 +I (170744) example: expect speed: 0.000000 real_pulses:0 +I (170744) example: new speed:399.000000 +I (170754) example: expect speed: 0.000000 real_pulses:0 +I (170754) example: new speed:399.000000 +I (170764) example: expect speed: 0.000000 real_pulses:0 +I (170764) example: new speed:399.000000 +I (170774) example: expect speed: 0.000000 real_pulses:0 +I (170774) example: new speed:399.000000 +I (170784) example: expect speed: 0.000000 real_pulses:0 +I (170784) example: new speed:399.000000 +I (170794) example: expect speed: 0.000000 real_pulses:0 +I (170794) example: new speed:399.000000 +I (170804) example: expect speed: 0.000000 real_pulses:0 +I (170804) example: new speed:399.000000 +I (170814) example: expect speed: 0.000000 real_pulses:0 +I (170814) example: new speed:399.000000 +I (170824) example: expect speed: 0.000000 real_pulses:0 +I (170824) example: new speed:399.000000 +I (170834) example: expect speed: 0.000000 real_pulses:0 +I (170834) example: new speed:399.000000 +I (170844) example: expect speed: 0.000000 real_pulses:0 +I (170844) example: new speed:399.000000 +I (170854) example: expect speed: 0.000000 real_pulses:0 +I (170854) example: new speed:399.000000 +I (170864) example: expect speed: 0.000000 real_pulses:0 +I (170864) example: new speed:399.000000 +I (170874) example: expect speed: 0.000000 real_pulses:0 +I (170874) example: new speed:399.000000 +I (170884) example: expect speed: 0.000000 real_pulses:0 +I (170884) example: new speed:399.000000 +I (170894) example: expect speed: 0.000000 real_pulses:0 +I (170894) example: new speed:399.000000 +I (170904) example: expect speed: 0.000000 real_pulses:0 +I (170904) example: new speed:399.000000 +I (170914) example: expect speed: 0.000000 real_pulses:0 +I (170914) example: new speed:399.000000 +I (170924) example: expect speed: 0.000000 real_pulses:0 +I (170924) example: new speed:399.000000 +I (170934) example: expect speed: 0.000000 real_pulses:0 +I (170934) example: new speed:399.000000 +I (170944) example: expect speed: 0.000000 real_pulses:0 +I (170944) example: new speed:399.000000 +I (170954) example: expect speed: 0.000000 real_pulses:0 +I (170954) example: new speed:399.000000 +I (170964) example: expect speed: 0.000000 real_pulses:0 +I (170964) example: new speed:399.000000 +I (170974) example: expect speed: 0.000000 real_pulses:0 +I (170974) example: new speed:399.000000 +I (170984) example: expect speed: 0.000000 real_pulses:0 +I (170984) example: new speed:399.000000 +I (170994) example: expect speed: 0.000000 real_pulses:0 +I (170994) example: new speed:399.000000 +I (171004) example: expect speed: 0.000000 real_pulses:0 +I (171004) example: new speed:399.000000 +I (171014) example: expect speed: 0.000000 real_pulses:0 +I (171014) example: new speed:399.000000 +I (171024) example: expect speed: 0.000000 real_pulses:0 +I (171024) example: new speed:399.000000 +I (171034) example: expect speed: 0.000000 real_pulses:0 +I (171034) example: new speed:399.000000 +I (171044) example: expect speed: 0.000000 real_pulses:0 +I (171044) example: new speed:399.000000 +I (171054) example: expect speed: 0.000000 real_pulses:0 +I (171054) example: new speed:399.000000 +I (171064) example: expect speed: 0.000000 real_pulses:0 +I (171064) example: new speed:399.000000 +I (171074) example: expect speed: 0.000000 real_pulses:0 +I (171074) example: new speed:399.000000 +I (171084) example: expect speed: 0.000000 real_pulses:0 +I (171084) example: new speed:399.000000 +I (171094) example: expect speed: 0.000000 real_pulses:0 +I (171094) example: new speed:399.000000 +I (171104) example: expect speed: 0.000000 real_pulses:0 +I (171104) example: new speed:399.000000 +I (171114) example: expect speed: 0.000000 real_pulses:0 +I (171114) example: new speed:399.000000 +I (171124) example: expect speed: 0.000000 real_pulses:0 +I (171124) example: new speed:399.000000 +I (171134) example: expect speed: 0.000000 real_pulses:0 +I (171134) example: new speed:399.000000 +I (171144) example: expect speed: 0.000000 real_pulses:0 +I (171144) example: new speed:399.000000 +I (171154) example: expect speed: 0.000000 real_pulses:0 +I (171164) example: new speed:399.000000 +I (171164) modbus tcp: ModBusSlave_recv() +I (171164) modbus: ModbusSlaveProcess() +I (171164) modbus: check id... +I (171164) modbus: ok +I (171164) modbus: add: 0, length: 10 +I (171164) modbus: Read Holding Registers +I (171164) example: expect speed: 0.000000 real_pulses:0 +I (171174) example: new speed:399.000000 +I (171174) example: expect speed: 0.000000 real_pulses:0 +I (171174) example: new speed:399.000000 +I (171184) example: expect speed: 0.000000 real_pulses:0 +I (171184) example: new speed:399.000000 +I (171194) example: expect speed: 0.000000 real_pulses:0 +I (171194) example: new speed:399.000000 +I (171204) example: expect speed: 0.000000 real_pulses:0 +I (171204) example: new speed:399.000000 +I (171214) example: expect speed: 0.000000 real_pulses:0 +I (171214) example: new speed:399.000000 +I (171224) example: expect speed: 0.000000 real_pulses:0 +I (171224) example: new speed:399.000000 +I (171234) example: expect speed: 0.000000 real_pulses:0 +I (171234) example: new speed:399.000000 +I (171244) example: expect speed: 0.000000 real_pulses:0 +I (171244) example: new speed:399.000000 +I (171254) example: expect speed: 0.000000 real_pulses:0 +I (171254) example: new speed:399.000000 +I (171264) example: expect speed: 0.000000 real_pulses:0 +I (171274) example: new speed:399.000000 +I (171274) example: expect speed: 0.000000 real_pulses:0 +I (171274) example: new speed:399.000000 +I (171284) example: expect speed: 0.000000 real_pulses:0 +I (171284) example: new speed:399.000000 +I (171294) example: expect speed: 0.000000 real_pulses:0 +I (171294) example: new speed:399.000000 +I (171304) example: expect speed: 0.000000 real_pulses:0 +I (171304) example: new speed:399.000000 +I (171314) example: expect speed: 0.000000 real_pulses:0 +I (171324) example: new speed:399.000000 +I (171324) example: expect speed: 0.000000 real_pulses:0 +I (171324) example: new speed:399.000000 +I (171334) example: expect speed: 0.000000 real_pulses:0 +I (171334) example: new speed:399.000000 +I (171344) example: expect speed: 0.000000 real_pulses:0 +I (171344) example: new speed:399.000000 +I (171354) example: expect speed: 0.000000 real_pulses:0 +I (171354) example: new speed:399.000000 +I (171364) example: expect speed: 0.000000 real_pulses:0 +I (171364) example: new speed:399.000000 +I (171374) example: expect speed: 0.000000 real_pulses:0 +I (171374) example: new speed:399.000000 +I (171384) example: expect speed: 0.000000 real_pulses:0 +I (171384) example: new speed:399.000000 +I (171394) example: expect speed: 0.000000 real_pulses:0 +I (171394) example: new speed:399.000000 +I (171404) example: expect speed: 0.000000 real_pulses:0 +I (171404) example: new speed:399.000000 +I (171414) example: expect speed: 0.000000 real_pulses:0 +I (171414) example: new speed:399.000000 +I (171424) example: expect speed: 0.000000 real_pulses:0 +I (171424) example: new speed:399.000000 +I (171434) example: expect speed: 0.000000 real_pulses:0 +I (171434) example: new speed:399.000000 +I (171444) example: expect speed: 0.000000 real_pulses:0 +I (171444) example: new speed:399.000000 +I (171454) example: expect speed: 0.000000 real_pulses:0 +I (171454) example: new speed:399.000000 +I (171464) example: expect speed: 0.000000 real_pulses:0 +I (171464) example: new speed:399.000000 +I (171474) example: expect speed: 0.000000 real_pulses:0 +I (171474) example: new speed:399.000000 +I (171484) example: expect speed: 0.000000 real_pulses:0 +I (171484) example: new speed:399.000000 +I (171494) example: expect speed: 0.000000 real_pulses:0 +I (171494) example: new speed:399.000000 +I (171504) example: expect speed: 0.000000 real_pulses:0 +I (171504) example: new speed:399.000000 +I (171514) example: expect speed: 0.000000 real_pulses:0 +I (171514) example: new speed:399.000000 +I (171524) example: expect speed: 0.000000 real_pulses:0 +I (171524) example: new speed:399.000000 +I (171534) example: expect speed: 0.000000 real_pulses:0 +I (171534) example: new speed:399.000000 +I (171544) example: expect speed: 0.000000 real_pulses:0 +I (171544) example: new speed:399.000000 +I (171554) example: expect speed: 0.000000 real_pulses:0 +I (171554) example: new speed:399.000000 +I (171564) example: expect speed: 0.000000 real_pulses:0 +I (171564) example: new speed:399.000000 +I (171574) example: expect speed: 0.000000 real_pulses:0 +I (171574) example: new speed:399.000000 +I (171584) example: expect speed: 0.000000 real_pulses:0 +I (171584) example: new speed:399.000000 +I (171594) example: expect speed: 0.000000 real_pulses:0 +I (171594) example: new speed:399.000000 +I (171604) example: expect speed: 0.000000 real_pulses:0 +I (171604) example: new speed:399.000000 +I (171614) example: expect speed: 0.000000 real_pulses:0 +I (171614) example: new speed:399.000000 +I (171624) example: expect speed: 0.000000 real_pulses:0 +I (171624) example: new speed:399.000000 +I (171634) example: expect speed: 0.000000 real_pulses:0 +I (171634) example: new speed:399.000000 +I (171644) example: expect speed: 0.000000 real_pulses:0 +I (171644) example: new speed:399.000000 +I (171654) example: expect speed: 0.000000 real_pulses:0 +I (171654) example: new speed:399.000000 +I (171664) example: expect speed: 0.000000 real_pulses:0 +I (171664) example: new speed:399.000000 +I (171674) example: expect speed: 0.000000 real_pulses:0 +I (171674) example: new speed:399.000000 +I (171684) example: expect speed: 0.000000 real_pulses:0 +I (171684) example: new speed:399.000000 +I (171694) example: expect speed: 0.000000 real_pulses:0 +I (171694) example: new speed:399.000000 +I (171704) example: expect speed: 0.000000 real_pulses:0 +I (171704) example: new speed:399.000000 +I (171714) example: expect speed: 0.000000 real_pulses:0 +I (171714) example: new speed:399.000000 +I (171724) example: expect speed: 0.000000 real_pulses:0 +I (171724) example: new speed:399.000000 +I (171734) example: expect speed: 0.000000 real_pulses:0 +I (171734) example: new speed:399.000000 +I (171744) example: expect speed: 0.000000 real_pulses:0 +I (171744) example: new speed:399.000000 +I (171754) example: expect speed: 0.000000 real_pulses:0 +I (171754) example: new speed:399.000000 +I (171764) example: expect speed: 0.000000 real_pulses:0 +I (171764) example: new speed:399.000000 +I (171774) example: expect speed: 0.000000 real_pulses:0 +I (171784) example: new speed:399.000000 +I (171784) example: expect speed: 0.000000 real_pulses:0 +I (171784) example: new speed:399.000000 +I (171794) example: expect speed: 0.000000 real_pulses:0 +I (171794) example: new speed:399.000000 +I (171804) example: expect speed: 0.000000 real_pulses:0 +I (171804) example: new speed:399.000000 +I (171814) example: expect speed: 0.000000 real_pulses:0 +I (171814) example: new speed:399.000000 +I (171824) example: expect speed: 0.000000 real_pulses:0 +I (171824) example: new speed:399.000000 +I (171834) example: expect speed: 0.000000 real_pulses:0 +I (171834) example: new speed:399.000000 +I (171844) example: expect speed: 0.000000 real_pulses:0 +I (171844) example: new speed:399.000000 +I (171854) example: expect speed: 0.000000 real_pulses:0 +I (171854) example: new speed:399.000000 +I (171864) example: expect speed: 0.000000 real_pulses:0 +I (171864) example: new speed:399.000000 +I (171874) example: expect speed: 0.000000 real_pulses:0 +I (171874) example: new speed:399.000000 +I (171884) example: expect speed: 0.000000 real_pulses:0 +I (171884) example: new speed:399.000000 +I (171894) example: expect speed: 0.000000 real_pulses:0 +I (171894) example: new speed:399.000000 +I (171904) example: expect speed: 0.000000 real_pulses:0 +I (171904) example: new speed:399.000000 +I (171914) example: expect speed: 0.000000 real_pulses:0 +I (171914) example: new speed:399.000000 +I (171924) example: expect speed: 0.000000 real_pulses:0 +I (171924) example: new speed:399.000000 +I (171934) example: expect speed: 0.000000 real_pulses:0 +I (171934) example: new speed:399.000000 +I (171944) example: expect speed: 0.000000 real_pulses:0 +I (171944) example: new speed:399.000000 +I (171954) example: expect speed: 0.000000 real_pulses:0 +I (171954) example: new speed:399.000000 +I (171964) example: expect speed: 0.000000 real_pulses:0 +I (171964) example: new speed:399.000000 +I (171974) example: expect speed: 0.000000 real_pulses:0 +I (171974) example: new speed:399.000000 +I (171984) example: expect speed: 0.000000 real_pulses:0 +I (171984) example: new speed:399.000000 +I (171994) example: expect speed: 0.000000 real_pulses:0 +I (171994) example: new speed:399.000000 +I (172004) example: expect speed: 0.000000 real_pulses:0 +I (172004) example: new speed:399.000000 +I (172014) example: expect speed: 0.000000 real_pulses:0 +I (172014) example: new speed:399.000000 +I (172024) example: expect speed: 0.000000 real_pulses:0 +I (172024) example: new speed:399.000000 +I (172034) example: expect speed: 0.000000 real_pulses:0 +I (172034) example: new speed:399.000000 +I (172044) example: expect speed: 0.000000 real_pulses:0 +I (172044) example: new speed:399.000000 +I (172054) example: expect speed: 0.000000 real_pulses:0 +I (172054) example: new speed:399.000000 +I (172064) example: expect speed: 0.000000 real_pulses:0 +I (172064) example: new speed:399.000000 +I (172074) example: expect speed: 0.000000 real_pulses:0 +I (172084) example: new speed:399.000000 +I (172084) example: expect speed: 0.000000 real_pulses:0 +I (172084) example: new speed:399.000000 +I (172094) example: expect speed: 0.000000 real_pulses:0 +I (172094) example: new speed:399.000000 +I (172104) example: expect speed: 0.000000 real_pulses:0 +I (172104) example: new speed:399.000000 +I (172114) example: expect speed: 0.000000 real_pulses:0 +I (172114) example: new speed:399.000000 +I (172124) example: expect speed: 0.000000 real_pulses:0 +I (172124) example: new speed:399.000000 +I (172134) example: expect speed: 0.000000 real_pulses:0 +I (172134) example: new speed:399.000000 +I (172144) example: expect speed: 0.000000 real_pulses:0 +I (172144) example: new speed:399.000000 +I (172154) example: expect speed: 0.000000 real_pulses:0 +I (172154) example: new speed:399.000000 +I (172164) example: expect speed: 0.000000 real_pulses:0 +I (172164) example: new speed:399.000000 +I (172174) example: expect speed: 0.000000 real_pulses:0 +I (172174) example: new speed:399.000000 +I (172184) example: expect speed: 0.000000 real_pulses:0 +I (172194) example: new speed:399.000000 +I (172194) modbus tcp: ModBusSlave_recv() +I (172194) modbus: ModbusSlaveProcess() +I (172194) modbus: check id... +I (172194) modbus: ok +I (172194) modbus: add: 0, length: 10 +I (172194) modbus: Read Holding Registers +I (172194) example: expect speed: 0.000000 real_pulses:0 +I (172204) example: new speed:399.000000 +I (172204) example: expect speed: 0.000000 real_pulses:0 +I (172204) example: new speed:399.000000 +I (172214) example: expect speed: 0.000000 real_pulses:0 +I (172214) example: new speed:399.000000 +I (172224) example: expect speed: 0.000000 real_pulses:0 +I (172224) example: new speed:399.000000 +I (172234) example: expect speed: 0.000000 real_pulses:0 +I (172234) example: new speed:399.000000 +I (172244) example: expect speed: 0.000000 real_pulses:0 +I (172244) example: new speed:399.000000 +I (172254) example: expect speed: 0.000000 real_pulses:0 +I (172264) example: new speed:399.000000 +I (172264) example: expect speed: 0.000000 real_pulses:0 +I (172264) example: new speed:399.000000 +I (172274) example: expect speed: 0.000000 real_pulses:0 +I (172274) example: new speed:399.000000 +I (172284) example: expect speed: 0.000000 real_pulses:0 +I (172294) example: new speed:399.000000 +I (172294) example: expect speed: 0.000000 real_pulses:0 +I (172294) example: new speed:399.000000 +I (172304) example: expect speed: 0.000000 real_pulses:0 +I (172304) example: new speed:399.000000 +I (172314) example: expect speed: 0.000000 real_pulses:0 +I (172314) example: new speed:399.000000 +I (172324) example: expect speed: 0.000000 real_pulses:0 +I (172324) example: new speed:399.000000 +I (172334) example: expect speed: 0.000000 real_pulses:0 +I (172334) example: new speed:399.000000 +I (172344) example: expect speed: 0.000000 real_pulses:0 +I (172354) example: new speed:399.000000 +I (172354) example: expect speed: 0.000000 real_pulses:0 +I (172354) example: new speed:399.000000 +I (172364) example: expect speed: 0.000000 real_pulses:0 +I (172364) example: new speed:399.000000 +I (172374) example: expect speed: 0.000000 real_pulses:0 +I (172374) example: new speed:399.000000 +I (172384) example: expect speed: 0.000000 real_pulses:0 +I (172394) example: new speed:399.000000 +I (172394) example: expect speed: 0.000000 real_pulses:0 +I (172404) example: new speed:399.000000 +I (172404) example: expect speed: 0.000000 real_pulses:0 +I (172404) example: new speed:399.000000 +I (172414) example: expect speed: 0.000000 real_pulses:0 +I (172414) example: new speed:399.000000 +I (172424) example: expect speed: 0.000000 real_pulses:0 +I (172424) example: new speed:399.000000 +I (172434) example: expect speed: 0.000000 real_pulses:0 +I (172434) example: new speed:399.000000 +I (172444) example: expect speed: 0.000000 real_pulses:0 +I (172444) example: new speed:399.000000 +I (172454) example: expect speed: 0.000000 real_pulses:0 +I (172454) example: new speed:399.000000 +I (172464) example: expect speed: 0.000000 real_pulses:0 +I (172464) example: new speed:399.000000 +I (172474) example: expect speed: 0.000000 real_pulses:0 +I (172474) example: new speed:399.000000 +I (172484) example: expect speed: 0.000000 real_pulses:0 +I (172484) example: new speed:399.000000 +I (172494) example: expect speed: 0.000000 real_pulses:0 +I (172494) example: new speed:399.000000 +I (172504) example: expect speed: 0.000000 real_pulses:0 +I (172504) example: new speed:399.000000 +I (172514) example: expect speed: 0.000000 real_pulses:0 +I (172514) example: new speed:399.000000 +I (172524) example: expect speed: 0.000000 real_pulses:0 +I (172524) example: new speed:399.000000 +I (172534) example: expect speed: 0.000000 real_pulses:0 +I (172534) example: new speed:399.000000 +I (172544) example: expect speed: 0.000000 real_pulses:0 +I (172544) example: new speed:399.000000 +I (172554) example: expect speed: 0.000000 real_pulses:0 +I (172554) example: new speed:399.000000 +I (172564) example: expect speed: 0.000000 real_pulses:0 +I (172564) example: new speed:399.000000 +I (172574) example: expect speed: 0.000000 real_pulses:0 +I (172574) example: new speed:399.000000 +I (172584) example: expect speed: 0.000000 real_pulses:0 +I (172584) example: new speed:399.000000 +I (172594) example: expect speed: 0.000000 real_pulses:0 +I (172594) example: new speed:399.000000 +I (172604) example: expect speed: 0.000000 real_pulses:0 +I (172604) example: new speed:399.000000 +I (172614) example: expect speed: 0.000000 real_pulses:0 +I (172614) example: new speed:399.000000 +I (172624) example: expect speed: 0.000000 real_pulses:0 +I (172624) example: new speed:399.000000 +I (172634) example: expect speed: 0.000000 real_pulses:0 +I (172634) example: new speed:399.000000 +I (172644) example: expect speed: 0.000000 real_pulses:0 +I (172644) example: new speed:399.000000 +I (172654) example: expect speed: 0.000000 real_pulses:0 +I (172654) example: new speed:399.000000 +I (172664) example: expect speed: 0.000000 real_pulses:0 +I (172664) example: new speed:399.000000 +I (172674) example: expect speed: 0.000000 real_pulses:0 +I (172674) example: new speed:399.000000 +I (172684) example: expect speed: 0.000000 real_pulses:0 +I (172684) example: new speed:399.000000 +I (172694) example: expect speed: 0.000000 real_pulses:0 +I (172694) example: new speed:399.000000 +I (172704) example: expect speed: 0.000000 real_pulses:0 +I (172704) example: new speed:399.000000 +I (172714) example: expect speed: 0.000000 real_pulses:0 +I (172714) example: new speed:399.000000 +I (172724) example: expect speed: 0.000000 real_pulses:0 +I (172724) example: new speed:399.000000 +I (172734) example: expect speed: 0.000000 real_pulses:0 +I (172734) example: new speed:399.000000 +I (172744) example: expect speed: 0.000000 real_pulses:0 +I (172744) example: new speed:399.000000 +I (172754) example: expect speed: 0.000000 real_pulses:0 +I (172754) example: new speed:399.000000 +I (172764) example: expect speed: 0.000000 real_pulses:0 +I (172764) example: new speed:399.000000 +I (172774) example: expect speed: 0.000000 real_pulses:0 +I (172774) example: new speed:399.000000 +I (172784) example: expect speed: 0.000000 real_pulses:0 +I (172784) example: new speed:399.000000 +I (172794) example: expect speed: 0.000000 real_pulses:0 +I (172804) example: new speed:399.000000 +I (172804) example: expect speed: 0.000000 real_pulses:0 +I (172804) example: new speed:399.000000 +I (172814) example: expect speed: 0.000000 real_pulses:0 +I (172814) example: new speed:399.000000 +I (172824) example: expect speed: 0.000000 real_pulses:0 +I (172824) example: new speed:399.000000 +I (172834) example: expect speed: 0.000000 real_pulses:0 +I (172834) example: new speed:399.000000 +I (172844) example: expect speed: 0.000000 real_pulses:0 +I (172844) example: new speed:399.000000 +I (172854) example: expect speed: 0.000000 real_pulses:0 +I (172854) example: new speed:399.000000 +I (172864) example: expect speed: 0.000000 real_pulses:0 +I (172864) example: new speed:399.000000 +I (172874) example: expect speed: 0.000000 real_pulses:0 +I (172874) example: new speed:399.000000 +I (172884) example: expect speed: 0.000000 real_pulses:0 +I (172884) example: new speed:399.000000 +I (172894) example: expect speed: 0.000000 real_pulses:0 +I (172894) example: new speed:399.000000 +I (172904) example: expect speed: 0.000000 real_pulses:0 +I (172904) example: new speed:399.000000 +I (172914) example: expect speed: 0.000000 real_pulses:0 +I (172914) example: new speed:399.000000 +I (172924) example: expect speed: 0.000000 real_pulses:0 +I (172924) example: new speed:399.000000 +I (172934) example: expect speed: 0.000000 real_pulses:0 +I (172934) example: new speed:399.000000 +I (172944) example: expect speed: 0.000000 real_pulses:0 +I (172944) example: new speed:399.000000 +I (172954) example: expect speed: 0.000000 real_pulses:0 +I (172954) example: new speed:399.000000 +I (172964) example: expect speed: 0.000000 real_pulses:0 +I (172964) example: new speed:399.000000 +I (172974) example: expect speed: 0.000000 real_pulses:0 +I (172974) example: new speed:399.000000 +I (172984) example: expect speed: 0.000000 real_pulses:0 +I (172984) example: new speed:399.000000 +I (172994) example: expect speed: 0.000000 real_pulses:0 +I (172994) example: new speed:399.000000 +I (173004) example: expect speed: 0.000000 real_pulses:0 +I (173004) example: new speed:399.000000 +I (173014) example: expect speed: 0.000000 real_pulses:0 +I (173014) example: new speed:399.000000 +I (173024) example: expect speed: 0.000000 real_pulses:0 +I (173024) example: new speed:399.000000 +I (173034) example: expect speed: 0.000000 real_pulses:0 +I (173034) example: new speed:399.000000 +I (173044) example: expect speed: 0.000000 real_pulses:0 +I (173044) example: new speed:399.000000 +I (173054) example: expect speed: 0.000000 real_pulses:0 +I (173054) example: new speed:399.000000 +I (173064) example: expect speed: 0.000000 real_pulses:0 +I (173064) example: new speed:399.000000 +I (173074) example: expect speed: 0.000000 real_pulses:0 +I (173074) example: new speed:399.000000 +I (173084) example: expect speed: 0.000000 real_pulses:0 +I (173084) example: new speed:399.000000 +I (173094) example: expect speed: 0.000000 real_pulses:0 +I (173094) example: new speed:399.000000 +I (173104) example: expect speed: 0.000000 real_pulses:0 +I (173114) example: new speed:399.000000 +I (173114) example: expect speed: 0.000000 real_pulses:0 +I (173114) example: new speed:399.000000 +I (173124) example: expect speed: 0.000000 real_pulses:0 +I (173124) example: new speed:399.000000 +I (173134) example: expect speed: 0.000000 real_pulses:0 +I (173134) example: new speed:399.000000 +I (173144) example: expect speed: 0.000000 real_pulses:0 +I (173144) example: new speed:399.000000 +I (173154) example: expect speed: 0.000000 real_pulses:0 +I (173154) example: new speed:399.000000 +I (173164) example: expect speed: 0.000000 real_pulses:0 +I (173164) example: new speed:399.000000 +I (173174) example: expect speed: 0.000000 real_pulses:0 +I (173174) example: new speed:399.000000 +I (173184) example: expect speed: 0.000000 real_pulses:0 +I (173184) example: new speed:399.000000 +I (173194) example: expect speed: 0.000000 real_pulses:0 +I (173194) example: new speed:399.000000 +I (173204) example: expect speed: 0.000000 real_pulses:0 +I (173214) example: new speed:399.000000 +I (173214) modbus tcp: ModBusSlave_recv() +I (173214) modbus: ModbusSlaveProcess() +I (173214) modbus: check id... +I (173214) modbus: ok +I (173214) modbus: add: 0, length: 10 +I (173214) modbus: Read Holding Registers +I (173214) example: expect speed: 0.000000 real_pulses:0 +I (173224) example: new speed:399.000000 +I (173224) example: expect speed: 0.000000 real_pulses:0 +I (173224) example: new speed:399.000000 +I (173234) example: expect speed: 0.000000 real_pulses:0 +I (173234) example: new speed:399.000000 +I (173244) example: expect speed: 0.000000 real_pulses:0 +I (173244) example: new speed:399.000000 +I (173254) example: expect speed: 0.000000 real_pulses:0 +I (173254) example: new speed:399.000000 +I (173264) example: expect speed: 0.000000 real_pulses:0 +I (173274) example: new speed:399.000000 +I (173274) example: expect speed: 0.000000 real_pulses:0 +I (173274) example: new speed:399.000000 +I (173284) example: expect speed: 0.000000 real_pulses:0 +I (173284) example: new speed:399.000000 +I (173294) example: expect speed: 0.000000 real_pulses:0 +I (173294) example: new speed:399.000000 +I (173304) example: expect speed: 0.000000 real_pulses:0 +I (173304) example: new speed:399.000000 +I (173314) example: expect speed: 0.000000 real_pulses:0 +I (173324) example: new speed:399.000000 +I (173324) example: expect speed: 0.000000 real_pulses:0 +I (173324) example: new speed:399.000000 +I (173334) example: expect speed: 0.000000 real_pulses:0 +I (173334) example: new speed:399.000000 +I (173344) example: expect speed: 0.000000 real_pulses:0 +I (173344) example: new speed:399.000000 +I (173354) example: expect speed: 0.000000 real_pulses:0 +I (173354) example: new speed:399.000000 +I (173364) example: expect speed: 0.000000 real_pulses:0 +I (173364) example: new speed:399.000000 +I (173374) example: expect speed: 0.000000 real_pulses:0 +I (173374) example: new speed:399.000000 +I (173384) example: expect speed: 0.000000 real_pulses:0 +I (173384) example: new speed:399.000000 +I (173394) example: expect speed: 0.000000 real_pulses:0 +I (173394) example: new speed:399.000000 +I (173404) example: expect speed: 0.000000 real_pulses:0 +I (173404) example: new speed:399.000000 +I (173414) example: expect speed: 0.000000 real_pulses:0 +I (173424) example: new speed:399.000000 +I (173424) example: expect speed: 0.000000 real_pulses:0 +I (173424) example: new speed:399.000000 +I (173434) example: expect speed: 0.000000 real_pulses:0 +I (173434) example: new speed:399.000000 +I (173444) example: expect speed: 0.000000 real_pulses:0 +I (173444) example: new speed:399.000000 +I (173454) example: expect speed: 0.000000 real_pulses:0 +I (173454) example: new speed:399.000000 +I (173464) example: expect speed: 0.000000 real_pulses:0 +I (173464) example: new speed:399.000000 +I (173474) example: expect speed: 0.000000 real_pulses:0 +I (173474) example: new speed:399.000000 +I (173484) example: expect speed: 0.000000 real_pulses:0 +I (173484) example: new speed:399.000000 +I (173494) example: expect speed: 0.000000 real_pulses:0 +I (173494) example: new speed:399.000000 +I (173504) example: expect speed: 0.000000 real_pulses:0 +I (173504) example: new speed:399.000000 +I (173514) example: expect speed: 0.000000 real_pulses:0 +I (173514) example: new speed:399.000000 +I (173524) example: expect speed: 0.000000 real_pulses:0 +I (173524) example: new speed:399.000000 +I (173534) example: expect speed: 0.000000 real_pulses:0 +I (173534) example: new speed:399.000000 +I (173544) example: expect speed: 0.000000 real_pulses:0 +I (173544) example: new speed:399.000000 +I (173554) example: expect speed: 0.000000 real_pulses:0 +I (173554) example: new speed:399.000000 +I (173564) example: expect speed: 0.000000 real_pulses:0 +I (173564) example: new speed:399.000000 +I (173574) example: expect speed: 0.000000 real_pulses:0 +I (173574) example: new speed:399.000000 +I (173584) example: expect speed: 0.000000 real_pulses:0 +I (173584) example: new speed:399.000000 +I (173594) example: expect speed: 0.000000 real_pulses:0 +I (173594) example: new speed:399.000000 +I (173604) example: expect speed: 0.000000 real_pulses:0 +I (173604) example: new speed:399.000000 +I (173614) example: expect speed: 0.000000 real_pulses:0 +I (173624) example: new speed:399.000000 +I (173624) example: expect speed: 0.000000 real_pulses:0 +I (173624) example: new speed:399.000000 +I (173634) example: expect speed: 0.000000 real_pulses:0 +I (173634) example: new speed:399.000000 +I (173644) example: expect speed: 0.000000 real_pulses:0 +I (173654) example: new speed:399.000000 +I (173654) example: expect speed: 0.000000 real_pulses:0 +I (173654) example: new speed:399.000000 +I (173664) example: expect speed: 0.000000 real_pulses:0 +I (173664) example: new speed:399.000000 +I (173674) example: expect speed: 0.000000 real_pulses:0 +I (173674) example: new speed:399.000000 +I (173684) example: expect speed: 0.000000 real_pulses:0 +I (173684) example: new speed:399.000000 +I (173694) example: expect speed: 0.000000 real_pulses:0 +I (173694) example: new speed:399.000000 +I (173704) example: expect speed: 0.000000 real_pulses:0 +I (173704) example: new speed:399.000000 +I (173714) example: expect speed: 0.000000 real_pulses:0 +I (173714) example: new speed:399.000000 +I (173724) example: expect speed: 0.000000 real_pulses:0 +I (173724) example: new speed:399.000000 +I (173734) example: expect speed: 0.000000 real_pulses:0 +I (173734) example: new speed:399.000000 +I (173744) example: expect speed: 0.000000 real_pulses:0 +I (173744) example: new speed:399.000000 +I (173754) example: expect speed: 0.000000 real_pulses:0 +I (173754) example: new speed:399.000000 +I (173764) example: expect speed: 0.000000 real_pulses:0 +I (173764) example: new speed:399.000000 +I (173774) example: expect speed: 0.000000 real_pulses:0 +I (173774) example: new speed:399.000000 +I (173784) example: expect speed: 0.000000 real_pulses:0 +I (173784) example: new speed:399.000000 +I (173794) example: expect speed: 0.000000 real_pulses:0 +I (173794) example: new speed:399.000000 +I (173804) example: expect speed: 0.000000 real_pulses:0 +I (173804) example: new speed:399.000000 +I (173814) example: expect speed: 0.000000 real_pulses:0 +I (173814) example: new speed:399.000000 +I (173824) example: expect speed: 0.000000 real_pulses:0 +I (173824) example: new speed:399.000000 +I (173834) example: expect speed: 0.000000 real_pulses:0 +I (173834) example: new speed:399.000000 +I (173844) example: expect speed: 0.000000 real_pulses:0 +I (173844) example: new speed:399.000000 +I (173854) example: expect speed: 0.000000 real_pulses:0 +I (173854) example: new speed:399.000000 +I (173864) example: expect speed: 0.000000 real_pulses:0 +I (173864) example: new speed:399.000000 +I (173874) example: expect speed: 0.000000 real_pulses:0 +I (173874) example: new speed:399.000000 +I (173884) example: expect speed: 0.000000 real_pulses:0 +I (173884) example: new speed:399.000000 +I (173894) example: expect speed: 0.000000 real_pulses:0 +I (173894) example: new speed:399.000000 +I (173904) example: expect speed: 0.000000 real_pulses:0 +I (173904) example: new speed:399.000000 +I (173914) example: expect speed: 0.000000 real_pulses:0 +I (173914) example: new speed:399.000000 +I (173924) example: expect speed: 0.000000 real_pulses:0 +I (173924) example: new speed:399.000000 +I (173934) example: expect speed: 0.000000 real_pulses:0 +I (173934) example: new speed:399.000000 +I (173944) example: expect speed: 0.000000 real_pulses:0 +I (173944) example: new speed:399.000000 +I (173954) example: expect speed: 0.000000 real_pulses:0 +I (173954) example: new speed:399.000000 +I (173964) example: expect speed: 0.000000 real_pulses:0 +I (173964) example: new speed:399.000000 +I (173974) example: expect speed: 0.000000 real_pulses:0 +I (173974) example: new speed:399.000000 +I (173984) example: expect speed: 0.000000 real_pulses:0 +I (173984) example: new speed:399.000000 +I (173994) example: expect speed: 0.000000 real_pulses:0 +I (173994) example: new speed:399.000000 +I (174004) example: expect speed: 0.000000 real_pulses:0 +I (174004) example: new speed:399.000000 +I (174014) example: expect speed: 0.000000 real_pulses:0 +I (174014) example: new speed:399.000000 +I (174024) example: expect speed: 0.000000 real_pulses:0 +I (174024) example: new speed:399.000000 +I (174034) example: expect speed: 0.000000 real_pulses:0 +I (174034) example: new speed:399.000000 +I (174044) example: expect speed: 0.000000 real_pulses:0 +I (174044) example: new speed:399.000000 +I (174054) example: expect speed: 0.000000 real_pulses:0 +I (174054) example: new speed:399.000000 +I (174064) example: expect speed: 0.000000 real_pulses:0 +I (174064) example: new speed:399.000000 +I (174074) example: expect speed: 0.000000 real_pulses:0 +I (174074) example: new speed:399.000000 +I (174084) example: expect speed: 0.000000 real_pulses:0 +I (174084) example: new speed:399.000000 +I (174094) example: expect speed: 0.000000 real_pulses:0 +I (174094) example: new speed:399.000000 +I (174104) example: expect speed: 0.000000 real_pulses:0 +I (174104) example: new speed:399.000000 +I (174114) example: expect speed: 0.000000 real_pulses:0 +I (174114) example: new speed:399.000000 +I (174124) example: expect speed: 0.000000 real_pulses:0 +I (174124) example: new speed:399.000000 +I (174134) example: expect speed: 0.000000 real_pulses:0 +I (174134) example: new speed:399.000000 +I (174144) example: expect speed: 0.000000 real_pulses:0 +I (174144) example: new speed:399.000000 +I (174154) example: expect speed: 0.000000 real_pulses:0 +I (174154) example: new speed:399.000000 +I (174164) example: expect speed: 0.000000 real_pulses:0 +I (174164) example: new speed:399.000000 +I (174174) example: expect speed: 0.000000 real_pulses:0 +I (174174) example: new speed:399.000000 +I (174184) example: expect speed: 0.000000 real_pulses:0 +I (174184) example: new speed:399.000000 +I (174194) example: expect speed: 0.000000 real_pulses:0 +I (174194) example: new speed:399.000000 +I (174204) example: expect speed: 0.000000 real_pulses:0 +I (174204) example: new speed:399.000000 +I (174214) example: expect speed: 0.000000 real_pulses:0 +I (174214) example: new speed:399.000000 +I (174224) example: expect speed: 0.000000 real_pulses:0 +I (174224) example: new speed:399.000000 +I (174234) modbus tcp: ModBusSlave_recv() +I (174234) modbus: ModbusSlaveProcess() +I (174234) modbus: check id... +I (174234) modbus: ok +I (174234) modbus: add: 0, length: 10 +I (174234) modbus: Read Holding Registers +I (174234) example: expect speed: 0.000000 real_pulses:0 +I (174244) example: new speed:399.000000 +I (174244) example: expect speed: 0.000000 real_pulses:0 +I (174254) example: new speed:399.000000 +I (174254) example: expect speed: 0.000000 real_pulses:0 +I (174264) example: new speed:399.000000 +I (174264) example: expect speed: 0.000000 real_pulses:0 +I (174264) example: new speed:399.000000 +I (174274) example: expect speed: 0.000000 real_pulses:0 +I (174274) example: new speed:399.000000 +I (174284) example: expect speed: 0.000000 real_pulses:0 +I (174284) example: new speed:399.000000 +I (174294) example: expect speed: 0.000000 real_pulses:0 +I (174294) example: new speed:399.000000 +I (174304) example: expect speed: 0.000000 real_pulses:0 +I (174314) example: new speed:399.000000 +I (174314) example: expect speed: 0.000000 real_pulses:0 +I (174314) example: new speed:399.000000 +I (174324) example: expect speed: 0.000000 real_pulses:0 +I (174324) example: new speed:399.000000 +I (174334) example: expect speed: 0.000000 real_pulses:0 +I (174334) example: new speed:399.000000 +I (174344) example: expect speed: 0.000000 real_pulses:0 +I (174344) example: new speed:399.000000 +I (174354) example: expect speed: 0.000000 real_pulses:0 +I (174364) example: new speed:399.000000 +I (174364) example: expect speed: 0.000000 real_pulses:0 +I (174364) example: new speed:399.000000 +I (174374) example: expect speed: 0.000000 real_pulses:0 +I (174374) example: new speed:399.000000 +I (174384) example: expect speed: 0.000000 real_pulses:0 +I (174384) example: new speed:399.000000 +I (174394) example: expect speed: 0.000000 real_pulses:0 +I (174394) example: new speed:399.000000 +I (174404) example: expect speed: 0.000000 real_pulses:0 +I (174404) example: new speed:399.000000 +I (174414) example: expect speed: 0.000000 real_pulses:0 +I (174414) example: new speed:399.000000 +I (174424) example: expect speed: 0.000000 real_pulses:0 +I (174424) example: new speed:399.000000 +I (174434) example: expect speed: 0.000000 real_pulses:0 +I (174444) example: new speed:399.000000 +I (174444) example: expect speed: 0.000000 real_pulses:0 +I (174454) example: new speed:399.000000 +I (174454) example: expect speed: 0.000000 real_pulses:0 +I (174454) example: new speed:399.000000 +I (174464) example: expect speed: 0.000000 real_pulses:0 +I (174464) example: new speed:399.000000 +I (174474) example: expect speed: 0.000000 real_pulses:0 +I (174474) example: new speed:399.000000 +I (174484) example: expect speed: 0.000000 real_pulses:0 +I (174484) example: new speed:399.000000 +I (174494) example: expect speed: 0.000000 real_pulses:0 +I (174494) example: new speed:399.000000 +I (174504) example: expect speed: 0.000000 real_pulses:0 +I (174504) example: new speed:399.000000 +I (174514) example: expect speed: 0.000000 real_pulses:0 +I (174514) example: new speed:399.000000 +I (174524) example: expect speed: 0.000000 real_pulses:0 +I (174524) example: new speed:399.000000 +I (174534) example: expect speed: 0.000000 real_pulses:0 +I (174534) example: new speed:399.000000 +I (174544) example: expect speed: 0.000000 real_pulses:0 +I (174544) example: new speed:399.000000 +I (174554) example: expect speed: 0.000000 real_pulses:0 +I (174554) example: new speed:399.000000 +I (174564) example: expect speed: 0.000000 real_pulses:0 +I (174564) example: new speed:399.000000 +I (174574) example: expect speed: 0.000000 real_pulses:0 +I (174574) example: new speed:399.000000 +I (174584) example: expect speed: 0.000000 real_pulses:0 +I (174584) example: new speed:399.000000 +I (174594) example: expect speed: 0.000000 real_pulses:0 +I (174594) example: new speed:399.000000 +I (174604) example: expect speed: 0.000000 real_pulses:0 +I (174604) example: new speed:399.000000 +I (174614) example: expect speed: 0.000000 real_pulses:0 +I (174614) example: new speed:399.000000 +I (174624) example: expect speed: 0.000000 real_pulses:0 +I (174624) example: new speed:399.000000 +I (174634) example: expect speed: 0.000000 real_pulses:0 +I (174634) example: new speed:399.000000 +I (174644) example: expect speed: 0.000000 real_pulses:0 +I (174644) example: new speed:399.000000 +I (174654) example: expect speed: 0.000000 real_pulses:0 +I (174654) example: new speed:399.000000 +I (174664) example: expect speed: 0.000000 real_pulses:0 +I (174664) example: new speed:399.000000 +I (174674) example: expect speed: 0.000000 real_pulses:0 +I (174674) example: new speed:399.000000 +I (174684) example: expect speed: 0.000000 real_pulses:0 +I (174684) example: new speed:399.000000 +I (174694) example: expect speed: 0.000000 real_pulses:0 +I (174694) example: new speed:399.000000 +I (174704) example: expect speed: 0.000000 real_pulses:0 +I (174704) example: new speed:399.000000 +I (174714) example: expect speed: 0.000000 real_pulses:0 +I (174714) example: new speed:399.000000 +I (174724) example: expect speed: 0.000000 real_pulses:0 +I (174724) example: new speed:399.000000 +I (174734) example: expect speed: 0.000000 real_pulses:0 +I (174734) example: new speed:399.000000 +I (174744) example: expect speed: 0.000000 real_pulses:0 +I (174744) example: new speed:399.000000 +I (174754) example: expect speed: 0.000000 real_pulses:0 +I (174754) example: new speed:399.000000 +I (174764) example: expect speed: 0.000000 real_pulses:0 +I (174764) example: new speed:399.000000 +I (174774) example: expect speed: 0.000000 real_pulses:0 +I (174774) example: new speed:399.000000 +I (174784) example: expect speed: 0.000000 real_pulses:0 +I (174784) example: new speed:399.000000 +I (174794) example: expect speed: 0.000000 real_pulses:0 +I (174794) example: new speed:399.000000 +I (174804) example: expect speed: 0.000000 real_pulses:0 +I (174804) example: new speed:399.000000 +I (174814) example: expect speed: 0.000000 real_pulses:0 +I (174814) example: new speed:399.000000 +I (174824) example: expect speed: 0.000000 real_pulses:0 +I (174824) example: new speed:399.000000 +I (174834) example: expect speed: 0.000000 real_pulses:0 +I (174834) example: new speed:399.000000 +I (174844) example: expect speed: 0.000000 real_pulses:0 +I (174854) example: new speed:399.000000 +I (174854) example: expect speed: 0.000000 real_pulses:0 +I (174864) example: new speed:399.000000 +I (174864) example: expect speed: 0.000000 real_pulses:0 +I (174864) example: new speed:399.000000 +I (174874) example: expect speed: 0.000000 real_pulses:0 +I (174874) example: new speed:399.000000 +I (174884) example: expect speed: 0.000000 real_pulses:0 +I (174884) example: new speed:399.000000 +I (174894) example: expect speed: 0.000000 real_pulses:0 +I (174894) example: new speed:399.000000 +I (174904) example: expect speed: 0.000000 real_pulses:0 +I (174904) example: new speed:399.000000 +I (174914) example: expect speed: 0.000000 real_pulses:0 +I (174914) example: new speed:399.000000 +I (174924) example: expect speed: 0.000000 real_pulses:0 +I (174924) example: new speed:399.000000 +I (174934) example: expect speed: 0.000000 real_pulses:0 +I (174934) example: new speed:399.000000 +I (174944) example: expect speed: 0.000000 real_pulses:0 +I (174944) example: new speed:399.000000 +I (174954) example: expect speed: 0.000000 real_pulses:0 +I (174954) example: new speed:399.000000 +I (174964) example: expect speed: 0.000000 real_pulses:0 +I (174964) example: new speed:399.000000 +I (174974) example: expect speed: 0.000000 real_pulses:0 +I (174974) example: new speed:399.000000 +I (174984) example: expect speed: 0.000000 real_pulses:0 +I (174984) example: new speed:399.000000 +I (174994) example: expect speed: 0.000000 real_pulses:0 +I (174994) example: new speed:399.000000 +I (175004) example: expect speed: 0.000000 real_pulses:0 +I (175004) example: new speed:399.000000 +I (175014) example: expect speed: 0.000000 real_pulses:0 +I (175014) example: new speed:399.000000 +I (175024) example: expect speed: 0.000000 real_pulses:0 +I (175024) example: new speed:399.000000 +I (175034) example: expect speed: 0.000000 real_pulses:0 +I (175034) example: new speed:399.000000 +I (175044) example: expect speed: 0.000000 real_pulses:0 +I (175044) example: new speed:399.000000 +I (175054) example: expect speed: 0.000000 real_pulses:0 +I (175054) example: new speed:399.000000 +I (175064) example: expect speed: 0.000000 real_pulses:0 +I (175064) example: new speed:399.000000 +I (175074) example: expect speed: 0.000000 real_pulses:0 +I (175074) example: new speed:399.000000 +I (175084) example: expect speed: 0.000000 real_pulses:0 +I (175084) example: new speed:399.000000 +I (175094) example: expect speed: 0.000000 real_pulses:0 +I (175094) example: new speed:399.000000 +I (175104) example: expect speed: 0.000000 real_pulses:0 +I (175104) example: new speed:399.000000 +I (175114) example: expect speed: 0.000000 real_pulses:0 +I (175114) example: new speed:399.000000 +I (175124) example: expect speed: 0.000000 real_pulses:0 +I (175124) example: new speed:399.000000 +I (175134) example: expect speed: 0.000000 real_pulses:0 +I (175134) example: new speed:399.000000 +I (175144) example: expect speed: 0.000000 real_pulses:0 +I (175144) example: new speed:399.000000 +I (175154) example: expect speed: 0.000000 real_pulses:0 +I (175154) example: new speed:399.000000 +I (175164) example: expect speed: 0.000000 real_pulses:0 +I (175164) example: new speed:399.000000 +I (175174) example: expect speed: 0.000000 real_pulses:0 +I (175174) example: new speed:399.000000 +I (175184) example: expect speed: 0.000000 real_pulses:0 +I (175184) example: new speed:399.000000 +I (175194) example: expect speed: 0.000000 real_pulses:0 +I (175194) example: new speed:399.000000 +I (175204) example: expect speed: 0.000000 real_pulses:0 +I (175204) example: new speed:399.000000 +I (175214) example: expect speed: 0.000000 real_pulses:0 +I (175214) example: new speed:399.000000 +I (175224) example: expect speed: 0.000000 real_pulses:0 +I (175224) example: new speed:399.000000 +I (175234) example: expect speed: 0.000000 real_pulses:0 +I (175234) example: new speed:399.000000 +I (175244) example: expect speed: 0.000000 real_pulses:0 +I (175244) example: new speed:399.000000 +I (175254) example: expect speed: 0.000000 real_pulses:0 +I (175264) example: new speed:399.000000 +I (175264) modbus tcp: ModBusSlave_recv() +I (175264) modbus: ModbusSlaveProcess() +I (175264) modbus: check id... +I (175264) modbus: ok +I (175264) modbus: add: 0, length: 10 +I (175264) modbus: Read Holding Registers +I (175264) example: expect speed: 0.000000 real_pulses:0 +I (175274) example: new speed:399.000000 +I (175274) example: expect speed: 0.000000 real_pulses:0 +I (175274) example: new speed:399.000000 +I (175284) example: expect speed: 0.000000 real_pulses:0 +I (175284) example: new speed:399.000000 +I (175294) example: expect speed: 0.000000 real_pulses:0 +I (175294) example: new speed:399.000000 +I (175304) example: expect speed: 0.000000 real_pulses:0 +I (175304) example: new speed:399.000000 +I (175314) example: expect speed: 0.000000 real_pulses:0 +I (175324) example: new speed:399.000000 +I (175324) example: expect speed: 0.000000 real_pulses:0 +I (175324) example: new speed:399.000000 +I (175334) example: expect speed: 0.000000 real_pulses:0 +I (175334) example: new speed:399.000000 +I (175344) example: expect speed: 0.000000 real_pulses:0 +I (175344) example: new speed:399.000000 +I (175354) example: expect speed: 0.000000 real_pulses:0 +I (175364) example: new speed:399.000000 +I (175364) example: expect speed: 0.000000 real_pulses:0 +I (175364) example: new speed:399.000000 +I (175374) example: expect speed: 0.000000 real_pulses:0 +I (175374) example: new speed:399.000000 +I (175384) example: expect speed: 0.000000 real_pulses:0 +I (175384) example: new speed:399.000000 +I (175394) example: expect speed: 0.000000 real_pulses:0 +I (175394) example: new speed:399.000000 +I (175404) example: expect speed: 0.000000 real_pulses:0 +I (175404) example: new speed:399.000000 +I (175414) example: expect speed: 0.000000 real_pulses:0 +I (175414) example: new speed:399.000000 +I (175424) example: expect speed: 0.000000 real_pulses:0 +I (175424) example: new speed:399.000000 +I (175434) example: expect speed: 0.000000 real_pulses:0 +I (175434) example: new speed:399.000000 +I (175444) example: expect speed: 0.000000 real_pulses:0 +I (175444) example: new speed:399.000000 +I (175454) example: expect speed: 0.000000 real_pulses:0 +I (175464) example: new speed:399.000000 +I (175464) example: expect speed: 0.000000 real_pulses:0 +I (175464) example: new speed:399.000000 +I (175474) example: expect speed: 0.000000 real_pulses:0 +I (175474) example: new speed:399.000000 +I (175484) example: expect speed: 0.000000 real_pulses:0 +I (175484) example: new speed:399.000000 +I (175494) example: expect speed: 0.000000 real_pulses:0 +I (175494) example: new speed:399.000000 +I (175504) example: expect speed: 0.000000 real_pulses:0 +I (175504) example: new speed:399.000000 +I (175514) example: expect speed: 0.000000 real_pulses:0 +I (175514) example: new speed:399.000000 +I (175524) example: expect speed: 0.000000 real_pulses:0 +I (175524) example: new speed:399.000000 +I (175534) example: expect speed: 0.000000 real_pulses:0 +I (175534) example: new speed:399.000000 +I (175544) example: expect speed: 0.000000 real_pulses:0 +I (175544) example: new speed:399.000000 +I (175554) example: expect speed: 0.000000 real_pulses:0 +I (175554) example: new speed:399.000000 +I (175564) example: expect speed: 0.000000 real_pulses:0 +I (175564) example: new speed:399.000000 +I (175574) example: expect speed: 0.000000 real_pulses:0 +I (175574) example: new speed:399.000000 +I (175584) example: expect speed: 0.000000 real_pulses:0 +I (175584) example: new speed:399.000000 +I (175594) example: expect speed: 0.000000 real_pulses:0 +I (175594) example: new speed:399.000000 +I (175604) example: expect speed: 0.000000 real_pulses:0 +I (175604) example: new speed:399.000000 +I (175614) example: expect speed: 0.000000 real_pulses:0 +I (175614) example: new speed:399.000000 +I (175624) example: expect speed: 0.000000 real_pulses:0 +I (175624) example: new speed:399.000000 +I (175634) example: expect speed: 0.000000 real_pulses:0 +I (175634) example: new speed:399.000000 +I (175644) example: expect speed: 0.000000 real_pulses:0 +I (175644) example: new speed:399.000000 +I (175654) example: expect speed: 0.000000 real_pulses:0 +I (175654) example: new speed:399.000000 +I (175664) example: expect speed: 0.000000 real_pulses:0 +I (175664) example: new speed:399.000000 +I (175674) example: expect speed: 0.000000 real_pulses:0 +I (175674) example: new speed:399.000000 +I (175684) example: expect speed: 0.000000 real_pulses:0 +I (175684) example: new speed:399.000000 +I (175694) example: expect speed: 0.000000 real_pulses:0 +I (175694) example: new speed:399.000000 +I (175704) example: expect speed: 0.000000 real_pulses:0 +I (175704) example: new speed:399.000000 +I (175714) example: expect speed: 0.000000 real_pulses:0 +I (175714) example: new speed:399.000000 +I (175724) example: expect speed: 0.000000 real_pulses:0 +I (175724) example: new speed:399.000000 +I (175734) example: expect speed: 0.000000 real_pulses:0 +I (175734) example: new speed:399.000000 +I (175744) example: expect speed: 0.000000 real_pulses:0 +I (175744) example: new speed:399.000000 +I (175754) example: expect speed: 0.000000 real_pulses:0 +I (175754) example: new speed:399.000000 +I (175764) example: expect speed: 0.000000 real_pulses:0 +I (175764) example: new speed:399.000000 +I (175774) example: expect speed: 0.000000 real_pulses:0 +I (175774) example: new speed:399.000000 +I (175784) example: expect speed: 0.000000 real_pulses:0 +I (175784) example: new speed:399.000000 +I (175794) example: expect speed: 0.000000 real_pulses:0 +I (175794) example: new speed:399.000000 +I (175804) example: expect speed: 0.000000 real_pulses:0 +I (175804) example: new speed:399.000000 +I (175814) example: expect speed: 0.000000 real_pulses:0 +I (175814) example: new speed:399.000000 +I (175824) example: expect speed: 0.000000 real_pulses:0 +I (175824) example: new speed:399.000000 +I (175834) example: expect speed: 0.000000 real_pulses:0 +I (175834) example: new speed:399.000000 +I (175844) example: expect speed: 0.000000 real_pulses:0 +I (175844) example: new speed:399.000000 +I (175854) example: expect speed: 0.000000 real_pulses:0 +I (175854) example: new speed:399.000000 +I (175864) example: expect speed: 0.000000 real_pulses:0 +I (175864) example: new speed:399.000000 +I (175874) example: expect speed: 0.000000 real_pulses:0 +I (175874) example: new speed:399.000000 +I (175884) example: expect speed: 0.000000 real_pulses:0 +I (175884) example: new speed:399.000000 +I (175894) example: expect speed: 0.000000 real_pulses:0 +I (175894) example: new speed:399.000000 +I (175904) example: expect speed: 0.000000 real_pulses:0 +I (175904) example: new speed:399.000000 +I (175914) example: expect speed: 0.000000 real_pulses:0 +I (175914) example: new speed:399.000000 +I (175924) example: expect speed: 0.000000 real_pulses:0 +I (175924) example: new speed:399.000000 +I (175934) example: expect speed: 0.000000 real_pulses:0 +I (175934) example: new speed:399.000000 +I (175944) example: expect speed: 0.000000 real_pulses:0 +I (175944) example: new speed:399.000000 +I (175954) example: expect speed: 0.000000 real_pulses:0 +I (175954) example: new speed:399.000000 +I (175964) example: expect speed: 0.000000 real_pulses:0 +I (175964) example: new speed:399.000000 +I (175974) example: expect speed: 0.000000 real_pulses:0 +I (175974) example: new speed:399.000000 +I (175984) example: expect speed: 0.000000 real_pulses:0 +I (175984) example: new speed:399.000000 +I (175994) example: expect speed: 0.000000 real_pulses:0 +I (175994) example: new speed:399.000000 +I (176004) example: expect speed: 0.000000 real_pulses:0 +I (176004) example: new speed:399.000000 +I (176014) example: expect speed: 0.000000 real_pulses:0 +I (176014) example: new speed:399.000000 +I (176024) example: expect speed: 0.000000 real_pulses:0 +I (176024) example: new speed:399.000000 +I (176034) example: expect speed: 0.000000 real_pulses:0 +I (176034) example: new speed:399.000000 +I (176044) example: expect speed: 0.000000 real_pulses:0 +I (176044) example: new speed:399.000000 +I (176054) example: expect speed: 0.000000 real_pulses:0 +I (176054) example: new speed:399.000000 +I (176064) example: expect speed: 0.000000 real_pulses:0 +I (176064) example: new speed:399.000000 +I (176074) example: expect speed: 0.000000 real_pulses:0 +I (176074) example: new speed:399.000000 +I (176084) example: expect speed: 0.000000 real_pulses:0 +I (176084) example: new speed:399.000000 +I (176094) example: expect speed: 0.000000 real_pulses:0 +I (176094) example: new speed:399.000000 +I (176104) example: expect speed: 0.000000 real_pulses:0 +I (176104) example: new speed:399.000000 +I (176114) example: expect speed: 0.000000 real_pulses:0 +I (176114) example: new speed:399.000000 +I (176124) example: expect speed: 0.000000 real_pulses:0 +I (176124) example: new speed:399.000000 +I (176134) example: expect speed: 0.000000 real_pulses:0 +I (176134) example: new speed:399.000000 +I (176144) example: expect speed: 0.000000 real_pulses:0 +I (176144) example: new speed:399.000000 +I (176154) example: expect speed: 0.000000 real_pulses:0 +I (176154) example: new speed:399.000000 +I (176164) example: expect speed: 0.000000 real_pulses:0 +I (176164) example: new speed:399.000000 +I (176174) example: expect speed: 0.000000 real_pulses:0 +I (176174) example: new speed:399.000000 +I (176184) example: expect speed: 0.000000 real_pulses:0 +I (176184) example: new speed:399.000000 +I (176194) example: expect speed: 0.000000 real_pulses:0 +I (176194) example: new speed:399.000000 +I (176204) example: expect speed: 0.000000 real_pulses:0 +I (176204) example: new speed:399.000000 +I (176214) example: expect speed: 0.000000 real_pulses:0 +I (176214) example: new speed:399.000000 +I (176224) example: expect speed: 0.000000 real_pulses:0 +I (176224) example: new speed:399.000000 +I (176234) example: expect speed: 0.000000 real_pulses:0 +I (176234) example: new speed:399.000000 +I (176244) example: expect speed: 0.000000 real_pulses:0 +I (176244) example: new speed:399.000000 +I (176254) example: expect speed: 0.000000 real_pulses:0 +I (176254) example: new speed:399.000000 +I (176264) example: expect speed: 0.000000 real_pulses:0 +I (176264) example: new speed:399.000000 +I (176274) example: expect speed: 0.000000 real_pulses:0 +I (176284) example: new speed:399.000000 +I (176284) example: expect speed: 0.000000 real_pulses:0 +I (176294) modbus tcp: ModBusSlave_recv() +I (176294) example: new speed:399.000000 +I (176294) modbus: ModbusSlaveProcess() +I (176294) modbus: check id... +I (176294) modbus: ok +I (176294) modbus: add: 0, length: 10 +I (176294) modbus: Read Holding Registers +I (176294) example: expect speed: 0.000000 real_pulses:0 +I (176304) example: new speed:399.000000 +I (176304) example: expect speed: 0.000000 real_pulses:0 +I (176314) example: new speed:399.000000 +I (176314) example: expect speed: 0.000000 real_pulses:0 +I (176314) example: new speed:399.000000 +I (176324) example: expect speed: 0.000000 real_pulses:0 +I (176324) example: new speed:399.000000 +I (176334) example: expect speed: 0.000000 real_pulses:0 +I (176334) example: new speed:399.000000 +I (176344) example: expect speed: 0.000000 real_pulses:0 +I (176344) example: new speed:399.000000 +I (176354) example: expect speed: 0.000000 real_pulses:0 +I (176364) example: new speed:399.000000 +I (176364) example: expect speed: 0.000000 real_pulses:0 +I (176364) example: new speed:399.000000 +I (176374) example: expect speed: 0.000000 real_pulses:0 +I (176374) example: new speed:399.000000 +I (176384) example: expect speed: 0.000000 real_pulses:0 +I (176384) example: new speed:399.000000 +I (176394) example: expect speed: 0.000000 real_pulses:0 +I (176394) example: new speed:399.000000 +I (176404) example: expect speed: 0.000000 real_pulses:0 +I (176414) example: new speed:399.000000 +I (176414) example: expect speed: 0.000000 real_pulses:0 +I (176414) example: new speed:399.000000 +I (176424) example: expect speed: 0.000000 real_pulses:0 +I (176424) example: new speed:399.000000 +I (176434) example: expect speed: 0.000000 real_pulses:0 +I (176434) example: new speed:399.000000 +I (176444) example: expect speed: 0.000000 real_pulses:0 +I (176444) example: new speed:399.000000 +I (176454) example: expect speed: 0.000000 real_pulses:0 +I (176454) example: new speed:399.000000 +I (176464) example: expect speed: 0.000000 real_pulses:0 +I (176464) example: new speed:399.000000 +I (176474) example: expect speed: 0.000000 real_pulses:0 +I (176474) example: new speed:399.000000 +I (176484) example: expect speed: 0.000000 real_pulses:0 +I (176494) example: new speed:399.000000 +I (176494) example: expect speed: 0.000000 real_pulses:0 +I (176504) example: new speed:399.000000 +I (176504) example: expect speed: 0.000000 real_pulses:0 +I (176504) example: new speed:399.000000 +I (176514) example: expect speed: 0.000000 real_pulses:0 +I (176514) example: new speed:399.000000 +I (176524) example: expect speed: 0.000000 real_pulses:0 +I (176524) example: new speed:399.000000 +I (176534) example: expect speed: 0.000000 real_pulses:0 +I (176534) example: new speed:399.000000 +I (176544) example: expect speed: 0.000000 real_pulses:0 +I (176544) example: new speed:399.000000 +I (176554) example: expect speed: 0.000000 real_pulses:0 +I (176554) example: new speed:399.000000 +I (176564) example: expect speed: 0.000000 real_pulses:0 +I (176564) example: new speed:399.000000 +I (176574) example: expect speed: 0.000000 real_pulses:0 +I (176574) example: new speed:399.000000 +I (176584) example: expect speed: 0.000000 real_pulses:0 +I (176584) example: new speed:399.000000 +I (176594) example: expect speed: 0.000000 real_pulses:0 +I (176594) example: new speed:399.000000 +I (176604) example: expect speed: 0.000000 real_pulses:0 +I (176604) example: new speed:399.000000 +I (176614) example: expect speed: 0.000000 real_pulses:0 +I (176614) example: new speed:399.000000 +I (176624) example: expect speed: 0.000000 real_pulses:0 +I (176624) example: new speed:399.000000 +I (176634) example: expect speed: 0.000000 real_pulses:0 +I (176634) example: new speed:399.000000 +I (176644) example: expect speed: 0.000000 real_pulses:0 +I (176644) example: new speed:399.000000 +I (176654) example: expect speed: 0.000000 real_pulses:0 +I (176654) example: new speed:399.000000 +I (176664) example: expect speed: 0.000000 real_pulses:0 +I (176664) example: new speed:399.000000 +I (176674) example: expect speed: 0.000000 real_pulses:0 +I (176674) example: new speed:399.000000 +I (176684) example: expect speed: 0.000000 real_pulses:0 +I (176684) example: new speed:399.000000 +I (176694) example: expect speed: 0.000000 real_pulses:0 +I (176694) example: new speed:399.000000 +I (176704) example: expect speed: 0.000000 real_pulses:0 +I (176704) example: new speed:399.000000 +I (176714) example: expect speed: 0.000000 real_pulses:0 +I (176714) example: new speed:399.000000 +I (176724) example: expect speed: 0.000000 real_pulses:0 +I (176724) example: new speed:399.000000 +I (176734) example: expect speed: 0.000000 real_pulses:0 +I (176734) example: new speed:399.000000 +I (176744) example: expect speed: 0.000000 real_pulses:0 +I (176744) example: new speed:399.000000 +I (176754) example: expect speed: 0.000000 real_pulses:0 +I (176754) example: new speed:399.000000 +I (176764) example: expect speed: 0.000000 real_pulses:0 +I (176764) example: new speed:399.000000 +I (176774) example: expect speed: 0.000000 real_pulses:0 +I (176774) example: new speed:399.000000 +I (176784) example: expect speed: 0.000000 real_pulses:0 +I (176784) example: new speed:399.000000 +I (176794) example: expect speed: 0.000000 real_pulses:0 +I (176794) example: new speed:399.000000 +I (176804) example: expect speed: 0.000000 real_pulses:0 +I (176804) example: new speed:399.000000 +I (176814) example: expect speed: 0.000000 real_pulses:0 +I (176814) example: new speed:399.000000 +I (176824) example: expect speed: 0.000000 real_pulses:0 +I (176824) example: new speed:399.000000 +I (176834) example: expect speed: 0.000000 real_pulses:0 +I (176834) example: new speed:399.000000 +I (176844) example: expect speed: 0.000000 real_pulses:0 +I (176844) example: new speed:399.000000 +I (176854) example: expect speed: 0.000000 real_pulses:0 +I (176854) example: new speed:399.000000 +I (176864) example: expect speed: 0.000000 real_pulses:0 +I (176864) example: new speed:399.000000 +I (176874) example: expect speed: 0.000000 real_pulses:0 +I (176874) example: new speed:399.000000 +I (176884) example: expect speed: 0.000000 real_pulses:0 +I (176884) example: new speed:399.000000 +I (176894) example: expect speed: 0.000000 real_pulses:0 +I (176894) example: new speed:399.000000 +I (176904) example: expect speed: 0.000000 real_pulses:0 +I (176904) example: new speed:399.000000 +I (176914) example: expect speed: 0.000000 real_pulses:0 +I (176914) example: new speed:399.000000 +I (176924) example: expect speed: 0.000000 real_pulses:0 +I (176924) example: new speed:399.000000 +I (176934) example: expect speed: 0.000000 real_pulses:0 +I (176934) example: new speed:399.000000 +I (176944) example: expect speed: 0.000000 real_pulses:0 +I (176944) example: new speed:399.000000 +I (176954) example: expect speed: 0.000000 real_pulses:0 +I (176954) example: new speed:399.000000 +I (176964) example: expect speed: 0.000000 real_pulses:0 +I (176964) example: new speed:399.000000 +I (176974) example: expect speed: 0.000000 real_pulses:0 +I (176974) example: new speed:399.000000 +I (176984) example: expect speed: 0.000000 real_pulses:0 +I (176984) example: new speed:399.000000 +I (176994) example: expect speed: 0.000000 real_pulses:0 +I (176994) example: new speed:399.000000 +I (177004) example: expect speed: 0.000000 real_pulses:0 +I (177004) example: new speed:399.000000 +I (177014) example: expect speed: 0.000000 real_pulses:0 +I (177014) example: new speed:399.000000 +I (177024) example: expect speed: 0.000000 real_pulses:0 +I (177024) example: new speed:399.000000 +I (177034) example: expect speed: 0.000000 real_pulses:0 +I (177034) example: new speed:399.000000 +I (177044) example: expect speed: 0.000000 real_pulses:0 +I (177044) example: new speed:399.000000 +I (177054) example: expect speed: 0.000000 real_pulses:0 +I (177054) example: new speed:399.000000 +I (177064) example: expect speed: 0.000000 real_pulses:0 +I (177064) example: new speed:399.000000 +I (177074) example: expect speed: 0.000000 real_pulses:0 +I (177074) example: new speed:399.000000 +I (177084) example: expect speed: 0.000000 real_pulses:0 +I (177084) example: new speed:399.000000 +I (177094) example: expect speed: 0.000000 real_pulses:0 +I (177094) example: new speed:399.000000 +I (177104) example: expect speed: 0.000000 real_pulses:0 +I (177104) example: new speed:399.000000 +I (177114) example: expect speed: 0.000000 real_pulses:0 +I (177114) example: new speed:399.000000 +I (177124) example: expect speed: 0.000000 real_pulses:0 +I (177124) example: new speed:399.000000 +I (177134) example: expect speed: 0.000000 real_pulses:0 +I (177134) example: new speed:399.000000 +I (177144) example: expect speed: 0.000000 real_pulses:0 +I (177144) example: new speed:399.000000 +I (177154) example: expect speed: 0.000000 real_pulses:0 +I (177154) example: new speed:399.000000 +I (177164) example: expect speed: 0.000000 real_pulses:0 +I (177164) example: new speed:399.000000 +I (177174) example: expect speed: 0.000000 real_pulses:0 +I (177174) example: new speed:399.000000 +I (177184) example: expect speed: 0.000000 real_pulses:0 +I (177184) example: new speed:399.000000 +I (177194) example: expect speed: 0.000000 real_pulses:0 +I (177194) example: new speed:399.000000 +I (177204) example: expect speed: 0.000000 real_pulses:0 +I (177204) example: new speed:399.000000 +I (177214) example: expect speed: 0.000000 real_pulses:0 +I (177214) example: new speed:399.000000 +I (177224) example: expect speed: 0.000000 real_pulses:0 +I (177224) example: new speed:399.000000 +I (177234) example: expect speed: 0.000000 real_pulses:0 +I (177234) example: new speed:399.000000 +I (177244) example: expect speed: 0.000000 real_pulses:0 +I (177244) example: new speed:399.000000 +I (177254) example: expect speed: 0.000000 real_pulses:0 +I (177254) example: new speed:399.000000 +I (177264) example: expect speed: 0.000000 real_pulses:0 +I (177264) example: new speed:399.000000 +I (177274) example: expect speed: 0.000000 real_pulses:0 +I (177274) example: new speed:399.000000 +I (177284) example: expect speed: 0.000000 real_pulses:0 +I (177284) example: new speed:399.000000 +I (177294) example: expect speed: 0.000000 real_pulses:0 +I (177294) example: new speed:399.000000 +I (177304) modbus tcp: ModBusSlave_recv() +I (177304) modbus: ModbusSlaveProcess() +I (177304) modbus: check id... +I (177304) example: expect speed: 0.000000 real_pulses:0 +I (177304) modbus: ok +I (177304) example: new speed:399.000000 +I (177304) modbus: add: 0, length: 10 +I (177314) modbus: Read Holding Registers +I (177314) example: expect speed: 0.000000 real_pulses:0 +I (177324) example: new speed:399.000000 +I (177324) example: expect speed: 0.000000 real_pulses:0 +I (177324) example: new speed:399.000000 +I (177334) example: expect speed: 0.000000 real_pulses:0 +I (177334) example: new speed:399.000000 +I (177344) example: expect speed: 0.000000 real_pulses:0 +I (177344) example: new speed:399.000000 +I (177354) example: expect speed: 0.000000 real_pulses:0 +I (177354) example: new speed:399.000000 +I (177364) example: expect speed: 0.000000 real_pulses:0 +I (177374) example: new speed:399.000000 +I (177374) example: expect speed: 0.000000 real_pulses:0 +I (177374) example: new speed:399.000000 +I (177384) example: expect speed: 0.000000 real_pulses:0 +I (177384) example: new speed:399.000000 +I (177394) example: expect speed: 0.000000 real_pulses:0 +I (177394) example: new speed:399.000000 +I (177404) example: expect speed: 0.000000 real_pulses:0 +I (177404) example: new speed:399.000000 +I (177414) example: expect speed: 0.000000 real_pulses:0 +I (177424) example: new speed:399.000000 +I (177424) example: expect speed: 0.000000 real_pulses:0 +I (177424) example: new speed:399.000000 +I (177434) example: expect speed: 0.000000 real_pulses:0 +I (177434) example: new speed:399.000000 +I (177444) example: expect speed: 0.000000 real_pulses:0 +I (177444) example: new speed:399.000000 +I (177454) example: expect speed: 0.000000 real_pulses:0 +I (177454) example: new speed:399.000000 +I (177464) example: expect speed: 0.000000 real_pulses:0 +I (177464) example: new speed:399.000000 +I (177474) example: expect speed: 0.000000 real_pulses:0 +I (177474) example: new speed:399.000000 +I (177484) example: expect speed: 0.000000 real_pulses:0 +I (177484) example: new speed:399.000000 +I (177494) example: expect speed: 0.000000 real_pulses:0 +I (177494) example: new speed:399.000000 +I (177504) example: expect speed: 0.000000 real_pulses:0 +I (177514) example: new speed:399.000000 +I (177514) example: expect speed: 0.000000 real_pulses:0 +I (177524) example: new speed:399.000000 +I (177524) example: expect speed: 0.000000 real_pulses:0 +I (177524) example: new speed:399.000000 +I (177534) example: expect speed: 0.000000 real_pulses:0 +I (177534) example: new speed:399.000000 +I (177544) example: expect speed: 0.000000 real_pulses:0 +I (177544) example: new speed:399.000000 +I (177554) example: expect speed: 0.000000 real_pulses:0 +I (177554) example: new speed:399.000000 +I (177564) example: expect speed: 0.000000 real_pulses:0 +I (177564) example: new speed:399.000000 +I (177574) example: expect speed: 0.000000 real_pulses:0 +I (177574) example: new speed:399.000000 +I (177584) example: expect speed: 0.000000 real_pulses:0 +I (177584) example: new speed:399.000000 +I (177594) example: expect speed: 0.000000 real_pulses:0 +I (177594) example: new speed:399.000000 +I (177604) example: expect speed: 0.000000 real_pulses:0 +I (177604) example: new speed:399.000000 +I (177614) example: expect speed: 0.000000 real_pulses:0 +I (177614) example: new speed:399.000000 +I (177624) example: expect speed: 0.000000 real_pulses:0 +I (177624) example: new speed:399.000000 +I (177634) example: expect speed: 0.000000 real_pulses:0 +I (177634) example: new speed:399.000000 +I (177644) example: expect speed: 0.000000 real_pulses:0 +I (177644) example: new speed:399.000000 +I (177654) example: expect speed: 0.000000 real_pulses:0 +I (177654) example: new speed:399.000000 +I (177664) example: expect speed: 0.000000 real_pulses:0 +I (177664) example: new speed:399.000000 +I (177674) example: expect speed: 0.000000 real_pulses:0 +I (177674) example: new speed:399.000000 +I (177684) example: expect speed: 0.000000 real_pulses:0 +I (177684) example: new speed:399.000000 +I (177694) example: expect speed: 0.000000 real_pulses:0 +I (177694) example: new speed:399.000000 +I (177704) example: expect speed: 0.000000 real_pulses:0 +I (177704) example: new speed:399.000000 +I (177714) example: expect speed: 0.000000 real_pulses:0 +I (177714) example: new speed:399.000000 +I (177724) example: expect speed: 0.000000 real_pulses:0 +I (177724) example: new speed:399.000000 +I (177734) example: expect speed: 0.000000 real_pulses:0 +I (177734) example: new speed:399.000000 +I (177744) example: expect speed: 0.000000 real_pulses:0 +I (177744) example: new speed:399.000000 +I (177754) example: expect speed: 0.000000 real_pulses:0 +I (177754) example: new speed:399.000000 +I (177764) example: expect speed: 0.000000 real_pulses:0 +I (177764) example: new speed:399.000000 +I (177774) example: expect speed: 0.000000 real_pulses:0 +I (177774) example: new speed:399.000000 +I (177784) example: expect speed: 0.000000 real_pulses:0 +I (177784) example: new speed:399.000000 +I (177794) example: expect speed: 0.000000 real_pulses:0 +I (177794) example: new speed:399.000000 +I (177804) example: expect speed: 0.000000 real_pulses:0 +I (177804) example: new speed:399.000000 +I (177814) example: expect speed: 0.000000 real_pulses:0 +I (177824) example: new speed:399.000000 +I (177824) example: expect speed: 0.000000 real_pulses:0 +I (177824) example: new speed:399.000000 +I (177834) example: expect speed: 0.000000 real_pulses:0 +I (177834) example: new speed:399.000000 +I (177844) example: expect speed: 0.000000 real_pulses:0 +I (177844) example: new speed:399.000000 +I (177854) example: expect speed: 0.000000 real_pulses:0 +I (177854) example: new speed:399.000000 +I (177864) example: expect speed: 0.000000 real_pulses:0 +I (177864) example: new speed:399.000000 +I (177874) example: expect speed: 0.000000 real_pulses:0 +I (177874) example: new speed:399.000000 +I (177884) example: expect speed: 0.000000 real_pulses:0 +I (177884) example: new speed:399.000000 +I (177894) example: expect speed: 0.000000 real_pulses:0 +I (177894) example: new speed:399.000000 +I (177904) example: expect speed: 0.000000 real_pulses:0 +I (177904) example: new speed:399.000000 +I (177914) example: expect speed: 0.000000 real_pulses:0 +I (177914) example: new speed:399.000000 +I (177924) example: expect speed: 0.000000 real_pulses:0 +I (177924) example: new speed:399.000000 +I (177934) example: expect speed: 0.000000 real_pulses:0 +I (177934) example: new speed:399.000000 +I (177944) example: expect speed: 0.000000 real_pulses:0 +I (177944) example: new speed:399.000000 +I (177954) example: expect speed: 0.000000 real_pulses:0 +I (177954) example: new speed:399.000000 +I (177964) example: expect speed: 0.000000 real_pulses:0 +I (177964) example: new speed:399.000000 +I (177974) example: expect speed: 0.000000 real_pulses:0 +I (177974) example: new speed:399.000000 +I (177984) example: expect speed: 0.000000 real_pulses:0 +I (177984) example: new speed:399.000000 +I (177994) example: expect speed: 0.000000 real_pulses:0 +I (177994) example: new speed:399.000000 +I (178004) example: expect speed: 0.000000 real_pulses:0 +I (178004) example: new speed:399.000000 +I (178014) example: expect speed: 0.000000 real_pulses:0 +I (178014) example: new speed:399.000000 +I (178024) example: expect speed: 0.000000 real_pulses:0 +I (178024) example: new speed:399.000000 +I (178034) example: expect speed: 0.000000 real_pulses:0 +I (178034) example: new speed:399.000000 +I (178044) example: expect speed: 0.000000 real_pulses:0 +I (178044) example: new speed:399.000000 +I (178054) example: expect speed: 0.000000 real_pulses:0 +I (178054) example: new speed:399.000000 +I (178064) example: expect speed: 0.000000 real_pulses:0 +I (178064) example: new speed:399.000000 +I (178074) example: expect speed: 0.000000 real_pulses:0 +I (178074) example: new speed:399.000000 +I (178084) example: expect speed: 0.000000 real_pulses:0 +I (178084) example: new speed:399.000000 +I (178094) example: expect speed: 0.000000 real_pulses:0 +I (178094) example: new speed:399.000000 +I (178104) example: expect speed: 0.000000 real_pulses:0 +I (178104) example: new speed:399.000000 +I (178114) example: expect speed: 0.000000 real_pulses:0 +I (178114) example: new speed:399.000000 +I (178124) example: expect speed: 0.000000 real_pulses:0 +I (178124) example: new speed:399.000000 +I (178134) example: expect speed: 0.000000 real_pulses:0 +I (178134) example: new speed:399.000000 +I (178144) example: expect speed: 0.000000 real_pulses:0 +I (178144) example: new speed:399.000000 +I (178154) example: expect speed: 0.000000 real_pulses:0 +I (178154) example: new speed:399.000000 +I (178164) example: expect speed: 0.000000 real_pulses:0 +I (178164) example: new speed:399.000000 +I (178174) example: expect speed: 0.000000 real_pulses:0 +I (178174) example: new speed:399.000000 +I (178184) example: expect speed: 0.000000 real_pulses:0 +I (178184) example: new speed:399.000000 +I (178194) example: expect speed: 0.000000 real_pulses:0 +I (178194) example: new speed:399.000000 +I (178204) example: expect speed: 0.000000 real_pulses:0 +I (178204) example: new speed:399.000000 +I (178214) example: expect speed: 0.000000 real_pulses:0 +I (178214) example: new speed:399.000000 +I (178224) example: expect speed: 0.000000 real_pulses:0 +I (178224) example: new speed:399.000000 +I (178234) example: expect speed: 0.000000 real_pulses:0 +I (178234) example: new speed:399.000000 +I (178244) example: expect speed: 0.000000 real_pulses:0 +I (178244) example: new speed:399.000000 +I (178254) example: expect speed: 0.000000 real_pulses:0 +I (178254) example: new speed:399.000000 +I (178264) example: expect speed: 0.000000 real_pulses:0 +I (178264) example: new speed:399.000000 +I (178274) example: expect speed: 0.000000 real_pulses:0 +I (178274) example: new speed:399.000000 +I (178284) example: expect speed: 0.000000 real_pulses:0 +I (178284) example: new speed:399.000000 +I (178294) example: expect speed: 0.000000 real_pulses:0 +I (178294) example: new speed:399.000000 +I (178304) example: expect speed: 0.000000 real_pulses:0 +I (178304) example: new speed:399.000000 +I (178314) example: expect speed: 0.000000 real_pulses:0 +I (178314) example: new speed:399.000000 +I (178324) example: expect speed: 0.000000 real_pulses:0 +I (178334) example: new speed:399.000000 +I (178334) modbus tcp: ModBusSlave_recv() +I (178334) modbus: ModbusSlaveProcess() +I (178334) modbus: check id... +I (178334) modbus: ok +I (178334) modbus: add: 0, length: 10 +I (178334) modbus: Read Holding Registers +I (178334) example: expect speed: 0.000000 real_pulses:0 +I (178344) example: new speed:399.000000 +I (178344) example: expect speed: 0.000000 real_pulses:0 +I (178344) example: new speed:399.000000 +I (178354) example: expect speed: 0.000000 real_pulses:0 +I (178354) example: new speed:399.000000 +I (178364) example: expect speed: 0.000000 real_pulses:0 +I (178364) example: new speed:399.000000 +I (178374) example: expect speed: 0.000000 real_pulses:0 +I (178374) example: new speed:399.000000 +I (178384) example: expect speed: 0.000000 real_pulses:0 +I (178394) example: new speed:399.000000 +I (178394) example: expect speed: 0.000000 real_pulses:0 +I (178394) example: new speed:399.000000 +I (178404) example: expect speed: 0.000000 real_pulses:0 +I (178404) example: new speed:399.000000 +I (178414) example: expect speed: 0.000000 real_pulses:0 +I (178414) example: new speed:399.000000 +I (178424) example: expect speed: 0.000000 real_pulses:0 +I (178434) example: new speed:399.000000 +I (178434) example: expect speed: 0.000000 real_pulses:0 +I (178434) example: new speed:399.000000 +I (178444) example: expect speed: 0.000000 real_pulses:0 +I (178444) example: new speed:399.000000 +I (178454) example: expect speed: 0.000000 real_pulses:0 +I (178454) example: new speed:399.000000 +I (178464) example: expect speed: 0.000000 real_pulses:0 +I (178464) example: new speed:399.000000 +I (178474) example: expect speed: 0.000000 real_pulses:0 +I (178474) example: new speed:399.000000 +I (178484) example: expect speed: 0.000000 real_pulses:0 +I (178484) example: new speed:399.000000 +I (178494) example: expect speed: 0.000000 real_pulses:0 +I (178494) example: new speed:399.000000 +I (178504) example: expect speed: 0.000000 real_pulses:0 +I (178504) example: new speed:399.000000 +I (178514) example: expect speed: 0.000000 real_pulses:0 +I (178514) example: new speed:399.000000 +I (178524) example: expect speed: 0.000000 real_pulses:0 +I (178524) example: new speed:399.000000 +I (178534) example: expect speed: 0.000000 real_pulses:0 +I (178544) example: new speed:399.000000 +I (178544) example: expect speed: 0.000000 real_pulses:0 +I (178544) example: new speed:399.000000 +I (178554) example: expect speed: 0.000000 real_pulses:0 +I (178554) example: new speed:399.000000 +I (178564) example: expect speed: 0.000000 real_pulses:0 +I (178564) example: new speed:399.000000 +I (178574) example: expect speed: 0.000000 real_pulses:0 +I (178574) example: new speed:399.000000 +I (178584) example: expect speed: 0.000000 real_pulses:0 +I (178584) example: new speed:399.000000 +I (178594) example: expect speed: 0.000000 real_pulses:0 +I (178594) example: new speed:399.000000 +I (178604) example: expect speed: 0.000000 real_pulses:0 +I (178604) example: new speed:399.000000 +I (178614) example: expect speed: 0.000000 real_pulses:0 +I (178614) example: new speed:399.000000 +I (178624) example: expect speed: 0.000000 real_pulses:0 +I (178624) example: new speed:399.000000 +I (178634) example: expect speed: 0.000000 real_pulses:0 +I (178634) example: new speed:399.000000 +I (178644) example: expect speed: 0.000000 real_pulses:0 +I (178644) example: new speed:399.000000 +I (178654) example: expect speed: 0.000000 real_pulses:0 +I (178654) example: new speed:399.000000 +I (178664) example: expect speed: 0.000000 real_pulses:0 +I (178664) example: new speed:399.000000 +I (178674) example: expect speed: 0.000000 real_pulses:0 +I (178674) example: new speed:399.000000 +I (178684) example: expect speed: 0.000000 real_pulses:0 +I (178684) example: new speed:399.000000 +I (178694) example: expect speed: 0.000000 real_pulses:0 +I (178694) example: new speed:399.000000 +I (178704) example: expect speed: 0.000000 real_pulses:0 +I (178704) example: new speed:399.000000 +I (178714) example: expect speed: 0.000000 real_pulses:0 +I (178714) example: new speed:399.000000 +I (178724) example: expect speed: 0.000000 real_pulses:0 +I (178724) example: new speed:399.000000 +I (178734) example: expect speed: 0.000000 real_pulses:0 +I (178734) example: new speed:399.000000 +I (178744) example: expect speed: 0.000000 real_pulses:0 +I (178744) example: new speed:399.000000 +I (178754) example: expect speed: 0.000000 real_pulses:0 +I (178754) example: new speed:399.000000 +I (178764) example: expect speed: 0.000000 real_pulses:0 +I (178764) example: new speed:399.000000 +I (178774) example: expect speed: 0.000000 real_pulses:0 +I (178774) example: new speed:399.000000 +I (178784) example: expect speed: 0.000000 real_pulses:0 +I (178784) example: new speed:399.000000 +I (178794) example: expect speed: 0.000000 real_pulses:0 +I (178794) example: new speed:399.000000 +I (178804) example: expect speed: 0.000000 real_pulses:0 +I (178804) example: new speed:399.000000 +I (178814) example: expect speed: 0.000000 real_pulses:0 +I (178814) example: new speed:399.000000 +I (178824) example: expect speed: 0.000000 real_pulses:0 +I (178824) example: new speed:399.000000 +I (178834) example: expect speed: 0.000000 real_pulses:0 +I (178834) example: new speed:399.000000 +I (178844) example: expect speed: 0.000000 real_pulses:0 +I (178844) example: new speed:399.000000 +I (178854) example: expect speed: 0.000000 real_pulses:0 +I (178854) example: new speed:399.000000 +I (178864) example: expect speed: 0.000000 real_pulses:0 +I (178864) example: new speed:399.000000 +I (178874) example: expect speed: 0.000000 real_pulses:0 +I (178874) example: new speed:399.000000 +I (178884) example: expect speed: 0.000000 real_pulses:0 +I (178884) example: new speed:399.000000 +I (178894) example: expect speed: 0.000000 real_pulses:0 +I (178894) example: new speed:399.000000 +I (178904) example: expect speed: 0.000000 real_pulses:0 +I (178904) example: new speed:399.000000 +I (178914) example: expect speed: 0.000000 real_pulses:0 +I (178914) example: new speed:399.000000 +I (178924) example: expect speed: 0.000000 real_pulses:0 +I (178924) example: new speed:399.000000 +I (178934) example: expect speed: 0.000000 real_pulses:0 +I (178934) example: new speed:399.000000 +I (178944) example: expect speed: 0.000000 real_pulses:0 +I (178944) example: new speed:399.000000 +I (178954) example: expect speed: 0.000000 real_pulses:0 +I (178954) example: new speed:399.000000 +I (178964) example: expect speed: 0.000000 real_pulses:0 +I (178964) example: new speed:399.000000 +I (178974) example: expect speed: 0.000000 real_pulses:0 +I (178974) example: new speed:399.000000 +I (178984) example: expect speed: 0.000000 real_pulses:0 +I (178984) example: new speed:399.000000 +I (178994) example: expect speed: 0.000000 real_pulses:0 +I (178994) example: new speed:399.000000 +I (179004) example: expect speed: 0.000000 real_pulses:0 +I (179004) example: new speed:399.000000 +I (179014) example: expect speed: 0.000000 real_pulses:0 +I (179014) example: new speed:399.000000 +I (179024) example: expect speed: 0.000000 real_pulses:0 +I (179024) example: new speed:399.000000 +I (179034) example: expect speed: 0.000000 real_pulses:0 +I (179034) example: new speed:399.000000 +I (179044) example: expect speed: 0.000000 real_pulses:0 +I (179044) example: new speed:399.000000 +I (179054) example: expect speed: 0.000000 real_pulses:0 +I (179054) example: new speed:399.000000 +I (179064) example: expect speed: 0.000000 real_pulses:0 +I (179064) example: new speed:399.000000 +I (179074) example: expect speed: 0.000000 real_pulses:0 +I (179074) example: new speed:399.000000 +I (179084) example: expect speed: 0.000000 real_pulses:0 +I (179084) example: new speed:399.000000 +I (179094) example: expect speed: 0.000000 real_pulses:0 +I (179094) example: new speed:399.000000 +I (179104) example: expect speed: 0.000000 real_pulses:0 +I (179104) example: new speed:399.000000 +I (179114) example: expect speed: 0.000000 real_pulses:0 +I (179114) example: new speed:399.000000 +I (179124) example: expect speed: 0.000000 real_pulses:0 +I (179124) example: new speed:399.000000 +I (179134) example: expect speed: 0.000000 real_pulses:0 +I (179134) example: new speed:399.000000 +I (179144) example: expect speed: 0.000000 real_pulses:0 +I (179144) example: new speed:399.000000 +I (179154) example: expect speed: 0.000000 real_pulses:0 +I (179154) example: new speed:399.000000 +I (179164) example: expect speed: 0.000000 real_pulses:0 +I (179164) example: new speed:399.000000 +I (179174) example: expect speed: 0.000000 real_pulses:0 +I (179174) example: new speed:399.000000 +I (179184) example: expect speed: 0.000000 real_pulses:0 +I (179184) example: new speed:399.000000 +I (179194) example: expect speed: 0.000000 real_pulses:0 +I (179194) example: new speed:399.000000 +I (179204) example: expect speed: 0.000000 real_pulses:0 +I (179204) example: new speed:399.000000 +I (179214) example: expect speed: 0.000000 real_pulses:0 +I (179214) example: new speed:399.000000 +I (179224) example: expect speed: 0.000000 real_pulses:0 +I (179224) example: new speed:399.000000 +I (179234) example: expect speed: 0.000000 real_pulses:0 +I (179234) example: new speed:399.000000 +I (179244) example: expect speed: 0.000000 real_pulses:0 +I (179244) example: new speed:399.000000 +I (179254) example: expect speed: 0.000000 real_pulses:0 +I (179254) example: new speed:399.000000 +I (179264) example: expect speed: 0.000000 real_pulses:0 +I (179264) example: new speed:399.000000 +I (179274) example: expect speed: 0.000000 real_pulses:0 +I (179274) example: new speed:399.000000 +I (179284) example: expect speed: 0.000000 real_pulses:0 +I (179284) example: new speed:399.000000 +I (179294) example: expect speed: 0.000000 real_pulses:0 +I (179294) example: new speed:399.000000 +I (179304) example: expect speed: 0.000000 real_pulses:0 +I (179304) example: new speed:399.000000 +I (179314) example: expect speed: 0.000000 real_pulses:0 +I (179314) example: new speed:399.000000 +I (179324) example: expect speed: 0.000000 real_pulses:0 +I (179324) example: new speed:399.000000 +I (179334) example: expect speed: 0.000000 real_pulses:0 +I (179334) example: new speed:399.000000 +I (179344) example: expect speed: 0.000000 real_pulses:0 +I (179344) example: new speed:399.000000 +I (179354) modbus tcp: ModBusSlave_recv() +I (179354) modbus: ModbusSlaveProcess() +I (179354) modbus: check id... +I (179354) example: expect speed: 0.000000 real_pulses:0 +I (179354) modbus: ok +I (179354) example: new speed:399.000000 +I (179364) modbus: add: 0, length: 10 +I (179364) modbus: Read Holding Registers +I (179364) example: expect speed: 0.000000 real_pulses:0 +I (179374) example: new speed:399.000000 +I (179374) example: expect speed: 0.000000 real_pulses:0 +I (179374) example: new speed:399.000000 +I (179384) example: expect speed: 0.000000 real_pulses:0 +I (179384) example: new speed:399.000000 +I (179394) example: expect speed: 0.000000 real_pulses:0 +I (179394) example: new speed:399.000000 +I (179404) example: expect speed: 0.000000 real_pulses:0 +I (179404) example: new speed:399.000000 +I (179414) example: expect speed: 0.000000 real_pulses:0 +I (179424) example: new speed:399.000000 +I (179424) example: expect speed: 0.000000 real_pulses:0 +I (179424) example: new speed:399.000000 +I (179434) example: expect speed: 0.000000 real_pulses:0 +I (179434) example: new speed:399.000000 +I (179444) example: expect speed: 0.000000 real_pulses:0 +I (179444) example: new speed:399.000000 +I (179454) example: expect speed: 0.000000 real_pulses:0 +I (179454) example: new speed:399.000000 +I (179464) example: expect speed: 0.000000 real_pulses:0 +I (179474) example: new speed:399.000000 +I (179474) example: expect speed: 0.000000 real_pulses:0 +I (179474) example: new speed:399.000000 +I (179484) example: expect speed: 0.000000 real_pulses:0 +I (179484) example: new speed:399.000000 +I (179494) example: expect speed: 0.000000 real_pulses:0 +I (179494) example: new speed:399.000000 +I (179504) example: expect speed: 0.000000 real_pulses:0 +I (179504) example: new speed:399.000000 +I (179514) example: expect speed: 0.000000 real_pulses:0 +I (179514) example: new speed:399.000000 +I (179524) example: expect speed: 0.000000 real_pulses:0 +I (179524) example: new speed:399.000000 +I (179534) example: expect speed: 0.000000 real_pulses:0 +I (179534) example: new speed:399.000000 +I (179544) example: expect speed: 0.000000 real_pulses:0 +I (179544) example: new speed:399.000000 +I (179554) example: expect speed: 0.000000 real_pulses:0 +I (179554) example: new speed:399.000000 +I (179564) example: expect speed: 0.000000 real_pulses:0 +I (179564) example: new speed:399.000000 +I (179574) example: expect speed: 0.000000 real_pulses:0 +I (179574) example: new speed:399.000000 +I (179584) example: expect speed: 0.000000 real_pulses:0 +I (179584) example: new speed:399.000000 +I (179594) example: expect speed: 0.000000 real_pulses:0 +I (179594) example: new speed:399.000000 +I (179604) example: expect speed: 0.000000 real_pulses:0 +I (179604) example: new speed:399.000000 +I (179614) example: expect speed: 0.000000 real_pulses:0 +I (179614) example: new speed:399.000000 +I (179624) example: expect speed: 0.000000 real_pulses:0 +I (179624) example: new speed:399.000000 +I (179634) example: expect speed: 0.000000 real_pulses:0 +I (179634) example: new speed:399.000000 +I (179644) example: expect speed: 0.000000 real_pulses:0 +I (179644) example: new speed:399.000000 +I (179654) example: expect speed: 0.000000 real_pulses:0 +I (179654) example: new speed:399.000000 +I (179664) example: expect speed: 0.000000 real_pulses:0 +I (179664) example: new speed:399.000000 +I (179674) example: expect speed: 0.000000 real_pulses:0 +I (179674) example: new speed:399.000000 +I (179684) example: expect speed: 0.000000 real_pulses:0 +I (179684) example: new speed:399.000000 +I (179694) example: expect speed: 0.000000 real_pulses:0 +I (179694) example: new speed:399.000000 +I (179704) example: expect speed: 0.000000 real_pulses:0 +I (179704) example: new speed:399.000000 +I (179714) example: expect speed: 0.000000 real_pulses:0 +I (179714) example: new speed:399.000000 +I (179724) example: expect speed: 0.000000 real_pulses:0 +I (179724) example: new speed:399.000000 +I (179734) example: expect speed: 0.000000 real_pulses:0 +I (179734) example: new speed:399.000000 +I (179744) example: expect speed: 0.000000 real_pulses:0 +I (179744) example: new speed:399.000000 +I (179754) example: expect speed: 0.000000 real_pulses:0 +I (179754) example: new speed:399.000000 +I (179764) example: expect speed: 0.000000 real_pulses:0 +I (179764) example: new speed:399.000000 +I (179774) example: expect speed: 0.000000 real_pulses:0 +I (179774) example: new speed:399.000000 +I (179784) example: expect speed: 0.000000 real_pulses:0 +I (179784) example: new speed:399.000000 +I (179794) example: expect speed: 0.000000 real_pulses:0 +I (179794) example: new speed:399.000000 +I (179804) example: expect speed: 0.000000 real_pulses:0 +I (179804) example: new speed:399.000000 +I (179814) example: expect speed: 0.000000 real_pulses:0 +I (179814) example: new speed:399.000000 +I (179824) example: expect speed: 0.000000 real_pulses:0 +I (179824) example: new speed:399.000000 +I (179834) example: expect speed: 0.000000 real_pulses:0 +I (179834) example: new speed:399.000000 +I (179844) example: expect speed: 0.000000 real_pulses:0 +I (179844) example: new speed:399.000000 +I (179854) example: expect speed: 0.000000 real_pulses:0 +I (179854) example: new speed:399.000000 +I (179864) example: expect speed: 0.000000 real_pulses:0 +I (179864) example: new speed:399.000000 +I (179874) example: expect speed: 0.000000 real_pulses:0 +I (179874) example: new speed:399.000000 +I (179884) example: expect speed: 0.000000 real_pulses:0 +I (179884) example: new speed:399.000000 +I (179894) example: expect speed: 0.000000 real_pulses:0 +I (179894) example: new speed:399.000000 +I (179904) example: expect speed: 0.000000 real_pulses:0 +I (179904) example: new speed:399.000000 +I (179914) example: expect speed: 0.000000 real_pulses:0 +I (179914) example: new speed:399.000000 +I (179924) example: expect speed: 0.000000 real_pulses:0 +I (179924) example: new speed:399.000000 +I (179934) example: expect speed: 0.000000 real_pulses:0 +I (179934) example: new speed:399.000000 +I (179944) example: expect speed: 0.000000 real_pulses:0 +I (179944) example: new speed:399.000000 +I (179954) example: expect speed: 0.000000 real_pulses:0 +I (179954) example: new speed:399.000000 +I (179964) example: expect speed: 0.000000 real_pulses:0 +I (179964) example: new speed:399.000000 +I (179974) example: expect speed: 0.000000 real_pulses:0 +I (179974) example: new speed:399.000000 +I (179984) example: expect speed: 0.000000 real_pulses:0 +I (179984) example: new speed:399.000000 +I (179994) example: expect speed: 0.000000 real_pulses:0 +I (179994) example: new speed:399.000000 +I (180004) example: expect speed: 0.000000 real_pulses:0 +I (180004) example: new speed:399.000000 +I (180014) example: expect speed: 0.000000 real_pulses:0 +I (180014) example: new speed:399.000000 +I (180024) example: expect speed: 0.000000 real_pulses:0 +I (180024) example: new speed:399.000000 +I (180034) example: expect speed: 0.000000 real_pulses:0 +I (180034) example: new speed:399.000000 +I (180044) example: expect speed: 0.000000 real_pulses:0 +I (180044) example: new speed:399.000000 +I (180054) example: expect speed: 0.000000 real_pulses:0 +I (180054) example: new speed:399.000000 +I (180064) example: expect speed: 0.000000 real_pulses:0 +I (180064) example: new speed:399.000000 +I (180074) example: expect speed: 0.000000 real_pulses:0 +I (180074) example: new speed:399.000000 +I (180084) example: expect speed: 0.000000 real_pulses:0 +I (180084) example: new speed:399.000000 +I (180094) example: expect speed: 0.000000 real_pulses:0 +I (180094) example: new speed:399.000000 +I (180104) example: expect speed: 0.000000 real_pulses:0 +I (180104) example: new speed:399.000000 +I (180114) example: expect speed: 0.000000 real_pulses:0 +I (180114) example: new speed:399.000000 +I (180124) example: expect speed: 0.000000 real_pulses:0 +I (180124) example: new speed:399.000000 +I (180134) example: expect speed: 0.000000 real_pulses:0 +I (180134) example: new speed:399.000000 +I (180144) example: expect speed: 0.000000 real_pulses:0 +I (180144) example: new speed:399.000000 +I (180154) example: expect speed: 0.000000 real_pulses:0 +I (180154) example: new speed:399.000000 +I (180164) example: expect speed: 0.000000 real_pulses:0 +I (180164) example: new speed:399.000000 +I (180174) example: expect speed: 0.000000 real_pulses:0 +I (180174) example: new speed:399.000000 +I (180184) example: expect speed: 0.000000 real_pulses:0 +I (180184) example: new speed:399.000000 +I (180194) example: expect speed: 0.000000 real_pulses:0 +I (180194) example: new speed:399.000000 +I (180204) example: expect speed: 0.000000 real_pulses:0 +I (180204) example: new speed:399.000000 +I (180214) example: expect speed: 0.000000 real_pulses:0 +I (180214) example: new speed:399.000000 +I (180224) example: expect speed: 0.000000 real_pulses:0 +I (180224) example: new speed:399.000000 +I (180234) example: expect speed: 0.000000 real_pulses:0 +I (180234) example: new speed:399.000000 +I (180244) example: expect speed: 0.000000 real_pulses:0 +I (180244) example: new speed:399.000000 +I (180254) example: expect speed: 0.000000 real_pulses:0 +I (180254) example: new speed:399.000000 +I (180264) example: expect speed: 0.000000 real_pulses:0 +I (180264) example: new speed:399.000000 +I (180274) example: expect speed: 0.000000 real_pulses:0 +I (180284) example: new speed:399.000000 +I (180284) modbus tcp: ModBusSlave_recv() +I (180284) modbus: ModbusSlaveProcess() +I (180284) modbus: check id... +I (180284) modbus: ok +I (180284) modbus: add: 0, length: 10 +I (180284) modbus: Read Holding Registers +I (180284) example: expect speed: 0.000000 real_pulses:0 +I (180294) example: new speed:399.000000 +I (180294) example: expect speed: 0.000000 real_pulses:0 +I (180294) example: new speed:399.000000 +I (180304) example: expect speed: 0.000000 real_pulses:0 +I (180304) example: new speed:399.000000 +I (180314) example: expect speed: 0.000000 real_pulses:0 +I (180314) example: new speed:399.000000 +I (180324) example: expect speed: 0.000000 real_pulses:0 +I (180324) example: new speed:399.000000 +I (180334) example: expect speed: 0.000000 real_pulses:0 +I (180334) example: new speed:399.000000 +I (180344) example: expect speed: 0.000000 real_pulses:0 +I (180354) example: new speed:399.000000 +I (180354) example: expect speed: 0.000000 real_pulses:0 +I (180354) example: new speed:399.000000 +I (180364) example: expect speed: 0.000000 real_pulses:0 +I (180364) example: new speed:399.000000 +I (180374) example: expect speed: 0.000000 real_pulses:0 +I (180374) example: new speed:399.000000 +I (180384) example: expect speed: 0.000000 real_pulses:0 +I (180394) example: new speed:399.000000 +I (180394) example: expect speed: 0.000000 real_pulses:0 +I (180394) example: new speed:399.000000 +I (180404) example: expect speed: 0.000000 real_pulses:0 +I (180404) example: new speed:399.000000 +I (180414) example: expect speed: 0.000000 real_pulses:0 +I (180414) example: new speed:399.000000 +I (180424) example: expect speed: 0.000000 real_pulses:0 +I (180424) example: new speed:399.000000 +I (180434) example: expect speed: 0.000000 real_pulses:0 +I (180444) example: new speed:399.000000 +I (180444) example: expect speed: 0.000000 real_pulses:0 +I (180444) example: new speed:399.000000 +I (180454) example: expect speed: 0.000000 real_pulses:0 +I (180454) example: new speed:399.000000 +I (180464) example: expect speed: 0.000000 real_pulses:0 +I (180464) example: new speed:399.000000 +I (180474) example: expect speed: 0.000000 real_pulses:0 +I (180484) example: new speed:399.000000 +I (180484) example: expect speed: 0.000000 real_pulses:0 +I (180484) example: new speed:399.000000 +I (180494) example: expect speed: 0.000000 real_pulses:0 +I (180494) example: new speed:399.000000 +I (180504) example: expect speed: 0.000000 real_pulses:0 +I (180504) example: new speed:399.000000 +I (180514) example: expect speed: 0.000000 real_pulses:0 +I (180514) example: new speed:399.000000 +I (180524) example: expect speed: 0.000000 real_pulses:0 +I (180524) example: new speed:399.000000 +I (180534) example: expect speed: 0.000000 real_pulses:0 +I (180534) example: new speed:399.000000 +I (180544) example: expect speed: 0.000000 real_pulses:0 +I (180544) example: new speed:399.000000 +I (180554) example: expect speed: 0.000000 real_pulses:0 +I (180554) example: new speed:399.000000 +I (180564) example: expect speed: 0.000000 real_pulses:0 +I (180564) example: new speed:399.000000 +I (180574) example: expect speed: 0.000000 real_pulses:0 +I (180574) example: new speed:399.000000 +I (180584) example: expect speed: 0.000000 real_pulses:0 +I (180584) example: new speed:399.000000 +I (180594) example: expect speed: 0.000000 real_pulses:0 +I (180594) example: new speed:399.000000 +I (180604) example: expect speed: 0.000000 real_pulses:0 +I (180604) example: new speed:399.000000 +I (180614) example: expect speed: 0.000000 real_pulses:0 +I (180614) example: new speed:399.000000 +I (180624) example: expect speed: 0.000000 real_pulses:0 +I (180624) example: new speed:399.000000 +I (180634) example: expect speed: 0.000000 real_pulses:0 +I (180634) example: new speed:399.000000 +I (180644) example: expect speed: 0.000000 real_pulses:0 +I (180644) example: new speed:399.000000 +I (180654) example: expect speed: 0.000000 real_pulses:0 +I (180654) example: new speed:399.000000 +I (180664) example: expect speed: 0.000000 real_pulses:0 +I (180664) example: new speed:399.000000 +I (180674) example: expect speed: 0.000000 real_pulses:0 +I (180674) example: new speed:399.000000 +I (180684) example: expect speed: 0.000000 real_pulses:0 +I (180684) example: new speed:399.000000 +I (180694) example: expect speed: 0.000000 real_pulses:0 +I (180694) example: new speed:399.000000 +I (180704) example: expect speed: 0.000000 real_pulses:0 +I (180704) example: new speed:399.000000 +I (180714) example: expect speed: 0.000000 real_pulses:0 +I (180714) example: new speed:399.000000 +I (180724) example: expect speed: 0.000000 real_pulses:0 +I (180724) example: new speed:399.000000 +I (180734) example: expect speed: 0.000000 real_pulses:0 +I (180734) example: new speed:399.000000 +I (180744) example: expect speed: 0.000000 real_pulses:0 +I (180744) example: new speed:399.000000 +I (180754) example: expect speed: 0.000000 real_pulses:0 +I (180754) example: new speed:399.000000 +I (180764) example: expect speed: 0.000000 real_pulses:0 +I (180764) example: new speed:399.000000 +I (180774) example: expect speed: 0.000000 real_pulses:0 +I (180774) example: new speed:399.000000 +I (180784) example: expect speed: 0.000000 real_pulses:0 +I (180784) example: new speed:399.000000 +I (180794) example: expect speed: 0.000000 real_pulses:0 +I (180794) example: new speed:399.000000 +I (180804) example: expect speed: 0.000000 real_pulses:0 +I (180804) example: new speed:399.000000 +I (180814) example: expect speed: 0.000000 real_pulses:0 +I (180814) example: new speed:399.000000 +I (180824) example: expect speed: 0.000000 real_pulses:0 +I (180824) example: new speed:399.000000 +I (180834) example: expect speed: 0.000000 real_pulses:0 +I (180834) example: new speed:399.000000 +I (180844) example: expect speed: 0.000000 real_pulses:0 +I (180844) example: new speed:399.000000 +I (180854) example: expect speed: 0.000000 real_pulses:0 +I (180854) example: new speed:399.000000 +I (180864) example: expect speed: 0.000000 real_pulses:0 +I (180864) example: new speed:399.000000 +I (180874) example: expect speed: 0.000000 real_pulses:0 +I (180874) example: new speed:399.000000 +I (180884) example: expect speed: 0.000000 real_pulses:0 +I (180894) example: new speed:399.000000 +I (180894) example: expect speed: 0.000000 real_pulses:0 +I (180904) example: new speed:399.000000 +I (180904) example: expect speed: 0.000000 real_pulses:0 +I (180904) example: new speed:399.000000 +I (180914) example: expect speed: 0.000000 real_pulses:0 +I (180914) example: new speed:399.000000 +I (180924) example: expect speed: 0.000000 real_pulses:0 +I (180924) example: new speed:399.000000 +I (180934) example: expect speed: 0.000000 real_pulses:0 +I (180934) example: new speed:399.000000 +I (180944) example: expect speed: 0.000000 real_pulses:0 +I (180944) example: new speed:399.000000 +I (180954) example: expect speed: 0.000000 real_pulses:0 +I (180954) example: new speed:399.000000 +I (180964) example: expect speed: 0.000000 real_pulses:0 +I (180964) example: new speed:399.000000 +I (180974) example: expect speed: 0.000000 real_pulses:0 +I (180974) example: new speed:399.000000 +I (180984) example: expect speed: 0.000000 real_pulses:0 +I (180984) example: new speed:399.000000 +I (180994) example: expect speed: 0.000000 real_pulses:0 +I (180994) example: new speed:399.000000 +I (181004) example: expect speed: 0.000000 real_pulses:0 +I (181004) example: new speed:399.000000 +I (181014) example: expect speed: 0.000000 real_pulses:0 +I (181014) example: new speed:399.000000 +I (181024) example: expect speed: 0.000000 real_pulses:0 +I (181024) example: new speed:399.000000 +I (181034) example: expect speed: 0.000000 real_pulses:0 +I (181034) example: new speed:399.000000 +I (181044) example: expect speed: 0.000000 real_pulses:0 +I (181044) example: new speed:399.000000 +I (181054) example: expect speed: 0.000000 real_pulses:0 +I (181054) example: new speed:399.000000 +I (181064) example: expect speed: 0.000000 real_pulses:0 +I (181064) example: new speed:399.000000 +I (181074) example: expect speed: 0.000000 real_pulses:0 +I (181074) example: new speed:399.000000 +I (181084) example: expect speed: 0.000000 real_pulses:0 +I (181084) example: new speed:399.000000 +I (181094) example: expect speed: 0.000000 real_pulses:0 +I (181094) example: new speed:399.000000 +I (181104) example: expect speed: 0.000000 real_pulses:0 +I (181104) example: new speed:399.000000 +I (181114) example: expect speed: 0.000000 real_pulses:0 +I (181114) example: new speed:399.000000 +I (181124) example: expect speed: 0.000000 real_pulses:0 +I (181124) example: new speed:399.000000 +I (181134) example: expect speed: 0.000000 real_pulses:0 +I (181134) example: new speed:399.000000 +I (181144) example: expect speed: 0.000000 real_pulses:0 +I (181144) example: new speed:399.000000 +I (181154) example: expect speed: 0.000000 real_pulses:0 +I (181154) example: new speed:399.000000 +I (181164) example: expect speed: 0.000000 real_pulses:0 +I (181164) example: new speed:399.000000 +I (181174) example: expect speed: 0.000000 real_pulses:0 +I (181174) example: new speed:399.000000 +I (181184) example: expect speed: 0.000000 real_pulses:0 +I (181184) example: new speed:399.000000 +I (181194) example: expect speed: 0.000000 real_pulses:0 +I (181194) example: new speed:399.000000 +I (181204) example: expect speed: 0.000000 real_pulses:0 +I (181204) example: new speed:399.000000 +I (181214) example: expect speed: 0.000000 real_pulses:0 +I (181214) example: new speed:399.000000 +I (181224) example: expect speed: 0.000000 real_pulses:0 +I (181224) example: new speed:399.000000 +I (181234) example: expect speed: 0.000000 real_pulses:0 +I (181234) example: new speed:399.000000 +I (181244) example: expect speed: 0.000000 real_pulses:0 +I (181244) example: new speed:399.000000 +I (181254) example: expect speed: 0.000000 real_pulses:0 +I (181254) example: new speed:399.000000 +I (181264) example: expect speed: 0.000000 real_pulses:0 +I (181264) example: new speed:399.000000 +I (181274) example: expect speed: 0.000000 real_pulses:0 +I (181274) example: new speed:399.000000 +I (181284) example: expect speed: 0.000000 real_pulses:0 +I (181284) example: new speed:399.000000 +I (181294) example: expect speed: 0.000000 real_pulses:0 +I (181304) example: new speed:399.000000 +I (181304) modbus tcp: ModBusSlave_recv() +I (181304) modbus: ModbusSlaveProcess() +I (181304) modbus: check id... +I (181304) modbus: ok +I (181304) modbus: add: 0, length: 10 +I (181304) modbus: Read Holding Registers +I (181304) example: expect speed: 0.000000 real_pulses:0 +I (181314) example: new speed:399.000000 +I (181314) example: expect speed: 0.000000 real_pulses:0 +I (181314) example: new speed:399.000000 +I (181324) example: expect speed: 0.000000 real_pulses:0 +I (181324) example: new speed:399.000000 +I (181334) example: expect speed: 0.000000 real_pulses:0 +I (181334) example: new speed:399.000000 +I (181344) example: expect speed: 0.000000 real_pulses:0 +I (181344) example: new speed:399.000000 +I (181354) example: expect speed: 0.000000 real_pulses:0 +I (181354) example: new speed:399.000000 +I (181364) example: expect speed: 0.000000 real_pulses:0 +I (181374) example: new speed:399.000000 +I (181374) example: expect speed: 0.000000 real_pulses:0 +I (181374) example: new speed:399.000000 +I (181384) example: expect speed: 0.000000 real_pulses:0 +I (181384) example: new speed:399.000000 +I (181394) example: expect speed: 0.000000 real_pulses:0 +I (181394) example: new speed:399.000000 +I (181404) example: expect speed: 0.000000 real_pulses:0 +I (181404) example: new speed:399.000000 +I (181414) example: expect speed: 0.000000 real_pulses:0 +I (181424) example: new speed:399.000000 +I (181424) example: expect speed: 0.000000 real_pulses:0 +I (181424) example: new speed:399.000000 +I (181434) example: expect speed: 0.000000 real_pulses:0 +I (181434) example: new speed:399.000000 +I (181444) example: expect speed: 0.000000 real_pulses:0 +I (181444) example: new speed:399.000000 +I (181454) example: expect speed: 0.000000 real_pulses:0 +I (181454) example: new speed:399.000000 +I (181464) example: expect speed: 0.000000 real_pulses:0 +I (181464) example: new speed:399.000000 +I (181474) example: expect speed: 0.000000 real_pulses:0 +I (181474) example: new speed:399.000000 +I (181484) example: expect speed: 0.000000 real_pulses:0 +I (181484) example: new speed:399.000000 +I (181494) example: expect speed: 0.000000 real_pulses:0 +I (181494) example: new speed:399.000000 +I (181504) example: expect speed: 0.000000 real_pulses:0 +I (181504) example: new speed:399.000000 +I (181514) example: expect speed: 0.000000 real_pulses:0 +I (181514) example: new speed:399.000000 +I (181524) example: expect speed: 0.000000 real_pulses:0 +I (181524) example: new speed:399.000000 +I (181534) example: expect speed: 0.000000 real_pulses:0 +I (181534) example: new speed:399.000000 +I (181544) example: expect speed: 0.000000 real_pulses:0 +I (181544) example: new speed:399.000000 +I (181554) example: expect speed: 0.000000 real_pulses:0 +I (181554) example: new speed:399.000000 +I (181564) example: expect speed: 0.000000 real_pulses:0 +I (181564) example: new speed:399.000000 +I (181574) example: expect speed: 0.000000 real_pulses:0 +I (181574) example: new speed:399.000000 +I (181584) example: expect speed: 0.000000 real_pulses:0 +I (181584) example: new speed:399.000000 +I (181594) example: expect speed: 0.000000 real_pulses:0 +I (181594) example: new speed:399.000000 +I (181604) example: expect speed: 0.000000 real_pulses:0 +I (181604) example: new speed:399.000000 +I (181614) example: expect speed: 0.000000 real_pulses:0 +I (181614) example: new speed:399.000000 +I (181624) example: expect speed: 0.000000 real_pulses:0 +I (181624) example: new speed:399.000000 +I (181634) example: expect speed: 0.000000 real_pulses:0 +I (181634) example: new speed:399.000000 +I (181644) example: expect speed: 0.000000 real_pulses:0 +I (181644) example: new speed:399.000000 +I (181654) example: expect speed: 0.000000 real_pulses:0 +I (181654) example: new speed:399.000000 +I (181664) example: expect speed: 0.000000 real_pulses:0 +I (181664) example: new speed:399.000000 +I (181674) example: expect speed: 0.000000 real_pulses:0 +I (181674) example: new speed:399.000000 +I (181684) example: expect speed: 0.000000 real_pulses:0 +I (181684) example: new speed:399.000000 +I (181694) example: expect speed: 0.000000 real_pulses:0 +I (181694) example: new speed:399.000000 +I (181704) example: expect speed: 0.000000 real_pulses:0 +I (181704) example: new speed:399.000000 +I (181714) example: expect speed: 0.000000 real_pulses:0 +I (181714) example: new speed:399.000000 +I (181724) example: expect speed: 0.000000 real_pulses:0 +I (181724) example: new speed:399.000000 +I (181734) example: expect speed: 0.000000 real_pulses:0 +I (181734) example: new speed:399.000000 +I (181744) example: expect speed: 0.000000 real_pulses:0 +I (181744) example: new speed:399.000000 +I (181754) example: expect speed: 0.000000 real_pulses:0 +I (181754) example: new speed:399.000000 +I (181764) example: expect speed: 0.000000 real_pulses:0 +I (181764) example: new speed:399.000000 +I (181774) example: expect speed: 0.000000 real_pulses:0 +I (181774) example: new speed:399.000000 +I (181784) example: expect speed: 0.000000 real_pulses:0 +I (181784) example: new speed:399.000000 +I (181794) example: expect speed: 0.000000 real_pulses:0 +I (181794) example: new speed:399.000000 +I (181804) example: expect speed: 0.000000 real_pulses:0 +I (181804) example: new speed:399.000000 +I (181814) example: expect speed: 0.000000 real_pulses:0 +I (181814) example: new speed:399.000000 +I (181824) example: expect speed: 0.000000 real_pulses:0 +I (181824) example: new speed:399.000000 +I (181834) example: expect speed: 0.000000 real_pulses:0 +I (181834) example: new speed:399.000000 +I (181844) example: expect speed: 0.000000 real_pulses:0 +I (181844) example: new speed:399.000000 +I (181854) example: expect speed: 0.000000 real_pulses:0 +I (181854) example: new speed:399.000000 +I (181864) example: expect speed: 0.000000 real_pulses:0 +I (181864) example: new speed:399.000000 +I (181874) example: expect speed: 0.000000 real_pulses:0 +I (181874) example: new speed:399.000000 +I (181884) example: expect speed: 0.000000 real_pulses:0 +I (181884) example: new speed:399.000000 +I (181894) example: expect speed: 0.000000 real_pulses:0 +I (181894) example: new speed:399.000000 +I (181904) example: expect speed: 0.000000 real_pulses:0 +I (181904) example: new speed:399.000000 +I (181914) example: expect speed: 0.000000 real_pulses:0 +I (181914) example: new speed:399.000000 +I (181924) example: expect speed: 0.000000 real_pulses:0 +I (181924) example: new speed:399.000000 +I (181934) example: expect speed: 0.000000 real_pulses:0 +I (181934) example: new speed:399.000000 +I (181944) example: expect speed: 0.000000 real_pulses:0 +I (181944) example: new speed:399.000000 +I (181954) example: expect speed: 0.000000 real_pulses:0 +I (181954) example: new speed:399.000000 +I (181964) example: expect speed: 0.000000 real_pulses:0 +I (181964) example: new speed:399.000000 +I (181974) example: expect speed: 0.000000 real_pulses:0 +I (181974) example: new speed:399.000000 +I (181984) example: expect speed: 0.000000 real_pulses:0 +I (181984) example: new speed:399.000000 +I (181994) example: expect speed: 0.000000 real_pulses:0 +I (181994) example: new speed:399.000000 +I (182004) example: expect speed: 0.000000 real_pulses:0 +I (182004) example: new speed:399.000000 +I (182014) example: expect speed: 0.000000 real_pulses:0 +I (182014) example: new speed:399.000000 +I (182024) example: expect speed: 0.000000 real_pulses:0 +I (182024) example: new speed:399.000000 +I (182034) example: expect speed: 0.000000 real_pulses:0 +I (182034) example: new speed:399.000000 +I (182044) example: expect speed: 0.000000 real_pulses:0 +I (182044) example: new speed:399.000000 +I (182054) example: expect speed: 0.000000 real_pulses:0 +I (182054) example: new speed:399.000000 +I (182064) example: expect speed: 0.000000 real_pulses:0 +I (182064) example: new speed:399.000000 +I (182074) example: expect speed: 0.000000 real_pulses:0 +I (182074) example: new speed:399.000000 +I (182084) example: expect speed: 0.000000 real_pulses:0 +I (182084) example: new speed:399.000000 +I (182094) example: expect speed: 0.000000 real_pulses:0 +I (182094) example: new speed:399.000000 +I (182104) example: expect speed: 0.000000 real_pulses:0 +I (182104) example: new speed:399.000000 +I (182114) example: expect speed: 0.000000 real_pulses:0 +I (182114) example: new speed:399.000000 +I (182124) example: expect speed: 0.000000 real_pulses:0 +I (182124) example: new speed:399.000000 +I (182134) example: expect speed: 0.000000 real_pulses:0 +I (182134) example: new speed:399.000000 +I (182144) example: expect speed: 0.000000 real_pulses:0 +I (182144) example: new speed:399.000000 +I (182154) example: expect speed: 0.000000 real_pulses:0 +I (182154) example: new speed:399.000000 +I (182164) example: expect speed: 0.000000 real_pulses:0 +I (182164) example: new speed:399.000000 +I (182174) example: expect speed: 0.000000 real_pulses:0 +I (182174) example: new speed:399.000000 +I (182184) example: expect speed: 0.000000 real_pulses:0 +I (182184) example: new speed:399.000000 +I (182194) example: expect speed: 0.000000 real_pulses:0 +I (182194) example: new speed:399.000000 +I (182204) example: expect speed: 0.000000 real_pulses:0 +I (182204) example: new speed:399.000000 +I (182214) example: expect speed: 0.000000 real_pulses:0 +I (182214) example: new speed:399.000000 +I (182224) example: expect speed: 0.000000 real_pulses:0 +I (182224) example: new speed:399.000000 +I (182234) example: expect speed: 0.000000 real_pulses:0 +I (182234) example: new speed:399.000000 +I (182244) example: expect speed: 0.000000 real_pulses:0 +I (182244) example: new speed:399.000000 +I (182254) example: expect speed: 0.000000 real_pulses:0 +I (182254) example: new speed:399.000000 +I (182264) example: expect speed: 0.000000 real_pulses:0 +I (182264) example: new speed:399.000000 +I (182274) example: expect speed: 0.000000 real_pulses:0 +I (182274) example: new speed:399.000000 +I (182284) example: expect speed: 0.000000 real_pulses:0 +I (182284) example: new speed:399.000000 +I (182294) example: expect speed: 0.000000 real_pulses:0 +I (182294) example: new speed:399.000000 +I (182304) example: expect speed: 0.000000 real_pulses:0 +I (182304) example: new speed:399.000000 +I (182314) example: expect speed: 0.000000 real_pulses:0 +I (182324) example: new speed:399.000000 +I (182324) modbus tcp: ModBusSlave_recv() +I (182324) modbus: ModbusSlaveProcess() +I (182324) modbus: check id... +I (182324) modbus: ok +I (182324) modbus: add: 0, length: 10 +I (182324) modbus: Read Holding Registers +I (182324) example: expect speed: 0.000000 real_pulses:0 +I (182334) example: new speed:399.000000 +I (182334) example: expect speed: 0.000000 real_pulses:0 +I (182334) example: new speed:399.000000 +I (182344) example: expect speed: 0.000000 real_pulses:0 +I (182344) example: new speed:399.000000 +I (182354) example: expect speed: 0.000000 real_pulses:0 +I (182354) example: new speed:399.000000 +I (182364) example: expect speed: 0.000000 real_pulses:0 +I (182364) example: new speed:399.000000 +I (182374) example: expect speed: 0.000000 real_pulses:0 +I (182374) example: new speed:399.000000 +I (182384) example: expect speed: 0.000000 real_pulses:0 +I (182394) example: new speed:399.000000 +I (182394) example: expect speed: 0.000000 real_pulses:0 +I (182394) example: new speed:399.000000 +I (182404) example: expect speed: 0.000000 real_pulses:0 +I (182404) example: new speed:399.000000 +I (182414) example: expect speed: 0.000000 real_pulses:0 +I (182414) example: new speed:399.000000 +I (182424) example: expect speed: 0.000000 real_pulses:0 +I (182424) example: new speed:399.000000 +I (182434) example: expect speed: 0.000000 real_pulses:0 +I (182434) example: new speed:399.000000 +I (182444) example: expect speed: 0.000000 real_pulses:0 +I (182444) example: new speed:399.000000 +I (182454) example: expect speed: 0.000000 real_pulses:0 +I (182454) example: new speed:399.000000 +I (182464) example: expect speed: 0.000000 real_pulses:0 +I (182464) example: new speed:399.000000 +I (182474) example: expect speed: 0.000000 real_pulses:0 +I (182474) example: new speed:399.000000 +I (182484) example: expect speed: 0.000000 real_pulses:0 +I (182484) example: new speed:399.000000 +I (182494) example: expect speed: 0.000000 real_pulses:0 +I (182494) example: new speed:399.000000 +I (182504) example: expect speed: 0.000000 real_pulses:0 +I (182504) example: new speed:399.000000 +I (182514) example: expect speed: 0.000000 real_pulses:0 +I (182514) example: new speed:399.000000 +I (182524) example: expect speed: 0.000000 real_pulses:0 +I (182524) example: new speed:399.000000 +I (182534) example: expect speed: 0.000000 real_pulses:0 +I (182534) example: new speed:399.000000 +I (182544) example: expect speed: 0.000000 real_pulses:0 +I (182544) example: new speed:399.000000 +I (182554) example: expect speed: 0.000000 real_pulses:0 +I (182554) example: new speed:399.000000 +I (182564) example: expect speed: 0.000000 real_pulses:0 +I (182564) example: new speed:399.000000 +I (182574) example: expect speed: 0.000000 real_pulses:0 +I (182574) example: new speed:399.000000 +I (182584) example: expect speed: 0.000000 real_pulses:0 +I (182584) example: new speed:399.000000 +I (182594) example: expect speed: 0.000000 real_pulses:0 +I (182594) example: new speed:399.000000 +I (182604) example: expect speed: 0.000000 real_pulses:0 +I (182604) example: new speed:399.000000 +I (182614) example: expect speed: 0.000000 real_pulses:0 +I (182614) example: new speed:399.000000 +I (182624) example: expect speed: 0.000000 real_pulses:0 +I (182624) example: new speed:399.000000 +I (182634) example: expect speed: 0.000000 real_pulses:0 +I (182634) example: new speed:399.000000 +I (182644) example: expect speed: 0.000000 real_pulses:0 +I (182644) example: new speed:399.000000 +I (182654) example: expect speed: 0.000000 real_pulses:0 +I (182654) example: new speed:399.000000 +I (182664) example: expect speed: 0.000000 real_pulses:0 +I (182664) example: new speed:399.000000 +I (182674) example: expect speed: 0.000000 real_pulses:0 +I (182674) example: new speed:399.000000 +I (182684) example: expect speed: 0.000000 real_pulses:0 +I (182684) example: new speed:399.000000 +I (182694) example: expect speed: 0.000000 real_pulses:0 +I (182694) example: new speed:399.000000 +I (182704) example: expect speed: 0.000000 real_pulses:0 +I (182704) example: new speed:399.000000 +I (182714) example: expect speed: 0.000000 real_pulses:0 +I (182714) example: new speed:399.000000 +I (182724) example: expect speed: 0.000000 real_pulses:0 +I (182724) example: new speed:399.000000 +I (182734) example: expect speed: 0.000000 real_pulses:0 +I (182734) example: new speed:399.000000 +I (182744) example: expect speed: 0.000000 real_pulses:0 +I (182744) example: new speed:399.000000 +I (182754) example: expect speed: 0.000000 real_pulses:0 +I (182754) example: new speed:399.000000 +I (182764) example: expect speed: 0.000000 real_pulses:0 +I (182764) example: new speed:399.000000 +I (182774) example: expect speed: 0.000000 real_pulses:0 +I (182774) example: new speed:399.000000 +I (182784) example: expect speed: 0.000000 real_pulses:0 +I (182784) example: new speed:399.000000 +I (182794) example: expect speed: 0.000000 real_pulses:0 +I (182794) example: new speed:399.000000 +I (182804) example: expect speed: 0.000000 real_pulses:0 +I (182804) example: new speed:399.000000 +I (182814) example: expect speed: 0.000000 real_pulses:0 +I (182814) example: new speed:399.000000 +I (182824) example: expect speed: 0.000000 real_pulses:0 +I (182824) example: new speed:399.000000 +I (182834) example: expect speed: 0.000000 real_pulses:0 +I (182834) example: new speed:399.000000 +I (182844) example: expect speed: 0.000000 real_pulses:0 +I (182844) example: new speed:399.000000 +I (182854) example: expect speed: 0.000000 real_pulses:0 +I (182854) example: new speed:399.000000 +I (182864) example: expect speed: 0.000000 real_pulses:0 +I (182864) example: new speed:399.000000 +I (182874) example: expect speed: 0.000000 real_pulses:0 +I (182874) example: new speed:399.000000 +I (182884) example: expect speed: 0.000000 real_pulses:0 +I (182884) example: new speed:399.000000 +I (182894) example: expect speed: 0.000000 real_pulses:0 +I (182894) example: new speed:399.000000 +I (182904) example: expect speed: 0.000000 real_pulses:0 +I (182904) example: new speed:399.000000 +I (182914) example: expect speed: 0.000000 real_pulses:0 +I (182914) example: new speed:399.000000 +I (182924) example: expect speed: 0.000000 real_pulses:0 +I (182924) example: new speed:399.000000 +I (182934) example: expect speed: 0.000000 real_pulses:0 +I (182934) example: new speed:399.000000 +I (182944) example: expect speed: 0.000000 real_pulses:0 +I (182944) example: new speed:399.000000 +I (182954) example: expect speed: 0.000000 real_pulses:0 +I (182954) example: new speed:399.000000 +I (182964) example: expect speed: 0.000000 real_pulses:0 +I (182964) example: new speed:399.000000 +I (182974) example: expect speed: 0.000000 real_pulses:0 +I (182974) example: new speed:399.000000 +I (182984) example: expect speed: 0.000000 real_pulses:0 +I (182984) example: new speed:399.000000 +I (182994) example: expect speed: 0.000000 real_pulses:0 +I (182994) example: new speed:399.000000 +I (183004) example: expect speed: 0.000000 real_pulses:0 +I (183004) example: new speed:399.000000 +I (183014) example: expect speed: 0.000000 real_pulses:0 +I (183014) example: new speed:399.000000 +I (183024) example: expect speed: 0.000000 real_pulses:0 +I (183024) example: new speed:399.000000 +I (183034) example: expect speed: 0.000000 real_pulses:0 +I (183034) example: new speed:399.000000 +I (183044) example: expect speed: 0.000000 real_pulses:0 +I (183044) example: new speed:399.000000 +I (183054) example: expect speed: 0.000000 real_pulses:0 +I (183054) example: new speed:399.000000 +I (183064) example: expect speed: 0.000000 real_pulses:0 +I (183064) example: new speed:399.000000 +I (183074) example: expect speed: 0.000000 real_pulses:0 +I (183074) example: new speed:399.000000 +I (183084) example: expect speed: 0.000000 real_pulses:0 +I (183084) example: new speed:399.000000 +I (183094) example: expect speed: 0.000000 real_pulses:0 +I (183094) example: new speed:399.000000 +I (183104) example: expect speed: 0.000000 real_pulses:0 +I (183104) example: new speed:399.000000 +I (183114) example: expect speed: 0.000000 real_pulses:0 +I (183114) example: new speed:399.000000 +I (183124) example: expect speed: 0.000000 real_pulses:0 +I (183124) example: new speed:399.000000 +I (183134) example: expect speed: 0.000000 real_pulses:0 +I (183134) example: new speed:399.000000 +I (183144) example: expect speed: 0.000000 real_pulses:0 +I (183144) example: new speed:399.000000 +I (183154) example: expect speed: 0.000000 real_pulses:0 +I (183154) example: new speed:399.000000 +I (183164) example: expect speed: 0.000000 real_pulses:0 +I (183164) example: new speed:399.000000 +I (183174) example: expect speed: 0.000000 real_pulses:0 +I (183174) example: new speed:399.000000 +I (183184) example: expect speed: 0.000000 real_pulses:0 +I (183184) example: new speed:399.000000 +I (183194) example: expect speed: 0.000000 real_pulses:0 +I (183194) example: new speed:399.000000 +I (183204) example: expect speed: 0.000000 real_pulses:0 +I (183204) example: new speed:399.000000 +I (183214) example: expect speed: 0.000000 real_pulses:0 +I (183214) example: new speed:399.000000 +I (183224) example: expect speed: 0.000000 real_pulses:0 +I (183224) example: new speed:399.000000 +I (183234) example: expect speed: 0.000000 real_pulses:0 +I (183234) example: new speed:399.000000 +I (183244) example: expect speed: 0.000000 real_pulses:0 +I (183244) example: new speed:399.000000 +I (183254) example: expect speed: 0.000000 real_pulses:0 +I (183254) example: new speed:399.000000 +I (183264) example: expect speed: 0.000000 real_pulses:0 +I (183264) example: new speed:399.000000 +I (183274) example: expect speed: 0.000000 real_pulses:0 +I (183274) example: new speed:399.000000 +I (183284) example: expect speed: 0.000000 real_pulses:0 +I (183284) example: new speed:399.000000 +I (183294) example: expect speed: 0.000000 real_pulses:0 +I (183294) example: new speed:399.000000 +I (183304) example: expect speed: 0.000000 real_pulses:0 +I (183304) example: new speed:399.000000 +I (183314) example: expect speed: 0.000000 real_pulses:0 +I (183314) example: new speed:399.000000 +I (183324) example: expect speed: 0.000000 real_pulses:0 +I (183324) example: new speed:399.000000 +I (183334) example: expect speed: 0.000000 real_pulses:0 +I (183334) example: new speed:399.000000 +I (183344) modbus tcp: ModBusSlave_recv() +I (183344) example: expect speed: 0.000000 real_pulses:0 +I (183344) modbus: ModbusSlaveProcess() +I (183344) example: new speed:399.000000 +I (183354) modbus: check id... +I (183354) modbus: ok +I (183354) modbus: add: 0, length: 10 +I (183354) modbus: Read Holding Registers +I (183354) example: expect speed: 0.000000 real_pulses:0 +I (183364) example: new speed:399.000000 +I (183364) example: expect speed: 0.000000 real_pulses:0 +I (183364) example: new speed:399.000000 +I (183374) example: expect speed: 0.000000 real_pulses:0 +I (183374) example: new speed:399.000000 +I (183384) example: expect speed: 0.000000 real_pulses:0 +I (183384) example: new speed:399.000000 +I (183394) example: expect speed: 0.000000 real_pulses:0 +I (183394) example: new speed:399.000000 +I (183404) example: expect speed: 0.000000 real_pulses:0 +I (183404) example: new speed:399.000000 +I (183414) example: expect speed: 0.000000 real_pulses:0 +I (183424) example: new speed:399.000000 +I (183424) example: expect speed: 0.000000 real_pulses:0 +I (183424) example: new speed:399.000000 +I (183434) example: expect speed: 0.000000 real_pulses:0 +I (183434) example: new speed:399.000000 +I (183444) example: expect speed: 0.000000 real_pulses:0 +I (183444) example: new speed:399.000000 +I (183454) example: expect speed: 0.000000 real_pulses:0 +I (183454) example: new speed:399.000000 +I (183464) example: expect speed: 0.000000 real_pulses:0 +I (183474) example: new speed:399.000000 +I (183474) example: expect speed: 0.000000 real_pulses:0 +I (183474) example: new speed:399.000000 +I (183484) example: expect speed: 0.000000 real_pulses:0 +I (183484) example: new speed:399.000000 +I (183494) example: expect speed: 0.000000 real_pulses:0 +I (183494) example: new speed:399.000000 +I (183504) example: expect speed: 0.000000 real_pulses:0 +I (183504) example: new speed:399.000000 +I (183514) example: expect speed: 0.000000 real_pulses:0 +I (183514) example: new speed:399.000000 +I (183524) example: expect speed: 0.000000 real_pulses:0 +I (183524) example: new speed:399.000000 +I (183534) example: expect speed: 0.000000 real_pulses:0 +I (183534) example: new speed:399.000000 +I (183544) example: expect speed: 0.000000 real_pulses:0 +I (183544) example: new speed:399.000000 +I (183554) example: expect speed: 0.000000 real_pulses:0 +I (183554) example: new speed:399.000000 +I (183564) example: expect speed: 0.000000 real_pulses:0 +I (183564) example: new speed:399.000000 +I (183574) example: expect speed: 0.000000 real_pulses:0 +I (183574) example: new speed:399.000000 +I (183584) example: expect speed: 0.000000 real_pulses:0 +I (183584) example: new speed:399.000000 +I (183594) example: expect speed: 0.000000 real_pulses:0 +I (183594) example: new speed:399.000000 +I (183604) example: expect speed: 0.000000 real_pulses:0 +I (183604) example: new speed:399.000000 +I (183614) example: expect speed: 0.000000 real_pulses:0 +I (183614) example: new speed:399.000000 +I (183624) example: expect speed: 0.000000 real_pulses:0 +I (183624) example: new speed:399.000000 +I (183634) example: expect speed: 0.000000 real_pulses:0 +I (183634) example: new speed:399.000000 +I (183644) example: expect speed: 0.000000 real_pulses:0 +I (183644) example: new speed:399.000000 +I (183654) example: expect speed: 0.000000 real_pulses:0 +I (183654) example: new speed:399.000000 +I (183664) example: expect speed: 0.000000 real_pulses:0 +I (183664) example: new speed:399.000000 +I (183674) example: expect speed: 0.000000 real_pulses:0 +I (183674) example: new speed:399.000000 +I (183684) example: expect speed: 0.000000 real_pulses:0 +I (183684) example: new speed:399.000000 +I (183694) example: expect speed: 0.000000 real_pulses:0 +I (183694) example: new speed:399.000000 +I (183704) example: expect speed: 0.000000 real_pulses:0 +I (183704) example: new speed:399.000000 +I (183714) example: expect speed: 0.000000 real_pulses:0 +I (183714) example: new speed:399.000000 +I (183724) example: expect speed: 0.000000 real_pulses:0 +I (183724) example: new speed:399.000000 +I (183734) example: expect speed: 0.000000 real_pulses:0 +I (183734) example: new speed:399.000000 +I (183744) example: expect speed: 0.000000 real_pulses:0 +I (183744) example: new speed:399.000000 +I (183754) example: expect speed: 0.000000 real_pulses:0 +I (183754) example: new speed:399.000000 +I (183764) example: expect speed: 0.000000 real_pulses:0 +I (183764) example: new speed:399.000000 +I (183774) example: expect speed: 0.000000 real_pulses:0 +I (183774) example: new speed:399.000000 +I (183784) example: expect speed: 0.000000 real_pulses:0 +I (183784) example: new speed:399.000000 +I (183794) example: expect speed: 0.000000 real_pulses:0 +I (183794) example: new speed:399.000000 +I (183804) example: expect speed: 0.000000 real_pulses:0 +I (183804) example: new speed:399.000000 +I (183814) example: expect speed: 0.000000 real_pulses:0 +I (183814) example: new speed:399.000000 +I (183824) example: expect speed: 0.000000 real_pulses:0 +I (183824) example: new speed:399.000000 +I (183834) example: expect speed: 0.000000 real_pulses:0 +I (183834) example: new speed:399.000000 +I (183844) example: expect speed: 0.000000 real_pulses:0 +I (183844) example: new speed:399.000000 +I (183854) example: expect speed: 0.000000 real_pulses:0 +I (183864) example: new speed:399.000000 +I (183864) example: expect speed: 0.000000 real_pulses:0 +I (183864) example: new speed:399.000000 +I (183874) example: expect speed: 0.000000 real_pulses:0 +I (183874) example: new speed:399.000000 +I (183884) example: expect speed: 0.000000 real_pulses:0 +I (183884) example: new speed:399.000000 +I (183894) example: expect speed: 0.000000 real_pulses:0 +I (183894) example: new speed:399.000000 +I (183904) example: expect speed: 0.000000 real_pulses:0 +I (183904) example: new speed:399.000000 +I (183914) example: expect speed: 0.000000 real_pulses:0 +I (183914) example: new speed:399.000000 +I (183924) example: expect speed: 0.000000 real_pulses:0 +I (183924) example: new speed:399.000000 +I (183934) example: expect speed: 0.000000 real_pulses:0 +I (183934) example: new speed:399.000000 +I (183944) example: expect speed: 0.000000 real_pulses:0 +I (183944) example: new speed:399.000000 +I (183954) example: expect speed: 0.000000 real_pulses:0 +I (183954) example: new speed:399.000000 +I (183964) example: expect speed: 0.000000 real_pulses:0 +I (183964) example: new speed:399.000000 +I (183974) example: expect speed: 0.000000 real_pulses:0 +I (183974) example: new speed:399.000000 +I (183984) example: expect speed: 0.000000 real_pulses:0 +I (183984) example: new speed:399.000000 +I (183994) example: expect speed: 0.000000 real_pulses:0 +I (183994) example: new speed:399.000000 +I (184004) example: expect speed: 0.000000 real_pulses:0 +I (184004) example: new speed:399.000000 +I (184014) example: expect speed: 0.000000 real_pulses:0 +I (184014) example: new speed:399.000000 +I (184024) example: expect speed: 0.000000 real_pulses:0 +I (184024) example: new speed:399.000000 +I (184034) example: expect speed: 0.000000 real_pulses:0 +I (184034) example: new speed:399.000000 +I (184044) example: expect speed: 0.000000 real_pulses:0 +I (184044) example: new speed:399.000000 +I (184054) example: expect speed: 0.000000 real_pulses:0 +I (184054) example: new speed:399.000000 +I (184064) example: expect speed: 0.000000 real_pulses:0 +I (184064) example: new speed:399.000000 +I (184074) example: expect speed: 0.000000 real_pulses:0 +I (184074) example: new speed:399.000000 +I (184084) example: expect speed: 0.000000 real_pulses:0 +I (184084) example: new speed:399.000000 +I (184094) example: expect speed: 0.000000 real_pulses:0 +I (184094) example: new speed:399.000000 +I (184104) example: expect speed: 0.000000 real_pulses:0 +I (184104) example: new speed:399.000000 +I (184114) example: expect speed: 0.000000 real_pulses:0 +I (184114) example: new speed:399.000000 +I (184124) example: expect speed: 0.000000 real_pulses:0 +I (184124) example: new speed:399.000000 +I (184134) example: expect speed: 0.000000 real_pulses:0 +I (184134) example: new speed:399.000000 +I (184144) example: expect speed: 0.000000 real_pulses:0 +I (184144) example: new speed:399.000000 +I (184154) example: expect speed: 0.000000 real_pulses:0 +I (184154) example: new speed:399.000000 +I (184164) example: expect speed: 0.000000 real_pulses:0 +I (184164) example: new speed:399.000000 +I (184174) example: expect speed: 0.000000 real_pulses:0 +I (184174) example: new speed:399.000000 +I (184184) example: expect speed: 0.000000 real_pulses:0 +I (184184) example: new speed:399.000000 +I (184194) example: expect speed: 0.000000 real_pulses:0 +I (184194) example: new speed:399.000000 +I (184204) example: expect speed: 0.000000 real_pulses:0 +I (184204) example: new speed:399.000000 +I (184214) example: expect speed: 0.000000 real_pulses:0 +I (184214) example: new speed:399.000000 +I (184224) example: expect speed: 0.000000 real_pulses:0 +I (184224) example: new speed:399.000000 +I (184234) example: expect speed: 0.000000 real_pulses:0 +I (184234) example: new speed:399.000000 +I (184244) example: expect speed: 0.000000 real_pulses:0 +I (184244) example: new speed:399.000000 +I (184254) example: expect speed: 0.000000 real_pulses:0 +I (184254) example: new speed:399.000000 +I (184264) example: expect speed: 0.000000 real_pulses:0 +I (184264) example: new speed:399.000000 +I (184274) example: expect speed: 0.000000 real_pulses:0 +I (184274) example: new speed:399.000000 +I (184284) example: expect speed: 0.000000 real_pulses:0 +I (184284) example: new speed:399.000000 +I (184294) example: expect speed: 0.000000 real_pulses:0 +I (184294) example: new speed:399.000000 +I (184304) example: expect speed: 0.000000 real_pulses:0 +I (184304) example: new speed:399.000000 +I (184314) example: expect speed: 0.000000 real_pulses:0 +I (184314) example: new speed:399.000000 +I (184324) example: expect speed: 0.000000 real_pulses:0 +I (184324) example: new speed:399.000000 +I (184334) example: expect speed: 0.000000 real_pulses:0 +I (184334) example: new speed:399.000000 +I (184344) example: expect speed: 0.000000 real_pulses:0 +I (184344) example: new speed:399.000000 +I (184354) example: expect speed: 0.000000 real_pulses:0 +I (184354) example: new speed:399.000000 +I (184364) example: expect speed: 0.000000 real_pulses:0 +I (184374) example: new speed:399.000000 +I (184374) example: expect speed: 0.000000 real_pulses:0 +I (184384) example: new speed:399.000000 +I (184384) modbus tcp: ModBusSlave_recv() +I (184384) modbus: ModbusSlaveProcess() +I (184384) modbus: check id... +I (184384) modbus: ok +I (184384) modbus: add: 0, length: 10 +I (184384) modbus: Read Holding Registers +I (184384) example: expect speed: 0.000000 real_pulses:0 +I (184394) example: new speed:399.000000 +I (184394) example: expect speed: 0.000000 real_pulses:0 +I (184394) example: new speed:399.000000 +I (184404) example: expect speed: 0.000000 real_pulses:0 +I (184404) example: new speed:399.000000 +I (184414) example: expect speed: 0.000000 real_pulses:0 +I (184414) example: new speed:399.000000 +I (184424) example: expect speed: 0.000000 real_pulses:0 +I (184424) example: new speed:399.000000 +I (184434) example: expect speed: 0.000000 real_pulses:0 +I (184434) example: new speed:399.000000 +I (184444) example: expect speed: 0.000000 real_pulses:0 +I (184454) example: new speed:399.000000 +I (184454) example: expect speed: 0.000000 real_pulses:0 +I (184454) example: new speed:399.000000 +I (184464) example: expect speed: 0.000000 real_pulses:0 +I (184464) example: new speed:399.000000 +I (184474) example: expect speed: 0.000000 real_pulses:0 +I (184474) example: new speed:399.000000 +I (184484) example: expect speed: 0.000000 real_pulses:0 +I (184484) example: new speed:399.000000 +I (184494) example: expect speed: 0.000000 real_pulses:0 +I (184504) example: new speed:399.000000 +I (184504) example: expect speed: 0.000000 real_pulses:0 +I (184504) example: new speed:399.000000 +I (184514) example: expect speed: 0.000000 real_pulses:0 +I (184514) example: new speed:399.000000 +I (184524) example: expect speed: 0.000000 real_pulses:0 +I (184524) example: new speed:399.000000 +I (184534) example: expect speed: 0.000000 real_pulses:0 +I (184534) example: new speed:399.000000 +I (184544) example: expect speed: 0.000000 real_pulses:0 +I (184544) example: new speed:399.000000 +I (184554) example: expect speed: 0.000000 real_pulses:0 +I (184554) example: new speed:399.000000 +I (184564) example: expect speed: 0.000000 real_pulses:0 +I (184564) example: new speed:399.000000 +I (184574) example: expect speed: 0.000000 real_pulses:0 +I (184574) example: new speed:399.000000 +I (184584) example: expect speed: 0.000000 real_pulses:0 +I (184584) example: new speed:399.000000 +I (184594) example: expect speed: 0.000000 real_pulses:0 +I (184594) example: new speed:399.000000 +I (184604) example: expect speed: 0.000000 real_pulses:0 +I (184604) example: new speed:399.000000 +I (184614) example: expect speed: 0.000000 real_pulses:0 +I (184614) example: new speed:399.000000 +I (184624) example: expect speed: 0.000000 real_pulses:0 +I (184624) example: new speed:399.000000 +I (184634) example: expect speed: 0.000000 real_pulses:0 +I (184634) example: new speed:399.000000 +I (184644) example: expect speed: 0.000000 real_pulses:0 +I (184644) example: new speed:399.000000 +I (184654) example: expect speed: 0.000000 real_pulses:0 +I (184654) example: new speed:399.000000 +I (184664) example: expect speed: 0.000000 real_pulses:0 +I (184664) example: new speed:399.000000 +I (184674) example: expect speed: 0.000000 real_pulses:0 +I (184674) example: new speed:399.000000 +I (184684) example: expect speed: 0.000000 real_pulses:0 +I (184684) example: new speed:399.000000 +I (184694) example: expect speed: 0.000000 real_pulses:0 +I (184694) example: new speed:399.000000 +I (184704) example: expect speed: 0.000000 real_pulses:0 +I (184704) example: new speed:399.000000 +I (184714) example: expect speed: 0.000000 real_pulses:0 +I (184714) example: new speed:399.000000 +I (184724) example: expect speed: 0.000000 real_pulses:0 +I (184724) example: new speed:399.000000 +I (184734) example: expect speed: 0.000000 real_pulses:0 +I (184734) example: new speed:399.000000 +I (184744) example: expect speed: 0.000000 real_pulses:0 +I (184744) example: new speed:399.000000 +I (184754) example: expect speed: 0.000000 real_pulses:0 +I (184754) example: new speed:399.000000 +I (184764) example: expect speed: 0.000000 real_pulses:0 +I (184764) example: new speed:399.000000 +I (184774) example: expect speed: 0.000000 real_pulses:0 +I (184774) example: new speed:399.000000 +I (184784) example: expect speed: 0.000000 real_pulses:0 +I (184784) example: new speed:399.000000 +I (184794) example: expect speed: 0.000000 real_pulses:0 +I (184794) example: new speed:399.000000 +I (184804) example: expect speed: 0.000000 real_pulses:0 +I (184804) example: new speed:399.000000 +I (184814) example: expect speed: 0.000000 real_pulses:0 +I (184814) example: new speed:399.000000 +I (184824) example: expect speed: 0.000000 real_pulses:0 +I (184824) example: new speed:399.000000 +I (184834) example: expect speed: 0.000000 real_pulses:0 +I (184834) example: new speed:399.000000 +I (184844) example: expect speed: 0.000000 real_pulses:0 +I (184844) example: new speed:399.000000 +I (184854) example: expect speed: 0.000000 real_pulses:0 +I (184854) example: new speed:399.000000 +I (184864) example: expect speed: 0.000000 real_pulses:0 +I (184864) example: new speed:399.000000 +I (184874) example: expect speed: 0.000000 real_pulses:0 +I (184874) example: new speed:399.000000 +I (184884) example: expect speed: 0.000000 real_pulses:0 +I (184884) example: new speed:399.000000 +I (184894) example: expect speed: 0.000000 real_pulses:0 +I (184894) example: new speed:399.000000 +I (184904) example: expect speed: 0.000000 real_pulses:0 +I (184904) example: new speed:399.000000 +I (184914) example: expect speed: 0.000000 real_pulses:0 +I (184914) example: new speed:399.000000 +I (184924) example: expect speed: 0.000000 real_pulses:0 +I (184924) example: new speed:399.000000 +I (184934) example: expect speed: 0.000000 real_pulses:0 +I (184934) example: new speed:399.000000 +I (184944) example: expect speed: 0.000000 real_pulses:0 +I (184944) example: new speed:399.000000 +I (184954) example: expect speed: 0.000000 real_pulses:0 +I (184954) example: new speed:399.000000 +I (184964) example: expect speed: 0.000000 real_pulses:0 +I (184964) example: new speed:399.000000 +I (184974) example: expect speed: 0.000000 real_pulses:0 +I (184974) example: new speed:399.000000 +I (184984) example: expect speed: 0.000000 real_pulses:0 +I (184984) example: new speed:399.000000 +I (184994) example: expect speed: 0.000000 real_pulses:0 +I (184994) example: new speed:399.000000 +I (185004) example: expect speed: 0.000000 real_pulses:0 +I (185004) example: new speed:399.000000 +I (185014) example: expect speed: 0.000000 real_pulses:0 +I (185014) example: new speed:399.000000 +I (185024) example: expect speed: 0.000000 real_pulses:0 +I (185024) example: new speed:399.000000 +I (185034) example: expect speed: 0.000000 real_pulses:0 +I (185034) example: new speed:399.000000 +I (185044) example: expect speed: 0.000000 real_pulses:0 +I (185044) example: new speed:399.000000 +I (185054) example: expect speed: 0.000000 real_pulses:0 +I (185054) example: new speed:399.000000 +I (185064) example: expect speed: 0.000000 real_pulses:0 +I (185064) example: new speed:399.000000 +I (185074) example: expect speed: 0.000000 real_pulses:0 +I (185074) example: new speed:399.000000 +I (185084) example: expect speed: 0.000000 real_pulses:0 +I (185094) example: new speed:399.000000 +I (185094) example: expect speed: 0.000000 real_pulses:0 +I (185094) example: new speed:399.000000 +I (185104) example: expect speed: 0.000000 real_pulses:0 +I (185104) example: new speed:399.000000 +I (185114) example: expect speed: 0.000000 real_pulses:0 +I (185114) example: new speed:399.000000 +I (185124) example: expect speed: 0.000000 real_pulses:0 +I (185124) example: new speed:399.000000 +I (185134) example: expect speed: 0.000000 real_pulses:0 +I (185134) example: new speed:399.000000 +I (185144) example: expect speed: 0.000000 real_pulses:0 +I (185154) example: new speed:399.000000 +I (185154) example: expect speed: 0.000000 real_pulses:0 +I (185154) example: new speed:399.000000 +I (185164) example: expect speed: 0.000000 real_pulses:0 +I (185164) example: new speed:399.000000 +I (185174) example: expect speed: 0.000000 real_pulses:0 +I (185174) example: new speed:399.000000 +I (185184) example: expect speed: 0.000000 real_pulses:0 +I (185184) example: new speed:399.000000 +I (185194) example: expect speed: 0.000000 real_pulses:0 +I (185194) example: new speed:399.000000 +I (185204) example: expect speed: 0.000000 real_pulses:0 +I (185204) example: new speed:399.000000 +I (185214) example: expect speed: 0.000000 real_pulses:0 +I (185214) example: new speed:399.000000 +I (185224) example: expect speed: 0.000000 real_pulses:0 +I (185224) example: new speed:399.000000 +I (185234) example: expect speed: 0.000000 real_pulses:0 +I (185234) example: new speed:399.000000 +I (185244) example: expect speed: 0.000000 real_pulses:0 +I (185244) example: new speed:399.000000 +I (185254) example: expect speed: 0.000000 real_pulses:0 +I (185254) example: new speed:399.000000 +I (185264) example: expect speed: 0.000000 real_pulses:0 +I (185264) example: new speed:399.000000 +I (185274) example: expect speed: 0.000000 real_pulses:0 +I (185274) example: new speed:399.000000 +I (185284) example: expect speed: 0.000000 real_pulses:0 +I (185294) example: new speed:399.000000 +I (185294) example: expect speed: 0.000000 real_pulses:0 +I (185294) example: new speed:399.000000 +I (185304) example: expect speed: 0.000000 real_pulses:0 +I (185304) example: new speed:399.000000 +I (185314) example: expect speed: 0.000000 real_pulses:0 +I (185314) example: new speed:399.000000 +I (185324) example: expect speed: 0.000000 real_pulses:0 +I (185324) example: new speed:399.000000 +I (185334) example: expect speed: 0.000000 real_pulses:0 +I (185334) example: new speed:399.000000 +I (185344) example: expect speed: 0.000000 real_pulses:0 +I (185344) example: new speed:399.000000 +I (185354) example: expect speed: 0.000000 real_pulses:0 +I (185354) example: new speed:399.000000 +I (185364) example: expect speed: 0.000000 real_pulses:0 +I (185364) example: new speed:399.000000 +I (185374) example: expect speed: 0.000000 real_pulses:0 +I (185374) example: new speed:399.000000 +I (185384) example: expect speed: 0.000000 real_pulses:0 +I (185384) example: new speed:399.000000 +I (185394) modbus tcp: ModBusSlave_recv() +I (185394) modbus: ModbusSlaveProcess() +I (185394) example: expect speed: 0.000000 real_pulses:0 +I (185394) modbus: check id... +I (185394) example: new speed:399.000000 +I (185404) modbus: ok +I (185404) modbus: add: 0, length: 10 +I (185404) modbus: Read Holding Registers +I (185404) example: expect speed: 0.000000 real_pulses:0 +I (185414) example: new speed:399.000000 +I (185414) example: expect speed: 0.000000 real_pulses:0 +I (185414) example: new speed:399.000000 +I (185424) example: expect speed: 0.000000 real_pulses:0 +I (185424) example: new speed:399.000000 +I (185434) example: expect speed: 0.000000 real_pulses:0 +I (185434) example: new speed:399.000000 +I (185444) example: expect speed: 0.000000 real_pulses:0 +I (185444) example: new speed:399.000000 +I (185454) example: expect speed: 0.000000 real_pulses:0 +I (185464) example: new speed:399.000000 +I (185464) example: expect speed: 0.000000 real_pulses:0 +I (185464) example: new speed:399.000000 +I (185474) example: expect speed: 0.000000 real_pulses:0 +I (185474) example: new speed:399.000000 +I (185484) example: expect speed: 0.000000 real_pulses:0 +I (185484) example: new speed:399.000000 +I (185494) example: expect speed: 0.000000 real_pulses:0 +I (185494) example: new speed:399.000000 +I (185504) example: expect speed: 0.000000 real_pulses:0 +I (185514) example: new speed:399.000000 +I (185514) example: expect speed: 0.000000 real_pulses:0 +I (185514) example: new speed:399.000000 +I (185524) example: expect speed: 0.000000 real_pulses:0 +I (185524) example: new speed:399.000000 +I (185534) example: expect speed: 0.000000 real_pulses:0 +I (185534) example: new speed:399.000000 +I (185544) example: expect speed: 0.000000 real_pulses:0 +I (185544) example: new speed:399.000000 +I (185554) example: expect speed: 0.000000 real_pulses:0 +I (185554) example: new speed:399.000000 +I (185564) example: expect speed: 0.000000 real_pulses:0 +I (185564) example: new speed:399.000000 +I (185574) example: expect speed: 0.000000 real_pulses:0 +I (185574) example: new speed:399.000000 +I (185584) example: expect speed: 0.000000 real_pulses:0 +I (185584) example: new speed:399.000000 +I (185594) example: expect speed: 0.000000 real_pulses:0 +I (185594) example: new speed:399.000000 +I (185604) example: expect speed: 0.000000 real_pulses:0 +I (185604) example: new speed:399.000000 +I (185614) example: expect speed: 0.000000 real_pulses:0 +I (185614) example: new speed:399.000000 +I (185624) example: expect speed: 0.000000 real_pulses:0 +I (185624) example: new speed:399.000000 +I (185634) example: expect speed: 0.000000 real_pulses:0 +I (185634) example: new speed:399.000000 +I (185644) example: expect speed: 0.000000 real_pulses:0 +I (185644) example: new speed:399.000000 +I (185654) example: expect speed: 0.000000 real_pulses:0 +I (185654) example: new speed:399.000000 +I (185664) example: expect speed: 0.000000 real_pulses:0 +I (185664) example: new speed:399.000000 +I (185674) example: expect speed: 0.000000 real_pulses:0 +I (185674) example: new speed:399.000000 +I (185684) example: expect speed: 0.000000 real_pulses:0 +I (185684) example: new speed:399.000000 +I (185694) example: expect speed: 0.000000 real_pulses:0 +I (185694) example: new speed:399.000000 +I (185704) example: expect speed: 0.000000 real_pulses:0 +I (185704) example: new speed:399.000000 +I (185714) example: expect speed: 0.000000 real_pulses:0 +I (185714) example: new speed:399.000000 +I (185724) example: expect speed: 0.000000 real_pulses:0 +I (185724) example: new speed:399.000000 +I (185734) example: expect speed: 0.000000 real_pulses:0 +I (185734) example: new speed:399.000000 +I (185744) example: expect speed: 0.000000 real_pulses:0 +I (185744) example: new speed:399.000000 +I (185754) example: expect speed: 0.000000 real_pulses:0 +I (185754) example: new speed:399.000000 +I (185764) example: expect speed: 0.000000 real_pulses:0 +I (185764) example: new speed:399.000000 +I (185774) example: expect speed: 0.000000 real_pulses:0 +I (185774) example: new speed:399.000000 +I (185784) example: expect speed: 0.000000 real_pulses:0 +I (185784) example: new speed:399.000000 +I (185794) example: expect speed: 0.000000 real_pulses:0 +I (185794) example: new speed:399.000000 +I (185804) example: expect speed: 0.000000 real_pulses:0 +I (185804) example: new speed:399.000000 +I (185814) example: expect speed: 0.000000 real_pulses:0 +I (185814) example: new speed:399.000000 +I (185824) example: expect speed: 0.000000 real_pulses:0 +I (185824) example: new speed:399.000000 +I (185834) example: expect speed: 0.000000 real_pulses:0 +I (185834) example: new speed:399.000000 +I (185844) example: expect speed: 0.000000 real_pulses:0 +I (185844) example: new speed:399.000000 +I (185854) example: expect speed: 0.000000 real_pulses:0 +I (185854) example: new speed:399.000000 +I (185864) example: expect speed: 0.000000 real_pulses:0 +I (185864) example: new speed:399.000000 +I (185874) example: expect speed: 0.000000 real_pulses:0 +I (185874) example: new speed:399.000000 +I (185884) example: expect speed: 0.000000 real_pulses:0 +I (185884) example: new speed:399.000000 +I (185894) example: expect speed: 0.000000 real_pulses:0 +I (185894) example: new speed:399.000000 +I (185904) example: expect speed: 0.000000 real_pulses:0 +I (185904) example: new speed:399.000000 +I (185914) example: expect speed: 0.000000 real_pulses:0 +I (185914) example: new speed:399.000000 +I (185924) example: expect speed: 0.000000 real_pulses:0 +I (185924) example: new speed:399.000000 +I (185934) example: expect speed: 0.000000 real_pulses:0 +I (185934) example: new speed:399.000000 +I (185944) example: expect speed: 0.000000 real_pulses:0 +I (185944) example: new speed:399.000000 +I (185954) example: expect speed: 0.000000 real_pulses:0 +I (185954) example: new speed:399.000000 +I (185964) example: expect speed: 0.000000 real_pulses:0 +I (185964) example: new speed:399.000000 +I (185974) example: expect speed: 0.000000 real_pulses:0 +I (185974) example: new speed:399.000000 +I (185984) example: expect speed: 0.000000 real_pulses:0 +I (185984) example: new speed:399.000000 +I (185994) example: expect speed: 0.000000 real_pulses:0 +I (185994) example: new speed:399.000000 +I (186004) example: expect speed: 0.000000 real_pulses:0 +I (186004) example: new speed:399.000000 +I (186014) example: expect speed: 0.000000 real_pulses:0 +I (186014) example: new speed:399.000000 +I (186024) example: expect speed: 0.000000 real_pulses:0 +I (186024) example: new speed:399.000000 +I (186034) example: expect speed: 0.000000 real_pulses:0 +I (186034) example: new speed:399.000000 +I (186044) example: expect speed: 0.000000 real_pulses:0 +I (186044) example: new speed:399.000000 +I (186054) example: expect speed: 0.000000 real_pulses:0 +I (186054) example: new speed:399.000000 +I (186064) example: expect speed: 0.000000 real_pulses:0 +I (186064) example: new speed:399.000000 +I (186074) example: expect speed: 0.000000 real_pulses:0 +I (186074) example: new speed:399.000000 +I (186084) example: expect speed: 0.000000 real_pulses:0 +I (186084) example: new speed:399.000000 +I (186094) example: expect speed: 0.000000 real_pulses:0 +I (186094) example: new speed:399.000000 +I (186104) example: expect speed: 0.000000 real_pulses:0 +I (186104) example: new speed:399.000000 +I (186114) example: expect speed: 0.000000 real_pulses:0 +I (186114) example: new speed:399.000000 +I (186124) example: expect speed: 0.000000 real_pulses:0 +I (186124) example: new speed:399.000000 +I (186134) example: expect speed: 0.000000 real_pulses:0 +I (186134) example: new speed:399.000000 +I (186144) example: expect speed: 0.000000 real_pulses:0 +I (186144) example: new speed:399.000000 +I (186154) example: expect speed: 0.000000 real_pulses:0 +I (186154) example: new speed:399.000000 +I (186164) example: expect speed: 0.000000 real_pulses:0 +I (186164) example: new speed:399.000000 +I (186174) example: expect speed: 0.000000 real_pulses:0 +I (186174) example: new speed:399.000000 +I (186184) example: expect speed: 0.000000 real_pulses:0 +I (186184) example: new speed:399.000000 +I (186194) example: expect speed: 0.000000 real_pulses:0 +I (186194) example: new speed:399.000000 +I (186204) example: expect speed: 0.000000 real_pulses:0 +I (186204) example: new speed:399.000000 +I (186214) example: expect speed: 0.000000 real_pulses:0 +I (186214) example: new speed:399.000000 +I (186224) example: expect speed: 0.000000 real_pulses:0 +I (186224) example: new speed:399.000000 +I (186234) example: expect speed: 0.000000 real_pulses:0 +I (186234) example: new speed:399.000000 +I (186244) example: expect speed: 0.000000 real_pulses:0 +I (186244) example: new speed:399.000000 +I (186254) example: expect speed: 0.000000 real_pulses:0 +I (186254) example: new speed:399.000000 +I (186264) example: expect speed: 0.000000 real_pulses:0 +I (186264) example: new speed:399.000000 +I (186274) example: expect speed: 0.000000 real_pulses:0 +I (186274) example: new speed:399.000000 +I (186284) example: expect speed: 0.000000 real_pulses:0 +I (186284) example: new speed:399.000000 +I (186294) example: expect speed: 0.000000 real_pulses:0 +I (186294) example: new speed:399.000000 +I (186304) example: expect speed: 0.000000 real_pulses:0 +I (186304) example: new speed:399.000000 +I (186314) example: expect speed: 0.000000 real_pulses:0 +I (186324) example: new speed:399.000000 +I (186324) example: expect speed: 0.000000 real_pulses:0 +I (186324) example: new speed:399.000000 +I (186334) example: expect speed: 0.000000 real_pulses:0 +I (186334) example: new speed:399.000000 +I (186344) example: expect speed: 0.000000 real_pulses:0 +I (186344) example: new speed:399.000000 +I (186354) example: expect speed: 0.000000 real_pulses:0 +I (186354) example: new speed:399.000000 +I (186364) example: expect speed: 0.000000 real_pulses:0 +I (186364) example: new speed:399.000000 +I (186374) example: expect speed: 0.000000 real_pulses:0 +I (186374) example: new speed:399.000000 +I (186384) example: expect speed: 0.000000 real_pulses:0 +I (186384) example: new speed:399.000000 +I (186394) example: expect speed: 0.000000 real_pulses:0 +I (186394) example: new speed:399.000000 +I (186404) example: expect speed: 0.000000 real_pulses:0 +I (186404) example: new speed:399.000000 +I (186414) example: expect speed: 0.000000 real_pulses:0 +I (186424) example: new speed:399.000000 +I (186424) modbus tcp: ModBusSlave_recv() +I (186424) modbus: ModbusSlaveProcess() +I (186424) modbus: check id... +I (186424) modbus: ok +I (186424) modbus: add: 0, length: 10 +I (186424) modbus: Read Holding Registers +I (186424) example: expect speed: 0.000000 real_pulses:0 +I (186434) example: new speed:399.000000 +I (186434) example: expect speed: 0.000000 real_pulses:0 +I (186434) example: new speed:399.000000 +I (186444) example: expect speed: 0.000000 real_pulses:0 +I (186444) example: new speed:399.000000 +I (186454) example: expect speed: 0.000000 real_pulses:0 +I (186454) example: new speed:399.000000 +I (186464) example: expect speed: 0.000000 real_pulses:0 +I (186464) example: new speed:399.000000 +I (186474) example: expect speed: 0.000000 real_pulses:0 +I (186484) example: new speed:399.000000 +I (186484) example: expect speed: 0.000000 real_pulses:0 +I (186484) example: new speed:399.000000 +I (186494) example: expect speed: 0.000000 real_pulses:0 +I (186494) example: new speed:399.000000 +I (186504) example: expect speed: 0.000000 real_pulses:0 +I (186504) example: new speed:399.000000 +I (186514) example: expect speed: 0.000000 real_pulses:0 +I (186524) example: new speed:399.000000 +I (186524) example: expect speed: 0.000000 real_pulses:0 +I (186534) example: new speed:399.000000 +I (186534) example: expect speed: 0.000000 real_pulses:0 +I (186534) example: new speed:399.000000 +I (186544) example: expect speed: 0.000000 real_pulses:0 +I (186544) example: new speed:399.000000 +I (186554) example: expect speed: 0.000000 real_pulses:0 +I (186554) example: new speed:399.000000 +I (186564) example: expect speed: 0.000000 real_pulses:0 +I (186564) example: new speed:399.000000 +I (186574) example: expect speed: 0.000000 real_pulses:0 +I (186584) example: new speed:399.000000 +I (186584) example: expect speed: 0.000000 real_pulses:0 +I (186584) example: new speed:399.000000 +I (186594) example: expect speed: 0.000000 real_pulses:0 +I (186594) example: new speed:399.000000 +I (186604) example: expect speed: 0.000000 real_pulses:0 +I (186604) example: new speed:399.000000 +I (186614) example: expect speed: 0.000000 real_pulses:0 +I (186614) example: new speed:399.000000 +I (186624) example: expect speed: 0.000000 real_pulses:0 +I (186624) example: new speed:399.000000 +I (186634) example: expect speed: 0.000000 real_pulses:0 +I (186634) example: new speed:399.000000 +I (186644) example: expect speed: 0.000000 real_pulses:0 +I (186644) example: new speed:399.000000 +I (186654) example: expect speed: 0.000000 real_pulses:0 +I (186654) example: new speed:399.000000 +I (186664) example: expect speed: 0.000000 real_pulses:0 +I (186664) example: new speed:399.000000 +I (186674) example: expect speed: 0.000000 real_pulses:0 +I (186674) example: new speed:399.000000 +I (186684) example: expect speed: 0.000000 real_pulses:0 +I (186684) example: new speed:399.000000 +I (186694) example: expect speed: 0.000000 real_pulses:0 +I (186694) example: new speed:399.000000 +I (186704) example: expect speed: 0.000000 real_pulses:0 +I (186704) example: new speed:399.000000 +I (186714) example: expect speed: 0.000000 real_pulses:0 +I (186714) example: new speed:399.000000 +I (186724) example: expect speed: 0.000000 real_pulses:0 +I (186724) example: new speed:399.000000 +I (186734) example: expect speed: 0.000000 real_pulses:0 +I (186734) example: new speed:399.000000 +I (186744) example: expect speed: 0.000000 real_pulses:0 +I (186744) example: new speed:399.000000 +I (186754) example: expect speed: 0.000000 real_pulses:0 +I (186754) example: new speed:399.000000 +I (186764) example: expect speed: 0.000000 real_pulses:0 +I (186764) example: new speed:399.000000 +I (186774) example: expect speed: 0.000000 real_pulses:0 +I (186774) example: new speed:399.000000 +I (186784) example: expect speed: 0.000000 real_pulses:0 +I (186784) example: new speed:399.000000 +I (186794) example: expect speed: 0.000000 real_pulses:0 +I (186794) example: new speed:399.000000 +I (186804) example: expect speed: 0.000000 real_pulses:0 +I (186804) example: new speed:399.000000 +I (186814) example: expect speed: 0.000000 real_pulses:0 +I (186814) example: new speed:399.000000 +I (186824) example: expect speed: 0.000000 real_pulses:0 +I (186824) example: new speed:399.000000 +I (186834) example: expect speed: 0.000000 real_pulses:0 +I (186834) example: new speed:399.000000 +I (186844) example: expect speed: 0.000000 real_pulses:0 +I (186844) example: new speed:399.000000 +I (186854) example: expect speed: 0.000000 real_pulses:0 +I (186854) example: new speed:399.000000 +I (186864) example: expect speed: 0.000000 real_pulses:0 +I (186864) example: new speed:399.000000 +I (186874) example: expect speed: 0.000000 real_pulses:0 +I (186874) example: new speed:399.000000 +I (186884) example: expect speed: 0.000000 real_pulses:0 +I (186884) example: new speed:399.000000 +I (186894) example: expect speed: 0.000000 real_pulses:0 +I (186894) example: new speed:399.000000 +I (186904) example: expect speed: 0.000000 real_pulses:0 +I (186904) example: new speed:399.000000 +I (186914) example: expect speed: 0.000000 real_pulses:0 +I (186914) example: new speed:399.000000 +I (186924) example: expect speed: 0.000000 real_pulses:0 +I (186924) example: new speed:399.000000 +I (186934) example: expect speed: 0.000000 real_pulses:0 +I (186934) example: new speed:399.000000 +I (186944) example: expect speed: 0.000000 real_pulses:0 +I (186944) example: new speed:399.000000 +I (186954) example: expect speed: 0.000000 real_pulses:0 +I (186954) example: new speed:399.000000 +I (186964) example: expect speed: 0.000000 real_pulses:0 +I (186964) example: new speed:399.000000 +I (186974) example: expect speed: 0.000000 real_pulses:0 +I (186974) example: new speed:399.000000 +I (186984) example: expect speed: 0.000000 real_pulses:0 +I (186984) example: new speed:399.000000 +I (186994) example: expect speed: 0.000000 real_pulses:0 +I (186994) example: new speed:399.000000 +I (187004) example: expect speed: 0.000000 real_pulses:0 +I (187004) example: new speed:399.000000 +I (187014) example: expect speed: 0.000000 real_pulses:0 +I (187014) example: new speed:399.000000 +I (187024) example: expect speed: 0.000000 real_pulses:0 +I (187024) example: new speed:399.000000 +I (187034) example: expect speed: 0.000000 real_pulses:0 +I (187034) example: new speed:399.000000 +I (187044) example: expect speed: 0.000000 real_pulses:0 +I (187044) example: new speed:399.000000 +I (187054) example: expect speed: 0.000000 real_pulses:0 +I (187054) example: new speed:399.000000 +I (187064) example: expect speed: 0.000000 real_pulses:0 +I (187064) example: new speed:399.000000 +I (187074) example: expect speed: 0.000000 real_pulses:0 +I (187074) example: new speed:399.000000 +I (187084) example: expect speed: 0.000000 real_pulses:0 +I (187084) example: new speed:399.000000 +I (187094) example: expect speed: 0.000000 real_pulses:0 +I (187094) example: new speed:399.000000 +I (187104) example: expect speed: 0.000000 real_pulses:0 +I (187104) example: new speed:399.000000 +I (187114) example: expect speed: 0.000000 real_pulses:0 +I (187114) example: new speed:399.000000 +I (187124) example: expect speed: 0.000000 real_pulses:0 +I (187124) example: new speed:399.000000 +I (187134) example: expect speed: 0.000000 real_pulses:0 +I (187134) example: new speed:399.000000 +I (187144) example: expect speed: 0.000000 real_pulses:0 +I (187144) example: new speed:399.000000 +I (187154) example: expect speed: 0.000000 real_pulses:0 +I (187154) example: new speed:399.000000 +I (187164) example: expect speed: 0.000000 real_pulses:0 +I (187164) example: new speed:399.000000 +I (187174) example: expect speed: 0.000000 real_pulses:0 +I (187174) example: new speed:399.000000 +I (187184) example: expect speed: 0.000000 real_pulses:0 +I (187184) example: new speed:399.000000 +I (187194) example: expect speed: 0.000000 real_pulses:0 +I (187194) example: new speed:399.000000 +I (187204) example: expect speed: 0.000000 real_pulses:0 +I (187204) example: new speed:399.000000 +I (187214) example: expect speed: 0.000000 real_pulses:0 +I (187214) example: new speed:399.000000 +I (187224) example: expect speed: 0.000000 real_pulses:0 +I (187224) example: new speed:399.000000 +I (187234) example: expect speed: 0.000000 real_pulses:0 +I (187234) example: new speed:399.000000 +I (187244) example: expect speed: 0.000000 real_pulses:0 +I (187244) example: new speed:399.000000 +I (187254) example: expect speed: 0.000000 real_pulses:0 +I (187254) example: new speed:399.000000 +I (187264) example: expect speed: 0.000000 real_pulses:0 +I (187264) example: new speed:399.000000 +I (187274) example: expect speed: 0.000000 real_pulses:0 +I (187274) example: new speed:399.000000 +I (187284) example: expect speed: 0.000000 real_pulses:0 +I (187284) example: new speed:399.000000 +I (187294) example: expect speed: 0.000000 real_pulses:0 +I (187294) example: new speed:399.000000 +I (187304) example: expect speed: 0.000000 real_pulses:0 +I (187304) example: new speed:399.000000 +I (187314) example: expect speed: 0.000000 real_pulses:0 +I (187314) example: new speed:399.000000 +I (187324) example: expect speed: 0.000000 real_pulses:0 +I (187324) example: new speed:399.000000 +I (187334) example: expect speed: 0.000000 real_pulses:0 +I (187334) example: new speed:399.000000 +I (187344) example: expect speed: 0.000000 real_pulses:0 +I (187344) example: new speed:399.000000 +I (187354) example: expect speed: 0.000000 real_pulses:0 +I (187354) example: new speed:399.000000 +I (187364) example: expect speed: 0.000000 real_pulses:0 +I (187364) example: new speed:399.000000 +I (187374) example: expect speed: 0.000000 real_pulses:0 +I (187374) example: new speed:399.000000 +I (187384) example: expect speed: 0.000000 real_pulses:0 +I (187384) example: new speed:399.000000 +I (187394) example: expect speed: 0.000000 real_pulses:0 +I (187394) example: new speed:399.000000 +I (187404) example: expect speed: 0.000000 real_pulses:0 +I (187404) example: new speed:399.000000 +I (187414) example: expect speed: 0.000000 real_pulses:0 +I (187414) example: new speed:399.000000 +I (187424) example: expect speed: 0.000000 real_pulses:0 +I (187424) example: new speed:399.000000 +I (187434) example: expect speed: 0.000000 real_pulses:0 +I (187444) example: new speed:399.000000 +I (187444) modbus tcp: ModBusSlave_recv() +I (187444) modbus: ModbusSlaveProcess() +I (187444) modbus: check id... +I (187444) modbus: ok +I (187444) modbus: add: 0, length: 10 +I (187444) modbus: Read Holding Registers +I (187444) example: expect speed: 0.000000 real_pulses:0 +I (187454) example: new speed:399.000000 +I (187454) example: expect speed: 0.000000 real_pulses:0 +I (187454) example: new speed:399.000000 +I (187464) example: expect speed: 0.000000 real_pulses:0 +I (187464) example: new speed:399.000000 +I (187474) example: expect speed: 0.000000 real_pulses:0 +I (187474) example: new speed:399.000000 +I (187484) example: expect speed: 0.000000 real_pulses:0 +I (187484) example: new speed:399.000000 +I (187494) example: expect speed: 0.000000 real_pulses:0 +I (187494) example: new speed:399.000000 +I (187504) example: expect speed: 0.000000 real_pulses:0 +I (187514) example: new speed:399.000000 +I (187514) example: expect speed: 0.000000 real_pulses:0 +I (187514) example: new speed:399.000000 +I (187524) example: expect speed: 0.000000 real_pulses:0 +I (187524) example: new speed:399.000000 +I (187534) example: expect speed: 0.000000 real_pulses:0 +I (187534) example: new speed:399.000000 +I (187544) example: expect speed: 0.000000 real_pulses:0 +I (187544) example: new speed:399.000000 +I (187554) example: expect speed: 0.000000 real_pulses:0 +I (187554) example: new speed:399.000000 +I (187564) example: expect speed: 0.000000 real_pulses:0 +I (187564) example: new speed:399.000000 +I (187574) example: expect speed: 0.000000 real_pulses:0 +I (187574) example: new speed:399.000000 +I (187584) example: expect speed: 0.000000 real_pulses:0 +I (187584) example: new speed:399.000000 +I (187594) example: expect speed: 0.000000 real_pulses:0 +I (187594) example: new speed:399.000000 +I (187604) example: expect speed: 0.000000 real_pulses:0 +I (187604) example: new speed:399.000000 +I (187614) example: expect speed: 0.000000 real_pulses:0 +I (187614) example: new speed:399.000000 +I (187624) example: expect speed: 0.000000 real_pulses:0 +I (187624) example: new speed:399.000000 +I (187634) example: expect speed: 0.000000 real_pulses:0 +I (187634) example: new speed:399.000000 +I (187644) example: expect speed: 0.000000 real_pulses:0 +I (187644) example: new speed:399.000000 +I (187654) example: expect speed: 0.000000 real_pulses:0 +I (187654) example: new speed:399.000000 +I (187664) example: expect speed: 0.000000 real_pulses:0 +I (187664) example: new speed:399.000000 +I (187674) example: expect speed: 0.000000 real_pulses:0 +I (187674) example: new speed:399.000000 +I (187684) example: expect speed: 0.000000 real_pulses:0 +I (187684) example: new speed:399.000000 +I (187694) example: expect speed: 0.000000 real_pulses:0 +I (187694) example: new speed:399.000000 +I (187704) example: expect speed: 0.000000 real_pulses:0 +I (187704) example: new speed:399.000000 +I (187714) example: expect speed: 0.000000 real_pulses:0 +I (187714) example: new speed:399.000000 +I (187724) example: expect speed: 0.000000 real_pulses:0 +I (187724) example: new speed:399.000000 +I (187734) example: expect speed: 0.000000 real_pulses:0 +I (187734) example: new speed:399.000000 +I (187744) example: expect speed: 0.000000 real_pulses:0 +I (187744) example: new speed:399.000000 +I (187754) example: expect speed: 0.000000 real_pulses:0 +I (187754) example: new speed:399.000000 +I (187764) example: expect speed: 0.000000 real_pulses:0 +I (187764) example: new speed:399.000000 +I (187774) example: expect speed: 0.000000 real_pulses:0 +I (187774) example: new speed:399.000000 +I (187784) example: expect speed: 0.000000 real_pulses:0 +I (187784) example: new speed:399.000000 +I (187794) example: expect speed: 0.000000 real_pulses:0 +I (187794) example: new speed:399.000000 +I (187804) example: expect speed: 0.000000 real_pulses:0 +I (187804) example: new speed:399.000000 +I (187814) example: expect speed: 0.000000 real_pulses:0 +I (187814) example: new speed:399.000000 +I (187824) example: expect speed: 0.000000 real_pulses:0 +I (187824) example: new speed:399.000000 +I (187834) example: expect speed: 0.000000 real_pulses:0 +I (187834) example: new speed:399.000000 +I (187844) example: expect speed: 0.000000 real_pulses:0 +I (187844) example: new speed:399.000000 +I (187854) example: expect speed: 0.000000 real_pulses:0 +I (187854) example: new speed:399.000000 +I (187864) example: expect speed: 0.000000 real_pulses:0 +I (187864) example: new speed:399.000000 +I (187874) example: expect speed: 0.000000 real_pulses:0 +I (187874) example: new speed:399.000000 +I (187884) example: expect speed: 0.000000 real_pulses:0 +I (187884) example: new speed:399.000000 +I (187894) example: expect speed: 0.000000 real_pulses:0 +I (187894) example: new speed:399.000000 +I (187904) example: expect speed: 0.000000 real_pulses:0 +I (187904) example: new speed:399.000000 +I (187914) example: expect speed: 0.000000 real_pulses:0 +I (187914) example: new speed:399.000000 +I (187924) example: expect speed: 0.000000 real_pulses:0 +I (187924) example: new speed:399.000000 +I (187934) example: expect speed: 0.000000 real_pulses:0 +I (187934) example: new speed:399.000000 +I (187944) example: expect speed: 0.000000 real_pulses:0 +I (187944) example: new speed:399.000000 +I (187954) example: expect speed: 0.000000 real_pulses:0 +I (187954) example: new speed:399.000000 +I (187964) example: expect speed: 0.000000 real_pulses:0 +I (187964) example: new speed:399.000000 +I (187974) example: expect speed: 0.000000 real_pulses:0 +I (187974) example: new speed:399.000000 +I (187984) example: expect speed: 0.000000 real_pulses:0 +I (187984) example: new speed:399.000000 +I (187994) example: expect speed: 0.000000 real_pulses:0 +I (187994) example: new speed:399.000000 +I (188004) example: expect speed: 0.000000 real_pulses:0 +I (188004) example: new speed:399.000000 +I (188014) example: expect speed: 0.000000 real_pulses:0 +I (188014) example: new speed:399.000000 +I (188024) example: expect speed: 0.000000 real_pulses:0 +I (188024) example: new speed:399.000000 +I (188034) example: expect speed: 0.000000 real_pulses:0 +I (188034) example: new speed:399.000000 +I (188044) example: expect speed: 0.000000 real_pulses:0 +I (188044) example: new speed:399.000000 +I (188054) example: expect speed: 0.000000 real_pulses:0 +I (188054) example: new speed:399.000000 +I (188064) example: expect speed: 0.000000 real_pulses:0 +I (188064) example: new speed:399.000000 +I (188074) example: expect speed: 0.000000 real_pulses:0 +I (188074) example: new speed:399.000000 +I (188084) example: expect speed: 0.000000 real_pulses:0 +I (188084) example: new speed:399.000000 +I (188094) example: expect speed: 0.000000 real_pulses:0 +I (188094) example: new speed:399.000000 +I (188104) example: expect speed: 0.000000 real_pulses:0 +I (188104) example: new speed:399.000000 +I (188114) example: expect speed: 0.000000 real_pulses:0 +I (188114) example: new speed:399.000000 +I (188124) example: expect speed: 0.000000 real_pulses:0 +I (188124) example: new speed:399.000000 +I (188134) example: expect speed: 0.000000 real_pulses:0 +I (188134) example: new speed:399.000000 +I (188144) example: expect speed: 0.000000 real_pulses:0 +I (188144) example: new speed:399.000000 +I (188154) example: expect speed: 0.000000 real_pulses:0 +I (188154) example: new speed:399.000000 +I (188164) example: expect speed: 0.000000 real_pulses:0 +I (188164) example: new speed:399.000000 +I (188174) example: expect speed: 0.000000 real_pulses:0 +I (188174) example: new speed:399.000000 +I (188184) example: expect speed: 0.000000 real_pulses:0 +I (188184) example: new speed:399.000000 +I (188194) example: expect speed: 0.000000 real_pulses:0 +I (188194) example: new speed:399.000000 +I (188204) example: expect speed: 0.000000 real_pulses:0 +I (188204) example: new speed:399.000000 +I (188214) example: expect speed: 0.000000 real_pulses:0 +I (188214) example: new speed:399.000000 +I (188224) example: expect speed: 0.000000 real_pulses:0 +I (188224) example: new speed:399.000000 +I (188234) example: expect speed: 0.000000 real_pulses:0 +I (188234) example: new speed:399.000000 +I (188244) example: expect speed: 0.000000 real_pulses:0 +I (188244) example: new speed:399.000000 +I (188254) example: expect speed: 0.000000 real_pulses:0 +I (188264) example: new speed:399.000000 +I (188264) example: expect speed: 0.000000 real_pulses:0 +I (188264) example: new speed:399.000000 +I (188274) example: expect speed: 0.000000 real_pulses:0 +I (188274) example: new speed:399.000000 +I (188284) example: expect speed: 0.000000 real_pulses:0 +I (188284) example: new speed:399.000000 +I (188294) example: expect speed: 0.000000 real_pulses:0 +I (188294) example: new speed:399.000000 +I (188304) example: expect speed: 0.000000 real_pulses:0 +I (188304) example: new speed:399.000000 +I (188314) example: expect speed: 0.000000 real_pulses:0 +I (188314) example: new speed:399.000000 +I (188324) example: expect speed: 0.000000 real_pulses:0 +I (188324) example: new speed:399.000000 +I (188334) example: expect speed: 0.000000 real_pulses:0 +I (188334) example: new speed:399.000000 +I (188344) example: expect speed: 0.000000 real_pulses:0 +I (188344) example: new speed:399.000000 +I (188354) example: expect speed: 0.000000 real_pulses:0 +I (188354) example: new speed:399.000000 +I (188364) example: expect speed: 0.000000 real_pulses:0 +I (188364) example: new speed:399.000000 +I (188374) example: expect speed: 0.000000 real_pulses:0 +I (188374) example: new speed:399.000000 +I (188384) example: expect speed: 0.000000 real_pulses:0 +I (188384) example: new speed:399.000000 +I (188394) example: expect speed: 0.000000 real_pulses:0 +I (188394) example: new speed:399.000000 +I (188404) example: expect speed: 0.000000 real_pulses:0 +I (188404) example: new speed:399.000000 +I (188414) example: expect speed: 0.000000 real_pulses:0 +I (188414) example: new speed:399.000000 +I (188424) example: expect speed: 0.000000 real_pulses:0 +I (188424) example: new speed:399.000000 +I (188434) example: expect speed: 0.000000 real_pulses:0 +I (188434) example: new speed:399.000000 +I (188444) example: expect speed: 0.000000 real_pulses:0 +I (188444) example: new speed:399.000000 +I (188454) example: expect speed: 0.000000 real_pulses:0 +I (188454) example: new speed:399.000000 +I (188464) modbus tcp: ModBusSlave_recv() +I (188464) example: expect speed: 0.000000 real_pulses:0 +I (188464) modbus: ModbusSlaveProcess() +I (188474) example: new speed:399.000000 +I (188474) modbus: check id... +I (188474) modbus: ok +I (188474) modbus: add: 0, length: 10 +I (188474) modbus: Read Holding Registers +I (188474) example: expect speed: 0.000000 real_pulses:0 +I (188484) example: new speed:399.000000 +I (188484) example: expect speed: 0.000000 real_pulses:0 +I (188484) example: new speed:399.000000 +I (188494) example: expect speed: 0.000000 real_pulses:0 +I (188494) example: new speed:399.000000 +I (188504) example: expect speed: 0.000000 real_pulses:0 +I (188504) example: new speed:399.000000 +I (188514) example: expect speed: 0.000000 real_pulses:0 +I (188514) example: new speed:399.000000 +I (188524) example: expect speed: 0.000000 real_pulses:0 +I (188524) example: new speed:399.000000 +I (188534) example: expect speed: 0.000000 real_pulses:0 +I (188534) example: new speed:399.000000 +I (188544) example: expect speed: 0.000000 real_pulses:0 +I (188544) example: new speed:399.000000 +I (188554) example: expect speed: 0.000000 real_pulses:0 +I (188554) example: new speed:399.000000 +I (188564) example: expect speed: 0.000000 real_pulses:0 +I (188574) example: new speed:399.000000 +I (188574) example: expect speed: 0.000000 real_pulses:0 +I (188584) example: new speed:399.000000 +I (188584) example: expect speed: 0.000000 real_pulses:0 +I (188584) example: new speed:399.000000 +I (188594) example: expect speed: 0.000000 real_pulses:0 +I (188594) example: new speed:399.000000 +I (188604) example: expect speed: 0.000000 real_pulses:0 +I (188604) example: new speed:399.000000 +I (188614) example: expect speed: 0.000000 real_pulses:0 +I (188614) example: new speed:399.000000 +I (188624) example: expect speed: 0.000000 real_pulses:0 +I (188634) example: new speed:399.000000 +I (188634) example: expect speed: 0.000000 real_pulses:0 +I (188634) example: new speed:399.000000 +I (188644) example: expect speed: 0.000000 real_pulses:0 +I (188644) example: new speed:399.000000 +I (188654) example: expect speed: 0.000000 real_pulses:0 +I (188654) example: new speed:399.000000 +I (188664) example: expect speed: 0.000000 real_pulses:0 +I (188664) example: new speed:399.000000 +I (188674) example: expect speed: 0.000000 real_pulses:0 +I (188674) example: new speed:399.000000 +I (188684) example: expect speed: 0.000000 real_pulses:0 +I (188684) example: new speed:399.000000 +I (188694) example: expect speed: 0.000000 real_pulses:0 +I (188694) example: new speed:399.000000 +I (188704) example: expect speed: 0.000000 real_pulses:0 +I (188704) example: new speed:399.000000 +I (188714) example: expect speed: 0.000000 real_pulses:0 +I (188714) example: new speed:399.000000 +I (188724) example: expect speed: 0.000000 real_pulses:0 +I (188724) example: new speed:399.000000 +I (188734) example: expect speed: 0.000000 real_pulses:0 +I (188734) example: new speed:399.000000 +I (188744) example: expect speed: 0.000000 real_pulses:0 +I (188744) example: new speed:399.000000 +I (188754) example: expect speed: 0.000000 real_pulses:0 +I (188754) example: new speed:399.000000 +I (188764) example: expect speed: 0.000000 real_pulses:0 +I (188764) example: new speed:399.000000 +I (188774) example: expect speed: 0.000000 real_pulses:0 +I (188774) example: new speed:399.000000 +I (188784) example: expect speed: 0.000000 real_pulses:0 +I (188784) example: new speed:399.000000 +I (188794) example: expect speed: 0.000000 real_pulses:0 +I (188794) example: new speed:399.000000 +I (188804) example: expect speed: 0.000000 real_pulses:0 +I (188804) example: new speed:399.000000 +I (188814) example: expect speed: 0.000000 real_pulses:0 +I (188814) example: new speed:399.000000 +I (188824) example: expect speed: 0.000000 real_pulses:0 +I (188824) example: new speed:399.000000 +I (188834) example: expect speed: 0.000000 real_pulses:0 +I (188834) example: new speed:399.000000 +I (188844) example: expect speed: 0.000000 real_pulses:0 +I (188844) example: new speed:399.000000 +I (188854) example: expect speed: 0.000000 real_pulses:0 +I (188854) example: new speed:399.000000 +I (188864) example: expect speed: 0.000000 real_pulses:0 +I (188864) example: new speed:399.000000 +I (188874) example: expect speed: 0.000000 real_pulses:0 +I (188874) example: new speed:399.000000 +I (188884) example: expect speed: 0.000000 real_pulses:0 +I (188884) example: new speed:399.000000 +I (188894) example: expect speed: 0.000000 real_pulses:0 +I (188894) example: new speed:399.000000 +I (188904) example: expect speed: 0.000000 real_pulses:0 +I (188904) example: new speed:399.000000 +I (188914) example: expect speed: 0.000000 real_pulses:0 +I (188914) example: new speed:399.000000 +I (188924) example: expect speed: 0.000000 real_pulses:0 +I (188924) example: new speed:399.000000 +I (188934) example: expect speed: 0.000000 real_pulses:0 +I (188934) example: new speed:399.000000 +I (188944) example: expect speed: 0.000000 real_pulses:0 +I (188944) example: new speed:399.000000 +I (188954) example: expect speed: 0.000000 real_pulses:0 +I (188954) example: new speed:399.000000 +I (188964) example: expect speed: 0.000000 real_pulses:0 +I (188964) example: new speed:399.000000 +I (188974) example: expect speed: 0.000000 real_pulses:0 +I (188974) example: new speed:399.000000 +I (188984) example: expect speed: 0.000000 real_pulses:0 +I (188984) example: new speed:399.000000 +I (188994) example: expect speed: 0.000000 real_pulses:0 +I (188994) example: new speed:399.000000 +I (189004) example: expect speed: 0.000000 real_pulses:0 +I (189004) example: new speed:399.000000 +I (189014) example: expect speed: 0.000000 real_pulses:0 +I (189014) example: new speed:399.000000 +I (189024) example: expect speed: 0.000000 real_pulses:0 +I (189024) example: new speed:399.000000 +I (189034) example: expect speed: 0.000000 real_pulses:0 +I (189034) example: new speed:399.000000 +I (189044) example: expect speed: 0.000000 real_pulses:0 +I (189044) example: new speed:399.000000 +I (189054) example: expect speed: 0.000000 real_pulses:0 +I (189054) example: new speed:399.000000 +I (189064) example: expect speed: 0.000000 real_pulses:0 +I (189064) example: new speed:399.000000 +I (189074) example: expect speed: 0.000000 real_pulses:0 +I (189074) example: new speed:399.000000 +I (189084) example: expect speed: 0.000000 real_pulses:0 +I (189084) example: new speed:399.000000 +I (189094) example: expect speed: 0.000000 real_pulses:0 +I (189094) example: new speed:399.000000 +I (189104) example: expect speed: 0.000000 real_pulses:0 +I (189104) example: new speed:399.000000 +I (189114) example: expect speed: 0.000000 real_pulses:0 +I (189114) example: new speed:399.000000 +I (189124) example: expect speed: 0.000000 real_pulses:0 +I (189124) example: new speed:399.000000 +I (189134) example: expect speed: 0.000000 real_pulses:0 +I (189134) example: new speed:399.000000 +I (189144) example: expect speed: 0.000000 real_pulses:0 +I (189144) example: new speed:399.000000 +I (189154) example: expect speed: 0.000000 real_pulses:0 +I (189154) example: new speed:399.000000 +I (189164) example: expect speed: 0.000000 real_pulses:0 +I (189164) example: new speed:399.000000 +I (189174) example: expect speed: 0.000000 real_pulses:0 +I (189174) example: new speed:399.000000 +I (189184) example: expect speed: 0.000000 real_pulses:0 +I (189184) example: new speed:399.000000 +I (189194) example: expect speed: 0.000000 real_pulses:0 +I (189194) example: new speed:399.000000 +I (189204) example: expect speed: 0.000000 real_pulses:0 +I (189204) example: new speed:399.000000 +I (189214) example: expect speed: 0.000000 real_pulses:0 +I (189214) example: new speed:399.000000 +I (189224) example: expect speed: 0.000000 real_pulses:0 +I (189224) example: new speed:399.000000 +I (189234) example: expect speed: 0.000000 real_pulses:0 +I (189234) example: new speed:399.000000 +I (189244) example: expect speed: 0.000000 real_pulses:0 +I (189244) example: new speed:399.000000 +I (189254) example: expect speed: 0.000000 real_pulses:0 +I (189254) example: new speed:399.000000 +I (189264) example: expect speed: 0.000000 real_pulses:0 +I (189264) example: new speed:399.000000 +I (189274) example: expect speed: 0.000000 real_pulses:0 +I (189274) example: new speed:399.000000 +I (189284) example: expect speed: 0.000000 real_pulses:0 +I (189284) example: new speed:399.000000 +I (189294) example: expect speed: 0.000000 real_pulses:0 +I (189294) example: new speed:399.000000 +I (189304) example: expect speed: 0.000000 real_pulses:0 +I (189304) example: new speed:399.000000 +I (189314) example: expect speed: 0.000000 real_pulses:0 +I (189314) example: new speed:399.000000 +I (189324) example: expect speed: 0.000000 real_pulses:0 +I (189324) example: new speed:399.000000 +I (189334) example: expect speed: 0.000000 real_pulses:0 +I (189334) example: new speed:399.000000 +I (189344) example: expect speed: 0.000000 real_pulses:0 +I (189344) example: new speed:399.000000 +I (189354) example: expect speed: 0.000000 real_pulses:0 +I (189354) example: new speed:399.000000 +I (189364) example: expect speed: 0.000000 real_pulses:0 +I (189364) example: new speed:399.000000 +I (189374) example: expect speed: 0.000000 real_pulses:0 +I (189374) example: new speed:399.000000 +I (189384) example: expect speed: 0.000000 real_pulses:0 +I (189384) example: new speed:399.000000 +I (189394) example: expect speed: 0.000000 real_pulses:0 +I (189394) example: new speed:399.000000 +I (189404) example: expect speed: 0.000000 real_pulses:0 +I (189404) example: new speed:399.000000 +I (189414) example: expect speed: 0.000000 real_pulses:0 +I (189414) example: new speed:399.000000 +I (189424) example: expect speed: 0.000000 real_pulses:0 +I (189424) example: new speed:399.000000 +I (189434) example: expect speed: 0.000000 real_pulses:0 +I (189434) example: new speed:399.000000 +I (189444) example: expect speed: 0.000000 real_pulses:0 +I (189444) example: new speed:399.000000 +I (189454) example: expect speed: 0.000000 real_pulses:0 +I (189454) example: new speed:399.000000 +I (189464) example: expect speed: 0.000000 real_pulses:0 +I (189464) example: new speed:399.000000 +I (189474) example: expect speed: 0.000000 real_pulses:0 +I (189474) example: new speed:399.000000 +I (189484) example: expect speed: 0.000000 real_pulses:0 +I (189494) example: new speed:399.000000 +I (189494) modbus tcp: ModBusSlave_recv() +I (189494) modbus: ModbusSlaveProcess() +I (189494) modbus: check id... +I (189494) modbus: ok +I (189494) modbus: add: 0, length: 10 +I (189494) modbus: Read Holding Registers +I (189494) example: expect speed: 0.000000 real_pulses:0 +I (189504) example: new speed:399.000000 +I (189504) example: expect speed: 0.000000 real_pulses:0 +I (189504) example: new speed:399.000000 +I (189514) example: expect speed: 0.000000 real_pulses:0 +I (189514) example: new speed:399.000000 +I (189524) example: expect speed: 0.000000 real_pulses:0 +I (189524) example: new speed:399.000000 +I (189534) example: expect speed: 0.000000 real_pulses:0 +I (189534) example: new speed:399.000000 +I (189544) example: expect speed: 0.000000 real_pulses:0 +I (189544) example: new speed:399.000000 +I (189554) example: expect speed: 0.000000 real_pulses:0 +I (189554) example: new speed:399.000000 +I (189564) example: expect speed: 0.000000 real_pulses:0 +I (189574) example: new speed:399.000000 +I (189574) example: expect speed: 0.000000 real_pulses:0 +I (189584) example: new speed:399.000000 +I (189584) example: expect speed: 0.000000 real_pulses:0 +I (189584) example: new speed:399.000000 +I (189594) example: expect speed: 0.000000 real_pulses:0 +I (189604) example: new speed:399.000000 +I (189604) example: expect speed: 0.000000 real_pulses:0 +I (189604) example: new speed:399.000000 +I (189614) example: expect speed: 0.000000 real_pulses:0 +I (189614) example: new speed:399.000000 +I (189624) example: expect speed: 0.000000 real_pulses:0 +I (189624) example: new speed:399.000000 +I (189634) example: expect speed: 0.000000 real_pulses:0 +I (189634) example: new speed:399.000000 +I (189644) example: expect speed: 0.000000 real_pulses:0 +I (189654) example: new speed:399.000000 +I (189654) example: expect speed: 0.000000 real_pulses:0 +I (189654) example: new speed:399.000000 +I (189664) example: expect speed: 0.000000 real_pulses:0 +I (189664) example: new speed:399.000000 +I (189674) example: expect speed: 0.000000 real_pulses:0 +I (189674) example: new speed:399.000000 +I (189684) example: expect speed: 0.000000 real_pulses:0 +I (189684) example: new speed:399.000000 +I (189694) example: expect speed: 0.000000 real_pulses:0 +I (189694) example: new speed:399.000000 +I (189704) example: expect speed: 0.000000 real_pulses:0 +I (189704) example: new speed:399.000000 +I (189714) example: expect speed: 0.000000 real_pulses:0 +I (189714) example: new speed:399.000000 +I (189724) example: expect speed: 0.000000 real_pulses:0 +I (189724) example: new speed:399.000000 +I (189734) example: expect speed: 0.000000 real_pulses:0 +I (189734) example: new speed:399.000000 +I (189744) example: expect speed: 0.000000 real_pulses:0 +I (189744) example: new speed:399.000000 +I (189754) example: expect speed: 0.000000 real_pulses:0 +I (189754) example: new speed:399.000000 +I (189764) example: expect speed: 0.000000 real_pulses:0 +I (189764) example: new speed:399.000000 +I (189774) example: expect speed: 0.000000 real_pulses:0 +I (189774) example: new speed:399.000000 +I (189784) example: expect speed: 0.000000 real_pulses:0 +I (189784) example: new speed:399.000000 +I (189794) example: expect speed: 0.000000 real_pulses:0 +I (189794) example: new speed:399.000000 +I (189804) example: expect speed: 0.000000 real_pulses:0 +I (189804) example: new speed:399.000000 +I (189814) example: expect speed: 0.000000 real_pulses:0 +I (189814) example: new speed:399.000000 +I (189824) example: expect speed: 0.000000 real_pulses:0 +I (189824) example: new speed:399.000000 +I (189834) example: expect speed: 0.000000 real_pulses:0 +I (189834) example: new speed:399.000000 +I (189844) example: expect speed: 0.000000 real_pulses:0 +I (189844) example: new speed:399.000000 +I (189854) example: expect speed: 0.000000 real_pulses:0 +I (189854) example: new speed:399.000000 +I (189864) example: expect speed: 0.000000 real_pulses:0 +I (189864) example: new speed:399.000000 +I (189874) example: expect speed: 0.000000 real_pulses:0 +I (189874) example: new speed:399.000000 +I (189884) example: expect speed: 0.000000 real_pulses:0 +I (189884) example: new speed:399.000000 +I (189894) example: expect speed: 0.000000 real_pulses:0 +I (189894) example: new speed:399.000000 +I (189904) example: expect speed: 0.000000 real_pulses:0 +I (189904) example: new speed:399.000000 +I (189914) example: expect speed: 0.000000 real_pulses:0 +I (189914) example: new speed:399.000000 +I (189924) example: expect speed: 0.000000 real_pulses:0 +I (189924) example: new speed:399.000000 +I (189934) example: expect speed: 0.000000 real_pulses:0 +I (189934) example: new speed:399.000000 +I (189944) example: expect speed: 0.000000 real_pulses:0 +I (189944) example: new speed:399.000000 +I (189954) example: expect speed: 0.000000 real_pulses:0 +I (189954) example: new speed:399.000000 +I (189964) example: expect speed: 0.000000 real_pulses:0 +I (189964) example: new speed:399.000000 +I (189974) example: expect speed: 0.000000 real_pulses:0 +I (189974) example: new speed:399.000000 +I (189984) example: expect speed: 0.000000 real_pulses:0 +I (189984) example: new speed:399.000000 +I (189994) example: expect speed: 0.000000 real_pulses:0 +I (189994) example: new speed:399.000000 +I (190004) example: expect speed: 0.000000 real_pulses:0 +I (190004) example: new speed:399.000000 +I (190014) example: expect speed: 0.000000 real_pulses:0 +I (190014) example: new speed:399.000000 +I (190024) example: expect speed: 0.000000 real_pulses:0 +I (190024) example: new speed:399.000000 +I (190034) example: expect speed: 0.000000 real_pulses:0 +I (190034) example: new speed:399.000000 +I (190044) example: expect speed: 0.000000 real_pulses:0 +I (190044) example: new speed:399.000000 +I (190054) example: expect speed: 0.000000 real_pulses:0 +I (190054) example: new speed:399.000000 +I (190064) example: expect speed: 0.000000 real_pulses:0 +I (190064) example: new speed:399.000000 +I (190074) example: expect speed: 0.000000 real_pulses:0 +I (190074) example: new speed:399.000000 +I (190084) example: expect speed: 0.000000 real_pulses:0 +I (190084) example: new speed:399.000000 +I (190094) example: expect speed: 0.000000 real_pulses:0 +I (190094) example: new speed:399.000000 +I (190104) example: expect speed: 0.000000 real_pulses:0 +I (190104) example: new speed:399.000000 +I (190114) example: expect speed: 0.000000 real_pulses:0 +I (190114) example: new speed:399.000000 +I (190124) example: expect speed: 0.000000 real_pulses:0 +I (190124) example: new speed:399.000000 +I (190134) example: expect speed: 0.000000 real_pulses:0 +I (190134) example: new speed:399.000000 +I (190144) example: expect speed: 0.000000 real_pulses:0 +I (190144) example: new speed:399.000000 +I (190154) example: expect speed: 0.000000 real_pulses:0 +I (190154) example: new speed:399.000000 +I (190164) example: expect speed: 0.000000 real_pulses:0 +I (190164) example: new speed:399.000000 +I (190174) example: expect speed: 0.000000 real_pulses:0 +I (190174) example: new speed:399.000000 +I (190184) example: expect speed: 0.000000 real_pulses:0 +I (190184) example: new speed:399.000000 +I (190194) example: expect speed: 0.000000 real_pulses:0 +I (190194) example: new speed:399.000000 +I (190204) example: expect speed: 0.000000 real_pulses:0 +I (190204) example: new speed:399.000000 +I (190214) example: expect speed: 0.000000 real_pulses:0 +I (190214) example: new speed:399.000000 +I (190224) example: expect speed: 0.000000 real_pulses:0 +I (190224) example: new speed:399.000000 +I (190234) example: expect speed: 0.000000 real_pulses:0 +I (190234) example: new speed:399.000000 +I (190244) example: expect speed: 0.000000 real_pulses:0 +I (190244) example: new speed:399.000000 +I (190254) example: expect speed: 0.000000 real_pulses:0 +I (190254) example: new speed:399.000000 +I (190264) example: expect speed: 0.000000 real_pulses:0 +I (190264) example: new speed:399.000000 +I (190274) example: expect speed: 0.000000 real_pulses:0 +I (190274) example: new speed:399.000000 +I (190284) example: expect speed: 0.000000 real_pulses:0 +I (190284) example: new speed:399.000000 +I (190294) example: expect speed: 0.000000 real_pulses:0 +I (190294) example: new speed:399.000000 +I (190304) example: expect speed: 0.000000 real_pulses:0 +I (190314) example: new speed:399.000000 +I (190314) example: expect speed: 0.000000 real_pulses:0 +I (190314) example: new speed:399.000000 +I (190324) example: expect speed: 0.000000 real_pulses:0 +I (190324) example: new speed:399.000000 +I (190334) example: expect speed: 0.000000 real_pulses:0 +I (190334) example: new speed:399.000000 +I (190344) example: expect speed: 0.000000 real_pulses:0 +I (190344) example: new speed:399.000000 +I (190354) example: expect speed: 0.000000 real_pulses:0 +I (190354) example: new speed:399.000000 +I (190364) example: expect speed: 0.000000 real_pulses:0 +I (190364) example: new speed:399.000000 +I (190374) example: expect speed: 0.000000 real_pulses:0 +I (190374) example: new speed:399.000000 +I (190384) example: expect speed: 0.000000 real_pulses:0 +I (190384) example: new speed:399.000000 +I (190394) example: expect speed: 0.000000 real_pulses:0 +I (190394) example: new speed:399.000000 +I (190404) example: expect speed: 0.000000 real_pulses:0 +I (190404) example: new speed:399.000000 +I (190414) example: expect speed: 0.000000 real_pulses:0 +I (190414) example: new speed:399.000000 +I (190424) example: expect speed: 0.000000 real_pulses:0 +I (190424) example: new speed:399.000000 +I (190434) example: expect speed: 0.000000 real_pulses:0 +I (190434) example: new speed:399.000000 +I (190444) example: expect speed: 0.000000 real_pulses:0 +I (190444) example: new speed:399.000000 +I (190454) example: expect speed: 0.000000 real_pulses:0 +I (190454) example: new speed:399.000000 +I (190464) example: expect speed: 0.000000 real_pulses:0 +I (190464) example: new speed:399.000000 +I (190474) example: expect speed: 0.000000 real_pulses:0 +I (190474) example: new speed:399.000000 +I (190484) example: expect speed: 0.000000 real_pulses:0 +I (190484) example: new speed:399.000000 +I (190494) example: expect speed: 0.000000 real_pulses:0 +I (190494) example: new speed:399.000000 +I (190504) example: expect speed: 0.000000 real_pulses:0 +I (190504) example: new speed:399.000000 +I (190514) example: expect speed: 0.000000 real_pulses:0 +I (190524) modbus tcp: ModBusSlave_recv() +I (190524) example: new speed:399.000000 +I (190524) modbus: ModbusSlaveProcess() +I (190524) modbus: check id... +I (190524) modbus: ok +I (190524) modbus: add: 0, length: 10 +I (190524) modbus: Read Holding Registers +I (190524) example: expect speed: 0.000000 real_pulses:0 +I (190534) example: new speed:399.000000 +I (190534) example: expect speed: 0.000000 real_pulses:0 +I (190534) example: new speed:399.000000 +I (190544) example: expect speed: 0.000000 real_pulses:0 +I (190544) example: new speed:399.000000 +I (190554) example: expect speed: 0.000000 real_pulses:0 +I (190554) example: new speed:399.000000 +I (190564) example: expect speed: 0.000000 real_pulses:0 +I (190564) example: new speed:399.000000 +I (190574) example: expect speed: 0.000000 real_pulses:0 +I (190584) example: new speed:399.000000 +I (190584) example: expect speed: 0.000000 real_pulses:0 +I (190584) example: new speed:399.000000 +I (190594) example: expect speed: 0.000000 real_pulses:0 +I (190594) example: new speed:399.000000 +I (190604) example: expect speed: 0.000000 real_pulses:0 +I (190604) example: new speed:399.000000 +I (190614) example: expect speed: 0.000000 real_pulses:0 +I (190614) example: new speed:399.000000 +I (190624) example: expect speed: 0.000000 real_pulses:0 +I (190634) example: new speed:399.000000 +I (190634) example: expect speed: 0.000000 real_pulses:0 +I (190634) example: new speed:399.000000 +I (190644) example: expect speed: 0.000000 real_pulses:0 +I (190644) example: new speed:399.000000 +I (190654) example: expect speed: 0.000000 real_pulses:0 +I (190654) example: new speed:399.000000 +I (190664) example: expect speed: 0.000000 real_pulses:0 +I (190664) example: new speed:399.000000 +I (190674) example: expect speed: 0.000000 real_pulses:0 +I (190674) example: new speed:399.000000 +I (190684) example: expect speed: 0.000000 real_pulses:0 +I (190684) example: new speed:399.000000 +I (190694) example: expect speed: 0.000000 real_pulses:0 +I (190694) example: new speed:399.000000 +I (190704) example: expect speed: 0.000000 real_pulses:0 +I (190704) example: new speed:399.000000 +I (190714) example: expect speed: 0.000000 real_pulses:0 +I (190714) example: new speed:399.000000 +I (190724) example: expect speed: 0.000000 real_pulses:0 +I (190724) example: new speed:399.000000 +I (190734) example: expect speed: 0.000000 real_pulses:0 +I (190734) example: new speed:399.000000 +I (190744) example: expect speed: 0.000000 real_pulses:0 +I (190744) example: new speed:399.000000 +I (190754) example: expect speed: 0.000000 real_pulses:0 +I (190754) example: new speed:399.000000 +I (190764) example: expect speed: 0.000000 real_pulses:0 +I (190764) example: new speed:399.000000 +I (190774) example: expect speed: 0.000000 real_pulses:0 +I (190774) example: new speed:399.000000 +I (190784) example: expect speed: 0.000000 real_pulses:0 +I (190784) example: new speed:399.000000 +I (190794) example: expect speed: 0.000000 real_pulses:0 +I (190794) example: new speed:399.000000 +I (190804) example: expect speed: 0.000000 real_pulses:0 +I (190804) example: new speed:399.000000 +I (190814) example: expect speed: 0.000000 real_pulses:0 +I (190814) example: new speed:399.000000 +I (190824) example: expect speed: 0.000000 real_pulses:0 +I (190824) example: new speed:399.000000 +I (190834) example: expect speed: 0.000000 real_pulses:0 +I (190834) example: new speed:399.000000 +I (190844) example: expect speed: 0.000000 real_pulses:0 +I (190844) example: new speed:399.000000 +I (190854) example: expect speed: 0.000000 real_pulses:0 +I (190854) example: new speed:399.000000 +I (190864) example: expect speed: 0.000000 real_pulses:0 +I (190864) example: new speed:399.000000 +I (190874) example: expect speed: 0.000000 real_pulses:0 +I (190874) example: new speed:399.000000 +I (190884) example: expect speed: 0.000000 real_pulses:0 +I (190884) example: new speed:399.000000 +I (190894) example: expect speed: 0.000000 real_pulses:0 +I (190894) example: new speed:399.000000 +I (190904) example: expect speed: 0.000000 real_pulses:0 +I (190904) example: new speed:399.000000 +I (190914) example: expect speed: 0.000000 real_pulses:0 +I (190914) example: new speed:399.000000 +I (190924) example: expect speed: 0.000000 real_pulses:0 +I (190924) example: new speed:399.000000 +I (190934) example: expect speed: 0.000000 real_pulses:0 +I (190934) example: new speed:399.000000 +I (190944) example: expect speed: 0.000000 real_pulses:0 +I (190944) example: new speed:399.000000 +I (190954) example: expect speed: 0.000000 real_pulses:0 +I (190954) example: new speed:399.000000 +I (190964) example: expect speed: 0.000000 real_pulses:0 +I (190964) example: new speed:399.000000 +I (190974) example: expect speed: 0.000000 real_pulses:0 +I (190974) example: new speed:399.000000 +I (190984) example: expect speed: 0.000000 real_pulses:0 +I (190984) example: new speed:399.000000 +I (190994) example: expect speed: 0.000000 real_pulses:0 +I (190994) example: new speed:399.000000 +I (191004) example: expect speed: 0.000000 real_pulses:0 +I (191004) example: new speed:399.000000 +I (191014) example: expect speed: 0.000000 real_pulses:0 +I (191014) example: new speed:399.000000 +I (191024) example: expect speed: 0.000000 real_pulses:0 +I (191024) example: new speed:399.000000 +I (191034) example: expect speed: 0.000000 real_pulses:0 +I (191034) example: new speed:399.000000 +I (191044) example: expect speed: 0.000000 real_pulses:0 +I (191044) example: new speed:399.000000 +I (191054) example: expect speed: 0.000000 real_pulses:0 +I (191054) example: new speed:399.000000 +I (191064) example: expect speed: 0.000000 real_pulses:0 +I (191064) example: new speed:399.000000 +I (191074) example: expect speed: 0.000000 real_pulses:0 +I (191074) example: new speed:399.000000 +I (191084) example: expect speed: 0.000000 real_pulses:0 +I (191084) example: new speed:399.000000 +I (191094) example: expect speed: 0.000000 real_pulses:0 +I (191094) example: new speed:399.000000 +I (191104) example: expect speed: 0.000000 real_pulses:0 +I (191104) example: new speed:399.000000 +I (191114) example: expect speed: 0.000000 real_pulses:0 +I (191114) example: new speed:399.000000 +I (191124) example: expect speed: 0.000000 real_pulses:0 +I (191124) example: new speed:399.000000 +I (191134) example: expect speed: 0.000000 real_pulses:0 +I (191134) example: new speed:399.000000 +I (191144) example: expect speed: 0.000000 real_pulses:0 +I (191144) example: new speed:399.000000 +I (191154) example: expect speed: 0.000000 real_pulses:0 +I (191154) example: new speed:399.000000 +I (191164) example: expect speed: 0.000000 real_pulses:0 +I (191164) example: new speed:399.000000 +I (191174) example: expect speed: 0.000000 real_pulses:0 +I (191174) example: new speed:399.000000 +I (191184) example: expect speed: 0.000000 real_pulses:0 +I (191184) example: new speed:399.000000 +I (191194) example: expect speed: 0.000000 real_pulses:0 +I (191194) example: new speed:399.000000 +I (191204) example: expect speed: 0.000000 real_pulses:0 +I (191204) example: new speed:399.000000 +I (191214) example: expect speed: 0.000000 real_pulses:0 +I (191214) example: new speed:399.000000 +I (191224) example: expect speed: 0.000000 real_pulses:0 +I (191224) example: new speed:399.000000 +I (191234) example: expect speed: 0.000000 real_pulses:0 +I (191234) example: new speed:399.000000 +I (191244) example: expect speed: 0.000000 real_pulses:0 +I (191244) example: new speed:399.000000 +I (191254) example: expect speed: 0.000000 real_pulses:0 +I (191254) example: new speed:399.000000 +I (191264) example: expect speed: 0.000000 real_pulses:0 +I (191264) example: new speed:399.000000 +I (191274) example: expect speed: 0.000000 real_pulses:0 +I (191274) example: new speed:399.000000 +I (191284) example: expect speed: 0.000000 real_pulses:0 +I (191284) example: new speed:399.000000 +I (191294) example: expect speed: 0.000000 real_pulses:0 +I (191294) example: new speed:399.000000 +I (191304) example: expect speed: 0.000000 real_pulses:0 +I (191304) example: new speed:399.000000 +I (191314) example: expect speed: 0.000000 real_pulses:0 +I (191314) example: new speed:399.000000 +I (191324) example: expect speed: 0.000000 real_pulses:0 +I (191324) example: new speed:399.000000 +I (191334) example: expect speed: 0.000000 real_pulses:0 +I (191344) example: new speed:399.000000 +I (191344) example: expect speed: 0.000000 real_pulses:0 +I (191344) example: new speed:399.000000 +I (191354) example: expect speed: 0.000000 real_pulses:0 +I (191354) example: new speed:399.000000 +I (191364) example: expect speed: 0.000000 real_pulses:0 +I (191364) example: new speed:399.000000 +I (191374) example: expect speed: 0.000000 real_pulses:0 +I (191374) example: new speed:399.000000 +I (191384) example: expect speed: 0.000000 real_pulses:0 +I (191384) example: new speed:399.000000 +I (191394) example: expect speed: 0.000000 real_pulses:0 +I (191394) example: new speed:399.000000 +I (191404) example: expect speed: 0.000000 real_pulses:0 +I (191404) example: new speed:399.000000 +I (191414) example: expect speed: 0.000000 real_pulses:0 +I (191414) example: new speed:399.000000 +I (191424) example: expect speed: 0.000000 real_pulses:0 +I (191424) example: new speed:399.000000 +I (191434) example: expect speed: 0.000000 real_pulses:0 +I (191434) example: new speed:399.000000 +I (191444) example: expect speed: 0.000000 real_pulses:0 +I (191444) example: new speed:399.000000 +I (191454) example: expect speed: 0.000000 real_pulses:0 +I (191454) example: new speed:399.000000 +I (191464) example: expect speed: 0.000000 real_pulses:0 +I (191464) example: new speed:399.000000 +I (191474) example: expect speed: 0.000000 real_pulses:0 +I (191474) example: new speed:399.000000 +I (191484) example: expect speed: 0.000000 real_pulses:0 +I (191484) example: new speed:399.000000 +I (191494) example: expect speed: 0.000000 real_pulses:0 +I (191494) example: new speed:399.000000 +I (191504) example: expect speed: 0.000000 real_pulses:0 +I (191504) example: new speed:399.000000 +I (191514) example: expect speed: 0.000000 real_pulses:0 +I (191514) example: new speed:399.000000 +I (191524) example: expect speed: 0.000000 real_pulses:0 +I (191524) example: new speed:399.000000 +I (191534) example: expect speed: 0.000000 real_pulses:0 +I (191544) example: new speed:399.000000 +I (191544) modbus tcp: ModBusSlave_recv() +I (191544) modbus: ModbusSlaveProcess() +I (191544) modbus: check id... +I (191544) modbus: ok +I (191544) modbus: add: 0, length: 10 +I (191544) modbus: Read Holding Registers +I (191544) example: expect speed: 0.000000 real_pulses:0 +I (191554) example: new speed:399.000000 +I (191554) example: expect speed: 0.000000 real_pulses:0 +I (191554) example: new speed:399.000000 +I (191564) example: expect speed: 0.000000 real_pulses:0 +I (191564) example: new speed:399.000000 +I (191574) example: expect speed: 0.000000 real_pulses:0 +I (191574) example: new speed:399.000000 +I (191584) example: expect speed: 0.000000 real_pulses:0 +I (191584) example: new speed:399.000000 +I (191594) example: expect speed: 0.000000 real_pulses:0 +I (191594) example: new speed:399.000000 +I (191604) example: expect speed: 0.000000 real_pulses:0 +I (191604) example: new speed:399.000000 +I (191614) example: expect speed: 0.000000 real_pulses:0 +I (191614) example: new speed:399.000000 +I (191624) example: expect speed: 0.000000 real_pulses:0 +I (191624) example: new speed:399.000000 +I (191634) example: expect speed: 0.000000 real_pulses:0 +I (191644) example: new speed:399.000000 +I (191644) example: expect speed: 0.000000 real_pulses:0 +I (191654) example: new speed:399.000000 +I (191654) example: expect speed: 0.000000 real_pulses:0 +I (191654) example: new speed:399.000000 +I (191664) example: expect speed: 0.000000 real_pulses:0 +I (191664) example: new speed:399.000000 +I (191674) example: expect speed: 0.000000 real_pulses:0 +I (191674) example: new speed:399.000000 +I (191684) example: expect speed: 0.000000 real_pulses:0 +I (191684) example: new speed:399.000000 +I (191694) example: expect speed: 0.000000 real_pulses:0 +I (191704) example: new speed:399.000000 +I (191704) example: expect speed: 0.000000 real_pulses:0 +I (191704) example: new speed:399.000000 +I (191714) example: expect speed: 0.000000 real_pulses:0 +I (191714) example: new speed:399.000000 +I (191724) example: expect speed: 0.000000 real_pulses:0 +I (191724) example: new speed:399.000000 +I (191734) example: expect speed: 0.000000 real_pulses:0 +I (191734) example: new speed:399.000000 +I (191744) example: expect speed: 0.000000 real_pulses:0 +I (191744) example: new speed:399.000000 +I (191754) example: expect speed: 0.000000 real_pulses:0 +I (191754) example: new speed:399.000000 +I (191764) example: expect speed: 0.000000 real_pulses:0 +I (191764) example: new speed:399.000000 +I (191774) example: expect speed: 0.000000 real_pulses:0 +I (191774) example: new speed:399.000000 +I (191784) example: expect speed: 0.000000 real_pulses:0 +I (191784) example: new speed:399.000000 +I (191794) example: expect speed: 0.000000 real_pulses:0 +I (191794) example: new speed:399.000000 +I (191804) example: expect speed: 0.000000 real_pulses:0 +I (191804) example: new speed:399.000000 +I (191814) example: expect speed: 0.000000 real_pulses:0 +I (191814) example: new speed:399.000000 +I (191824) example: expect speed: 0.000000 real_pulses:0 +I (191824) example: new speed:399.000000 +I (191834) example: expect speed: 0.000000 real_pulses:0 +I (191834) example: new speed:399.000000 +I (191844) example: expect speed: 0.000000 real_pulses:0 +I (191844) example: new speed:399.000000 +I (191854) example: expect speed: 0.000000 real_pulses:0 +I (191854) example: new speed:399.000000 +I (191864) example: expect speed: 0.000000 real_pulses:0 +I (191864) example: new speed:399.000000 +I (191874) example: expect speed: 0.000000 real_pulses:0 +I (191874) example: new speed:399.000000 +I (191884) example: expect speed: 0.000000 real_pulses:0 +I (191884) example: new speed:399.000000 +I (191894) example: expect speed: 0.000000 real_pulses:0 +I (191894) example: new speed:399.000000 +I (191904) example: expect speed: 0.000000 real_pulses:0 +I (191904) example: new speed:399.000000 +I (191914) example: expect speed: 0.000000 real_pulses:0 +I (191914) example: new speed:399.000000 +I (191924) example: expect speed: 0.000000 real_pulses:0 +I (191924) example: new speed:399.000000 +I (191934) example: expect speed: 0.000000 real_pulses:0 +I (191934) example: new speed:399.000000 +I (191944) example: expect speed: 0.000000 real_pulses:0 +I (191944) example: new speed:399.000000 +I (191954) example: expect speed: 0.000000 real_pulses:0 +I (191954) example: new speed:399.000000 +I (191964) example: expect speed: 0.000000 real_pulses:0 +I (191964) example: new speed:399.000000 +I (191974) example: expect speed: 0.000000 real_pulses:0 +I (191974) example: new speed:399.000000 +I (191984) example: expect speed: 0.000000 real_pulses:0 +I (191984) example: new speed:399.000000 +I (191994) example: expect speed: 0.000000 real_pulses:0 +I (191994) example: new speed:399.000000 +I (192004) example: expect speed: 0.000000 real_pulses:0 +I (192004) example: new speed:399.000000 +I (192014) example: expect speed: 0.000000 real_pulses:0 +I (192014) example: new speed:399.000000 +I (192024) example: expect speed: 0.000000 real_pulses:0 +I (192024) example: new speed:399.000000 +I (192034) example: expect speed: 0.000000 real_pulses:0 +I (192034) example: new speed:399.000000 +I (192044) example: expect speed: 0.000000 real_pulses:0 +I (192044) example: new speed:399.000000 +I (192054) example: expect speed: 0.000000 real_pulses:0 +I (192054) example: new speed:399.000000 +I (192064) example: expect speed: 0.000000 real_pulses:0 +I (192064) example: new speed:399.000000 +I (192074) example: expect speed: 0.000000 real_pulses:0 +I (192074) example: new speed:399.000000 +I (192084) example: expect speed: 0.000000 real_pulses:0 +I (192084) example: new speed:399.000000 +I (192094) example: expect speed: 0.000000 real_pulses:0 +I (192094) example: new speed:399.000000 +I (192104) example: expect speed: 0.000000 real_pulses:0 +I (192104) example: new speed:399.000000 +I (192114) example: expect speed: 0.000000 real_pulses:0 +I (192114) example: new speed:399.000000 +I (192124) example: expect speed: 0.000000 real_pulses:0 +I (192124) example: new speed:399.000000 +I (192134) example: expect speed: 0.000000 real_pulses:0 +I (192134) example: new speed:399.000000 +I (192144) example: expect speed: 0.000000 real_pulses:0 +I (192144) example: new speed:399.000000 +I (192154) example: expect speed: 0.000000 real_pulses:0 +I (192154) example: new speed:399.000000 +I (192164) example: expect speed: 0.000000 real_pulses:0 +I (192164) example: new speed:399.000000 +I (192174) example: expect speed: 0.000000 real_pulses:0 +I (192174) example: new speed:399.000000 +I (192184) example: expect speed: 0.000000 real_pulses:0 +I (192184) example: new speed:399.000000 +I (192194) example: expect speed: 0.000000 real_pulses:0 +I (192194) example: new speed:399.000000 +I (192204) example: expect speed: 0.000000 real_pulses:0 +I (192204) example: new speed:399.000000 +I (192214) example: expect speed: 0.000000 real_pulses:0 +I (192214) example: new speed:399.000000 +I (192224) example: expect speed: 0.000000 real_pulses:0 +I (192224) example: new speed:399.000000 +I (192234) example: expect speed: 0.000000 real_pulses:0 +I (192234) example: new speed:399.000000 +I (192244) example: expect speed: 0.000000 real_pulses:0 +I (192244) example: new speed:399.000000 +I (192254) example: expect speed: 0.000000 real_pulses:0 +I (192254) example: new speed:399.000000 +I (192264) example: expect speed: 0.000000 real_pulses:0 +I (192264) example: new speed:399.000000 +I (192274) example: expect speed: 0.000000 real_pulses:0 +I (192274) example: new speed:399.000000 +I (192284) example: expect speed: 0.000000 real_pulses:0 +I (192284) example: new speed:399.000000 +I (192294) example: expect speed: 0.000000 real_pulses:0 +I (192294) example: new speed:399.000000 +I (192304) example: expect speed: 0.000000 real_pulses:0 +I (192304) example: new speed:399.000000 +I (192314) example: expect speed: 0.000000 real_pulses:0 +I (192314) example: new speed:399.000000 +I (192324) example: expect speed: 0.000000 real_pulses:0 +I (192324) example: new speed:399.000000 +I (192334) example: expect speed: 0.000000 real_pulses:0 +I (192334) example: new speed:399.000000 +I (192344) example: expect speed: 0.000000 real_pulses:0 +I (192344) example: new speed:399.000000 +I (192354) example: expect speed: 0.000000 real_pulses:0 +I (192364) example: new speed:399.000000 +I (192364) example: expect speed: 0.000000 real_pulses:0 +I (192364) example: new speed:399.000000 +I (192374) example: expect speed: 0.000000 real_pulses:0 +I (192374) example: new speed:399.000000 +I (192384) example: expect speed: 0.000000 real_pulses:0 +I (192384) example: new speed:399.000000 +I (192394) example: expect speed: 0.000000 real_pulses:0 +I (192394) example: new speed:399.000000 +I (192404) example: expect speed: 0.000000 real_pulses:0 +I (192404) example: new speed:399.000000 +I (192414) example: expect speed: 0.000000 real_pulses:0 +I (192414) example: new speed:399.000000 +I (192424) example: expect speed: 0.000000 real_pulses:0 +I (192424) example: new speed:399.000000 +I (192434) example: expect speed: 0.000000 real_pulses:0 +I (192434) example: new speed:399.000000 +I (192444) example: expect speed: 0.000000 real_pulses:0 +I (192444) example: new speed:399.000000 +I (192454) example: expect speed: 0.000000 real_pulses:0 +I (192464) example: new speed:399.000000 +I (192464) example: expect speed: 0.000000 real_pulses:0 +I (192464) example: new speed:399.000000 +I (192474) modbus tcp: ModBusSlave_recv() +I (192474) modbus: ModbusSlaveProcess() +I (192474) modbus: check id... +I (192474) modbus: ok +I (192474) modbus: add: 0, length: 10 +I (192474) modbus: Read Holding Registers +I (192474) example: expect speed: 0.000000 real_pulses:0 +I (192484) example: new speed:399.000000 +I (192484) example: expect speed: 0.000000 real_pulses:0 +I (192494) example: new speed:399.000000 +I (192494) example: expect speed: 0.000000 real_pulses:0 +I (192494) example: new speed:399.000000 +I (192504) example: expect speed: 0.000000 real_pulses:0 +I (192504) example: new speed:399.000000 +I (192514) example: expect speed: 0.000000 real_pulses:0 +I (192514) example: new speed:399.000000 +I (192524) example: expect speed: 0.000000 real_pulses:0 +I (192524) example: new speed:399.000000 +I (192534) example: expect speed: 0.000000 real_pulses:0 +I (192534) example: new speed:399.000000 +I (192544) example: expect speed: 0.000000 real_pulses:0 +I (192544) example: new speed:399.000000 +I (192554) example: expect speed: 0.000000 real_pulses:0 +I (192554) example: new speed:399.000000 +I (192564) example: expect speed: 0.000000 real_pulses:0 +I (192574) example: new speed:399.000000 +I (192574) example: expect speed: 0.000000 real_pulses:0 +I (192574) example: new speed:399.000000 +I (192584) example: expect speed: 0.000000 real_pulses:0 +I (192584) example: new speed:399.000000 +I (192594) example: expect speed: 0.000000 real_pulses:0 +I (192594) example: new speed:399.000000 +I (192604) example: expect speed: 0.000000 real_pulses:0 +I (192604) example: new speed:399.000000 +I (192614) example: expect speed: 0.000000 real_pulses:0 +I (192614) example: new speed:399.000000 +I (192624) example: expect speed: 0.000000 real_pulses:0 +I (192624) example: new speed:399.000000 +I (192634) example: expect speed: 0.000000 real_pulses:0 +I (192634) example: new speed:399.000000 +I (192644) example: expect speed: 0.000000 real_pulses:0 +I (192644) example: new speed:399.000000 +I (192654) example: expect speed: 0.000000 real_pulses:0 +I (192654) example: new speed:399.000000 +I (192664) example: expect speed: 0.000000 real_pulses:0 +I (192664) example: new speed:399.000000 +I (192674) example: expect speed: 0.000000 real_pulses:0 +I (192674) example: new speed:399.000000 +I (192684) example: expect speed: 0.000000 real_pulses:0 +I (192684) example: new speed:399.000000 +I (192694) example: expect speed: 0.000000 real_pulses:0 +I (192694) example: new speed:399.000000 +I (192704) example: expect speed: 0.000000 real_pulses:0 +I (192704) example: new speed:399.000000 +I (192714) example: expect speed: 0.000000 real_pulses:0 +I (192714) example: new speed:399.000000 +I (192724) example: expect speed: 0.000000 real_pulses:0 +I (192724) example: new speed:399.000000 +I (192734) example: expect speed: 0.000000 real_pulses:0 +I (192734) example: new speed:399.000000 +I (192744) example: expect speed: 0.000000 real_pulses:0 +I (192744) example: new speed:399.000000 +I (192754) example: expect speed: 0.000000 real_pulses:0 +I (192754) example: new speed:399.000000 +I (192764) example: expect speed: 0.000000 real_pulses:0 +I (192764) example: new speed:399.000000 +I (192774) example: expect speed: 0.000000 real_pulses:0 +I (192784) example: new speed:399.000000 +I (192784) example: expect speed: 0.000000 real_pulses:0 +I (192794) example: new speed:399.000000 +I (192794) example: expect speed: 0.000000 real_pulses:0 +I (192804) example: new speed:399.000000 +I (192804) example: expect speed: 0.000000 real_pulses:0 +I (192804) example: new speed:399.000000 +I (192814) example: expect speed: 0.000000 real_pulses:0 +I (192814) example: new speed:399.000000 +I (192824) example: expect speed: 0.000000 real_pulses:0 +I (192824) example: new speed:399.000000 +I (192834) example: expect speed: 0.000000 real_pulses:0 +I (192834) example: new speed:399.000000 +I (192844) example: expect speed: 0.000000 real_pulses:0 +I (192844) example: new speed:399.000000 +I (192854) example: expect speed: 0.000000 real_pulses:0 +I (192854) example: new speed:399.000000 +I (192864) example: expect speed: 0.000000 real_pulses:0 +I (192864) example: new speed:399.000000 +I (192874) example: expect speed: 0.000000 real_pulses:0 +I (192874) example: new speed:399.000000 +I (192884) example: expect speed: 0.000000 real_pulses:0 +I (192884) example: new speed:399.000000 +I (192894) example: expect speed: 0.000000 real_pulses:0 +I (192904) example: new speed:399.000000 +I (192904) example: expect speed: 0.000000 real_pulses:0 +I (192914) example: new speed:399.000000 +I (192914) example: expect speed: 0.000000 real_pulses:0 +I (192924) example: new speed:399.000000 +I (192924) example: expect speed: 0.000000 real_pulses:0 +I (192924) example: new speed:399.000000 +I (192934) example: expect speed: 0.000000 real_pulses:0 +I (192934) example: new speed:399.000000 +I (192944) example: expect speed: 0.000000 real_pulses:0 +I (192944) example: new speed:399.000000 +I (192954) example: expect speed: 0.000000 real_pulses:0 +I (192954) example: new speed:399.000000 +I (192964) example: expect speed: 0.000000 real_pulses:0 +I (192964) example: new speed:399.000000 +I (192974) example: expect speed: 0.000000 real_pulses:0 +I (192974) example: new speed:399.000000 +I (192984) example: expect speed: 0.000000 real_pulses:0 +I (192984) example: new speed:399.000000 +I (192994) example: expect speed: 0.000000 real_pulses:0 +I (192994) example: new speed:399.000000 +I (193004) example: expect speed: 0.000000 real_pulses:0 +I (193004) example: new speed:399.000000 +I (193014) example: expect speed: 0.000000 real_pulses:0 +I (193014) example: new speed:399.000000 +I (193024) example: expect speed: 0.000000 real_pulses:0 +I (193024) example: new speed:399.000000 +I (193034) example: expect speed: 0.000000 real_pulses:0 +I (193034) example: new speed:399.000000 +I (193044) example: expect speed: 0.000000 real_pulses:0 +I (193044) example: new speed:399.000000 +I (193054) example: expect speed: 0.000000 real_pulses:0 +I (193054) example: new speed:399.000000 +I (193064) example: expect speed: 0.000000 real_pulses:0 +I (193064) example: new speed:399.000000 +I (193074) example: expect speed: 0.000000 real_pulses:0 +I (193084) example: new speed:399.000000 +I (193084) example: expect speed: 0.000000 real_pulses:0 +I (193094) example: new speed:399.000000 +I (193094) example: expect speed: 0.000000 real_pulses:0 +I (193104) example: new speed:399.000000 +I (193104) example: expect speed: 0.000000 real_pulses:0 +I (193104) example: new speed:399.000000 +I (193114) example: expect speed: 0.000000 real_pulses:0 +I (193114) example: new speed:399.000000 +I (193124) example: expect speed: 0.000000 real_pulses:0 +I (193124) example: new speed:399.000000 +I (193134) example: expect speed: 0.000000 real_pulses:0 +I (193134) example: new speed:399.000000 +I (193144) example: expect speed: 0.000000 real_pulses:0 +I (193144) example: new speed:399.000000 +I (193154) example: expect speed: 0.000000 real_pulses:0 +I (193164) example: new speed:399.000000 +I (193164) example: expect speed: 0.000000 real_pulses:0 +I (193164) example: new speed:399.000000 +I (193174) example: expect speed: 0.000000 real_pulses:0 +I (193184) example: new speed:399.000000 +I (193184) example: expect speed: 0.000000 real_pulses:0 +I (193184) example: new speed:399.000000 +I (193194) example: expect speed: 0.000000 real_pulses:0 +I (193194) example: new speed:399.000000 +I (193204) example: expect speed: 0.000000 real_pulses:0 +I (193204) example: new speed:399.000000 +I (193214) example: expect speed: 0.000000 real_pulses:0 +I (193214) example: new speed:399.000000 +I (193224) example: expect speed: 0.000000 real_pulses:0 +I (193224) example: new speed:399.000000 +I (193234) example: expect speed: 0.000000 real_pulses:0 +I (193234) example: new speed:399.000000 +I (193244) example: expect speed: 0.000000 real_pulses:0 +I (193244) example: new speed:399.000000 +I (193254) example: expect speed: 0.000000 real_pulses:0 +I (193254) example: new speed:399.000000 +I (193264) example: expect speed: 0.000000 real_pulses:0 +I (193264) example: new speed:399.000000 +I (193274) example: expect speed: 0.000000 real_pulses:0 +I (193284) example: new speed:399.000000 +I (193284) example: expect speed: 0.000000 real_pulses:0 +I (193284) example: new speed:399.000000 +I (193294) example: expect speed: 0.000000 real_pulses:0 +I (193294) example: new speed:399.000000 +I (193304) example: expect speed: 0.000000 real_pulses:0 +I (193304) example: new speed:399.000000 +I (193314) example: expect speed: 0.000000 real_pulses:0 +I (193314) example: new speed:399.000000 +I (193324) example: expect speed: 0.000000 real_pulses:0 +I (193324) example: new speed:399.000000 +I (193334) example: expect speed: 0.000000 real_pulses:0 +I (193334) example: new speed:399.000000 +I (193344) example: expect speed: 0.000000 real_pulses:0 +I (193344) example: new speed:399.000000 +I (193354) example: expect speed: 0.000000 real_pulses:0 +I (193354) example: new speed:399.000000 +I (193364) example: expect speed: 0.000000 real_pulses:0 +I (193364) example: new speed:399.000000 +I (193374) example: expect speed: 0.000000 real_pulses:0 +I (193384) example: new speed:399.000000 +I (193384) example: expect speed: 0.000000 real_pulses:0 +I (193384) example: new speed:399.000000 +I (193394) example: expect speed: 0.000000 real_pulses:0 +I (193394) example: new speed:399.000000 +I (193404) example: expect speed: 0.000000 real_pulses:0 +I (193404) example: new speed:399.000000 +I (193414) example: expect speed: 0.000000 real_pulses:0 +I (193414) example: new speed:399.000000 +I (193424) example: expect speed: 0.000000 real_pulses:0 +I (193424) example: new speed:399.000000 +I (193434) example: expect speed: 0.000000 real_pulses:0 +I (193434) example: new speed:399.000000 +I (193444) example: expect speed: 0.000000 real_pulses:0 +I (193444) example: new speed:399.000000 +I (193454) example: expect speed: 0.000000 real_pulses:0 +I (193454) example: new speed:399.000000 +I (193464) example: expect speed: 0.000000 real_pulses:0 +I (193464) example: new speed:399.000000 +I (193474) example: expect speed: 0.000000 real_pulses:0 +I (193474) example: new speed:399.000000 +I (193484) example: expect speed: 0.000000 real_pulses:0 +I (193484) example: new speed:399.000000 +I (193494) example: expect speed: 0.000000 real_pulses:0 +I (193494) example: new speed:399.000000 +I (193504) example: expect speed: 0.000000 real_pulses:0 +I (193504) example: new speed:399.000000 +I (193514) example: expect speed: 0.000000 real_pulses:0 +I (193514) example: new speed:399.000000 +I (193524) example: expect speed: 0.000000 real_pulses:0 +I (193524) example: new speed:399.000000 +I (193534) example: expect speed: 0.000000 real_pulses:0 +I (193534) example: new speed:399.000000 +I (193544) example: expect speed: 0.000000 real_pulses:0 +I (193544) example: new speed:399.000000 +I (193554) example: expect speed: 0.000000 real_pulses:0 +I (193554) example: new speed:399.000000 +I (193564) example: expect speed: 0.000000 real_pulses:0 +I (193564) example: new speed:399.000000 +I (193574) example: expect speed: 0.000000 real_pulses:0 +I (193574) example: new speed:399.000000 +I (193584) example: expect speed: 0.000000 real_pulses:0 +I (193584) example: new speed:399.000000 +I (193594) example: expect speed: 0.000000 real_pulses:0 +I (193594) example: new speed:399.000000 +I (193604) example: expect speed: 0.000000 real_pulses:0 +I (193604) example: new speed:399.000000 +I (193614) example: expect speed: 0.000000 real_pulses:0 +I (193614) example: new speed:399.000000 +I (193624) example: expect speed: 0.000000 real_pulses:0 +I (193624) example: new speed:399.000000 +I (193634) example: expect speed: 0.000000 real_pulses:0 +I (193634) example: new speed:399.000000 +I (193644) example: expect speed: 0.000000 real_pulses:0 +I (193644) example: new speed:399.000000 +I (193654) example: expect speed: 0.000000 real_pulses:0 +I (193654) example: new speed:399.000000 +I (193664) example: expect speed: 0.000000 real_pulses:0 +I (193664) example: new speed:399.000000 +I (193674) example: expect speed: 0.000000 real_pulses:0 +I (193674) example: new speed:399.000000 +I (193684) example: expect speed: 0.000000 real_pulses:0 +I (193694) example: new speed:399.000000 +I (193694) example: expect speed: 0.000000 real_pulses:0 +I (193694) example: new speed:399.000000 +I (193704) example: expect speed: 0.000000 real_pulses:0 +I (193714) example: new speed:399.000000 +I (193714) modbus tcp: ModBusSlave_recv() +I (193714) modbus: ModbusSlaveProcess() +I (193714) modbus: check id... +I (193714) example: expect speed: 0.000000 real_pulses:0 +I (193714) modbus: ok +I (193714) example: new speed:399.000000 +I (193714) modbus: add: 0, length: 10 +I (193724) modbus: Read Holding Registers +I (193724) example: expect speed: 0.000000 real_pulses:0 +I (193724) example: new speed:399.000000 +I (193734) example: expect speed: 0.000000 real_pulses:0 +I (193734) example: new speed:399.000000 +I (193744) example: expect speed: 0.000000 real_pulses:0 +I (193744) example: new speed:399.000000 +I (193754) example: expect speed: 0.000000 real_pulses:0 +I (193754) example: new speed:399.000000 +I (193764) example: expect speed: 0.000000 real_pulses:0 +I (193774) example: new speed:399.000000 +I (193774) example: expect speed: 0.000000 real_pulses:0 +I (193774) example: new speed:399.000000 +I (193784) example: expect speed: 0.000000 real_pulses:0 +I (193784) example: new speed:399.000000 +I (193794) example: expect speed: 0.000000 real_pulses:0 +I (193794) example: new speed:399.000000 +I (193804) example: expect speed: 0.000000 real_pulses:0 +I (193804) example: new speed:399.000000 +I (193814) example: expect speed: 0.000000 real_pulses:0 +I (193814) example: new speed:399.000000 +I (193824) example: expect speed: 0.000000 real_pulses:0 +I (193824) example: new speed:399.000000 +I (193834) example: expect speed: 0.000000 real_pulses:0 +I (193834) example: new speed:399.000000 +I (193844) example: expect speed: 0.000000 real_pulses:0 +I (193844) example: new speed:399.000000 +I (193854) example: expect speed: 0.000000 real_pulses:0 +I (193854) example: new speed:399.000000 +I (193864) example: expect speed: 0.000000 real_pulses:0 +I (193864) example: new speed:399.000000 +I (193874) example: expect speed: 0.000000 real_pulses:0 +I (193874) example: new speed:399.000000 +I (193884) example: expect speed: 0.000000 real_pulses:0 +I (193884) example: new speed:399.000000 +I (193894) example: expect speed: 0.000000 real_pulses:0 +I (193894) example: new speed:399.000000 +I (193904) example: expect speed: 0.000000 real_pulses:0 +I (193904) example: new speed:399.000000 +I (193914) example: expect speed: 0.000000 real_pulses:0 +I (193914) example: new speed:399.000000 +I (193924) example: expect speed: 0.000000 real_pulses:0 +I (193924) example: new speed:399.000000 +I (193934) example: expect speed: 0.000000 real_pulses:0 +I (193934) example: new speed:399.000000 +I (193944) example: expect speed: 0.000000 real_pulses:0 +I (193944) example: new speed:399.000000 +I (193954) example: expect speed: 0.000000 real_pulses:0 +I (193954) example: new speed:399.000000 +I (193964) example: expect speed: 0.000000 real_pulses:0 +I (193964) example: new speed:399.000000 +I (193974) example: expect speed: 0.000000 real_pulses:0 +I (193974) example: new speed:399.000000 +I (193984) example: expect speed: 0.000000 real_pulses:0 +I (193984) example: new speed:399.000000 +I (193994) example: expect speed: 0.000000 real_pulses:0 +I (193994) example: new speed:399.000000 +I (194004) example: expect speed: 0.000000 real_pulses:0 +I (194004) example: new speed:399.000000 +I (194014) example: expect speed: 0.000000 real_pulses:0 +I (194014) example: new speed:399.000000 +I (194024) example: expect speed: 0.000000 real_pulses:0 +I (194024) example: new speed:399.000000 +I (194034) example: expect speed: 0.000000 real_pulses:0 +I (194044) example: new speed:399.000000 +I (194044) example: expect speed: 0.000000 real_pulses:0 +I (194044) example: new speed:399.000000 +I (194054) example: expect speed: 0.000000 real_pulses:0 +I (194054) example: new speed:399.000000 +I (194064) example: expect speed: 0.000000 real_pulses:0 +I (194064) example: new speed:399.000000 +I (194074) example: expect speed: 0.000000 real_pulses:0 +I (194074) example: new speed:399.000000 +I (194084) example: expect speed: 0.000000 real_pulses:0 +I (194084) example: new speed:399.000000 +I (194094) example: expect speed: 0.000000 real_pulses:0 +I (194094) example: new speed:399.000000 +I (194104) example: expect speed: 0.000000 real_pulses:0 +I (194104) example: new speed:399.000000 +I (194114) example: expect speed: 0.000000 real_pulses:0 +I (194114) example: new speed:399.000000 +I (194124) example: expect speed: 0.000000 real_pulses:0 +I (194124) example: new speed:399.000000 +I (194134) example: expect speed: 0.000000 real_pulses:0 +I (194134) example: new speed:399.000000 +I (194144) example: expect speed: 0.000000 real_pulses:0 +I (194144) example: new speed:399.000000 +I (194154) example: expect speed: 0.000000 real_pulses:0 +I (194154) example: new speed:399.000000 +I (194164) example: expect speed: 0.000000 real_pulses:0 +I (194164) example: new speed:399.000000 +I (194174) example: expect speed: 0.000000 real_pulses:0 +I (194174) example: new speed:399.000000 +I (194184) example: expect speed: 0.000000 real_pulses:0 +I (194184) example: new speed:399.000000 +I (194194) example: expect speed: 0.000000 real_pulses:0 +I (194194) example: new speed:399.000000 +I (194204) example: expect speed: 0.000000 real_pulses:0 +I (194204) example: new speed:399.000000 +I (194214) example: expect speed: 0.000000 real_pulses:0 +I (194214) example: new speed:399.000000 +I (194224) example: expect speed: 0.000000 real_pulses:0 +I (194224) example: new speed:399.000000 +I (194234) example: expect speed: 0.000000 real_pulses:0 +I (194234) example: new speed:399.000000 +I (194244) example: expect speed: 0.000000 real_pulses:0 +I (194244) example: new speed:399.000000 +I (194254) example: expect speed: 0.000000 real_pulses:0 +I (194254) example: new speed:399.000000 +I (194264) example: expect speed: 0.000000 real_pulses:0 +I (194264) example: new speed:399.000000 +I (194274) example: expect speed: 0.000000 real_pulses:0 +I (194274) example: new speed:399.000000 +I (194284) example: expect speed: 0.000000 real_pulses:0 +I (194284) example: new speed:399.000000 +I (194294) example: expect speed: 0.000000 real_pulses:0 +I (194294) example: new speed:399.000000 +I (194304) example: expect speed: 0.000000 real_pulses:0 +I (194304) example: new speed:399.000000 +I (194314) example: expect speed: 0.000000 real_pulses:0 +I (194314) example: new speed:399.000000 +I (194324) example: expect speed: 0.000000 real_pulses:0 +I (194324) example: new speed:399.000000 +I (194334) example: expect speed: 0.000000 real_pulses:0 +I (194334) example: new speed:399.000000 +I (194344) example: expect speed: 0.000000 real_pulses:0 +I (194344) example: new speed:399.000000 +I (194354) example: expect speed: 0.000000 real_pulses:0 +I (194354) example: new speed:399.000000 +I (194364) example: expect speed: 0.000000 real_pulses:0 +I (194364) example: new speed:399.000000 +I (194374) example: expect speed: 0.000000 real_pulses:0 +I (194374) example: new speed:399.000000 +I (194384) example: expect speed: 0.000000 real_pulses:0 +I (194384) example: new speed:399.000000 +I (194394) example: expect speed: 0.000000 real_pulses:0 +I (194394) example: new speed:399.000000 +I (194404) example: expect speed: 0.000000 real_pulses:0 +I (194404) example: new speed:399.000000 +I (194414) example: expect speed: 0.000000 real_pulses:0 +I (194414) example: new speed:399.000000 +I (194424) example: expect speed: 0.000000 real_pulses:0 +I (194424) example: new speed:399.000000 +I (194434) example: expect speed: 0.000000 real_pulses:0 +I (194434) example: new speed:399.000000 +I (194444) example: expect speed: 0.000000 real_pulses:0 +I (194444) example: new speed:399.000000 +I (194454) example: expect speed: 0.000000 real_pulses:0 +I (194454) example: new speed:399.000000 +I (194464) example: expect speed: 0.000000 real_pulses:0 +I (194464) example: new speed:399.000000 +I (194474) example: expect speed: 0.000000 real_pulses:0 +I (194474) example: new speed:399.000000 +I (194484) example: expect speed: 0.000000 real_pulses:0 +I (194484) example: new speed:399.000000 +I (194494) example: expect speed: 0.000000 real_pulses:0 +I (194494) example: new speed:399.000000 +I (194504) example: expect speed: 0.000000 real_pulses:0 +I (194504) example: new speed:399.000000 +I (194514) example: expect speed: 0.000000 real_pulses:0 +I (194514) example: new speed:399.000000 +I (194524) example: expect speed: 0.000000 real_pulses:0 +I (194524) example: new speed:399.000000 +I (194534) example: expect speed: 0.000000 real_pulses:0 +I (194534) example: new speed:399.000000 +I (194544) example: expect speed: 0.000000 real_pulses:0 +I (194544) example: new speed:399.000000 +I (194554) example: expect speed: 0.000000 real_pulses:0 +I (194554) example: new speed:399.000000 +I (194564) example: expect speed: 0.000000 real_pulses:0 +I (194564) example: new speed:399.000000 +I (194574) example: expect speed: 0.000000 real_pulses:0 +I (194574) example: new speed:399.000000 +I (194584) example: expect speed: 0.000000 real_pulses:0 +I (194584) example: new speed:399.000000 +I (194594) example: expect speed: 0.000000 real_pulses:0 +I (194594) example: new speed:399.000000 +I (194604) example: expect speed: 0.000000 real_pulses:0 +I (194604) example: new speed:399.000000 +I (194614) example: expect speed: 0.000000 real_pulses:0 +I (194614) example: new speed:399.000000 +I (194624) example: expect speed: 0.000000 real_pulses:0 +I (194624) example: new speed:399.000000 +I (194634) example: expect speed: 0.000000 real_pulses:0 +I (194634) example: new speed:399.000000 +I (194644) example: expect speed: 0.000000 real_pulses:0 +I (194644) example: new speed:399.000000 +I (194654) example: expect speed: 0.000000 real_pulses:0 +I (194654) example: new speed:399.000000 +I (194664) example: expect speed: 0.000000 real_pulses:0 +I (194664) example: new speed:399.000000 +I (194674) example: expect speed: 0.000000 real_pulses:0 +I (194674) example: new speed:399.000000 +I (194684) example: expect speed: 0.000000 real_pulses:0 +I (194684) example: new speed:399.000000 +I (194694) example: expect speed: 0.000000 real_pulses:0 +I (194694) example: new speed:399.000000 +I (194704) example: expect speed: 0.000000 real_pulses:0 +I (194704) example: new speed:399.000000 +I (194714) example: expect speed: 0.000000 real_pulses:0 +I (194714) example: new speed:399.000000 +I (194724) example: expect speed: 0.000000 real_pulses:0 +I (194724) example: new speed:399.000000 +I (194734) example: expect speed: 0.000000 real_pulses:0 +I (194734) example: new speed:399.000000 +I (194744) example: expect speed: 0.000000 real_pulses:0 +I (194744) example: new speed:399.000000 +I (194754) example: expect speed: 0.000000 real_pulses:0 +I (194754) example: new speed:399.000000 +I (194764) example: expect speed: 0.000000 real_pulses:0 +I (194764) example: new speed:399.000000 +I (194774) example: expect speed: 0.000000 real_pulses:0 +I (194774) example: new speed:399.000000 +I (194784) example: expect speed: 0.000000 real_pulses:0 +I (194784) example: new speed:399.000000 +I (194794) example: expect speed: 0.000000 real_pulses:0 +I (194794) example: new speed:399.000000 +I (194804) example: expect speed: 0.000000 real_pulses:0 +I (194804) example: new speed:399.000000 +I (194814) example: expect speed: 0.000000 real_pulses:0 +I (194824) example: new speed:399.000000 +I (194824) example: expect speed: 0.000000 real_pulses:0 +I (194824) example: new speed:399.000000 +I (194834) example: expect speed: 0.000000 real_pulses:0 +I (194834) example: new speed:399.000000 +I (194844) example: expect speed: 0.000000 real_pulses:0 +I (194844) example: new speed:399.000000 +I (194854) example: expect speed: 0.000000 real_pulses:0 +I (194854) example: new speed:399.000000 +I (194864) example: expect speed: 0.000000 real_pulses:0 +I (194864) example: new speed:399.000000 +I (194874) example: expect speed: 0.000000 real_pulses:0 +I (194874) example: new speed:399.000000 +I (194884) example: expect speed: 0.000000 real_pulses:0 +I (194884) example: new speed:399.000000 +I (194894) example: expect speed: 0.000000 real_pulses:0 +I (194894) example: new speed:399.000000 +I (194904) example: expect speed: 0.000000 real_pulses:0 +I (194904) example: new speed:399.000000 +I (194914) example: expect speed: 0.000000 real_pulses:0 +I (194924) example: new speed:399.000000 +I (194924) example: expect speed: 0.000000 real_pulses:0 +I (194934) example: new speed:399.000000 +I (194934) modbus tcp: ModBusSlave_recv() +I (194934) modbus: ModbusSlaveProcess() +I (194934) modbus: check id... +I (194934) modbus: ok +I (194934) modbus: add: 0, length: 10 +I (194934) modbus: Read Holding Registers +I (194934) example: expect speed: 0.000000 real_pulses:0 +I (194934) example: new speed:399.000000 +I (194944) example: expect speed: 0.000000 real_pulses:0 +I (194944) example: new speed:399.000000 +I (194954) example: expect speed: 0.000000 real_pulses:0 +I (194954) example: new speed:399.000000 +I (194964) example: expect speed: 0.000000 real_pulses:0 +I (194964) example: new speed:399.000000 +I (194974) example: expect speed: 0.000000 real_pulses:0 +I (194974) example: new speed:399.000000 +I (194984) example: expect speed: 0.000000 real_pulses:0 +I (194984) example: new speed:399.000000 +I (194994) example: expect speed: 0.000000 real_pulses:0 +I (194994) example: new speed:399.000000 +I (195004) example: expect speed: 0.000000 real_pulses:0 +I (195004) example: new speed:399.000000 +I (195014) example: expect speed: 0.000000 real_pulses:0 +I (195014) example: new speed:399.000000 +I (195024) example: expect speed: 0.000000 real_pulses:0 +I (195024) example: new speed:399.000000 +I (195034) example: expect speed: 0.000000 real_pulses:0 +I (195034) example: new speed:399.000000 +I (195044) example: expect speed: 0.000000 real_pulses:0 +I (195044) example: new speed:399.000000 +I (195054) example: expect speed: 0.000000 real_pulses:0 +I (195054) example: new speed:399.000000 +I (195064) example: expect speed: 0.000000 real_pulses:0 +I (195064) example: new speed:399.000000 +I (195074) example: expect speed: 0.000000 real_pulses:0 +I (195074) example: new speed:399.000000 +I (195084) example: expect speed: 0.000000 real_pulses:0 +I (195084) example: new speed:399.000000 +I (195094) example: expect speed: 0.000000 real_pulses:0 +I (195094) example: new speed:399.000000 +I (195104) example: expect speed: 0.000000 real_pulses:0 +I (195104) example: new speed:399.000000 +I (195114) example: expect speed: 0.000000 real_pulses:0 +I (195114) example: new speed:399.000000 +I (195124) example: expect speed: 0.000000 real_pulses:0 +I (195124) example: new speed:399.000000 +I (195134) example: expect speed: 0.000000 real_pulses:0 +I (195134) example: new speed:399.000000 +I (195144) example: expect speed: 0.000000 real_pulses:0 +I (195144) example: new speed:399.000000 +I (195154) example: expect speed: 0.000000 real_pulses:0 +I (195154) example: new speed:399.000000 +I (195164) example: expect speed: 0.000000 real_pulses:0 +I (195164) example: new speed:399.000000 +I (195174) example: expect speed: 0.000000 real_pulses:0 +I (195174) example: new speed:399.000000 +I (195184) example: expect speed: 0.000000 real_pulses:0 +I (195184) example: new speed:399.000000 +I (195194) example: expect speed: 0.000000 real_pulses:0 +I (195194) example: new speed:399.000000 +I (195204) example: expect speed: 0.000000 real_pulses:0 +I (195204) example: new speed:399.000000 +I (195214) example: expect speed: 0.000000 real_pulses:0 +I (195214) example: new speed:399.000000 +I (195224) example: expect speed: 0.000000 real_pulses:0 +I (195224) example: new speed:399.000000 +I (195234) example: expect speed: 0.000000 real_pulses:0 +I (195234) example: new speed:399.000000 +I (195244) example: expect speed: 0.000000 real_pulses:0 +I (195244) example: new speed:399.000000 +I (195254) example: expect speed: 0.000000 real_pulses:0 +I (195254) example: new speed:399.000000 +I (195264) example: expect speed: 0.000000 real_pulses:0 +I (195264) example: new speed:399.000000 +I (195274) example: expect speed: 0.000000 real_pulses:0 +I (195274) example: new speed:399.000000 +I (195284) example: expect speed: 0.000000 real_pulses:0 +I (195284) example: new speed:399.000000 +I (195294) example: expect speed: 0.000000 real_pulses:0 +I (195294) example: new speed:399.000000 +I (195304) example: expect speed: 0.000000 real_pulses:0 +I (195304) example: new speed:399.000000 +I (195314) example: expect speed: 0.000000 real_pulses:0 +I (195314) example: new speed:399.000000 +I (195324) example: expect speed: 0.000000 real_pulses:0 +I (195324) example: new speed:399.000000 +I (195334) example: expect speed: 0.000000 real_pulses:0 +I (195334) example: new speed:399.000000 +I (195344) example: expect speed: 0.000000 real_pulses:0 +I (195344) example: new speed:399.000000 +I (195354) example: expect speed: 0.000000 real_pulses:0 +I (195354) example: new speed:399.000000 +I (195364) example: expect speed: 0.000000 real_pulses:0 +I (195364) example: new speed:399.000000 +I (195374) example: expect speed: 0.000000 real_pulses:0 +I (195374) example: new speed:399.000000 +I (195384) example: expect speed: 0.000000 real_pulses:0 +I (195384) example: new speed:399.000000 +I (195394) example: expect speed: 0.000000 real_pulses:0 +I (195394) example: new speed:399.000000 +I (195404) example: expect speed: 0.000000 real_pulses:0 +I (195404) example: new speed:399.000000 +I (195414) example: expect speed: 0.000000 real_pulses:0 +I (195414) example: new speed:399.000000 +I (195424) example: expect speed: 0.000000 real_pulses:0 +I (195424) example: new speed:399.000000 +I (195434) example: expect speed: 0.000000 real_pulses:0 +I (195434) example: new speed:399.000000 +I (195444) example: expect speed: 0.000000 real_pulses:0 +I (195444) example: new speed:399.000000 +I (195454) example: expect speed: 0.000000 real_pulses:0 +I (195454) example: new speed:399.000000 +I (195464) example: expect speed: 0.000000 real_pulses:0 +I (195464) example: new speed:399.000000 +I (195474) example: expect speed: 0.000000 real_pulses:0 +I (195474) example: new speed:399.000000 +I (195484) example: expect speed: 0.000000 real_pulses:0 +I (195484) example: new speed:399.000000 +I (195494) example: expect speed: 0.000000 real_pulses:0 +I (195494) example: new speed:399.000000 +I (195504) example: expect speed: 0.000000 real_pulses:0 +I (195504) example: new speed:399.000000 +I (195514) example: expect speed: 0.000000 real_pulses:0 +I (195514) example: new speed:399.000000 +I (195524) example: expect speed: 0.000000 real_pulses:0 +I (195524) example: new speed:399.000000 +I (195534) example: expect speed: 0.000000 real_pulses:0 +I (195534) example: new speed:399.000000 +I (195544) example: expect speed: 0.000000 real_pulses:0 +I (195544) example: new speed:399.000000 +I (195554) example: expect speed: 0.000000 real_pulses:0 +I (195554) example: new speed:399.000000 +I (195564) example: expect speed: 0.000000 real_pulses:0 +I (195564) example: new speed:399.000000 +I (195574) example: expect speed: 0.000000 real_pulses:0 +I (195574) example: new speed:399.000000 +I (195584) example: expect speed: 0.000000 real_pulses:0 +I (195584) example: new speed:399.000000 +I (195594) example: expect speed: 0.000000 real_pulses:0 +I (195594) example: new speed:399.000000 +I (195604) example: expect speed: 0.000000 real_pulses:0 +I (195604) example: new speed:399.000000 +I (195614) example: expect speed: 0.000000 real_pulses:0 +I (195614) example: new speed:399.000000 +I (195624) example: expect speed: 0.000000 real_pulses:0 +I (195624) example: new speed:399.000000 +I (195634) example: expect speed: 0.000000 real_pulses:0 +I (195634) example: new speed:399.000000 +I (195644) example: expect speed: 0.000000 real_pulses:0 +I (195644) example: new speed:399.000000 +I (195654) example: expect speed: 0.000000 real_pulses:0 +I (195654) example: new speed:399.000000 +I (195664) example: expect speed: 0.000000 real_pulses:0 +I (195664) example: new speed:399.000000 +I (195674) example: expect speed: 0.000000 real_pulses:0 +I (195674) example: new speed:399.000000 +I (195684) example: expect speed: 0.000000 real_pulses:0 +I (195684) example: new speed:399.000000 +I (195694) example: expect speed: 0.000000 real_pulses:0 +I (195694) example: new speed:399.000000 +I (195704) example: expect speed: 0.000000 real_pulses:0 +I (195704) example: new speed:399.000000 +I (195714) example: expect speed: 0.000000 real_pulses:0 +I (195714) example: new speed:399.000000 +I (195724) example: expect speed: 0.000000 real_pulses:0 +I (195724) example: new speed:399.000000 +I (195734) example: expect speed: 0.000000 real_pulses:0 +I (195734) example: new speed:399.000000 +I (195744) example: expect speed: 0.000000 real_pulses:0 +I (195744) example: new speed:399.000000 +I (195754) example: expect speed: 0.000000 real_pulses:0 +I (195754) example: new speed:399.000000 +I (195764) example: expect speed: 0.000000 real_pulses:0 +I (195764) example: new speed:399.000000 +I (195774) example: expect speed: 0.000000 real_pulses:0 +I (195774) example: new speed:399.000000 +I (195784) example: expect speed: 0.000000 real_pulses:0 +I (195784) example: new speed:399.000000 +I (195794) example: expect speed: 0.000000 real_pulses:0 +I (195794) example: new speed:399.000000 +I (195804) example: expect speed: 0.000000 real_pulses:0 +I (195804) example: new speed:399.000000 +I (195814) example: expect speed: 0.000000 real_pulses:0 +I (195814) example: new speed:399.000000 +I (195824) example: expect speed: 0.000000 real_pulses:0 +I (195824) example: new speed:399.000000 +I (195834) example: expect speed: 0.000000 real_pulses:0 +I (195834) example: new speed:399.000000 +I (195844) example: expect speed: 0.000000 real_pulses:0 +I (195844) example: new speed:399.000000 +I (195854) example: expect speed: 0.000000 real_pulses:0 +I (195854) example: new speed:399.000000 +I (195864) example: expect speed: 0.000000 real_pulses:0 +I (195864) example: new speed:399.000000 +I (195874) example: expect speed: 0.000000 real_pulses:0 +I (195874) example: new speed:399.000000 +I (195884) example: expect speed: 0.000000 real_pulses:0 +I (195884) example: new speed:399.000000 +I (195894) example: expect speed: 0.000000 real_pulses:0 +I (195894) example: new speed:399.000000 +I (195904) example: expect speed: 0.000000 real_pulses:0 +I (195904) example: new speed:399.000000 +I (195914) example: expect speed: 0.000000 real_pulses:0 +I (195914) example: new speed:399.000000 +I (195924) example: expect speed: 0.000000 real_pulses:0 +I (195924) example: new speed:399.000000 +I (195934) example: expect speed: 0.000000 real_pulses:0 +I (195934) example: new speed:399.000000 +I (195944) example: expect speed: 0.000000 real_pulses:0 +I (195944) example: new speed:399.000000 +I (195954) example: expect speed: 0.000000 real_pulses:0 +I (195954) example: new speed:399.000000 +I (195964) example: expect speed: 0.000000 real_pulses:0 +I (195964) example: new speed:399.000000 +I (195974) example: expect speed: 0.000000 real_pulses:0 +I (195974) example: new speed:399.000000 +I (195984) example: expect speed: 0.000000 real_pulses:0 +I (195984) example: new speed:399.000000 +I (195994) example: expect speed: 0.000000 real_pulses:0 +I (195994) example: new speed:399.000000 +I (196004) example: expect speed: 0.000000 real_pulses:0 +I (196004) example: new speed:399.000000 +I (196014) example: expect speed: 0.000000 real_pulses:0 +I (196014) example: new speed:399.000000 +I (196024) example: expect speed: 0.000000 real_pulses:0 +I (196024) example: new speed:399.000000 +I (196034) example: expect speed: 0.000000 real_pulses:0 +I (196034) example: new speed:399.000000 +I (196044) example: expect speed: 0.000000 real_pulses:0 +I (196054) example: new speed:399.000000 +I (196054) example: expect speed: 0.000000 real_pulses:0 +I (196054) example: new speed:399.000000 +I (196064) example: expect speed: 0.000000 real_pulses:0 +I (196064) example: new speed:399.000000 +I (196074) example: expect speed: 0.000000 real_pulses:0 +I (196074) example: new speed:399.000000 +I (196084) example: expect speed: 0.000000 real_pulses:0 +I (196084) example: new speed:399.000000 +I (196094) example: expect speed: 0.000000 real_pulses:0 +I (196094) example: new speed:399.000000 +I (196104) example: expect speed: 0.000000 real_pulses:0 +I (196104) example: new speed:399.000000 +I (196114) example: expect speed: 0.000000 real_pulses:0 +I (196114) example: new speed:399.000000 +I (196124) example: expect speed: 0.000000 real_pulses:0 +I (196124) example: new speed:399.000000 +I (196134) example: expect speed: 0.000000 real_pulses:0 +I (196134) example: new speed:399.000000 +I (196144) example: expect speed: 0.000000 real_pulses:0 +I (196144) example: new speed:399.000000 +I (196154) example: expect speed: 0.000000 real_pulses:0 +I (196154) example: new speed:399.000000 +I (196164) example: expect speed: 0.000000 real_pulses:0 +I (196164) example: new speed:399.000000 +I (196174) example: expect speed: 0.000000 real_pulses:0 +I (196174) example: new speed:399.000000 +I (196184) example: expect speed: 0.000000 real_pulses:0 +I (196184) example: new speed:399.000000 +I (196194) example: expect speed: 0.000000 real_pulses:0 +I (196194) example: new speed:399.000000 +I (196204) example: expect speed: 0.000000 real_pulses:0 +I (196204) example: new speed:399.000000 +I (196214) example: expect speed: 0.000000 real_pulses:0 +I (196214) example: new speed:399.000000 +I (196224) example: expect speed: 0.000000 real_pulses:0 +I (196224) example: new speed:399.000000 +I (196234) example: expect speed: 0.000000 real_pulses:0 +I (196234) example: new speed:399.000000 +I (196244) example: expect speed: 0.000000 real_pulses:0 +I (196244) example: new speed:399.000000 +I (196254) example: expect speed: 0.000000 real_pulses:0 +I (196254) example: new speed:399.000000 +I (196264) example: expect speed: 0.000000 real_pulses:0 +I (196264) example: new speed:399.000000 +I (196274) example: expect speed: 0.000000 real_pulses:0 +I (196274) example: new speed:399.000000 +I (196284) example: expect speed: 0.000000 real_pulses:0 +I (196284) example: new speed:399.000000 +I (196294) example: expect speed: 0.000000 real_pulses:0 +I (196294) example: new speed:399.000000 +I (196304) example: expect speed: 0.000000 real_pulses:0 +I (196304) example: new speed:399.000000 +I (196314) example: expect speed: 0.000000 real_pulses:0 +I (196314) example: new speed:399.000000 +I (196324) example: expect speed: 0.000000 real_pulses:0 +I (196324) example: new speed:399.000000 +I (196334) example: expect speed: 0.000000 real_pulses:0 +I (196334) example: new speed:399.000000 +I (196344) example: expect speed: 0.000000 real_pulses:0 +I (196344) example: new speed:399.000000 +I (196354) example: expect speed: 0.000000 real_pulses:0 +I (196354) example: new speed:399.000000 +I (196364) example: expect speed: 0.000000 real_pulses:0 +I (196364) example: new speed:399.000000 +I (196374) example: expect speed: 0.000000 real_pulses:0 +I (196374) example: new speed:399.000000 +I (196384) example: expect speed: 0.000000 real_pulses:0 +I (196384) example: new speed:399.000000 +I (196394) example: expect speed: 0.000000 real_pulses:0 +I (196394) example: new speed:399.000000 +I (196404) example: expect speed: 0.000000 real_pulses:0 +I (196404) example: new speed:399.000000 +I (196414) example: expect speed: 0.000000 real_pulses:0 +I (196414) example: new speed:399.000000 +I (196424) example: expect speed: 0.000000 real_pulses:0 +I (196424) example: new speed:399.000000 +I (196434) example: expect speed: 0.000000 real_pulses:0 +I (196434) example: new speed:399.000000 +I (196444) example: expect speed: 0.000000 real_pulses:0 +I (196444) example: new speed:399.000000 +I (196454) example: expect speed: 0.000000 real_pulses:0 +I (196454) example: new speed:399.000000 +I (196464) example: expect speed: 0.000000 real_pulses:0 +I (196464) example: new speed:399.000000 +I (196474) example: expect speed: 0.000000 real_pulses:0 +I (196474) example: new speed:399.000000 +I (196484) example: expect speed: 0.000000 real_pulses:0 +I (196484) example: new speed:399.000000 +I (196494) example: expect speed: 0.000000 real_pulses:0 +I (196494) example: new speed:399.000000 +I (196504) example: expect speed: 0.000000 real_pulses:0 +I (196504) example: new speed:399.000000 +I (196514) example: expect speed: 0.000000 real_pulses:0 +I (196514) example: new speed:399.000000 +I (196524) example: expect speed: 0.000000 real_pulses:0 +I (196524) example: new speed:399.000000 +I (196534) example: expect speed: 0.000000 real_pulses:0 +I (196534) example: new speed:399.000000 +I (196544) example: expect speed: 0.000000 real_pulses:0 +I (196544) example: new speed:399.000000 +I (196554) example: expect speed: 0.000000 real_pulses:0 +I (196554) example: new speed:399.000000 +I (196564) example: expect speed: 0.000000 real_pulses:0 +I (196564) example: new speed:399.000000 +I (196574) example: expect speed: 0.000000 real_pulses:0 +I (196574) example: new speed:399.000000 +I (196584) example: expect speed: 0.000000 real_pulses:0 +I (196584) example: new speed:399.000000 +I (196594) example: expect speed: 0.000000 real_pulses:0 +I (196594) example: new speed:399.000000 +I (196604) example: expect speed: 0.000000 real_pulses:0 +I (196604) example: new speed:399.000000 +I (196614) example: expect speed: 0.000000 real_pulses:0 +I (196614) example: new speed:399.000000 +I (196624) example: expect speed: 0.000000 real_pulses:0 +I (196624) example: new speed:399.000000 +I (196634) example: expect speed: 0.000000 real_pulses:0 +I (196634) example: new speed:399.000000 +I (196644) example: expect speed: 0.000000 real_pulses:0 +I (196644) example: new speed:399.000000 +I (196654) example: expect speed: 0.000000 real_pulses:0 +I (196654) example: new speed:399.000000 +I (196664) example: expect speed: 0.000000 real_pulses:0 +I (196664) example: new speed:399.000000 +I (196674) example: expect speed: 0.000000 real_pulses:0 +I (196674) example: new speed:399.000000 +I (196684) example: expect speed: 0.000000 real_pulses:0 +I (196684) example: new speed:399.000000 +I (196694) example: expect speed: 0.000000 real_pulses:0 +I (196694) example: new speed:399.000000 +I (196704) example: expect speed: 0.000000 real_pulses:0 +I (196704) example: new speed:399.000000 +I (196714) example: expect speed: 0.000000 real_pulses:0 +I (196714) example: new speed:399.000000 +I (196724) example: expect speed: 0.000000 real_pulses:0 +I (196724) example: new speed:399.000000 +I (196734) example: expect speed: 0.000000 real_pulses:0 +I (196734) example: new speed:399.000000 +I (196744) example: expect speed: 0.000000 real_pulses:0 +I (196744) example: new speed:399.000000 +I (196754) example: expect speed: 0.000000 real_pulses:0 +I (196754) example: new speed:399.000000 +I (196764) example: expect speed: 0.000000 real_pulses:0 +I (196764) example: new speed:399.000000 +I (196774) example: expect speed: 0.000000 real_pulses:0 +I (196774) example: new speed:399.000000 +I (196784) example: expect speed: 0.000000 real_pulses:0 +I (196784) example: new speed:399.000000 +I (196794) example: expect speed: 0.000000 real_pulses:0 +I (196794) example: new speed:399.000000 +I (196804) example: expect speed: 0.000000 real_pulses:0 +I (196804) example: new speed:399.000000 +I (196814) example: expect speed: 0.000000 real_pulses:0 +I (196814) example: new speed:399.000000 +I (196824) example: expect speed: 0.000000 real_pulses:0 +I (196824) example: new speed:399.000000 +I (196834) example: expect speed: 0.000000 real_pulses:0 +I (196834) example: new speed:399.000000 +I (196844) example: expect speed: 0.000000 real_pulses:0 +I (196844) example: new speed:399.000000 +I (196854) example: expect speed: 0.000000 real_pulses:0 +I (196854) example: new speed:399.000000 +I (196864) example: expect speed: 0.000000 real_pulses:0 +I (196864) example: new speed:399.000000 +I (196874) example: expect speed: 0.000000 real_pulses:0 +I (196874) example: new speed:399.000000 +I (196884) example: expect speed: 0.000000 real_pulses:0 +I (196884) example: new speed:399.000000 +I (196894) example: expect speed: 0.000000 real_pulses:0 +I (196894) example: new speed:399.000000 +I (196904) example: expect speed: 0.000000 real_pulses:0 +I (196904) example: new speed:399.000000 +I (196914) example: expect speed: 0.000000 real_pulses:0 +I (196914) example: new speed:399.000000 +I (196924) example: expect speed: 0.000000 real_pulses:0 +I (196924) example: new speed:399.000000 +I (196934) example: expect speed: 0.000000 real_pulses:0 +I (196934) example: new speed:399.000000 +I (196944) example: expect speed: 0.000000 real_pulses:0 +I (196944) example: new speed:399.000000 +I (196954) example: expect speed: 0.000000 real_pulses:0 +I (196954) example: new speed:399.000000 +I (196964) example: expect speed: 0.000000 real_pulses:0 +I (196964) example: new speed:399.000000 +I (196974) example: expect speed: 0.000000 real_pulses:0 +I (196974) example: new speed:399.000000 +I (196984) example: expect speed: 0.000000 real_pulses:0 +I (196984) example: new speed:399.000000 +I (196994) example: expect speed: 0.000000 real_pulses:0 +I (196994) example: new speed:399.000000 +I (197004) example: expect speed: 0.000000 real_pulses:0 +I (197004) example: new speed:399.000000 +I (197014) example: expect speed: 0.000000 real_pulses:0 +I (197014) example: new speed:399.000000 +I (197024) example: expect speed: 0.000000 real_pulses:0 +I (197024) example: new speed:399.000000 +I (197034) example: expect speed: 0.000000 real_pulses:0 +I (197034) example: new speed:399.000000 +I (197044) example: expect speed: 0.000000 real_pulses:0 +I (197044) example: new speed:399.000000 +I (197054) example: expect speed: 0.000000 real_pulses:0 +I (197054) example: new speed:399.000000 +I (197064) example: expect speed: 0.000000 real_pulses:0 +I (197064) example: new speed:399.000000 +I (197074) example: expect speed: 0.000000 real_pulses:0 +I (197074) example: new speed:399.000000 +I (197084) example: expect speed: 0.000000 real_pulses:0 +I (197084) example: new speed:399.000000 +I (197094) example: expect speed: 0.000000 real_pulses:0 +I (197094) example: new speed:399.000000 +I (197104) example: expect speed: 0.000000 real_pulses:0 +I (197104) example: new speed:399.000000 +I (197114) example: expect speed: 0.000000 real_pulses:0 +I (197114) example: new speed:399.000000 +I (197124) example: expect speed: 0.000000 real_pulses:0 +I (197124) example: new speed:399.000000 +I (197134) example: expect speed: 0.000000 real_pulses:0 +I (197134) example: new speed:399.000000 +I (197144) example: expect speed: 0.000000 real_pulses:0 +I (197144) example: new speed:399.000000 +I (197154) example: expect speed: 0.000000 real_pulses:0 +I (197154) example: new speed:399.000000 +I (197164) example: expect speed: 0.000000 real_pulses:0 +I (197164) example: new speed:399.000000 +I (197174) example: expect speed: 0.000000 real_pulses:0 +I (197184) example: new speed:399.000000 +I (197184) example: expect speed: 0.000000 real_pulses:0 +I (197184) example: new speed:399.000000 +I (197194) example: expect speed: 0.000000 real_pulses:0 +I (197194) example: new speed:399.000000 +I (197204) example: expect speed: 0.000000 real_pulses:0 +I (197204) example: new speed:399.000000 +I (197214) example: expect speed: 0.000000 real_pulses:0 +I (197214) example: new speed:399.000000 +I (197224) example: expect speed: 0.000000 real_pulses:0 +I (197224) example: new speed:399.000000 +I (197234) example: expect speed: 0.000000 real_pulses:0 +I (197234) example: new speed:399.000000 +I (197244) example: expect speed: 0.000000 real_pulses:0 +I (197244) example: new speed:399.000000 +I (197254) example: expect speed: 0.000000 real_pulses:0 +I (197254) example: new speed:399.000000 +I (197264) example: expect speed: 0.000000 real_pulses:0 +I (197264) example: new speed:399.000000 +I (197274) example: expect speed: 0.000000 real_pulses:0 +I (197274) example: new speed:399.000000 +I (197284) example: expect speed: 0.000000 real_pulses:0 +I (197284) example: new speed:399.000000 +I (197294) example: expect speed: 0.000000 real_pulses:0 +I (197294) example: new speed:399.000000 +I (197304) example: expect speed: 0.000000 real_pulses:0 +I (197304) example: new speed:399.000000 +I (197314) example: expect speed: 0.000000 real_pulses:0 +I (197314) example: new speed:399.000000 +I (197324) example: expect speed: 0.000000 real_pulses:0 +I (197324) example: new speed:399.000000 +I (197334) example: expect speed: 0.000000 real_pulses:0 +I (197334) example: new speed:399.000000 +I (197344) example: expect speed: 0.000000 real_pulses:0 +I (197344) example: new speed:399.000000 +I (197354) example: expect speed: 0.000000 real_pulses:0 +I (197354) example: new speed:399.000000 +I (197364) example: expect speed: 0.000000 real_pulses:0 +I (197364) example: new speed:399.000000 +I (197374) example: expect speed: 0.000000 real_pulses:0 +I (197384) example: new speed:399.000000 +I (197384) example: expect speed: 0.000000 real_pulses:0 +I (197394) example: new speed:399.000000 +I (197394) example: expect speed: 0.000000 real_pulses:0 +I (197404) modbus tcp: ModBusSlave_recv() +I (197404) example: new speed:399.000000 +I (197404) modbus: ModbusSlaveProcess() +I (197404) modbus: check id... +I (197404) modbus: ok +I (197404) modbus: add: 0, length: 10 +I (197404) modbus: Read Holding Registers +I (197404) example: expect speed: 0.000000 real_pulses:0 +I (197404) example: new speed:399.000000 +I (197414) example: expect speed: 0.000000 real_pulses:0 +I (197414) example: new speed:399.000000 +I (197424) example: expect speed: 0.000000 real_pulses:0 +I (197424) example: new speed:399.000000 +I (197434) example: expect speed: 0.000000 real_pulses:0 +I (197434) example: new speed:399.000000 +I (197444) example: expect speed: 0.000000 real_pulses:0 +I (197444) example: new speed:399.000000 +I (197454) example: expect speed: 0.000000 real_pulses:0 +I (197454) example: new speed:399.000000 +I (197464) example: expect speed: 0.000000 real_pulses:0 +I (197464) example: new speed:399.000000 +I (197474) example: expect speed: 0.000000 real_pulses:0 +I (197484) example: new speed:399.000000 +I (197484) example: expect speed: 0.000000 real_pulses:0 +I (197494) example: new speed:399.000000 +I (197494) example: expect speed: 0.000000 real_pulses:0 +I (197494) example: new speed:399.000000 +I (197504) example: expect speed: 0.000000 real_pulses:0 +I (197504) example: new speed:399.000000 +I (197514) example: expect speed: 0.000000 real_pulses:0 +I (197514) example: new speed:399.000000 +I (197524) example: expect speed: 0.000000 real_pulses:0 +I (197524) example: new speed:399.000000 +I (197534) example: expect speed: 0.000000 real_pulses:0 +I (197534) example: new speed:399.000000 +I (197544) example: expect speed: 0.000000 real_pulses:0 +I (197554) example: new speed:399.000000 +I (197554) example: expect speed: 0.000000 real_pulses:0 +I (197554) example: new speed:399.000000 +I (197564) example: expect speed: 0.000000 real_pulses:0 +I (197564) example: new speed:399.000000 +I (197574) example: expect speed: 0.000000 real_pulses:0 +I (197584) example: new speed:399.000000 +I (197584) example: expect speed: 0.000000 real_pulses:0 +I (197584) example: new speed:399.000000 +I (197594) example: expect speed: 0.000000 real_pulses:0 +I (197604) example: new speed:399.000000 +I (197604) example: expect speed: 0.000000 real_pulses:0 +I (197604) example: new speed:399.000000 +I (197614) example: expect speed: 0.000000 real_pulses:0 +I (197614) example: new speed:399.000000 +I (197624) example: expect speed: 0.000000 real_pulses:0 +I (197624) example: new speed:399.000000 +I (197634) example: expect speed: 0.000000 real_pulses:0 +I (197634) example: new speed:399.000000 +I (197644) example: expect speed: 0.000000 real_pulses:0 +I (197654) example: new speed:399.000000 +I (197654) example: expect speed: 0.000000 real_pulses:0 +I (197654) example: new speed:399.000000 +I (197664) example: expect speed: 0.000000 real_pulses:0 +I (197664) example: new speed:399.000000 +I (197674) example: expect speed: 0.000000 real_pulses:0 +I (197684) example: new speed:399.000000 +I (197684) example: expect speed: 0.000000 real_pulses:0 +I (197684) example: new speed:399.000000 +I (197694) example: expect speed: 0.000000 real_pulses:0 +I (197694) example: new speed:399.000000 +I (197704) example: expect speed: 0.000000 real_pulses:0 +I (197704) example: new speed:399.000000 +I (197714) example: expect speed: 0.000000 real_pulses:0 +I (197714) example: new speed:399.000000 +I (197724) example: expect speed: 0.000000 real_pulses:0 +I (197724) example: new speed:399.000000 +I (197734) example: expect speed: 0.000000 real_pulses:0 +I (197734) example: new speed:399.000000 +I (197744) example: expect speed: 0.000000 real_pulses:0 +I (197744) example: new speed:399.000000 +I (197754) example: expect speed: 0.000000 real_pulses:0 +I (197754) example: new speed:399.000000 +I (197764) example: expect speed: 0.000000 real_pulses:0 +I (197764) example: new speed:399.000000 +I (197774) example: expect speed: 0.000000 real_pulses:0 +I (197774) example: new speed:399.000000 +I (197784) example: expect speed: 0.000000 real_pulses:0 +I (197784) example: new speed:399.000000 +I (197794) example: expect speed: 0.000000 real_pulses:0 +I (197794) example: new speed:399.000000 +I (197804) example: expect speed: 0.000000 real_pulses:0 +I (197804) example: new speed:399.000000 +I (197814) example: expect speed: 0.000000 real_pulses:0 +I (197814) example: new speed:399.000000 +I (197824) example: expect speed: 0.000000 real_pulses:0 +I (197824) example: new speed:399.000000 +I (197834) example: expect speed: 0.000000 real_pulses:0 +I (197834) example: new speed:399.000000 +I (197844) example: expect speed: 0.000000 real_pulses:0 +I (197844) example: new speed:399.000000 +I (197854) example: expect speed: 0.000000 real_pulses:0 +I (197854) example: new speed:399.000000 +I (197864) example: expect speed: 0.000000 real_pulses:0 +I (197864) example: new speed:399.000000 +I (197874) example: expect speed: 0.000000 real_pulses:0 +I (197874) example: new speed:399.000000 +I (197884) example: expect speed: 0.000000 real_pulses:0 +I (197884) example: new speed:399.000000 +I (197894) example: expect speed: 0.000000 real_pulses:0 +I (197894) example: new speed:399.000000 +I (197904) example: expect speed: 0.000000 real_pulses:0 +I (197904) example: new speed:399.000000 +I (197914) example: expect speed: 0.000000 real_pulses:0 +I (197914) example: new speed:399.000000 +I (197924) example: expect speed: 0.000000 real_pulses:0 +I (197924) example: new speed:399.000000 +I (197934) example: expect speed: 0.000000 real_pulses:0 +I (197934) example: new speed:399.000000 +I (197944) example: expect speed: 0.000000 real_pulses:0 +I (197944) example: new speed:399.000000 +I (197954) example: expect speed: 0.000000 real_pulses:0 +I (197954) example: new speed:399.000000 +I (197964) example: expect speed: 0.000000 real_pulses:0 +I (197964) example: new speed:399.000000 +I (197974) example: expect speed: 0.000000 real_pulses:0 +I (197974) example: new speed:399.000000 +I (197984) example: expect speed: 0.000000 real_pulses:0 +I (197984) example: new speed:399.000000 +I (197994) example: expect speed: 0.000000 real_pulses:0 +I (197994) example: new speed:399.000000 +I (198004) example: expect speed: 0.000000 real_pulses:0 +I (198004) example: new speed:399.000000 +I (198014) example: expect speed: 0.000000 real_pulses:0 +I (198014) example: new speed:399.000000 +I (198024) example: expect speed: 0.000000 real_pulses:0 +I (198024) example: new speed:399.000000 +I (198034) example: expect speed: 0.000000 real_pulses:0 +I (198034) example: new speed:399.000000 +I (198044) example: expect speed: 0.000000 real_pulses:0 +I (198044) example: new speed:399.000000 +I (198054) example: expect speed: 0.000000 real_pulses:0 +I (198054) example: new speed:399.000000 +I (198064) example: expect speed: 0.000000 real_pulses:0 +I (198064) example: new speed:399.000000 +I (198074) example: expect speed: 0.000000 real_pulses:0 +I (198074) example: new speed:399.000000 +I (198084) example: expect speed: 0.000000 real_pulses:0 +I (198084) example: new speed:399.000000 +I (198094) example: expect speed: 0.000000 real_pulses:0 +I (198094) example: new speed:399.000000 +I (198104) example: expect speed: 0.000000 real_pulses:0 +I (198104) example: new speed:399.000000 +I (198114) example: expect speed: 0.000000 real_pulses:0 +I (198114) example: new speed:399.000000 +I (198124) example: expect speed: 0.000000 real_pulses:0 +I (198124) example: new speed:399.000000 +I (198134) example: expect speed: 0.000000 real_pulses:0 +I (198134) example: new speed:399.000000 +I (198144) example: expect speed: 0.000000 real_pulses:0 +I (198144) example: new speed:399.000000 +I (198154) example: expect speed: 0.000000 real_pulses:0 +I (198154) example: new speed:399.000000 +I (198164) example: expect speed: 0.000000 real_pulses:0 +I (198164) example: new speed:399.000000 +I (198174) example: expect speed: 0.000000 real_pulses:0 +I (198174) example: new speed:399.000000 +I (198184) example: expect speed: 0.000000 real_pulses:0 +I (198184) example: new speed:399.000000 +I (198194) example: expect speed: 0.000000 real_pulses:0 +I (198194) example: new speed:399.000000 +I (198204) example: expect speed: 0.000000 real_pulses:0 +I (198204) example: new speed:399.000000 +I (198214) example: expect speed: 0.000000 real_pulses:0 +I (198214) example: new speed:399.000000 +I (198224) example: expect speed: 0.000000 real_pulses:0 +I (198224) example: new speed:399.000000 +I (198234) example: expect speed: 0.000000 real_pulses:0 +I (198234) example: new speed:399.000000 +I (198244) example: expect speed: 0.000000 real_pulses:0 +I (198244) example: new speed:399.000000 +I (198254) example: expect speed: 0.000000 real_pulses:0 +I (198254) example: new speed:399.000000 +I (198264) example: expect speed: 0.000000 real_pulses:0 +I (198264) example: new speed:399.000000 +I (198274) example: expect speed: 0.000000 real_pulses:0 +I (198274) example: new speed:399.000000 +I (198284) example: expect speed: 0.000000 real_pulses:0 +I (198284) example: new speed:399.000000 +I (198294) example: expect speed: 0.000000 real_pulses:0 +I (198294) example: new speed:399.000000 +I (198304) example: expect speed: 0.000000 real_pulses:0 +I (198304) example: new speed:399.000000 +I (198314) example: expect speed: 0.000000 real_pulses:0 +I (198314) example: new speed:399.000000 +I (198324) example: expect speed: 0.000000 real_pulses:0 +I (198324) example: new speed:399.000000 +I (198334) example: expect speed: 0.000000 real_pulses:0 +I (198334) example: new speed:399.000000 +I (198344) example: expect speed: 0.000000 real_pulses:0 +I (198344) example: new speed:399.000000 +I (198354) example: expect speed: 0.000000 real_pulses:0 +I (198354) example: new speed:399.000000 +I (198364) example: expect speed: 0.000000 real_pulses:0 +I (198364) example: new speed:399.000000 +I (198374) example: expect speed: 0.000000 real_pulses:0 +I (198374) example: new speed:399.000000 +I (198384) example: expect speed: 0.000000 real_pulses:0 +I (198384) example: new speed:399.000000 +I (198394) example: expect speed: 0.000000 real_pulses:0 +I (198394) example: new speed:399.000000 +I (198404) example: expect speed: 0.000000 real_pulses:0 +I (198404) example: new speed:399.000000 +I (198414) example: expect speed: 0.000000 real_pulses:0 +I (198414) example: new speed:399.000000 +I (198424) example: expect speed: 0.000000 real_pulses:0 +I (198424) example: new speed:399.000000 +I (198434) example: expect speed: 0.000000 real_pulses:0 +I (198434) example: new speed:399.000000 +I (198444) example: expect speed: 0.000000 real_pulses:0 +I (198444) example: new speed:399.000000 +I (198454) example: expect speed: 0.000000 real_pulses:0 +I (198454) example: new speed:399.000000 +I (198464) example: expect speed: 0.000000 real_pulses:0 +I (198464) example: new speed:399.000000 +I (198474) example: expect speed: 0.000000 real_pulses:0 +I (198474) example: new speed:399.000000 +I (198484) example: expect speed: 0.000000 real_pulses:0 +I (198484) example: new speed:399.000000 +I (198494) example: expect speed: 0.000000 real_pulses:0 +I (198504) example: new speed:399.000000 +I (198504) example: expect speed: 0.000000 real_pulses:0 +I (198514) example: new speed:399.000000 +I (198514) modbus tcp: ModBusSlave_recv() +I (198514) modbus: ModbusSlaveProcess() +I (198514) modbus: check id... +I (198514) modbus: ok +I (198514) modbus: add: 0, length: 10 +I (198514) modbus: Read Holding Registers +I (198514) example: expect speed: 0.000000 real_pulses:0 +I (198524) example: new speed:399.000000 +I (198524) example: expect speed: 0.000000 real_pulses:0 +I (198524) example: new speed:399.000000 +I (198534) example: expect speed: 0.000000 real_pulses:0 +I (198534) example: new speed:399.000000 +I (198544) example: expect speed: 0.000000 real_pulses:0 +I (198544) example: new speed:399.000000 +I (198554) example: expect speed: 0.000000 real_pulses:0 +I (198554) example: new speed:399.000000 +I (198564) example: expect speed: 0.000000 real_pulses:0 +I (198564) example: new speed:399.000000 +I (198574) example: expect speed: 0.000000 real_pulses:0 +I (198574) example: new speed:399.000000 +I (198584) example: expect speed: 0.000000 real_pulses:0 +I (198594) example: new speed:399.000000 +I (198594) example: expect speed: 0.000000 real_pulses:0 +I (198594) example: new speed:399.000000 +I (198604) example: expect speed: 0.000000 real_pulses:0 +I (198614) example: new speed:399.000000 +I (198614) example: expect speed: 0.000000 real_pulses:0 +I (198614) example: new speed:399.000000 +I (198624) example: expect speed: 0.000000 real_pulses:0 +I (198624) example: new speed:399.000000 +I (198634) example: expect speed: 0.000000 real_pulses:0 +I (198634) example: new speed:399.000000 +I (198644) example: expect speed: 0.000000 real_pulses:0 +I (198644) example: new speed:399.000000 +I (198654) example: expect speed: 0.000000 real_pulses:0 +I (198664) example: new speed:399.000000 +I (198664) example: expect speed: 0.000000 real_pulses:0 +I (198664) example: new speed:399.000000 +I (198674) example: expect speed: 0.000000 real_pulses:0 +I (198674) example: new speed:399.000000 +I (198684) example: expect speed: 0.000000 real_pulses:0 +I (198684) example: new speed:399.000000 +I (198694) example: expect speed: 0.000000 real_pulses:0 +I (198694) example: new speed:399.000000 +I (198704) example: expect speed: 0.000000 real_pulses:0 +I (198704) example: new speed:399.000000 +I (198714) example: expect speed: 0.000000 real_pulses:0 +I (198714) example: new speed:399.000000 +I (198724) example: expect speed: 0.000000 real_pulses:0 +I (198724) example: new speed:399.000000 +I (198734) example: expect speed: 0.000000 real_pulses:0 +I (198734) example: new speed:399.000000 +I (198744) example: expect speed: 0.000000 real_pulses:0 +I (198744) example: new speed:399.000000 +I (198754) example: expect speed: 0.000000 real_pulses:0 +I (198754) example: new speed:399.000000 +I (198764) example: expect speed: 0.000000 real_pulses:0 +I (198764) example: new speed:399.000000 +I (198774) example: expect speed: 0.000000 real_pulses:0 +I (198774) example: new speed:399.000000 +I (198784) example: expect speed: 0.000000 real_pulses:0 +I (198784) example: new speed:399.000000 +I (198794) example: expect speed: 0.000000 real_pulses:0 +I (198794) example: new speed:399.000000 +I (198804) example: expect speed: 0.000000 real_pulses:0 +I (198804) example: new speed:399.000000 +I (198814) example: expect speed: 0.000000 real_pulses:0 +I (198814) example: new speed:399.000000 +I (198824) example: expect speed: 0.000000 real_pulses:0 +I (198824) example: new speed:399.000000 +I (198834) example: expect speed: 0.000000 real_pulses:0 +I (198834) example: new speed:399.000000 +I (198844) example: expect speed: 0.000000 real_pulses:0 +I (198844) example: new speed:399.000000 +I (198854) example: expect speed: 0.000000 real_pulses:0 +I (198854) example: new speed:399.000000 +I (198864) example: expect speed: 0.000000 real_pulses:0 +I (198864) example: new speed:399.000000 +I (198874) example: expect speed: 0.000000 real_pulses:0 +I (198874) example: new speed:399.000000 +I (198884) example: expect speed: 0.000000 real_pulses:0 +I (198884) example: new speed:399.000000 +I (198894) example: expect speed: 0.000000 real_pulses:0 +I (198894) example: new speed:399.000000 +I (198904) example: expect speed: 0.000000 real_pulses:0 +I (198904) example: new speed:399.000000 +I (198914) example: expect speed: 0.000000 real_pulses:0 +I (198914) example: new speed:399.000000 +I (198924) example: expect speed: 0.000000 real_pulses:0 +I (198924) example: new speed:399.000000 +I (198934) example: expect speed: 0.000000 real_pulses:0 +I (198934) example: new speed:399.000000 +I (198944) example: expect speed: 0.000000 real_pulses:0 +I (198944) example: new speed:399.000000 +I (198954) example: expect speed: 0.000000 real_pulses:0 +I (198954) example: new speed:399.000000 +I (198964) example: expect speed: 0.000000 real_pulses:0 +I (198964) example: new speed:399.000000 +I (198974) example: expect speed: 0.000000 real_pulses:0 +I (198974) example: new speed:399.000000 +I (198984) example: expect speed: 0.000000 real_pulses:0 +I (198984) example: new speed:399.000000 +I (198994) example: expect speed: 0.000000 real_pulses:0 +I (198994) example: new speed:399.000000 +I (199004) example: expect speed: 0.000000 real_pulses:0 +I (199004) example: new speed:399.000000 +I (199014) example: expect speed: 0.000000 real_pulses:0 +I (199014) example: new speed:399.000000 +I (199024) example: expect speed: 0.000000 real_pulses:0 +I (199024) example: new speed:399.000000 +I (199034) example: expect speed: 0.000000 real_pulses:0 +I (199034) example: new speed:399.000000 +I (199044) example: expect speed: 0.000000 real_pulses:0 +I (199044) example: new speed:399.000000 +I (199054) example: expect speed: 0.000000 real_pulses:0 +I (199054) example: new speed:399.000000 +I (199064) example: expect speed: 0.000000 real_pulses:0 +I (199064) example: new speed:399.000000 +I (199074) example: expect speed: 0.000000 real_pulses:0 +I (199074) example: new speed:399.000000 +I (199084) example: expect speed: 0.000000 real_pulses:0 +I (199084) example: new speed:399.000000 +I (199094) example: expect speed: 0.000000 real_pulses:0 +I (199094) example: new speed:399.000000 +I (199104) example: expect speed: 0.000000 real_pulses:0 +I (199104) example: new speed:399.000000 +I (199114) example: expect speed: 0.000000 real_pulses:0 +I (199114) example: new speed:399.000000 +I (199124) example: expect speed: 0.000000 real_pulses:0 +I (199124) example: new speed:399.000000 +I (199134) example: expect speed: 0.000000 real_pulses:0 +I (199134) example: new speed:399.000000 +I (199144) example: expect speed: 0.000000 real_pulses:0 +I (199144) example: new speed:399.000000 +I (199154) example: expect speed: 0.000000 real_pulses:0 +I (199154) example: new speed:399.000000 +I (199164) example: expect speed: 0.000000 real_pulses:0 +I (199164) example: new speed:399.000000 +I (199174) example: expect speed: 0.000000 real_pulses:0 +I (199174) example: new speed:399.000000 +I (199184) example: expect speed: 0.000000 real_pulses:0 +I (199184) example: new speed:399.000000 +I (199194) example: expect speed: 0.000000 real_pulses:0 +I (199194) example: new speed:399.000000 +I (199204) example: expect speed: 0.000000 real_pulses:0 +I (199204) example: new speed:399.000000 +I (199214) example: expect speed: 0.000000 real_pulses:0 +I (199214) example: new speed:399.000000 +I (199224) example: expect speed: 0.000000 real_pulses:0 +I (199224) example: new speed:399.000000 +I (199234) example: expect speed: 0.000000 real_pulses:0 +I (199234) example: new speed:399.000000 +I (199244) example: expect speed: 0.000000 real_pulses:0 +I (199244) example: new speed:399.000000 +I (199254) example: expect speed: 0.000000 real_pulses:0 +I (199254) example: new speed:399.000000 +I (199264) example: expect speed: 0.000000 real_pulses:0 +I (199264) example: new speed:399.000000 +I (199274) example: expect speed: 0.000000 real_pulses:0 +I (199274) example: new speed:399.000000 +I (199284) example: expect speed: 0.000000 real_pulses:0 +I (199284) example: new speed:399.000000 +I (199294) example: expect speed: 0.000000 real_pulses:0 +I (199294) example: new speed:399.000000 +I (199304) example: expect speed: 0.000000 real_pulses:0 +I (199304) example: new speed:399.000000 +I (199314) example: expect speed: 0.000000 real_pulses:0 +I (199314) example: new speed:399.000000 +I (199324) example: expect speed: 0.000000 real_pulses:0 +I (199324) example: new speed:399.000000 +I (199334) example: expect speed: 0.000000 real_pulses:0 +I (199334) example: new speed:399.000000 +I (199344) example: expect speed: 0.000000 real_pulses:0 +I (199344) example: new speed:399.000000 +I (199354) example: expect speed: 0.000000 real_pulses:0 +I (199354) example: new speed:399.000000 +I (199364) example: expect speed: 0.000000 real_pulses:0 +I (199364) example: new speed:399.000000 +I (199374) example: expect speed: 0.000000 real_pulses:0 +I (199374) example: new speed:399.000000 +I (199384) example: expect speed: 0.000000 real_pulses:0 +I (199384) example: new speed:399.000000 +I (199394) example: expect speed: 0.000000 real_pulses:0 +I (199394) example: new speed:399.000000 +I (199404) example: expect speed: 0.000000 real_pulses:0 +I (199404) example: new speed:399.000000 +I (199414) example: expect speed: 0.000000 real_pulses:0 +I (199414) example: new speed:399.000000 +I (199424) example: expect speed: 0.000000 real_pulses:0 +I (199424) example: new speed:399.000000 +I (199434) example: expect speed: 0.000000 real_pulses:0 +I (199434) example: new speed:399.000000 +I (199444) example: expect speed: 0.000000 real_pulses:0 +I (199444) example: new speed:399.000000 +I (199454) example: expect speed: 0.000000 real_pulses:0 +I (199454) example: new speed:399.000000 +I (199464) example: expect speed: 0.000000 real_pulses:0 +I (199464) example: new speed:399.000000 +I (199474) example: expect speed: 0.000000 real_pulses:0 +I (199474) example: new speed:399.000000 +I (199484) example: expect speed: 0.000000 real_pulses:0 +I (199484) example: new speed:399.000000 +I (199494) example: expect speed: 0.000000 real_pulses:0 +I (199494) example: new speed:399.000000 +I (199504) example: expect speed: 0.000000 real_pulses:0 +I (199504) example: new speed:399.000000 +I (199514) example: expect speed: 0.000000 real_pulses:0 +I (199514) example: new speed:399.000000 +I (199524) example: expect speed: 0.000000 real_pulses:0 +I (199534) example: new speed:399.000000 +I (199534) example: expect speed: 0.000000 real_pulses:0 +I (199544) example: new speed:399.000000 +I (199544) example: expect speed: 0.000000 real_pulses:0 +I (199554) example: new speed:399.000000 +I (199554) modbus tcp: ModBusSlave_recv() +I (199554) modbus: ModbusSlaveProcess() +I (199554) modbus: check id... +I (199554) modbus: ok +I (199554) modbus: add: 0, length: 10 +I (199554) modbus: Read Holding Registers +I (199554) example: expect speed: 0.000000 real_pulses:0 +I (199564) example: new speed:399.000000 +I (199564) example: expect speed: 0.000000 real_pulses:0 +I (199564) example: new speed:399.000000 +I (199574) example: expect speed: 0.000000 real_pulses:0 +I (199574) example: new speed:399.000000 +I (199584) example: expect speed: 0.000000 real_pulses:0 +I (199584) example: new speed:399.000000 +I (199594) example: expect speed: 0.000000 real_pulses:0 +I (199594) example: new speed:399.000000 +I (199604) example: expect speed: 0.000000 real_pulses:0 +I (199604) example: new speed:399.000000 +I (199614) example: expect speed: 0.000000 real_pulses:0 +I (199624) example: new speed:399.000000 +I (199624) example: expect speed: 0.000000 real_pulses:0 +I (199634) example: new speed:399.000000 +I (199634) example: expect speed: 0.000000 real_pulses:0 +I (199634) example: new speed:399.000000 +I (199644) example: expect speed: 0.000000 real_pulses:0 +I (199644) example: new speed:399.000000 +I (199654) example: expect speed: 0.000000 real_pulses:0 +I (199654) example: new speed:399.000000 +I (199664) example: expect speed: 0.000000 real_pulses:0 +I (199664) example: new speed:399.000000 +I (199674) example: expect speed: 0.000000 real_pulses:0 +I (199684) example: new speed:399.000000 +I (199684) example: expect speed: 0.000000 real_pulses:0 +I (199684) example: new speed:399.000000 +I (199694) example: expect speed: 0.000000 real_pulses:0 +I (199694) example: new speed:399.000000 +I (199704) example: expect speed: 0.000000 real_pulses:0 +I (199704) example: new speed:399.000000 +I (199714) example: expect speed: 0.000000 real_pulses:0 +I (199714) example: new speed:399.000000 +I (199724) example: expect speed: 0.000000 real_pulses:0 +I (199724) example: new speed:399.000000 +I (199734) example: expect speed: 0.000000 real_pulses:0 +I (199734) example: new speed:399.000000 +I (199744) example: expect speed: 0.000000 real_pulses:0 +I (199744) example: new speed:399.000000 +I (199754) example: expect speed: 0.000000 real_pulses:0 +I (199754) example: new speed:399.000000 +I (199764) example: expect speed: 0.000000 real_pulses:0 +I (199764) example: new speed:399.000000 +I (199774) example: expect speed: 0.000000 real_pulses:0 +I (199774) example: new speed:399.000000 +I (199784) example: expect speed: 0.000000 real_pulses:0 +I (199784) example: new speed:399.000000 +I (199794) example: expect speed: 0.000000 real_pulses:0 +I (199794) example: new speed:399.000000 +I (199804) example: expect speed: 0.000000 real_pulses:0 +I (199804) example: new speed:399.000000 +I (199814) example: expect speed: 0.000000 real_pulses:0 +I (199814) example: new speed:399.000000 +I (199824) example: expect speed: 0.000000 real_pulses:0 +I (199824) example: new speed:399.000000 +I (199834) example: expect speed: 0.000000 real_pulses:0 +I (199834) example: new speed:399.000000 +I (199844) example: expect speed: 0.000000 real_pulses:0 +I (199844) example: new speed:399.000000 +I (199854) example: expect speed: 0.000000 real_pulses:0 +I (199854) example: new speed:399.000000 +I (199864) example: expect speed: 0.000000 real_pulses:0 +I (199864) example: new speed:399.000000 +I (199874) example: expect speed: 0.000000 real_pulses:0 +I (199874) example: new speed:399.000000 +I (199884) example: expect speed: 0.000000 real_pulses:0 +I (199884) example: new speed:399.000000 +I (199894) example: expect speed: 0.000000 real_pulses:0 +I (199894) example: new speed:399.000000 +I (199904) example: expect speed: 0.000000 real_pulses:0 +I (199904) example: new speed:399.000000 +I (199914) example: expect speed: 0.000000 real_pulses:0 +I (199914) example: new speed:399.000000 +I (199924) example: expect speed: 0.000000 real_pulses:0 +I (199924) example: new speed:399.000000 +I (199934) example: expect speed: 0.000000 real_pulses:0 +I (199934) example: new speed:399.000000 +I (199944) example: expect speed: 0.000000 real_pulses:0 +I (199944) example: new speed:399.000000 +I (199954) example: expect speed: 0.000000 real_pulses:0 +I (199954) example: new speed:399.000000 +I (199964) example: expect speed: 0.000000 real_pulses:0 +I (199964) example: new speed:399.000000 +I (199974) example: expect speed: 0.000000 real_pulses:0 +I (199974) example: new speed:399.000000 +I (199984) example: expect speed: 0.000000 real_pulses:0 +I (199984) example: new speed:399.000000 +I (199994) example: expect speed: 0.000000 real_pulses:0 +I (199994) example: new speed:399.000000 +I (200004) example: expect speed: 0.000000 real_pulses:0 +I (200004) example: new speed:399.000000 +I (200014) example: expect speed: 0.000000 real_pulses:0 +I (200014) example: new speed:399.000000 +I (200024) example: expect speed: 0.000000 real_pulses:0 +I (200024) example: new speed:399.000000 +I (200034) example: expect speed: 0.000000 real_pulses:0 +I (200034) example: new speed:399.000000 +I (200044) example: expect speed: 0.000000 real_pulses:0 +I (200044) example: new speed:399.000000 +I (200054) example: expect speed: 0.000000 real_pulses:0 +I (200054) example: new speed:399.000000 +I (200064) example: expect speed: 0.000000 real_pulses:0 +I (200064) example: new speed:399.000000 +I (200074) example: expect speed: 0.000000 real_pulses:0 +I (200074) example: new speed:399.000000 +I (200084) example: expect speed: 0.000000 real_pulses:0 +I (200084) example: new speed:399.000000 +I (200094) example: expect speed: 0.000000 real_pulses:0 +I (200094) example: new speed:399.000000 +I (200104) example: expect speed: 0.000000 real_pulses:0 +I (200104) example: new speed:399.000000 +I (200114) example: expect speed: 0.000000 real_pulses:0 +I (200114) example: new speed:399.000000 +I (200124) example: expect speed: 0.000000 real_pulses:0 +I (200124) example: new speed:399.000000 +I (200134) example: expect speed: 0.000000 real_pulses:0 +I (200134) example: new speed:399.000000 +I (200144) example: expect speed: 0.000000 real_pulses:0 +I (200144) example: new speed:399.000000 +I (200154) example: expect speed: 0.000000 real_pulses:0 +I (200154) example: new speed:399.000000 +I (200164) example: expect speed: 0.000000 real_pulses:0 +I (200164) example: new speed:399.000000 +I (200174) example: expect speed: 0.000000 real_pulses:0 +I (200174) example: new speed:399.000000 +I (200184) example: expect speed: 0.000000 real_pulses:0 +I (200184) example: new speed:399.000000 +I (200194) example: expect speed: 0.000000 real_pulses:0 +I (200194) example: new speed:399.000000 +I (200204) example: expect speed: 0.000000 real_pulses:0 +I (200204) example: new speed:399.000000 +I (200214) example: expect speed: 0.000000 real_pulses:0 +I (200214) example: new speed:399.000000 +I (200224) example: expect speed: 0.000000 real_pulses:0 +I (200224) example: new speed:399.000000 +I (200234) example: expect speed: 0.000000 real_pulses:0 +I (200234) example: new speed:399.000000 +I (200244) example: expect speed: 0.000000 real_pulses:0 +I (200244) example: new speed:399.000000 +I (200254) example: expect speed: 0.000000 real_pulses:0 +I (200254) example: new speed:399.000000 +I (200264) example: expect speed: 0.000000 real_pulses:0 +I (200264) example: new speed:399.000000 +I (200274) example: expect speed: 0.000000 real_pulses:0 +I (200274) example: new speed:399.000000 +I (200284) example: expect speed: 0.000000 real_pulses:0 +I (200284) example: new speed:399.000000 +I (200294) example: expect speed: 0.000000 real_pulses:0 +I (200294) example: new speed:399.000000 +I (200304) example: expect speed: 0.000000 real_pulses:0 +I (200304) example: new speed:399.000000 +I (200314) example: expect speed: 0.000000 real_pulses:0 +I (200314) example: new speed:399.000000 +I (200324) example: expect speed: 0.000000 real_pulses:0 +I (200324) example: new speed:399.000000 +I (200334) example: expect speed: 0.000000 real_pulses:0 +I (200334) example: new speed:399.000000 +I (200344) example: expect speed: 0.000000 real_pulses:0 +I (200344) example: new speed:399.000000 +I (200354) example: expect speed: 0.000000 real_pulses:0 +I (200354) example: new speed:399.000000 +I (200364) example: expect speed: 0.000000 real_pulses:0 +I (200364) example: new speed:399.000000 +I (200374) example: expect speed: 0.000000 real_pulses:0 +I (200374) example: new speed:399.000000 +I (200384) example: expect speed: 0.000000 real_pulses:0 +I (200384) example: new speed:399.000000 +I (200394) example: expect speed: 0.000000 real_pulses:0 +I (200394) example: new speed:399.000000 +I (200404) example: expect speed: 0.000000 real_pulses:0 +I (200404) example: new speed:399.000000 +I (200414) example: expect speed: 0.000000 real_pulses:0 +I (200414) example: new speed:399.000000 +I (200424) example: expect speed: 0.000000 real_pulses:0 +I (200424) example: new speed:399.000000 +I (200434) example: expect speed: 0.000000 real_pulses:0 +I (200434) example: new speed:399.000000 +I (200444) example: expect speed: 0.000000 real_pulses:0 +I (200444) example: new speed:399.000000 +I (200454) example: expect speed: 0.000000 real_pulses:0 +I (200454) example: new speed:399.000000 +I (200464) example: expect speed: 0.000000 real_pulses:0 +I (200464) example: new speed:399.000000 +I (200474) example: expect speed: 0.000000 real_pulses:0 +I (200474) example: new speed:399.000000 +I (200484) example: expect speed: 0.000000 real_pulses:0 +I (200484) example: new speed:399.000000 +I (200494) example: expect speed: 0.000000 real_pulses:0 +I (200494) example: new speed:399.000000 +I (200504) example: expect speed: 0.000000 real_pulses:0 +I (200504) example: new speed:399.000000 +I (200514) example: expect speed: 0.000000 real_pulses:0 +I (200514) example: new speed:399.000000 +I (200524) example: expect speed: 0.000000 real_pulses:0 +I (200524) example: new speed:399.000000 +I (200534) example: expect speed: 0.000000 real_pulses:0 +I (200534) example: new speed:399.000000 +I (200544) example: expect speed: 0.000000 real_pulses:0 +I (200544) example: new speed:399.000000 +I (200554) example: expect speed: 0.000000 real_pulses:0 +I (200554) example: new speed:399.000000 +I (200564) example: expect speed: 0.000000 real_pulses:0 +I (200564) example: new speed:399.000000 +I (200574) example: expect speed: 0.000000 real_pulses:0 +I (200574) example: new speed:399.000000 +I (200584) example: expect speed: 0.000000 real_pulses:0 +I (200584) example: new speed:399.000000 +I (200594) example: expect speed: 0.000000 real_pulses:0 +I (200594) example: new speed:399.000000 +I (200604) example: expect speed: 0.000000 real_pulses:0 +I (200604) example: new speed:399.000000 +I (200614) example: expect speed: 0.000000 real_pulses:0 +I (200614) example: new speed:399.000000 +I (200624) example: expect speed: 0.000000 real_pulses:0 +I (200624) example: new speed:399.000000 +I (200634) example: expect speed: 0.000000 real_pulses:0 +I (200634) example: new speed:399.000000 +I (200654) example: expect speed: 0.000000 real_pulses:0 +I (200654) example: new speed:399.000000 +I (200654) modbus tcp: ModBusSlave_recv() +I (200654) example: expect speed: 0.000000 real_pulses:0 +I (200654) modbus: ModbusSlaveProcess() +I (200664) example: new speed:399.000000 +I (200664) modbus: check id... +I (200664) modbus: ok +I (200664) modbus: add: 0, length: 10 +I (200664) modbus: Read Holding Registers +I (200664) example: expect speed: 0.000000 real_pulses:0 +I (200674) example: new speed:399.000000 +I (200674) example: expect speed: 0.000000 real_pulses:0 +I (200674) example: new speed:399.000000 +I (200684) example: expect speed: 0.000000 real_pulses:0 +I (200684) example: new speed:399.000000 +I (200694) example: expect speed: 0.000000 real_pulses:0 +I (200694) example: new speed:399.000000 +I (200704) example: expect speed: 0.000000 real_pulses:0 +I (200704) example: new speed:399.000000 +I (200714) example: expect speed: 0.000000 real_pulses:0 +I (200714) example: new speed:399.000000 +I (200724) example: expect speed: 0.000000 real_pulses:0 +I (200724) example: new speed:399.000000 +I (200734) example: expect speed: 0.000000 real_pulses:0 +I (200734) example: new speed:399.000000 +I (200744) example: expect speed: 0.000000 real_pulses:0 +I (200744) example: new speed:399.000000 +I (200754) example: expect speed: 0.000000 real_pulses:0 +I (200764) example: new speed:399.000000 +I (200764) example: expect speed: 0.000000 real_pulses:0 +I (200774) example: new speed:399.000000 +I (200774) example: expect speed: 0.000000 real_pulses:0 +I (200774) example: new speed:399.000000 +I (200784) example: expect speed: 0.000000 real_pulses:0 +I (200784) example: new speed:399.000000 +I (200794) example: expect speed: 0.000000 real_pulses:0 +I (200794) example: new speed:399.000000 +I (200804) example: expect speed: 0.000000 real_pulses:0 +I (200804) example: new speed:399.000000 +I (200814) example: expect speed: 0.000000 real_pulses:0 +I (200824) example: new speed:399.000000 +I (200824) example: expect speed: 0.000000 real_pulses:0 +I (200824) example: new speed:399.000000 +I (200834) example: expect speed: 0.000000 real_pulses:0 +I (200834) example: new speed:399.000000 +I (200844) example: expect speed: 0.000000 real_pulses:0 +I (200844) example: new speed:399.000000 +I (200854) example: expect speed: 0.000000 real_pulses:0 +I (200854) example: new speed:399.000000 +I (200864) example: expect speed: 0.000000 real_pulses:0 +I (200864) example: new speed:399.000000 +I (200874) example: expect speed: 0.000000 real_pulses:0 +I (200874) example: new speed:399.000000 +I (200884) example: expect speed: 0.000000 real_pulses:0 +I (200884) example: new speed:399.000000 +I (200894) example: expect speed: 0.000000 real_pulses:0 +I (200894) example: new speed:399.000000 +I (200904) example: expect speed: 0.000000 real_pulses:0 +I (200904) example: new speed:399.000000 +I (200914) example: expect speed: 0.000000 real_pulses:0 +I (200914) example: new speed:399.000000 +I (200924) example: expect speed: 0.000000 real_pulses:0 +I (200924) example: new speed:399.000000 +I (200934) example: expect speed: 0.000000 real_pulses:0 +I (200934) example: new speed:399.000000 +I (200944) example: expect speed: 0.000000 real_pulses:0 +I (200944) example: new speed:399.000000 +I (200954) example: expect speed: 0.000000 real_pulses:0 +I (200954) example: new speed:399.000000 +I (200964) example: expect speed: 0.000000 real_pulses:0 +I (200964) example: new speed:399.000000 +I (200974) example: expect speed: 0.000000 real_pulses:0 +I (200974) example: new speed:399.000000 +I (200984) example: expect speed: 0.000000 real_pulses:0 +I (200984) example: new speed:399.000000 +I (200994) example: expect speed: 0.000000 real_pulses:0 +I (200994) example: new speed:399.000000 +I (201004) example: expect speed: 0.000000 real_pulses:0 +I (201004) example: new speed:399.000000 +I (201014) example: expect speed: 0.000000 real_pulses:0 +I (201014) example: new speed:399.000000 +I (201024) example: expect speed: 0.000000 real_pulses:0 +I (201024) example: new speed:399.000000 +I (201034) example: expect speed: 0.000000 real_pulses:0 +I (201034) example: new speed:399.000000 +I (201044) example: expect speed: 0.000000 real_pulses:0 +I (201044) example: new speed:399.000000 +I (201054) example: expect speed: 0.000000 real_pulses:0 +I (201054) example: new speed:399.000000 +I (201064) example: expect speed: 0.000000 real_pulses:0 +I (201064) example: new speed:399.000000 +I (201074) example: expect speed: 0.000000 real_pulses:0 +I (201074) example: new speed:399.000000 +I (201084) example: expect speed: 0.000000 real_pulses:0 +I (201084) example: new speed:399.000000 +I (201094) example: expect speed: 0.000000 real_pulses:0 +I (201094) example: new speed:399.000000 +I (201104) example: expect speed: 0.000000 real_pulses:0 +I (201104) example: new speed:399.000000 +I (201114) example: expect speed: 0.000000 real_pulses:0 +I (201114) example: new speed:399.000000 +I (201124) example: expect speed: 0.000000 real_pulses:0 +I (201124) example: new speed:399.000000 +I (201134) example: expect speed: 0.000000 real_pulses:0 +I (201134) example: new speed:399.000000 +I (201144) example: expect speed: 0.000000 real_pulses:0 +I (201144) example: new speed:399.000000 +I (201154) example: expect speed: 0.000000 real_pulses:0 +I (201154) example: new speed:399.000000 +I (201164) example: expect speed: 0.000000 real_pulses:0 +I (201164) example: new speed:399.000000 +I (201174) example: expect speed: 0.000000 real_pulses:0 +I (201174) example: new speed:399.000000 +I (201184) example: expect speed: 0.000000 real_pulses:0 +I (201184) example: new speed:399.000000 +I (201194) example: expect speed: 0.000000 real_pulses:0 +I (201194) example: new speed:399.000000 +I (201204) example: expect speed: 0.000000 real_pulses:0 +I (201204) example: new speed:399.000000 +I (201214) example: expect speed: 0.000000 real_pulses:0 +I (201214) example: new speed:399.000000 +I (201224) example: expect speed: 0.000000 real_pulses:0 +I (201224) example: new speed:399.000000 +I (201234) example: expect speed: 0.000000 real_pulses:0 +I (201234) example: new speed:399.000000 +I (201244) example: expect speed: 0.000000 real_pulses:0 +I (201244) example: new speed:399.000000 +I (201254) example: expect speed: 0.000000 real_pulses:0 +I (201254) example: new speed:399.000000 +I (201264) example: expect speed: 0.000000 real_pulses:0 +I (201264) example: new speed:399.000000 +I (201274) example: expect speed: 0.000000 real_pulses:0 +I (201274) example: new speed:399.000000 +I (201284) example: expect speed: 0.000000 real_pulses:0 +I (201284) example: new speed:399.000000 +I (201294) example: expect speed: 0.000000 real_pulses:0 +I (201294) example: new speed:399.000000 +I (201304) example: expect speed: 0.000000 real_pulses:0 +I (201304) example: new speed:399.000000 +I (201314) example: expect speed: 0.000000 real_pulses:0 +I (201314) example: new speed:399.000000 +I (201324) example: expect speed: 0.000000 real_pulses:0 +I (201324) example: new speed:399.000000 +I (201334) example: expect speed: 0.000000 real_pulses:0 +I (201334) example: new speed:399.000000 +I (201344) example: expect speed: 0.000000 real_pulses:0 +I (201344) example: new speed:399.000000 +I (201354) example: expect speed: 0.000000 real_pulses:0 +I (201354) example: new speed:399.000000 +I (201364) example: expect speed: 0.000000 real_pulses:0 +I (201364) example: new speed:399.000000 +I (201374) example: expect speed: 0.000000 real_pulses:0 +I (201374) example: new speed:399.000000 +I (201384) example: expect speed: 0.000000 real_pulses:0 +I (201384) example: new speed:399.000000 +I (201394) example: expect speed: 0.000000 real_pulses:0 +I (201394) example: new speed:399.000000 +I (201404) example: expect speed: 0.000000 real_pulses:0 +I (201404) example: new speed:399.000000 +I (201414) example: expect speed: 0.000000 real_pulses:0 +I (201414) example: new speed:399.000000 +I (201424) example: expect speed: 0.000000 real_pulses:0 +I (201424) example: new speed:399.000000 +I (201434) example: expect speed: 0.000000 real_pulses:0 +I (201434) example: new speed:399.000000 +I (201444) example: expect speed: 0.000000 real_pulses:0 +I (201444) example: new speed:399.000000 +I (201454) example: expect speed: 0.000000 real_pulses:0 +I (201454) example: new speed:399.000000 +I (201464) example: expect speed: 0.000000 real_pulses:0 +I (201464) example: new speed:399.000000 +I (201474) example: expect speed: 0.000000 real_pulses:0 +I (201474) example: new speed:399.000000 +I (201484) example: expect speed: 0.000000 real_pulses:0 +I (201484) example: new speed:399.000000 +I (201494) example: expect speed: 0.000000 real_pulses:0 +I (201494) example: new speed:399.000000 +I (201504) example: expect speed: 0.000000 real_pulses:0 +I (201504) example: new speed:399.000000 +I (201514) example: expect speed: 0.000000 real_pulses:0 +I (201514) example: new speed:399.000000 +I (201524) example: expect speed: 0.000000 real_pulses:0 +I (201524) example: new speed:399.000000 +I (201534) example: expect speed: 0.000000 real_pulses:0 +I (201534) example: new speed:399.000000 +I (201544) example: expect speed: 0.000000 real_pulses:0 +I (201544) example: new speed:399.000000 +I (201554) example: expect speed: 0.000000 real_pulses:0 +I (201554) example: new speed:399.000000 +I (201564) example: expect speed: 0.000000 real_pulses:0 +I (201564) example: new speed:399.000000 +I (201574) example: expect speed: 0.000000 real_pulses:0 +I (201584) example: new speed:399.000000 +I (201584) example: expect speed: 0.000000 real_pulses:0 +I (201594) example: new speed:399.000000 +I (201594) modbus tcp: ModBusSlave_recv() +I (201594) modbus: ModbusSlaveProcess() +I (201594) modbus: check id... +I (201594) modbus: ok +I (201594) modbus: add: 0, length: 10 +I (201594) modbus: Read Holding Registers +I (201594) example: expect speed: 0.000000 real_pulses:0 +I (201604) example: new speed:399.000000 +I (201604) example: expect speed: 0.000000 real_pulses:0 +I (201604) example: new speed:399.000000 +I (201614) example: expect speed: 0.000000 real_pulses:0 +I (201614) example: new speed:399.000000 +I (201624) example: expect speed: 0.000000 real_pulses:0 +I (201624) example: new speed:399.000000 +I (201634) example: expect speed: 0.000000 real_pulses:0 +I (201634) example: new speed:399.000000 +I (201644) example: expect speed: 0.000000 real_pulses:0 +I (201654) example: new speed:399.000000 +I (201654) example: expect speed: 0.000000 real_pulses:0 +I (201654) example: new speed:399.000000 +I (201664) example: expect speed: 0.000000 real_pulses:0 +I (201664) example: new speed:399.000000 +I (201674) example: expect speed: 0.000000 real_pulses:0 +I (201674) example: new speed:399.000000 +I (201684) example: expect speed: 0.000000 real_pulses:0 +I (201684) example: new speed:399.000000 +I (201694) example: expect speed: 0.000000 real_pulses:0 +I (201704) example: new speed:399.000000 +I (201704) example: expect speed: 0.000000 real_pulses:0 +I (201714) example: new speed:399.000000 +I (201714) example: expect speed: 0.000000 real_pulses:0 +I (201714) example: new speed:399.000000 +I (201724) example: expect speed: 0.000000 real_pulses:0 +I (201724) example: new speed:399.000000 +I (201734) example: expect speed: 0.000000 real_pulses:0 +I (201734) example: new speed:399.000000 +I (201744) example: expect speed: 0.000000 real_pulses:0 +I (201744) example: new speed:399.000000 +I (201754) example: expect speed: 0.000000 real_pulses:0 +I (201754) example: new speed:399.000000 +I (201764) example: expect speed: 0.000000 real_pulses:0 +I (201764) example: new speed:399.000000 +I (201774) example: expect speed: 0.000000 real_pulses:0 +I (201774) example: new speed:399.000000 +I (201784) example: expect speed: 0.000000 real_pulses:0 +I (201784) example: new speed:399.000000 +I (201794) example: expect speed: 0.000000 real_pulses:0 +I (201794) example: new speed:399.000000 +I (201804) example: expect speed: 0.000000 real_pulses:0 +I (201804) example: new speed:399.000000 +I (201814) example: expect speed: 0.000000 real_pulses:0 +I (201814) example: new speed:399.000000 +I (201824) example: expect speed: 0.000000 real_pulses:0 +I (201824) example: new speed:399.000000 +I (201834) example: expect speed: 0.000000 real_pulses:0 +I (201834) example: new speed:399.000000 +I (201844) example: expect speed: 0.000000 real_pulses:0 +I (201844) example: new speed:399.000000 +I (201854) example: expect speed: 0.000000 real_pulses:0 +I (201854) example: new speed:399.000000 +I (201864) example: expect speed: 0.000000 real_pulses:0 +I (201864) example: new speed:399.000000 +I (201874) example: expect speed: 0.000000 real_pulses:0 +I (201874) example: new speed:399.000000 +I (201884) example: expect speed: 0.000000 real_pulses:0 +I (201884) example: new speed:399.000000 +I (201894) example: expect speed: 0.000000 real_pulses:0 +I (201894) example: new speed:399.000000 +I (201904) example: expect speed: 0.000000 real_pulses:0 +I (201904) example: new speed:399.000000 +I (201914) example: expect speed: 0.000000 real_pulses:0 +I (201914) example: new speed:399.000000 +I (201924) example: expect speed: 0.000000 real_pulses:0 +I (201924) example: new speed:399.000000 +I (201934) example: expect speed: 0.000000 real_pulses:0 +I (201934) example: new speed:399.000000 +I (201944) example: expect speed: 0.000000 real_pulses:0 +I (201944) example: new speed:399.000000 +I (201954) example: expect speed: 0.000000 real_pulses:0 +I (201954) example: new speed:399.000000 +I (201964) example: expect speed: 0.000000 real_pulses:0 +I (201964) example: new speed:399.000000 +I (201974) example: expect speed: 0.000000 real_pulses:0 +I (201974) example: new speed:399.000000 +I (201984) example: expect speed: 0.000000 real_pulses:0 +I (201984) example: new speed:399.000000 +I (201994) example: expect speed: 0.000000 real_pulses:0 +I (201994) example: new speed:399.000000 +I (202004) example: expect speed: 0.000000 real_pulses:0 +I (202004) example: new speed:399.000000 +I (202014) example: expect speed: 0.000000 real_pulses:0 +I (202014) example: new speed:399.000000 +I (202024) example: expect speed: 0.000000 real_pulses:0 +I (202024) example: new speed:399.000000 +I (202034) example: expect speed: 0.000000 real_pulses:0 +I (202034) example: new speed:399.000000 +I (202044) example: expect speed: 0.000000 real_pulses:0 +I (202044) example: new speed:399.000000 +I (202054) example: expect speed: 0.000000 real_pulses:0 +I (202054) example: new speed:399.000000 +I (202064) example: expect speed: 0.000000 real_pulses:0 +I (202064) example: new speed:399.000000 +I (202074) example: expect speed: 0.000000 real_pulses:0 +I (202074) example: new speed:399.000000 +I (202084) example: expect speed: 0.000000 real_pulses:0 +I (202084) example: new speed:399.000000 +I (202094) example: expect speed: 0.000000 real_pulses:0 +I (202094) example: new speed:399.000000 +I (202104) example: expect speed: 0.000000 real_pulses:0 +I (202104) example: new speed:399.000000 +I (202114) example: expect speed: 0.000000 real_pulses:0 +I (202114) example: new speed:399.000000 +I (202124) example: expect speed: 0.000000 real_pulses:0 +I (202124) example: new speed:399.000000 +I (202134) example: expect speed: 0.000000 real_pulses:0 +I (202134) example: new speed:399.000000 +I (202144) example: expect speed: 0.000000 real_pulses:0 +I (202144) example: new speed:399.000000 +I (202154) example: expect speed: 0.000000 real_pulses:0 +I (202154) example: new speed:399.000000 +I (202164) example: expect speed: 0.000000 real_pulses:0 +I (202164) example: new speed:399.000000 +I (202174) example: expect speed: 0.000000 real_pulses:0 +I (202174) example: new speed:399.000000 +I (202184) example: expect speed: 0.000000 real_pulses:0 +I (202184) example: new speed:399.000000 +I (202194) example: expect speed: 0.000000 real_pulses:0 +I (202194) example: new speed:399.000000 +I (202204) example: expect speed: 0.000000 real_pulses:0 +I (202204) example: new speed:399.000000 +I (202214) example: expect speed: 0.000000 real_pulses:0 +I (202214) example: new speed:399.000000 +I (202224) example: expect speed: 0.000000 real_pulses:0 +I (202224) example: new speed:399.000000 +I (202234) example: expect speed: 0.000000 real_pulses:0 +I (202234) example: new speed:399.000000 +I (202244) example: expect speed: 0.000000 real_pulses:0 +I (202244) example: new speed:399.000000 +I (202254) example: expect speed: 0.000000 real_pulses:0 +I (202254) example: new speed:399.000000 +I (202264) example: expect speed: 0.000000 real_pulses:0 +I (202264) example: new speed:399.000000 +I (202274) example: expect speed: 0.000000 real_pulses:0 +I (202274) example: new speed:399.000000 +I (202284) example: expect speed: 0.000000 real_pulses:0 +I (202284) example: new speed:399.000000 +I (202294) example: expect speed: 0.000000 real_pulses:0 +I (202294) example: new speed:399.000000 +I (202304) example: expect speed: 0.000000 real_pulses:0 +I (202304) example: new speed:399.000000 +I (202314) example: expect speed: 0.000000 real_pulses:0 +I (202314) example: new speed:399.000000 +I (202324) example: expect speed: 0.000000 real_pulses:0 +I (202324) example: new speed:399.000000 +I (202334) example: expect speed: 0.000000 real_pulses:0 +I (202334) example: new speed:399.000000 +I (202344) example: expect speed: 0.000000 real_pulses:0 +I (202344) example: new speed:399.000000 +I (202354) example: expect speed: 0.000000 real_pulses:0 +I (202354) example: new speed:399.000000 +I (202364) example: expect speed: 0.000000 real_pulses:0 +I (202364) example: new speed:399.000000 +I (202374) example: expect speed: 0.000000 real_pulses:0 +I (202374) example: new speed:399.000000 +I (202384) example: expect speed: 0.000000 real_pulses:0 +I (202384) example: new speed:399.000000 +I (202394) example: expect speed: 0.000000 real_pulses:0 +I (202394) example: new speed:399.000000 +I (202404) example: expect speed: 0.000000 real_pulses:0 +I (202404) example: new speed:399.000000 +I (202414) example: expect speed: 0.000000 real_pulses:0 +I (202414) example: new speed:399.000000 +I (202424) example: expect speed: 0.000000 real_pulses:0 +I (202424) example: new speed:399.000000 +I (202434) example: expect speed: 0.000000 real_pulses:0 +I (202434) example: new speed:399.000000 +I (202444) example: expect speed: 0.000000 real_pulses:0 +I (202444) example: new speed:399.000000 +I (202454) example: expect speed: 0.000000 real_pulses:0 +I (202454) example: new speed:399.000000 +I (202464) example: expect speed: 0.000000 real_pulses:0 +I (202464) example: new speed:399.000000 +I (202474) example: expect speed: 0.000000 real_pulses:0 +I (202474) example: new speed:399.000000 +I (202484) example: expect speed: 0.000000 real_pulses:0 +I (202484) example: new speed:399.000000 +I (202494) example: expect speed: 0.000000 real_pulses:0 +I (202494) example: new speed:399.000000 +I (202504) example: expect speed: 0.000000 real_pulses:0 +I (202504) example: new speed:399.000000 +I (202514) example: expect speed: 0.000000 real_pulses:0 +I (202514) example: new speed:399.000000 +I (202524) example: expect speed: 0.000000 real_pulses:0 +I (202524) example: new speed:399.000000 +I (202534) example: expect speed: 0.000000 real_pulses:0 +I (202534) example: new speed:399.000000 +I (202544) example: expect speed: 0.000000 real_pulses:0 +I (202544) example: new speed:399.000000 +I (202554) example: expect speed: 0.000000 real_pulses:0 +I (202554) example: new speed:399.000000 +I (202564) example: expect speed: 0.000000 real_pulses:0 +I (202564) example: new speed:399.000000 +I (202574) example: expect speed: 0.000000 real_pulses:0 +I (202574) example: new speed:399.000000 +I (202584) example: expect speed: 0.000000 real_pulses:0 +I (202584) example: new speed:399.000000 +I (202594) example: expect speed: 0.000000 real_pulses:0 +I (202604) example: new speed:399.000000 +I (202604) modbus tcp: ModBusSlave_recv() +I (202604) modbus: ModbusSlaveProcess() +I (202604) modbus: check id... +I (202604) modbus: ok +I (202604) modbus: add: 0, length: 10 +I (202604) modbus: Read Holding Registers +I (202604) example: expect speed: 0.000000 real_pulses:0 +I (202614) example: new speed:399.000000 +I (202614) example: expect speed: 0.000000 real_pulses:0 +I (202614) example: new speed:399.000000 +I (202624) example: expect speed: 0.000000 real_pulses:0 +I (202624) example: new speed:399.000000 +I (202634) example: expect speed: 0.000000 real_pulses:0 +I (202634) example: new speed:399.000000 +I (202644) example: expect speed: 0.000000 real_pulses:0 +I (202644) example: new speed:399.000000 +I (202654) example: expect speed: 0.000000 real_pulses:0 +I (202654) example: new speed:399.000000 +I (202664) example: expect speed: 0.000000 real_pulses:0 +I (202674) example: new speed:399.000000 +I (202674) example: expect speed: 0.000000 real_pulses:0 +I (202674) example: new speed:399.000000 +I (202684) example: expect speed: 0.000000 real_pulses:0 +I (202684) example: new speed:399.000000 +I (202694) example: expect speed: 0.000000 real_pulses:0 +I (202694) example: new speed:399.000000 +I (202704) example: expect speed: 0.000000 real_pulses:0 +I (202704) example: new speed:399.000000 +I (202714) example: expect speed: 0.000000 real_pulses:0 +I (202724) example: new speed:399.000000 +I (202724) example: expect speed: 0.000000 real_pulses:0 +I (202724) example: new speed:399.000000 +I (202734) example: expect speed: 0.000000 real_pulses:0 +I (202744) example: new speed:399.000000 +I (202744) example: expect speed: 0.000000 real_pulses:0 +I (202754) example: new speed:399.000000 +I (202754) example: expect speed: 0.000000 real_pulses:0 +I (202764) example: new speed:399.000000 +I (202764) example: expect speed: 0.000000 real_pulses:0 +I (202764) example: new speed:399.000000 +I (202774) example: expect speed: 0.000000 real_pulses:0 +I (202774) example: new speed:399.000000 +I (202784) example: expect speed: 0.000000 real_pulses:0 +I (202784) example: new speed:399.000000 +I (202794) example: expect speed: 0.000000 real_pulses:0 +I (202794) example: new speed:399.000000 +I (202804) example: expect speed: 0.000000 real_pulses:0 +I (202804) example: new speed:399.000000 +I (202814) example: expect speed: 0.000000 real_pulses:0 +I (202814) example: new speed:399.000000 +I (202824) example: expect speed: 0.000000 real_pulses:0 +I (202824) example: new speed:399.000000 +I (202834) example: expect speed: 0.000000 real_pulses:0 +I (202834) example: new speed:399.000000 +I (202844) example: expect speed: 0.000000 real_pulses:0 +I (202844) example: new speed:399.000000 +I (202854) example: expect speed: 0.000000 real_pulses:0 +I (202854) example: new speed:399.000000 +I (202864) example: expect speed: 0.000000 real_pulses:0 +I (202864) example: new speed:399.000000 +I (202874) example: expect speed: 0.000000 real_pulses:0 +I (202874) example: new speed:399.000000 +I (202884) example: expect speed: 0.000000 real_pulses:0 +I (202884) example: new speed:399.000000 +I (202894) example: expect speed: 0.000000 real_pulses:0 +I (202894) example: new speed:399.000000 +I (202904) example: expect speed: 0.000000 real_pulses:0 +I (202904) example: new speed:399.000000 +I (202914) example: expect speed: 0.000000 real_pulses:0 +I (202914) example: new speed:399.000000 +I (202924) example: expect speed: 0.000000 real_pulses:0 +I (202924) example: new speed:399.000000 +I (202934) example: expect speed: 0.000000 real_pulses:0 +I (202934) example: new speed:399.000000 +I (202944) example: expect speed: 0.000000 real_pulses:0 +I (202944) example: new speed:399.000000 +I (202954) example: expect speed: 0.000000 real_pulses:0 +I (202954) example: new speed:399.000000 +I (202964) example: expect speed: 0.000000 real_pulses:0 +I (202964) example: new speed:399.000000 +I (202974) example: expect speed: 0.000000 real_pulses:0 +I (202974) example: new speed:399.000000 +I (202984) example: expect speed: 0.000000 real_pulses:0 +I (202984) example: new speed:399.000000 +I (202994) example: expect speed: 0.000000 real_pulses:0 +I (202994) example: new speed:399.000000 +I (203004) example: expect speed: 0.000000 real_pulses:0 +I (203004) example: new speed:399.000000 +I (203014) example: expect speed: 0.000000 real_pulses:0 +I (203014) example: new speed:399.000000 +I (203024) example: expect speed: 0.000000 real_pulses:0 +I (203024) example: new speed:399.000000 +I (203034) example: expect speed: 0.000000 real_pulses:0 +I (203034) example: new speed:399.000000 +I (203044) example: expect speed: 0.000000 real_pulses:0 +I (203044) example: new speed:399.000000 +I (203054) example: expect speed: 0.000000 real_pulses:0 +I (203054) example: new speed:399.000000 +I (203064) example: expect speed: 0.000000 real_pulses:0 +I (203064) example: new speed:399.000000 +I (203074) example: expect speed: 0.000000 real_pulses:0 +I (203074) example: new speed:399.000000 +I (203084) example: expect speed: 0.000000 real_pulses:0 +I (203084) example: new speed:399.000000 +I (203094) example: expect speed: 0.000000 real_pulses:0 +I (203094) example: new speed:399.000000 +I (203104) example: expect speed: 0.000000 real_pulses:0 +I (203104) example: new speed:399.000000 +I (203114) example: expect speed: 0.000000 real_pulses:0 +I (203114) example: new speed:399.000000 +I (203124) example: expect speed: 0.000000 real_pulses:0 +I (203124) example: new speed:399.000000 +I (203134) example: expect speed: 0.000000 real_pulses:0 +I (203134) example: new speed:399.000000 +I (203144) example: expect speed: 0.000000 real_pulses:0 +I (203144) example: new speed:399.000000 +I (203154) example: expect speed: 0.000000 real_pulses:0 +I (203154) example: new speed:399.000000 +I (203164) example: expect speed: 0.000000 real_pulses:0 +I (203164) example: new speed:399.000000 +I (203174) example: expect speed: 0.000000 real_pulses:0 +I (203174) example: new speed:399.000000 +I (203184) example: expect speed: 0.000000 real_pulses:0 +I (203184) example: new speed:399.000000 +I (203194) example: expect speed: 0.000000 real_pulses:0 +I (203194) example: new speed:399.000000 +I (203204) example: expect speed: 0.000000 real_pulses:0 +I (203204) example: new speed:399.000000 +I (203214) example: expect speed: 0.000000 real_pulses:0 +I (203214) example: new speed:399.000000 +I (203224) example: expect speed: 0.000000 real_pulses:0 +I (203224) example: new speed:399.000000 +I (203234) example: expect speed: 0.000000 real_pulses:0 +I (203234) example: new speed:399.000000 +I (203244) example: expect speed: 0.000000 real_pulses:0 +I (203244) example: new speed:399.000000 +I (203254) example: expect speed: 0.000000 real_pulses:0 +I (203254) example: new speed:399.000000 +I (203264) example: expect speed: 0.000000 real_pulses:0 +I (203264) example: new speed:399.000000 +I (203274) example: expect speed: 0.000000 real_pulses:0 +I (203274) example: new speed:399.000000 +I (203284) example: expect speed: 0.000000 real_pulses:0 +I (203284) example: new speed:399.000000 +I (203294) example: expect speed: 0.000000 real_pulses:0 +I (203294) example: new speed:399.000000 +I (203304) example: expect speed: 0.000000 real_pulses:0 +I (203304) example: new speed:399.000000 +I (203314) example: expect speed: 0.000000 real_pulses:0 +I (203314) example: new speed:399.000000 +I (203324) example: expect speed: 0.000000 real_pulses:0 +I (203324) example: new speed:399.000000 +I (203334) example: expect speed: 0.000000 real_pulses:0 +I (203334) example: new speed:399.000000 +I (203344) example: expect speed: 0.000000 real_pulses:0 +I (203344) example: new speed:399.000000 +I (203354) example: expect speed: 0.000000 real_pulses:0 +I (203354) example: new speed:399.000000 +I (203364) example: expect speed: 0.000000 real_pulses:0 +I (203364) example: new speed:399.000000 +I (203374) example: expect speed: 0.000000 real_pulses:0 +I (203374) example: new speed:399.000000 +I (203384) example: expect speed: 0.000000 real_pulses:0 +I (203384) example: new speed:399.000000 +I (203394) example: expect speed: 0.000000 real_pulses:0 +I (203394) example: new speed:399.000000 +I (203404) example: expect speed: 0.000000 real_pulses:0 +I (203404) example: new speed:399.000000 +I (203414) example: expect speed: 0.000000 real_pulses:0 +I (203414) example: new speed:399.000000 +I (203424) example: expect speed: 0.000000 real_pulses:0 +I (203424) example: new speed:399.000000 +I (203434) example: expect speed: 0.000000 real_pulses:0 +I (203434) example: new speed:399.000000 +I (203444) example: expect speed: 0.000000 real_pulses:0 +I (203444) example: new speed:399.000000 +I (203454) example: expect speed: 0.000000 real_pulses:0 +I (203454) example: new speed:399.000000 +I (203464) example: expect speed: 0.000000 real_pulses:0 +I (203464) example: new speed:399.000000 +I (203474) example: expect speed: 0.000000 real_pulses:0 +I (203474) example: new speed:399.000000 +I (203484) example: expect speed: 0.000000 real_pulses:0 +I (203484) example: new speed:399.000000 +I (203494) example: expect speed: 0.000000 real_pulses:0 +I (203494) example: new speed:399.000000 +I (203504) example: expect speed: 0.000000 real_pulses:0 +I (203504) example: new speed:399.000000 +I (203514) example: expect speed: 0.000000 real_pulses:0 +I (203514) example: new speed:399.000000 +I (203524) example: expect speed: 0.000000 real_pulses:0 +I (203524) example: new speed:399.000000 +I (203534) example: expect speed: 0.000000 real_pulses:0 +I (203534) example: new speed:399.000000 +I (203544) example: expect speed: 0.000000 real_pulses:0 +I (203544) example: new speed:399.000000 +I (203554) example: expect speed: 0.000000 real_pulses:0 +I (203554) example: new speed:399.000000 +I (203564) example: expect speed: 0.000000 real_pulses:0 +I (203564) example: new speed:399.000000 +I (203574) example: expect speed: 0.000000 real_pulses:0 +I (203574) example: new speed:399.000000 +I (203584) example: expect speed: 0.000000 real_pulses:0 +I (203584) example: new speed:399.000000 +I (203594) example: expect speed: 0.000000 real_pulses:0 +I (203594) example: new speed:399.000000 +I (203604) example: expect speed: 0.000000 real_pulses:0 +I (203604) example: new speed:399.000000 +I (203614) example: expect speed: 0.000000 real_pulses:0 +I (203624) example: new speed:399.000000 +I (203624) example: expect speed: 0.000000 real_pulses:0 +I (203634) example: new speed:399.000000 +I (203634) modbus tcp: ModBusSlave_recv() +I (203634) modbus: ModbusSlaveProcess() +I (203634) modbus: check id... +I (203634) modbus: ok +I (203634) modbus: add: 0, length: 10 +I (203634) modbus: Read Holding Registers +I (203634) example: expect speed: 0.000000 real_pulses:0 +I (203644) example: new speed:399.000000 +I (203644) example: expect speed: 0.000000 real_pulses:0 +I (203644) example: new speed:399.000000 +I (203654) example: expect speed: 0.000000 real_pulses:0 +I (203654) example: new speed:399.000000 +I (203664) example: expect speed: 0.000000 real_pulses:0 +I (203664) example: new speed:399.000000 +I (203674) example: expect speed: 0.000000 real_pulses:0 +I (203674) example: new speed:399.000000 +I (203684) example: expect speed: 0.000000 real_pulses:0 +I (203684) example: new speed:399.000000 +I (203694) example: expect speed: 0.000000 real_pulses:0 +I (203704) example: new speed:399.000000 +I (203704) example: expect speed: 0.000000 real_pulses:0 +I (203704) example: new speed:399.000000 +I (203714) example: expect speed: 0.000000 real_pulses:0 +I (203714) example: new speed:399.000000 +I (203724) example: expect speed: 0.000000 real_pulses:0 +I (203734) example: new speed:399.000000 +I (203734) example: expect speed: 0.000000 real_pulses:0 +I (203744) example: new speed:399.000000 +I (203744) example: expect speed: 0.000000 real_pulses:0 +I (203744) example: new speed:399.000000 +I (203754) example: expect speed: 0.000000 real_pulses:0 +I (203754) example: new speed:399.000000 +I (203764) example: expect speed: 0.000000 real_pulses:0 +I (203764) example: new speed:399.000000 +I (203774) example: expect speed: 0.000000 real_pulses:0 +I (203774) example: new speed:399.000000 +I (203784) example: expect speed: 0.000000 real_pulses:0 +I (203794) example: new speed:399.000000 +I (203794) example: expect speed: 0.000000 real_pulses:0 +I (203794) example: new speed:399.000000 +I (203804) example: expect speed: 0.000000 real_pulses:0 +I (203804) example: new speed:399.000000 +I (203814) example: expect speed: 0.000000 real_pulses:0 +I (203814) example: new speed:399.000000 +I (203824) example: expect speed: 0.000000 real_pulses:0 +I (203824) example: new speed:399.000000 +I (203834) example: expect speed: 0.000000 real_pulses:0 +I (203834) example: new speed:399.000000 +I (203844) example: expect speed: 0.000000 real_pulses:0 +I (203844) example: new speed:399.000000 +I (203854) example: expect speed: 0.000000 real_pulses:0 +I (203854) example: new speed:399.000000 +I (203864) example: expect speed: 0.000000 real_pulses:0 +I (203864) example: new speed:399.000000 +I (203874) example: expect speed: 0.000000 real_pulses:0 +I (203874) example: new speed:399.000000 +I (203884) example: expect speed: 0.000000 real_pulses:0 +I (203884) example: new speed:399.000000 +I (203894) example: expect speed: 0.000000 real_pulses:0 +I (203894) example: new speed:399.000000 +I (203904) example: expect speed: 0.000000 real_pulses:0 +I (203904) example: new speed:399.000000 +I (203914) example: expect speed: 0.000000 real_pulses:0 +I (203914) example: new speed:399.000000 +I (203924) example: expect speed: 0.000000 real_pulses:0 +I (203924) example: new speed:399.000000 +I (203934) example: expect speed: 0.000000 real_pulses:0 +I (203934) example: new speed:399.000000 +I (203944) example: expect speed: 0.000000 real_pulses:0 +I (203944) example: new speed:399.000000 +I (203954) example: expect speed: 0.000000 real_pulses:0 +I (203954) example: new speed:399.000000 +I (203964) example: expect speed: 0.000000 real_pulses:0 +I (203964) example: new speed:399.000000 +I (203974) example: expect speed: 0.000000 real_pulses:0 +I (203974) example: new speed:399.000000 +I (203984) example: expect speed: 0.000000 real_pulses:0 +I (203984) example: new speed:399.000000 +I (203994) example: expect speed: 0.000000 real_pulses:0 +I (203994) example: new speed:399.000000 +I (204004) example: expect speed: 0.000000 real_pulses:0 +I (204004) example: new speed:399.000000 +I (204014) example: expect speed: 0.000000 real_pulses:0 +I (204014) example: new speed:399.000000 +I (204024) example: expect speed: 0.000000 real_pulses:0 +I (204024) example: new speed:399.000000 +I (204034) example: expect speed: 0.000000 real_pulses:0 +I (204034) example: new speed:399.000000 +I (204044) example: expect speed: 0.000000 real_pulses:0 +I (204044) example: new speed:399.000000 +I (204054) example: expect speed: 0.000000 real_pulses:0 +I (204054) example: new speed:399.000000 +I (204064) example: expect speed: 0.000000 real_pulses:0 +I (204064) example: new speed:399.000000 +I (204074) example: expect speed: 0.000000 real_pulses:0 +I (204074) example: new speed:399.000000 +I (204084) example: expect speed: 0.000000 real_pulses:0 +I (204084) example: new speed:399.000000 +I (204094) example: expect speed: 0.000000 real_pulses:0 +I (204094) example: new speed:399.000000 +I (204104) example: expect speed: 0.000000 real_pulses:0 +I (204104) example: new speed:399.000000 +I (204114) example: expect speed: 0.000000 real_pulses:0 +I (204114) example: new speed:399.000000 +I (204124) example: expect speed: 0.000000 real_pulses:0 +I (204124) example: new speed:399.000000 +I (204134) example: expect speed: 0.000000 real_pulses:0 +I (204134) example: new speed:399.000000 +I (204144) example: expect speed: 0.000000 real_pulses:0 +I (204144) example: new speed:399.000000 +I (204154) example: expect speed: 0.000000 real_pulses:0 +I (204154) example: new speed:399.000000 +I (204164) example: expect speed: 0.000000 real_pulses:0 +I (204164) example: new speed:399.000000 +I (204174) example: expect speed: 0.000000 real_pulses:0 +I (204174) example: new speed:399.000000 +I (204184) example: expect speed: 0.000000 real_pulses:0 +I (204184) example: new speed:399.000000 +I (204194) example: expect speed: 0.000000 real_pulses:0 +I (204194) example: new speed:399.000000 +I (204204) example: expect speed: 0.000000 real_pulses:0 +I (204204) example: new speed:399.000000 +I (204214) example: expect speed: 0.000000 real_pulses:0 +I (204214) example: new speed:399.000000 +I (204224) example: expect speed: 0.000000 real_pulses:0 +I (204224) example: new speed:399.000000 +I (204234) example: expect speed: 0.000000 real_pulses:0 +I (204234) example: new speed:399.000000 +I (204244) example: expect speed: 0.000000 real_pulses:0 +I (204244) example: new speed:399.000000 +I (204254) example: expect speed: 0.000000 real_pulses:0 +I (204254) example: new speed:399.000000 +I (204264) example: expect speed: 0.000000 real_pulses:0 +I (204264) example: new speed:399.000000 +I (204274) example: expect speed: 0.000000 real_pulses:0 +I (204274) example: new speed:399.000000 +I (204284) example: expect speed: 0.000000 real_pulses:0 +I (204284) example: new speed:399.000000 +I (204294) example: expect speed: 0.000000 real_pulses:0 +I (204294) example: new speed:399.000000 +I (204304) example: expect speed: 0.000000 real_pulses:0 +I (204304) example: new speed:399.000000 +I (204314) example: expect speed: 0.000000 real_pulses:0 +I (204314) example: new speed:399.000000 +I (204324) example: expect speed: 0.000000 real_pulses:0 +I (204324) example: new speed:399.000000 +I (204334) example: expect speed: 0.000000 real_pulses:0 +I (204334) example: new speed:399.000000 +I (204344) example: expect speed: 0.000000 real_pulses:0 +I (204344) example: new speed:399.000000 +I (204354) example: expect speed: 0.000000 real_pulses:0 +I (204354) example: new speed:399.000000 +I (204364) example: expect speed: 0.000000 real_pulses:0 +I (204364) example: new speed:399.000000 +I (204374) example: expect speed: 0.000000 real_pulses:0 +I (204374) example: new speed:399.000000 +I (204384) example: expect speed: 0.000000 real_pulses:0 +I (204384) example: new speed:399.000000 +I (204394) example: expect speed: 0.000000 real_pulses:0 +I (204394) example: new speed:399.000000 +I (204404) example: expect speed: 0.000000 real_pulses:0 +I (204404) example: new speed:399.000000 +I (204414) example: expect speed: 0.000000 real_pulses:0 +I (204414) example: new speed:399.000000 +I (204424) example: expect speed: 0.000000 real_pulses:0 +I (204424) example: new speed:399.000000 +I (204434) example: expect speed: 0.000000 real_pulses:0 +I (204434) example: new speed:399.000000 +I (204444) example: expect speed: 0.000000 real_pulses:0 +I (204444) example: new speed:399.000000 +I (204454) example: expect speed: 0.000000 real_pulses:0 +I (204454) example: new speed:399.000000 +I (204464) example: expect speed: 0.000000 real_pulses:0 +I (204464) example: new speed:399.000000 +I (204474) example: expect speed: 0.000000 real_pulses:0 +I (204474) example: new speed:399.000000 +I (204484) example: expect speed: 0.000000 real_pulses:0 +I (204484) example: new speed:399.000000 +I (204494) example: expect speed: 0.000000 real_pulses:0 +I (204494) example: new speed:399.000000 +I (204504) example: expect speed: 0.000000 real_pulses:0 +I (204504) example: new speed:399.000000 +I (204514) example: expect speed: 0.000000 real_pulses:0 +I (204514) example: new speed:399.000000 +I (204524) example: expect speed: 0.000000 real_pulses:0 +I (204524) example: new speed:399.000000 +I (204534) example: expect speed: 0.000000 real_pulses:0 +I (204534) example: new speed:399.000000 +I (204544) example: expect speed: 0.000000 real_pulses:0 +I (204544) example: new speed:399.000000 +I (204554) example: expect speed: 0.000000 real_pulses:0 +I (204554) example: new speed:399.000000 +I (204564) example: expect speed: 0.000000 real_pulses:0 +I (204564) example: new speed:399.000000 +I (204574) example: expect speed: 0.000000 real_pulses:0 +I (204574) example: new speed:399.000000 +I (204584) example: expect speed: 0.000000 real_pulses:0 +I (204584) example: new speed:399.000000 +I (204594) example: expect speed: 0.000000 real_pulses:0 +I (204594) example: new speed:399.000000 +I (204604) example: expect speed: 0.000000 real_pulses:0 +I (204604) example: new speed:399.000000 +I (204614) example: expect speed: 0.000000 real_pulses:0 +I (204614) example: new speed:399.000000 +I (204624) example: expect speed: 0.000000 real_pulses:0 +I (204624) example: new speed:399.000000 +I (204634) example: expect speed: 0.000000 real_pulses:0 +I (204634) example: new speed:399.000000 +I (204644) example: expect speed: 0.000000 real_pulses:0 +I (204654) example: new speed:399.000000 +I (204654) modbus tcp: ModBusSlave_recv() +I (204654) modbus: ModbusSlaveProcess() +I (204654) modbus: check id... +I (204654) modbus: ok +I (204654) modbus: add: 0, length: 10 +I (204654) modbus: Read Holding Registers +I (204654) example: expect speed: 0.000000 real_pulses:0 +I (204664) example: new speed:399.000000 +I (204664) example: expect speed: 0.000000 real_pulses:0 +I (204664) example: new speed:399.000000 +I (204674) example: expect speed: 0.000000 real_pulses:0 +I (204674) example: new speed:399.000000 +I (204684) example: expect speed: 0.000000 real_pulses:0 +I (204684) example: new speed:399.000000 +I (204694) example: expect speed: 0.000000 real_pulses:0 +I (204694) example: new speed:399.000000 +I (204704) example: expect speed: 0.000000 real_pulses:0 +I (204704) example: new speed:399.000000 +I (204714) example: expect speed: 0.000000 real_pulses:0 +I (204714) example: new speed:399.000000 +I (204724) example: expect speed: 0.000000 real_pulses:0 +I (204724) example: new speed:399.000000 +I (204734) example: expect speed: 0.000000 real_pulses:0 +I (204744) example: new speed:399.000000 +I (204744) example: expect speed: 0.000000 real_pulses:0 +I (204754) example: new speed:399.000000 +I (204754) example: expect speed: 0.000000 real_pulses:0 +I (204764) example: new speed:399.000000 +I (204764) example: expect speed: 0.000000 real_pulses:0 +I (204764) example: new speed:399.000000 +I (204774) example: expect speed: 0.000000 real_pulses:0 +I (204774) example: new speed:399.000000 +I (204784) example: expect speed: 0.000000 real_pulses:0 +I (204784) example: new speed:399.000000 +I (204794) example: expect speed: 0.000000 real_pulses:0 +I (204794) example: new speed:399.000000 +I (204804) example: expect speed: 0.000000 real_pulses:0 +I (204814) example: new speed:399.000000 +I (204814) example: expect speed: 0.000000 real_pulses:0 +I (204814) example: new speed:399.000000 +I (204824) example: expect speed: 0.000000 real_pulses:0 +I (204824) example: new speed:399.000000 +I (204834) example: expect speed: 0.000000 real_pulses:0 +I (204834) example: new speed:399.000000 +I (204844) example: expect speed: 0.000000 real_pulses:0 +I (204844) example: new speed:399.000000 +I (204854) example: expect speed: 0.000000 real_pulses:0 +I (204854) example: new speed:399.000000 +I (204864) example: expect speed: 0.000000 real_pulses:0 +I (204864) example: new speed:399.000000 +I (204874) example: expect speed: 0.000000 real_pulses:0 +I (204874) example: new speed:399.000000 +I (204884) example: expect speed: 0.000000 real_pulses:0 +I (204884) example: new speed:399.000000 +I (204894) example: expect speed: 0.000000 real_pulses:0 +I (204894) example: new speed:399.000000 +I (204904) example: expect speed: 0.000000 real_pulses:0 +I (204904) example: new speed:399.000000 +I (204914) example: expect speed: 0.000000 real_pulses:0 +I (204914) example: new speed:399.000000 +I (204924) example: expect speed: 0.000000 real_pulses:0 +I (204924) example: new speed:399.000000 +I (204934) example: expect speed: 0.000000 real_pulses:0 +I (204934) example: new speed:399.000000 +I (204944) example: expect speed: 0.000000 real_pulses:0 +I (204944) example: new speed:399.000000 +I (204954) example: expect speed: 0.000000 real_pulses:0 +I (204954) example: new speed:399.000000 +I (204964) example: expect speed: 0.000000 real_pulses:0 +I (204964) example: new speed:399.000000 +I (204974) example: expect speed: 0.000000 real_pulses:0 +I (204974) example: new speed:399.000000 +I (204984) example: expect speed: 0.000000 real_pulses:0 +I (204984) example: new speed:399.000000 +I (204994) example: expect speed: 0.000000 real_pulses:0 +I (204994) example: new speed:399.000000 +I (205004) example: expect speed: 0.000000 real_pulses:0 +I (205004) example: new speed:399.000000 +I (205014) example: expect speed: 0.000000 real_pulses:0 +I (205014) example: new speed:399.000000 +I (205024) example: expect speed: 0.000000 real_pulses:0 +I (205024) example: new speed:399.000000 +I (205034) example: expect speed: 0.000000 real_pulses:0 +I (205034) example: new speed:399.000000 +I (205044) example: expect speed: 0.000000 real_pulses:0 +I (205044) example: new speed:399.000000 +I (205054) example: expect speed: 0.000000 real_pulses:0 +I (205054) example: new speed:399.000000 +I (205064) example: expect speed: 0.000000 real_pulses:0 +I (205064) example: new speed:399.000000 +I (205074) example: expect speed: 0.000000 real_pulses:0 +I (205074) example: new speed:399.000000 +I (205084) example: expect speed: 0.000000 real_pulses:0 +I (205084) example: new speed:399.000000 +I (205094) example: expect speed: 0.000000 real_pulses:0 +I (205094) example: new speed:399.000000 +I (205104) example: expect speed: 0.000000 real_pulses:0 +I (205104) example: new speed:399.000000 +I (205114) example: expect speed: 0.000000 real_pulses:0 +I (205114) example: new speed:399.000000 +I (205124) example: expect speed: 0.000000 real_pulses:0 +I (205124) example: new speed:399.000000 +I (205134) example: expect speed: 0.000000 real_pulses:0 +I (205134) example: new speed:399.000000 +I (205144) example: expect speed: 0.000000 real_pulses:0 +I (205144) example: new speed:399.000000 +I (205154) example: expect speed: 0.000000 real_pulses:0 +I (205154) example: new speed:399.000000 +I (205164) example: expect speed: 0.000000 real_pulses:0 +I (205164) example: new speed:399.000000 +I (205174) example: expect speed: 0.000000 real_pulses:0 +I (205174) example: new speed:399.000000 +I (205184) example: expect speed: 0.000000 real_pulses:0 +I (205184) example: new speed:399.000000 +I (205194) example: expect speed: 0.000000 real_pulses:0 +I (205194) example: new speed:399.000000 +I (205204) example: expect speed: 0.000000 real_pulses:0 +I (205204) example: new speed:399.000000 +I (205214) example: expect speed: 0.000000 real_pulses:0 +I (205214) example: new speed:399.000000 +I (205224) example: expect speed: 0.000000 real_pulses:0 +I (205224) example: new speed:399.000000 +I (205234) example: expect speed: 0.000000 real_pulses:0 +I (205234) example: new speed:399.000000 +I (205244) example: expect speed: 0.000000 real_pulses:0 +I (205244) example: new speed:399.000000 +I (205254) example: expect speed: 0.000000 real_pulses:0 +I (205254) example: new speed:399.000000 +I (205264) example: expect speed: 0.000000 real_pulses:0 +I (205264) example: new speed:399.000000 +I (205274) example: expect speed: 0.000000 real_pulses:0 +I (205274) example: new speed:399.000000 +I (205284) example: expect speed: 0.000000 real_pulses:0 +I (205284) example: new speed:399.000000 +I (205294) example: expect speed: 0.000000 real_pulses:0 +I (205294) example: new speed:399.000000 +I (205304) example: expect speed: 0.000000 real_pulses:0 +I (205304) example: new speed:399.000000 +I (205314) example: expect speed: 0.000000 real_pulses:0 +I (205314) example: new speed:399.000000 +I (205324) example: expect speed: 0.000000 real_pulses:0 +I (205324) example: new speed:399.000000 +I (205334) example: expect speed: 0.000000 real_pulses:0 +I (205334) example: new speed:399.000000 +I (205344) example: expect speed: 0.000000 real_pulses:0 +I (205344) example: new speed:399.000000 +I (205354) example: expect speed: 0.000000 real_pulses:0 +I (205354) example: new speed:399.000000 +I (205364) example: expect speed: 0.000000 real_pulses:0 +I (205364) example: new speed:399.000000 +I (205374) example: expect speed: 0.000000 real_pulses:0 +I (205374) example: new speed:399.000000 +I (205384) example: expect speed: 0.000000 real_pulses:0 +I (205384) example: new speed:399.000000 +I (205394) example: expect speed: 0.000000 real_pulses:0 +I (205394) example: new speed:399.000000 +I (205404) example: expect speed: 0.000000 real_pulses:0 +I (205404) example: new speed:399.000000 +I (205414) example: expect speed: 0.000000 real_pulses:0 +I (205414) example: new speed:399.000000 +I (205424) example: expect speed: 0.000000 real_pulses:0 +I (205424) example: new speed:399.000000 +I (205434) example: expect speed: 0.000000 real_pulses:0 +I (205434) example: new speed:399.000000 +I (205444) example: expect speed: 0.000000 real_pulses:0 +I (205444) example: new speed:399.000000 +I (205454) example: expect speed: 0.000000 real_pulses:0 +I (205454) example: new speed:399.000000 +I (205464) example: expect speed: 0.000000 real_pulses:0 +I (205464) example: new speed:399.000000 +I (205474) example: expect speed: 0.000000 real_pulses:0 +I (205474) example: new speed:399.000000 +I (205484) example: expect speed: 0.000000 real_pulses:0 +I (205484) example: new speed:399.000000 +I (205494) example: expect speed: 0.000000 real_pulses:0 +I (205494) example: new speed:399.000000 +I (205504) example: expect speed: 0.000000 real_pulses:0 +I (205504) example: new speed:399.000000 +I (205514) example: expect speed: 0.000000 real_pulses:0 +I (205514) example: new speed:399.000000 +I (205524) example: expect speed: 0.000000 real_pulses:0 +I (205524) example: new speed:399.000000 +I (205534) example: expect speed: 0.000000 real_pulses:0 +I (205534) example: new speed:399.000000 +I (205544) example: expect speed: 0.000000 real_pulses:0 +I (205544) example: new speed:399.000000 +I (205554) example: expect speed: 0.000000 real_pulses:0 +I (205554) example: new speed:399.000000 +I (205564) example: expect speed: 0.000000 real_pulses:0 +I (205564) example: new speed:399.000000 +I (205574) example: expect speed: 0.000000 real_pulses:0 +I (205574) example: new speed:399.000000 +I (205584) example: expect speed: 0.000000 real_pulses:0 +I (205584) example: new speed:399.000000 +I (205594) example: expect speed: 0.000000 real_pulses:0 +I (205594) example: new speed:399.000000 +I (205604) example: expect speed: 0.000000 real_pulses:0 +I (205604) example: new speed:399.000000 +I (205614) example: expect speed: 0.000000 real_pulses:0 +I (205614) example: new speed:399.000000 +I (205624) example: expect speed: 0.000000 real_pulses:0 +I (205624) example: new speed:399.000000 +I (205634) example: expect speed: 0.000000 real_pulses:0 +I (205634) example: new speed:399.000000 +I (205644) example: expect speed: 0.000000 real_pulses:0 +I (205644) example: new speed:399.000000 +I (205654) example: expect speed: 0.000000 real_pulses:0 +I (205654) example: new speed:399.000000 +I (205664) example: expect speed: 0.000000 real_pulses:0 +I (205674) example: new speed:399.000000 +I (205674) modbus tcp: ModBusSlave_recv() +I (205674) modbus: ModbusSlaveProcess() +I (205674) modbus: check id... +I (205674) modbus: ok +I (205674) modbus: add: 0, length: 10 +I (205674) modbus: Read Holding Registers +I (205674) example: expect speed: 0.000000 real_pulses:0 +I (205684) example: new speed:399.000000 +I (205684) example: expect speed: 0.000000 real_pulses:0 +I (205684) example: new speed:399.000000 +I (205694) example: expect speed: 0.000000 real_pulses:0 +I (205694) example: new speed:399.000000 +I (205704) example: expect speed: 0.000000 real_pulses:0 +I (205704) example: new speed:399.000000 +I (205714) example: expect speed: 0.000000 real_pulses:0 +I (205714) example: new speed:399.000000 +I (205724) example: expect speed: 0.000000 real_pulses:0 +I (205724) example: new speed:399.000000 +I (205734) example: expect speed: 0.000000 real_pulses:0 +I (205744) example: new speed:399.000000 +I (205744) example: expect speed: 0.000000 real_pulses:0 +I (205744) example: new speed:399.000000 +I (205754) example: expect speed: 0.000000 real_pulses:0 +I (205754) example: new speed:399.000000 +I (205774) example: expect speed: 0.000000 real_pulses:0 +I (205774) example: new speed:399.000000 +I (205774) example: expect speed: 0.000000 real_pulses:0 +I (205784) example: new speed:399.000000 +I (205784) example: expect speed: 0.000000 real_pulses:0 +I (205784) example: new speed:399.000000 +I (205794) example: expect speed: 0.000000 real_pulses:0 +I (205794) example: new speed:399.000000 +I (205804) example: expect speed: 0.000000 real_pulses:0 +I (205804) example: new speed:399.000000 +I (205814) example: expect speed: 0.000000 real_pulses:0 +I (205814) example: new speed:399.000000 +I (205824) example: expect speed: 0.000000 real_pulses:0 +I (205834) example: new speed:399.000000 +I (205834) example: expect speed: 0.000000 real_pulses:0 +I (205834) example: new speed:399.000000 +I (205844) example: expect speed: 0.000000 real_pulses:0 +I (205844) example: new speed:399.000000 +I (205854) example: expect speed: 0.000000 real_pulses:0 +I (205854) example: new speed:399.000000 +I (205864) example: expect speed: 0.000000 real_pulses:0 +I (205864) example: new speed:399.000000 +I (205874) example: expect speed: 0.000000 real_pulses:0 +I (205874) example: new speed:399.000000 +I (205884) example: expect speed: 0.000000 real_pulses:0 +I (205884) example: new speed:399.000000 +I (205894) example: expect speed: 0.000000 real_pulses:0 +I (205894) example: new speed:399.000000 +I (205904) example: expect speed: 0.000000 real_pulses:0 +I (205904) example: new speed:399.000000 +I (205914) example: expect speed: 0.000000 real_pulses:0 +I (205914) example: new speed:399.000000 +I (205924) example: expect speed: 0.000000 real_pulses:0 +I (205924) example: new speed:399.000000 +I (205934) example: expect speed: 0.000000 real_pulses:0 +I (205934) example: new speed:399.000000 +I (205944) example: expect speed: 0.000000 real_pulses:0 +I (205944) example: new speed:399.000000 +I (205954) example: expect speed: 0.000000 real_pulses:0 +I (205954) example: new speed:399.000000 +I (205964) example: expect speed: 0.000000 real_pulses:0 +I (205964) example: new speed:399.000000 +I (205974) example: expect speed: 0.000000 real_pulses:0 +I (205974) example: new speed:399.000000 +I (205984) example: expect speed: 0.000000 real_pulses:0 +I (205984) example: new speed:399.000000 +I (205994) example: expect speed: 0.000000 real_pulses:0 +I (205994) example: new speed:399.000000 +I (206004) example: expect speed: 0.000000 real_pulses:0 +I (206004) example: new speed:399.000000 +I (206014) example: expect speed: 0.000000 real_pulses:0 +I (206014) example: new speed:399.000000 +I (206024) example: expect speed: 0.000000 real_pulses:0 +I (206024) example: new speed:399.000000 +I (206034) example: expect speed: 0.000000 real_pulses:0 +I (206034) example: new speed:399.000000 +I (206044) example: expect speed: 0.000000 real_pulses:0 +I (206044) example: new speed:399.000000 +I (206054) example: expect speed: 0.000000 real_pulses:0 +I (206054) example: new speed:399.000000 +I (206064) example: expect speed: 0.000000 real_pulses:0 +I (206064) example: new speed:399.000000 +I (206074) example: expect speed: 0.000000 real_pulses:0 +I (206074) example: new speed:399.000000 +I (206084) example: expect speed: 0.000000 real_pulses:0 +I (206084) example: new speed:399.000000 +I (206094) example: expect speed: 0.000000 real_pulses:0 +I (206094) example: new speed:399.000000 +I (206104) example: expect speed: 0.000000 real_pulses:0 +I (206104) example: new speed:399.000000 +I (206114) example: expect speed: 0.000000 real_pulses:0 +I (206114) example: new speed:399.000000 +I (206124) example: expect speed: 0.000000 real_pulses:0 +I (206124) example: new speed:399.000000 +I (206134) example: expect speed: 0.000000 real_pulses:0 +I (206134) example: new speed:399.000000 +I (206144) example: expect speed: 0.000000 real_pulses:0 +I (206144) example: new speed:399.000000 +I (206154) example: expect speed: 0.000000 real_pulses:0 +I (206154) example: new speed:399.000000 +I (206164) example: expect speed: 0.000000 real_pulses:0 +I (206164) example: new speed:399.000000 +I (206174) example: expect speed: 0.000000 real_pulses:0 +I (206174) example: new speed:399.000000 +I (206184) example: expect speed: 0.000000 real_pulses:0 +I (206184) example: new speed:399.000000 +I (206194) example: expect speed: 0.000000 real_pulses:0 +I (206194) example: new speed:399.000000 +I (206204) example: expect speed: 0.000000 real_pulses:0 +I (206204) example: new speed:399.000000 +I (206214) example: expect speed: 0.000000 real_pulses:0 +I (206214) example: new speed:399.000000 +I (206224) example: expect speed: 0.000000 real_pulses:0 +I (206224) example: new speed:399.000000 +I (206234) example: expect speed: 0.000000 real_pulses:0 +I (206234) example: new speed:399.000000 +I (206244) example: expect speed: 0.000000 real_pulses:0 +I (206244) example: new speed:399.000000 +I (206254) example: expect speed: 0.000000 real_pulses:0 +I (206254) example: new speed:399.000000 +I (206264) example: expect speed: 0.000000 real_pulses:0 +I (206264) example: new speed:399.000000 +I (206274) example: expect speed: 0.000000 real_pulses:0 +I (206274) example: new speed:399.000000 +I (206284) example: expect speed: 0.000000 real_pulses:0 +I (206284) example: new speed:399.000000 +I (206294) example: expect speed: 0.000000 real_pulses:0 +I (206294) example: new speed:399.000000 +I (206304) example: expect speed: 0.000000 real_pulses:0 +I (206304) example: new speed:399.000000 +I (206314) example: expect speed: 0.000000 real_pulses:0 +I (206314) example: new speed:399.000000 +I (206324) example: expect speed: 0.000000 real_pulses:0 +I (206324) example: new speed:399.000000 +I (206334) example: expect speed: 0.000000 real_pulses:0 +I (206334) example: new speed:399.000000 +I (206344) example: expect speed: 0.000000 real_pulses:0 +I (206344) example: new speed:399.000000 +I (206354) example: expect speed: 0.000000 real_pulses:0 +I (206354) example: new speed:399.000000 +I (206364) example: expect speed: 0.000000 real_pulses:0 +I (206364) example: new speed:399.000000 +I (206374) example: expect speed: 0.000000 real_pulses:0 +I (206374) example: new speed:399.000000 +I (206384) example: expect speed: 0.000000 real_pulses:0 +I (206384) example: new speed:399.000000 +I (206394) example: expect speed: 0.000000 real_pulses:0 +I (206394) example: new speed:399.000000 +I (206404) example: expect speed: 0.000000 real_pulses:0 +I (206404) example: new speed:399.000000 +I (206414) example: expect speed: 0.000000 real_pulses:0 +I (206414) example: new speed:399.000000 +I (206424) example: expect speed: 0.000000 real_pulses:0 +I (206424) example: new speed:399.000000 +I (206434) example: expect speed: 0.000000 real_pulses:0 +I (206434) example: new speed:399.000000 +I (206444) example: expect speed: 0.000000 real_pulses:0 +I (206444) example: new speed:399.000000 +I (206454) example: expect speed: 0.000000 real_pulses:0 +I (206454) example: new speed:399.000000 +I (206464) example: expect speed: 0.000000 real_pulses:0 +I (206464) example: new speed:399.000000 +I (206474) example: expect speed: 0.000000 real_pulses:0 +I (206474) example: new speed:399.000000 +I (206484) example: expect speed: 0.000000 real_pulses:0 +I (206484) example: new speed:399.000000 +I (206494) example: expect speed: 0.000000 real_pulses:0 +I (206494) example: new speed:399.000000 +I (206504) example: expect speed: 0.000000 real_pulses:0 +I (206504) example: new speed:399.000000 +I (206514) example: expect speed: 0.000000 real_pulses:0 +I (206514) example: new speed:399.000000 +I (206524) example: expect speed: 0.000000 real_pulses:0 +I (206524) example: new speed:399.000000 +I (206534) example: expect speed: 0.000000 real_pulses:0 +I (206534) example: new speed:399.000000 +I (206544) example: expect speed: 0.000000 real_pulses:0 +I (206544) example: new speed:399.000000 +I (206554) example: expect speed: 0.000000 real_pulses:0 +I (206554) example: new speed:399.000000 +I (206564) example: expect speed: 0.000000 real_pulses:0 +I (206564) example: new speed:399.000000 +I (206574) example: expect speed: 0.000000 real_pulses:0 +I (206574) example: new speed:399.000000 +I (206584) example: expect speed: 0.000000 real_pulses:0 +I (206584) example: new speed:399.000000 +I (206594) example: expect speed: 0.000000 real_pulses:0 +I (206594) example: new speed:399.000000 +I (206604) example: expect speed: 0.000000 real_pulses:0 +I (206604) example: new speed:399.000000 +I (206614) example: expect speed: 0.000000 real_pulses:0 +I (206614) example: new speed:399.000000 +I (206624) example: expect speed: 0.000000 real_pulses:0 +I (206624) example: new speed:399.000000 +I (206634) example: expect speed: 0.000000 real_pulses:0 +I (206634) example: new speed:399.000000 +I (206644) example: expect speed: 0.000000 real_pulses:0 +I (206644) example: new speed:399.000000 +I (206654) example: expect speed: 0.000000 real_pulses:0 +I (206654) example: new speed:399.000000 +I (206664) example: expect speed: 0.000000 real_pulses:0 +I (206664) example: new speed:399.000000 +I (206674) example: expect speed: 0.000000 real_pulses:0 +I (206674) example: new speed:399.000000 +I (206684) example: expect speed: 0.000000 real_pulses:0 +I (206684) example: new speed:399.000000 +I (206694) example: expect speed: 0.000000 real_pulses:0 +I (206704) example: new speed:399.000000 +I (206704) modbus tcp: ModBusSlave_recv() +I (206704) modbus: ModbusSlaveProcess() +I (206704) modbus: check id... +I (206704) modbus: ok +I (206704) modbus: add: 0, length: 10 +I (206704) modbus: Read Holding Registers +I (206704) example: expect speed: 0.000000 real_pulses:0 +I (206714) example: new speed:399.000000 +I (206714) example: expect speed: 0.000000 real_pulses:0 +I (206714) example: new speed:399.000000 +I (206724) example: expect speed: 0.000000 real_pulses:0 +I (206724) example: new speed:399.000000 +I (206734) example: expect speed: 0.000000 real_pulses:0 +I (206734) example: new speed:399.000000 +I (206744) example: expect speed: 0.000000 real_pulses:0 +I (206744) example: new speed:399.000000 +I (206754) example: expect speed: 0.000000 real_pulses:0 +I (206764) example: new speed:399.000000 +I (206764) example: expect speed: 0.000000 real_pulses:0 +I (206764) example: new speed:399.000000 +I (206774) example: expect speed: 0.000000 real_pulses:0 +I (206774) example: new speed:399.000000 +I (206784) example: expect speed: 0.000000 real_pulses:0 +I (206784) example: new speed:399.000000 +I (206794) example: expect speed: 0.000000 real_pulses:0 +I (206794) example: new speed:399.000000 +I (206804) example: expect speed: 0.000000 real_pulses:0 +I (206814) example: new speed:399.000000 +I (206814) example: expect speed: 0.000000 real_pulses:0 +I (206814) example: new speed:399.000000 +I (206824) example: expect speed: 0.000000 real_pulses:0 +I (206824) example: new speed:399.000000 +I (206834) example: expect speed: 0.000000 real_pulses:0 +I (206834) example: new speed:399.000000 +I (206844) example: expect speed: 0.000000 real_pulses:0 +I (206844) example: new speed:399.000000 +I (206854) example: expect speed: 0.000000 real_pulses:0 +I (206854) example: new speed:399.000000 +I (206864) example: expect speed: 0.000000 real_pulses:0 +I (206864) example: new speed:399.000000 +I (206874) example: expect speed: 0.000000 real_pulses:0 +I (206874) example: new speed:399.000000 +I (206884) example: expect speed: 0.000000 real_pulses:0 +I (206884) example: new speed:399.000000 +I (206894) example: expect speed: 0.000000 real_pulses:0 +I (206894) example: new speed:399.000000 +I (206904) example: expect speed: 0.000000 real_pulses:0 +I (206904) example: new speed:399.000000 +I (206914) example: expect speed: 0.000000 real_pulses:0 +I (206914) example: new speed:399.000000 +I (206924) example: expect speed: 0.000000 real_pulses:0 +I (206924) example: new speed:399.000000 +I (206934) example: expect speed: 0.000000 real_pulses:0 +I (206934) example: new speed:399.000000 +I (206944) example: expect speed: 0.000000 real_pulses:0 +I (206944) example: new speed:399.000000 +I (206954) example: expect speed: 0.000000 real_pulses:0 +I (206954) example: new speed:399.000000 +I (206964) example: expect speed: 0.000000 real_pulses:0 +I (206964) example: new speed:399.000000 +I (206974) example: expect speed: 0.000000 real_pulses:0 +I (206974) example: new speed:399.000000 +I (206984) example: expect speed: 0.000000 real_pulses:0 +I (206984) example: new speed:399.000000 +I (206994) example: expect speed: 0.000000 real_pulses:0 +I (206994) example: new speed:399.000000 +I (207004) example: expect speed: 0.000000 real_pulses:0 +I (207004) example: new speed:399.000000 +I (207014) example: expect speed: 0.000000 real_pulses:0 +I (207014) example: new speed:399.000000 +I (207024) example: expect speed: 0.000000 real_pulses:0 +I (207024) example: new speed:399.000000 +I (207034) example: expect speed: 0.000000 real_pulses:0 +I (207034) example: new speed:399.000000 +I (207044) example: expect speed: 0.000000 real_pulses:0 +I (207044) example: new speed:399.000000 +I (207054) example: expect speed: 0.000000 real_pulses:0 +I (207054) example: new speed:399.000000 +I (207064) example: expect speed: 0.000000 real_pulses:0 +I (207064) example: new speed:399.000000 +I (207074) example: expect speed: 0.000000 real_pulses:0 +I (207074) example: new speed:399.000000 +I (207084) example: expect speed: 0.000000 real_pulses:0 +I (207084) example: new speed:399.000000 +I (207094) example: expect speed: 0.000000 real_pulses:0 +I (207094) example: new speed:399.000000 +I (207104) example: expect speed: 0.000000 real_pulses:0 +I (207104) example: new speed:399.000000 +I (207114) example: expect speed: 0.000000 real_pulses:0 +I (207114) example: new speed:399.000000 +I (207124) example: expect speed: 0.000000 real_pulses:0 +I (207124) example: new speed:399.000000 +I (207134) example: expect speed: 0.000000 real_pulses:0 +I (207134) example: new speed:399.000000 +I (207144) example: expect speed: 0.000000 real_pulses:0 +I (207144) example: new speed:399.000000 +I (207154) example: expect speed: 0.000000 real_pulses:0 +I (207154) example: new speed:399.000000 +I (207164) example: expect speed: 0.000000 real_pulses:0 +I (207164) example: new speed:399.000000 +I (207174) example: expect speed: 0.000000 real_pulses:0 +I (207174) example: new speed:399.000000 +I (207184) example: expect speed: 0.000000 real_pulses:0 +I (207184) example: new speed:399.000000 +I (207194) example: expect speed: 0.000000 real_pulses:0 +I (207194) example: new speed:399.000000 +I (207204) example: expect speed: 0.000000 real_pulses:0 +I (207204) example: new speed:399.000000 +I (207214) example: expect speed: 0.000000 real_pulses:0 +I (207214) example: new speed:399.000000 +I (207224) example: expect speed: 0.000000 real_pulses:0 +I (207224) example: new speed:399.000000 +I (207234) example: expect speed: 0.000000 real_pulses:0 +I (207234) example: new speed:399.000000 +I (207244) example: expect speed: 0.000000 real_pulses:0 +I (207244) example: new speed:399.000000 +I (207254) example: expect speed: 0.000000 real_pulses:0 +I (207254) example: new speed:399.000000 +I (207264) example: expect speed: 0.000000 real_pulses:0 +I (207264) example: new speed:399.000000 +I (207274) example: expect speed: 0.000000 real_pulses:0 +I (207274) example: new speed:399.000000 +I (207284) example: expect speed: 0.000000 real_pulses:0 +I (207284) example: new speed:399.000000 +I (207294) example: expect speed: 0.000000 real_pulses:0 +I (207294) example: new speed:399.000000 +I (207304) example: expect speed: 0.000000 real_pulses:0 +I (207304) example: new speed:399.000000 +I (207314) example: expect speed: 0.000000 real_pulses:0 +I (207314) example: new speed:399.000000 +I (207324) example: expect speed: 0.000000 real_pulses:0 +I (207324) example: new speed:399.000000 +I (207334) example: expect speed: 0.000000 real_pulses:0 +I (207334) example: new speed:399.000000 +I (207344) example: expect speed: 0.000000 real_pulses:0 +I (207344) example: new speed:399.000000 +I (207354) example: expect speed: 0.000000 real_pulses:0 +I (207354) example: new speed:399.000000 +I (207364) example: expect speed: 0.000000 real_pulses:0 +I (207364) example: new speed:399.000000 +I (207374) example: expect speed: 0.000000 real_pulses:0 +I (207374) example: new speed:399.000000 +I (207384) example: expect speed: 0.000000 real_pulses:0 +I (207384) example: new speed:399.000000 +I (207394) example: expect speed: 0.000000 real_pulses:0 +I (207394) example: new speed:399.000000 +I (207404) example: expect speed: 0.000000 real_pulses:0 +I (207404) example: new speed:399.000000 +I (207414) example: expect speed: 0.000000 real_pulses:0 +I (207414) example: new speed:399.000000 +I (207424) example: expect speed: 0.000000 real_pulses:0 +I (207424) example: new speed:399.000000 +I (207434) example: expect speed: 0.000000 real_pulses:0 +I (207434) example: new speed:399.000000 +I (207444) example: expect speed: 0.000000 real_pulses:0 +I (207444) example: new speed:399.000000 +I (207454) example: expect speed: 0.000000 real_pulses:0 +I (207454) example: new speed:399.000000 +I (207464) example: expect speed: 0.000000 real_pulses:0 +I (207464) example: new speed:399.000000 +I (207474) example: expect speed: 0.000000 real_pulses:0 +I (207474) example: new speed:399.000000 +I (207484) example: expect speed: 0.000000 real_pulses:0 +I (207484) example: new speed:399.000000 +I (207494) example: expect speed: 0.000000 real_pulses:0 +I (207494) example: new speed:399.000000 +I (207504) example: expect speed: 0.000000 real_pulses:0 +I (207504) example: new speed:399.000000 +I (207514) example: expect speed: 0.000000 real_pulses:0 +I (207514) example: new speed:399.000000 +I (207524) example: expect speed: 0.000000 real_pulses:0 +I (207524) example: new speed:399.000000 +I (207534) example: expect speed: 0.000000 real_pulses:0 +I (207534) example: new speed:399.000000 +I (207544) example: expect speed: 0.000000 real_pulses:0 +I (207544) example: new speed:399.000000 +I (207554) example: expect speed: 0.000000 real_pulses:0 +I (207554) example: new speed:399.000000 +I (207564) example: expect speed: 0.000000 real_pulses:0 +I (207564) example: new speed:399.000000 +I (207574) example: expect speed: 0.000000 real_pulses:0 +I (207574) example: new speed:399.000000 +I (207584) example: expect speed: 0.000000 real_pulses:0 +I (207584) example: new speed:399.000000 +I (207594) example: expect speed: 0.000000 real_pulses:0 +I (207594) example: new speed:399.000000 +I (207604) example: expect speed: 0.000000 real_pulses:0 +I (207604) example: new speed:399.000000 +I (207614) example: expect speed: 0.000000 real_pulses:0 +I (207614) example: new speed:399.000000 +I (207624) example: expect speed: 0.000000 real_pulses:0 +I (207624) example: new speed:399.000000 +I (207634) example: expect speed: 0.000000 real_pulses:0 +I (207634) example: new speed:399.000000 +I (207644) example: expect speed: 0.000000 real_pulses:0 +I (207644) example: new speed:399.000000 +I (207654) example: expect speed: 0.000000 real_pulses:0 +I (207654) example: new speed:399.000000 +I (207664) example: expect speed: 0.000000 real_pulses:0 +I (207664) example: new speed:399.000000 +I (207674) example: expect speed: 0.000000 real_pulses:0 +I (207674) example: new speed:399.000000 +I (207684) example: expect speed: 0.000000 real_pulses:0 +I (207684) example: new speed:399.000000 +I (207694) example: expect speed: 0.000000 real_pulses:0 +I (207694) example: new speed:399.000000 +I (207704) example: expect speed: 0.000000 real_pulses:0 +I (207704) example: new speed:399.000000 +I (207714) example: expect speed: 0.000000 real_pulses:0 +I (207724) example: new speed:399.000000 +I (207724) modbus tcp: ModBusSlave_recv() +I (207724) modbus: ModbusSlaveProcess() +I (207724) modbus: check id... +I (207724) modbus: ok +I (207724) modbus: add: 0, length: 10 +I (207724) modbus: Read Holding Registers +I (207724) example: expect speed: 0.000000 real_pulses:0 +I (207734) example: new speed:399.000000 +I (207734) example: expect speed: 0.000000 real_pulses:0 +I (207734) example: new speed:399.000000 +I (207744) example: expect speed: 0.000000 real_pulses:0 +I (207744) example: new speed:399.000000 +I (207754) example: expect speed: 0.000000 real_pulses:0 +I (207754) example: new speed:399.000000 +I (207764) example: expect speed: 0.000000 real_pulses:0 +I (207764) example: new speed:399.000000 +I (207774) example: expect speed: 0.000000 real_pulses:0 +I (207774) example: new speed:399.000000 +I (207784) example: expect speed: 0.000000 real_pulses:0 +I (207794) example: new speed:399.000000 +I (207794) example: expect speed: 0.000000 real_pulses:0 +I (207794) example: new speed:399.000000 +I (207804) example: expect speed: 0.000000 real_pulses:0 +I (207804) example: new speed:399.000000 +I (207814) example: expect speed: 0.000000 real_pulses:0 +I (207824) example: new speed:399.000000 +I (207824) example: expect speed: 0.000000 real_pulses:0 +I (207834) example: new speed:399.000000 +I (207834) example: expect speed: 0.000000 real_pulses:0 +I (207844) example: new speed:399.000000 +I (207844) example: expect speed: 0.000000 real_pulses:0 +I (207844) example: new speed:399.000000 +I (207854) example: expect speed: 0.000000 real_pulses:0 +I (207854) example: new speed:399.000000 +I (207864) example: expect speed: 0.000000 real_pulses:0 +I (207864) example: new speed:399.000000 +I (207874) example: expect speed: 0.000000 real_pulses:0 +I (207874) example: new speed:399.000000 +I (207884) example: expect speed: 0.000000 real_pulses:0 +I (207884) example: new speed:399.000000 +I (207894) example: expect speed: 0.000000 real_pulses:0 +I (207894) example: new speed:399.000000 +I (207904) example: expect speed: 0.000000 real_pulses:0 +I (207904) example: new speed:399.000000 +I (207914) example: expect speed: 0.000000 real_pulses:0 +I (207914) example: new speed:399.000000 +I (207924) example: expect speed: 0.000000 real_pulses:0 +I (207924) example: new speed:399.000000 +I (207934) example: expect speed: 0.000000 real_pulses:0 +I (207934) example: new speed:399.000000 +I (207944) example: expect speed: 0.000000 real_pulses:0 +I (207944) example: new speed:399.000000 +I (207954) example: expect speed: 0.000000 real_pulses:0 +I (207954) example: new speed:399.000000 +I (207964) example: expect speed: 0.000000 real_pulses:0 +I (207964) example: new speed:399.000000 +I (207974) example: expect speed: 0.000000 real_pulses:0 +I (207974) example: new speed:399.000000 +I (207984) example: expect speed: 0.000000 real_pulses:0 +I (207984) example: new speed:399.000000 +I (207994) example: expect speed: 0.000000 real_pulses:0 +I (207994) example: new speed:399.000000 +I (208004) example: expect speed: 0.000000 real_pulses:0 +I (208004) example: new speed:399.000000 +I (208014) example: expect speed: 0.000000 real_pulses:0 +I (208014) example: new speed:399.000000 +I (208024) example: expect speed: 0.000000 real_pulses:0 +I (208024) example: new speed:399.000000 +I (208034) example: expect speed: 0.000000 real_pulses:0 +I (208034) example: new speed:399.000000 +I (208044) example: expect speed: 0.000000 real_pulses:0 +I (208044) example: new speed:399.000000 +I (208054) example: expect speed: 0.000000 real_pulses:0 +I (208054) example: new speed:399.000000 +I (208064) example: expect speed: 0.000000 real_pulses:0 +I (208064) example: new speed:399.000000 +I (208074) example: expect speed: 0.000000 real_pulses:0 +I (208074) example: new speed:399.000000 +I (208084) example: expect speed: 0.000000 real_pulses:0 +I (208084) example: new speed:399.000000 +I (208094) example: expect speed: 0.000000 real_pulses:0 +I (208094) example: new speed:399.000000 +I (208104) example: expect speed: 0.000000 real_pulses:0 +I (208104) example: new speed:399.000000 +I (208114) example: expect speed: 0.000000 real_pulses:0 +I (208114) example: new speed:399.000000 +I (208124) example: expect speed: 0.000000 real_pulses:0 +I (208124) example: new speed:399.000000 +I (208134) example: expect speed: 0.000000 real_pulses:0 +I (208134) example: new speed:399.000000 +I (208144) example: expect speed: 0.000000 real_pulses:0 +I (208144) example: new speed:399.000000 +I (208154) example: expect speed: 0.000000 real_pulses:0 +I (208154) example: new speed:399.000000 +I (208164) example: expect speed: 0.000000 real_pulses:0 +I (208164) example: new speed:399.000000 +I (208174) example: expect speed: 0.000000 real_pulses:0 +I (208174) example: new speed:399.000000 +I (208184) example: expect speed: 0.000000 real_pulses:0 +I (208184) example: new speed:399.000000 +I (208194) example: expect speed: 0.000000 real_pulses:0 +I (208194) example: new speed:399.000000 +I (208204) example: expect speed: 0.000000 real_pulses:0 +I (208204) example: new speed:399.000000 +I (208214) example: expect speed: 0.000000 real_pulses:0 +I (208214) example: new speed:399.000000 +I (208224) example: expect speed: 0.000000 real_pulses:0 +I (208224) example: new speed:399.000000 +I (208234) example: expect speed: 0.000000 real_pulses:0 +I (208234) example: new speed:399.000000 +I (208244) example: expect speed: 0.000000 real_pulses:0 +I (208244) example: new speed:399.000000 +I (208254) example: expect speed: 0.000000 real_pulses:0 +I (208254) example: new speed:399.000000 +I (208264) example: expect speed: 0.000000 real_pulses:0 +I (208264) example: new speed:399.000000 +I (208274) example: expect speed: 0.000000 real_pulses:0 +I (208274) example: new speed:399.000000 +I (208284) example: expect speed: 0.000000 real_pulses:0 +I (208284) example: new speed:399.000000 +I (208294) example: expect speed: 0.000000 real_pulses:0 +I (208294) example: new speed:399.000000 +I (208304) example: expect speed: 0.000000 real_pulses:0 +I (208304) example: new speed:399.000000 +I (208314) example: expect speed: 0.000000 real_pulses:0 +I (208314) example: new speed:399.000000 +I (208324) example: expect speed: 0.000000 real_pulses:0 +I (208324) example: new speed:399.000000 +I (208334) example: expect speed: 0.000000 real_pulses:0 +I (208334) example: new speed:399.000000 +I (208344) example: expect speed: 0.000000 real_pulses:0 +I (208344) example: new speed:399.000000 +I (208354) example: expect speed: 0.000000 real_pulses:0 +I (208354) example: new speed:399.000000 +I (208364) example: expect speed: 0.000000 real_pulses:0 +I (208364) example: new speed:399.000000 +I (208374) example: expect speed: 0.000000 real_pulses:0 +I (208374) example: new speed:399.000000 +I (208384) example: expect speed: 0.000000 real_pulses:0 +I (208384) example: new speed:399.000000 +I (208394) example: expect speed: 0.000000 real_pulses:0 +I (208394) example: new speed:399.000000 +I (208404) example: expect speed: 0.000000 real_pulses:0 +I (208404) example: new speed:399.000000 +I (208414) example: expect speed: 0.000000 real_pulses:0 +I (208414) example: new speed:399.000000 +I (208424) example: expect speed: 0.000000 real_pulses:0 +I (208424) example: new speed:399.000000 +I (208434) example: expect speed: 0.000000 real_pulses:0 +I (208434) example: new speed:399.000000 +I (208444) example: expect speed: 0.000000 real_pulses:0 +I (208444) example: new speed:399.000000 +I (208454) example: expect speed: 0.000000 real_pulses:0 +I (208454) example: new speed:399.000000 +I (208464) example: expect speed: 0.000000 real_pulses:0 +I (208464) example: new speed:399.000000 +I (208474) example: expect speed: 0.000000 real_pulses:0 +I (208474) example: new speed:399.000000 +I (208484) example: expect speed: 0.000000 real_pulses:0 +I (208484) example: new speed:399.000000 +I (208494) example: expect speed: 0.000000 real_pulses:0 +I (208494) example: new speed:399.000000 +I (208504) example: expect speed: 0.000000 real_pulses:0 +I (208504) example: new speed:399.000000 +I (208514) example: expect speed: 0.000000 real_pulses:0 +I (208514) example: new speed:399.000000 +I (208524) example: expect speed: 0.000000 real_pulses:0 +I (208524) example: new speed:399.000000 +I (208534) example: expect speed: 0.000000 real_pulses:0 +I (208534) example: new speed:399.000000 +I (208544) example: expect speed: 0.000000 real_pulses:0 +I (208544) example: new speed:399.000000 +I (208554) example: expect speed: 0.000000 real_pulses:0 +I (208554) example: new speed:399.000000 +I (208564) example: expect speed: 0.000000 real_pulses:0 +I (208564) example: new speed:399.000000 +I (208574) example: expect speed: 0.000000 real_pulses:0 +I (208574) example: new speed:399.000000 +I (208584) example: expect speed: 0.000000 real_pulses:0 +I (208584) example: new speed:399.000000 +I (208594) example: expect speed: 0.000000 real_pulses:0 +I (208594) example: new speed:399.000000 +I (208604) example: expect speed: 0.000000 real_pulses:0 +I (208604) example: new speed:399.000000 +I (208614) example: expect speed: 0.000000 real_pulses:0 +I (208614) example: new speed:399.000000 +I (208624) example: expect speed: 0.000000 real_pulses:0 +I (208624) example: new speed:399.000000 +I (208634) example: expect speed: 0.000000 real_pulses:0 +I (208634) example: new speed:399.000000 +I (208644) example: expect speed: 0.000000 real_pulses:0 +I (208644) example: new speed:399.000000 +I (208654) example: expect speed: 0.000000 real_pulses:0 +I (208654) example: new speed:399.000000 +I (208664) example: expect speed: 0.000000 real_pulses:0 +I (208664) example: new speed:399.000000 +I (208674) example: expect speed: 0.000000 real_pulses:0 +I (208674) example: new speed:399.000000 +I (208684) example: expect speed: 0.000000 real_pulses:0 +I (208684) example: new speed:399.000000 +I (208694) example: expect speed: 0.000000 real_pulses:0 +I (208694) example: new speed:399.000000 +I (208704) example: expect speed: 0.000000 real_pulses:0 +I (208704) example: new speed:399.000000 +I (208714) example: expect speed: 0.000000 real_pulses:0 +I (208714) example: new speed:399.000000 +I (208724) example: expect speed: 0.000000 real_pulses:0 +I (208724) example: new speed:399.000000 +I (208734) example: expect speed: 0.000000 real_pulses:0 +I (208744) example: new speed:399.000000 +I (208744) example: expect speed: 0.000000 real_pulses:0 +I (208744) example: new speed:399.000000 +I (208754) modbus tcp: ModBusSlave_recv() +I (208754) modbus: ModbusSlaveProcess() +I (208754) modbus: check id... +I (208754) modbus: ok +I (208754) modbus: add: 0, length: 10 +I (208754) modbus: Read Holding Registers +I (208754) example: expect speed: 0.000000 real_pulses:0 +I (208764) example: new speed:399.000000 +I (208764) example: expect speed: 0.000000 real_pulses:0 +I (208764) example: new speed:399.000000 +I (208774) example: expect speed: 0.000000 real_pulses:0 +I (208774) example: new speed:399.000000 +I (208784) example: expect speed: 0.000000 real_pulses:0 +I (208784) example: new speed:399.000000 +I (208794) example: expect speed: 0.000000 real_pulses:0 +I (208794) example: new speed:399.000000 +I (208804) example: expect speed: 0.000000 real_pulses:0 +I (208804) example: new speed:399.000000 +I (208814) example: expect speed: 0.000000 real_pulses:0 +I (208814) example: new speed:399.000000 +I (208824) example: expect speed: 0.000000 real_pulses:0 +I (208824) example: new speed:399.000000 +I (208834) example: expect speed: 0.000000 real_pulses:0 +I (208834) example: new speed:399.000000 +I (208844) example: expect speed: 0.000000 real_pulses:0 +I (208854) example: new speed:399.000000 +I (208854) example: expect speed: 0.000000 real_pulses:0 +I (208854) example: new speed:399.000000 +I (208864) example: expect speed: 0.000000 real_pulses:0 +I (208864) example: new speed:399.000000 +I (208874) example: expect speed: 0.000000 real_pulses:0 +I (208874) example: new speed:399.000000 +I (208884) example: expect speed: 0.000000 real_pulses:0 +I (208884) example: new speed:399.000000 +I (208894) example: expect speed: 0.000000 real_pulses:0 +I (208894) example: new speed:399.000000 +I (208904) example: expect speed: 0.000000 real_pulses:0 +I (208904) example: new speed:399.000000 +I (208914) example: expect speed: 0.000000 real_pulses:0 +I (208914) example: new speed:399.000000 +I (208924) example: expect speed: 0.000000 real_pulses:0 +I (208924) example: new speed:399.000000 +I (208934) example: expect speed: 0.000000 real_pulses:0 +I (208934) example: new speed:399.000000 +I (208944) example: expect speed: 0.000000 real_pulses:0 +I (208944) example: new speed:399.000000 +I (208954) example: expect speed: 0.000000 real_pulses:0 +I (208954) example: new speed:399.000000 +I (208964) example: expect speed: 0.000000 real_pulses:0 +I (208964) example: new speed:399.000000 +I (208974) example: expect speed: 0.000000 real_pulses:0 +I (208974) example: new speed:399.000000 +I (208984) example: expect speed: 0.000000 real_pulses:0 +I (208984) example: new speed:399.000000 +I (208994) example: expect speed: 0.000000 real_pulses:0 +I (208994) example: new speed:399.000000 +I (209004) example: expect speed: 0.000000 real_pulses:0 +I (209004) example: new speed:399.000000 +I (209014) example: expect speed: 0.000000 real_pulses:0 +I (209014) example: new speed:399.000000 +I (209024) example: expect speed: 0.000000 real_pulses:0 +I (209024) example: new speed:399.000000 +I (209034) example: expect speed: 0.000000 real_pulses:0 +I (209034) example: new speed:399.000000 +I (209044) example: expect speed: 0.000000 real_pulses:0 +I (209054) example: new speed:399.000000 +I (209054) example: expect speed: 0.000000 real_pulses:0 +I (209064) example: new speed:399.000000 +I (209064) example: expect speed: 0.000000 real_pulses:0 +I (209064) example: new speed:399.000000 +I (209074) example: expect speed: 0.000000 real_pulses:0 +I (209074) example: new speed:399.000000 +I (209084) example: expect speed: 0.000000 real_pulses:0 +I (209084) example: new speed:399.000000 +I (209094) example: expect speed: 0.000000 real_pulses:0 +I (209094) example: new speed:399.000000 +I (209104) example: expect speed: 0.000000 real_pulses:0 +I (209104) example: new speed:399.000000 +I (209114) example: expect speed: 0.000000 real_pulses:0 +I (209124) example: new speed:399.000000 +I (209124) example: expect speed: 0.000000 real_pulses:0 +I (209124) example: new speed:399.000000 +I (209134) example: expect speed: 0.000000 real_pulses:0 +I (209134) example: new speed:399.000000 +I (209144) example: expect speed: 0.000000 real_pulses:0 +I (209144) example: new speed:399.000000 +I (209154) example: expect speed: 0.000000 real_pulses:0 +I (209154) example: new speed:399.000000 +I (209164) example: expect speed: 0.000000 real_pulses:0 +I (209164) example: new speed:399.000000 +I (209174) example: expect speed: 0.000000 real_pulses:0 +I (209174) example: new speed:399.000000 +I (209184) example: expect speed: 0.000000 real_pulses:0 +I (209184) example: new speed:399.000000 +I (209194) example: expect speed: 0.000000 real_pulses:0 +I (209194) example: new speed:399.000000 +I (209204) example: expect speed: 0.000000 real_pulses:0 +I (209204) example: new speed:399.000000 +I (209214) example: expect speed: 0.000000 real_pulses:0 +I (209214) example: new speed:399.000000 +I (209224) example: expect speed: 0.000000 real_pulses:0 +I (209224) example: new speed:399.000000 +I (209234) example: expect speed: 0.000000 real_pulses:0 +I (209234) example: new speed:399.000000 +I (209244) example: expect speed: 0.000000 real_pulses:0 +I (209244) example: new speed:399.000000 +I (209254) example: expect speed: 0.000000 real_pulses:0 +I (209254) example: new speed:399.000000 +I (209264) example: expect speed: 0.000000 real_pulses:0 +I (209264) example: new speed:399.000000 +I (209274) example: expect speed: 0.000000 real_pulses:0 +I (209274) example: new speed:399.000000 +I (209284) example: expect speed: 0.000000 real_pulses:0 +I (209284) example: new speed:399.000000 +I (209294) example: expect speed: 0.000000 real_pulses:0 +I (209294) example: new speed:399.000000 +I (209304) example: expect speed: 0.000000 real_pulses:0 +I (209304) example: new speed:399.000000 +I (209314) example: expect speed: 0.000000 real_pulses:0 +I (209314) example: new speed:399.000000 +I (209324) example: expect speed: 0.000000 real_pulses:0 +I (209324) example: new speed:399.000000 +I (209334) example: expect speed: 0.000000 real_pulses:0 +I (209334) example: new speed:399.000000 +I (209344) example: expect speed: 0.000000 real_pulses:0 +I (209344) example: new speed:399.000000 +I (209354) example: expect speed: 0.000000 real_pulses:0 +I (209364) example: new speed:399.000000 +I (209364) example: expect speed: 0.000000 real_pulses:0 +I (209374) example: new speed:399.000000 +I (209374) example: expect speed: 0.000000 real_pulses:0 +I (209374) example: new speed:399.000000 +I (209384) example: expect speed: 0.000000 real_pulses:0 +I (209384) example: new speed:399.000000 +I (209394) example: expect speed: 0.000000 real_pulses:0 +I (209394) example: new speed:399.000000 +I (209404) example: expect speed: 0.000000 real_pulses:0 +I (209404) example: new speed:399.000000 +I (209414) example: expect speed: 0.000000 real_pulses:0 +I (209414) example: new speed:399.000000 +I (209424) example: expect speed: 0.000000 real_pulses:0 +I (209434) example: new speed:399.000000 +I (209434) example: expect speed: 0.000000 real_pulses:0 +I (209434) example: new speed:399.000000 +I (209444) example: expect speed: 0.000000 real_pulses:0 +I (209444) example: new speed:399.000000 +I (209454) example: expect speed: 0.000000 real_pulses:0 +I (209454) example: new speed:399.000000 +I (209464) example: expect speed: 0.000000 real_pulses:0 +I (209464) example: new speed:399.000000 +I (209474) example: expect speed: 0.000000 real_pulses:0 +I (209474) example: new speed:399.000000 +I (209484) example: expect speed: 0.000000 real_pulses:0 +I (209484) example: new speed:399.000000 +I (209494) example: expect speed: 0.000000 real_pulses:0 +I (209494) example: new speed:399.000000 +I (209504) example: expect speed: 0.000000 real_pulses:0 +I (209504) example: new speed:399.000000 +I (209514) example: expect speed: 0.000000 real_pulses:0 +I (209514) example: new speed:399.000000 +I (209524) example: expect speed: 0.000000 real_pulses:0 +I (209524) example: new speed:399.000000 +I (209534) example: expect speed: 0.000000 real_pulses:0 +I (209534) example: new speed:399.000000 +I (209544) example: expect speed: 0.000000 real_pulses:0 +I (209544) example: new speed:399.000000 +I (209554) example: expect speed: 0.000000 real_pulses:0 +I (209554) example: new speed:399.000000 +I (209564) example: expect speed: 0.000000 real_pulses:0 +I (209564) example: new speed:399.000000 +I (209574) example: expect speed: 0.000000 real_pulses:0 +I (209574) example: new speed:399.000000 +I (209584) example: expect speed: 0.000000 real_pulses:0 +I (209584) example: new speed:399.000000 +I (209594) example: expect speed: 0.000000 real_pulses:0 +I (209594) example: new speed:399.000000 +I (209604) example: expect speed: 0.000000 real_pulses:0 +I (209604) example: new speed:399.000000 +I (209614) example: expect speed: 0.000000 real_pulses:0 +I (209614) example: new speed:399.000000 +I (209624) example: expect speed: 0.000000 real_pulses:0 +I (209624) example: new speed:399.000000 +I (209634) example: expect speed: 0.000000 real_pulses:0 +I (209634) example: new speed:399.000000 +I (209644) example: expect speed: 0.000000 real_pulses:0 +I (209644) example: new speed:399.000000 +I (209654) example: expect speed: 0.000000 real_pulses:0 +I (209654) example: new speed:399.000000 +I (209664) example: expect speed: 0.000000 real_pulses:0 +I (209664) example: new speed:399.000000 +I (209674) example: expect speed: 0.000000 real_pulses:0 +I (209674) example: new speed:399.000000 +I (209684) example: expect speed: 0.000000 real_pulses:0 +I (209684) example: new speed:399.000000 +I (209694) example: expect speed: 0.000000 real_pulses:0 +I (209694) example: new speed:399.000000 +I (209704) example: expect speed: 0.000000 real_pulses:0 +I (209704) example: new speed:399.000000 +I (209714) example: expect speed: 0.000000 real_pulses:0 +I (209714) example: new speed:399.000000 +I (209724) example: expect speed: 0.000000 real_pulses:0 +I (209724) example: new speed:399.000000 +I (209734) example: expect speed: 0.000000 real_pulses:0 +I (209734) example: new speed:399.000000 +I (209744) example: expect speed: 0.000000 real_pulses:0 +I (209744) example: new speed:399.000000 +I (209754) example: expect speed: 0.000000 real_pulses:0 +I (209754) example: new speed:399.000000 +I (209764) example: expect speed: 0.000000 real_pulses:0 +I (209764) example: new speed:399.000000 +I (209774) example: expect speed: 0.000000 real_pulses:0 +I (209774) example: new speed:399.000000 +I (209784) example: expect speed: 0.000000 real_pulses:0 +I (209784) example: new speed:399.000000 +I (209794) example: expect speed: 0.000000 real_pulses:0 +I (209794) example: new speed:399.000000 +I (209804) example: expect speed: 0.000000 real_pulses:0 +I (209804) example: new speed:399.000000 +I (209814) example: expect speed: 0.000000 real_pulses:0 +I (209814) example: new speed:399.000000 +I (209824) example: expect speed: 0.000000 real_pulses:0 +I (209824) example: new speed:399.000000 +I (209834) example: expect speed: 0.000000 real_pulses:0 +I (209834) example: new speed:399.000000 +I (209844) example: expect speed: 0.000000 real_pulses:0 +I (209844) example: new speed:399.000000 +I (209854) example: expect speed: 0.000000 real_pulses:0 +I (209854) example: new speed:399.000000 +I (209864) example: expect speed: 0.000000 real_pulses:0 +I (209864) example: new speed:399.000000 +I (209874) example: expect speed: 0.000000 real_pulses:0 +I (209874) example: new speed:399.000000 +I (209884) example: expect speed: 0.000000 real_pulses:0 +I (209884) example: new speed:399.000000 +I (209894) example: expect speed: 0.000000 real_pulses:0 +I (209894) example: new speed:399.000000 +I (209904) example: expect speed: 0.000000 real_pulses:0 +I (209904) example: new speed:399.000000 +I (209914) example: expect speed: 0.000000 real_pulses:0 +I (209914) example: new speed:399.000000 +I (209924) example: expect speed: 0.000000 real_pulses:0 +I (209924) example: new speed:399.000000 +I (209934) example: expect speed: 0.000000 real_pulses:0 +I (209934) example: new speed:399.000000 +I (209944) example: expect speed: 0.000000 real_pulses:0 +I (209944) example: new speed:399.000000 +I (209954) example: expect speed: 0.000000 real_pulses:0 +I (209954) example: new speed:399.000000 +I (209964) example: expect speed: 0.000000 real_pulses:0 +I (209974) example: new speed:399.000000 +I (209974) modbus tcp: ModBusSlave_recv() +I (209974) modbus: ModbusSlaveProcess() +I (209974) modbus: check id... +I (209974) modbus: ok +I (209974) modbus: add: 0, length: 10 +I (209974) modbus: Read Holding Registers +I (209974) example: expect speed: 0.000000 real_pulses:0 +I (209974) example: new speed:399.000000 +I (209984) example: expect speed: 0.000000 real_pulses:0 +I (209984) example: new speed:399.000000 +I (209994) example: expect speed: 0.000000 real_pulses:0 +I (209994) example: new speed:399.000000 +I (210004) example: expect speed: 0.000000 real_pulses:0 +I (210004) example: new speed:399.000000 +I (210014) example: expect speed: 0.000000 real_pulses:0 +I (210014) example: new speed:399.000000 +I (210024) example: expect speed: 0.000000 real_pulses:0 +I (210034) example: new speed:399.000000 +I (210034) example: expect speed: 0.000000 real_pulses:0 +I (210044) example: new speed:399.000000 +I (210044) example: expect speed: 0.000000 real_pulses:0 +I (210044) example: new speed:399.000000 +I (210054) example: expect speed: 0.000000 real_pulses:0 +I (210054) example: new speed:399.000000 +I (210064) example: expect speed: 0.000000 real_pulses:0 +I (210064) example: new speed:399.000000 +I (210074) example: expect speed: 0.000000 real_pulses:0 +I (210084) example: new speed:399.000000 +I (210084) example: expect speed: 0.000000 real_pulses:0 +I (210084) example: new speed:399.000000 +I (210094) example: expect speed: 0.000000 real_pulses:0 +I (210094) example: new speed:399.000000 +I (210104) example: expect speed: 0.000000 real_pulses:0 +I (210104) example: new speed:399.000000 +I (210114) example: expect speed: 0.000000 real_pulses:0 +I (210114) example: new speed:399.000000 +I (210124) example: expect speed: 0.000000 real_pulses:0 +I (210134) example: new speed:399.000000 +I (210134) example: expect speed: 0.000000 real_pulses:0 +I (210134) example: new speed:399.000000 +I (210144) example: expect speed: 0.000000 real_pulses:0 +I (210144) example: new speed:399.000000 +I (210154) example: expect speed: 0.000000 real_pulses:0 +I (210154) example: new speed:399.000000 +I (210164) example: expect speed: 0.000000 real_pulses:0 +I (210164) example: new speed:399.000000 +I (210174) example: expect speed: 0.000000 real_pulses:0 +I (210174) example: new speed:399.000000 +I (210184) example: expect speed: 0.000000 real_pulses:0 +I (210184) example: new speed:399.000000 +I (210194) example: expect speed: 0.000000 real_pulses:0 +I (210194) example: new speed:399.000000 +I (210204) example: expect speed: 0.000000 real_pulses:0 +I (210204) example: new speed:399.000000 +I (210214) example: expect speed: 0.000000 real_pulses:0 +I (210214) example: new speed:399.000000 +I (210224) example: expect speed: 0.000000 real_pulses:0 +I (210224) example: new speed:399.000000 +I (210234) example: expect speed: 0.000000 real_pulses:0 +I (210234) example: new speed:399.000000 +I (210244) example: expect speed: 0.000000 real_pulses:0 +I (210244) example: new speed:399.000000 +I (210254) example: expect speed: 0.000000 real_pulses:0 +I (210254) example: new speed:399.000000 +I (210264) example: expect speed: 0.000000 real_pulses:0 +I (210264) example: new speed:399.000000 +I (210274) example: expect speed: 0.000000 real_pulses:0 +I (210274) example: new speed:399.000000 +I (210284) example: expect speed: 0.000000 real_pulses:0 +I (210284) example: new speed:399.000000 +I (210294) example: expect speed: 0.000000 real_pulses:0 +I (210294) example: new speed:399.000000 +I (210304) example: expect speed: 0.000000 real_pulses:0 +I (210304) example: new speed:399.000000 +I (210314) example: expect speed: 0.000000 real_pulses:0 +I (210314) example: new speed:399.000000 +I (210324) example: expect speed: 0.000000 real_pulses:0 +I (210324) example: new speed:399.000000 +I (210334) example: expect speed: 0.000000 real_pulses:0 +I (210334) example: new speed:399.000000 +I (210344) example: expect speed: 0.000000 real_pulses:0 +I (210344) example: new speed:399.000000 +I (210354) example: expect speed: 0.000000 real_pulses:0 +I (210354) example: new speed:399.000000 +I (210364) example: expect speed: 0.000000 real_pulses:0 +I (210364) example: new speed:399.000000 +I (210374) example: expect speed: 0.000000 real_pulses:0 +I (210374) example: new speed:399.000000 +I (210384) example: expect speed: 0.000000 real_pulses:0 +I (210384) example: new speed:399.000000 +I (210394) example: expect speed: 0.000000 real_pulses:0 +I (210394) example: new speed:399.000000 +I (210404) example: expect speed: 0.000000 real_pulses:0 +I (210404) example: new speed:399.000000 +I (210414) example: expect speed: 0.000000 real_pulses:0 +I (210414) example: new speed:399.000000 +I (210424) example: expect speed: 0.000000 real_pulses:0 +I (210424) example: new speed:399.000000 +I (210434) example: expect speed: 0.000000 real_pulses:0 +I (210434) example: new speed:399.000000 +I (210444) example: expect speed: 0.000000 real_pulses:0 +I (210444) example: new speed:399.000000 +I (210454) example: expect speed: 0.000000 real_pulses:0 +I (210454) example: new speed:399.000000 +I (210464) example: expect speed: 0.000000 real_pulses:0 +I (210464) example: new speed:399.000000 +I (210474) example: expect speed: 0.000000 real_pulses:0 +I (210474) example: new speed:399.000000 +I (210484) example: expect speed: 0.000000 real_pulses:0 +I (210484) example: new speed:399.000000 +I (210494) example: expect speed: 0.000000 real_pulses:0 +I (210494) example: new speed:399.000000 +I (210504) example: expect speed: 0.000000 real_pulses:0 +I (210504) example: new speed:399.000000 +I (210514) example: expect speed: 0.000000 real_pulses:0 +I (210514) example: new speed:399.000000 +I (210524) example: expect speed: 0.000000 real_pulses:0 +I (210524) example: new speed:399.000000 +I (210534) example: expect speed: 0.000000 real_pulses:0 +I (210534) example: new speed:399.000000 +I (210544) example: expect speed: 0.000000 real_pulses:0 +I (210544) example: new speed:399.000000 +I (210554) example: expect speed: 0.000000 real_pulses:0 +I (210554) example: new speed:399.000000 +I (210564) example: expect speed: 0.000000 real_pulses:0 +I (210564) example: new speed:399.000000 +I (210574) example: expect speed: 0.000000 real_pulses:0 +I (210574) example: new speed:399.000000 +I (210584) example: expect speed: 0.000000 real_pulses:0 +I (210584) example: new speed:399.000000 +I (210594) example: expect speed: 0.000000 real_pulses:0 +I (210594) example: new speed:399.000000 +I (210604) example: expect speed: 0.000000 real_pulses:0 +I (210604) example: new speed:399.000000 +I (210614) example: expect speed: 0.000000 real_pulses:0 +I (210614) example: new speed:399.000000 +I (210624) example: expect speed: 0.000000 real_pulses:0 +I (210624) example: new speed:399.000000 +I (210634) example: expect speed: 0.000000 real_pulses:0 +I (210634) example: new speed:399.000000 +I (210644) example: expect speed: 0.000000 real_pulses:0 +I (210644) example: new speed:399.000000 +I (210654) example: expect speed: 0.000000 real_pulses:0 +I (210654) example: new speed:399.000000 +I (210664) example: expect speed: 0.000000 real_pulses:0 +I (210664) example: new speed:399.000000 +I (210674) example: expect speed: 0.000000 real_pulses:0 +I (210674) example: new speed:399.000000 +I (210684) example: expect speed: 0.000000 real_pulses:0 +I (210684) example: new speed:399.000000 +I (210694) example: expect speed: 0.000000 real_pulses:0 +I (210694) example: new speed:399.000000 +I (210704) example: expect speed: 0.000000 real_pulses:0 +I (210704) example: new speed:399.000000 +I (210714) example: expect speed: 0.000000 real_pulses:0 +I (210714) example: new speed:399.000000 +I (210724) example: expect speed: 0.000000 real_pulses:0 +I (210724) example: new speed:399.000000 +I (210734) example: expect speed: 0.000000 real_pulses:0 +I (210734) example: new speed:399.000000 +I (210744) example: expect speed: 0.000000 real_pulses:0 +I (210744) example: new speed:399.000000 +I (210754) example: expect speed: 0.000000 real_pulses:0 +I (210754) example: new speed:399.000000 +I (210764) example: expect speed: 0.000000 real_pulses:0 +I (210764) example: new speed:399.000000 +I (210774) example: expect speed: 0.000000 real_pulses:0 +I (210774) example: new speed:399.000000 +I (210784) example: expect speed: 0.000000 real_pulses:0 +I (210784) example: new speed:399.000000 +I (210794) example: expect speed: 0.000000 real_pulses:0 +I (210794) example: new speed:399.000000 +I (210804) example: expect speed: 0.000000 real_pulses:0 +I (210804) example: new speed:399.000000 +I (210814) example: expect speed: 0.000000 real_pulses:0 +I (210814) example: new speed:399.000000 +I (210824) example: expect speed: 0.000000 real_pulses:0 +I (210824) example: new speed:399.000000 +I (210834) example: expect speed: 0.000000 real_pulses:0 +I (210834) example: new speed:399.000000 +I (210844) example: expect speed: 0.000000 real_pulses:0 +I (210844) example: new speed:399.000000 +I (210854) example: expect speed: 0.000000 real_pulses:0 +I (210854) example: new speed:399.000000 +I (210864) example: expect speed: 0.000000 real_pulses:0 +I (210864) example: new speed:399.000000 +I (210874) example: expect speed: 0.000000 real_pulses:0 +I (210874) example: new speed:399.000000 +I (210884) example: expect speed: 0.000000 real_pulses:0 +I (210884) example: new speed:399.000000 +I (210894) example: expect speed: 0.000000 real_pulses:0 +I (210894) example: new speed:399.000000 +I (210904) example: expect speed: 0.000000 real_pulses:0 +I (210904) example: new speed:399.000000 +I (210914) example: expect speed: 0.000000 real_pulses:0 +I (210914) example: new speed:399.000000 +I (210924) example: expect speed: 0.000000 real_pulses:0 +I (210924) example: new speed:399.000000 +I (210934) example: expect speed: 0.000000 real_pulses:0 +I (210934) example: new speed:399.000000 +I (210944) example: expect speed: 0.000000 real_pulses:0 +I (210944) example: new speed:399.000000 +I (210954) example: expect speed: 0.000000 real_pulses:0 +I (210954) example: new speed:399.000000 +I (210964) example: expect speed: 0.000000 real_pulses:0 +I (210964) example: new speed:399.000000 +I (210974) example: expect speed: 0.000000 real_pulses:0 +I (210974) example: new speed:399.000000 +I (210984) example: expect speed: 0.000000 real_pulses:0 +I (210984) example: new speed:399.000000 +I (210994) example: expect speed: 0.000000 real_pulses:0 +I (210994) example: new speed:399.000000 +I (211004) example: expect speed: 0.000000 real_pulses:0 +I (211004) example: new speed:399.000000 +I (211014) example: expect speed: 0.000000 real_pulses:0 +I (211014) example: new speed:399.000000 +I (211024) example: expect speed: 0.000000 real_pulses:0 +I (211024) example: new speed:399.000000 +I (211034) example: expect speed: 0.000000 real_pulses:0 +I (211034) example: new speed:399.000000 +I (211044) example: expect speed: 0.000000 real_pulses:0 +I (211044) example: new speed:399.000000 +I (211054) example: expect speed: 0.000000 real_pulses:0 +I (211054) example: new speed:399.000000 +I (211064) example: expect speed: 0.000000 real_pulses:0 +I (211064) example: new speed:399.000000 +I (211074) example: expect speed: 0.000000 real_pulses:0 +I (211074) example: new speed:399.000000 +I (211084) example: expect speed: 0.000000 real_pulses:0 +I (211084) example: new speed:399.000000 +I (211094) example: expect speed: 0.000000 real_pulses:0 +I (211104) example: new speed:399.000000 +I (211104) example: expect speed: 0.000000 real_pulses:0 +I (211104) example: new speed:399.000000 +I (211114) example: expect speed: 0.000000 real_pulses:0 +I (211114) example: new speed:399.000000 +I (211124) example: expect speed: 0.000000 real_pulses:0 +I (211124) example: new speed:399.000000 +I (211134) example: expect speed: 0.000000 real_pulses:0 +I (211134) example: new speed:399.000000 +I (211144) example: expect speed: 0.000000 real_pulses:0 +I (211144) example: new speed:399.000000 +I (211154) example: expect speed: 0.000000 real_pulses:0 +I (211154) example: new speed:399.000000 +I (211164) example: expect speed: 0.000000 real_pulses:0 +I (211164) example: new speed:399.000000 +I (211174) example: expect speed: 0.000000 real_pulses:0 +I (211174) example: new speed:399.000000 +I (211184) example: expect speed: 0.000000 real_pulses:0 +I (211184) example: new speed:399.000000 +I (211194) example: expect speed: 0.000000 real_pulses:0 +I (211204) example: new speed:399.000000 +I (211204) modbus tcp: ModBusSlave_recv() +I (211204) modbus: ModbusSlaveProcess() +I (211204) modbus: check id... +I (211204) modbus: ok +I (211204) modbus: add: 0, length: 10 +I (211204) modbus: Read Holding Registers +I (211204) example: expect speed: 0.000000 real_pulses:0 +I (211204) example: new speed:399.000000 +I (211214) example: expect speed: 0.000000 real_pulses:0 +I (211214) example: new speed:399.000000 +I (211224) example: expect speed: 0.000000 real_pulses:0 +I (211224) example: new speed:399.000000 +I (211234) example: expect speed: 0.000000 real_pulses:0 +I (211234) example: new speed:399.000000 +I (211244) example: expect speed: 0.000000 real_pulses:0 +I (211244) example: new speed:399.000000 +I (211254) example: expect speed: 0.000000 real_pulses:0 +I (211254) example: new speed:399.000000 +I (211264) example: expect speed: 0.000000 real_pulses:0 +I (211264) example: new speed:399.000000 +I (211274) example: expect speed: 0.000000 real_pulses:0 +I (211274) example: new speed:399.000000 +I (211284) example: expect speed: 0.000000 real_pulses:0 +I (211284) example: new speed:399.000000 +I (211294) example: expect speed: 0.000000 real_pulses:0 +I (211294) example: new speed:399.000000 +I (211304) example: expect speed: 0.000000 real_pulses:0 +I (211304) example: new speed:399.000000 +I (211314) example: expect speed: 0.000000 real_pulses:0 +I (211314) example: new speed:399.000000 +I (211324) example: expect speed: 0.000000 real_pulses:0 +I (211324) example: new speed:399.000000 +I (211334) example: expect speed: 0.000000 real_pulses:0 +I (211334) example: new speed:399.000000 +I (211344) example: expect speed: 0.000000 real_pulses:0 +I (211344) example: new speed:399.000000 +I (211354) example: expect speed: 0.000000 real_pulses:0 +I (211354) example: new speed:399.000000 +I (211364) example: expect speed: 0.000000 real_pulses:0 +I (211364) example: new speed:399.000000 +I (211374) example: expect speed: 0.000000 real_pulses:0 +I (211374) example: new speed:399.000000 +I (211384) example: expect speed: 0.000000 real_pulses:0 +I (211384) example: new speed:399.000000 +I (211394) example: expect speed: 0.000000 real_pulses:0 +I (211394) example: new speed:399.000000 +I (211404) example: expect speed: 0.000000 real_pulses:0 +I (211404) example: new speed:399.000000 +I (211414) example: expect speed: 0.000000 real_pulses:0 +I (211414) example: new speed:399.000000 +I (211424) example: expect speed: 0.000000 real_pulses:0 +I (211424) example: new speed:399.000000 +I (211434) example: expect speed: 0.000000 real_pulses:0 +I (211434) example: new speed:399.000000 +I (211444) example: expect speed: 0.000000 real_pulses:0 +I (211444) example: new speed:399.000000 +I (211454) example: expect speed: 0.000000 real_pulses:0 +I (211454) example: new speed:399.000000 +I (211464) example: expect speed: 0.000000 real_pulses:0 +I (211464) example: new speed:399.000000 +I (211474) example: expect speed: 0.000000 real_pulses:0 +I (211474) example: new speed:399.000000 +I (211484) example: expect speed: 0.000000 real_pulses:0 +I (211484) example: new speed:399.000000 +I (211494) example: expect speed: 0.000000 real_pulses:0 +I (211494) example: new speed:399.000000 +I (211504) example: expect speed: 0.000000 real_pulses:0 +I (211514) example: new speed:399.000000 +I (211514) example: expect speed: 0.000000 real_pulses:0 +I (211514) example: new speed:399.000000 +I (211524) example: expect speed: 0.000000 real_pulses:0 +I (211524) example: new speed:399.000000 +I (211534) example: expect speed: 0.000000 real_pulses:0 +I (211534) example: new speed:399.000000 +I (211544) example: expect speed: 0.000000 real_pulses:0 +I (211544) example: new speed:399.000000 +I (211554) example: expect speed: 0.000000 real_pulses:0 +I (211554) example: new speed:399.000000 +I (211564) example: expect speed: 0.000000 real_pulses:0 +I (211574) example: new speed:399.000000 +I (211574) example: expect speed: 0.000000 real_pulses:0 +I (211574) example: new speed:399.000000 +I (211584) example: expect speed: 0.000000 real_pulses:0 +I (211584) example: new speed:399.000000 +I (211594) example: expect speed: 0.000000 real_pulses:0 +I (211594) example: new speed:399.000000 +I (211604) example: expect speed: 0.000000 real_pulses:0 +I (211604) example: new speed:399.000000 +I (211614) example: expect speed: 0.000000 real_pulses:0 +I (211624) example: new speed:399.000000 +I (211624) example: expect speed: 0.000000 real_pulses:0 +I (211624) example: new speed:399.000000 +I (211634) example: expect speed: 0.000000 real_pulses:0 +I (211634) example: new speed:399.000000 +I (211644) example: expect speed: 0.000000 real_pulses:0 +I (211644) example: new speed:399.000000 +I (211654) example: expect speed: 0.000000 real_pulses:0 +I (211654) example: new speed:399.000000 +I (211664) example: expect speed: 0.000000 real_pulses:0 +I (211664) example: new speed:399.000000 +I (211674) example: expect speed: 0.000000 real_pulses:0 +I (211674) example: new speed:399.000000 +I (211684) example: expect speed: 0.000000 real_pulses:0 +I (211684) example: new speed:399.000000 +I (211694) example: expect speed: 0.000000 real_pulses:0 +I (211694) example: new speed:399.000000 +I (211704) example: expect speed: 0.000000 real_pulses:0 +I (211704) example: new speed:399.000000 +I (211714) example: expect speed: 0.000000 real_pulses:0 +I (211714) example: new speed:399.000000 +I (211724) example: expect speed: 0.000000 real_pulses:0 +I (211724) example: new speed:399.000000 +I (211734) example: expect speed: 0.000000 real_pulses:0 +I (211734) example: new speed:399.000000 +I (211744) example: expect speed: 0.000000 real_pulses:0 +I (211744) example: new speed:399.000000 +I (211754) example: expect speed: 0.000000 real_pulses:0 +I (211754) example: new speed:399.000000 +I (211764) example: expect speed: 0.000000 real_pulses:0 +I (211764) example: new speed:399.000000 +I (211774) example: expect speed: 0.000000 real_pulses:0 +I (211774) example: new speed:399.000000 +I (211784) example: expect speed: 0.000000 real_pulses:0 +I (211784) example: new speed:399.000000 +I (211794) example: expect speed: 0.000000 real_pulses:0 +I (211794) example: new speed:399.000000 +I (211804) example: expect speed: 0.000000 real_pulses:0 +I (211804) example: new speed:399.000000 +I (211814) example: expect speed: 0.000000 real_pulses:0 +I (211814) example: new speed:399.000000 +I (211824) example: expect speed: 0.000000 real_pulses:0 +I (211824) example: new speed:399.000000 +I (211834) example: expect speed: 0.000000 real_pulses:0 +I (211834) example: new speed:399.000000 +I (211844) example: expect speed: 0.000000 real_pulses:0 +I (211844) example: new speed:399.000000 +I (211854) example: expect speed: 0.000000 real_pulses:0 +I (211854) example: new speed:399.000000 +I (211864) example: expect speed: 0.000000 real_pulses:0 +I (211864) example: new speed:399.000000 +I (211874) example: expect speed: 0.000000 real_pulses:0 +I (211874) example: new speed:399.000000 +I (211884) example: expect speed: 0.000000 real_pulses:0 +I (211884) example: new speed:399.000000 +I (211894) example: expect speed: 0.000000 real_pulses:0 +I (211894) example: new speed:399.000000 +I (211904) example: expect speed: 0.000000 real_pulses:0 +I (211904) example: new speed:399.000000 +I (211914) example: expect speed: 0.000000 real_pulses:0 +I (211914) example: new speed:399.000000 +I (211924) example: expect speed: 0.000000 real_pulses:0 +I (211924) example: new speed:399.000000 +I (211934) example: expect speed: 0.000000 real_pulses:0 +I (211934) example: new speed:399.000000 +I (211944) example: expect speed: 0.000000 real_pulses:0 +I (211944) example: new speed:399.000000 +I (211954) example: expect speed: 0.000000 real_pulses:0 +I (211954) example: new speed:399.000000 +I (211964) example: expect speed: 0.000000 real_pulses:0 +I (211964) example: new speed:399.000000 +I (211974) example: expect speed: 0.000000 real_pulses:0 +I (211974) example: new speed:399.000000 +I (211984) example: expect speed: 0.000000 real_pulses:0 +I (211984) example: new speed:399.000000 +I (211994) example: expect speed: 0.000000 real_pulses:0 +I (211994) example: new speed:399.000000 +I (212004) example: expect speed: 0.000000 real_pulses:0 +I (212004) example: new speed:399.000000 +I (212014) example: expect speed: 0.000000 real_pulses:0 +I (212014) example: new speed:399.000000 +I (212024) example: expect speed: 0.000000 real_pulses:0 +I (212024) example: new speed:399.000000 +I (212034) example: expect speed: 0.000000 real_pulses:0 +I (212034) example: new speed:399.000000 +I (212044) example: expect speed: 0.000000 real_pulses:0 +I (212044) example: new speed:399.000000 +I (212054) example: expect speed: 0.000000 real_pulses:0 +I (212054) example: new speed:399.000000 +I (212064) example: expect speed: 0.000000 real_pulses:0 +I (212064) example: new speed:399.000000 +I (212074) example: expect speed: 0.000000 real_pulses:0 +I (212074) example: new speed:399.000000 +I (212084) example: expect speed: 0.000000 real_pulses:0 +I (212084) example: new speed:399.000000 +I (212094) example: expect speed: 0.000000 real_pulses:0 +I (212094) example: new speed:399.000000 +I (212104) example: expect speed: 0.000000 real_pulses:0 +I (212104) example: new speed:399.000000 +I (212114) example: expect speed: 0.000000 real_pulses:0 +I (212124) example: new speed:399.000000 +I (212124) example: expect speed: 0.000000 real_pulses:0 +I (212124) example: new speed:399.000000 +I (212134) example: expect speed: 0.000000 real_pulses:0 +I (212134) example: new speed:399.000000 +I (212144) example: expect speed: 0.000000 real_pulses:0 +I (212144) example: new speed:399.000000 +I (212154) example: expect speed: 0.000000 real_pulses:0 +I (212154) example: new speed:399.000000 +I (212164) example: expect speed: 0.000000 real_pulses:0 +I (212164) example: new speed:399.000000 +I (212174) example: expect speed: 0.000000 real_pulses:0 +I (212174) example: new speed:399.000000 +I (212184) example: expect speed: 0.000000 real_pulses:0 +I (212184) example: new speed:399.000000 +I (212194) example: expect speed: 0.000000 real_pulses:0 +I (212194) example: new speed:399.000000 +I (212204) example: expect speed: 0.000000 real_pulses:0 +I (212204) example: new speed:399.000000 +I (212214) example: expect speed: 0.000000 real_pulses:0 +I (212214) example: new speed:399.000000 +I (212224) example: expect speed: 0.000000 real_pulses:0 +I (212224) example: new speed:399.000000 +I (212234) example: expect speed: 0.000000 real_pulses:0 +I (212234) example: new speed:399.000000 +I (212244) example: expect speed: 0.000000 real_pulses:0 +I (212244) example: new speed:399.000000 +I (212254) example: expect speed: 0.000000 real_pulses:0 +I (212254) example: new speed:399.000000 +I (212264) example: expect speed: 0.000000 real_pulses:0 +I (212264) example: new speed:399.000000 +I (212274) example: expect speed: 0.000000 real_pulses:0 +I (212274) example: new speed:399.000000 +I (212284) example: expect speed: 0.000000 real_pulses:0 +I (212284) example: new speed:399.000000 +I (212294) example: expect speed: 0.000000 real_pulses:0 +I (212294) example: new speed:399.000000 +I (212304) example: expect speed: 0.000000 real_pulses:0 +I (212304) example: new speed:399.000000 +I (212314) example: expect speed: 0.000000 real_pulses:0 +I (212314) example: new speed:399.000000 +I (212324) example: expect speed: 0.000000 real_pulses:0 +I (212324) example: new speed:399.000000 +I (212334) example: expect speed: 0.000000 real_pulses:0 +I (212334) example: new speed:399.000000 +I (212344) example: expect speed: 0.000000 real_pulses:0 +I (212344) example: new speed:399.000000 +I (212354) example: expect speed: 0.000000 real_pulses:0 +I (212354) example: new speed:399.000000 +I (212364) example: expect speed: 0.000000 real_pulses:0 +I (212364) example: new speed:399.000000 +I (212374) example: expect speed: 0.000000 real_pulses:0 +I (212374) example: new speed:399.000000 +I (212384) example: expect speed: 0.000000 real_pulses:0 +I (212384) example: new speed:399.000000 +I (212394) example: expect speed: 0.000000 real_pulses:0 +I (212394) example: new speed:399.000000 +I (212404) example: expect speed: 0.000000 real_pulses:0 +I (212404) example: new speed:399.000000 +I (212414) example: expect speed: 0.000000 real_pulses:0 +I (212414) example: new speed:399.000000 +I (212424) example: expect speed: 0.000000 real_pulses:0 +I (212424) example: new speed:399.000000 +I (212434) example: expect speed: 0.000000 real_pulses:0 +I (212434) example: new speed:399.000000 +I (212444) example: expect speed: 0.000000 real_pulses:0 +I (212444) example: new speed:399.000000 +I (212454) example: expect speed: 0.000000 real_pulses:0 +I (212454) example: new speed:399.000000 +I (212464) example: expect speed: 0.000000 real_pulses:0 +I (212464) example: new speed:399.000000 +I (212474) example: expect speed: 0.000000 real_pulses:0 +I (212474) example: new speed:399.000000 +I (212484) example: expect speed: 0.000000 real_pulses:0 +I (212484) example: new speed:399.000000 +I (212494) example: expect speed: 0.000000 real_pulses:0 +I (212494) example: new speed:399.000000 +I (212504) example: expect speed: 0.000000 real_pulses:0 +I (212504) example: new speed:399.000000 +I (212514) example: expect speed: 0.000000 real_pulses:0 +I (212514) example: new speed:399.000000 +I (212524) example: expect speed: 0.000000 real_pulses:0 +I (212524) example: new speed:399.000000 +I (212534) example: expect speed: 0.000000 real_pulses:0 +I (212534) example: new speed:399.000000 +I (212544) example: expect speed: 0.000000 real_pulses:0 +I (212544) example: new speed:399.000000 +I (212554) example: expect speed: 0.000000 real_pulses:0 +I (212554) example: new speed:399.000000 +I (212564) example: expect speed: 0.000000 real_pulses:0 +I (212564) example: new speed:399.000000 +I (212574) example: expect speed: 0.000000 real_pulses:0 +I (212574) example: new speed:399.000000 +I (212584) example: expect speed: 0.000000 real_pulses:0 +I (212584) example: new speed:399.000000 +I (212594) example: expect speed: 0.000000 real_pulses:0 +I (212594) example: new speed:399.000000 +I (212604) example: expect speed: 0.000000 real_pulses:0 +I (212604) example: new speed:399.000000 +I (212614) example: expect speed: 0.000000 real_pulses:0 +I (212614) example: new speed:399.000000 +I (212624) example: expect speed: 0.000000 real_pulses:0 +I (212624) example: new speed:399.000000 +I (212634) example: expect speed: 0.000000 real_pulses:0 +I (212644) modbus tcp: ModBusSlave_recv() +I (212644) example: new speed:399.000000 +I (212644) modbus: ModbusSlaveProcess() +I (212644) modbus: check id... +I (212644) modbus: ok +I (212644) modbus: add: 0, length: 10 +I (212644) modbus: Read Holding Registers +I (212644) example: expect speed: 0.000000 real_pulses:0 +I (212654) example: new speed:399.000000 +I (212654) example: expect speed: 0.000000 real_pulses:0 +I (212654) example: new speed:399.000000 +I (212664) example: expect speed: 0.000000 real_pulses:0 +I (212664) example: new speed:399.000000 +I (212674) example: expect speed: 0.000000 real_pulses:0 +I (212674) example: new speed:399.000000 +I (212684) example: expect speed: 0.000000 real_pulses:0 +I (212684) example: new speed:399.000000 +I (212694) example: expect speed: 0.000000 real_pulses:0 +I (212704) example: new speed:399.000000 +I (212704) example: expect speed: 0.000000 real_pulses:0 +I (212704) example: new speed:399.000000 +I (212714) example: expect speed: 0.000000 real_pulses:0 +I (212714) example: new speed:399.000000 +I (212724) example: expect speed: 0.000000 real_pulses:0 +I (212724) example: new speed:399.000000 +I (212734) example: expect speed: 0.000000 real_pulses:0 +I (212734) example: new speed:399.000000 +I (212744) example: expect speed: 0.000000 real_pulses:0 +I (212754) example: new speed:399.000000 +I (212754) example: expect speed: 0.000000 real_pulses:0 +I (212754) example: new speed:399.000000 +I (212764) example: expect speed: 0.000000 real_pulses:0 +I (212764) example: new speed:399.000000 +I (212774) example: expect speed: 0.000000 real_pulses:0 +I (212774) example: new speed:399.000000 +I (212784) example: expect speed: 0.000000 real_pulses:0 +I (212784) example: new speed:399.000000 +I (212794) example: expect speed: 0.000000 real_pulses:0 +I (212794) example: new speed:399.000000 +I (212804) example: expect speed: 0.000000 real_pulses:0 +I (212804) example: new speed:399.000000 +I (212814) example: expect speed: 0.000000 real_pulses:0 +I (212814) example: new speed:399.000000 +I (212824) example: expect speed: 0.000000 real_pulses:0 +I (212824) example: new speed:399.000000 +I (212834) example: expect speed: 0.000000 real_pulses:0 +I (212844) example: new speed:399.000000 +I (212844) example: expect speed: 0.000000 real_pulses:0 +I (212844) example: new speed:399.000000 +I (212854) example: expect speed: 0.000000 real_pulses:0 +I (212854) example: new speed:399.000000 +I (212864) example: expect speed: 0.000000 real_pulses:0 +I (212864) example: new speed:399.000000 +I (212874) example: expect speed: 0.000000 real_pulses:0 +I (212874) example: new speed:399.000000 +I (212884) example: expect speed: 0.000000 real_pulses:0 +I (212894) example: new speed:399.000000 +I (212894) example: expect speed: 0.000000 real_pulses:0 +I (212904) example: new speed:399.000000 +I (212904) example: expect speed: 0.000000 real_pulses:0 +I (212904) example: new speed:399.000000 +I (212914) example: expect speed: 0.000000 real_pulses:0 +I (212914) example: new speed:399.000000 +I (212924) example: expect speed: 0.000000 real_pulses:0 +I (212924) example: new speed:399.000000 +I (212934) example: expect speed: 0.000000 real_pulses:0 +I (212934) example: new speed:399.000000 +I (212944) example: expect speed: 0.000000 real_pulses:0 +I (212954) example: new speed:399.000000 +I (212954) example: expect speed: 0.000000 real_pulses:0 +I (212954) example: new speed:399.000000 +I (212964) example: expect speed: 0.000000 real_pulses:0 +I (212964) example: new speed:399.000000 +I (212974) example: expect speed: 0.000000 real_pulses:0 +I (212974) example: new speed:399.000000 +I (212984) example: expect speed: 0.000000 real_pulses:0 +I (212984) example: new speed:399.000000 +I (212994) example: expect speed: 0.000000 real_pulses:0 +I (212994) example: new speed:399.000000 +I (213004) example: expect speed: 0.000000 real_pulses:0 +I (213004) example: new speed:399.000000 +I (213014) example: expect speed: 0.000000 real_pulses:0 +I (213014) example: new speed:399.000000 +I (213024) example: expect speed: 0.000000 real_pulses:0 +I (213024) example: new speed:399.000000 +I (213034) example: expect speed: 0.000000 real_pulses:0 +I (213044) example: new speed:399.000000 +I (213044) example: expect speed: 0.000000 real_pulses:0 +I (213044) example: new speed:399.000000 +I (213054) example: expect speed: 0.000000 real_pulses:0 +I (213054) example: new speed:399.000000 +I (213064) example: expect speed: 0.000000 real_pulses:0 +I (213064) example: new speed:399.000000 +I (213074) example: expect speed: 0.000000 real_pulses:0 +I (213074) example: new speed:399.000000 +I (213084) example: expect speed: 0.000000 real_pulses:0 +I (213084) example: new speed:399.000000 +I (213094) example: expect speed: 0.000000 real_pulses:0 +I (213094) example: new speed:399.000000 +I (213104) example: expect speed: 0.000000 real_pulses:0 +I (213104) example: new speed:399.000000 +I (213114) example: expect speed: 0.000000 real_pulses:0 +I (213114) example: new speed:399.000000 +I (213124) example: expect speed: 0.000000 real_pulses:0 +I (213124) example: new speed:399.000000 +I (213134) example: expect speed: 0.000000 real_pulses:0 +I (213134) example: new speed:399.000000 +I (213144) example: expect speed: 0.000000 real_pulses:0 +I (213154) example: new speed:399.000000 +I (213154) example: expect speed: 0.000000 real_pulses:0 +I (213154) example: new speed:399.000000 +I (213164) example: expect speed: 0.000000 real_pulses:0 +I (213164) example: new speed:399.000000 +I (213174) example: expect speed: 0.000000 real_pulses:0 +I (213174) example: new speed:399.000000 +I (213184) example: expect speed: 0.000000 real_pulses:0 +I (213184) example: new speed:399.000000 +I (213194) example: expect speed: 0.000000 real_pulses:0 +I (213194) example: new speed:399.000000 +I (213204) example: expect speed: 0.000000 real_pulses:0 +I (213204) example: new speed:399.000000 +I (213214) example: expect speed: 0.000000 real_pulses:0 +I (213214) example: new speed:399.000000 +I (213224) example: expect speed: 0.000000 real_pulses:0 +I (213224) example: new speed:399.000000 +I (213234) example: expect speed: 0.000000 real_pulses:0 +I (213234) example: new speed:399.000000 +I (213244) example: expect speed: 0.000000 real_pulses:0 +I (213244) example: new speed:399.000000 +I (213254) example: expect speed: 0.000000 real_pulses:0 +I (213254) example: new speed:399.000000 +I (213264) example: expect speed: 0.000000 real_pulses:0 +I (213264) example: new speed:399.000000 +I (213274) example: expect speed: 0.000000 real_pulses:0 +I (213274) example: new speed:399.000000 +I (213284) example: expect speed: 0.000000 real_pulses:0 +I (213284) example: new speed:399.000000 +I (213294) example: expect speed: 0.000000 real_pulses:0 +I (213294) example: new speed:399.000000 +I (213304) example: expect speed: 0.000000 real_pulses:0 +I (213304) example: new speed:399.000000 +I (213314) example: expect speed: 0.000000 real_pulses:0 +I (213314) example: new speed:399.000000 +I (213324) example: expect speed: 0.000000 real_pulses:0 +I (213324) example: new speed:399.000000 +I (213334) example: expect speed: 0.000000 real_pulses:0 +I (213334) example: new speed:399.000000 +I (213344) example: expect speed: 0.000000 real_pulses:0 +I (213344) example: new speed:399.000000 +I (213354) example: expect speed: 0.000000 real_pulses:0 +I (213354) example: new speed:399.000000 +I (213364) example: expect speed: 0.000000 real_pulses:0 +I (213364) example: new speed:399.000000 +I (213374) example: expect speed: 0.000000 real_pulses:0 +I (213374) example: new speed:399.000000 +I (213384) example: expect speed: 0.000000 real_pulses:0 +I (213384) example: new speed:399.000000 +I (213394) example: expect speed: 0.000000 real_pulses:0 +I (213394) example: new speed:399.000000 +I (213404) example: expect speed: 0.000000 real_pulses:0 +I (213404) example: new speed:399.000000 +I (213414) example: expect speed: 0.000000 real_pulses:0 +I (213414) example: new speed:399.000000 +I (213424) example: expect speed: 0.000000 real_pulses:0 +I (213424) example: new speed:399.000000 +I (213434) example: expect speed: 0.000000 real_pulses:0 +I (213434) example: new speed:399.000000 +I (213444) example: expect speed: 0.000000 real_pulses:0 +I (213444) example: new speed:399.000000 +I (213454) example: expect speed: 0.000000 real_pulses:0 +I (213454) example: new speed:399.000000 +I (213464) example: expect speed: 0.000000 real_pulses:0 +I (213464) example: new speed:399.000000 +I (213474) example: expect speed: 0.000000 real_pulses:0 +I (213474) example: new speed:399.000000 +I (213484) example: expect speed: 0.000000 real_pulses:0 +I (213484) example: new speed:399.000000 +I (213494) example: expect speed: 0.000000 real_pulses:0 +I (213494) example: new speed:399.000000 +I (213504) example: expect speed: 0.000000 real_pulses:0 +I (213504) example: new speed:399.000000 +I (213514) example: expect speed: 0.000000 real_pulses:0 +I (213514) example: new speed:399.000000 +I (213524) example: expect speed: 0.000000 real_pulses:0 +I (213524) example: new speed:399.000000 +I (213534) example: expect speed: 0.000000 real_pulses:0 +I (213534) example: new speed:399.000000 +I (213544) example: expect speed: 0.000000 real_pulses:0 +I (213544) example: new speed:399.000000 +I (213554) example: expect speed: 0.000000 real_pulses:0 +I (213554) example: new speed:399.000000 +I (213564) example: expect speed: 0.000000 real_pulses:0 +I (213564) example: new speed:399.000000 +I (213574) example: expect speed: 0.000000 real_pulses:0 +I (213574) example: new speed:399.000000 +I (213584) example: expect speed: 0.000000 real_pulses:0 +I (213584) example: new speed:399.000000 +I (213594) example: expect speed: 0.000000 real_pulses:0 +I (213594) example: new speed:399.000000 +I (213604) example: expect speed: 0.000000 real_pulses:0 +I (213604) example: new speed:399.000000 +I (213614) example: expect speed: 0.000000 real_pulses:0 +I (213614) example: new speed:399.000000 +I (213624) example: expect speed: 0.000000 real_pulses:0 +I (213624) example: new speed:399.000000 +I (213634) example: expect speed: 0.000000 real_pulses:0 +I (213634) example: new speed:399.000000 +I (213644) example: expect speed: 0.000000 real_pulses:0 +I (213644) example: new speed:399.000000 +I (213654) example: expect speed: 0.000000 real_pulses:0 +I (213664) example: new speed:399.000000 +I (213664) modbus tcp: ModBusSlave_recv() +I (213664) modbus: ModbusSlaveProcess() +I (213664) modbus: check id... +I (213664) modbus: ok +I (213664) modbus: add: 0, length: 10 +I (213664) modbus: Read Holding Registers +I (213664) example: expect speed: 0.000000 real_pulses:0 +I (213674) example: new speed:399.000000 +I (213674) example: expect speed: 0.000000 real_pulses:0 +I (213674) example: new speed:399.000000 +I (213684) example: expect speed: 0.000000 real_pulses:0 +I (213684) example: new speed:399.000000 +I (213694) example: expect speed: 0.000000 real_pulses:0 +I (213694) example: new speed:399.000000 +I (213704) example: expect speed: 0.000000 real_pulses:0 +I (213704) example: new speed:399.000000 +I (213714) example: expect speed: 0.000000 real_pulses:0 +I (213724) example: new speed:399.000000 +I (213724) example: expect speed: 0.000000 real_pulses:0 +I (213724) example: new speed:399.000000 +I (213734) example: expect speed: 0.000000 real_pulses:0 +I (213734) example: new speed:399.000000 +I (213744) example: expect speed: 0.000000 real_pulses:0 +I (213744) example: new speed:399.000000 +I (213754) example: expect speed: 0.000000 real_pulses:0 +I (213764) example: new speed:399.000000 +I (213764) example: expect speed: 0.000000 real_pulses:0 +I (213774) example: new speed:399.000000 +I (213774) example: expect speed: 0.000000 real_pulses:0 +I (213774) example: new speed:399.000000 +I (213784) example: expect speed: 0.000000 real_pulses:0 +I (213784) example: new speed:399.000000 +I (213794) example: expect speed: 0.000000 real_pulses:0 +I (213794) example: new speed:399.000000 +I (213804) example: expect speed: 0.000000 real_pulses:0 +I (213804) example: new speed:399.000000 +I (213814) example: expect speed: 0.000000 real_pulses:0 +I (213824) example: new speed:399.000000 +I (213824) example: expect speed: 0.000000 real_pulses:0 +I (213824) example: new speed:399.000000 +I (213834) example: expect speed: 0.000000 real_pulses:0 +I (213834) example: new speed:399.000000 +I (213844) example: expect speed: 0.000000 real_pulses:0 +I (213844) example: new speed:399.000000 +I (213854) example: expect speed: 0.000000 real_pulses:0 +I (213854) example: new speed:399.000000 +I (213864) example: expect speed: 0.000000 real_pulses:0 +I (213864) example: new speed:399.000000 +I (213874) example: expect speed: 0.000000 real_pulses:0 +I (213874) example: new speed:399.000000 +I (213884) example: expect speed: 0.000000 real_pulses:0 +I (213884) example: new speed:399.000000 +I (213894) example: expect speed: 0.000000 real_pulses:0 +I (213894) example: new speed:399.000000 +I (213904) example: expect speed: 0.000000 real_pulses:0 +I (213904) example: new speed:399.000000 +I (213914) example: expect speed: 0.000000 real_pulses:0 +I (213914) example: new speed:399.000000 +I (213924) example: expect speed: 0.000000 real_pulses:0 +I (213924) example: new speed:399.000000 +I (213934) example: expect speed: 0.000000 real_pulses:0 +I (213934) example: new speed:399.000000 +I (213944) example: expect speed: 0.000000 real_pulses:0 +I (213944) example: new speed:399.000000 +I (213954) example: expect speed: 0.000000 real_pulses:0 +I (213954) example: new speed:399.000000 +I (213964) example: expect speed: 0.000000 real_pulses:0 +I (213964) example: new speed:399.000000 +I (213974) example: expect speed: 0.000000 real_pulses:0 +I (213974) example: new speed:399.000000 +I (213984) example: expect speed: 0.000000 real_pulses:0 +I (213984) example: new speed:399.000000 +I (213994) example: expect speed: 0.000000 real_pulses:0 +I (213994) example: new speed:399.000000 +I (214004) example: expect speed: 0.000000 real_pulses:0 +I (214004) example: new speed:399.000000 +I (214014) example: expect speed: 0.000000 real_pulses:0 +I (214014) example: new speed:399.000000 +I (214024) example: expect speed: 0.000000 real_pulses:0 +I (214024) example: new speed:399.000000 +I (214034) example: expect speed: 0.000000 real_pulses:0 +I (214034) example: new speed:399.000000 +I (214044) example: expect speed: 0.000000 real_pulses:0 +I (214044) example: new speed:399.000000 +I (214054) example: expect speed: 0.000000 real_pulses:0 +I (214054) example: new speed:399.000000 +I (214064) example: expect speed: 0.000000 real_pulses:0 +I (214064) example: new speed:399.000000 +I (214074) example: expect speed: 0.000000 real_pulses:0 +I (214074) example: new speed:399.000000 +I (214084) example: expect speed: 0.000000 real_pulses:0 +I (214084) example: new speed:399.000000 +I (214094) example: expect speed: 0.000000 real_pulses:0 +I (214094) example: new speed:399.000000 +I (214104) example: expect speed: 0.000000 real_pulses:0 +I (214104) example: new speed:399.000000 +I (214114) example: expect speed: 0.000000 real_pulses:0 +I (214114) example: new speed:399.000000 +I (214124) example: expect speed: 0.000000 real_pulses:0 +I (214124) example: new speed:399.000000 +I (214134) example: expect speed: 0.000000 real_pulses:0 +I (214134) example: new speed:399.000000 +I (214144) example: expect speed: 0.000000 real_pulses:0 +I (214144) example: new speed:399.000000 +I (214154) example: expect speed: 0.000000 real_pulses:0 +I (214154) example: new speed:399.000000 +I (214164) example: expect speed: 0.000000 real_pulses:0 +I (214164) example: new speed:399.000000 +I (214174) example: expect speed: 0.000000 real_pulses:0 +I (214174) example: new speed:399.000000 +I (214184) example: expect speed: 0.000000 real_pulses:0 +I (214184) example: new speed:399.000000 +I (214194) example: expect speed: 0.000000 real_pulses:0 +I (214194) example: new speed:399.000000 +I (214204) example: expect speed: 0.000000 real_pulses:0 +I (214204) example: new speed:399.000000 +I (214214) example: expect speed: 0.000000 real_pulses:0 +I (214214) example: new speed:399.000000 +I (214224) example: expect speed: 0.000000 real_pulses:0 +I (214224) example: new speed:399.000000 +I (214234) example: expect speed: 0.000000 real_pulses:0 +I (214234) example: new speed:399.000000 +I (214244) example: expect speed: 0.000000 real_pulses:0 +I (214244) example: new speed:399.000000 +I (214254) example: expect speed: 0.000000 real_pulses:0 +I (214254) example: new speed:399.000000 +I (214264) example: expect speed: 0.000000 real_pulses:0 +I (214264) example: new speed:399.000000 +I (214274) example: expect speed: 0.000000 real_pulses:0 +I (214274) example: new speed:399.000000 +I (214284) example: expect speed: 0.000000 real_pulses:0 +I (214284) example: new speed:399.000000 +I (214294) example: expect speed: 0.000000 real_pulses:0 +I (214294) example: new speed:399.000000 +I (214304) example: expect speed: 0.000000 real_pulses:0 +I (214304) example: new speed:399.000000 +I (214314) example: expect speed: 0.000000 real_pulses:0 +I (214314) example: new speed:399.000000 +I (214324) example: expect speed: 0.000000 real_pulses:0 +I (214324) example: new speed:399.000000 +I (214334) example: expect speed: 0.000000 real_pulses:0 +I (214334) example: new speed:399.000000 +I (214344) example: expect speed: 0.000000 real_pulses:0 +I (214344) example: new speed:399.000000 +I (214354) example: expect speed: 0.000000 real_pulses:0 +I (214354) example: new speed:399.000000 +I (214364) example: expect speed: 0.000000 real_pulses:0 +I (214364) example: new speed:399.000000 +I (214374) example: expect speed: 0.000000 real_pulses:0 +I (214374) example: new speed:399.000000 +I (214384) example: expect speed: 0.000000 real_pulses:0 +I (214384) example: new speed:399.000000 +I (214394) example: expect speed: 0.000000 real_pulses:0 +I (214394) example: new speed:399.000000 +I (214404) example: expect speed: 0.000000 real_pulses:0 +I (214404) example: new speed:399.000000 +I (214414) example: expect speed: 0.000000 real_pulses:0 +I (214414) example: new speed:399.000000 +I (214424) example: expect speed: 0.000000 real_pulses:0 +I (214424) example: new speed:399.000000 +I (214434) example: expect speed: 0.000000 real_pulses:0 +I (214434) example: new speed:399.000000 +I (214444) example: expect speed: 0.000000 real_pulses:0 +I (214444) example: new speed:399.000000 +I (214454) example: expect speed: 0.000000 real_pulses:0 +I (214454) example: new speed:399.000000 +I (214464) example: expect speed: 0.000000 real_pulses:0 +I (214464) example: new speed:399.000000 +I (214474) example: expect speed: 0.000000 real_pulses:0 +I (214474) example: new speed:399.000000 +I (214484) example: expect speed: 0.000000 real_pulses:0 +I (214494) example: new speed:399.000000 +I (214494) example: expect speed: 0.000000 real_pulses:0 +I (214494) example: new speed:399.000000 +I (214504) example: expect speed: 0.000000 real_pulses:0 +I (214504) example: new speed:399.000000 +I (214514) example: expect speed: 0.000000 real_pulses:0 +I (214514) example: new speed:399.000000 +I (214524) example: expect speed: 0.000000 real_pulses:0 +I (214524) example: new speed:399.000000 +I (214534) example: expect speed: 0.000000 real_pulses:0 +I (214534) example: new speed:399.000000 +I (214544) example: expect speed: 0.000000 real_pulses:0 +I (214544) example: new speed:399.000000 +I (214554) example: expect speed: 0.000000 real_pulses:0 +I (214554) example: new speed:399.000000 +I (214564) example: expect speed: 0.000000 real_pulses:0 +I (214564) example: new speed:399.000000 +I (214574) example: expect speed: 0.000000 real_pulses:0 +I (214584) example: new speed:399.000000 +I (214584) modbus tcp: ModBusSlave_recv() +I (214584) modbus: ModbusSlaveProcess() +I (214584) modbus: check id... +I (214584) modbus: ok +I (214584) modbus: add: 0, length: 10 +I (214584) modbus: Read Holding Registers +I (214584) example: expect speed: 0.000000 real_pulses:0 +I (214594) example: new speed:399.000000 +I (214594) example: expect speed: 0.000000 real_pulses:0 +I (214594) example: new speed:399.000000 +I (214604) example: expect speed: 0.000000 real_pulses:0 +I (214604) example: new speed:399.000000 +I (214614) example: expect speed: 0.000000 real_pulses:0 +I (214614) example: new speed:399.000000 +I (214624) example: expect speed: 0.000000 real_pulses:0 +I (214624) example: new speed:399.000000 +I (214634) example: expect speed: 0.000000 real_pulses:0 +I (214634) example: new speed:399.000000 +I (214644) example: expect speed: 0.000000 real_pulses:0 +I (214644) example: new speed:399.000000 +I (214654) example: expect speed: 0.000000 real_pulses:0 +I (214654) example: new speed:399.000000 +I (214664) example: expect speed: 0.000000 real_pulses:0 +I (214674) example: new speed:399.000000 +I (214674) example: expect speed: 0.000000 real_pulses:0 +I (214674) example: new speed:399.000000 +I (214684) example: expect speed: 0.000000 real_pulses:0 +I (214694) example: new speed:399.000000 +I (214694) example: expect speed: 0.000000 real_pulses:0 +I (214694) example: new speed:399.000000 +I (214704) example: expect speed: 0.000000 real_pulses:0 +I (214704) example: new speed:399.000000 +I (214714) example: expect speed: 0.000000 real_pulses:0 +I (214714) example: new speed:399.000000 +I (214724) example: expect speed: 0.000000 real_pulses:0 +I (214724) example: new speed:399.000000 +I (214734) example: expect speed: 0.000000 real_pulses:0 +I (214744) example: new speed:399.000000 +I (214744) example: expect speed: 0.000000 real_pulses:0 +I (214744) example: new speed:399.000000 +I (214754) example: expect speed: 0.000000 real_pulses:0 +I (214754) example: new speed:399.000000 +I (214764) example: expect speed: 0.000000 real_pulses:0 +I (214764) example: new speed:399.000000 +I (214774) example: expect speed: 0.000000 real_pulses:0 +I (214774) example: new speed:399.000000 +I (214784) example: expect speed: 0.000000 real_pulses:0 +I (214784) example: new speed:399.000000 +I (214794) example: expect speed: 0.000000 real_pulses:0 +I (214794) example: new speed:399.000000 +I (214804) example: expect speed: 0.000000 real_pulses:0 +I (214804) example: new speed:399.000000 +I (214814) example: expect speed: 0.000000 real_pulses:0 +I (214814) example: new speed:399.000000 +I (214824) example: expect speed: 0.000000 real_pulses:0 +I (214824) example: new speed:399.000000 +I (214834) example: expect speed: 0.000000 real_pulses:0 +I (214834) example: new speed:399.000000 +I (214844) example: expect speed: 0.000000 real_pulses:0 +I (214844) example: new speed:399.000000 +I (214854) example: expect speed: 0.000000 real_pulses:0 +I (214854) example: new speed:399.000000 +I (214864) example: expect speed: 0.000000 real_pulses:0 +I (214864) example: new speed:399.000000 +I (214874) example: expect speed: 0.000000 real_pulses:0 +I (214874) example: new speed:399.000000 +I (214884) example: expect speed: 0.000000 real_pulses:0 +I (214884) example: new speed:399.000000 +I (214894) example: expect speed: 0.000000 real_pulses:0 +I (214894) example: new speed:399.000000 +I (214904) example: expect speed: 0.000000 real_pulses:0 +I (214904) example: new speed:399.000000 +I (214914) example: expect speed: 0.000000 real_pulses:0 +I (214914) example: new speed:399.000000 +I (214924) example: expect speed: 0.000000 real_pulses:0 +I (214924) example: new speed:399.000000 +I (214934) example: expect speed: 0.000000 real_pulses:0 +I (214934) example: new speed:399.000000 +I (214944) example: expect speed: 0.000000 real_pulses:0 +I (214944) example: new speed:399.000000 +I (214954) example: expect speed: 0.000000 real_pulses:0 +I (214954) example: new speed:399.000000 +I (214964) example: expect speed: 0.000000 real_pulses:0 +I (214964) example: new speed:399.000000 +I (214974) example: expect speed: 0.000000 real_pulses:0 +I (214974) example: new speed:399.000000 +I (214984) example: expect speed: 0.000000 real_pulses:0 +I (214984) example: new speed:399.000000 +I (214994) example: expect speed: 0.000000 real_pulses:0 +I (214994) example: new speed:399.000000 +I (215004) example: expect speed: 0.000000 real_pulses:0 +I (215004) example: new speed:399.000000 +I (215014) example: expect speed: 0.000000 real_pulses:0 +I (215014) example: new speed:399.000000 +I (215024) example: expect speed: 0.000000 real_pulses:0 +I (215024) example: new speed:399.000000 +I (215034) example: expect speed: 0.000000 real_pulses:0 +I (215034) example: new speed:399.000000 +I (215044) example: expect speed: 0.000000 real_pulses:0 +I (215044) example: new speed:399.000000 +I (215054) example: expect speed: 0.000000 real_pulses:0 +I (215054) example: new speed:399.000000 +I (215064) example: expect speed: 0.000000 real_pulses:0 +I (215064) example: new speed:399.000000 +I (215074) example: expect speed: 0.000000 real_pulses:0 +I (215074) example: new speed:399.000000 +I (215084) example: expect speed: 0.000000 real_pulses:0 +I (215084) example: new speed:399.000000 +I (215094) example: expect speed: 0.000000 real_pulses:0 +I (215094) example: new speed:399.000000 +I (215104) example: expect speed: 0.000000 real_pulses:0 +I (215104) example: new speed:399.000000 +I (215114) example: expect speed: 0.000000 real_pulses:0 +I (215114) example: new speed:399.000000 +I (215124) example: expect speed: 0.000000 real_pulses:0 +I (215124) example: new speed:399.000000 +I (215134) example: expect speed: 0.000000 real_pulses:0 +I (215134) example: new speed:399.000000 +I (215144) example: expect speed: 0.000000 real_pulses:0 +I (215144) example: new speed:399.000000 +I (215154) example: expect speed: 0.000000 real_pulses:0 +I (215154) example: new speed:399.000000 +I (215164) example: expect speed: 0.000000 real_pulses:0 +I (215164) example: new speed:399.000000 +I (215174) example: expect speed: 0.000000 real_pulses:0 +I (215174) example: new speed:399.000000 +I (215184) example: expect speed: 0.000000 real_pulses:0 +I (215184) example: new speed:399.000000 +I (215194) example: expect speed: 0.000000 real_pulses:0 +I (215194) example: new speed:399.000000 +I (215204) example: expect speed: 0.000000 real_pulses:0 +I (215204) example: new speed:399.000000 +I (215214) example: expect speed: 0.000000 real_pulses:0 +I (215214) example: new speed:399.000000 +I (215224) example: expect speed: 0.000000 real_pulses:0 +I (215224) example: new speed:399.000000 +I (215234) example: expect speed: 0.000000 real_pulses:0 +I (215234) example: new speed:399.000000 +I (215244) example: expect speed: 0.000000 real_pulses:0 +I (215244) example: new speed:399.000000 +I (215254) example: expect speed: 0.000000 real_pulses:0 +I (215254) example: new speed:399.000000 +I (215264) example: expect speed: 0.000000 real_pulses:0 +I (215264) example: new speed:399.000000 +I (215274) example: expect speed: 0.000000 real_pulses:0 +I (215274) example: new speed:399.000000 +I (215284) example: expect speed: 0.000000 real_pulses:0 +I (215284) example: new speed:399.000000 +I (215294) example: expect speed: 0.000000 real_pulses:0 +I (215294) example: new speed:399.000000 +I (215304) example: expect speed: 0.000000 real_pulses:0 +I (215304) example: new speed:399.000000 +I (215314) example: expect speed: 0.000000 real_pulses:0 +I (215314) example: new speed:399.000000 +I (215324) example: expect speed: 0.000000 real_pulses:0 +I (215324) example: new speed:399.000000 +I (215334) example: expect speed: 0.000000 real_pulses:0 +I (215334) example: new speed:399.000000 +I (215344) example: expect speed: 0.000000 real_pulses:0 +I (215344) example: new speed:399.000000 +I (215354) example: expect speed: 0.000000 real_pulses:0 +I (215354) example: new speed:399.000000 +I (215364) example: expect speed: 0.000000 real_pulses:0 +I (215364) example: new speed:399.000000 +I (215374) example: expect speed: 0.000000 real_pulses:0 +I (215374) example: new speed:399.000000 +I (215384) example: expect speed: 0.000000 real_pulses:0 +I (215384) example: new speed:399.000000 +I (215394) example: expect speed: 0.000000 real_pulses:0 +I (215394) example: new speed:399.000000 +I (215404) example: expect speed: 0.000000 real_pulses:0 +I (215404) example: new speed:399.000000 +I (215414) example: expect speed: 0.000000 real_pulses:0 +I (215414) example: new speed:399.000000 +I (215424) example: expect speed: 0.000000 real_pulses:0 +I (215424) example: new speed:399.000000 +I (215434) example: expect speed: 0.000000 real_pulses:0 +I (215434) example: new speed:399.000000 +I (215444) example: expect speed: 0.000000 real_pulses:0 +I (215444) example: new speed:399.000000 +I (215454) example: expect speed: 0.000000 real_pulses:0 +I (215454) example: new speed:399.000000 +I (215464) example: expect speed: 0.000000 real_pulses:0 +I (215464) example: new speed:399.000000 +I (215474) example: expect speed: 0.000000 real_pulses:0 +I (215474) example: new speed:399.000000 +I (215484) example: expect speed: 0.000000 real_pulses:0 +I (215484) example: new speed:399.000000 +I (215494) example: expect speed: 0.000000 real_pulses:0 +I (215504) example: new speed:399.000000 +I (215504) example: expect speed: 0.000000 real_pulses:0 +I (215504) example: new speed:399.000000 +I (215514) example: expect speed: 0.000000 real_pulses:0 +I (215514) example: new speed:399.000000 +I (215524) example: expect speed: 0.000000 real_pulses:0 +I (215524) example: new speed:399.000000 +I (215534) example: expect speed: 0.000000 real_pulses:0 +I (215534) example: new speed:399.000000 +I (215544) example: expect speed: 0.000000 real_pulses:0 +I (215544) example: new speed:399.000000 +I (215554) example: expect speed: 0.000000 real_pulses:0 +I (215554) example: new speed:399.000000 +I (215564) example: expect speed: 0.000000 real_pulses:0 +I (215564) example: new speed:399.000000 +I (215574) example: expect speed: 0.000000 real_pulses:0 +I (215574) example: new speed:399.000000 +I (215584) example: expect speed: 0.000000 real_pulses:0 +I (215584) example: new speed:399.000000 +I (215594) example: expect speed: 0.000000 real_pulses:0 +I (215594) example: new speed:399.000000 +I (215604) example: expect speed: 0.000000 real_pulses:0 +I (215614) example: new speed:399.000000 +I (215614) example: expect speed: 0.000000 real_pulses:0 +I (215614) example: new speed:399.000000 +I (215624) example: expect speed: 0.000000 real_pulses:0 +I (215634) example: new speed:399.000000 +I (215634) example: expect speed: 0.000000 real_pulses:0 +I (215644) example: new speed:399.000000 +I (215644) example: expect speed: 0.000000 real_pulses:0 +I (215654) example: new speed:399.000000 +I (215654) example: expect speed: 0.000000 real_pulses:0 +I (215664) example: new speed:399.000000 +I (215664) example: expect speed: 0.000000 real_pulses:0 +I (215664) example: new speed:399.000000 +I (215674) modbus tcp: ModBusSlave_recv() +I (215674) modbus: ModbusSlaveProcess() +I (215674) modbus: check id... +I (215674) modbus: ok +I (215674) modbus: add: 0, length: 10 +I (215674) modbus: Read Holding Registers +I (215674) example: expect speed: 0.000000 real_pulses:0 +I (215684) example: new speed:399.000000 +I (215684) example: expect speed: 0.000000 real_pulses:0 +I (215684) example: new speed:399.000000 +I (215694) example: expect speed: 0.000000 real_pulses:0 +I (215704) example: new speed:399.000000 +I (215704) example: expect speed: 0.000000 real_pulses:0 +I (215704) example: new speed:399.000000 +I (215714) example: expect speed: 0.000000 real_pulses:0 +I (215714) example: new speed:399.000000 +I (215724) example: expect speed: 0.000000 real_pulses:0 +I (215724) example: new speed:399.000000 +I (215734) example: expect speed: 0.000000 real_pulses:0 +I (215734) example: new speed:399.000000 +I (215744) example: expect speed: 0.000000 real_pulses:0 +I (215744) example: new speed:399.000000 +I (215754) example: expect speed: 0.000000 real_pulses:0 +I (215754) example: new speed:399.000000 +I (215764) example: expect speed: 0.000000 real_pulses:0 +I (215764) example: new speed:399.000000 +I (215774) example: expect speed: 0.000000 real_pulses:0 +I (215784) example: new speed:399.000000 +I (215784) example: expect speed: 0.000000 real_pulses:0 +I (215784) example: new speed:399.000000 +I (215794) example: expect speed: 0.000000 real_pulses:0 +I (215804) example: new speed:399.000000 +I (215804) example: expect speed: 0.000000 real_pulses:0 +I (215814) example: new speed:399.000000 +I (215814) example: expect speed: 0.000000 real_pulses:0 +I (215824) example: new speed:399.000000 +I (215824) example: expect speed: 0.000000 real_pulses:0 +I (215824) example: new speed:399.000000 +I (215834) example: expect speed: 0.000000 real_pulses:0 +I (215834) example: new speed:399.000000 +I (215844) example: expect speed: 0.000000 real_pulses:0 +I (215844) example: new speed:399.000000 +I (215854) example: expect speed: 0.000000 real_pulses:0 +I (215854) example: new speed:399.000000 +I (215864) example: expect speed: 0.000000 real_pulses:0 +I (215864) example: new speed:399.000000 +I (215874) example: expect speed: 0.000000 real_pulses:0 +I (215874) example: new speed:399.000000 +I (215884) example: expect speed: 0.000000 real_pulses:0 +I (215884) example: new speed:399.000000 +I (215894) example: expect speed: 0.000000 real_pulses:0 +I (215894) example: new speed:399.000000 +I (215904) example: expect speed: 0.000000 real_pulses:0 +I (215904) example: new speed:399.000000 +I (215914) example: expect speed: 0.000000 real_pulses:0 +I (215914) example: new speed:399.000000 +I (215924) example: expect speed: 0.000000 real_pulses:0 +I (215924) example: new speed:399.000000 +I (215934) example: expect speed: 0.000000 real_pulses:0 +I (215934) example: new speed:399.000000 +I (215944) example: expect speed: 0.000000 real_pulses:0 +I (215944) example: new speed:399.000000 +I (215954) example: expect speed: 0.000000 real_pulses:0 +I (215954) example: new speed:399.000000 +I (215964) example: expect speed: 0.000000 real_pulses:0 +I (215964) example: new speed:399.000000 +I (215974) example: expect speed: 0.000000 real_pulses:0 +I (215974) example: new speed:399.000000 +I (215984) example: expect speed: 0.000000 real_pulses:0 +I (215984) example: new speed:399.000000 +I (215994) example: expect speed: 0.000000 real_pulses:0 +I (215994) example: new speed:399.000000 +I (216004) example: expect speed: 0.000000 real_pulses:0 +I (216004) example: new speed:399.000000 +I (216014) example: expect speed: 0.000000 real_pulses:0 +I (216024) example: new speed:399.000000 +I (216024) example: expect speed: 0.000000 real_pulses:0 +I (216024) example: new speed:399.000000 +I (216034) example: expect speed: 0.000000 real_pulses:0 +I (216034) example: new speed:399.000000 +I (216044) example: expect speed: 0.000000 real_pulses:0 +I (216044) example: new speed:399.000000 +I (216054) example: expect speed: 0.000000 real_pulses:0 +I (216054) example: new speed:399.000000 +I (216064) example: expect speed: 0.000000 real_pulses:0 +I (216074) example: new speed:399.000000 +I (216074) example: expect speed: 0.000000 real_pulses:0 +I (216084) example: new speed:399.000000 +I (216084) example: expect speed: 0.000000 real_pulses:0 +I (216084) example: new speed:399.000000 +I (216094) example: expect speed: 0.000000 real_pulses:0 +I (216094) example: new speed:399.000000 +I (216104) example: expect speed: 0.000000 real_pulses:0 +I (216104) example: new speed:399.000000 +I (216114) example: expect speed: 0.000000 real_pulses:0 +I (216114) example: new speed:399.000000 +I (216124) example: expect speed: 0.000000 real_pulses:0 +I (216124) example: new speed:399.000000 +I (216134) example: expect speed: 0.000000 real_pulses:0 +I (216134) example: new speed:399.000000 +I (216144) example: expect speed: 0.000000 real_pulses:0 +I (216144) example: new speed:399.000000 +I (216154) example: expect speed: 0.000000 real_pulses:0 +I (216154) example: new speed:399.000000 +I (216164) example: expect speed: 0.000000 real_pulses:0 +I (216164) example: new speed:399.000000 +I (216174) example: expect speed: 0.000000 real_pulses:0 +I (216174) example: new speed:399.000000 +I (216184) example: expect speed: 0.000000 real_pulses:0 +I (216184) example: new speed:399.000000 +I (216194) example: expect speed: 0.000000 real_pulses:0 +I (216194) example: new speed:399.000000 +I (216204) example: expect speed: 0.000000 real_pulses:0 +I (216204) example: new speed:399.000000 +I (216214) example: expect speed: 0.000000 real_pulses:0 +I (216214) example: new speed:399.000000 +I (216224) example: expect speed: 0.000000 real_pulses:0 +I (216224) example: new speed:399.000000 +I (216234) example: expect speed: 0.000000 real_pulses:0 +I (216234) example: new speed:399.000000 +I (216244) example: expect speed: 0.000000 real_pulses:0 +I (216244) example: new speed:399.000000 +I (216254) example: expect speed: 0.000000 real_pulses:0 +I (216254) example: new speed:399.000000 +I (216264) example: expect speed: 0.000000 real_pulses:0 +I (216264) example: new speed:399.000000 +I (216274) example: expect speed: 0.000000 real_pulses:0 +I (216274) example: new speed:399.000000 +I (216284) example: expect speed: 0.000000 real_pulses:0 +I (216284) example: new speed:399.000000 +I (216294) example: expect speed: 0.000000 real_pulses:0 +I (216294) example: new speed:399.000000 +I (216304) example: expect speed: 0.000000 real_pulses:0 +I (216304) example: new speed:399.000000 +I (216314) example: expect speed: 0.000000 real_pulses:0 +I (216314) example: new speed:399.000000 +I (216324) example: expect speed: 0.000000 real_pulses:0 +I (216324) example: new speed:399.000000 +I (216334) example: expect speed: 0.000000 real_pulses:0 +I (216334) example: new speed:399.000000 +I (216344) example: expect speed: 0.000000 real_pulses:0 +I (216344) example: new speed:399.000000 +I (216354) example: expect speed: 0.000000 real_pulses:0 +I (216354) example: new speed:399.000000 +I (216364) example: expect speed: 0.000000 real_pulses:0 +I (216364) example: new speed:399.000000 +I (216374) example: expect speed: 0.000000 real_pulses:0 +I (216374) example: new speed:399.000000 +I (216384) example: expect speed: 0.000000 real_pulses:0 +I (216384) example: new speed:399.000000 +I (216394) example: expect speed: 0.000000 real_pulses:0 +I (216394) example: new speed:399.000000 +I (216404) example: expect speed: 0.000000 real_pulses:0 +I (216404) example: new speed:399.000000 +I (216414) example: expect speed: 0.000000 real_pulses:0 +I (216414) example: new speed:399.000000 +I (216424) example: expect speed: 0.000000 real_pulses:0 +I (216424) example: new speed:399.000000 +I (216434) example: expect speed: 0.000000 real_pulses:0 +I (216434) example: new speed:399.000000 +I (216444) example: expect speed: 0.000000 real_pulses:0 +I (216444) example: new speed:399.000000 +I (216454) example: expect speed: 0.000000 real_pulses:0 +I (216454) example: new speed:399.000000 +I (216464) example: expect speed: 0.000000 real_pulses:0 +I (216464) example: new speed:399.000000 +I (216474) example: expect speed: 0.000000 real_pulses:0 +I (216474) example: new speed:399.000000 +I (216484) example: expect speed: 0.000000 real_pulses:0 +I (216484) example: new speed:399.000000 +I (216494) example: expect speed: 0.000000 real_pulses:0 +I (216494) example: new speed:399.000000 +I (216504) example: expect speed: 0.000000 real_pulses:0 +I (216504) example: new speed:399.000000 +I (216514) example: expect speed: 0.000000 real_pulses:0 +I (216514) example: new speed:399.000000 +I (216524) example: expect speed: 0.000000 real_pulses:0 +I (216534) example: new speed:399.000000 +I (216534) example: expect speed: 0.000000 real_pulses:0 +I (216544) example: new speed:399.000000 +I (216544) example: expect speed: 0.000000 real_pulses:0 +I (216544) example: new speed:399.000000 +I (216554) example: expect speed: 0.000000 real_pulses:0 +I (216554) example: new speed:399.000000 +I (216564) example: expect speed: 0.000000 real_pulses:0 +I (216564) example: new speed:399.000000 +I (216574) example: expect speed: 0.000000 real_pulses:0 +I (216574) example: new speed:399.000000 +I (216584) example: expect speed: 0.000000 real_pulses:0 +I (216584) example: new speed:399.000000 +I (216594) example: expect speed: 0.000000 real_pulses:0 +I (216594) example: new speed:399.000000 +I (216604) example: expect speed: 0.000000 real_pulses:0 +I (216604) example: new speed:399.000000 +I (216614) example: expect speed: 0.000000 real_pulses:0 +I (216614) example: new speed:399.000000 +I (216624) example: expect speed: 0.000000 real_pulses:0 +I (216634) example: new speed:399.000000 +I (216634) example: expect speed: 0.000000 real_pulses:0 +I (216644) example: new speed:399.000000 +I (216644) example: expect speed: 0.000000 real_pulses:0 +I (216654) example: new speed:399.000000 +I (216654) example: expect speed: 0.000000 real_pulses:0 +I (216664) example: new speed:399.000000 +I (216664) example: expect speed: 0.000000 real_pulses:0 +I (216664) example: new speed:399.000000 +I (216674) modbus tcp: ModBusSlave_recv() +I (216674) modbus: ModbusSlaveProcess() +I (216674) modbus: check id... +I (216674) modbus: ok +I (216674) modbus: add: 0, length: 10 +I (216674) modbus: Read Holding Registers +I (216674) example: expect speed: 0.000000 real_pulses:0 +I (216674) example: new speed:399.000000 +I (216684) example: expect speed: 0.000000 real_pulses:0 +I (216684) example: new speed:399.000000 +I (216694) example: expect speed: 0.000000 real_pulses:0 +I (216694) example: new speed:399.000000 +I (216704) example: expect speed: 0.000000 real_pulses:0 +I (216704) example: new speed:399.000000 +I (216714) example: expect speed: 0.000000 real_pulses:0 +I (216714) example: new speed:399.000000 +I (216724) example: expect speed: 0.000000 real_pulses:0 +I (216734) example: new speed:399.000000 +I (216734) example: expect speed: 0.000000 real_pulses:0 +I (216734) example: new speed:399.000000 +I (216744) example: expect speed: 0.000000 real_pulses:0 +I (216744) example: new speed:399.000000 +I (216754) example: expect speed: 0.000000 real_pulses:0 +I (216754) example: new speed:399.000000 +I (216764) example: expect speed: 0.000000 real_pulses:0 +I (216764) example: new speed:399.000000 +I (216774) example: expect speed: 0.000000 real_pulses:0 +I (216774) example: new speed:399.000000 +I (216784) example: expect speed: 0.000000 real_pulses:0 +I (216784) example: new speed:399.000000 +I (216794) example: expect speed: 0.000000 real_pulses:0 +I (216794) example: new speed:399.000000 +I (216804) example: expect speed: 0.000000 real_pulses:0 +I (216804) example: new speed:399.000000 +I (216814) example: expect speed: 0.000000 real_pulses:0 +I (216814) example: new speed:399.000000 +I (216824) example: expect speed: 0.000000 real_pulses:0 +I (216834) example: new speed:399.000000 +I (216834) example: expect speed: 0.000000 real_pulses:0 +I (216834) example: new speed:399.000000 +I (216844) example: expect speed: 0.000000 real_pulses:0 +I (216844) example: new speed:399.000000 +I (216854) example: expect speed: 0.000000 real_pulses:0 +I (216854) example: new speed:399.000000 +I (216864) example: expect speed: 0.000000 real_pulses:0 +I (216864) example: new speed:399.000000 +I (216874) example: expect speed: 0.000000 real_pulses:0 +I (216874) example: new speed:399.000000 +I (216884) example: expect speed: 0.000000 real_pulses:0 +I (216884) example: new speed:399.000000 +I (216894) example: expect speed: 0.000000 real_pulses:0 +I (216894) example: new speed:399.000000 +I (216904) example: expect speed: 0.000000 real_pulses:0 +I (216904) example: new speed:399.000000 +I (216914) example: expect speed: 0.000000 real_pulses:0 +I (216914) example: new speed:399.000000 +I (216924) example: expect speed: 0.000000 real_pulses:0 +I (216924) example: new speed:399.000000 +I (216934) example: expect speed: 0.000000 real_pulses:0 +I (216934) example: new speed:399.000000 +I (216944) example: expect speed: 0.000000 real_pulses:0 +I (216944) example: new speed:399.000000 +I (216954) example: expect speed: 0.000000 real_pulses:0 +I (216954) example: new speed:399.000000 +I (216964) example: expect speed: 0.000000 real_pulses:0 +I (216964) example: new speed:399.000000 +I (216974) example: expect speed: 0.000000 real_pulses:0 +I (216974) example: new speed:399.000000 +I (216984) example: expect speed: 0.000000 real_pulses:0 +I (216984) example: new speed:399.000000 +I (216994) example: expect speed: 0.000000 real_pulses:0 +I (216994) example: new speed:399.000000 +I (217004) example: expect speed: 0.000000 real_pulses:0 +I (217004) example: new speed:399.000000 +I (217014) example: expect speed: 0.000000 real_pulses:0 +I (217014) example: new speed:399.000000 +I (217024) example: expect speed: 0.000000 real_pulses:0 +I (217024) example: new speed:399.000000 +I (217034) example: expect speed: 0.000000 real_pulses:0 +I (217044) example: new speed:399.000000 +I (217044) example: expect speed: 0.000000 real_pulses:0 +I (217054) example: new speed:399.000000 +I (217054) example: expect speed: 0.000000 real_pulses:0 +I (217064) example: new speed:399.000000 +I (217064) example: expect speed: 0.000000 real_pulses:0 +I (217074) example: new speed:399.000000 +I (217074) example: expect speed: 0.000000 real_pulses:0 +I (217074) example: new speed:399.000000 +I (217084) example: expect speed: 0.000000 real_pulses:0 +I (217084) example: new speed:399.000000 +I (217094) example: expect speed: 0.000000 real_pulses:0 +I (217094) example: new speed:399.000000 +I (217104) example: expect speed: 0.000000 real_pulses:0 +I (217104) example: new speed:399.000000 +I (217114) example: expect speed: 0.000000 real_pulses:0 +I (217124) example: new speed:399.000000 +I (217124) example: expect speed: 0.000000 real_pulses:0 +I (217124) example: new speed:399.000000 +I (217134) example: expect speed: 0.000000 real_pulses:0 +I (217134) example: new speed:399.000000 +I (217144) example: expect speed: 0.000000 real_pulses:0 +I (217144) example: new speed:399.000000 +I (217154) example: expect speed: 0.000000 real_pulses:0 +I (217154) example: new speed:399.000000 +I (217164) example: expect speed: 0.000000 real_pulses:0 +I (217164) example: new speed:399.000000 +I (217174) example: expect speed: 0.000000 real_pulses:0 +I (217174) example: new speed:399.000000 +I (217184) example: expect speed: 0.000000 real_pulses:0 +I (217184) example: new speed:399.000000 +I (217194) example: expect speed: 0.000000 real_pulses:0 +I (217194) example: new speed:399.000000 +I (217204) example: expect speed: 0.000000 real_pulses:0 +I (217214) example: new speed:399.000000 +I (217214) example: expect speed: 0.000000 real_pulses:0 +I (217214) example: new speed:399.000000 +I (217224) example: expect speed: 0.000000 real_pulses:0 +I (217224) example: new speed:399.000000 +I (217234) example: expect speed: 0.000000 real_pulses:0 +I (217234) example: new speed:399.000000 +I (217244) example: expect speed: 0.000000 real_pulses:0 +I (217244) example: new speed:399.000000 +I (217254) example: expect speed: 0.000000 real_pulses:0 +I (217254) example: new speed:399.000000 +I (217264) example: expect speed: 0.000000 real_pulses:0 +I (217264) example: new speed:399.000000 +I (217274) example: expect speed: 0.000000 real_pulses:0 +I (217274) example: new speed:399.000000 +I (217284) example: expect speed: 0.000000 real_pulses:0 +I (217284) example: new speed:399.000000 +I (217294) example: expect speed: 0.000000 real_pulses:0 +I (217294) example: new speed:399.000000 +I (217304) example: expect speed: 0.000000 real_pulses:0 +I (217304) example: new speed:399.000000 +I (217314) example: expect speed: 0.000000 real_pulses:0 +I (217314) example: new speed:399.000000 +I (217324) example: expect speed: 0.000000 real_pulses:0 +I (217324) example: new speed:399.000000 +I (217334) example: expect speed: 0.000000 real_pulses:0 +I (217334) example: new speed:399.000000 +I (217344) example: expect speed: 0.000000 real_pulses:0 +I (217344) example: new speed:399.000000 +I (217354) example: expect speed: 0.000000 real_pulses:0 +I (217354) example: new speed:399.000000 +I (217364) example: expect speed: 0.000000 real_pulses:0 +I (217364) example: new speed:399.000000 +I (217374) example: expect speed: 0.000000 real_pulses:0 +I (217374) example: new speed:399.000000 +I (217384) example: expect speed: 0.000000 real_pulses:0 +I (217384) example: new speed:399.000000 +I (217394) example: expect speed: 0.000000 real_pulses:0 +I (217394) example: new speed:399.000000 +I (217404) example: expect speed: 0.000000 real_pulses:0 +I (217404) example: new speed:399.000000 +I (217414) example: expect speed: 0.000000 real_pulses:0 +I (217414) example: new speed:399.000000 +I (217424) example: expect speed: 0.000000 real_pulses:0 +I (217424) example: new speed:399.000000 +I (217434) example: expect speed: 0.000000 real_pulses:0 +I (217434) example: new speed:399.000000 +I (217444) example: expect speed: 0.000000 real_pulses:0 +I (217454) example: new speed:399.000000 +I (217454) example: expect speed: 0.000000 real_pulses:0 +I (217454) example: new speed:399.000000 +I (217464) example: expect speed: 0.000000 real_pulses:0 +I (217464) example: new speed:399.000000 +I (217474) example: expect speed: 0.000000 real_pulses:0 +I (217474) example: new speed:399.000000 +I (217484) example: expect speed: 0.000000 real_pulses:0 +I (217484) example: new speed:399.000000 +I (217494) example: expect speed: 0.000000 real_pulses:0 +I (217494) example: new speed:399.000000 +I (217504) example: expect speed: 0.000000 real_pulses:0 +I (217504) example: new speed:399.000000 +I (217514) example: expect speed: 0.000000 real_pulses:0 +I (217514) example: new speed:399.000000 +I (217524) example: expect speed: 0.000000 real_pulses:0 +I (217524) example: new speed:399.000000 +I (217534) example: expect speed: 0.000000 real_pulses:0 +I (217544) example: new speed:399.000000 +I (217544) example: expect speed: 0.000000 real_pulses:0 +I (217544) example: new speed:399.000000 +I (217554) example: expect speed: 0.000000 real_pulses:0 +I (217554) example: new speed:399.000000 +I (217564) example: expect speed: 0.000000 real_pulses:0 +I (217564) example: new speed:399.000000 +I (217574) example: expect speed: 0.000000 real_pulses:0 +I (217574) example: new speed:399.000000 +I (217584) example: expect speed: 0.000000 real_pulses:0 +I (217584) example: new speed:399.000000 +I (217594) example: expect speed: 0.000000 real_pulses:0 +I (217594) example: new speed:399.000000 +I (217604) example: expect speed: 0.000000 real_pulses:0 +I (217604) example: new speed:399.000000 +I (217614) example: expect speed: 0.000000 real_pulses:0 +I (217614) example: new speed:399.000000 +I (217624) example: expect speed: 0.000000 real_pulses:0 +I (217624) example: new speed:399.000000 +I (217634) example: expect speed: 0.000000 real_pulses:0 +I (217634) example: new speed:399.000000 +I (217644) example: expect speed: 0.000000 real_pulses:0 +I (217644) example: new speed:399.000000 +I (217654) example: expect speed: 0.000000 real_pulses:0 +I (217654) example: new speed:399.000000 +I (217664) example: expect speed: 0.000000 real_pulses:0 +I (217664) example: new speed:399.000000 +I (217674) example: expect speed: 0.000000 real_pulses:0 +I (217674) example: new speed:399.000000 +I (217684) example: expect speed: 0.000000 real_pulses:0 +I (217684) example: new speed:399.000000 +I (217694) example: expect speed: 0.000000 real_pulses:0 +I (217694) example: new speed:399.000000 +I (217704) example: expect speed: 0.000000 real_pulses:0 +I (217704) example: new speed:399.000000 +I (217714) example: expect speed: 0.000000 real_pulses:0 +I (217714) example: new speed:399.000000 +I (217724) example: expect speed: 0.000000 real_pulses:0 +I (217724) example: new speed:399.000000 +I (217734) example: expect speed: 0.000000 real_pulses:0 +I (217734) example: new speed:399.000000 +I (217744) example: expect speed: 0.000000 real_pulses:0 +I (217744) example: new speed:399.000000 +I (217754) example: expect speed: 0.000000 real_pulses:0 +I (217764) example: new speed:399.000000 +I (217764) example: expect speed: 0.000000 real_pulses:0 +I (217764) example: new speed:399.000000 +I (217774) example: expect speed: 0.000000 real_pulses:0 +I (217774) example: new speed:399.000000 +I (217784) example: expect speed: 0.000000 real_pulses:0 +I (217784) example: new speed:399.000000 +I (217794) example: expect speed: 0.000000 real_pulses:0 +I (217794) example: new speed:399.000000 +I (217804) example: expect speed: 0.000000 real_pulses:0 +I (217804) example: new speed:399.000000 +I (217814) example: expect speed: 0.000000 real_pulses:0 +I (217814) example: new speed:399.000000 +I (217824) example: expect speed: 0.000000 real_pulses:0 +I (217824) example: new speed:399.000000 +I (217834) example: expect speed: 0.000000 real_pulses:0 +I (217834) example: new speed:399.000000 +I (217844) example: expect speed: 0.000000 real_pulses:0 +I (217844) example: new speed:399.000000 +I (217854) example: expect speed: 0.000000 real_pulses:0 +I (217854) example: new speed:399.000000 +I (217864) example: expect speed: 0.000000 real_pulses:0 +I (217864) example: new speed:399.000000 +I (217874) example: expect speed: 0.000000 real_pulses:0 +I (217874) example: new speed:399.000000 +I (217884) example: expect speed: 0.000000 real_pulses:0 +I (217884) example: new speed:399.000000 +I (217894) example: expect speed: 0.000000 real_pulses:0 +I (217894) example: new speed:399.000000 +I (217904) example: expect speed: 0.000000 real_pulses:0 +I (217904) example: new speed:399.000000 +I (217914) example: expect speed: 0.000000 real_pulses:0 +I (217914) example: new speed:399.000000 +I (217924) example: expect speed: 0.000000 real_pulses:0 +I (217924) example: new speed:399.000000 +I (217934) example: expect speed: 0.000000 real_pulses:0 +I (217934) example: new speed:399.000000 +I (217944) example: expect speed: 0.000000 real_pulses:0 +I (217944) example: new speed:399.000000 +I (217954) example: expect speed: 0.000000 real_pulses:0 +I (217964) example: new speed:399.000000 +I (217964) example: expect speed: 0.000000 real_pulses:0 +I (217974) example: new speed:399.000000 +I (217974) example: expect speed: 0.000000 real_pulses:0 +I (217974) example: new speed:399.000000 +I (217984) example: expect speed: 0.000000 real_pulses:0 +I (217984) example: new speed:399.000000 +I (217994) example: expect speed: 0.000000 real_pulses:0 +I (217994) example: new speed:399.000000 +I (218004) example: expect speed: 0.000000 real_pulses:0 +I (218004) example: new speed:399.000000 +I (218014) example: expect speed: 0.000000 real_pulses:0 +I (218014) example: new speed:399.000000 +I (218024) example: expect speed: 0.000000 real_pulses:0 +I (218024) example: new speed:399.000000 +I (218034) example: expect speed: 0.000000 real_pulses:0 +I (218034) example: new speed:399.000000 +I (218044) example: expect speed: 0.000000 real_pulses:0 +I (218044) example: new speed:399.000000 +I (218054) example: expect speed: 0.000000 real_pulses:0 +I (218054) example: new speed:399.000000 +I (218064) example: expect speed: 0.000000 real_pulses:0 +I (218064) example: new speed:399.000000 +I (218074) example: expect speed: 0.000000 real_pulses:0 +I (218074) example: new speed:399.000000 +I (218084) example: expect speed: 0.000000 real_pulses:0 +I (218084) example: new speed:399.000000 +I (218094) example: expect speed: 0.000000 real_pulses:0 +I (218094) example: new speed:399.000000 +I (218104) example: expect speed: 0.000000 real_pulses:0 +I (218104) example: new speed:399.000000 +I (218114) example: expect speed: 0.000000 real_pulses:0 +I (218114) example: new speed:399.000000 +I (218124) example: expect speed: 0.000000 real_pulses:0 +I (218124) example: new speed:399.000000 +I (218134) example: expect speed: 0.000000 real_pulses:0 +I (218134) example: new speed:399.000000 +I (218144) example: expect speed: 0.000000 real_pulses:0 +I (218144) example: new speed:399.000000 +I (218154) example: expect speed: 0.000000 real_pulses:0 +I (218154) example: new speed:399.000000 +I (218164) example: expect speed: 0.000000 real_pulses:0 +I (218174) example: new speed:399.000000 +I (218174) example: expect speed: 0.000000 real_pulses:0 +I (218174) example: new speed:399.000000 +I (218184) modbus tcp: ModBusSlave_recv() +I (218184) modbus: ModbusSlaveProcess() +I (218184) modbus: check id... +I (218184) example: expect speed: 0.000000 real_pulses:0 +I (218184) modbus: ok +I (218184) example: new speed:399.000000 +I (218194) modbus: add: 0, length: 10 +I (218194) modbus: Read Holding Registers +I (218194) example: expect speed: 0.000000 real_pulses:0 +I (218204) example: new speed:399.000000 +I (218204) example: expect speed: 0.000000 real_pulses:0 +I (218204) example: new speed:399.000000 +I (218214) example: expect speed: 0.000000 real_pulses:0 +I (218214) example: new speed:399.000000 +I (218224) example: expect speed: 0.000000 real_pulses:0 +I (218224) example: new speed:399.000000 +I (218234) example: expect speed: 0.000000 real_pulses:0 +I (218234) example: new speed:399.000000 +I (218244) example: expect speed: 0.000000 real_pulses:0 +I (218254) example: new speed:399.000000 +I (218254) example: expect speed: 0.000000 real_pulses:0 +I (218254) example: new speed:399.000000 +I (218264) example: expect speed: 0.000000 real_pulses:0 +I (218264) example: new speed:399.000000 +I (218274) example: expect speed: 0.000000 real_pulses:0 +I (218274) example: new speed:399.000000 +I (218284) example: expect speed: 0.000000 real_pulses:0 +I (218284) example: new speed:399.000000 +I (218294) example: expect speed: 0.000000 real_pulses:0 +I (218294) example: new speed:399.000000 +I (218304) example: expect speed: 0.000000 real_pulses:0 +I (218304) example: new speed:399.000000 +I (218314) example: expect speed: 0.000000 real_pulses:0 +I (218314) example: new speed:399.000000 +I (218324) example: expect speed: 0.000000 real_pulses:0 +I (218324) example: new speed:399.000000 +I (218334) example: expect speed: 0.000000 real_pulses:0 +I (218334) example: new speed:399.000000 +I (218344) example: expect speed: 0.000000 real_pulses:0 +I (218344) example: new speed:399.000000 +I (218354) example: expect speed: 0.000000 real_pulses:0 +I (218354) example: new speed:399.000000 +I (218364) example: expect speed: 0.000000 real_pulses:0 +I (218364) example: new speed:399.000000 +I (218374) example: expect speed: 0.000000 real_pulses:0 +I (218374) example: new speed:399.000000 +I (218384) example: expect speed: 0.000000 real_pulses:0 +I (218384) example: new speed:399.000000 +I (218394) example: expect speed: 0.000000 real_pulses:0 +I (218394) example: new speed:399.000000 +I (218404) example: expect speed: 0.000000 real_pulses:0 +I (218404) example: new speed:399.000000 +I (218414) example: expect speed: 0.000000 real_pulses:0 +I (218414) example: new speed:399.000000 +I (218424) example: expect speed: 0.000000 real_pulses:0 +I (218424) example: new speed:399.000000 +I (218434) example: expect speed: 0.000000 real_pulses:0 +I (218434) example: new speed:399.000000 +I (218444) example: expect speed: 0.000000 real_pulses:0 +I (218444) example: new speed:399.000000 +I (218454) example: expect speed: 0.000000 real_pulses:0 +I (218454) example: new speed:399.000000 +I (218464) example: expect speed: 0.000000 real_pulses:0 +I (218474) example: new speed:399.000000 +I (218474) example: expect speed: 0.000000 real_pulses:0 +I (218484) example: new speed:399.000000 +I (218484) example: expect speed: 0.000000 real_pulses:0 +I (218484) example: new speed:399.000000 +I (218494) example: expect speed: 0.000000 real_pulses:0 +I (218494) example: new speed:399.000000 +I (218504) example: expect speed: 0.000000 real_pulses:0 +I (218504) example: new speed:399.000000 +I (218514) example: expect speed: 0.000000 real_pulses:0 +I (218514) example: new speed:399.000000 +I (218524) example: expect speed: 0.000000 real_pulses:0 +I (218524) example: new speed:399.000000 +I (218534) example: expect speed: 0.000000 real_pulses:0 +I (218544) example: new speed:399.000000 +I (218544) example: expect speed: 0.000000 real_pulses:0 +I (218544) example: new speed:399.000000 +I (218554) example: expect speed: 0.000000 real_pulses:0 +I (218554) example: new speed:399.000000 +I (218564) example: expect speed: 0.000000 real_pulses:0 +I (218564) example: new speed:399.000000 +I (218574) example: expect speed: 0.000000 real_pulses:0 +I (218574) example: new speed:399.000000 +I (218584) example: expect speed: 0.000000 real_pulses:0 +I (218584) example: new speed:399.000000 +I (218594) example: expect speed: 0.000000 real_pulses:0 +I (218604) example: new speed:399.000000 +I (218604) example: expect speed: 0.000000 real_pulses:0 +I (218604) example: new speed:399.000000 +I (218614) example: expect speed: 0.000000 real_pulses:0 +I (218614) example: new speed:399.000000 +I (218624) example: expect speed: 0.000000 real_pulses:0 +I (218624) example: new speed:399.000000 +I (218634) example: expect speed: 0.000000 real_pulses:0 +I (218634) example: new speed:399.000000 +I (218644) example: expect speed: 0.000000 real_pulses:0 +I (218644) example: new speed:399.000000 +I (218654) example: expect speed: 0.000000 real_pulses:0 +I (218654) example: new speed:399.000000 +I (218664) example: expect speed: 0.000000 real_pulses:0 +I (218664) example: new speed:399.000000 +I (218674) example: expect speed: 0.000000 real_pulses:0 +I (218674) example: new speed:399.000000 +I (218684) example: expect speed: 0.000000 real_pulses:0 +I (218684) example: new speed:399.000000 +I (218694) example: expect speed: 0.000000 real_pulses:0 +I (218694) example: new speed:399.000000 +I (218704) example: expect speed: 0.000000 real_pulses:0 +I (218704) example: new speed:399.000000 +I (218714) example: expect speed: 0.000000 real_pulses:0 +I (218714) example: new speed:399.000000 +I (218724) example: expect speed: 0.000000 real_pulses:0 +I (218724) example: new speed:399.000000 +I (218734) example: expect speed: 0.000000 real_pulses:0 +I (218734) example: new speed:399.000000 +I (218744) example: expect speed: 0.000000 real_pulses:0 +I (218744) example: new speed:399.000000 +I (218754) example: expect speed: 0.000000 real_pulses:0 +I (218754) example: new speed:399.000000 +I (218764) example: expect speed: 0.000000 real_pulses:0 +I (218764) example: new speed:399.000000 +I (218774) example: expect speed: 0.000000 real_pulses:0 +I (218774) example: new speed:399.000000 +I (218784) example: expect speed: 0.000000 real_pulses:0 +I (218784) example: new speed:399.000000 +I (218794) example: expect speed: 0.000000 real_pulses:0 +I (218794) example: new speed:399.000000 +I (218804) example: expect speed: 0.000000 real_pulses:0 +I (218804) example: new speed:399.000000 +I (218814) example: expect speed: 0.000000 real_pulses:0 +I (218814) example: new speed:399.000000 +I (218824) example: expect speed: 0.000000 real_pulses:0 +I (218824) example: new speed:399.000000 +I (218834) example: expect speed: 0.000000 real_pulses:0 +I (218834) example: new speed:399.000000 +I (218844) example: expect speed: 0.000000 real_pulses:0 +I (218844) example: new speed:399.000000 +I (218854) example: expect speed: 0.000000 real_pulses:0 +I (218854) example: new speed:399.000000 +I (218864) example: expect speed: 0.000000 real_pulses:0 +I (218864) example: new speed:399.000000 +I (218874) example: expect speed: 0.000000 real_pulses:0 +I (218884) example: new speed:399.000000 +I (218884) example: expect speed: 0.000000 real_pulses:0 +I (218894) example: new speed:399.000000 +I (218894) example: expect speed: 0.000000 real_pulses:0 +I (218894) example: new speed:399.000000 +I (218904) example: expect speed: 0.000000 real_pulses:0 +I (218904) example: new speed:399.000000 +I (218914) example: expect speed: 0.000000 real_pulses:0 +I (218914) example: new speed:399.000000 +I (218924) example: expect speed: 0.000000 real_pulses:0 +I (218924) example: new speed:399.000000 +I (218934) example: expect speed: 0.000000 real_pulses:0 +I (218944) example: new speed:399.000000 +I (218944) example: expect speed: 0.000000 real_pulses:0 +I (218944) example: new speed:399.000000 +I (218954) example: expect speed: 0.000000 real_pulses:0 +I (218954) example: new speed:399.000000 +I (218964) example: expect speed: 0.000000 real_pulses:0 +I (218964) example: new speed:399.000000 +I (218974) example: expect speed: 0.000000 real_pulses:0 +I (218974) example: new speed:399.000000 +I (218984) example: expect speed: 0.000000 real_pulses:0 +I (218984) example: new speed:399.000000 +I (218994) example: expect speed: 0.000000 real_pulses:0 +I (218994) example: new speed:399.000000 +I (219004) example: expect speed: 0.000000 real_pulses:0 +I (219004) example: new speed:399.000000 +I (219014) example: expect speed: 0.000000 real_pulses:0 +I (219014) example: new speed:399.000000 +I (219024) example: expect speed: 0.000000 real_pulses:0 +I (219024) example: new speed:399.000000 +I (219034) example: expect speed: 0.000000 real_pulses:0 +I (219034) example: new speed:399.000000 +I (219044) example: expect speed: 0.000000 real_pulses:0 +I (219044) example: new speed:399.000000 +I (219054) example: expect speed: 0.000000 real_pulses:0 +I (219054) example: new speed:399.000000 +I (219064) example: expect speed: 0.000000 real_pulses:0 +I (219064) example: new speed:399.000000 +I (219074) example: expect speed: 0.000000 real_pulses:0 +I (219074) example: new speed:399.000000 +I (219084) example: expect speed: 0.000000 real_pulses:0 +I (219084) example: new speed:399.000000 +I (219094) example: expect speed: 0.000000 real_pulses:0 +I (219094) example: new speed:399.000000 +I (219104) example: expect speed: 0.000000 real_pulses:0 +I (219104) example: new speed:399.000000 +I (219114) example: expect speed: 0.000000 real_pulses:0 +I (219114) example: new speed:399.000000 +I (219124) example: expect speed: 0.000000 real_pulses:0 +I (219124) example: new speed:399.000000 +I (219134) example: expect speed: 0.000000 real_pulses:0 +I (219134) example: new speed:399.000000 +I (219144) example: expect speed: 0.000000 real_pulses:0 +I (219144) example: new speed:399.000000 +I (219154) example: expect speed: 0.000000 real_pulses:0 +I (219154) example: new speed:399.000000 +I (219164) example: expect speed: 0.000000 real_pulses:0 +I (219164) example: new speed:399.000000 +I (219174) example: expect speed: 0.000000 real_pulses:0 +I (219174) example: new speed:399.000000 +I (219184) example: expect speed: 0.000000 real_pulses:0 +I (219194) example: new speed:399.000000 +I (219194) example: expect speed: 0.000000 real_pulses:0 +I (219204) example: new speed:399.000000 +I (219204) example: expect speed: 0.000000 real_pulses:0 +I (219204) example: new speed:399.000000 +I (219214) example: expect speed: 0.000000 real_pulses:0 +I (219214) example: new speed:399.000000 +I (219224) example: expect speed: 0.000000 real_pulses:0 +I (219224) example: new speed:399.000000 +I (219234) example: expect speed: 0.000000 real_pulses:0 +I (219234) example: new speed:399.000000 +I (219244) example: expect speed: 0.000000 real_pulses:0 +I (219244) example: new speed:399.000000 +I (219254) example: expect speed: 0.000000 real_pulses:0 +I (219254) example: new speed:399.000000 +I (219264) example: expect speed: 0.000000 real_pulses:0 +I (219264) example: new speed:399.000000 +I (219274) example: expect speed: 0.000000 real_pulses:0 +I (219274) example: new speed:399.000000 +I (219284) example: expect speed: 0.000000 real_pulses:0 +I (219284) example: new speed:399.000000 +I (219294) example: expect speed: 0.000000 real_pulses:0 +I (219294) example: new speed:399.000000 +I (219304) example: expect speed: 0.000000 real_pulses:0 +I (219304) example: new speed:399.000000 +I (219314) example: expect speed: 0.000000 real_pulses:0 +I (219314) example: new speed:399.000000 +I (219324) example: expect speed: 0.000000 real_pulses:0 +I (219324) example: new speed:399.000000 +I (219334) example: expect speed: 0.000000 real_pulses:0 +I (219334) example: new speed:399.000000 +I (219344) example: expect speed: 0.000000 real_pulses:0 +I (219344) example: new speed:399.000000 +I (219354) example: expect speed: 0.000000 real_pulses:0 +I (219354) example: new speed:399.000000 +I (219364) example: expect speed: 0.000000 real_pulses:0 +I (219364) example: new speed:399.000000 +I (219374) example: expect speed: 0.000000 real_pulses:0 +I (219374) example: new speed:399.000000 +I (219384) example: expect speed: 0.000000 real_pulses:0 +I (219384) example: new speed:399.000000 +I (219394) example: expect speed: 0.000000 real_pulses:0 +I (219394) example: new speed:399.000000 +I (219404) example: expect speed: 0.000000 real_pulses:0 +I (219404) example: new speed:399.000000 +I (219414) example: expect speed: 0.000000 real_pulses:0 +I (219414) example: new speed:399.000000 +I (219424) example: expect speed: 0.000000 real_pulses:0 +I (219424) example: new speed:399.000000 +I (219434) example: expect speed: 0.000000 real_pulses:0 +I (219434) example: new speed:399.000000 +I (219444) example: expect speed: 0.000000 real_pulses:0 +I (219444) example: new speed:399.000000 +I (219454) example: expect speed: 0.000000 real_pulses:0 +I (219454) example: new speed:399.000000 +I (219464) example: expect speed: 0.000000 real_pulses:0 +I (219464) example: new speed:399.000000 +I (219474) example: expect speed: 0.000000 real_pulses:0 +I (219474) example: new speed:399.000000 +I (219484) example: expect speed: 0.000000 real_pulses:0 +I (219484) example: new speed:399.000000 +I (219494) modbus tcp: ModBusSlave_recv() +I (219494) modbus: ModbusSlaveProcess() +I (219494) modbus: check id... +I (219494) modbus: ok +I (219494) modbus: add: 0, length: 10 +I (219494) modbus: Read Holding Registers +I (219494) example: expect speed: 0.000000 real_pulses:0 +I (219504) example: new speed:399.000000 +I (219504) example: expect speed: 0.000000 real_pulses:0 +I (219504) example: new speed:399.000000 +I (219514) example: expect speed: 0.000000 real_pulses:0 +I (219514) example: new speed:399.000000 +I (219524) example: expect speed: 0.000000 real_pulses:0 +I (219524) example: new speed:399.000000 +I (219534) example: expect speed: 0.000000 real_pulses:0 +I (219534) example: new speed:399.000000 +I (219544) example: expect speed: 0.000000 real_pulses:0 +I (219554) example: new speed:399.000000 +I (219554) example: expect speed: 0.000000 real_pulses:0 +I (219554) example: new speed:399.000000 +I (219564) example: expect speed: 0.000000 real_pulses:0 +I (219564) example: new speed:399.000000 +I (219574) example: expect speed: 0.000000 real_pulses:0 +I (219574) example: new speed:399.000000 +I (219584) example: expect speed: 0.000000 real_pulses:0 +I (219584) example: new speed:399.000000 +I (219594) example: expect speed: 0.000000 real_pulses:0 +I (219594) example: new speed:399.000000 +I (219604) example: expect speed: 0.000000 real_pulses:0 +I (219604) example: new speed:399.000000 +I (219614) example: expect speed: 0.000000 real_pulses:0 +I (219614) example: new speed:399.000000 +I (219624) example: expect speed: 0.000000 real_pulses:0 +I (219624) example: new speed:399.000000 +I (219634) example: expect speed: 0.000000 real_pulses:0 +I (219634) example: new speed:399.000000 +I (219644) example: expect speed: 0.000000 real_pulses:0 +I (219644) example: new speed:399.000000 +I (219654) example: expect speed: 0.000000 real_pulses:0 +I (219654) example: new speed:399.000000 +I (219664) example: expect speed: 0.000000 real_pulses:0 +I (219664) example: new speed:399.000000 +I (219674) example: expect speed: 0.000000 real_pulses:0 +I (219674) example: new speed:399.000000 +I (219684) example: expect speed: 0.000000 real_pulses:0 +I (219684) example: new speed:399.000000 +I (219694) example: expect speed: 0.000000 real_pulses:0 +I (219694) example: new speed:399.000000 +I (219704) example: expect speed: 0.000000 real_pulses:0 +I (219704) example: new speed:399.000000 +I (219714) example: expect speed: 0.000000 real_pulses:0 +I (219714) example: new speed:399.000000 +I (219724) example: expect speed: 0.000000 real_pulses:0 +I (219724) example: new speed:399.000000 +I (219734) example: expect speed: 0.000000 real_pulses:0 +I (219734) example: new speed:399.000000 +I (219744) example: expect speed: 0.000000 real_pulses:0 +I (219744) example: new speed:399.000000 +I (219754) example: expect speed: 0.000000 real_pulses:0 +I (219754) example: new speed:399.000000 +I (219764) example: expect speed: 0.000000 real_pulses:0 +I (219764) example: new speed:399.000000 +I (219774) example: expect speed: 0.000000 real_pulses:0 +I (219774) example: new speed:399.000000 +I (219784) example: expect speed: 0.000000 real_pulses:0 +I (219784) example: new speed:399.000000 +I (219794) example: expect speed: 0.000000 real_pulses:0 +I (219794) example: new speed:399.000000 +I (219804) example: expect speed: 0.000000 real_pulses:0 +I (219804) example: new speed:399.000000 +I (219814) example: expect speed: 0.000000 real_pulses:0 +I (219814) example: new speed:399.000000 +I (219824) example: expect speed: 0.000000 real_pulses:0 +I (219824) example: new speed:399.000000 +I (219834) example: expect speed: 0.000000 real_pulses:0 +I (219834) example: new speed:399.000000 +I (219844) example: expect speed: 0.000000 real_pulses:0 +I (219844) example: new speed:399.000000 +I (219854) example: expect speed: 0.000000 real_pulses:0 +I (219854) example: new speed:399.000000 +I (219864) example: expect speed: 0.000000 real_pulses:0 +I (219864) example: new speed:399.000000 +I (219874) example: expect speed: 0.000000 real_pulses:0 +I (219874) example: new speed:399.000000 +I (219884) example: expect speed: 0.000000 real_pulses:0 +I (219884) example: new speed:399.000000 +I (219894) example: expect speed: 0.000000 real_pulses:0 +I (219894) example: new speed:399.000000 +I (219904) example: expect speed: 0.000000 real_pulses:0 +I (219904) example: new speed:399.000000 +I (219914) example: expect speed: 0.000000 real_pulses:0 +I (219914) example: new speed:399.000000 +I (219924) example: expect speed: 0.000000 real_pulses:0 +I (219924) example: new speed:399.000000 +I (219934) example: expect speed: 0.000000 real_pulses:0 +I (219934) example: new speed:399.000000 +I (219944) example: expect speed: 0.000000 real_pulses:0 +I (219944) example: new speed:399.000000 +I (219954) example: expect speed: 0.000000 real_pulses:0 +I (219954) example: new speed:399.000000 +I (219964) example: expect speed: 0.000000 real_pulses:0 +I (219964) example: new speed:399.000000 +I (219974) example: expect speed: 0.000000 real_pulses:0 +I (219974) example: new speed:399.000000 +I (219984) example: expect speed: 0.000000 real_pulses:0 +I (219984) example: new speed:399.000000 +I (219994) example: expect speed: 0.000000 real_pulses:0 +I (219994) example: new speed:399.000000 +I (220004) example: expect speed: 0.000000 real_pulses:0 +I (220004) example: new speed:399.000000 +I (220014) example: expect speed: 0.000000 real_pulses:0 +I (220014) example: new speed:399.000000 +I (220024) example: expect speed: 0.000000 real_pulses:0 +I (220024) example: new speed:399.000000 +I (220034) example: expect speed: 0.000000 real_pulses:0 +I (220034) example: new speed:399.000000 +I (220044) example: expect speed: 0.000000 real_pulses:0 +I (220044) example: new speed:399.000000 +I (220054) example: expect speed: 0.000000 real_pulses:0 +I (220054) example: new speed:399.000000 +I (220064) example: expect speed: 0.000000 real_pulses:0 +I (220064) example: new speed:399.000000 +I (220074) example: expect speed: 0.000000 real_pulses:0 +I (220074) example: new speed:399.000000 +I (220084) example: expect speed: 0.000000 real_pulses:0 +I (220084) example: new speed:399.000000 +I (220094) example: expect speed: 0.000000 real_pulses:0 +I (220094) example: new speed:399.000000 +I (220104) example: expect speed: 0.000000 real_pulses:0 +I (220104) example: new speed:399.000000 +I (220114) example: expect speed: 0.000000 real_pulses:0 +I (220114) example: new speed:399.000000 +I (220124) example: expect speed: 0.000000 real_pulses:0 +I (220124) example: new speed:399.000000 +I (220134) example: expect speed: 0.000000 real_pulses:0 +I (220134) example: new speed:399.000000 +I (220144) example: expect speed: 0.000000 real_pulses:0 +I (220144) example: new speed:399.000000 +I (220154) example: expect speed: 0.000000 real_pulses:0 +I (220154) example: new speed:399.000000 +I (220164) example: expect speed: 0.000000 real_pulses:0 +I (220164) example: new speed:399.000000 +I (220174) example: expect speed: 0.000000 real_pulses:0 +I (220174) example: new speed:399.000000 +I (220184) example: expect speed: 0.000000 real_pulses:0 +I (220184) example: new speed:399.000000 +I (220194) example: expect speed: 0.000000 real_pulses:0 +I (220194) example: new speed:399.000000 +I (220204) example: expect speed: 0.000000 real_pulses:0 +I (220204) example: new speed:399.000000 +I (220214) example: expect speed: 0.000000 real_pulses:0 +I (220214) example: new speed:399.000000 +I (220224) example: expect speed: 0.000000 real_pulses:0 +I (220224) example: new speed:399.000000 +I (220234) example: expect speed: 0.000000 real_pulses:0 +I (220234) example: new speed:399.000000 +I (220244) example: expect speed: 0.000000 real_pulses:0 +I (220244) example: new speed:399.000000 +I (220254) example: expect speed: 0.000000 real_pulses:0 +I (220254) example: new speed:399.000000 +I (220264) example: expect speed: 0.000000 real_pulses:0 +I (220264) example: new speed:399.000000 +I (220274) example: expect speed: 0.000000 real_pulses:0 +I (220274) example: new speed:399.000000 +I (220284) example: expect speed: 0.000000 real_pulses:0 +I (220284) example: new speed:399.000000 +I (220294) example: expect speed: 0.000000 real_pulses:0 +I (220294) example: new speed:399.000000 +I (220304) example: expect speed: 0.000000 real_pulses:0 +I (220304) example: new speed:399.000000 +I (220314) example: expect speed: 0.000000 real_pulses:0 +I (220314) example: new speed:399.000000 +I (220324) example: expect speed: 0.000000 real_pulses:0 +I (220324) example: new speed:399.000000 +I (220334) example: expect speed: 0.000000 real_pulses:0 +I (220334) example: new speed:399.000000 +I (220344) example: expect speed: 0.000000 real_pulses:0 +I (220344) example: new speed:399.000000 +I (220354) example: expect speed: 0.000000 real_pulses:0 +I (220354) example: new speed:399.000000 +I (220364) example: expect speed: 0.000000 real_pulses:0 +I (220364) example: new speed:399.000000 +I (220374) example: expect speed: 0.000000 real_pulses:0 +I (220374) example: new speed:399.000000 +I (220384) example: expect speed: 0.000000 real_pulses:0 +I (220384) example: new speed:399.000000 +I (220394) example: expect speed: 0.000000 real_pulses:0 +I (220394) example: new speed:399.000000 +I (220404) example: expect speed: 0.000000 real_pulses:0 +I (220404) example: new speed:399.000000 +I (220414) example: expect speed: 0.000000 real_pulses:0 +I (220414) example: new speed:399.000000 +I (220424) example: expect speed: 0.000000 real_pulses:0 +I (220424) example: new speed:399.000000 +I (220434) example: expect speed: 0.000000 real_pulses:0 +I (220434) example: new speed:399.000000 +I (220444) example: expect speed: 0.000000 real_pulses:0 +I (220444) example: new speed:399.000000 +I (220454) example: expect speed: 0.000000 real_pulses:0 +I (220454) example: new speed:399.000000 +I (220464) example: expect speed: 0.000000 real_pulses:0 +I (220464) example: new speed:399.000000 +I (220474) example: expect speed: 0.000000 real_pulses:0 +I (220474) example: new speed:399.000000 +I (220484) example: expect speed: 0.000000 real_pulses:0 +I (220484) example: new speed:399.000000 +I (220494) example: expect speed: 0.000000 real_pulses:0 +I (220494) example: new speed:399.000000 +I (220504) example: expect speed: 0.000000 real_pulses:0 +I (220504) example: new speed:399.000000 +I (220514) example: expect speed: 0.000000 real_pulses:0 +I (220514) example: new speed:399.000000 +I (220524) example: expect speed: 0.000000 real_pulses:0 +I (220524) example: new speed:399.000000 +I (220534) example: expect speed: 0.000000 real_pulses:0 +I (220534) example: new speed:399.000000 +I (220544) example: expect speed: 0.000000 real_pulses:0 +I (220544) example: new speed:399.000000 +I (220554) example: expect speed: 0.000000 real_pulses:0 +I (220554) example: new speed:399.000000 +I (220564) example: expect speed: 0.000000 real_pulses:0 +I (220564) example: new speed:399.000000 +I (220574) example: expect speed: 0.000000 real_pulses:0 +I (220574) example: new speed:399.000000 +I (220584) example: expect speed: 0.000000 real_pulses:0 +I (220584) example: new speed:399.000000 +I (220594) example: expect speed: 0.000000 real_pulses:0 +I (220594) example: new speed:399.000000 +I (220604) example: expect speed: 0.000000 real_pulses:0 +I (220604) example: new speed:399.000000 +I (220614) example: expect speed: 0.000000 real_pulses:0 +I (220624) example: new speed:399.000000 +I (220624) example: expect speed: 0.000000 real_pulses:0 +I (220624) example: new speed:399.000000 +I (220634) example: expect speed: 0.000000 real_pulses:0 +I (220634) example: new speed:399.000000 +I (220644) example: expect speed: 0.000000 real_pulses:0 +I (220644) example: new speed:399.000000 +I (220654) example: expect speed: 0.000000 real_pulses:0 +I (220654) example: new speed:399.000000 +I (220664) example: expect speed: 0.000000 real_pulses:0 +I (220664) example: new speed:399.000000 +I (220674) example: expect speed: 0.000000 real_pulses:0 +I (220674) example: new speed:399.000000 +I (220684) example: expect speed: 0.000000 real_pulses:0 +I (220684) example: new speed:399.000000 +I (220694) example: expect speed: 0.000000 real_pulses:0 +I (220694) example: new speed:399.000000 +I (220704) example: expect speed: 0.000000 real_pulses:0 +I (220704) example: new speed:399.000000 +I (220714) example: expect speed: 0.000000 real_pulses:0 +I (220714) example: new speed:399.000000 +I (220724) example: expect speed: 0.000000 real_pulses:0 +I (220724) example: new speed:399.000000 +I (220734) example: expect speed: 0.000000 real_pulses:0 +I (220734) example: new speed:399.000000 +I (220744) example: expect speed: 0.000000 real_pulses:0 +I (220744) example: new speed:399.000000 +I (220754) example: expect speed: 0.000000 real_pulses:0 +I (220754) example: new speed:399.000000 +I (220764) example: expect speed: 0.000000 real_pulses:0 +I (220764) example: new speed:399.000000 +I (220774) example: expect speed: 0.000000 real_pulses:0 +I (220774) example: new speed:399.000000 +I (220784) example: expect speed: 0.000000 real_pulses:0 +I (220784) example: new speed:399.000000 +I (220794) example: expect speed: 0.000000 real_pulses:0 +I (220794) example: new speed:399.000000 +I (220804) example: expect speed: 0.000000 real_pulses:0 +I (220804) example: new speed:399.000000 +I (220814) example: expect speed: 0.000000 real_pulses:0 +I (220814) example: new speed:399.000000 +I (220824) example: expect speed: 0.000000 real_pulses:0 +I (220834) modbus tcp: ModBusSlave_recv() +I (220834) example: new speed:399.000000 +I (220834) modbus: ModbusSlaveProcess() +I (220834) modbus: check id... +I (220834) modbus: ok +I (220834) modbus: add: 0, length: 10 +I (220834) modbus: Read Holding Registers +I (220834) example: expect speed: 0.000000 real_pulses:0 +I (220844) example: new speed:399.000000 +I (220844) example: expect speed: 0.000000 real_pulses:0 +I (220844) example: new speed:399.000000 +I (220854) example: expect speed: 0.000000 real_pulses:0 +I (220854) example: new speed:399.000000 +I (220864) example: expect speed: 0.000000 real_pulses:0 +I (220864) example: new speed:399.000000 +I (220874) example: expect speed: 0.000000 real_pulses:0 +I (220874) example: new speed:399.000000 +I (220884) example: expect speed: 0.000000 real_pulses:0 +I (220884) example: new speed:399.000000 +I (220894) example: expect speed: 0.000000 real_pulses:0 +I (220894) example: new speed:399.000000 +I (220904) example: expect speed: 0.000000 real_pulses:0 +I (220904) example: new speed:399.000000 +I (220914) example: expect speed: 0.000000 real_pulses:0 +I (220914) example: new speed:399.000000 +I (220924) example: expect speed: 0.000000 real_pulses:0 +I (220934) example: new speed:399.000000 +I (220934) example: expect speed: 0.000000 real_pulses:0 +I (220934) example: new speed:399.000000 +I (220944) example: expect speed: 0.000000 real_pulses:0 +I (220954) example: new speed:399.000000 +I (220954) example: expect speed: 0.000000 real_pulses:0 +I (220954) example: new speed:399.000000 +I (220964) example: expect speed: 0.000000 real_pulses:0 +I (220964) example: new speed:399.000000 +I (220974) example: expect speed: 0.000000 real_pulses:0 +I (220974) example: new speed:399.000000 +I (220984) example: expect speed: 0.000000 real_pulses:0 +I (220984) example: new speed:399.000000 +I (220994) example: expect speed: 0.000000 real_pulses:0 +I (221004) example: new speed:399.000000 +I (221004) example: expect speed: 0.000000 real_pulses:0 +I (221004) example: new speed:399.000000 +I (221014) example: expect speed: 0.000000 real_pulses:0 +I (221014) example: new speed:399.000000 +I (221024) example: expect speed: 0.000000 real_pulses:0 +I (221024) example: new speed:399.000000 +I (221034) example: expect speed: 0.000000 real_pulses:0 +I (221034) example: new speed:399.000000 +I (221044) example: expect speed: 0.000000 real_pulses:0 +I (221044) example: new speed:399.000000 +I (221054) example: expect speed: 0.000000 real_pulses:0 +I (221054) example: new speed:399.000000 +I (221064) example: expect speed: 0.000000 real_pulses:0 +I (221064) example: new speed:399.000000 +I (221074) example: expect speed: 0.000000 real_pulses:0 +I (221074) example: new speed:399.000000 +I (221084) example: expect speed: 0.000000 real_pulses:0 +I (221084) example: new speed:399.000000 +I (221094) example: expect speed: 0.000000 real_pulses:0 +I (221094) example: new speed:399.000000 +I (221104) example: expect speed: 0.000000 real_pulses:0 +I (221104) example: new speed:399.000000 +I (221114) example: expect speed: 0.000000 real_pulses:0 +I (221114) example: new speed:399.000000 +I (221124) example: expect speed: 0.000000 real_pulses:0 +I (221124) example: new speed:399.000000 +I (221134) example: expect speed: 0.000000 real_pulses:0 +I (221134) example: new speed:399.000000 +I (221144) example: expect speed: 0.000000 real_pulses:0 +I (221144) example: new speed:399.000000 +I (221154) example: expect speed: 0.000000 real_pulses:0 +I (221154) example: new speed:399.000000 +I (221164) example: expect speed: 0.000000 real_pulses:0 +I (221164) example: new speed:399.000000 +I (221174) example: expect speed: 0.000000 real_pulses:0 +I (221174) example: new speed:399.000000 +I (221184) example: expect speed: 0.000000 real_pulses:0 +I (221184) example: new speed:399.000000 +I (221194) example: expect speed: 0.000000 real_pulses:0 +I (221194) example: new speed:399.000000 +I (221204) example: expect speed: 0.000000 real_pulses:0 +I (221204) example: new speed:399.000000 +I (221214) example: expect speed: 0.000000 real_pulses:0 +I (221214) example: new speed:399.000000 +I (221224) example: expect speed: 0.000000 real_pulses:0 +I (221224) example: new speed:399.000000 +I (221234) example: expect speed: 0.000000 real_pulses:0 +I (221244) example: new speed:399.000000 +I (221244) example: expect speed: 0.000000 real_pulses:0 +I (221244) example: new speed:399.000000 +I (221254) example: expect speed: 0.000000 real_pulses:0 +I (221254) example: new speed:399.000000 +I (221264) example: expect speed: 0.000000 real_pulses:0 +I (221264) example: new speed:399.000000 +I (221274) example: expect speed: 0.000000 real_pulses:0 +I (221274) example: new speed:399.000000 +I (221284) example: expect speed: 0.000000 real_pulses:0 +I (221284) example: new speed:399.000000 +I (221294) example: expect speed: 0.000000 real_pulses:0 +I (221294) example: new speed:399.000000 +I (221304) example: expect speed: 0.000000 real_pulses:0 +I (221304) example: new speed:399.000000 +I (221314) example: expect speed: 0.000000 real_pulses:0 +I (221314) example: new speed:399.000000 +I (221324) example: expect speed: 0.000000 real_pulses:0 +I (221324) example: new speed:399.000000 +I (221334) example: expect speed: 0.000000 real_pulses:0 +I (221334) example: new speed:399.000000 +I (221344) example: expect speed: 0.000000 real_pulses:0 +I (221344) example: new speed:399.000000 +I (221354) example: expect speed: 0.000000 real_pulses:0 +I (221354) example: new speed:399.000000 +I (221364) example: expect speed: 0.000000 real_pulses:0 +I (221364) example: new speed:399.000000 +I (221374) example: expect speed: 0.000000 real_pulses:0 +I (221374) example: new speed:399.000000 +I (221384) example: expect speed: 0.000000 real_pulses:0 +I (221384) example: new speed:399.000000 +I (221394) example: expect speed: 0.000000 real_pulses:0 +I (221394) example: new speed:399.000000 +I (221404) example: expect speed: 0.000000 real_pulses:0 +I (221404) example: new speed:399.000000 +I (221414) example: expect speed: 0.000000 real_pulses:0 +I (221414) example: new speed:399.000000 +I (221424) example: expect speed: 0.000000 real_pulses:0 +I (221424) example: new speed:399.000000 +I (221434) example: expect speed: 0.000000 real_pulses:0 +I (221434) example: new speed:399.000000 +I (221444) example: expect speed: 0.000000 real_pulses:0 +I (221444) example: new speed:399.000000 +I (221454) example: expect speed: 0.000000 real_pulses:0 +I (221454) example: new speed:399.000000 +I (221464) example: expect speed: 0.000000 real_pulses:0 +I (221464) example: new speed:399.000000 +I (221474) example: expect speed: 0.000000 real_pulses:0 +I (221474) example: new speed:399.000000 +I (221484) example: expect speed: 0.000000 real_pulses:0 +I (221484) example: new speed:399.000000 +I (221494) example: expect speed: 0.000000 real_pulses:0 +I (221494) example: new speed:399.000000 +I (221504) example: expect speed: 0.000000 real_pulses:0 +I (221504) example: new speed:399.000000 +I (221514) example: expect speed: 0.000000 real_pulses:0 +I (221514) example: new speed:399.000000 +I (221524) example: expect speed: 0.000000 real_pulses:0 +I (221524) example: new speed:399.000000 +I (221534) example: expect speed: 0.000000 real_pulses:0 +I (221534) example: new speed:399.000000 +I (221544) example: expect speed: 0.000000 real_pulses:0 +I (221544) example: new speed:399.000000 +I (221554) example: expect speed: 0.000000 real_pulses:0 +I (221554) example: new speed:399.000000 +I (221564) example: expect speed: 0.000000 real_pulses:0 +I (221564) example: new speed:399.000000 +I (221574) example: expect speed: 0.000000 real_pulses:0 +I (221574) example: new speed:399.000000 +I (221584) example: expect speed: 0.000000 real_pulses:0 +I (221584) example: new speed:399.000000 +I (221594) example: expect speed: 0.000000 real_pulses:0 +I (221594) example: new speed:399.000000 +I (221604) example: expect speed: 0.000000 real_pulses:0 +I (221604) example: new speed:399.000000 +I (221614) example: expect speed: 0.000000 real_pulses:0 +I (221614) example: new speed:399.000000 +I (221624) example: expect speed: 0.000000 real_pulses:0 +I (221624) example: new speed:399.000000 +I (221634) example: expect speed: 0.000000 real_pulses:0 +I (221634) example: new speed:399.000000 +I (221644) example: expect speed: 0.000000 real_pulses:0 +I (221644) example: new speed:399.000000 +I (221654) example: expect speed: 0.000000 real_pulses:0 +I (221654) example: new speed:399.000000 +I (221664) example: expect speed: 0.000000 real_pulses:0 +I (221664) example: new speed:399.000000 +I (221674) example: expect speed: 0.000000 real_pulses:0 +I (221674) example: new speed:399.000000 +I (221684) example: expect speed: 0.000000 real_pulses:0 +I (221684) example: new speed:399.000000 +I (221694) example: expect speed: 0.000000 real_pulses:0 +I (221694) example: new speed:399.000000 +I (221704) example: expect speed: 0.000000 real_pulses:0 +I (221704) example: new speed:399.000000 +I (221714) example: expect speed: 0.000000 real_pulses:0 +I (221714) example: new speed:399.000000 +I (221724) example: expect speed: 0.000000 real_pulses:0 +I (221724) example: new speed:399.000000 +I (221734) example: expect speed: 0.000000 real_pulses:0 +I (221734) example: new speed:399.000000 +I (221744) example: expect speed: 0.000000 real_pulses:0 +I (221744) example: new speed:399.000000 +I (221754) example: expect speed: 0.000000 real_pulses:0 +I (221754) example: new speed:399.000000 +I (221764) example: expect speed: 0.000000 real_pulses:0 +I (221764) example: new speed:399.000000 +I (221774) example: expect speed: 0.000000 real_pulses:0 +I (221774) example: new speed:399.000000 +I (221784) example: expect speed: 0.000000 real_pulses:0 +I (221784) example: new speed:399.000000 +I (221794) example: expect speed: 0.000000 real_pulses:0 +I (221794) example: new speed:399.000000 +I (221804) example: expect speed: 0.000000 real_pulses:0 +I (221804) example: new speed:399.000000 +I (221814) example: expect speed: 0.000000 real_pulses:0 +I (221814) example: new speed:399.000000 +I (221824) example: expect speed: 0.000000 real_pulses:0 +I (221824) example: new speed:399.000000 +I (221834) example: expect speed: 0.000000 real_pulses:0 +I (221834) example: new speed:399.000000 +I (221844) example: expect speed: 0.000000 real_pulses:0 +I (221844) example: new speed:399.000000 +I (221854) example: expect speed: 0.000000 real_pulses:0 +I (221854) example: new speed:399.000000 +I (221864) example: expect speed: 0.000000 real_pulses:0 +I (221864) example: new speed:399.000000 +I (221874) example: expect speed: 0.000000 real_pulses:0 +I (221874) example: new speed:399.000000 +I (221884) example: expect speed: 0.000000 real_pulses:0 +I (221884) example: new speed:399.000000 +I (221894) example: expect speed: 0.000000 real_pulses:0 +I (221894) example: new speed:399.000000 +I (221904) example: expect speed: 0.000000 real_pulses:0 +I (221904) example: new speed:399.000000 +I (221914) example: expect speed: 0.000000 real_pulses:0 +I (221914) example: new speed:399.000000 +I (221924) example: expect speed: 0.000000 real_pulses:0 +I (221924) example: new speed:399.000000 +I (221934) example: expect speed: 0.000000 real_pulses:0 +I (221934) example: new speed:399.000000 +I (221944) example: expect speed: 0.000000 real_pulses:0 +I (221954) example: new speed:399.000000 +I (221954) modbus tcp: ModBusSlave_recv() +I (221954) modbus: ModbusSlaveProcess() +I (221954) modbus: check id... +I (221954) modbus: ok +I (221954) modbus: add: 0, length: 10 +I (221954) modbus: Read Holding Registers +I (221954) example: expect speed: 0.000000 real_pulses:0 +I (221964) example: new speed:399.000000 +I (221964) example: expect speed: 0.000000 real_pulses:0 +I (221964) example: new speed:399.000000 +I (221974) example: expect speed: 0.000000 real_pulses:0 +I (221974) example: new speed:399.000000 +I (221984) example: expect speed: 0.000000 real_pulses:0 +I (221984) example: new speed:399.000000 +I (221994) example: expect speed: 0.000000 real_pulses:0 +I (221994) example: new speed:399.000000 +I (222004) example: expect speed: 0.000000 real_pulses:0 +I (222004) example: new speed:399.000000 +I (222014) example: expect speed: 0.000000 real_pulses:0 +I (222024) example: new speed:399.000000 +I (222024) example: expect speed: 0.000000 real_pulses:0 +I (222024) example: new speed:399.000000 +I (222034) example: expect speed: 0.000000 real_pulses:0 +I (222034) example: new speed:399.000000 +I (222044) example: expect speed: 0.000000 real_pulses:0 +I (222044) example: new speed:399.000000 +I (222054) example: expect speed: 0.000000 real_pulses:0 +I (222054) example: new speed:399.000000 +I (222064) example: expect speed: 0.000000 real_pulses:0 +I (222064) example: new speed:399.000000 +I (222074) example: expect speed: 0.000000 real_pulses:0 +I (222074) example: new speed:399.000000 +I (222084) example: expect speed: 0.000000 real_pulses:0 +I (222084) example: new speed:399.000000 +I (222094) example: expect speed: 0.000000 real_pulses:0 +I (222094) example: new speed:399.000000 +I (222104) example: expect speed: 0.000000 real_pulses:0 +I (222104) example: new speed:399.000000 +I (222114) example: expect speed: 0.000000 real_pulses:0 +I (222114) example: new speed:399.000000 +I (222124) example: expect speed: 0.000000 real_pulses:0 +I (222124) example: new speed:399.000000 +I (222134) example: expect speed: 0.000000 real_pulses:0 +I (222134) example: new speed:399.000000 +I (222144) example: expect speed: 0.000000 real_pulses:0 +I (222144) example: new speed:399.000000 +I (222154) example: expect speed: 0.000000 real_pulses:0 +I (222154) example: new speed:399.000000 +I (222164) example: expect speed: 0.000000 real_pulses:0 +I (222164) example: new speed:399.000000 +I (222174) example: expect speed: 0.000000 real_pulses:0 +I (222174) example: new speed:399.000000 +I (222184) example: expect speed: 0.000000 real_pulses:0 +I (222184) example: new speed:399.000000 +I (222194) example: expect speed: 0.000000 real_pulses:0 +I (222194) example: new speed:399.000000 +I (222204) example: expect speed: 0.000000 real_pulses:0 +I (222204) example: new speed:399.000000 +I (222214) example: expect speed: 0.000000 real_pulses:0 +I (222214) example: new speed:399.000000 +I (222224) example: expect speed: 0.000000 real_pulses:0 +I (222224) example: new speed:399.000000 +I (222234) example: expect speed: 0.000000 real_pulses:0 +I (222234) example: new speed:399.000000 +I (222244) example: expect speed: 0.000000 real_pulses:0 +I (222244) example: new speed:399.000000 +I (222254) example: expect speed: 0.000000 real_pulses:0 +I (222254) example: new speed:399.000000 +I (222264) example: expect speed: 0.000000 real_pulses:0 +I (222264) example: new speed:399.000000 +I (222274) example: expect speed: 0.000000 real_pulses:0 +I (222274) example: new speed:399.000000 +I (222284) example: expect speed: 0.000000 real_pulses:0 +I (222284) example: new speed:399.000000 +I (222294) example: expect speed: 0.000000 real_pulses:0 +I (222294) example: new speed:399.000000 +I (222304) example: expect speed: 0.000000 real_pulses:0 +I (222304) example: new speed:399.000000 +I (222314) example: expect speed: 0.000000 real_pulses:0 +I (222314) example: new speed:399.000000 +I (222324) example: expect speed: 0.000000 real_pulses:0 +I (222324) example: new speed:399.000000 +I (222334) example: expect speed: 0.000000 real_pulses:0 +I (222334) example: new speed:399.000000 +I (222344) example: expect speed: 0.000000 real_pulses:0 +I (222344) example: new speed:399.000000 +I (222354) example: expect speed: 0.000000 real_pulses:0 +I (222354) example: new speed:399.000000 +I (222364) example: expect speed: 0.000000 real_pulses:0 +I (222364) example: new speed:399.000000 +I (222374) example: expect speed: 0.000000 real_pulses:0 +I (222374) example: new speed:399.000000 +I (222384) example: expect speed: 0.000000 real_pulses:0 +I (222384) example: new speed:399.000000 +I (222394) example: expect speed: 0.000000 real_pulses:0 +I (222394) example: new speed:399.000000 +I (222404) example: expect speed: 0.000000 real_pulses:0 +I (222404) example: new speed:399.000000 +I (222414) example: expect speed: 0.000000 real_pulses:0 +I (222414) example: new speed:399.000000 +I (222424) example: expect speed: 0.000000 real_pulses:0 +I (222424) example: new speed:399.000000 +I (222434) example: expect speed: 0.000000 real_pulses:0 +I (222434) example: new speed:399.000000 +I (222444) example: expect speed: 0.000000 real_pulses:0 +I (222444) example: new speed:399.000000 +I (222454) example: expect speed: 0.000000 real_pulses:0 +I (222454) example: new speed:399.000000 +I (222464) example: expect speed: 0.000000 real_pulses:0 +I (222464) example: new speed:399.000000 +I (222474) example: expect speed: 0.000000 real_pulses:0 +I (222474) example: new speed:399.000000 +I (222484) example: expect speed: 0.000000 real_pulses:0 +I (222484) example: new speed:399.000000 +I (222494) example: expect speed: 0.000000 real_pulses:0 +I (222494) example: new speed:399.000000 +I (222504) example: expect speed: 0.000000 real_pulses:0 +I (222504) example: new speed:399.000000 +I (222514) example: expect speed: 0.000000 real_pulses:0 +I (222514) example: new speed:399.000000 +I (222524) example: expect speed: 0.000000 real_pulses:0 +I (222524) example: new speed:399.000000 +I (222534) example: expect speed: 0.000000 real_pulses:0 +I (222534) example: new speed:399.000000 +I (222544) example: expect speed: 0.000000 real_pulses:0 +I (222544) example: new speed:399.000000 +I (222554) example: expect speed: 0.000000 real_pulses:0 +I (222554) example: new speed:399.000000 +I (222564) example: expect speed: 0.000000 real_pulses:0 +I (222564) example: new speed:399.000000 +I (222574) example: expect speed: 0.000000 real_pulses:0 +I (222574) example: new speed:399.000000 +I (222584) example: expect speed: 0.000000 real_pulses:0 +I (222584) example: new speed:399.000000 +I (222594) example: expect speed: 0.000000 real_pulses:0 +I (222594) example: new speed:399.000000 +I (222604) example: expect speed: 0.000000 real_pulses:0 +I (222604) example: new speed:399.000000 +I (222614) example: expect speed: 0.000000 real_pulses:0 +I (222614) example: new speed:399.000000 +I (222624) example: expect speed: 0.000000 real_pulses:0 +I (222624) example: new speed:399.000000 +I (222634) example: expect speed: 0.000000 real_pulses:0 +I (222634) example: new speed:399.000000 +I (222644) example: expect speed: 0.000000 real_pulses:0 +I (222644) example: new speed:399.000000 +I (222654) example: expect speed: 0.000000 real_pulses:0 +I (222654) example: new speed:399.000000 +I (222664) example: expect speed: 0.000000 real_pulses:0 +I (222664) example: new speed:399.000000 +I (222674) example: expect speed: 0.000000 real_pulses:0 +I (222674) example: new speed:399.000000 +I (222684) example: expect speed: 0.000000 real_pulses:0 +I (222684) example: new speed:399.000000 +I (222694) example: expect speed: 0.000000 real_pulses:0 +I (222694) example: new speed:399.000000 +I (222704) example: expect speed: 0.000000 real_pulses:0 +I (222704) example: new speed:399.000000 +I (222714) example: expect speed: 0.000000 real_pulses:0 +I (222714) example: new speed:399.000000 +I (222724) example: expect speed: 0.000000 real_pulses:0 +I (222724) example: new speed:399.000000 +I (222734) example: expect speed: 0.000000 real_pulses:0 +I (222734) example: new speed:399.000000 +I (222744) example: expect speed: 0.000000 real_pulses:0 +I (222744) example: new speed:399.000000 +I (222754) example: expect speed: 0.000000 real_pulses:0 +I (222754) example: new speed:399.000000 +I (222764) example: expect speed: 0.000000 real_pulses:0 +I (222764) example: new speed:399.000000 +I (222774) example: expect speed: 0.000000 real_pulses:0 +I (222774) example: new speed:399.000000 +I (222784) example: expect speed: 0.000000 real_pulses:0 +I (222784) example: new speed:399.000000 +I (222794) example: expect speed: 0.000000 real_pulses:0 +I (222794) example: new speed:399.000000 +I (222804) example: expect speed: 0.000000 real_pulses:0 +I (222804) example: new speed:399.000000 +I (222814) example: expect speed: 0.000000 real_pulses:0 +I (222814) example: new speed:399.000000 +I (222824) example: expect speed: 0.000000 real_pulses:0 +I (222824) example: new speed:399.000000 +I (222834) example: expect speed: 0.000000 real_pulses:0 +I (222834) example: new speed:399.000000 +I (222844) example: expect speed: 0.000000 real_pulses:0 +I (222844) example: new speed:399.000000 +I (222854) example: expect speed: 0.000000 real_pulses:0 +I (222854) example: new speed:399.000000 +I (222864) example: expect speed: 0.000000 real_pulses:0 +I (222864) example: new speed:399.000000 +I (222874) example: expect speed: 0.000000 real_pulses:0 +I (222874) example: new speed:399.000000 +I (222884) example: expect speed: 0.000000 real_pulses:0 +I (222884) example: new speed:399.000000 +I (222894) example: expect speed: 0.000000 real_pulses:0 +I (222894) example: new speed:399.000000 +I (222904) example: expect speed: 0.000000 real_pulses:0 +I (222904) example: new speed:399.000000 +I (222914) example: expect speed: 0.000000 real_pulses:0 +I (222914) example: new speed:399.000000 +I (222924) example: expect speed: 0.000000 real_pulses:0 +I (222924) example: new speed:399.000000 +I (222934) example: expect speed: 0.000000 real_pulses:0 +I (222934) example: new speed:399.000000 +I (222944) example: expect speed: 0.000000 real_pulses:0 +I (222944) example: new speed:399.000000 +I (222954) example: expect speed: 0.000000 real_pulses:0 +I (222954) example: new speed:399.000000 +I (222964) example: expect speed: 0.000000 real_pulses:0 +I (222964) example: new speed:399.000000 +I (222974) modbus tcp: ModBusSlave_recv() +I (222974) modbus: ModbusSlaveProcess() +I (222974) modbus: check id... +I (222974) example: expect speed: 0.000000 real_pulses:0 +I (222974) modbus: ok +I (222974) example: new speed:399.000000 +I (222974) modbus: add: 0, length: 10 +I (222984) modbus: Read Holding Registers +I (222984) example: expect speed: 0.000000 real_pulses:0 +I (222994) example: new speed:399.000000 +I (222994) example: expect speed: 0.000000 real_pulses:0 +I (222994) example: new speed:399.000000 +I (223004) example: expect speed: 0.000000 real_pulses:0 +I (223004) example: new speed:399.000000 +I (223014) example: expect speed: 0.000000 real_pulses:0 +I (223014) example: new speed:399.000000 +I (223024) example: expect speed: 0.000000 real_pulses:0 +I (223024) example: new speed:399.000000 +I (223034) example: expect speed: 0.000000 real_pulses:0 +I (223044) example: new speed:399.000000 +I (223044) example: expect speed: 0.000000 real_pulses:0 +I (223044) example: new speed:399.000000 +I (223054) example: expect speed: 0.000000 real_pulses:0 +I (223054) example: new speed:399.000000 +I (223064) example: expect speed: 0.000000 real_pulses:0 +I (223064) example: new speed:399.000000 +I (223074) example: expect speed: 0.000000 real_pulses:0 +I (223084) example: new speed:399.000000 +I (223084) example: expect speed: 0.000000 real_pulses:0 +I (223084) example: new speed:399.000000 +I (223094) example: expect speed: 0.000000 real_pulses:0 +I (223094) example: new speed:399.000000 +I (223104) example: expect speed: 0.000000 real_pulses:0 +I (223104) example: new speed:399.000000 +I (223114) example: expect speed: 0.000000 real_pulses:0 +I (223114) example: new speed:399.000000 +I (223124) example: expect speed: 0.000000 real_pulses:0 +I (223124) example: new speed:399.000000 +I (223134) example: expect speed: 0.000000 real_pulses:0 +I (223144) example: new speed:399.000000 +I (223144) example: expect speed: 0.000000 real_pulses:0 +I (223144) example: new speed:399.000000 +I (223154) example: expect speed: 0.000000 real_pulses:0 +I (223154) example: new speed:399.000000 +I (223164) example: expect speed: 0.000000 real_pulses:0 +I (223164) example: new speed:399.000000 +I (223174) example: expect speed: 0.000000 real_pulses:0 +I (223174) example: new speed:399.000000 +I (223184) example: expect speed: 0.000000 real_pulses:0 +I (223184) example: new speed:399.000000 +I (223194) example: expect speed: 0.000000 real_pulses:0 +I (223194) example: new speed:399.000000 +I (223204) example: expect speed: 0.000000 real_pulses:0 +I (223204) example: new speed:399.000000 +I (223214) example: expect speed: 0.000000 real_pulses:0 +I (223214) example: new speed:399.000000 +I (223224) example: expect speed: 0.000000 real_pulses:0 +I (223224) example: new speed:399.000000 +I (223234) example: expect speed: 0.000000 real_pulses:0 +I (223234) example: new speed:399.000000 +I (223244) example: expect speed: 0.000000 real_pulses:0 +I (223244) example: new speed:399.000000 +I (223254) example: expect speed: 0.000000 real_pulses:0 +I (223254) example: new speed:399.000000 +I (223264) example: expect speed: 0.000000 real_pulses:0 +I (223264) example: new speed:399.000000 +I (223274) example: expect speed: 0.000000 real_pulses:0 +I (223274) example: new speed:399.000000 +I (223284) example: expect speed: 0.000000 real_pulses:0 +I (223284) example: new speed:399.000000 +I (223294) example: expect speed: 0.000000 real_pulses:0 +I (223294) example: new speed:399.000000 +I (223304) example: expect speed: 0.000000 real_pulses:0 +I (223304) example: new speed:399.000000 +I (223314) example: expect speed: 0.000000 real_pulses:0 +I (223314) example: new speed:399.000000 +I (223324) example: expect speed: 0.000000 real_pulses:0 +I (223324) example: new speed:399.000000 +I (223334) example: expect speed: 0.000000 real_pulses:0 +I (223334) example: new speed:399.000000 +I (223344) example: expect speed: 0.000000 real_pulses:0 +I (223344) example: new speed:399.000000 +I (223354) example: expect speed: 0.000000 real_pulses:0 +I (223354) example: new speed:399.000000 +I (223364) example: expect speed: 0.000000 real_pulses:0 +I (223364) example: new speed:399.000000 +I (223374) example: expect speed: 0.000000 real_pulses:0 +I (223374) example: new speed:399.000000 +I (223384) example: expect speed: 0.000000 real_pulses:0 +I (223384) example: new speed:399.000000 +I (223394) example: expect speed: 0.000000 real_pulses:0 +I (223394) example: new speed:399.000000 +I (223404) example: expect speed: 0.000000 real_pulses:0 +I (223404) example: new speed:399.000000 +I (223414) example: expect speed: 0.000000 real_pulses:0 +I (223414) example: new speed:399.000000 +I (223424) example: expect speed: 0.000000 real_pulses:0 +I (223424) example: new speed:399.000000 +I (223434) example: expect speed: 0.000000 real_pulses:0 +I (223434) example: new speed:399.000000 +I (223444) example: expect speed: 0.000000 real_pulses:0 +I (223444) example: new speed:399.000000 +I (223454) example: expect speed: 0.000000 real_pulses:0 +I (223454) example: new speed:399.000000 +I (223464) example: expect speed: 0.000000 real_pulses:0 +I (223464) example: new speed:399.000000 +I (223474) example: expect speed: 0.000000 real_pulses:0 +I (223474) example: new speed:399.000000 +I (223484) example: expect speed: 0.000000 real_pulses:0 +I (223484) example: new speed:399.000000 +I (223494) example: expect speed: 0.000000 real_pulses:0 +I (223494) example: new speed:399.000000 +I (223504) example: expect speed: 0.000000 real_pulses:0 +I (223504) example: new speed:399.000000 +I (223514) example: expect speed: 0.000000 real_pulses:0 +I (223514) example: new speed:399.000000 +I (223524) example: expect speed: 0.000000 real_pulses:0 +I (223524) example: new speed:399.000000 +I (223534) example: expect speed: 0.000000 real_pulses:0 +I (223534) example: new speed:399.000000 +I (223544) example: expect speed: 0.000000 real_pulses:0 +I (223544) example: new speed:399.000000 +I (223554) example: expect speed: 0.000000 real_pulses:0 +I (223554) example: new speed:399.000000 +I (223564) example: expect speed: 0.000000 real_pulses:0 +I (223564) example: new speed:399.000000 +I (223574) example: expect speed: 0.000000 real_pulses:0 +I (223574) example: new speed:399.000000 +I (223584) example: expect speed: 0.000000 real_pulses:0 +I (223584) example: new speed:399.000000 +I (223594) example: expect speed: 0.000000 real_pulses:0 +I (223594) example: new speed:399.000000 +I (223604) example: expect speed: 0.000000 real_pulses:0 +I (223604) example: new speed:399.000000 +I (223614) example: expect speed: 0.000000 real_pulses:0 +I (223614) example: new speed:399.000000 +I (223624) example: expect speed: 0.000000 real_pulses:0 +I (223624) example: new speed:399.000000 +I (223634) example: expect speed: 0.000000 real_pulses:0 +I (223634) example: new speed:399.000000 +I (223644) example: expect speed: 0.000000 real_pulses:0 +I (223644) example: new speed:399.000000 +I (223654) example: expect speed: 0.000000 real_pulses:0 +I (223654) example: new speed:399.000000 +I (223664) example: expect speed: 0.000000 real_pulses:0 +I (223664) example: new speed:399.000000 +I (223674) example: expect speed: 0.000000 real_pulses:0 +I (223674) example: new speed:399.000000 +I (223684) example: expect speed: 0.000000 real_pulses:0 +I (223684) example: new speed:399.000000 +I (223694) example: expect speed: 0.000000 real_pulses:0 +I (223694) example: new speed:399.000000 +I (223704) example: expect speed: 0.000000 real_pulses:0 +I (223704) example: new speed:399.000000 +I (223714) example: expect speed: 0.000000 real_pulses:0 +I (223714) example: new speed:399.000000 +I (223724) example: expect speed: 0.000000 real_pulses:0 +I (223724) example: new speed:399.000000 +I (223734) example: expect speed: 0.000000 real_pulses:0 +I (223734) example: new speed:399.000000 +I (223744) example: expect speed: 0.000000 real_pulses:0 +I (223744) example: new speed:399.000000 +I (223754) example: expect speed: 0.000000 real_pulses:0 +I (223754) example: new speed:399.000000 +I (223764) example: expect speed: 0.000000 real_pulses:0 +I (223764) example: new speed:399.000000 +I (223774) example: expect speed: 0.000000 real_pulses:0 +I (223774) example: new speed:399.000000 +I (223784) example: expect speed: 0.000000 real_pulses:0 +I (223784) example: new speed:399.000000 +I (223794) example: expect speed: 0.000000 real_pulses:0 +I (223794) example: new speed:399.000000 +I (223804) example: expect speed: 0.000000 real_pulses:0 +I (223804) example: new speed:399.000000 +I (223814) example: expect speed: 0.000000 real_pulses:0 +I (223814) example: new speed:399.000000 +I (223824) example: expect speed: 0.000000 real_pulses:0 +I (223824) example: new speed:399.000000 +I (223834) example: expect speed: 0.000000 real_pulses:0 +I (223834) example: new speed:399.000000 +I (223844) example: expect speed: 0.000000 real_pulses:0 +I (223844) example: new speed:399.000000 +I (223854) example: expect speed: 0.000000 real_pulses:0 +I (223854) example: new speed:399.000000 +I (223864) example: expect speed: 0.000000 real_pulses:0 +I (223864) example: new speed:399.000000 +I (223874) example: expect speed: 0.000000 real_pulses:0 +I (223874) example: new speed:399.000000 +I (223884) example: expect speed: 0.000000 real_pulses:0 +I (223884) example: new speed:399.000000 +I (223894) example: expect speed: 0.000000 real_pulses:0 +I (223894) modbus tcp: ModBusSlave_recv() +I (223904) example: new speed:399.000000 +I (223904) modbus: ModbusSlaveProcess() +I (223904) modbus: check id... +I (223904) modbus: ok +I (223904) modbus: add: 0, length: 10 +I (223904) modbus: Read Holding Registers +I (223904) example: expect speed: 0.000000 real_pulses:0 +I (223914) example: new speed:399.000000 +I (223914) example: expect speed: 0.000000 real_pulses:0 +I (223914) example: new speed:399.000000 +I (223924) example: expect speed: 0.000000 real_pulses:0 +I (223924) example: new speed:399.000000 +I (223934) example: expect speed: 0.000000 real_pulses:0 +I (223934) example: new speed:399.000000 +I (223944) example: expect speed: 0.000000 real_pulses:0 +I (223954) example: new speed:399.000000 +I (223954) example: expect speed: 0.000000 real_pulses:0 +I (223954) example: new speed:399.000000 +I (223964) example: expect speed: 0.000000 real_pulses:0 +I (223964) example: new speed:399.000000 +I (223974) example: expect speed: 0.000000 real_pulses:0 +I (223984) example: new speed:399.000000 +I (223984) example: expect speed: 0.000000 real_pulses:0 +I (223984) example: new speed:399.000000 +I (223994) example: expect speed: 0.000000 real_pulses:0 +I (223994) example: new speed:399.000000 +I (224004) example: expect speed: 0.000000 real_pulses:0 +I (224004) example: new speed:399.000000 +I (224014) example: expect speed: 0.000000 real_pulses:0 +I (224014) example: new speed:399.000000 +I (224024) example: expect speed: 0.000000 real_pulses:0 +I (224024) example: new speed:399.000000 +I (224034) example: expect speed: 0.000000 real_pulses:0 +I (224044) example: new speed:399.000000 +I (224044) example: expect speed: 0.000000 real_pulses:0 +I (224044) example: new speed:399.000000 +I (224054) example: expect speed: 0.000000 real_pulses:0 +I (224054) example: new speed:399.000000 +I (224064) example: expect speed: 0.000000 real_pulses:0 +I (224064) example: new speed:399.000000 +I (224074) example: expect speed: 0.000000 real_pulses:0 +I (224074) example: new speed:399.000000 +I (224084) example: expect speed: 0.000000 real_pulses:0 +I (224084) example: new speed:399.000000 +I (224094) example: expect speed: 0.000000 real_pulses:0 +I (224094) example: new speed:399.000000 +I (224104) example: expect speed: 0.000000 real_pulses:0 +I (224104) example: new speed:399.000000 +I (224114) example: expect speed: 0.000000 real_pulses:0 +I (224114) example: new speed:399.000000 +I (224124) example: expect speed: 0.000000 real_pulses:0 +I (224124) example: new speed:399.000000 +I (224134) example: expect speed: 0.000000 real_pulses:0 +I (224134) example: new speed:399.000000 +I (224144) example: expect speed: 0.000000 real_pulses:0 +I (224144) example: new speed:399.000000 +I (224154) example: expect speed: 0.000000 real_pulses:0 +I (224154) example: new speed:399.000000 +I (224164) example: expect speed: 0.000000 real_pulses:0 +I (224164) example: new speed:399.000000 +I (224174) example: expect speed: 0.000000 real_pulses:0 +I (224174) example: new speed:399.000000 +I (224184) example: expect speed: 0.000000 real_pulses:0 +I (224184) example: new speed:399.000000 +I (224194) example: expect speed: 0.000000 real_pulses:0 +I (224194) example: new speed:399.000000 +I (224204) example: expect speed: 0.000000 real_pulses:0 +I (224204) example: new speed:399.000000 +I (224214) example: expect speed: 0.000000 real_pulses:0 +I (224214) example: new speed:399.000000 +I (224224) example: expect speed: 0.000000 real_pulses:0 +I (224224) example: new speed:399.000000 +I (224234) example: expect speed: 0.000000 real_pulses:0 +I (224234) example: new speed:399.000000 +I (224244) example: expect speed: 0.000000 real_pulses:0 +I (224244) example: new speed:399.000000 +I (224254) example: expect speed: 0.000000 real_pulses:0 +I (224254) example: new speed:399.000000 +I (224264) example: expect speed: 0.000000 real_pulses:0 +I (224264) example: new speed:399.000000 +I (224274) example: expect speed: 0.000000 real_pulses:0 +I (224274) example: new speed:399.000000 +I (224284) example: expect speed: 0.000000 real_pulses:0 +I (224284) example: new speed:399.000000 +I (224294) example: expect speed: 0.000000 real_pulses:0 +I (224294) example: new speed:399.000000 +I (224304) example: expect speed: 0.000000 real_pulses:0 +I (224304) example: new speed:399.000000 +I (224314) example: expect speed: 0.000000 real_pulses:0 +I (224314) example: new speed:399.000000 +I (224324) example: expect speed: 0.000000 real_pulses:0 +I (224324) example: new speed:399.000000 +I (224334) example: expect speed: 0.000000 real_pulses:0 +I (224334) example: new speed:399.000000 +I (224344) example: expect speed: 0.000000 real_pulses:0 +I (224344) example: new speed:399.000000 +I (224354) example: expect speed: 0.000000 real_pulses:0 +I (224354) example: new speed:399.000000 +I (224364) example: expect speed: 0.000000 real_pulses:0 +I (224364) example: new speed:399.000000 +I (224374) example: expect speed: 0.000000 real_pulses:0 +I (224374) example: new speed:399.000000 +I (224384) example: expect speed: 0.000000 real_pulses:0 +I (224384) example: new speed:399.000000 +I (224394) example: expect speed: 0.000000 real_pulses:0 +I (224394) example: new speed:399.000000 +I (224404) example: expect speed: 0.000000 real_pulses:0 +I (224404) example: new speed:399.000000 +I (224414) example: expect speed: 0.000000 real_pulses:0 +I (224414) example: new speed:399.000000 +I (224424) example: expect speed: 0.000000 real_pulses:0 +I (224424) example: new speed:399.000000 +I (224434) example: expect speed: 0.000000 real_pulses:0 +I (224434) example: new speed:399.000000 +I (224444) example: expect speed: 0.000000 real_pulses:0 +I (224444) example: new speed:399.000000 +I (224454) example: expect speed: 0.000000 real_pulses:0 +I (224454) example: new speed:399.000000 +I (224464) example: expect speed: 0.000000 real_pulses:0 +I (224464) example: new speed:399.000000 +I (224474) example: expect speed: 0.000000 real_pulses:0 +I (224474) example: new speed:399.000000 +I (224484) example: expect speed: 0.000000 real_pulses:0 +I (224484) example: new speed:399.000000 +I (224494) example: expect speed: 0.000000 real_pulses:0 +I (224494) example: new speed:399.000000 +I (224504) example: expect speed: 0.000000 real_pulses:0 +I (224504) example: new speed:399.000000 +I (224514) example: expect speed: 0.000000 real_pulses:0 +I (224514) example: new speed:399.000000 +I (224524) example: expect speed: 0.000000 real_pulses:0 +I (224524) example: new speed:399.000000 +I (224534) example: expect speed: 0.000000 real_pulses:0 +I (224534) example: new speed:399.000000 +I (224544) example: expect speed: 0.000000 real_pulses:0 +I (224544) example: new speed:399.000000 +I (224554) example: expect speed: 0.000000 real_pulses:0 +I (224554) example: new speed:399.000000 +I (224564) example: expect speed: 0.000000 real_pulses:0 +I (224564) example: new speed:399.000000 +I (224574) example: expect speed: 0.000000 real_pulses:0 +I (224574) example: new speed:399.000000 +I (224584) example: expect speed: 0.000000 real_pulses:0 +I (224584) example: new speed:399.000000 +I (224594) example: expect speed: 0.000000 real_pulses:0 +I (224594) example: new speed:399.000000 +I (224604) example: expect speed: 0.000000 real_pulses:0 +I (224604) example: new speed:399.000000 +I (224614) example: expect speed: 0.000000 real_pulses:0 +I (224614) example: new speed:399.000000 +I (224624) example: expect speed: 0.000000 real_pulses:0 +I (224624) example: new speed:399.000000 +I (224634) example: expect speed: 0.000000 real_pulses:0 +I (224634) example: new speed:399.000000 +I (224644) example: expect speed: 0.000000 real_pulses:0 +I (224644) example: new speed:399.000000 +I (224654) example: expect speed: 0.000000 real_pulses:0 +I (224654) example: new speed:399.000000 +I (224664) example: expect speed: 0.000000 real_pulses:0 +I (224664) example: new speed:399.000000 +I (224674) example: expect speed: 0.000000 real_pulses:0 +I (224674) example: new speed:399.000000 +I (224684) example: expect speed: 0.000000 real_pulses:0 +I (224684) example: new speed:399.000000 +I (224694) example: expect speed: 0.000000 real_pulses:0 +I (224694) example: new speed:399.000000 +I (224704) example: expect speed: 0.000000 real_pulses:0 +I (224704) example: new speed:399.000000 +I (224714) example: expect speed: 0.000000 real_pulses:0 +I (224714) example: new speed:399.000000 +I (224724) example: expect speed: 0.000000 real_pulses:0 +I (224724) example: new speed:399.000000 +I (224734) example: expect speed: 0.000000 real_pulses:0 +I (224734) example: new speed:399.000000 +I (224744) example: expect speed: 0.000000 real_pulses:0 +I (224744) example: new speed:399.000000 +I (224754) example: expect speed: 0.000000 real_pulses:0 +I (224754) example: new speed:399.000000 +I (224764) example: expect speed: 0.000000 real_pulses:0 +I (224764) example: new speed:399.000000 +I (224774) example: expect speed: 0.000000 real_pulses:0 +I (224774) example: new speed:399.000000 +I (224784) example: expect speed: 0.000000 real_pulses:0 +I (224784) example: new speed:399.000000 +I (224794) example: expect speed: 0.000000 real_pulses:0 +I (224794) example: new speed:399.000000 +I (224804) example: expect speed: 0.000000 real_pulses:0 +I (224804) example: new speed:399.000000 +I (224814) example: expect speed: 0.000000 real_pulses:0 +I (224814) example: new speed:399.000000 +I (224824) example: expect speed: 0.000000 real_pulses:0 +I (224824) example: new speed:399.000000 +I (224834) example: expect speed: 0.000000 real_pulses:0 +I (224834) example: new speed:399.000000 +I (224844) example: expect speed: 0.000000 real_pulses:0 +I (224844) example: new speed:399.000000 +I (224854) example: expect speed: 0.000000 real_pulses:0 +I (224854) example: new speed:399.000000 +I (224864) example: expect speed: 0.000000 real_pulses:0 +I (224864) example: new speed:399.000000 +I (224874) example: expect speed: 0.000000 real_pulses:0 +I (224874) example: new speed:399.000000 +I (224884) example: expect speed: 0.000000 real_pulses:0 +I (224884) example: new speed:399.000000 +I (224894) example: expect speed: 0.000000 real_pulses:0 +I (224894) example: new speed:399.000000 +I (224904) example: expect speed: 0.000000 real_pulses:0 +I (224904) example: new speed:399.000000 +I (224914) example: expect speed: 0.000000 real_pulses:0 +I (224924) example: new speed:399.000000 +I (224924) example: expect speed: 0.000000 real_pulses:0 +I (224934) example: new speed:399.000000 +I (224934) example: expect speed: 0.000000 real_pulses:0 +I (224944) example: new speed:399.000000 +I (224944) modbus tcp: ModBusSlave_recv() +I (224944) modbus: ModbusSlaveProcess() +I (224944) modbus: check id... +I (224944) modbus: ok +I (224944) modbus: add: 0, length: 10 +I (224944) modbus: Read Holding Registers +I (224944) example: expect speed: 0.000000 real_pulses:0 +I (224954) example: new speed:399.000000 +I (224954) example: expect speed: 0.000000 real_pulses:0 +I (224954) example: new speed:399.000000 +I (224964) example: expect speed: 0.000000 real_pulses:0 +I (224974) example: new speed:399.000000 +I (224974) example: expect speed: 0.000000 real_pulses:0 +I (224974) example: new speed:399.000000 +I (224984) example: expect speed: 0.000000 real_pulses:0 +I (224984) example: new speed:399.000000 +I (224994) example: expect speed: 0.000000 real_pulses:0 +I (224994) example: new speed:399.000000 +I (225004) example: expect speed: 0.000000 real_pulses:0 +I (225004) example: new speed:399.000000 +I (225014) example: expect speed: 0.000000 real_pulses:0 +I (225014) example: new speed:399.000000 +I (225024) example: expect speed: 0.000000 real_pulses:0 +I (225024) example: new speed:399.000000 +I (225034) example: expect speed: 0.000000 real_pulses:0 +I (225044) example: new speed:399.000000 +I (225044) example: expect speed: 0.000000 real_pulses:0 +I (225044) example: new speed:399.000000 +I (225054) example: expect speed: 0.000000 real_pulses:0 +I (225054) example: new speed:399.000000 +I (225064) example: expect speed: 0.000000 real_pulses:0 +I (225064) example: new speed:399.000000 +I (225074) example: expect speed: 0.000000 real_pulses:0 +I (225074) example: new speed:399.000000 +I (225084) example: expect speed: 0.000000 real_pulses:0 +I (225084) example: new speed:399.000000 +I (225094) example: expect speed: 0.000000 real_pulses:0 +I (225094) example: new speed:399.000000 +I (225104) example: expect speed: 0.000000 real_pulses:0 +I (225104) example: new speed:399.000000 +I (225114) example: expect speed: 0.000000 real_pulses:0 +I (225114) example: new speed:399.000000 +I (225124) example: expect speed: 0.000000 real_pulses:0 +I (225124) example: new speed:399.000000 +I (225134) example: expect speed: 0.000000 real_pulses:0 +I (225134) example: new speed:399.000000 +I (225144) example: expect speed: 0.000000 real_pulses:0 +I (225144) example: new speed:399.000000 +I (225154) example: expect speed: 0.000000 real_pulses:0 +I (225154) example: new speed:399.000000 +I (225164) example: expect speed: 0.000000 real_pulses:0 +I (225164) example: new speed:399.000000 +I (225174) example: expect speed: 0.000000 real_pulses:0 +I (225174) example: new speed:399.000000 +I (225184) example: expect speed: 0.000000 real_pulses:0 +I (225184) example: new speed:399.000000 +I (225194) example: expect speed: 0.000000 real_pulses:0 +I (225194) example: new speed:399.000000 +I (225204) example: expect speed: 0.000000 real_pulses:0 +I (225204) example: new speed:399.000000 +I (225214) example: expect speed: 0.000000 real_pulses:0 +I (225214) example: new speed:399.000000 +I (225224) example: expect speed: 0.000000 real_pulses:0 +I (225234) example: new speed:399.000000 +I (225234) example: expect speed: 0.000000 real_pulses:0 +I (225244) example: new speed:399.000000 +I (225244) example: expect speed: 0.000000 real_pulses:0 +I (225254) example: new speed:399.000000 +I (225254) example: expect speed: 0.000000 real_pulses:0 +I (225264) example: new speed:399.000000 +I (225264) example: expect speed: 0.000000 real_pulses:0 +I (225264) example: new speed:399.000000 +I (225274) example: expect speed: 0.000000 real_pulses:0 +I (225274) example: new speed:399.000000 +I (225284) example: expect speed: 0.000000 real_pulses:0 +I (225284) example: new speed:399.000000 +I (225294) example: expect speed: 0.000000 real_pulses:0 +I (225294) example: new speed:399.000000 +I (225304) example: expect speed: 0.000000 real_pulses:0 +I (225314) example: new speed:399.000000 +I (225314) example: expect speed: 0.000000 real_pulses:0 +I (225314) example: new speed:399.000000 +I (225324) example: expect speed: 0.000000 real_pulses:0 +I (225324) example: new speed:399.000000 +I (225334) example: expect speed: 0.000000 real_pulses:0 +I (225334) example: new speed:399.000000 +I (225344) example: expect speed: 0.000000 real_pulses:0 +I (225344) example: new speed:399.000000 +I (225354) example: expect speed: 0.000000 real_pulses:0 +I (225354) example: new speed:399.000000 +I (225364) example: expect speed: 0.000000 real_pulses:0 +I (225364) example: new speed:399.000000 +I (225374) example: expect speed: 0.000000 real_pulses:0 +I (225374) example: new speed:399.000000 +I (225384) example: expect speed: 0.000000 real_pulses:0 +I (225384) example: new speed:399.000000 +I (225394) example: expect speed: 0.000000 real_pulses:0 +I (225394) example: new speed:399.000000 +I (225404) example: expect speed: 0.000000 real_pulses:0 +I (225404) example: new speed:399.000000 +I (225414) example: expect speed: 0.000000 real_pulses:0 +I (225414) example: new speed:399.000000 +I (225424) example: expect speed: 0.000000 real_pulses:0 +I (225424) example: new speed:399.000000 +I (225434) example: expect speed: 0.000000 real_pulses:0 +I (225434) example: new speed:399.000000 +I (225444) example: expect speed: 0.000000 real_pulses:0 +I (225444) example: new speed:399.000000 +I (225454) example: expect speed: 0.000000 real_pulses:0 +I (225454) example: new speed:399.000000 +I (225464) example: expect speed: 0.000000 real_pulses:0 +I (225464) example: new speed:399.000000 +I (225474) example: expect speed: 0.000000 real_pulses:0 +I (225474) example: new speed:399.000000 +I (225484) example: expect speed: 0.000000 real_pulses:0 +I (225484) example: new speed:399.000000 +I (225494) example: expect speed: 0.000000 real_pulses:0 +I (225494) example: new speed:399.000000 +I (225504) example: expect speed: 0.000000 real_pulses:0 +I (225504) example: new speed:399.000000 +I (225514) example: expect speed: 0.000000 real_pulses:0 +I (225514) example: new speed:399.000000 +I (225524) example: expect speed: 0.000000 real_pulses:0 +I (225524) example: new speed:399.000000 +I (225534) example: expect speed: 0.000000 real_pulses:0 +I (225534) example: new speed:399.000000 +I (225544) example: expect speed: 0.000000 real_pulses:0 +I (225544) example: new speed:399.000000 +I (225554) example: expect speed: 0.000000 real_pulses:0 +I (225554) example: new speed:399.000000 +I (225564) example: expect speed: 0.000000 real_pulses:0 +I (225564) example: new speed:399.000000 +I (225574) example: expect speed: 0.000000 real_pulses:0 +I (225574) example: new speed:399.000000 +I (225584) example: expect speed: 0.000000 real_pulses:0 +I (225584) example: new speed:399.000000 +I (225594) example: expect speed: 0.000000 real_pulses:0 +I (225594) example: new speed:399.000000 +I (225604) example: expect speed: 0.000000 real_pulses:0 +I (225604) example: new speed:399.000000 +I (225614) example: expect speed: 0.000000 real_pulses:0 +I (225614) example: new speed:399.000000 +I (225624) example: expect speed: 0.000000 real_pulses:0 +I (225624) example: new speed:399.000000 +I (225634) example: expect speed: 0.000000 real_pulses:0 +I (225634) example: new speed:399.000000 +I (225644) example: expect speed: 0.000000 real_pulses:0 +I (225644) example: new speed:399.000000 +I (225654) example: expect speed: 0.000000 real_pulses:0 +I (225654) example: new speed:399.000000 +I (225664) example: expect speed: 0.000000 real_pulses:0 +I (225664) example: new speed:399.000000 +I (225674) example: expect speed: 0.000000 real_pulses:0 +I (225674) example: new speed:399.000000 +I (225684) example: expect speed: 0.000000 real_pulses:0 +I (225684) example: new speed:399.000000 +I (225694) example: expect speed: 0.000000 real_pulses:0 +I (225694) example: new speed:399.000000 +I (225704) example: expect speed: 0.000000 real_pulses:0 +I (225704) example: new speed:399.000000 +I (225714) example: expect speed: 0.000000 real_pulses:0 +I (225714) example: new speed:399.000000 +I (225724) example: expect speed: 0.000000 real_pulses:0 +I (225724) example: new speed:399.000000 +I (225734) example: expect speed: 0.000000 real_pulses:0 +I (225734) example: new speed:399.000000 +I (225744) example: expect speed: 0.000000 real_pulses:0 +I (225744) example: new speed:399.000000 +I (225754) example: expect speed: 0.000000 real_pulses:0 +I (225754) example: new speed:399.000000 +I (225764) example: expect speed: 0.000000 real_pulses:0 +I (225764) example: new speed:399.000000 +I (225774) example: expect speed: 0.000000 real_pulses:0 +I (225774) example: new speed:399.000000 +I (225784) example: expect speed: 0.000000 real_pulses:0 +I (225784) example: new speed:399.000000 +I (225794) example: expect speed: 0.000000 real_pulses:0 +I (225794) example: new speed:399.000000 +I (225804) example: expect speed: 0.000000 real_pulses:0 +I (225804) example: new speed:399.000000 +I (225814) example: expect speed: 0.000000 real_pulses:0 +I (225814) example: new speed:399.000000 +I (225824) example: expect speed: 0.000000 real_pulses:0 +I (225824) example: new speed:399.000000 +I (225834) example: expect speed: 0.000000 real_pulses:0 +I (225834) example: new speed:399.000000 +I (225844) example: expect speed: 0.000000 real_pulses:0 +I (225844) example: new speed:399.000000 +I (225854) example: expect speed: 0.000000 real_pulses:0 +I (225854) example: new speed:399.000000 +I (225864) example: expect speed: 0.000000 real_pulses:0 +I (225864) example: new speed:399.000000 +I (225874) example: expect speed: 0.000000 real_pulses:0 +I (225874) example: new speed:399.000000 +I (225884) example: expect speed: 0.000000 real_pulses:0 +I (225884) example: new speed:399.000000 +I (225894) example: expect speed: 0.000000 real_pulses:0 +I (225894) example: new speed:399.000000 +I (225904) example: expect speed: 0.000000 real_pulses:0 +I (225904) example: new speed:399.000000 +I (225914) example: expect speed: 0.000000 real_pulses:0 +I (225914) example: new speed:399.000000 +I (225924) example: expect speed: 0.000000 real_pulses:0 +I (225924) example: new speed:399.000000 +I (225934) example: expect speed: 0.000000 real_pulses:0 +I (225934) example: new speed:399.000000 +I (225944) modbus tcp: ModBusSlave_recv() +I (225944) modbus: ModbusSlaveProcess() +I (225944) modbus: check id... +I (225944) modbus: ok +I (225944) modbus: add: 0, length: 10 +I (225944) modbus: Read Holding Registers +I (225944) example: expect speed: 0.000000 real_pulses:0 +I (225944) example: new speed:399.000000 +I (225954) example: expect speed: 0.000000 real_pulses:0 +I (225954) example: new speed:399.000000 +I (225964) example: expect speed: 0.000000 real_pulses:0 +I (225964) example: new speed:399.000000 +I (225974) example: expect speed: 0.000000 real_pulses:0 +I (225974) example: new speed:399.000000 +I (225984) example: expect speed: 0.000000 real_pulses:0 +I (225984) example: new speed:399.000000 +I (225994) example: expect speed: 0.000000 real_pulses:0 +I (225994) example: new speed:399.000000 +I (226004) example: expect speed: 0.000000 real_pulses:0 +I (226004) example: new speed:399.000000 +I (226014) example: expect speed: 0.000000 real_pulses:0 +I (226014) example: new speed:399.000000 +I (226024) example: expect speed: 0.000000 real_pulses:0 +I (226024) example: new speed:399.000000 +I (226034) example: expect speed: 0.000000 real_pulses:0 +I (226034) example: new speed:399.000000 +I (226044) example: expect speed: 0.000000 real_pulses:0 +I (226044) example: new speed:399.000000 +I (226054) example: expect speed: 0.000000 real_pulses:0 +I (226054) example: new speed:399.000000 +I (226064) example: expect speed: 0.000000 real_pulses:0 +I (226064) example: new speed:399.000000 +I (226074) example: expect speed: 0.000000 real_pulses:0 +I (226074) example: new speed:399.000000 +I (226084) example: expect speed: 0.000000 real_pulses:0 +I (226084) example: new speed:399.000000 +I (226094) example: expect speed: 0.000000 real_pulses:0 +I (226094) example: new speed:399.000000 +I (226104) example: expect speed: 0.000000 real_pulses:0 +I (226104) example: new speed:399.000000 +I (226114) example: expect speed: 0.000000 real_pulses:0 +I (226114) example: new speed:399.000000 +I (226124) example: expect speed: 0.000000 real_pulses:0 +I (226124) example: new speed:399.000000 +I (226134) example: expect speed: 0.000000 real_pulses:0 +I (226134) example: new speed:399.000000 +I (226144) example: expect speed: 0.000000 real_pulses:0 +I (226144) example: new speed:399.000000 +I (226154) example: expect speed: 0.000000 real_pulses:0 +I (226154) example: new speed:399.000000 +I (226164) example: expect speed: 0.000000 real_pulses:0 +I (226164) example: new speed:399.000000 +I (226174) example: expect speed: 0.000000 real_pulses:0 +I (226174) example: new speed:399.000000 +I (226184) example: expect speed: 0.000000 real_pulses:0 +I (226184) example: new speed:399.000000 +I (226194) example: expect speed: 0.000000 real_pulses:0 +I (226194) example: new speed:399.000000 +I (226204) example: expect speed: 0.000000 real_pulses:0 +I (226204) example: new speed:399.000000 +I (226214) example: expect speed: 0.000000 real_pulses:0 +I (226214) example: new speed:399.000000 +I (226224) example: expect speed: 0.000000 real_pulses:0 +I (226224) example: new speed:399.000000 +I (226234) example: expect speed: 0.000000 real_pulses:0 +I (226234) example: new speed:399.000000 +I (226244) example: expect speed: 0.000000 real_pulses:0 +I (226244) example: new speed:399.000000 +I (226254) example: expect speed: 0.000000 real_pulses:0 +I (226264) example: new speed:399.000000 +I (226264) example: expect speed: 0.000000 real_pulses:0 +I (226274) example: new speed:399.000000 +I (226274) example: expect speed: 0.000000 real_pulses:0 +I (226274) example: new speed:399.000000 +I (226284) example: expect speed: 0.000000 real_pulses:0 +I (226284) example: new speed:399.000000 +I (226294) example: expect speed: 0.000000 real_pulses:0 +I (226294) example: new speed:399.000000 +I (226304) example: expect speed: 0.000000 real_pulses:0 +I (226304) example: new speed:399.000000 +I (226314) example: expect speed: 0.000000 real_pulses:0 +I (226314) example: new speed:399.000000 +I (226324) example: expect speed: 0.000000 real_pulses:0 +I (226324) example: new speed:399.000000 +I (226334) example: expect speed: 0.000000 real_pulses:0 +I (226334) example: new speed:399.000000 +I (226344) example: expect speed: 0.000000 real_pulses:0 +I (226344) example: new speed:399.000000 +I (226354) example: expect speed: 0.000000 real_pulses:0 +I (226354) example: new speed:399.000000 +I (226364) example: expect speed: 0.000000 real_pulses:0 +I (226364) example: new speed:399.000000 +I (226374) example: expect speed: 0.000000 real_pulses:0 +I (226374) example: new speed:399.000000 +I (226384) example: expect speed: 0.000000 real_pulses:0 +I (226384) example: new speed:399.000000 +I (226394) example: expect speed: 0.000000 real_pulses:0 +I (226394) example: new speed:399.000000 +I (226404) example: expect speed: 0.000000 real_pulses:0 +I (226404) example: new speed:399.000000 +I (226414) example: expect speed: 0.000000 real_pulses:0 +I (226414) example: new speed:399.000000 +I (226424) example: expect speed: 0.000000 real_pulses:0 +I (226424) example: new speed:399.000000 +I (226434) example: expect speed: 0.000000 real_pulses:0 +I (226434) example: new speed:399.000000 +I (226444) example: expect speed: 0.000000 real_pulses:0 +I (226444) example: new speed:399.000000 +I (226454) example: expect speed: 0.000000 real_pulses:0 +I (226454) example: new speed:399.000000 +I (226464) example: expect speed: 0.000000 real_pulses:0 +I (226464) example: new speed:399.000000 +I (226474) example: expect speed: 0.000000 real_pulses:0 +I (226474) example: new speed:399.000000 +I (226484) example: expect speed: 0.000000 real_pulses:0 +I (226484) example: new speed:399.000000 +I (226494) example: expect speed: 0.000000 real_pulses:0 +I (226494) example: new speed:399.000000 +I (226504) example: expect speed: 0.000000 real_pulses:0 +I (226504) example: new speed:399.000000 +I (226514) example: expect speed: 0.000000 real_pulses:0 +I (226514) example: new speed:399.000000 +I (226524) example: expect speed: 0.000000 real_pulses:0 +I (226524) example: new speed:399.000000 +I (226534) example: expect speed: 0.000000 real_pulses:0 +I (226534) example: new speed:399.000000 +I (226544) example: expect speed: 0.000000 real_pulses:0 +I (226544) example: new speed:399.000000 +I (226554) example: expect speed: 0.000000 real_pulses:0 +I (226554) example: new speed:399.000000 +I (226564) example: expect speed: 0.000000 real_pulses:0 +I (226564) example: new speed:399.000000 +I (226574) example: expect speed: 0.000000 real_pulses:0 +I (226574) example: new speed:399.000000 +I (226584) example: expect speed: 0.000000 real_pulses:0 +I (226584) example: new speed:399.000000 +I (226594) example: expect speed: 0.000000 real_pulses:0 +I (226594) example: new speed:399.000000 +I (226604) example: expect speed: 0.000000 real_pulses:0 +I (226604) example: new speed:399.000000 +I (226614) example: expect speed: 0.000000 real_pulses:0 +I (226614) example: new speed:399.000000 +I (226624) example: expect speed: 0.000000 real_pulses:0 +I (226624) example: new speed:399.000000 +I (226634) example: expect speed: 0.000000 real_pulses:0 +I (226634) example: new speed:399.000000 +I (226644) example: expect speed: 0.000000 real_pulses:0 +I (226644) example: new speed:399.000000 +I (226654) example: expect speed: 0.000000 real_pulses:0 +I (226654) example: new speed:399.000000 +I (226664) example: expect speed: 0.000000 real_pulses:0 +I (226664) example: new speed:399.000000 +I (226674) example: expect speed: 0.000000 real_pulses:0 +I (226674) example: new speed:399.000000 +I (226684) example: expect speed: 0.000000 real_pulses:0 +I (226684) example: new speed:399.000000 +I (226694) example: expect speed: 0.000000 real_pulses:0 +I (226694) example: new speed:399.000000 +I (226704) example: expect speed: 0.000000 real_pulses:0 +I (226704) example: new speed:399.000000 +I (226714) example: expect speed: 0.000000 real_pulses:0 +I (226714) example: new speed:399.000000 +I (226724) example: expect speed: 0.000000 real_pulses:0 +I (226724) example: new speed:399.000000 +I (226734) example: expect speed: 0.000000 real_pulses:0 +I (226734) example: new speed:399.000000 +I (226744) example: expect speed: 0.000000 real_pulses:0 +I (226744) example: new speed:399.000000 +I (226754) example: expect speed: 0.000000 real_pulses:0 +I (226754) example: new speed:399.000000 +I (226764) example: expect speed: 0.000000 real_pulses:0 +I (226764) example: new speed:399.000000 +I (226774) example: expect speed: 0.000000 real_pulses:0 +I (226774) example: new speed:399.000000 +I (226784) example: expect speed: 0.000000 real_pulses:0 +I (226784) example: new speed:399.000000 +I (226794) example: expect speed: 0.000000 real_pulses:0 +I (226794) example: new speed:399.000000 +I (226804) example: expect speed: 0.000000 real_pulses:0 +I (226804) example: new speed:399.000000 +I (226814) example: expect speed: 0.000000 real_pulses:0 +I (226814) example: new speed:399.000000 +I (226824) example: expect speed: 0.000000 real_pulses:0 +I (226824) example: new speed:399.000000 +I (226834) example: expect speed: 0.000000 real_pulses:0 +I (226834) example: new speed:399.000000 +I (226844) example: expect speed: 0.000000 real_pulses:0 +I (226844) example: new speed:399.000000 +I (226854) example: expect speed: 0.000000 real_pulses:0 +I (226854) example: new speed:399.000000 +I (226864) example: expect speed: 0.000000 real_pulses:0 +I (226864) example: new speed:399.000000 +I (226874) example: expect speed: 0.000000 real_pulses:0 +I (226874) example: new speed:399.000000 +I (226884) example: expect speed: 0.000000 real_pulses:0 +I (226884) example: new speed:399.000000 +I (226894) example: expect speed: 0.000000 real_pulses:0 +I (226894) example: new speed:399.000000 +I (226904) example: expect speed: 0.000000 real_pulses:0 +I (226904) example: new speed:399.000000 +I (226914) example: expect speed: 0.000000 real_pulses:0 +I (226914) example: new speed:399.000000 +I (226924) example: expect speed: 0.000000 real_pulses:0 +I (226924) example: new speed:399.000000 +I (226934) example: expect speed: 0.000000 real_pulses:0 +I (226934) example: new speed:399.000000 +I (226944) example: expect speed: 0.000000 real_pulses:0 +I (226944) example: new speed:399.000000 +I (226954) example: expect speed: 0.000000 real_pulses:0 +I (226954) example: new speed:399.000000 +I (226964) example: expect speed: 0.000000 real_pulses:0 +I (226974) example: new speed:399.000000 +I (226974) modbus tcp: ModBusSlave_recv() +I (226974) modbus: ModbusSlaveProcess() +I (226974) modbus: check id... +I (226974) modbus: ok +I (226974) modbus: add: 0, length: 10 +I (226974) modbus: Read Holding Registers +I (226974) example: expect speed: 0.000000 real_pulses:0 +I (226974) example: new speed:399.000000 +I (226984) example: expect speed: 0.000000 real_pulses:0 +I (226984) example: new speed:399.000000 +I (226994) example: expect speed: 0.000000 real_pulses:0 +I (226994) example: new speed:399.000000 +I (227004) example: expect speed: 0.000000 real_pulses:0 +I (227004) example: new speed:399.000000 +I (227014) example: expect speed: 0.000000 real_pulses:0 +I (227014) example: new speed:399.000000 +I (227024) example: expect speed: 0.000000 real_pulses:0 +I (227034) example: new speed:399.000000 +I (227034) example: expect speed: 0.000000 real_pulses:0 +I (227034) example: new speed:399.000000 +I (227044) example: expect speed: 0.000000 real_pulses:0 +I (227044) example: new speed:399.000000 +I (227054) example: expect speed: 0.000000 real_pulses:0 +I (227054) example: new speed:399.000000 +I (227064) example: expect speed: 0.000000 real_pulses:0 +I (227064) example: new speed:399.000000 +I (227074) example: expect speed: 0.000000 real_pulses:0 +I (227074) example: new speed:399.000000 +I (227084) example: expect speed: 0.000000 real_pulses:0 +I (227084) example: new speed:399.000000 +I (227094) example: expect speed: 0.000000 real_pulses:0 +I (227094) example: new speed:399.000000 +I (227104) example: expect speed: 0.000000 real_pulses:0 +I (227104) example: new speed:399.000000 +I (227114) example: expect speed: 0.000000 real_pulses:0 +I (227114) example: new speed:399.000000 +I (227124) example: expect speed: 0.000000 real_pulses:0 +I (227124) example: new speed:399.000000 +I (227134) example: expect speed: 0.000000 real_pulses:0 +I (227134) example: new speed:399.000000 +I (227144) example: expect speed: 0.000000 real_pulses:0 +I (227144) example: new speed:399.000000 +I (227154) example: expect speed: 0.000000 real_pulses:0 +I (227154) example: new speed:399.000000 +I (227164) example: expect speed: 0.000000 real_pulses:0 +I (227164) example: new speed:399.000000 +I (227174) example: expect speed: 0.000000 real_pulses:0 +I (227174) example: new speed:399.000000 +I (227184) example: expect speed: 0.000000 real_pulses:0 +I (227184) example: new speed:399.000000 +I (227194) example: expect speed: 0.000000 real_pulses:0 +I (227194) example: new speed:399.000000 +I (227204) example: expect speed: 0.000000 real_pulses:0 +I (227204) example: new speed:399.000000 +I (227214) example: expect speed: 0.000000 real_pulses:0 +I (227214) example: new speed:399.000000 +I (227224) example: expect speed: 0.000000 real_pulses:0 +I (227224) example: new speed:399.000000 +I (227234) example: expect speed: 0.000000 real_pulses:0 +I (227234) example: new speed:399.000000 +I (227244) example: expect speed: 0.000000 real_pulses:0 +I (227244) example: new speed:399.000000 +I (227254) example: expect speed: 0.000000 real_pulses:0 +I (227254) example: new speed:399.000000 +I (227264) example: expect speed: 0.000000 real_pulses:0 +I (227264) example: new speed:399.000000 +I (227274) example: expect speed: 0.000000 real_pulses:0 +I (227284) example: new speed:399.000000 +I (227284) example: expect speed: 0.000000 real_pulses:0 +I (227284) example: new speed:399.000000 +I (227294) example: expect speed: 0.000000 real_pulses:0 +I (227294) example: new speed:399.000000 +I (227304) example: expect speed: 0.000000 real_pulses:0 +I (227304) example: new speed:399.000000 +I (227314) example: expect speed: 0.000000 real_pulses:0 +I (227314) example: new speed:399.000000 +I (227324) example: expect speed: 0.000000 real_pulses:0 +I (227324) example: new speed:399.000000 +I (227334) example: expect speed: 0.000000 real_pulses:0 +I (227344) example: new speed:399.000000 +I (227344) example: expect speed: 0.000000 real_pulses:0 +I (227344) example: new speed:399.000000 +I (227354) example: expect speed: 0.000000 real_pulses:0 +I (227364) example: new speed:399.000000 +I (227364) example: expect speed: 0.000000 real_pulses:0 +I (227374) example: new speed:399.000000 +I (227374) example: expect speed: 0.000000 real_pulses:0 +I (227374) example: new speed:399.000000 +I (227384) example: expect speed: 0.000000 real_pulses:0 +I (227384) example: new speed:399.000000 +I (227394) example: expect speed: 0.000000 real_pulses:0 +I (227394) example: new speed:399.000000 +I (227404) example: expect speed: 0.000000 real_pulses:0 +I (227404) example: new speed:399.000000 +I (227414) example: expect speed: 0.000000 real_pulses:0 +I (227414) example: new speed:399.000000 +I (227424) example: expect speed: 0.000000 real_pulses:0 +I (227424) example: new speed:399.000000 +I (227434) example: expect speed: 0.000000 real_pulses:0 +I (227434) example: new speed:399.000000 +I (227444) example: expect speed: 0.000000 real_pulses:0 +I (227444) example: new speed:399.000000 +I (227454) example: expect speed: 0.000000 real_pulses:0 +I (227454) example: new speed:399.000000 +I (227464) example: expect speed: 0.000000 real_pulses:0 +I (227464) example: new speed:399.000000 +I (227474) example: expect speed: 0.000000 real_pulses:0 +I (227474) example: new speed:399.000000 +I (227484) example: expect speed: 0.000000 real_pulses:0 +I (227484) example: new speed:399.000000 +I (227494) example: expect speed: 0.000000 real_pulses:0 +I (227494) example: new speed:399.000000 +I (227504) example: expect speed: 0.000000 real_pulses:0 +I (227504) example: new speed:399.000000 +I (227514) example: expect speed: 0.000000 real_pulses:0 +I (227514) example: new speed:399.000000 +I (227524) example: expect speed: 0.000000 real_pulses:0 +I (227524) example: new speed:399.000000 +I (227534) example: expect speed: 0.000000 real_pulses:0 +I (227534) example: new speed:399.000000 +I (227544) example: expect speed: 0.000000 real_pulses:0 +I (227544) example: new speed:399.000000 +I (227554) example: expect speed: 0.000000 real_pulses:0 +I (227554) example: new speed:399.000000 +I (227564) example: expect speed: 0.000000 real_pulses:0 +I (227564) example: new speed:399.000000 +I (227574) example: expect speed: 0.000000 real_pulses:0 +I (227574) example: new speed:399.000000 +I (227584) example: expect speed: 0.000000 real_pulses:0 +I (227584) example: new speed:399.000000 +I (227594) example: expect speed: 0.000000 real_pulses:0 +I (227594) example: new speed:399.000000 +I (227604) example: expect speed: 0.000000 real_pulses:0 +I (227604) example: new speed:399.000000 +I (227614) example: expect speed: 0.000000 real_pulses:0 +I (227614) example: new speed:399.000000 +I (227624) example: expect speed: 0.000000 real_pulses:0 +I (227624) example: new speed:399.000000 +I (227634) example: expect speed: 0.000000 real_pulses:0 +I (227634) example: new speed:399.000000 +I (227644) example: expect speed: 0.000000 real_pulses:0 +I (227644) example: new speed:399.000000 +I (227654) example: expect speed: 0.000000 real_pulses:0 +I (227654) example: new speed:399.000000 +I (227664) example: expect speed: 0.000000 real_pulses:0 +I (227664) example: new speed:399.000000 +I (227674) example: expect speed: 0.000000 real_pulses:0 +I (227674) example: new speed:399.000000 +I (227684) example: expect speed: 0.000000 real_pulses:0 +I (227684) example: new speed:399.000000 +I (227694) example: expect speed: 0.000000 real_pulses:0 +I (227694) example: new speed:399.000000 +I (227704) example: expect speed: 0.000000 real_pulses:0 +I (227704) example: new speed:399.000000 +I (227714) example: expect speed: 0.000000 real_pulses:0 +I (227714) example: new speed:399.000000 +I (227724) example: expect speed: 0.000000 real_pulses:0 +I (227724) example: new speed:399.000000 +I (227734) example: expect speed: 0.000000 real_pulses:0 +I (227734) example: new speed:399.000000 +I (227744) example: expect speed: 0.000000 real_pulses:0 +I (227744) example: new speed:399.000000 +I (227754) example: expect speed: 0.000000 real_pulses:0 +I (227754) example: new speed:399.000000 +I (227764) example: expect speed: 0.000000 real_pulses:0 +I (227764) example: new speed:399.000000 +I (227774) example: expect speed: 0.000000 real_pulses:0 +I (227774) example: new speed:399.000000 +I (227784) example: expect speed: 0.000000 real_pulses:0 +I (227784) example: new speed:399.000000 +I (227794) example: expect speed: 0.000000 real_pulses:0 +I (227794) example: new speed:399.000000 +I (227804) example: expect speed: 0.000000 real_pulses:0 +I (227804) example: new speed:399.000000 +I (227814) example: expect speed: 0.000000 real_pulses:0 +I (227814) example: new speed:399.000000 +I (227824) example: expect speed: 0.000000 real_pulses:0 +I (227824) example: new speed:399.000000 +I (227834) example: expect speed: 0.000000 real_pulses:0 +I (227834) example: new speed:399.000000 +I (227844) example: expect speed: 0.000000 real_pulses:0 +I (227844) example: new speed:399.000000 +I (227854) example: expect speed: 0.000000 real_pulses:0 +I (227854) example: new speed:399.000000 +I (227864) example: expect speed: 0.000000 real_pulses:0 +I (227864) example: new speed:399.000000 +I (227874) example: expect speed: 0.000000 real_pulses:0 +I (227874) example: new speed:399.000000 +I (227884) example: expect speed: 0.000000 real_pulses:0 +I (227884) example: new speed:399.000000 +I (227894) example: expect speed: 0.000000 real_pulses:0 +I (227894) example: new speed:399.000000 +I (227904) example: expect speed: 0.000000 real_pulses:0 +I (227904) example: new speed:399.000000 +I (227914) example: expect speed: 0.000000 real_pulses:0 +I (227914) example: new speed:399.000000 +I (227924) example: expect speed: 0.000000 real_pulses:0 +I (227924) example: new speed:399.000000 +I (227934) example: expect speed: 0.000000 real_pulses:0 +I (227934) example: new speed:399.000000 +I (227944) example: expect speed: 0.000000 real_pulses:0 +I (227944) example: new speed:399.000000 +I (227954) example: expect speed: 0.000000 real_pulses:0 +I (227954) example: new speed:399.000000 +I (227964) example: expect speed: 0.000000 real_pulses:0 +I (227964) example: new speed:399.000000 +I (227974) example: expect speed: 0.000000 real_pulses:0 +I (227974) example: new speed:399.000000 +I (227984) example: expect speed: 0.000000 real_pulses:0 +I (227984) example: new speed:399.000000 +I (227994) modbus tcp: ModBusSlave_recv() +I (227994) modbus: ModbusSlaveProcess() +I (227994) modbus: check id... +I (227994) modbus: ok +I (227994) modbus: add: 0, length: 10 +I (227994) modbus: Read Holding Registers +I (227994) example: expect speed: 0.000000 real_pulses:0 +I (227994) example: new speed:399.000000 +I (228004) example: expect speed: 0.000000 real_pulses:0 +I (228004) example: new speed:399.000000 +I (228014) example: expect speed: 0.000000 real_pulses:0 +I (228014) example: new speed:399.000000 +I (228024) example: expect speed: 0.000000 real_pulses:0 +I (228024) example: new speed:399.000000 +I (228034) example: expect speed: 0.000000 real_pulses:0 +I (228044) example: new speed:399.000000 +I (228044) example: expect speed: 0.000000 real_pulses:0 +I (228044) example: new speed:399.000000 +I (228054) example: expect speed: 0.000000 real_pulses:0 +I (228054) example: new speed:399.000000 +I (228064) example: expect speed: 0.000000 real_pulses:0 +I (228064) example: new speed:399.000000 +I (228074) example: expect speed: 0.000000 real_pulses:0 +I (228074) example: new speed:399.000000 +I (228084) example: expect speed: 0.000000 real_pulses:0 +I (228094) example: new speed:399.000000 +I (228094) example: expect speed: 0.000000 real_pulses:0 +I (228104) example: new speed:399.000000 +I (228104) example: expect speed: 0.000000 real_pulses:0 +I (228114) example: new speed:399.000000 +I (228114) example: expect speed: 0.000000 real_pulses:0 +I (228114) example: new speed:399.000000 +I (228124) example: expect speed: 0.000000 real_pulses:0 +I (228124) example: new speed:399.000000 +I (228134) example: expect speed: 0.000000 real_pulses:0 +I (228134) example: new speed:399.000000 +I (228144) example: expect speed: 0.000000 real_pulses:0 +I (228144) example: new speed:399.000000 +I (228154) example: expect speed: 0.000000 real_pulses:0 +I (228164) example: new speed:399.000000 +I (228164) example: expect speed: 0.000000 real_pulses:0 +I (228164) example: new speed:399.000000 +I (228174) example: expect speed: 0.000000 real_pulses:0 +I (228174) example: new speed:399.000000 +I (228184) example: expect speed: 0.000000 real_pulses:0 +I (228184) example: new speed:399.000000 +I (228194) example: expect speed: 0.000000 real_pulses:0 +I (228194) example: new speed:399.000000 +I (228204) example: expect speed: 0.000000 real_pulses:0 +I (228214) example: new speed:399.000000 +I (228214) example: expect speed: 0.000000 real_pulses:0 +I (228214) example: new speed:399.000000 +I (228224) example: expect speed: 0.000000 real_pulses:0 +I (228224) example: new speed:399.000000 +I (228234) example: expect speed: 0.000000 real_pulses:0 +I (228234) example: new speed:399.000000 +I (228244) example: expect speed: 0.000000 real_pulses:0 +I (228244) example: new speed:399.000000 +I (228254) example: expect speed: 0.000000 real_pulses:0 +I (228254) example: new speed:399.000000 +I (228264) example: expect speed: 0.000000 real_pulses:0 +I (228264) example: new speed:399.000000 +I (228274) example: expect speed: 0.000000 real_pulses:0 +I (228274) example: new speed:399.000000 +I (228284) example: expect speed: 0.000000 real_pulses:0 +I (228284) example: new speed:399.000000 +I (228294) example: expect speed: 0.000000 real_pulses:0 +I (228294) example: new speed:399.000000 +I (228304) example: expect speed: 0.000000 real_pulses:0 +I (228304) example: new speed:399.000000 +I (228314) example: expect speed: 0.000000 real_pulses:0 +I (228314) example: new speed:399.000000 +I (228324) example: expect speed: 0.000000 real_pulses:0 +I (228324) example: new speed:399.000000 +I (228334) example: expect speed: 0.000000 real_pulses:0 +I (228334) example: new speed:399.000000 +I (228344) example: expect speed: 0.000000 real_pulses:0 +I (228344) example: new speed:399.000000 +I (228354) example: expect speed: 0.000000 real_pulses:0 +I (228354) example: new speed:399.000000 +I (228364) example: expect speed: 0.000000 real_pulses:0 +I (228364) example: new speed:399.000000 +I (228374) example: expect speed: 0.000000 real_pulses:0 +I (228374) example: new speed:399.000000 +I (228384) example: expect speed: 0.000000 real_pulses:0 +I (228384) example: new speed:399.000000 +I (228394) example: expect speed: 0.000000 real_pulses:0 +I (228394) example: new speed:399.000000 +I (228404) example: expect speed: 0.000000 real_pulses:0 +I (228404) example: new speed:399.000000 +I (228414) example: expect speed: 0.000000 real_pulses:0 +I (228414) example: new speed:399.000000 +I (228424) example: expect speed: 0.000000 real_pulses:0 +I (228424) example: new speed:399.000000 +I (228434) example: expect speed: 0.000000 real_pulses:0 +I (228434) example: new speed:399.000000 +I (228444) example: expect speed: 0.000000 real_pulses:0 +I (228444) example: new speed:399.000000 +I (228454) example: expect speed: 0.000000 real_pulses:0 +I (228454) example: new speed:399.000000 +I (228464) example: expect speed: 0.000000 real_pulses:0 +I (228464) example: new speed:399.000000 +I (228474) example: expect speed: 0.000000 real_pulses:0 +I (228474) example: new speed:399.000000 +I (228484) example: expect speed: 0.000000 real_pulses:0 +I (228484) example: new speed:399.000000 +I (228494) example: expect speed: 0.000000 real_pulses:0 +I (228494) example: new speed:399.000000 +I (228504) example: expect speed: 0.000000 real_pulses:0 +I (228514) example: new speed:399.000000 +I (228514) example: expect speed: 0.000000 real_pulses:0 +I (228514) example: new speed:399.000000 +I (228524) example: expect speed: 0.000000 real_pulses:0 +I (228524) example: new speed:399.000000 +I (228534) example: expect speed: 0.000000 real_pulses:0 +I (228534) example: new speed:399.000000 +I (228544) example: expect speed: 0.000000 real_pulses:0 +I (228544) example: new speed:399.000000 +I (228554) example: expect speed: 0.000000 real_pulses:0 +I (228554) example: new speed:399.000000 +I (228564) example: expect speed: 0.000000 real_pulses:0 +I (228564) example: new speed:399.000000 +I (228574) example: expect speed: 0.000000 real_pulses:0 +I (228574) example: new speed:399.000000 +I (228584) example: expect speed: 0.000000 real_pulses:0 +I (228584) example: new speed:399.000000 +I (228594) example: expect speed: 0.000000 real_pulses:0 +I (228594) example: new speed:399.000000 +I (228604) example: expect speed: 0.000000 real_pulses:0 +I (228604) example: new speed:399.000000 +I (228614) example: expect speed: 0.000000 real_pulses:0 +I (228614) example: new speed:399.000000 +I (228624) example: expect speed: 0.000000 real_pulses:0 +I (228624) example: new speed:399.000000 +I (228634) example: expect speed: 0.000000 real_pulses:0 +I (228634) example: new speed:399.000000 +I (228644) example: expect speed: 0.000000 real_pulses:0 +I (228644) example: new speed:399.000000 +I (228654) example: expect speed: 0.000000 real_pulses:0 +I (228654) example: new speed:399.000000 +I (228664) example: expect speed: 0.000000 real_pulses:0 +I (228664) example: new speed:399.000000 +I (228674) example: expect speed: 0.000000 real_pulses:0 +I (228674) example: new speed:399.000000 +I (228684) example: expect speed: 0.000000 real_pulses:0 +I (228684) example: new speed:399.000000 +I (228694) example: expect speed: 0.000000 real_pulses:0 +I (228694) example: new speed:399.000000 +I (228704) example: expect speed: 0.000000 real_pulses:0 +I (228704) example: new speed:399.000000 +I (228714) example: expect speed: 0.000000 real_pulses:0 +I (228714) example: new speed:399.000000 +I (228724) example: expect speed: 0.000000 real_pulses:0 +I (228724) example: new speed:399.000000 +I (228734) example: expect speed: 0.000000 real_pulses:0 +I (228734) example: new speed:399.000000 +I (228744) example: expect speed: 0.000000 real_pulses:0 +I (228744) example: new speed:399.000000 +I (228754) example: expect speed: 0.000000 real_pulses:0 +I (228754) example: new speed:399.000000 +I (228764) example: expect speed: 0.000000 real_pulses:0 +I (228764) example: new speed:399.000000 +I (228774) example: expect speed: 0.000000 real_pulses:0 +I (228774) example: new speed:399.000000 +I (228784) example: expect speed: 0.000000 real_pulses:0 +I (228784) example: new speed:399.000000 +I (228794) example: expect speed: 0.000000 real_pulses:0 +I (228794) example: new speed:399.000000 +I (228804) example: expect speed: 0.000000 real_pulses:0 +I (228804) example: new speed:399.000000 +I (228814) example: expect speed: 0.000000 real_pulses:0 +I (228814) example: new speed:399.000000 +I (228824) example: expect speed: 0.000000 real_pulses:0 +I (228824) example: new speed:399.000000 +I (228834) example: expect speed: 0.000000 real_pulses:0 +I (228834) example: new speed:399.000000 +I (228844) example: expect speed: 0.000000 real_pulses:0 +I (228844) example: new speed:399.000000 +I (228854) example: expect speed: 0.000000 real_pulses:0 +I (228854) example: new speed:399.000000 +I (228864) example: expect speed: 0.000000 real_pulses:0 +I (228864) example: new speed:399.000000 +I (228874) example: expect speed: 0.000000 real_pulses:0 +I (228874) example: new speed:399.000000 +I (228884) example: expect speed: 0.000000 real_pulses:0 +I (228884) example: new speed:399.000000 +I (228894) example: expect speed: 0.000000 real_pulses:0 +I (228894) example: new speed:399.000000 +I (228904) example: expect speed: 0.000000 real_pulses:0 +I (228904) example: new speed:399.000000 +I (228914) example: expect speed: 0.000000 real_pulses:0 +I (228914) example: new speed:399.000000 +I (228924) example: expect speed: 0.000000 real_pulses:0 +I (228924) example: new speed:399.000000 +I (228934) example: expect speed: 0.000000 real_pulses:0 +I (228934) example: new speed:399.000000 +I (228944) example: expect speed: 0.000000 real_pulses:0 +I (228944) example: new speed:399.000000 +I (228954) example: expect speed: 0.000000 real_pulses:0 +I (228954) example: new speed:399.000000 +I (228964) example: expect speed: 0.000000 real_pulses:0 +I (228964) example: new speed:399.000000 +I (228974) example: expect speed: 0.000000 real_pulses:0 +I (228974) example: new speed:399.000000 +I (228984) example: expect speed: 0.000000 real_pulses:0 +I (228984) example: new speed:399.000000 +I (228994) example: expect speed: 0.000000 real_pulses:0 +I (228994) example: new speed:399.000000 +I (229004) example: expect speed: 0.000000 real_pulses:0 +I (229004) example: new speed:399.000000 +I (229014) example: expect speed: 0.000000 real_pulses:0 +I (229014) example: new speed:399.000000 +I (229024) example: expect speed: 0.000000 real_pulses:0 +I (229024) example: new speed:399.000000 +I (229034) example: expect speed: 0.000000 real_pulses:0 +I (229034) example: new speed:399.000000 +I (229044) example: expect speed: 0.000000 real_pulses:0 +I (229044) example: new speed:399.000000 +I (229054) example: expect speed: 0.000000 real_pulses:0 +I (229054) example: new speed:399.000000 +I (229064) example: expect speed: 0.000000 real_pulses:0 +I (229064) example: new speed:399.000000 +I (229074) example: expect speed: 0.000000 real_pulses:0 +I (229074) example: new speed:399.000000 +I (229084) example: expect speed: 0.000000 real_pulses:0 +I (229084) example: new speed:399.000000 +I (229094) example: expect speed: 0.000000 real_pulses:0 +I (229094) example: new speed:399.000000 +I (229104) example: expect speed: 0.000000 real_pulses:0 +I (229104) example: new speed:399.000000 +I (229114) example: expect speed: 0.000000 real_pulses:0 +I (229114) example: new speed:399.000000 +I (229124) example: expect speed: 0.000000 real_pulses:0 +I (229124) example: new speed:399.000000 +I (229134) example: expect speed: 0.000000 real_pulses:0 +I (229134) example: new speed:399.000000 +I (229144) example: expect speed: 0.000000 real_pulses:0 +I (229144) example: new speed:399.000000 +I (229154) example: expect speed: 0.000000 real_pulses:0 +I (229154) example: new speed:399.000000 +I (229164) example: expect speed: 0.000000 real_pulses:0 +I (229164) example: new speed:399.000000 +I (229174) example: expect speed: 0.000000 real_pulses:0 +I (229174) example: new speed:399.000000 +I (229184) example: expect speed: 0.000000 real_pulses:0 +I (229184) example: new speed:399.000000 +I (229194) example: expect speed: 0.000000 real_pulses:0 +I (229194) example: new speed:399.000000 +I (229204) example: expect speed: 0.000000 real_pulses:0 +I (229204) example: new speed:399.000000 +I (229214) example: expect speed: 0.000000 real_pulses:0 +I (229224) example: new speed:399.000000 +I (229224) example: expect speed: 0.000000 real_pulses:0 +I (229224) example: new speed:399.000000 +I (229234) example: expect speed: 0.000000 real_pulses:0 +I (229244) example: new speed:399.000000 +I (229244) modbus tcp: ModBusSlave_recv() +I (229244) modbus: ModbusSlaveProcess() +I (229244) modbus: check id... +I (229244) modbus: ok +I (229244) modbus: add: 0, length: 10 +I (229244) modbus: Read Holding Registers +I (229244) example: expect speed: 0.000000 real_pulses:0 +I (229254) example: new speed:399.000000 +I (229254) example: expect speed: 0.000000 real_pulses:0 +I (229254) example: new speed:399.000000 +I (229264) example: expect speed: 0.000000 real_pulses:0 +I (229264) example: new speed:399.000000 +I (229274) example: expect speed: 0.000000 real_pulses:0 +I (229274) example: new speed:399.000000 +I (229284) example: expect speed: 0.000000 real_pulses:0 +I (229284) example: new speed:399.000000 +I (229294) example: expect speed: 0.000000 real_pulses:0 +I (229304) example: new speed:399.000000 +I (229304) example: expect speed: 0.000000 real_pulses:0 +I (229304) example: new speed:399.000000 +I (229314) example: expect speed: 0.000000 real_pulses:0 +I (229314) example: new speed:399.000000 +I (229324) example: expect speed: 0.000000 real_pulses:0 +I (229324) example: new speed:399.000000 +I (229334) example: expect speed: 0.000000 real_pulses:0 +I (229334) example: new speed:399.000000 +I (229344) example: expect speed: 0.000000 real_pulses:0 +I (229354) example: new speed:399.000000 +I (229354) example: expect speed: 0.000000 real_pulses:0 +I (229364) example: new speed:399.000000 +I (229364) example: expect speed: 0.000000 real_pulses:0 +I (229374) example: new speed:399.000000 +I (229374) example: expect speed: 0.000000 real_pulses:0 +I (229374) example: new speed:399.000000 +I (229384) example: expect speed: 0.000000 real_pulses:0 +I (229384) example: new speed:399.000000 +I (229394) example: expect speed: 0.000000 real_pulses:0 +I (229394) example: new speed:399.000000 +I (229404) example: expect speed: 0.000000 real_pulses:0 +I (229404) example: new speed:399.000000 +I (229414) example: expect speed: 0.000000 real_pulses:0 +I (229414) example: new speed:399.000000 +I (229424) example: expect speed: 0.000000 real_pulses:0 +I (229424) example: new speed:399.000000 +I (229434) example: expect speed: 0.000000 real_pulses:0 +I (229434) example: new speed:399.000000 +I (229444) example: expect speed: 0.000000 real_pulses:0 +I (229444) example: new speed:399.000000 +I (229454) example: expect speed: 0.000000 real_pulses:0 +I (229454) example: new speed:399.000000 +I (229464) example: expect speed: 0.000000 real_pulses:0 +I (229464) example: new speed:399.000000 +I (229474) example: expect speed: 0.000000 real_pulses:0 +I (229474) example: new speed:399.000000 +I (229484) example: expect speed: 0.000000 real_pulses:0 +I (229484) example: new speed:399.000000 +I (229494) example: expect speed: 0.000000 real_pulses:0 +I (229494) example: new speed:399.000000 +I (229504) example: expect speed: 0.000000 real_pulses:0 +I (229504) example: new speed:399.000000 +I (229514) example: expect speed: 0.000000 real_pulses:0 +I (229514) example: new speed:399.000000 +I (229524) example: expect speed: 0.000000 real_pulses:0 +I (229534) example: new speed:399.000000 +I (229534) example: expect speed: 0.000000 real_pulses:0 +I (229544) example: new speed:399.000000 +I (229544) example: expect speed: 0.000000 real_pulses:0 +I (229544) example: new speed:399.000000 +I (229554) example: expect speed: 0.000000 real_pulses:0 +I (229554) example: new speed:399.000000 +I (229564) example: expect speed: 0.000000 real_pulses:0 +I (229564) example: new speed:399.000000 +I (229574) example: expect speed: 0.000000 real_pulses:0 +I (229574) example: new speed:399.000000 +I (229584) example: expect speed: 0.000000 real_pulses:0 +I (229584) example: new speed:399.000000 +I (229594) example: expect speed: 0.000000 real_pulses:0 +I (229594) example: new speed:399.000000 +I (229604) example: expect speed: 0.000000 real_pulses:0 +I (229604) example: new speed:399.000000 +I (229614) example: expect speed: 0.000000 real_pulses:0 +I (229614) example: new speed:399.000000 +I (229624) example: expect speed: 0.000000 real_pulses:0 +I (229624) example: new speed:399.000000 +I (229634) example: expect speed: 0.000000 real_pulses:0 +I (229634) example: new speed:399.000000 +I (229644) example: expect speed: 0.000000 real_pulses:0 +I (229644) example: new speed:399.000000 +I (229654) example: expect speed: 0.000000 real_pulses:0 +I (229654) example: new speed:399.000000 +I (229664) example: expect speed: 0.000000 real_pulses:0 +I (229664) example: new speed:399.000000 +I (229674) example: expect speed: 0.000000 real_pulses:0 +I (229674) example: new speed:399.000000 +I (229684) example: expect speed: 0.000000 real_pulses:0 +I (229684) example: new speed:399.000000 +I (229694) example: expect speed: 0.000000 real_pulses:0 +I (229694) example: new speed:399.000000 +I (229704) example: expect speed: 0.000000 real_pulses:0 +I (229704) example: new speed:399.000000 +I (229714) example: expect speed: 0.000000 real_pulses:0 +I (229714) example: new speed:399.000000 +I (229724) example: expect speed: 0.000000 real_pulses:0 +I (229724) example: new speed:399.000000 +I (229734) example: expect speed: 0.000000 real_pulses:0 +I (229734) example: new speed:399.000000 +I (229744) example: expect speed: 0.000000 real_pulses:0 +I (229744) example: new speed:399.000000 +I (229754) example: expect speed: 0.000000 real_pulses:0 +I (229754) example: new speed:399.000000 +I (229764) example: expect speed: 0.000000 real_pulses:0 +I (229764) example: new speed:399.000000 +I (229774) example: expect speed: 0.000000 real_pulses:0 +I (229774) example: new speed:399.000000 +I (229784) example: expect speed: 0.000000 real_pulses:0 +I (229784) example: new speed:399.000000 +I (229794) example: expect speed: 0.000000 real_pulses:0 +I (229794) example: new speed:399.000000 +I (229804) example: expect speed: 0.000000 real_pulses:0 +I (229804) example: new speed:399.000000 +I (229814) example: expect speed: 0.000000 real_pulses:0 +I (229814) example: new speed:399.000000 +I (229824) example: expect speed: 0.000000 real_pulses:0 +I (229824) example: new speed:399.000000 +I (229834) example: expect speed: 0.000000 real_pulses:0 +I (229834) example: new speed:399.000000 +I (229844) example: expect speed: 0.000000 real_pulses:0 +I (229844) example: new speed:399.000000 +I (229854) example: expect speed: 0.000000 real_pulses:0 +I (229854) example: new speed:399.000000 +I (229864) example: expect speed: 0.000000 real_pulses:0 +I (229864) example: new speed:399.000000 +I (229874) example: expect speed: 0.000000 real_pulses:0 +I (229874) example: new speed:399.000000 +I (229884) example: expect speed: 0.000000 real_pulses:0 +I (229884) example: new speed:399.000000 +I (229894) example: expect speed: 0.000000 real_pulses:0 +I (229894) example: new speed:399.000000 +I (229904) example: expect speed: 0.000000 real_pulses:0 +I (229904) example: new speed:399.000000 +I (229914) example: expect speed: 0.000000 real_pulses:0 +I (229914) example: new speed:399.000000 +I (229924) example: expect speed: 0.000000 real_pulses:0 +I (229924) example: new speed:399.000000 +I (229934) example: expect speed: 0.000000 real_pulses:0 +I (229934) example: new speed:399.000000 +I (229944) example: expect speed: 0.000000 real_pulses:0 +I (229944) example: new speed:399.000000 +I (229954) example: expect speed: 0.000000 real_pulses:0 +I (229954) example: new speed:399.000000 +I (229964) example: expect speed: 0.000000 real_pulses:0 +I (229964) example: new speed:399.000000 +I (229974) example: expect speed: 0.000000 real_pulses:0 +I (229974) example: new speed:399.000000 +I (229984) example: expect speed: 0.000000 real_pulses:0 +I (229984) example: new speed:399.000000 +I (229994) example: expect speed: 0.000000 real_pulses:0 +I (229994) example: new speed:399.000000 +I (230004) example: expect speed: 0.000000 real_pulses:0 +I (230004) example: new speed:399.000000 +I (230014) example: expect speed: 0.000000 real_pulses:0 +I (230014) example: new speed:399.000000 +I (230024) example: expect speed: 0.000000 real_pulses:0 +I (230024) example: new speed:399.000000 +I (230034) example: expect speed: 0.000000 real_pulses:0 +I (230034) example: new speed:399.000000 +I (230044) example: expect speed: 0.000000 real_pulses:0 +I (230044) example: new speed:399.000000 +I (230054) example: expect speed: 0.000000 real_pulses:0 +I (230054) example: new speed:399.000000 +I (230064) example: expect speed: 0.000000 real_pulses:0 +I (230064) example: new speed:399.000000 +I (230074) example: expect speed: 0.000000 real_pulses:0 +I (230074) example: new speed:399.000000 +I (230084) example: expect speed: 0.000000 real_pulses:0 +I (230084) example: new speed:399.000000 +I (230094) example: expect speed: 0.000000 real_pulses:0 +I (230094) example: new speed:399.000000 +I (230104) example: expect speed: 0.000000 real_pulses:0 +I (230104) example: new speed:399.000000 +I (230114) example: expect speed: 0.000000 real_pulses:0 +I (230114) example: new speed:399.000000 +I (230124) example: expect speed: 0.000000 real_pulses:0 +I (230124) example: new speed:399.000000 +I (230134) example: expect speed: 0.000000 real_pulses:0 +I (230134) example: new speed:399.000000 +I (230144) example: expect speed: 0.000000 real_pulses:0 +I (230144) example: new speed:399.000000 +I (230154) example: expect speed: 0.000000 real_pulses:0 +I (230154) example: new speed:399.000000 +I (230164) example: expect speed: 0.000000 real_pulses:0 +I (230164) example: new speed:399.000000 +I (230174) example: expect speed: 0.000000 real_pulses:0 +I (230174) example: new speed:399.000000 +I (230184) example: expect speed: 0.000000 real_pulses:0 +I (230184) example: new speed:399.000000 +I (230194) example: expect speed: 0.000000 real_pulses:0 +I (230194) example: new speed:399.000000 +I (230204) example: expect speed: 0.000000 real_pulses:0 +I (230204) example: new speed:399.000000 +I (230214) example: expect speed: 0.000000 real_pulses:0 +I (230214) example: new speed:399.000000 +I (230224) example: expect speed: 0.000000 real_pulses:0 +I (230224) example: new speed:399.000000 +I (230234) example: expect speed: 0.000000 real_pulses:0 +I (230234) example: new speed:399.000000 +I (230244) modbus tcp: ModBusSlave_recv() +I (230244) modbus: ModbusSlaveProcess() +I (230244) modbus: check id... +I (230244) modbus: ok +I (230244) example: expect speed: 0.000000 real_pulses:0 +I (230244) modbus: add: 0, length: 10 +I (230244) example: new speed:399.000000 +I (230254) modbus: Read Holding Registers +I (230254) example: expect speed: 0.000000 real_pulses:0 +I (230264) example: new speed:399.000000 +I (230264) example: expect speed: 0.000000 real_pulses:0 +I (230264) example: new speed:399.000000 +I (230274) example: expect speed: 0.000000 real_pulses:0 +I (230274) example: new speed:399.000000 +I (230284) example: expect speed: 0.000000 real_pulses:0 +I (230284) example: new speed:399.000000 +I (230294) example: expect speed: 0.000000 real_pulses:0 +I (230294) example: new speed:399.000000 +I (230304) example: expect speed: 0.000000 real_pulses:0 +I (230314) example: new speed:399.000000 +I (230314) example: expect speed: 0.000000 real_pulses:0 +I (230314) example: new speed:399.000000 +I (230324) example: expect speed: 0.000000 real_pulses:0 +I (230324) example: new speed:399.000000 +I (230334) example: expect speed: 0.000000 real_pulses:0 +I (230334) example: new speed:399.000000 +I (230344) example: expect speed: 0.000000 real_pulses:0 +I (230344) example: new speed:399.000000 +I (230354) example: expect speed: 0.000000 real_pulses:0 +I (230364) example: new speed:399.000000 +I (230364) example: expect speed: 0.000000 real_pulses:0 +I (230364) example: new speed:399.000000 +I (230374) example: expect speed: 0.000000 real_pulses:0 +I (230374) example: new speed:399.000000 +I (230384) example: expect speed: 0.000000 real_pulses:0 +I (230384) example: new speed:399.000000 +I (230394) example: expect speed: 0.000000 real_pulses:0 +I (230394) example: new speed:399.000000 +I (230404) example: expect speed: 0.000000 real_pulses:0 +I (230404) example: new speed:399.000000 +I (230414) example: expect speed: 0.000000 real_pulses:0 +I (230414) example: new speed:399.000000 +I (230424) example: expect speed: 0.000000 real_pulses:0 +I (230424) example: new speed:399.000000 +I (230434) example: expect speed: 0.000000 real_pulses:0 +I (230434) example: new speed:399.000000 +I (230444) example: expect speed: 0.000000 real_pulses:0 +I (230444) example: new speed:399.000000 +I (230454) example: expect speed: 0.000000 real_pulses:0 +I (230454) example: new speed:399.000000 +I (230464) example: expect speed: 0.000000 real_pulses:0 +I (230464) example: new speed:399.000000 +I (230474) example: expect speed: 0.000000 real_pulses:0 +I (230474) example: new speed:399.000000 +I (230484) example: expect speed: 0.000000 real_pulses:0 +I (230484) example: new speed:399.000000 +I (230494) example: expect speed: 0.000000 real_pulses:0 +I (230494) example: new speed:399.000000 +I (230504) example: expect speed: 0.000000 real_pulses:0 +I (230504) example: new speed:399.000000 +I (230514) example: expect speed: 0.000000 real_pulses:0 +I (230514) example: new speed:399.000000 +I (230524) example: expect speed: 0.000000 real_pulses:0 +I (230524) example: new speed:399.000000 +I (230534) example: expect speed: 0.000000 real_pulses:0 +I (230534) example: new speed:399.000000 +I (230544) example: expect speed: 0.000000 real_pulses:0 +I (230544) example: new speed:399.000000 +I (230554) example: expect speed: 0.000000 real_pulses:0 +I (230564) example: new speed:399.000000 +I (230564) example: expect speed: 0.000000 real_pulses:0 +I (230564) example: new speed:399.000000 +I (230574) example: expect speed: 0.000000 real_pulses:0 +I (230574) example: new speed:399.000000 +I (230584) example: expect speed: 0.000000 real_pulses:0 +I (230584) example: new speed:399.000000 +I (230594) example: expect speed: 0.000000 real_pulses:0 +I (230594) example: new speed:399.000000 +I (230604) example: expect speed: 0.000000 real_pulses:0 +I (230604) example: new speed:399.000000 +I (230614) example: expect speed: 0.000000 real_pulses:0 +I (230614) example: new speed:399.000000 +I (230624) example: expect speed: 0.000000 real_pulses:0 +I (230624) example: new speed:399.000000 +I (230634) example: expect speed: 0.000000 real_pulses:0 +I (230634) example: new speed:399.000000 +I (230644) example: expect speed: 0.000000 real_pulses:0 +I (230644) example: new speed:399.000000 +I (230654) example: expect speed: 0.000000 real_pulses:0 +I (230654) example: new speed:399.000000 +I (230664) example: expect speed: 0.000000 real_pulses:0 +I (230664) example: new speed:399.000000 +I (230674) example: expect speed: 0.000000 real_pulses:0 +I (230674) example: new speed:399.000000 +I (230684) example: expect speed: 0.000000 real_pulses:0 +I (230684) example: new speed:399.000000 +I (230694) example: expect speed: 0.000000 real_pulses:0 +I (230694) example: new speed:399.000000 +I (230704) example: expect speed: 0.000000 real_pulses:0 +I (230704) example: new speed:399.000000 +I (230714) example: expect speed: 0.000000 real_pulses:0 +I (230714) example: new speed:399.000000 +I (230724) example: expect speed: 0.000000 real_pulses:0 +I (230724) example: new speed:399.000000 +I (230734) example: expect speed: 0.000000 real_pulses:0 +I (230734) example: new speed:399.000000 +I (230744) example: expect speed: 0.000000 real_pulses:0 +I (230744) example: new speed:399.000000 +I (230754) example: expect speed: 0.000000 real_pulses:0 +I (230754) example: new speed:399.000000 +I (230764) example: expect speed: 0.000000 real_pulses:0 +I (230764) example: new speed:399.000000 +I (230774) example: expect speed: 0.000000 real_pulses:0 +I (230774) example: new speed:399.000000 +I (230784) example: expect speed: 0.000000 real_pulses:0 +I (230784) example: new speed:399.000000 +I (230794) example: expect speed: 0.000000 real_pulses:0 +I (230794) example: new speed:399.000000 +I (230804) example: expect speed: 0.000000 real_pulses:0 +I (230804) example: new speed:399.000000 +I (230814) example: expect speed: 0.000000 real_pulses:0 +I (230814) example: new speed:399.000000 +I (230824) example: expect speed: 0.000000 real_pulses:0 +I (230824) example: new speed:399.000000 +I (230834) example: expect speed: 0.000000 real_pulses:0 +I (230834) example: new speed:399.000000 +I (230844) example: expect speed: 0.000000 real_pulses:0 +I (230844) example: new speed:399.000000 +I (230854) example: expect speed: 0.000000 real_pulses:0 +I (230854) example: new speed:399.000000 +I (230864) example: expect speed: 0.000000 real_pulses:0 +I (230864) example: new speed:399.000000 +I (230874) example: expect speed: 0.000000 real_pulses:0 +I (230874) example: new speed:399.000000 +I (230884) example: expect speed: 0.000000 real_pulses:0 +I (230884) example: new speed:399.000000 +I (230894) example: expect speed: 0.000000 real_pulses:0 +I (230894) example: new speed:399.000000 +I (230904) example: expect speed: 0.000000 real_pulses:0 +I (230904) example: new speed:399.000000 +I (230914) example: expect speed: 0.000000 real_pulses:0 +I (230914) example: new speed:399.000000 +I (230924) example: expect speed: 0.000000 real_pulses:0 +I (230924) example: new speed:399.000000 +I (230934) example: expect speed: 0.000000 real_pulses:0 +I (230934) example: new speed:399.000000 +I (230944) example: expect speed: 0.000000 real_pulses:0 +I (230944) example: new speed:399.000000 +I (230954) example: expect speed: 0.000000 real_pulses:0 +I (230954) example: new speed:399.000000 +I (230964) example: expect speed: 0.000000 real_pulses:0 +I (230964) example: new speed:399.000000 +I (230974) example: expect speed: 0.000000 real_pulses:0 +I (230974) example: new speed:399.000000 +I (230984) example: expect speed: 0.000000 real_pulses:0 +I (230984) example: new speed:399.000000 +I (230994) example: expect speed: 0.000000 real_pulses:0 +I (230994) example: new speed:399.000000 +I (231004) example: expect speed: 0.000000 real_pulses:0 +I (231004) example: new speed:399.000000 +I (231014) example: expect speed: 0.000000 real_pulses:0 +I (231014) example: new speed:399.000000 +I (231024) example: expect speed: 0.000000 real_pulses:0 +I (231024) example: new speed:399.000000 +I (231034) example: expect speed: 0.000000 real_pulses:0 +I (231034) example: new speed:399.000000 +I (231044) example: expect speed: 0.000000 real_pulses:0 +I (231044) example: new speed:399.000000 +I (231054) example: expect speed: 0.000000 real_pulses:0 +I (231054) example: new speed:399.000000 +I (231064) example: expect speed: 0.000000 real_pulses:0 +I (231064) example: new speed:399.000000 +I (231074) example: expect speed: 0.000000 real_pulses:0 +I (231074) example: new speed:399.000000 +I (231084) example: expect speed: 0.000000 real_pulses:0 +I (231084) example: new speed:399.000000 +I (231094) example: expect speed: 0.000000 real_pulses:0 +I (231094) example: new speed:399.000000 +I (231104) example: expect speed: 0.000000 real_pulses:0 +I (231104) example: new speed:399.000000 +I (231114) example: expect speed: 0.000000 real_pulses:0 +I (231114) example: new speed:399.000000 +I (231124) example: expect speed: 0.000000 real_pulses:0 +I (231124) example: new speed:399.000000 +I (231134) example: expect speed: 0.000000 real_pulses:0 +I (231134) example: new speed:399.000000 +I (231144) example: expect speed: 0.000000 real_pulses:0 +I (231144) example: new speed:399.000000 +I (231154) example: expect speed: 0.000000 real_pulses:0 +I (231154) example: new speed:399.000000 +I (231164) example: expect speed: 0.000000 real_pulses:0 +I (231164) example: new speed:399.000000 +I (231174) example: expect speed: 0.000000 real_pulses:0 +I (231174) example: new speed:399.000000 +I (231184) example: expect speed: 0.000000 real_pulses:0 +I (231184) example: new speed:399.000000 +I (231194) example: expect speed: 0.000000 real_pulses:0 +I (231194) example: new speed:399.000000 +I (231204) example: expect speed: 0.000000 real_pulses:0 +I (231204) example: new speed:399.000000 +I (231214) example: expect speed: 0.000000 real_pulses:0 +I (231214) example: new speed:399.000000 +I (231224) example: expect speed: 0.000000 real_pulses:0 +I (231224) example: new speed:399.000000 +I (231234) example: expect speed: 0.000000 real_pulses:0 +I (231234) example: new speed:399.000000 +I (231244) example: expect speed: 0.000000 real_pulses:0 +I (231244) example: new speed:399.000000 +I (231254) example: expect speed: 0.000000 real_pulses:0 +I (231254) example: new speed:399.000000 +I (231264) example: expect speed: 0.000000 real_pulses:0 +I (231274) example: new speed:399.000000 +I (231274) modbus tcp: ModBusSlave_recv() +I (231274) modbus: ModbusSlaveProcess() +I (231274) modbus: check id... +I (231274) modbus: ok +I (231274) modbus: add: 0, length: 10 +I (231274) modbus: Read Holding Registers +I (231274) example: expect speed: 0.000000 real_pulses:0 +I (231284) example: new speed:399.000000 +I (231284) example: expect speed: 0.000000 real_pulses:0 +I (231284) example: new speed:399.000000 +I (231294) example: expect speed: 0.000000 real_pulses:0 +I (231294) example: new speed:399.000000 +I (231304) example: expect speed: 0.000000 real_pulses:0 +I (231304) example: new speed:399.000000 +I (231314) example: expect speed: 0.000000 real_pulses:0 +I (231314) example: new speed:399.000000 +I (231324) example: expect speed: 0.000000 real_pulses:0 +I (231324) example: new speed:399.000000 +I (231334) example: expect speed: 0.000000 real_pulses:0 +I (231344) example: new speed:399.000000 +I (231344) example: expect speed: 0.000000 real_pulses:0 +I (231344) example: new speed:399.000000 +I (231354) example: expect speed: 0.000000 real_pulses:0 +I (231354) example: new speed:399.000000 +I (231374) example: expect speed: 0.000000 real_pulses:0 +I (231374) example: new speed:399.000000 +I (231374) example: expect speed: 0.000000 real_pulses:0 +I (231384) example: new speed:399.000000 +I (231384) example: expect speed: 0.000000 real_pulses:0 +I (231384) example: new speed:399.000000 +I (231394) example: expect speed: 0.000000 real_pulses:0 +I (231394) example: new speed:399.000000 +I (231404) example: expect speed: 0.000000 real_pulses:0 +I (231404) example: new speed:399.000000 +I (231414) example: expect speed: 0.000000 real_pulses:0 +I (231414) example: new speed:399.000000 +I (231424) example: expect speed: 0.000000 real_pulses:0 +I (231434) example: new speed:399.000000 +I (231434) example: expect speed: 0.000000 real_pulses:0 +I (231434) example: new speed:399.000000 +I (231444) example: expect speed: 0.000000 real_pulses:0 +I (231444) example: new speed:399.000000 +I (231454) example: expect speed: 0.000000 real_pulses:0 +I (231454) example: new speed:399.000000 +I (231464) example: expect speed: 0.000000 real_pulses:0 +I (231464) example: new speed:399.000000 +I (231474) example: expect speed: 0.000000 real_pulses:0 +I (231474) example: new speed:399.000000 +I (231484) example: expect speed: 0.000000 real_pulses:0 +I (231484) example: new speed:399.000000 +I (231494) example: expect speed: 0.000000 real_pulses:0 +I (231494) example: new speed:399.000000 +I (231504) example: expect speed: 0.000000 real_pulses:0 +I (231504) example: new speed:399.000000 +I (231514) example: expect speed: 0.000000 real_pulses:0 +I (231514) example: new speed:399.000000 +I (231524) example: expect speed: 0.000000 real_pulses:0 +I (231524) example: new speed:399.000000 +I (231534) example: expect speed: 0.000000 real_pulses:0 +I (231534) example: new speed:399.000000 +I (231544) example: expect speed: 0.000000 real_pulses:0 +I (231544) example: new speed:399.000000 +I (231554) example: expect speed: 0.000000 real_pulses:0 +I (231554) example: new speed:399.000000 +I (231564) example: expect speed: 0.000000 real_pulses:0 +I (231564) example: new speed:399.000000 +I (231574) example: expect speed: 0.000000 real_pulses:0 +I (231584) example: new speed:399.000000 +I (231584) example: expect speed: 0.000000 real_pulses:0 +I (231594) example: new speed:399.000000 +I (231594) example: expect speed: 0.000000 real_pulses:0 +I (231594) example: new speed:399.000000 +I (231604) example: expect speed: 0.000000 real_pulses:0 +I (231604) example: new speed:399.000000 +I (231614) example: expect speed: 0.000000 real_pulses:0 +I (231614) example: new speed:399.000000 +I (231624) example: expect speed: 0.000000 real_pulses:0 +I (231624) example: new speed:399.000000 +I (231634) example: expect speed: 0.000000 real_pulses:0 +I (231634) example: new speed:399.000000 +I (231644) example: expect speed: 0.000000 real_pulses:0 +I (231644) example: new speed:399.000000 +I (231654) example: expect speed: 0.000000 real_pulses:0 +I (231654) example: new speed:399.000000 +I (231664) example: expect speed: 0.000000 real_pulses:0 +I (231664) example: new speed:399.000000 +I (231674) example: expect speed: 0.000000 real_pulses:0 +I (231674) example: new speed:399.000000 +I (231684) example: expect speed: 0.000000 real_pulses:0 +I (231684) example: new speed:399.000000 +I (231694) example: expect speed: 0.000000 real_pulses:0 +I (231694) example: new speed:399.000000 +I (231704) example: expect speed: 0.000000 real_pulses:0 +I (231704) example: new speed:399.000000 +I (231714) example: expect speed: 0.000000 real_pulses:0 +I (231714) example: new speed:399.000000 +I (231724) example: expect speed: 0.000000 real_pulses:0 +I (231724) example: new speed:399.000000 +I (231734) example: expect speed: 0.000000 real_pulses:0 +I (231734) example: new speed:399.000000 +I (231744) example: expect speed: 0.000000 real_pulses:0 +I (231744) example: new speed:399.000000 +I (231754) example: expect speed: 0.000000 real_pulses:0 +I (231754) example: new speed:399.000000 +I (231764) example: expect speed: 0.000000 real_pulses:0 +I (231764) example: new speed:399.000000 +I (231774) example: expect speed: 0.000000 real_pulses:0 +I (231774) example: new speed:399.000000 +I (231784) example: expect speed: 0.000000 real_pulses:0 +I (231784) example: new speed:399.000000 +I (231794) example: expect speed: 0.000000 real_pulses:0 +I (231794) example: new speed:399.000000 +I (231804) example: expect speed: 0.000000 real_pulses:0 +I (231804) example: new speed:399.000000 +I (231814) example: expect speed: 0.000000 real_pulses:0 +I (231814) example: new speed:399.000000 +I (231824) example: expect speed: 0.000000 real_pulses:0 +I (231824) example: new speed:399.000000 +I (231834) example: expect speed: 0.000000 real_pulses:0 +I (231834) example: new speed:399.000000 +I (231844) example: expect speed: 0.000000 real_pulses:0 +I (231844) example: new speed:399.000000 +I (231854) example: expect speed: 0.000000 real_pulses:0 +I (231854) example: new speed:399.000000 +I (231864) example: expect speed: 0.000000 real_pulses:0 +I (231864) example: new speed:399.000000 +I (231874) example: expect speed: 0.000000 real_pulses:0 +I (231874) example: new speed:399.000000 +I (231884) example: expect speed: 0.000000 real_pulses:0 +I (231884) example: new speed:399.000000 +I (231894) example: expect speed: 0.000000 real_pulses:0 +I (231894) example: new speed:399.000000 +I (231904) example: expect speed: 0.000000 real_pulses:0 +I (231904) example: new speed:399.000000 +I (231914) example: expect speed: 0.000000 real_pulses:0 +I (231914) example: new speed:399.000000 +I (231924) example: expect speed: 0.000000 real_pulses:0 +I (231924) example: new speed:399.000000 +I (231934) example: expect speed: 0.000000 real_pulses:0 +I (231934) example: new speed:399.000000 +I (231944) example: expect speed: 0.000000 real_pulses:0 +I (231944) example: new speed:399.000000 +I (231954) example: expect speed: 0.000000 real_pulses:0 +I (231954) example: new speed:399.000000 +I (231964) example: expect speed: 0.000000 real_pulses:0 +I (231964) example: new speed:399.000000 +I (231974) example: expect speed: 0.000000 real_pulses:0 +I (231974) example: new speed:399.000000 +I (231984) example: expect speed: 0.000000 real_pulses:0 +I (231984) example: new speed:399.000000 +I (231994) example: expect speed: 0.000000 real_pulses:0 +I (231994) example: new speed:399.000000 +I (232004) example: expect speed: 0.000000 real_pulses:0 +I (232004) example: new speed:399.000000 +I (232014) example: expect speed: 0.000000 real_pulses:0 +I (232014) example: new speed:399.000000 +I (232024) example: expect speed: 0.000000 real_pulses:0 +I (232024) example: new speed:399.000000 +I (232034) example: expect speed: 0.000000 real_pulses:0 +I (232034) example: new speed:399.000000 +I (232044) example: expect speed: 0.000000 real_pulses:0 +I (232044) example: new speed:399.000000 +I (232054) example: expect speed: 0.000000 real_pulses:0 +I (232054) example: new speed:399.000000 +I (232064) example: expect speed: 0.000000 real_pulses:0 +I (232064) example: new speed:399.000000 +I (232074) example: expect speed: 0.000000 real_pulses:0 +I (232074) example: new speed:399.000000 +I (232084) example: expect speed: 0.000000 real_pulses:0 +I (232084) example: new speed:399.000000 +I (232094) example: expect speed: 0.000000 real_pulses:0 +I (232094) example: new speed:399.000000 +I (232104) example: expect speed: 0.000000 real_pulses:0 +I (232104) example: new speed:399.000000 +I (232114) example: expect speed: 0.000000 real_pulses:0 +I (232114) example: new speed:399.000000 +I (232124) example: expect speed: 0.000000 real_pulses:0 +I (232124) example: new speed:399.000000 +I (232134) example: expect speed: 0.000000 real_pulses:0 +I (232134) example: new speed:399.000000 +I (232144) example: expect speed: 0.000000 real_pulses:0 +I (232144) example: new speed:399.000000 +I (232154) example: expect speed: 0.000000 real_pulses:0 +I (232154) example: new speed:399.000000 +I (232164) example: expect speed: 0.000000 real_pulses:0 +I (232164) example: new speed:399.000000 +I (232174) example: expect speed: 0.000000 real_pulses:0 +I (232174) example: new speed:399.000000 +I (232184) example: expect speed: 0.000000 real_pulses:0 +I (232194) example: new speed:399.000000 +I (232194) modbus tcp: ModBusSlave_recv() +I (232194) modbus: ModbusSlaveProcess() +I (232194) modbus: check id... +I (232194) modbus: ok +I (232194) modbus: add: 0, length: 10 +I (232194) modbus: Read Holding Registers +I (232194) example: expect speed: 0.000000 real_pulses:0 +I (232204) example: new speed:399.000000 +I (232204) example: expect speed: 0.000000 real_pulses:0 +I (232204) example: new speed:399.000000 +I (232214) example: expect speed: 0.000000 real_pulses:0 +I (232214) example: new speed:399.000000 +I (232224) example: expect speed: 0.000000 real_pulses:0 +I (232224) example: new speed:399.000000 +I (232234) example: expect speed: 0.000000 real_pulses:0 +I (232244) example: new speed:399.000000 +I (232244) example: expect speed: 0.000000 real_pulses:0 +I (232244) example: new speed:399.000000 +I (232254) example: expect speed: 0.000000 real_pulses:0 +I (232254) example: new speed:399.000000 +I (232264) example: expect speed: 0.000000 real_pulses:0 +I (232264) example: new speed:399.000000 +I (232274) example: expect speed: 0.000000 real_pulses:0 +I (232274) example: new speed:399.000000 +I (232284) example: expect speed: 0.000000 real_pulses:0 +I (232294) example: new speed:399.000000 +I (232294) example: expect speed: 0.000000 real_pulses:0 +I (232294) example: new speed:399.000000 +I (232304) example: expect speed: 0.000000 real_pulses:0 +I (232304) example: new speed:399.000000 +I (232314) example: expect speed: 0.000000 real_pulses:0 +I (232314) example: new speed:399.000000 +I (232324) example: expect speed: 0.000000 real_pulses:0 +I (232324) example: new speed:399.000000 +I (232334) example: expect speed: 0.000000 real_pulses:0 +I (232334) example: new speed:399.000000 +I (232344) example: expect speed: 0.000000 real_pulses:0 +I (232344) example: new speed:399.000000 +I (232354) example: expect speed: 0.000000 real_pulses:0 +I (232354) example: new speed:399.000000 +I (232364) example: expect speed: 0.000000 real_pulses:0 +I (232364) example: new speed:399.000000 +I (232374) example: expect speed: 0.000000 real_pulses:0 +I (232374) example: new speed:399.000000 +I (232384) example: expect speed: 0.000000 real_pulses:0 +I (232384) example: new speed:399.000000 +I (232394) example: expect speed: 0.000000 real_pulses:0 +I (232394) example: new speed:399.000000 +I (232404) example: expect speed: 0.000000 real_pulses:0 +I (232404) example: new speed:399.000000 +I (232414) example: expect speed: 0.000000 real_pulses:0 +I (232414) example: new speed:399.000000 +I (232424) example: expect speed: 0.000000 real_pulses:0 +I (232424) example: new speed:399.000000 +I (232434) example: expect speed: 0.000000 real_pulses:0 +I (232434) example: new speed:399.000000 +I (232444) example: expect speed: 0.000000 real_pulses:0 +I (232444) example: new speed:399.000000 +I (232454) example: expect speed: 0.000000 real_pulses:0 +I (232454) example: new speed:399.000000 +I (232464) example: expect speed: 0.000000 real_pulses:0 +I (232464) example: new speed:399.000000 +I (232474) example: expect speed: 0.000000 real_pulses:0 +I (232474) example: new speed:399.000000 +I (232484) example: expect speed: 0.000000 real_pulses:0 +I (232484) example: new speed:399.000000 +I (232494) example: expect speed: 0.000000 real_pulses:0 +I (232494) example: new speed:399.000000 +I (232504) example: expect speed: 0.000000 real_pulses:0 +I (232504) example: new speed:399.000000 +I (232514) example: expect speed: 0.000000 real_pulses:0 +I (232514) example: new speed:399.000000 +I (232524) example: expect speed: 0.000000 real_pulses:0 +I (232524) example: new speed:399.000000 +I (232534) example: expect speed: 0.000000 real_pulses:0 +I (232534) example: new speed:399.000000 +I (232544) example: expect speed: 0.000000 real_pulses:0 +I (232544) example: new speed:399.000000 +I (232554) example: expect speed: 0.000000 real_pulses:0 +I (232554) example: new speed:399.000000 +I (232564) example: expect speed: 0.000000 real_pulses:0 +I (232564) example: new speed:399.000000 +I (232574) example: expect speed: 0.000000 real_pulses:0 +I (232574) example: new speed:399.000000 +I (232584) example: expect speed: 0.000000 real_pulses:0 +I (232584) example: new speed:399.000000 +I (232594) example: expect speed: 0.000000 real_pulses:0 +I (232594) example: new speed:399.000000 +I (232604) example: expect speed: 0.000000 real_pulses:0 +I (232604) example: new speed:399.000000 +I (232614) example: expect speed: 0.000000 real_pulses:0 +I (232614) example: new speed:399.000000 +I (232624) example: expect speed: 0.000000 real_pulses:0 +I (232624) example: new speed:399.000000 +I (232634) example: expect speed: 0.000000 real_pulses:0 +I (232634) example: new speed:399.000000 +I (232644) example: expect speed: 0.000000 real_pulses:0 +I (232644) example: new speed:399.000000 +I (232654) example: expect speed: 0.000000 real_pulses:0 +I (232654) example: new speed:399.000000 +I (232664) example: expect speed: 0.000000 real_pulses:0 +I (232664) example: new speed:399.000000 +I (232674) example: expect speed: 0.000000 real_pulses:0 +I (232674) example: new speed:399.000000 +I (232684) example: expect speed: 0.000000 real_pulses:0 +I (232684) example: new speed:399.000000 +I (232694) example: expect speed: 0.000000 real_pulses:0 +I (232694) example: new speed:399.000000 +I (232704) example: expect speed: 0.000000 real_pulses:0 +I (232704) example: new speed:399.000000 +I (232714) example: expect speed: 0.000000 real_pulses:0 +I (232714) example: new speed:399.000000 +I (232724) example: expect speed: 0.000000 real_pulses:0 +I (232724) example: new speed:399.000000 +I (232734) example: expect speed: 0.000000 real_pulses:0 +I (232734) example: new speed:399.000000 +I (232744) example: expect speed: 0.000000 real_pulses:0 +I (232744) example: new speed:399.000000 +I (232754) example: expect speed: 0.000000 real_pulses:0 +I (232754) example: new speed:399.000000 +I (232764) example: expect speed: 0.000000 real_pulses:0 +I (232764) example: new speed:399.000000 +I (232774) example: expect speed: 0.000000 real_pulses:0 +I (232774) example: new speed:399.000000 +I (232784) example: expect speed: 0.000000 real_pulses:0 +I (232784) example: new speed:399.000000 +I (232794) example: expect speed: 0.000000 real_pulses:0 +I (232794) example: new speed:399.000000 +I (232804) example: expect speed: 0.000000 real_pulses:0 +I (232804) example: new speed:399.000000 +I (232814) example: expect speed: 0.000000 real_pulses:0 +I (232814) example: new speed:399.000000 +I (232824) example: expect speed: 0.000000 real_pulses:0 +I (232824) example: new speed:399.000000 +I (232834) example: expect speed: 0.000000 real_pulses:0 +I (232834) example: new speed:399.000000 +I (232844) example: expect speed: 0.000000 real_pulses:0 +I (232844) example: new speed:399.000000 +I (232854) example: expect speed: 0.000000 real_pulses:0 +I (232854) example: new speed:399.000000 +I (232864) example: expect speed: 0.000000 real_pulses:0 +I (232864) example: new speed:399.000000 +I (232874) example: expect speed: 0.000000 real_pulses:0 +I (232874) example: new speed:399.000000 +I (232884) example: expect speed: 0.000000 real_pulses:0 +I (232884) example: new speed:399.000000 +I (232894) example: expect speed: 0.000000 real_pulses:0 +I (232894) example: new speed:399.000000 +I (232904) example: expect speed: 0.000000 real_pulses:0 +I (232904) example: new speed:399.000000 +I (232914) example: expect speed: 0.000000 real_pulses:0 +I (232914) example: new speed:399.000000 +I (232924) example: expect speed: 0.000000 real_pulses:0 +I (232924) example: new speed:399.000000 +I (232934) example: expect speed: 0.000000 real_pulses:0 +I (232934) example: new speed:399.000000 +I (232944) example: expect speed: 0.000000 real_pulses:0 +I (232944) example: new speed:399.000000 +I (232954) example: expect speed: 0.000000 real_pulses:0 +I (232954) example: new speed:399.000000 +I (232964) example: expect speed: 0.000000 real_pulses:0 +I (232964) example: new speed:399.000000 +I (232974) example: expect speed: 0.000000 real_pulses:0 +I (232974) example: new speed:399.000000 +I (232984) example: expect speed: 0.000000 real_pulses:0 +I (232984) example: new speed:399.000000 +I (232994) example: expect speed: 0.000000 real_pulses:0 +I (232994) example: new speed:399.000000 +I (233004) example: expect speed: 0.000000 real_pulses:0 +I (233004) example: new speed:399.000000 +I (233014) example: expect speed: 0.000000 real_pulses:0 +I (233014) example: new speed:399.000000 +I (233024) example: expect speed: 0.000000 real_pulses:0 +I (233024) example: new speed:399.000000 +I (233034) example: expect speed: 0.000000 real_pulses:0 +I (233034) example: new speed:399.000000 +I (233044) example: expect speed: 0.000000 real_pulses:0 +I (233044) example: new speed:399.000000 +I (233054) example: expect speed: 0.000000 real_pulses:0 +I (233054) example: new speed:399.000000 +I (233064) example: expect speed: 0.000000 real_pulses:0 +I (233064) example: new speed:399.000000 +I (233074) example: expect speed: 0.000000 real_pulses:0 +I (233074) example: new speed:399.000000 +I (233084) example: expect speed: 0.000000 real_pulses:0 +I (233084) example: new speed:399.000000 +I (233094) example: expect speed: 0.000000 real_pulses:0 +I (233094) example: new speed:399.000000 +I (233104) example: expect speed: 0.000000 real_pulses:0 +I (233104) example: new speed:399.000000 +I (233114) example: expect speed: 0.000000 real_pulses:0 +I (233114) example: new speed:399.000000 +I (233124) example: expect speed: 0.000000 real_pulses:0 +I (233124) example: new speed:399.000000 +I (233134) example: expect speed: 0.000000 real_pulses:0 +I (233134) example: new speed:399.000000 +I (233144) example: expect speed: 0.000000 real_pulses:0 +I (233144) example: new speed:399.000000 +I (233154) example: expect speed: 0.000000 real_pulses:0 +I (233154) example: new speed:399.000000 +I (233164) example: expect speed: 0.000000 real_pulses:0 +I (233164) example: new speed:399.000000 +I (233174) example: expect speed: 0.000000 real_pulses:0 +I (233174) example: new speed:399.000000 +I (233184) example: expect speed: 0.000000 real_pulses:0 +I (233184) example: new speed:399.000000 +I (233194) example: expect speed: 0.000000 real_pulses:0 +I (233194) example: new speed:399.000000 +I (233204) example: expect speed: 0.000000 real_pulses:0 +I (233204) example: new speed:399.000000 +I (233214) example: expect speed: 0.000000 real_pulses:0 +I (233224) example: new speed:399.000000 +I (233224) modbus tcp: ModBusSlave_recv() +I (233224) example: expect speed: 0.000000 real_pulses:0 +I (233224) modbus: ModbusSlaveProcess() +I (233224) example: new speed:399.000000 +I (233234) modbus: check id... +I (233234) modbus: ok +I (233234) modbus: add: 0, length: 10 +I (233234) modbus: Read Holding Registers +I (233234) example: expect speed: 0.000000 real_pulses:0 +I (233244) example: new speed:399.000000 +I (233244) example: expect speed: 0.000000 real_pulses:0 +I (233244) example: new speed:399.000000 +I (233254) example: expect speed: 0.000000 real_pulses:0 +I (233254) example: new speed:399.000000 +I (233264) example: expect speed: 0.000000 real_pulses:0 +I (233264) example: new speed:399.000000 +I (233274) example: expect speed: 0.000000 real_pulses:0 +I (233284) example: new speed:399.000000 +I (233284) example: expect speed: 0.000000 real_pulses:0 +I (233284) example: new speed:399.000000 +I (233294) example: expect speed: 0.000000 real_pulses:0 +I (233294) example: new speed:399.000000 +I (233304) example: expect speed: 0.000000 real_pulses:0 +I (233304) example: new speed:399.000000 +I (233314) example: expect speed: 0.000000 real_pulses:0 +I (233314) example: new speed:399.000000 +I (233324) example: expect speed: 0.000000 real_pulses:0 +I (233324) example: new speed:399.000000 +I (233334) example: expect speed: 0.000000 real_pulses:0 +I (233334) example: new speed:399.000000 +I (233344) example: expect speed: 0.000000 real_pulses:0 +I (233344) example: new speed:399.000000 +I (233354) example: expect speed: 0.000000 real_pulses:0 +I (233354) example: new speed:399.000000 +I (233364) example: expect speed: 0.000000 real_pulses:0 +I (233364) example: new speed:399.000000 +I (233374) example: expect speed: 0.000000 real_pulses:0 +I (233374) example: new speed:399.000000 +I (233384) example: expect speed: 0.000000 real_pulses:0 +I (233384) example: new speed:399.000000 +I (233394) example: expect speed: 0.000000 real_pulses:0 +I (233394) example: new speed:399.000000 +I (233404) example: expect speed: 0.000000 real_pulses:0 +I (233404) example: new speed:399.000000 +I (233414) example: expect speed: 0.000000 real_pulses:0 +I (233414) example: new speed:399.000000 +I (233424) example: expect speed: 0.000000 real_pulses:0 +I (233424) example: new speed:399.000000 +I (233434) example: expect speed: 0.000000 real_pulses:0 +I (233434) example: new speed:399.000000 +I (233444) example: expect speed: 0.000000 real_pulses:0 +I (233444) example: new speed:399.000000 +I (233454) example: expect speed: 0.000000 real_pulses:0 +I (233454) example: new speed:399.000000 +I (233464) example: expect speed: 0.000000 real_pulses:0 +I (233464) example: new speed:399.000000 +I (233474) example: expect speed: 0.000000 real_pulses:0 +I (233474) example: new speed:399.000000 +I (233484) example: expect speed: 0.000000 real_pulses:0 +I (233484) example: new speed:399.000000 +I (233494) example: expect speed: 0.000000 real_pulses:0 +I (233494) example: new speed:399.000000 +I (233504) example: expect speed: 0.000000 real_pulses:0 +I (233504) example: new speed:399.000000 +I (233514) example: expect speed: 0.000000 real_pulses:0 +I (233514) example: new speed:399.000000 +I (233524) example: expect speed: 0.000000 real_pulses:0 +I (233524) example: new speed:399.000000 +I (233534) example: expect speed: 0.000000 real_pulses:0 +I (233534) example: new speed:399.000000 +I (233544) example: expect speed: 0.000000 real_pulses:0 +I (233544) example: new speed:399.000000 +I (233554) example: expect speed: 0.000000 real_pulses:0 +I (233554) example: new speed:399.000000 +I (233564) example: expect speed: 0.000000 real_pulses:0 +I (233564) example: new speed:399.000000 +I (233574) example: expect speed: 0.000000 real_pulses:0 +I (233574) example: new speed:399.000000 +I (233584) example: expect speed: 0.000000 real_pulses:0 +I (233584) example: new speed:399.000000 +I (233594) example: expect speed: 0.000000 real_pulses:0 +I (233594) example: new speed:399.000000 +I (233604) example: expect speed: 0.000000 real_pulses:0 +I (233604) example: new speed:399.000000 +I (233614) example: expect speed: 0.000000 real_pulses:0 +I (233614) example: new speed:399.000000 +I (233624) example: expect speed: 0.000000 real_pulses:0 +I (233624) example: new speed:399.000000 +I (233634) example: expect speed: 0.000000 real_pulses:0 +I (233634) example: new speed:399.000000 +I (233644) example: expect speed: 0.000000 real_pulses:0 +I (233644) example: new speed:399.000000 +I (233654) example: expect speed: 0.000000 real_pulses:0 +I (233654) example: new speed:399.000000 +I (233664) example: expect speed: 0.000000 real_pulses:0 +I (233664) example: new speed:399.000000 +I (233674) example: expect speed: 0.000000 real_pulses:0 +I (233674) example: new speed:399.000000 +I (233684) example: expect speed: 0.000000 real_pulses:0 +I (233684) example: new speed:399.000000 +I (233694) example: expect speed: 0.000000 real_pulses:0 +I (233694) example: new speed:399.000000 +I (233704) example: expect speed: 0.000000 real_pulses:0 +I (233704) example: new speed:399.000000 +I (233714) example: expect speed: 0.000000 real_pulses:0 +I (233714) example: new speed:399.000000 +I (233724) example: expect speed: 0.000000 real_pulses:0 +I (233724) example: new speed:399.000000 +I (233734) example: expect speed: 0.000000 real_pulses:0 +I (233734) example: new speed:399.000000 +I (233744) example: expect speed: 0.000000 real_pulses:0 +I (233744) example: new speed:399.000000 +I (233754) example: expect speed: 0.000000 real_pulses:0 +I (233754) example: new speed:399.000000 +I (233764) example: expect speed: 0.000000 real_pulses:0 +I (233764) example: new speed:399.000000 +I (233774) example: expect speed: 0.000000 real_pulses:0 +I (233774) example: new speed:399.000000 +I (233784) example: expect speed: 0.000000 real_pulses:0 +I (233784) example: new speed:399.000000 +I (233794) example: expect speed: 0.000000 real_pulses:0 +I (233794) example: new speed:399.000000 +I (233804) example: expect speed: 0.000000 real_pulses:0 +I (233804) example: new speed:399.000000 +I (233814) example: expect speed: 0.000000 real_pulses:0 +I (233814) example: new speed:399.000000 +I (233824) example: expect speed: 0.000000 real_pulses:0 +I (233824) example: new speed:399.000000 +I (233834) example: expect speed: 0.000000 real_pulses:0 +I (233834) example: new speed:399.000000 +I (233844) example: expect speed: 0.000000 real_pulses:0 +I (233844) example: new speed:399.000000 +I (233854) example: expect speed: 0.000000 real_pulses:0 +I (233854) example: new speed:399.000000 +I (233864) example: expect speed: 0.000000 real_pulses:0 +I (233864) example: new speed:399.000000 +I (233874) example: expect speed: 0.000000 real_pulses:0 +I (233874) example: new speed:399.000000 +I (233884) example: expect speed: 0.000000 real_pulses:0 +I (233884) example: new speed:399.000000 +I (233894) example: expect speed: 0.000000 real_pulses:0 +I (233894) example: new speed:399.000000 +I (233904) example: expect speed: 0.000000 real_pulses:0 +I (233904) example: new speed:399.000000 +I (233914) example: expect speed: 0.000000 real_pulses:0 +I (233914) example: new speed:399.000000 +I (233924) example: expect speed: 0.000000 real_pulses:0 +I (233924) example: new speed:399.000000 +I (233934) example: expect speed: 0.000000 real_pulses:0 +I (233934) example: new speed:399.000000 +I (233944) example: expect speed: 0.000000 real_pulses:0 +I (233944) example: new speed:399.000000 +I (233954) example: expect speed: 0.000000 real_pulses:0 +I (233954) example: new speed:399.000000 +I (233964) example: expect speed: 0.000000 real_pulses:0 +I (233964) example: new speed:399.000000 +I (233974) example: expect speed: 0.000000 real_pulses:0 +I (233974) example: new speed:399.000000 +I (233984) example: expect speed: 0.000000 real_pulses:0 +I (233984) example: new speed:399.000000 +I (233994) example: expect speed: 0.000000 real_pulses:0 +I (233994) example: new speed:399.000000 +I (234004) example: expect speed: 0.000000 real_pulses:0 +I (234004) example: new speed:399.000000 +I (234014) example: expect speed: 0.000000 real_pulses:0 +I (234014) example: new speed:399.000000 +I (234024) example: expect speed: 0.000000 real_pulses:0 +I (234024) example: new speed:399.000000 +I (234034) example: expect speed: 0.000000 real_pulses:0 +I (234034) example: new speed:399.000000 +I (234044) example: expect speed: 0.000000 real_pulses:0 +I (234044) example: new speed:399.000000 +I (234054) example: expect speed: 0.000000 real_pulses:0 +I (234054) example: new speed:399.000000 +I (234064) example: expect speed: 0.000000 real_pulses:0 +I (234064) example: new speed:399.000000 +I (234074) example: expect speed: 0.000000 real_pulses:0 +I (234074) example: new speed:399.000000 +I (234084) example: expect speed: 0.000000 real_pulses:0 +I (234084) example: new speed:399.000000 +I (234094) example: expect speed: 0.000000 real_pulses:0 +I (234094) example: new speed:399.000000 +I (234104) example: expect speed: 0.000000 real_pulses:0 +I (234104) example: new speed:399.000000 +I (234114) example: expect speed: 0.000000 real_pulses:0 +I (234114) example: new speed:399.000000 +I (234124) example: expect speed: 0.000000 real_pulses:0 +I (234124) example: new speed:399.000000 +I (234134) example: expect speed: 0.000000 real_pulses:0 +I (234134) example: new speed:399.000000 +I (234144) example: expect speed: 0.000000 real_pulses:0 +I (234144) example: new speed:399.000000 +I (234154) example: expect speed: 0.000000 real_pulses:0 +I (234154) example: new speed:399.000000 +I (234164) example: expect speed: 0.000000 real_pulses:0 +I (234164) example: new speed:399.000000 +I (234174) example: expect speed: 0.000000 real_pulses:0 +I (234174) example: new speed:399.000000 +I (234184) example: expect speed: 0.000000 real_pulses:0 +I (234184) example: new speed:399.000000 +I (234194) example: expect speed: 0.000000 real_pulses:0 +I (234194) example: new speed:399.000000 +I (234204) example: expect speed: 0.000000 real_pulses:0 +I (234204) example: new speed:399.000000 +I (234214) example: expect speed: 0.000000 real_pulses:0 +I (234214) example: new speed:399.000000 +I (234224) example: expect speed: 0.000000 real_pulses:0 +I (234224) example: new speed:399.000000 +I (234234) example: expect speed: 0.000000 real_pulses:0 +I (234244) example: new speed:399.000000 +I (234244) modbus tcp: ModBusSlave_recv() +I (234244) modbus: ModbusSlaveProcess() +I (234244) modbus: check id... +I (234244) modbus: ok +I (234244) modbus: add: 0, length: 10 +I (234244) modbus: Read Holding Registers +I (234244) example: expect speed: 0.000000 real_pulses:0 +I (234254) example: new speed:399.000000 +I (234254) example: expect speed: 0.000000 real_pulses:0 +I (234254) example: new speed:399.000000 +I (234264) example: expect speed: 0.000000 real_pulses:0 +I (234264) example: new speed:399.000000 +I (234274) example: expect speed: 0.000000 real_pulses:0 +I (234274) example: new speed:399.000000 +I (234284) example: expect speed: 0.000000 real_pulses:0 +I (234284) example: new speed:399.000000 +I (234294) example: expect speed: 0.000000 real_pulses:0 +I (234304) example: new speed:399.000000 +I (234304) example: expect speed: 0.000000 real_pulses:0 +I (234304) example: new speed:399.000000 +I (234314) example: expect speed: 0.000000 real_pulses:0 +I (234314) example: new speed:399.000000 +I (234324) example: expect speed: 0.000000 real_pulses:0 +I (234324) example: new speed:399.000000 +I (234334) example: expect speed: 0.000000 real_pulses:0 +I (234334) example: new speed:399.000000 +I (234344) example: expect speed: 0.000000 real_pulses:0 +I (234354) example: new speed:399.000000 +I (234354) example: expect speed: 0.000000 real_pulses:0 +I (234354) example: new speed:399.000000 +I (234364) example: expect speed: 0.000000 real_pulses:0 +I (234364) example: new speed:399.000000 +I (234374) example: expect speed: 0.000000 real_pulses:0 +I (234374) example: new speed:399.000000 +I (234384) example: expect speed: 0.000000 real_pulses:0 +I (234384) example: new speed:399.000000 +I (234394) example: expect speed: 0.000000 real_pulses:0 +I (234394) example: new speed:399.000000 +I (234404) example: expect speed: 0.000000 real_pulses:0 +I (234404) example: new speed:399.000000 +I (234414) example: expect speed: 0.000000 real_pulses:0 +I (234414) example: new speed:399.000000 +I (234424) example: expect speed: 0.000000 real_pulses:0 +I (234424) example: new speed:399.000000 +I (234434) example: expect speed: 0.000000 real_pulses:0 +I (234434) example: new speed:399.000000 +I (234444) example: expect speed: 0.000000 real_pulses:0 +I (234444) example: new speed:399.000000 +I (234454) example: expect speed: 0.000000 real_pulses:0 +I (234454) example: new speed:399.000000 +I (234464) example: expect speed: 0.000000 real_pulses:0 +I (234464) example: new speed:399.000000 +I (234474) example: expect speed: 0.000000 real_pulses:0 +I (234474) example: new speed:399.000000 +I (234484) example: expect speed: 0.000000 real_pulses:0 +I (234484) example: new speed:399.000000 +I (234494) example: expect speed: 0.000000 real_pulses:0 +I (234494) example: new speed:399.000000 +I (234504) example: expect speed: 0.000000 real_pulses:0 +I (234504) example: new speed:399.000000 +I (234514) example: expect speed: 0.000000 real_pulses:0 +I (234514) example: new speed:399.000000 +I (234524) example: expect speed: 0.000000 real_pulses:0 +I (234524) example: new speed:399.000000 +I (234534) example: expect speed: 0.000000 real_pulses:0 +I (234534) example: new speed:399.000000 +I (234544) example: expect speed: 0.000000 real_pulses:0 +I (234544) example: new speed:399.000000 +I (234554) example: expect speed: 0.000000 real_pulses:0 +I (234554) example: new speed:399.000000 +I (234564) example: expect speed: 0.000000 real_pulses:0 +I (234564) example: new speed:399.000000 +I (234574) example: expect speed: 0.000000 real_pulses:0 +I (234574) example: new speed:399.000000 +I (234584) example: expect speed: 0.000000 real_pulses:0 +I (234584) example: new speed:399.000000 +I (234594) example: expect speed: 0.000000 real_pulses:0 +I (234594) example: new speed:399.000000 +I (234604) example: expect speed: 0.000000 real_pulses:0 +I (234604) example: new speed:399.000000 +I (234614) example: expect speed: 0.000000 real_pulses:0 +I (234614) example: new speed:399.000000 +I (234624) example: expect speed: 0.000000 real_pulses:0 +I (234624) example: new speed:399.000000 +I (234634) example: expect speed: 0.000000 real_pulses:0 +I (234634) example: new speed:399.000000 +I (234644) example: expect speed: 0.000000 real_pulses:0 +I (234644) example: new speed:399.000000 +I (234654) example: expect speed: 0.000000 real_pulses:0 +I (234654) example: new speed:399.000000 +I (234664) example: expect speed: 0.000000 real_pulses:0 +I (234664) example: new speed:399.000000 +I (234674) example: expect speed: 0.000000 real_pulses:0 +I (234674) example: new speed:399.000000 +I (234684) example: expect speed: 0.000000 real_pulses:0 +I (234684) example: new speed:399.000000 +I (234694) example: expect speed: 0.000000 real_pulses:0 +I (234694) example: new speed:399.000000 +I (234704) example: expect speed: 0.000000 real_pulses:0 +I (234704) example: new speed:399.000000 +I (234714) example: expect speed: 0.000000 real_pulses:0 +I (234714) example: new speed:399.000000 +I (234724) example: expect speed: 0.000000 real_pulses:0 +I (234724) example: new speed:399.000000 +I (234734) example: expect speed: 0.000000 real_pulses:0 +I (234734) example: new speed:399.000000 +I (234744) example: expect speed: 0.000000 real_pulses:0 +I (234744) example: new speed:399.000000 +I (234754) example: expect speed: 0.000000 real_pulses:0 +I (234754) example: new speed:399.000000 +I (234764) example: expect speed: 0.000000 real_pulses:0 +I (234764) example: new speed:399.000000 +I (234774) example: expect speed: 0.000000 real_pulses:0 +I (234774) example: new speed:399.000000 +I (234784) example: expect speed: 0.000000 real_pulses:0 +I (234784) example: new speed:399.000000 +I (234794) example: expect speed: 0.000000 real_pulses:0 +I (234794) example: new speed:399.000000 +I (234804) example: expect speed: 0.000000 real_pulses:0 +I (234804) example: new speed:399.000000 +I (234814) example: expect speed: 0.000000 real_pulses:0 +I (234814) example: new speed:399.000000 +I (234824) example: expect speed: 0.000000 real_pulses:0 +I (234824) example: new speed:399.000000 +I (234834) example: expect speed: 0.000000 real_pulses:0 +I (234834) example: new speed:399.000000 +I (234844) example: expect speed: 0.000000 real_pulses:0 +I (234844) example: new speed:399.000000 +I (234854) example: expect speed: 0.000000 real_pulses:0 +I (234854) example: new speed:399.000000 +I (234864) example: expect speed: 0.000000 real_pulses:0 +I (234864) example: new speed:399.000000 +I (234874) example: expect speed: 0.000000 real_pulses:0 +I (234874) example: new speed:399.000000 +I (234884) example: expect speed: 0.000000 real_pulses:0 +I (234884) example: new speed:399.000000 +I (234894) example: expect speed: 0.000000 real_pulses:0 +I (234894) example: new speed:399.000000 +I (234904) example: expect speed: 0.000000 real_pulses:0 +I (234904) example: new speed:399.000000 +I (234914) example: expect speed: 0.000000 real_pulses:0 +I (234914) example: new speed:399.000000 +I (234924) example: expect speed: 0.000000 real_pulses:0 +I (234924) example: new speed:399.000000 +I (234934) example: expect speed: 0.000000 real_pulses:0 +I (234934) example: new speed:399.000000 +I (234944) example: expect speed: 0.000000 real_pulses:0 +I (234944) example: new speed:399.000000 +I (234954) example: expect speed: 0.000000 real_pulses:0 +I (234954) example: new speed:399.000000 +I (234964) example: expect speed: 0.000000 real_pulses:0 +I (234964) example: new speed:399.000000 +I (234974) example: expect speed: 0.000000 real_pulses:0 +I (234974) example: new speed:399.000000 +I (234984) example: expect speed: 0.000000 real_pulses:0 +I (234984) example: new speed:399.000000 +I (234994) example: expect speed: 0.000000 real_pulses:0 +I (234994) example: new speed:399.000000 +I (235004) example: expect speed: 0.000000 real_pulses:0 +I (235004) example: new speed:399.000000 +I (235014) example: expect speed: 0.000000 real_pulses:0 +I (235014) example: new speed:399.000000 +I (235024) example: expect speed: 0.000000 real_pulses:0 +I (235024) example: new speed:399.000000 +I (235034) example: expect speed: 0.000000 real_pulses:0 +I (235034) example: new speed:399.000000 +I (235044) example: expect speed: 0.000000 real_pulses:0 +I (235044) example: new speed:399.000000 +I (235054) example: expect speed: 0.000000 real_pulses:0 +I (235054) example: new speed:399.000000 +I (235064) example: expect speed: 0.000000 real_pulses:0 +I (235064) example: new speed:399.000000 +I (235074) example: expect speed: 0.000000 real_pulses:0 +I (235074) example: new speed:399.000000 +I (235084) example: expect speed: 0.000000 real_pulses:0 +I (235084) example: new speed:399.000000 +I (235094) example: expect speed: 0.000000 real_pulses:0 +I (235094) example: new speed:399.000000 +I (235104) example: expect speed: 0.000000 real_pulses:0 +I (235104) example: new speed:399.000000 +I (235114) example: expect speed: 0.000000 real_pulses:0 +I (235114) example: new speed:399.000000 +I (235124) example: expect speed: 0.000000 real_pulses:0 +I (235124) example: new speed:399.000000 +I (235134) example: expect speed: 0.000000 real_pulses:0 +I (235134) example: new speed:399.000000 +I (235144) example: expect speed: 0.000000 real_pulses:0 +I (235144) example: new speed:399.000000 +I (235154) example: expect speed: 0.000000 real_pulses:0 +I (235154) example: new speed:399.000000 +I (235164) example: expect speed: 0.000000 real_pulses:0 +I (235164) example: new speed:399.000000 +I (235174) example: expect speed: 0.000000 real_pulses:0 +I (235174) example: new speed:399.000000 +I (235184) example: expect speed: 0.000000 real_pulses:0 +I (235184) example: new speed:399.000000 +I (235194) example: expect speed: 0.000000 real_pulses:0 +I (235194) example: new speed:399.000000 +I (235204) example: expect speed: 0.000000 real_pulses:0 +I (235204) example: new speed:399.000000 +I (235214) example: expect speed: 0.000000 real_pulses:0 +I (235214) example: new speed:399.000000 +I (235224) example: expect speed: 0.000000 real_pulses:0 +I (235224) example: new speed:399.000000 +I (235234) example: expect speed: 0.000000 real_pulses:0 +I (235234) example: new speed:399.000000 +I (235244) example: expect speed: 0.000000 real_pulses:0 +I (235244) example: new speed:399.000000 +I (235254) example: expect speed: 0.000000 real_pulses:0 +I (235254) example: new speed:399.000000 +I (235264) modbus tcp: ModBusSlave_recv() +I (235264) modbus: ModbusSlaveProcess() +I (235264) modbus: check id... +I (235264) modbus: ok +I (235264) modbus: add: 0, length: 10 +I (235264) modbus: Read Holding Registers +I (235264) example: expect speed: 0.000000 real_pulses:0 +I (235274) example: new speed:399.000000 +I (235274) example: expect speed: 0.000000 real_pulses:0 +I (235274) example: new speed:399.000000 +I (235284) example: expect speed: 0.000000 real_pulses:0 +I (235284) example: new speed:399.000000 +I (235294) example: expect speed: 0.000000 real_pulses:0 +I (235294) example: new speed:399.000000 +I (235304) example: expect speed: 0.000000 real_pulses:0 +I (235304) example: new speed:399.000000 +I (235314) example: expect speed: 0.000000 real_pulses:0 +I (235314) example: new speed:399.000000 +I (235324) example: expect speed: 0.000000 real_pulses:0 +I (235324) example: new speed:399.000000 +I (235334) example: expect speed: 0.000000 real_pulses:0 +I (235334) example: new speed:399.000000 +I (235344) example: expect speed: 0.000000 real_pulses:0 +I (235344) example: new speed:399.000000 +I (235354) example: expect speed: 0.000000 real_pulses:0 +I (235354) example: new speed:399.000000 +I (235364) example: expect speed: 0.000000 real_pulses:0 +I (235374) example: new speed:399.000000 +I (235374) example: expect speed: 0.000000 real_pulses:0 +I (235384) example: new speed:399.000000 +I (235384) example: expect speed: 0.000000 real_pulses:0 +I (235384) example: new speed:399.000000 +I (235394) example: expect speed: 0.000000 real_pulses:0 +I (235394) example: new speed:399.000000 +I (235404) example: expect speed: 0.000000 real_pulses:0 +I (235404) example: new speed:399.000000 +I (235414) example: expect speed: 0.000000 real_pulses:0 +I (235414) example: new speed:399.000000 +I (235424) example: expect speed: 0.000000 real_pulses:0 +I (235434) example: new speed:399.000000 +I (235434) example: expect speed: 0.000000 real_pulses:0 +I (235434) example: new speed:399.000000 +I (235444) example: expect speed: 0.000000 real_pulses:0 +I (235444) example: new speed:399.000000 +I (235454) example: expect speed: 0.000000 real_pulses:0 +I (235464) example: new speed:399.000000 +I (235464) example: expect speed: 0.000000 real_pulses:0 +I (235464) example: new speed:399.000000 +I (235474) example: expect speed: 0.000000 real_pulses:0 +I (235474) example: new speed:399.000000 +I (235484) example: expect speed: 0.000000 real_pulses:0 +I (235484) example: new speed:399.000000 +I (235494) example: expect speed: 0.000000 real_pulses:0 +I (235494) example: new speed:399.000000 +I (235504) example: expect speed: 0.000000 real_pulses:0 +I (235504) example: new speed:399.000000 +I (235514) example: expect speed: 0.000000 real_pulses:0 +I (235514) example: new speed:399.000000 +I (235524) example: expect speed: 0.000000 real_pulses:0 +I (235524) example: new speed:399.000000 +I (235534) example: expect speed: 0.000000 real_pulses:0 +I (235534) example: new speed:399.000000 +I (235544) example: expect speed: 0.000000 real_pulses:0 +I (235544) example: new speed:399.000000 +I (235554) example: expect speed: 0.000000 real_pulses:0 +I (235554) example: new speed:399.000000 +I (235564) example: expect speed: 0.000000 real_pulses:0 +I (235564) example: new speed:399.000000 +I (235574) example: expect speed: 0.000000 real_pulses:0 +I (235574) example: new speed:399.000000 +I (235584) example: expect speed: 0.000000 real_pulses:0 +I (235584) example: new speed:399.000000 +I (235594) example: expect speed: 0.000000 real_pulses:0 +I (235594) example: new speed:399.000000 +I (235604) example: expect speed: 0.000000 real_pulses:0 +I (235604) example: new speed:399.000000 +I (235614) example: expect speed: 0.000000 real_pulses:0 +I (235614) example: new speed:399.000000 +I (235624) example: expect speed: 0.000000 real_pulses:0 +I (235624) example: new speed:399.000000 +I (235634) example: expect speed: 0.000000 real_pulses:0 +I (235634) example: new speed:399.000000 +I (235644) example: expect speed: 0.000000 real_pulses:0 +I (235644) example: new speed:399.000000 +I (235654) example: expect speed: 0.000000 real_pulses:0 +I (235654) example: new speed:399.000000 +I (235664) example: expect speed: 0.000000 real_pulses:0 +I (235664) example: new speed:399.000000 +I (235674) example: expect speed: 0.000000 real_pulses:0 +I (235674) example: new speed:399.000000 +I (235684) example: expect speed: 0.000000 real_pulses:0 +I (235684) example: new speed:399.000000 +I (235694) example: expect speed: 0.000000 real_pulses:0 +I (235694) example: new speed:399.000000 +I (235704) example: expect speed: 0.000000 real_pulses:0 +I (235704) example: new speed:399.000000 +I (235714) example: expect speed: 0.000000 real_pulses:0 +I (235714) example: new speed:399.000000 +I (235724) example: expect speed: 0.000000 real_pulses:0 +I (235724) example: new speed:399.000000 +I (235734) example: expect speed: 0.000000 real_pulses:0 +I (235734) example: new speed:399.000000 +I (235744) example: expect speed: 0.000000 real_pulses:0 +I (235744) example: new speed:399.000000 +I (235754) example: expect speed: 0.000000 real_pulses:0 +I (235754) example: new speed:399.000000 +I (235764) example: expect speed: 0.000000 real_pulses:0 +I (235764) example: new speed:399.000000 +I (235774) example: expect speed: 0.000000 real_pulses:0 +I (235774) example: new speed:399.000000 +I (235784) example: expect speed: 0.000000 real_pulses:0 +I (235784) example: new speed:399.000000 +I (235794) example: expect speed: 0.000000 real_pulses:0 +I (235794) example: new speed:399.000000 +I (235804) example: expect speed: 0.000000 real_pulses:0 +I (235804) example: new speed:399.000000 +I (235814) example: expect speed: 0.000000 real_pulses:0 +I (235814) example: new speed:399.000000 +I (235824) example: expect speed: 0.000000 real_pulses:0 +I (235824) example: new speed:399.000000 +I (235834) example: expect speed: 0.000000 real_pulses:0 +I (235834) example: new speed:399.000000 +I (235844) example: expect speed: 0.000000 real_pulses:0 +I (235844) example: new speed:399.000000 +I (235854) example: expect speed: 0.000000 real_pulses:0 +I (235854) example: new speed:399.000000 +I (235864) example: expect speed: 0.000000 real_pulses:0 +I (235864) example: new speed:399.000000 +I (235874) example: expect speed: 0.000000 real_pulses:0 +I (235874) example: new speed:399.000000 +I (235884) example: expect speed: 0.000000 real_pulses:0 +I (235884) example: new speed:399.000000 +I (235894) example: expect speed: 0.000000 real_pulses:0 +I (235894) example: new speed:399.000000 +I (235904) example: expect speed: 0.000000 real_pulses:0 +I (235904) example: new speed:399.000000 +I (235914) example: expect speed: 0.000000 real_pulses:0 +I (235914) example: new speed:399.000000 +I (235924) example: expect speed: 0.000000 real_pulses:0 +I (235924) example: new speed:399.000000 +I (235934) example: expect speed: 0.000000 real_pulses:0 +I (235934) example: new speed:399.000000 +I (235944) example: expect speed: 0.000000 real_pulses:0 +I (235944) example: new speed:399.000000 +I (235954) example: expect speed: 0.000000 real_pulses:0 +I (235954) example: new speed:399.000000 +I (235964) example: expect speed: 0.000000 real_pulses:0 +I (235964) example: new speed:399.000000 +I (235974) example: expect speed: 0.000000 real_pulses:0 +I (235974) example: new speed:399.000000 +I (235984) example: expect speed: 0.000000 real_pulses:0 +I (235984) example: new speed:399.000000 +I (235994) example: expect speed: 0.000000 real_pulses:0 +I (235994) example: new speed:399.000000 +I (236004) example: expect speed: 0.000000 real_pulses:0 +I (236004) example: new speed:399.000000 +I (236014) example: expect speed: 0.000000 real_pulses:0 +I (236014) example: new speed:399.000000 +I (236024) example: expect speed: 0.000000 real_pulses:0 +I (236024) example: new speed:399.000000 +I (236034) example: expect speed: 0.000000 real_pulses:0 +I (236034) example: new speed:399.000000 +I (236044) example: expect speed: 0.000000 real_pulses:0 +I (236044) example: new speed:399.000000 +I (236054) example: expect speed: 0.000000 real_pulses:0 +I (236054) example: new speed:399.000000 +I (236064) example: expect speed: 0.000000 real_pulses:0 +I (236064) example: new speed:399.000000 +I (236074) example: expect speed: 0.000000 real_pulses:0 +I (236074) example: new speed:399.000000 +I (236084) example: expect speed: 0.000000 real_pulses:0 +I (236084) example: new speed:399.000000 +I (236094) example: expect speed: 0.000000 real_pulses:0 +I (236094) example: new speed:399.000000 +I (236104) example: expect speed: 0.000000 real_pulses:0 +I (236104) example: new speed:399.000000 +I (236114) example: expect speed: 0.000000 real_pulses:0 +I (236114) example: new speed:399.000000 +I (236124) example: expect speed: 0.000000 real_pulses:0 +I (236124) example: new speed:399.000000 +I (236134) example: expect speed: 0.000000 real_pulses:0 +I (236134) example: new speed:399.000000 +I (236144) example: expect speed: 0.000000 real_pulses:0 +I (236144) example: new speed:399.000000 +I (236154) example: expect speed: 0.000000 real_pulses:0 +I (236154) example: new speed:399.000000 +I (236164) example: expect speed: 0.000000 real_pulses:0 +I (236164) example: new speed:399.000000 +I (236174) example: expect speed: 0.000000 real_pulses:0 +I (236174) example: new speed:399.000000 +I (236184) example: expect speed: 0.000000 real_pulses:0 +I (236184) example: new speed:399.000000 +I (236194) example: expect speed: 0.000000 real_pulses:0 +I (236194) example: new speed:399.000000 +I (236204) example: expect speed: 0.000000 real_pulses:0 +I (236204) example: new speed:399.000000 +I (236214) example: expect speed: 0.000000 real_pulses:0 +I (236214) example: new speed:399.000000 +I (236224) example: expect speed: 0.000000 real_pulses:0 +I (236224) example: new speed:399.000000 +I (236234) example: expect speed: 0.000000 real_pulses:0 +I (236234) example: new speed:399.000000 +I (236244) example: expect speed: 0.000000 real_pulses:0 +I (236244) example: new speed:399.000000 +I (236254) example: expect speed: 0.000000 real_pulses:0 +I (236254) example: new speed:399.000000 +I (236264) example: expect speed: 0.000000 real_pulses:0 +I (236264) example: new speed:399.000000 +I (236274) example: expect speed: 0.000000 real_pulses:0 +I (236274) example: new speed:399.000000 +I (236284) example: expect speed: 0.000000 real_pulses:0 +I (236294) example: new speed:399.000000 +I (236294) modbus tcp: ModBusSlave_recv() +I (236294) modbus: ModbusSlaveProcess() +I (236294) modbus: check id... +I (236294) modbus: ok +I (236294) modbus: add: 0, length: 10 +I (236294) modbus: Read Holding Registers +I (236294) example: expect speed: 0.000000 real_pulses:0 +I (236304) example: new speed:399.000000 +I (236304) example: expect speed: 0.000000 real_pulses:0 +I (236304) example: new speed:399.000000 +I (236314) example: expect speed: 0.000000 real_pulses:0 +I (236314) example: new speed:399.000000 +I (236324) example: expect speed: 0.000000 real_pulses:0 +I (236324) example: new speed:399.000000 +I (236334) example: expect speed: 0.000000 real_pulses:0 +I (236334) example: new speed:399.000000 +I (236344) example: expect speed: 0.000000 real_pulses:0 +I (236344) example: new speed:399.000000 +I (236354) example: expect speed: 0.000000 real_pulses:0 +I (236354) example: new speed:399.000000 +I (236364) example: expect speed: 0.000000 real_pulses:0 +I (236374) example: new speed:399.000000 +I (236374) example: expect speed: 0.000000 real_pulses:0 +I (236374) example: new speed:399.000000 +I (236384) example: expect speed: 0.000000 real_pulses:0 +I (236394) example: new speed:399.000000 +I (236394) example: expect speed: 0.000000 real_pulses:0 +I (236404) example: new speed:399.000000 +I (236404) example: expect speed: 0.000000 real_pulses:0 +I (236404) example: new speed:399.000000 +I (236414) example: expect speed: 0.000000 real_pulses:0 +I (236414) example: new speed:399.000000 +I (236424) example: expect speed: 0.000000 real_pulses:0 +I (236424) example: new speed:399.000000 +I (236434) example: expect speed: 0.000000 real_pulses:0 +I (236434) example: new speed:399.000000 +I (236444) example: expect speed: 0.000000 real_pulses:0 +I (236454) example: new speed:399.000000 +I (236454) example: expect speed: 0.000000 real_pulses:0 +I (236454) example: new speed:399.000000 +I (236464) example: expect speed: 0.000000 real_pulses:0 +I (236464) example: new speed:399.000000 +I (236474) example: expect speed: 0.000000 real_pulses:0 +I (236474) example: new speed:399.000000 +I (236484) example: expect speed: 0.000000 real_pulses:0 +I (236484) example: new speed:399.000000 +I (236494) example: expect speed: 0.000000 real_pulses:0 +I (236494) example: new speed:399.000000 +I (236504) example: expect speed: 0.000000 real_pulses:0 +I (236504) example: new speed:399.000000 +I (236514) example: expect speed: 0.000000 real_pulses:0 +I (236514) example: new speed:399.000000 +I (236524) example: expect speed: 0.000000 real_pulses:0 +I (236524) example: new speed:399.000000 +I (236534) example: expect speed: 0.000000 real_pulses:0 +I (236534) example: new speed:399.000000 +I (236544) example: expect speed: 0.000000 real_pulses:0 +I (236544) example: new speed:399.000000 +I (236554) example: expect speed: 0.000000 real_pulses:0 +I (236554) example: new speed:399.000000 +I (236564) example: expect speed: 0.000000 real_pulses:0 +I (236564) example: new speed:399.000000 +I (236574) example: expect speed: 0.000000 real_pulses:0 +I (236574) example: new speed:399.000000 +I (236584) example: expect speed: 0.000000 real_pulses:0 +I (236584) example: new speed:399.000000 +I (236594) example: expect speed: 0.000000 real_pulses:0 +I (236594) example: new speed:399.000000 +I (236604) example: expect speed: 0.000000 real_pulses:0 +I (236604) example: new speed:399.000000 +I (236614) example: expect speed: 0.000000 real_pulses:0 +I (236614) example: new speed:399.000000 +I (236624) example: expect speed: 0.000000 real_pulses:0 +I (236624) example: new speed:399.000000 +I (236634) example: expect speed: 0.000000 real_pulses:0 +I (236634) example: new speed:399.000000 +I (236644) example: expect speed: 0.000000 real_pulses:0 +I (236644) example: new speed:399.000000 +I (236654) example: expect speed: 0.000000 real_pulses:0 +I (236654) example: new speed:399.000000 +I (236664) example: expect speed: 0.000000 real_pulses:0 +I (236664) example: new speed:399.000000 +I (236674) example: expect speed: 0.000000 real_pulses:0 +I (236674) example: new speed:399.000000 +I (236684) example: expect speed: 0.000000 real_pulses:0 +I (236684) example: new speed:399.000000 +I (236694) example: expect speed: 0.000000 real_pulses:0 +I (236694) example: new speed:399.000000 +I (236704) example: expect speed: 0.000000 real_pulses:0 +I (236704) example: new speed:399.000000 +I (236714) example: expect speed: 0.000000 real_pulses:0 +I (236714) example: new speed:399.000000 +I (236724) example: expect speed: 0.000000 real_pulses:0 +I (236724) example: new speed:399.000000 +I (236734) example: expect speed: 0.000000 real_pulses:0 +I (236734) example: new speed:399.000000 +I (236744) example: expect speed: 0.000000 real_pulses:0 +I (236744) example: new speed:399.000000 +I (236754) example: expect speed: 0.000000 real_pulses:0 +I (236754) example: new speed:399.000000 +I (236764) example: expect speed: 0.000000 real_pulses:0 +I (236764) example: new speed:399.000000 +I (236774) example: expect speed: 0.000000 real_pulses:0 +I (236774) example: new speed:399.000000 +I (236784) example: expect speed: 0.000000 real_pulses:0 +I (236784) example: new speed:399.000000 +I (236794) example: expect speed: 0.000000 real_pulses:0 +I (236794) example: new speed:399.000000 +I (236804) example: expect speed: 0.000000 real_pulses:0 +I (236804) example: new speed:399.000000 +I (236814) example: expect speed: 0.000000 real_pulses:0 +I (236814) example: new speed:399.000000 +I (236824) example: expect speed: 0.000000 real_pulses:0 +I (236824) example: new speed:399.000000 +I (236834) example: expect speed: 0.000000 real_pulses:0 +I (236834) example: new speed:399.000000 +I (236844) example: expect speed: 0.000000 real_pulses:0 +I (236844) example: new speed:399.000000 +I (236854) example: expect speed: 0.000000 real_pulses:0 +I (236854) example: new speed:399.000000 +I (236864) example: expect speed: 0.000000 real_pulses:0 +I (236864) example: new speed:399.000000 +I (236874) example: expect speed: 0.000000 real_pulses:0 +I (236874) example: new speed:399.000000 +I (236884) example: expect speed: 0.000000 real_pulses:0 +I (236884) example: new speed:399.000000 +I (236894) example: expect speed: 0.000000 real_pulses:0 +I (236894) example: new speed:399.000000 +I (236904) example: expect speed: 0.000000 real_pulses:0 +I (236904) example: new speed:399.000000 +I (236914) example: expect speed: 0.000000 real_pulses:0 +I (236914) example: new speed:399.000000 +I (236924) example: expect speed: 0.000000 real_pulses:0 +I (236924) example: new speed:399.000000 +I (236934) example: expect speed: 0.000000 real_pulses:0 +I (236934) example: new speed:399.000000 +I (236944) example: expect speed: 0.000000 real_pulses:0 +I (236944) example: new speed:399.000000 +I (236954) example: expect speed: 0.000000 real_pulses:0 +I (236954) example: new speed:399.000000 +I (236964) example: expect speed: 0.000000 real_pulses:0 +I (236964) example: new speed:399.000000 +I (236974) example: expect speed: 0.000000 real_pulses:0 +I (236974) example: new speed:399.000000 +I (236984) example: expect speed: 0.000000 real_pulses:0 +I (236984) example: new speed:399.000000 +I (236994) example: expect speed: 0.000000 real_pulses:0 +I (236994) example: new speed:399.000000 +I (237004) example: expect speed: 0.000000 real_pulses:0 +I (237004) example: new speed:399.000000 +I (237014) example: expect speed: 0.000000 real_pulses:0 +I (237014) example: new speed:399.000000 +I (237024) example: expect speed: 0.000000 real_pulses:0 +I (237024) example: new speed:399.000000 +I (237034) example: expect speed: 0.000000 real_pulses:0 +I (237034) example: new speed:399.000000 +I (237044) example: expect speed: 0.000000 real_pulses:0 +I (237044) example: new speed:399.000000 +I (237054) example: expect speed: 0.000000 real_pulses:0 +I (237054) example: new speed:399.000000 +I (237064) example: expect speed: 0.000000 real_pulses:0 +I (237064) example: new speed:399.000000 +I (237074) example: expect speed: 0.000000 real_pulses:0 +I (237074) example: new speed:399.000000 +I (237084) example: expect speed: 0.000000 real_pulses:0 +I (237084) example: new speed:399.000000 +I (237094) example: expect speed: 0.000000 real_pulses:0 +I (237094) example: new speed:399.000000 +I (237104) example: expect speed: 0.000000 real_pulses:0 +I (237104) example: new speed:399.000000 +I (237114) example: expect speed: 0.000000 real_pulses:0 +I (237114) example: new speed:399.000000 +I (237124) example: expect speed: 0.000000 real_pulses:0 +I (237124) example: new speed:399.000000 +I (237134) example: expect speed: 0.000000 real_pulses:0 +I (237134) example: new speed:399.000000 +I (237144) example: expect speed: 0.000000 real_pulses:0 +I (237144) example: new speed:399.000000 +I (237154) example: expect speed: 0.000000 real_pulses:0 +I (237154) example: new speed:399.000000 +I (237164) example: expect speed: 0.000000 real_pulses:0 +I (237164) example: new speed:399.000000 +I (237174) example: expect speed: 0.000000 real_pulses:0 +I (237174) example: new speed:399.000000 +I (237184) example: expect speed: 0.000000 real_pulses:0 +I (237184) example: new speed:399.000000 +I (237194) example: expect speed: 0.000000 real_pulses:0 +I (237194) example: new speed:399.000000 +I (237204) example: expect speed: 0.000000 real_pulses:0 +I (237204) example: new speed:399.000000 +I (237214) example: expect speed: 0.000000 real_pulses:0 +I (237214) example: new speed:399.000000 +I (237224) example: expect speed: 0.000000 real_pulses:0 +I (237224) example: new speed:399.000000 +I (237234) example: expect speed: 0.000000 real_pulses:0 +I (237234) example: new speed:399.000000 +I (237244) example: expect speed: 0.000000 real_pulses:0 +I (237244) example: new speed:399.000000 +I (237254) example: expect speed: 0.000000 real_pulses:0 +I (237254) example: new speed:399.000000 +I (237264) example: expect speed: 0.000000 real_pulses:0 +I (237264) example: new speed:399.000000 +I (237274) example: expect speed: 0.000000 real_pulses:0 +I (237274) example: new speed:399.000000 +I (237284) example: expect speed: 0.000000 real_pulses:0 +I (237284) example: new speed:399.000000 +I (237294) example: expect speed: 0.000000 real_pulses:0 +I (237294) example: new speed:399.000000 +I (237304) example: expect speed: 0.000000 real_pulses:0 +I (237304) example: new speed:399.000000 +I (237314) modbus tcp: ModBusSlave_recv() +I (237314) example: expect speed: 0.000000 real_pulses:0 +I (237314) modbus: ModbusSlaveProcess() +I (237324) example: new speed:399.000000 +I (237324) modbus: check id... +I (237324) modbus: ok +I (237324) modbus: add: 0, length: 10 +I (237324) modbus: Read Holding Registers +I (237324) example: expect speed: 0.000000 real_pulses:0 +I (237334) example: new speed:399.000000 +I (237334) example: expect speed: 0.000000 real_pulses:0 +I (237334) example: new speed:399.000000 +I (237344) example: expect speed: 0.000000 real_pulses:0 +I (237344) example: new speed:399.000000 +I (237354) example: expect speed: 0.000000 real_pulses:0 +I (237354) example: new speed:399.000000 +I (237364) example: expect speed: 0.000000 real_pulses:0 +I (237374) example: new speed:399.000000 +I (237374) example: expect speed: 0.000000 real_pulses:0 +I (237374) example: new speed:399.000000 +I (237384) example: expect speed: 0.000000 real_pulses:0 +I (237384) example: new speed:399.000000 +I (237394) example: expect speed: 0.000000 real_pulses:0 +I (237394) example: new speed:399.000000 +I (237404) example: expect speed: 0.000000 real_pulses:0 +I (237404) example: new speed:399.000000 +I (237414) example: expect speed: 0.000000 real_pulses:0 +I (237414) example: new speed:399.000000 +I (237424) example: expect speed: 0.000000 real_pulses:0 +I (237424) example: new speed:399.000000 +I (237434) example: expect speed: 0.000000 real_pulses:0 +I (237434) example: new speed:399.000000 +I (237444) example: expect speed: 0.000000 real_pulses:0 +I (237444) example: new speed:399.000000 +I (237454) example: expect speed: 0.000000 real_pulses:0 +I (237454) example: new speed:399.000000 +I (237464) example: expect speed: 0.000000 real_pulses:0 +I (237464) example: new speed:399.000000 +I (237474) example: expect speed: 0.000000 real_pulses:0 +I (237474) example: new speed:399.000000 +I (237484) example: expect speed: 0.000000 real_pulses:0 +I (237484) example: new speed:399.000000 +I (237494) example: expect speed: 0.000000 real_pulses:0 +I (237494) example: new speed:399.000000 +I (237504) example: expect speed: 0.000000 real_pulses:0 +I (237504) example: new speed:399.000000 +I (237514) example: expect speed: 0.000000 real_pulses:0 +I (237514) example: new speed:399.000000 +I (237524) example: expect speed: 0.000000 real_pulses:0 +I (237524) example: new speed:399.000000 +I (237534) example: expect speed: 0.000000 real_pulses:0 +I (237534) example: new speed:399.000000 +I (237544) example: expect speed: 0.000000 real_pulses:0 +I (237544) example: new speed:399.000000 +I (237554) example: expect speed: 0.000000 real_pulses:0 +I (237554) example: new speed:399.000000 +I (237564) example: expect speed: 0.000000 real_pulses:0 +I (237564) example: new speed:399.000000 +I (237574) example: expect speed: 0.000000 real_pulses:0 +I (237574) example: new speed:399.000000 +I (237584) example: expect speed: 0.000000 real_pulses:0 +I (237584) example: new speed:399.000000 +I (237594) example: expect speed: 0.000000 real_pulses:0 +I (237594) example: new speed:399.000000 +I (237604) example: expect speed: 0.000000 real_pulses:0 +I (237604) example: new speed:399.000000 +I (237614) example: expect speed: 0.000000 real_pulses:0 +I (237614) example: new speed:399.000000 +I (237624) example: expect speed: 0.000000 real_pulses:0 +I (237624) example: new speed:399.000000 +I (237634) example: expect speed: 0.000000 real_pulses:0 +I (237634) example: new speed:399.000000 +I (237644) example: expect speed: 0.000000 real_pulses:0 +I (237644) example: new speed:399.000000 +I (237654) example: expect speed: 0.000000 real_pulses:0 +I (237654) example: new speed:399.000000 +I (237664) example: expect speed: 0.000000 real_pulses:0 +I (237664) example: new speed:399.000000 +I (237674) example: expect speed: 0.000000 real_pulses:0 +I (237674) example: new speed:399.000000 +I (237684) example: expect speed: 0.000000 real_pulses:0 +I (237684) example: new speed:399.000000 +I (237694) example: expect speed: 0.000000 real_pulses:0 +I (237694) example: new speed:399.000000 +I (237704) example: expect speed: 0.000000 real_pulses:0 +I (237704) example: new speed:399.000000 +I (237714) example: expect speed: 0.000000 real_pulses:0 +I (237714) example: new speed:399.000000 +I (237724) example: expect speed: 0.000000 real_pulses:0 +I (237724) example: new speed:399.000000 +I (237734) example: expect speed: 0.000000 real_pulses:0 +I (237734) example: new speed:399.000000 +I (237744) example: expect speed: 0.000000 real_pulses:0 +I (237744) example: new speed:399.000000 +I (237754) example: expect speed: 0.000000 real_pulses:0 +I (237754) example: new speed:399.000000 +I (237764) example: expect speed: 0.000000 real_pulses:0 +I (237764) example: new speed:399.000000 +I (237774) example: expect speed: 0.000000 real_pulses:0 +I (237774) example: new speed:399.000000 +I (237784) example: expect speed: 0.000000 real_pulses:0 +I (237784) example: new speed:399.000000 +I (237794) example: expect speed: 0.000000 real_pulses:0 +I (237794) example: new speed:399.000000 +I (237804) example: expect speed: 0.000000 real_pulses:0 +I (237804) example: new speed:399.000000 +I (237814) example: expect speed: 0.000000 real_pulses:0 +I (237814) example: new speed:399.000000 +I (237824) example: expect speed: 0.000000 real_pulses:0 +I (237824) example: new speed:399.000000 +I (237834) example: expect speed: 0.000000 real_pulses:0 +I (237834) example: new speed:399.000000 +I (237844) example: expect speed: 0.000000 real_pulses:0 +I (237844) example: new speed:399.000000 +I (237854) example: expect speed: 0.000000 real_pulses:0 +I (237854) example: new speed:399.000000 +I (237864) example: expect speed: 0.000000 real_pulses:0 +I (237864) example: new speed:399.000000 +I (237874) example: expect speed: 0.000000 real_pulses:0 +I (237874) example: new speed:399.000000 +I (237884) example: expect speed: 0.000000 real_pulses:0 +I (237884) example: new speed:399.000000 +I (237894) example: expect speed: 0.000000 real_pulses:0 +I (237894) example: new speed:399.000000 +I (237904) example: expect speed: 0.000000 real_pulses:0 +I (237904) example: new speed:399.000000 +I (237914) example: expect speed: 0.000000 real_pulses:0 +I (237914) example: new speed:399.000000 +I (237924) example: expect speed: 0.000000 real_pulses:0 +I (237924) example: new speed:399.000000 +I (237934) example: expect speed: 0.000000 real_pulses:0 +I (237934) example: new speed:399.000000 +I (237944) example: expect speed: 0.000000 real_pulses:0 +I (237944) example: new speed:399.000000 +I (237954) example: expect speed: 0.000000 real_pulses:0 +I (237954) example: new speed:399.000000 +I (237964) example: expect speed: 0.000000 real_pulses:0 +I (237964) example: new speed:399.000000 +I (237974) example: expect speed: 0.000000 real_pulses:0 +I (237974) example: new speed:399.000000 +I (237984) example: expect speed: 0.000000 real_pulses:0 +I (237984) example: new speed:399.000000 +I (237994) example: expect speed: 0.000000 real_pulses:0 +I (237994) example: new speed:399.000000 +I (238004) example: expect speed: 0.000000 real_pulses:0 +I (238004) example: new speed:399.000000 +I (238014) example: expect speed: 0.000000 real_pulses:0 +I (238014) example: new speed:399.000000 +I (238024) example: expect speed: 0.000000 real_pulses:0 +I (238024) example: new speed:399.000000 +I (238034) example: expect speed: 0.000000 real_pulses:0 +I (238034) example: new speed:399.000000 +I (238044) example: expect speed: 0.000000 real_pulses:0 +I (238044) example: new speed:399.000000 +I (238054) example: expect speed: 0.000000 real_pulses:0 +I (238054) example: new speed:399.000000 +I (238064) example: expect speed: 0.000000 real_pulses:0 +I (238064) example: new speed:399.000000 +I (238074) example: expect speed: 0.000000 real_pulses:0 +I (238074) example: new speed:399.000000 +I (238084) example: expect speed: 0.000000 real_pulses:0 +I (238084) example: new speed:399.000000 +I (238094) example: expect speed: 0.000000 real_pulses:0 +I (238094) example: new speed:399.000000 +I (238104) example: expect speed: 0.000000 real_pulses:0 +I (238104) example: new speed:399.000000 +I (238114) example: expect speed: 0.000000 real_pulses:0 +I (238114) example: new speed:399.000000 +I (238124) example: expect speed: 0.000000 real_pulses:0 +I (238124) example: new speed:399.000000 +I (238134) example: expect speed: 0.000000 real_pulses:0 +I (238134) example: new speed:399.000000 +I (238144) example: expect speed: 0.000000 real_pulses:0 +I (238144) example: new speed:399.000000 +I (238154) example: expect speed: 0.000000 real_pulses:0 +I (238154) example: new speed:399.000000 +I (238164) example: expect speed: 0.000000 real_pulses:0 +I (238164) example: new speed:399.000000 +I (238174) example: expect speed: 0.000000 real_pulses:0 +I (238174) example: new speed:399.000000 +I (238184) example: expect speed: 0.000000 real_pulses:0 +I (238184) example: new speed:399.000000 +I (238194) example: expect speed: 0.000000 real_pulses:0 +I (238194) example: new speed:399.000000 +I (238204) example: expect speed: 0.000000 real_pulses:0 +I (238204) example: new speed:399.000000 +I (238214) example: expect speed: 0.000000 real_pulses:0 +I (238214) example: new speed:399.000000 +I (238224) example: expect speed: 0.000000 real_pulses:0 +I (238224) example: new speed:399.000000 +I (238234) example: expect speed: 0.000000 real_pulses:0 +I (238234) example: new speed:399.000000 +I (238244) example: expect speed: 0.000000 real_pulses:0 +I (238244) example: new speed:399.000000 +I (238254) example: expect speed: 0.000000 real_pulses:0 +I (238254) example: new speed:399.000000 +I (238264) example: expect speed: 0.000000 real_pulses:0 +I (238264) example: new speed:399.000000 +I (238274) example: expect speed: 0.000000 real_pulses:0 +I (238274) example: new speed:399.000000 +I (238284) example: expect speed: 0.000000 real_pulses:0 +I (238284) example: new speed:399.000000 +I (238294) example: expect speed: 0.000000 real_pulses:0 +I (238294) example: new speed:399.000000 +I (238304) example: expect speed: 0.000000 real_pulses:0 +I (238304) example: new speed:399.000000 +I (238314) example: expect speed: 0.000000 real_pulses:0 +I (238314) example: new speed:399.000000 +I (238324) example: expect speed: 0.000000 real_pulses:0 +I (238324) example: new speed:399.000000 +I (238334) example: expect speed: 0.000000 real_pulses:0 +I (238344) example: new speed:399.000000 +I (238344) modbus tcp: ModBusSlave_recv() +I (238344) modbus: ModbusSlaveProcess() +I (238344) modbus: check id... +I (238344) modbus: ok +I (238344) modbus: add: 0, length: 10 +I (238344) example: expect speed: 0.000000 real_pulses:0 +I (238344) modbus: Read Holding Registers +I (238344) example: new speed:399.000000 +I (238354) example: expect speed: 0.000000 real_pulses:0 +I (238364) example: new speed:399.000000 +I (238364) example: expect speed: 0.000000 real_pulses:0 +I (238364) example: new speed:399.000000 +I (238374) example: expect speed: 0.000000 real_pulses:0 +I (238374) example: new speed:399.000000 +I (238384) example: expect speed: 0.000000 real_pulses:0 +I (238384) example: new speed:399.000000 +I (238394) example: expect speed: 0.000000 real_pulses:0 +I (238394) example: new speed:399.000000 +I (238404) example: expect speed: 0.000000 real_pulses:0 +I (238414) example: new speed:399.000000 +I (238414) example: expect speed: 0.000000 real_pulses:0 +I (238414) example: new speed:399.000000 +I (238424) example: expect speed: 0.000000 real_pulses:0 +I (238424) example: new speed:399.000000 +I (238434) example: expect speed: 0.000000 real_pulses:0 +I (238444) example: new speed:399.000000 +I (238444) example: expect speed: 0.000000 real_pulses:0 +I (238444) example: new speed:399.000000 +I (238454) example: expect speed: 0.000000 real_pulses:0 +I (238454) example: new speed:399.000000 +I (238464) example: expect speed: 0.000000 real_pulses:0 +I (238464) example: new speed:399.000000 +I (238474) example: expect speed: 0.000000 real_pulses:0 +I (238474) example: new speed:399.000000 +I (238484) example: expect speed: 0.000000 real_pulses:0 +I (238484) example: new speed:399.000000 +I (238494) example: expect speed: 0.000000 real_pulses:0 +I (238504) example: new speed:399.000000 +I (238504) example: expect speed: 0.000000 real_pulses:0 +I (238504) example: new speed:399.000000 +I (238514) example: expect speed: 0.000000 real_pulses:0 +I (238514) example: new speed:399.000000 +I (238524) example: expect speed: 0.000000 real_pulses:0 +I (238524) example: new speed:399.000000 +I (238534) example: expect speed: 0.000000 real_pulses:0 +I (238534) example: new speed:399.000000 +I (238544) example: expect speed: 0.000000 real_pulses:0 +I (238544) example: new speed:399.000000 +I (238554) example: expect speed: 0.000000 real_pulses:0 +I (238554) example: new speed:399.000000 +I (238564) example: expect speed: 0.000000 real_pulses:0 +I (238564) example: new speed:399.000000 +I (238574) example: expect speed: 0.000000 real_pulses:0 +I (238574) example: new speed:399.000000 +I (238584) example: expect speed: 0.000000 real_pulses:0 +I (238584) example: new speed:399.000000 +I (238594) example: expect speed: 0.000000 real_pulses:0 +I (238594) example: new speed:399.000000 +I (238604) example: expect speed: 0.000000 real_pulses:0 +I (238604) example: new speed:399.000000 +I (238614) example: expect speed: 0.000000 real_pulses:0 +I (238614) example: new speed:399.000000 +I (238624) example: expect speed: 0.000000 real_pulses:0 +I (238624) example: new speed:399.000000 +I (238634) example: expect speed: 0.000000 real_pulses:0 +I (238634) example: new speed:399.000000 +I (238644) example: expect speed: 0.000000 real_pulses:0 +I (238644) example: new speed:399.000000 +I (238654) example: expect speed: 0.000000 real_pulses:0 +I (238654) example: new speed:399.000000 +I (238664) example: expect speed: 0.000000 real_pulses:0 +I (238664) example: new speed:399.000000 +I (238674) example: expect speed: 0.000000 real_pulses:0 +I (238674) example: new speed:399.000000 +I (238684) example: expect speed: 0.000000 real_pulses:0 +I (238684) example: new speed:399.000000 +I (238694) example: expect speed: 0.000000 real_pulses:0 +I (238694) example: new speed:399.000000 +I (238704) example: expect speed: 0.000000 real_pulses:0 +I (238704) example: new speed:399.000000 +I (238714) example: expect speed: 0.000000 real_pulses:0 +I (238714) example: new speed:399.000000 +I (238724) example: expect speed: 0.000000 real_pulses:0 +I (238724) example: new speed:399.000000 +I (238734) example: expect speed: 0.000000 real_pulses:0 +I (238734) example: new speed:399.000000 +I (238744) example: expect speed: 0.000000 real_pulses:0 +I (238744) example: new speed:399.000000 +I (238754) example: expect speed: 0.000000 real_pulses:0 +I (238754) example: new speed:399.000000 +I (238764) example: expect speed: 0.000000 real_pulses:0 +I (238764) example: new speed:399.000000 +I (238774) example: expect speed: 0.000000 real_pulses:0 +I (238774) example: new speed:399.000000 +I (238784) example: expect speed: 0.000000 real_pulses:0 +I (238784) example: new speed:399.000000 +I (238794) example: expect speed: 0.000000 real_pulses:0 +I (238794) example: new speed:399.000000 +I (238804) example: expect speed: 0.000000 real_pulses:0 +I (238804) example: new speed:399.000000 +I (238814) example: expect speed: 0.000000 real_pulses:0 +I (238814) example: new speed:399.000000 +I (238824) example: expect speed: 0.000000 real_pulses:0 +I (238824) example: new speed:399.000000 +I (238834) example: expect speed: 0.000000 real_pulses:0 +I (238834) example: new speed:399.000000 +I (238844) example: expect speed: 0.000000 real_pulses:0 +I (238844) example: new speed:399.000000 +I (238854) example: expect speed: 0.000000 real_pulses:0 +I (238854) example: new speed:399.000000 +I (238864) example: expect speed: 0.000000 real_pulses:0 +I (238864) example: new speed:399.000000 +I (238874) example: expect speed: 0.000000 real_pulses:0 +I (238874) example: new speed:399.000000 +I (238884) example: expect speed: 0.000000 real_pulses:0 +I (238884) example: new speed:399.000000 +I (238894) example: expect speed: 0.000000 real_pulses:0 +I (238894) example: new speed:399.000000 +I (238904) example: expect speed: 0.000000 real_pulses:0 +I (238904) example: new speed:399.000000 +I (238914) example: expect speed: 0.000000 real_pulses:0 +I (238914) example: new speed:399.000000 +I (238924) example: expect speed: 0.000000 real_pulses:0 +I (238924) example: new speed:399.000000 +I (238934) example: expect speed: 0.000000 real_pulses:0 +I (238934) example: new speed:399.000000 +I (238944) example: expect speed: 0.000000 real_pulses:0 +I (238944) example: new speed:399.000000 +I (238954) example: expect speed: 0.000000 real_pulses:0 +I (238954) example: new speed:399.000000 +I (238964) example: expect speed: 0.000000 real_pulses:0 +I (238964) example: new speed:399.000000 +I (238974) example: expect speed: 0.000000 real_pulses:0 +I (238974) example: new speed:399.000000 +I (238984) example: expect speed: 0.000000 real_pulses:0 +I (238984) example: new speed:399.000000 +I (238994) example: expect speed: 0.000000 real_pulses:0 +I (238994) example: new speed:399.000000 +I (239004) example: expect speed: 0.000000 real_pulses:0 +I (239004) example: new speed:399.000000 +I (239014) example: expect speed: 0.000000 real_pulses:0 +I (239014) example: new speed:399.000000 +I (239024) example: expect speed: 0.000000 real_pulses:0 +I (239024) example: new speed:399.000000 +I (239034) example: expect speed: 0.000000 real_pulses:0 +I (239034) example: new speed:399.000000 +I (239044) example: expect speed: 0.000000 real_pulses:0 +I (239044) example: new speed:399.000000 +I (239054) example: expect speed: 0.000000 real_pulses:0 +I (239054) example: new speed:399.000000 +I (239064) example: expect speed: 0.000000 real_pulses:0 +I (239064) example: new speed:399.000000 +I (239074) example: expect speed: 0.000000 real_pulses:0 +I (239074) example: new speed:399.000000 +I (239084) example: expect speed: 0.000000 real_pulses:0 +I (239084) example: new speed:399.000000 +I (239094) example: expect speed: 0.000000 real_pulses:0 +I (239094) example: new speed:399.000000 +I (239104) example: expect speed: 0.000000 real_pulses:0 +I (239104) example: new speed:399.000000 +I (239114) example: expect speed: 0.000000 real_pulses:0 +I (239114) example: new speed:399.000000 +I (239124) example: expect speed: 0.000000 real_pulses:0 +I (239124) example: new speed:399.000000 +I (239134) example: expect speed: 0.000000 real_pulses:0 +I (239134) example: new speed:399.000000 +I (239144) example: expect speed: 0.000000 real_pulses:0 +I (239144) example: new speed:399.000000 +I (239154) example: expect speed: 0.000000 real_pulses:0 +I (239154) example: new speed:399.000000 +I (239164) example: expect speed: 0.000000 real_pulses:0 +I (239164) example: new speed:399.000000 +I (239174) example: expect speed: 0.000000 real_pulses:0 +I (239174) example: new speed:399.000000 +I (239184) example: expect speed: 0.000000 real_pulses:0 +I (239184) example: new speed:399.000000 +I (239194) example: expect speed: 0.000000 real_pulses:0 +I (239194) example: new speed:399.000000 +I (239204) example: expect speed: 0.000000 real_pulses:0 +I (239204) example: new speed:399.000000 +I (239214) example: expect speed: 0.000000 real_pulses:0 +I (239214) example: new speed:399.000000 +I (239224) example: expect speed: 0.000000 real_pulses:0 +I (239224) example: new speed:399.000000 +I (239234) example: expect speed: 0.000000 real_pulses:0 +I (239234) example: new speed:399.000000 +I (239244) example: expect speed: 0.000000 real_pulses:0 +I (239244) example: new speed:399.000000 +I (239254) example: expect speed: 0.000000 real_pulses:0 +I (239254) example: new speed:399.000000 +I (239264) example: expect speed: 0.000000 real_pulses:0 +I (239264) example: new speed:399.000000 +I (239274) example: expect speed: 0.000000 real_pulses:0 +I (239274) example: new speed:399.000000 +I (239284) example: expect speed: 0.000000 real_pulses:0 +I (239284) example: new speed:399.000000 +I (239294) example: expect speed: 0.000000 real_pulses:0 +I (239294) example: new speed:399.000000 +I (239304) example: expect speed: 0.000000 real_pulses:0 +I (239304) example: new speed:399.000000 +I (239314) example: expect speed: 0.000000 real_pulses:0 +I (239314) example: new speed:399.000000 +I (239324) example: expect speed: 0.000000 real_pulses:0 +I (239324) example: new speed:399.000000 +I (239334) example: expect speed: 0.000000 real_pulses:0 +I (239334) example: new speed:399.000000 +I (239344) example: expect speed: 0.000000 real_pulses:0 +I (239344) example: new speed:399.000000 +I (239354) example: expect speed: 0.000000 real_pulses:0 +I (239364) example: new speed:399.000000 +I (239364) modbus tcp: ModBusSlave_recv() +I (239364) modbus: ModbusSlaveProcess() +I (239364) modbus: check id... +I (239364) modbus: ok +I (239364) modbus: add: 0, length: 10 +I (239364) modbus: Read Holding Registers +I (239364) example: expect speed: 0.000000 real_pulses:0 +I (239374) example: new speed:399.000000 +I (239374) example: expect speed: 0.000000 real_pulses:0 +I (239374) example: new speed:399.000000 +I (239384) example: expect speed: 0.000000 real_pulses:0 +I (239384) example: new speed:399.000000 +I (239394) example: expect speed: 0.000000 real_pulses:0 +I (239394) example: new speed:399.000000 +I (239404) example: expect speed: 0.000000 real_pulses:0 +I (239404) example: new speed:399.000000 +I (239414) example: expect speed: 0.000000 real_pulses:0 +I (239424) example: new speed:399.000000 +I (239424) example: expect speed: 0.000000 real_pulses:0 +I (239424) example: new speed:399.000000 +I (239434) example: expect speed: 0.000000 real_pulses:0 +I (239434) example: new speed:399.000000 +I (239444) example: expect speed: 0.000000 real_pulses:0 +I (239444) example: new speed:399.000000 +I (239454) example: expect speed: 0.000000 real_pulses:0 +I (239464) example: new speed:399.000000 +I (239464) example: expect speed: 0.000000 real_pulses:0 +I (239464) example: new speed:399.000000 +I (239474) example: expect speed: 0.000000 real_pulses:0 +I (239474) example: new speed:399.000000 +I (239484) example: expect speed: 0.000000 real_pulses:0 +I (239484) example: new speed:399.000000 +I (239494) example: expect speed: 0.000000 real_pulses:0 +I (239494) example: new speed:399.000000 +I (239504) example: expect speed: 0.000000 real_pulses:0 +I (239504) example: new speed:399.000000 +I (239514) example: expect speed: 0.000000 real_pulses:0 +I (239524) example: new speed:399.000000 +I (239524) example: expect speed: 0.000000 real_pulses:0 +I (239524) example: new speed:399.000000 +I (239534) example: expect speed: 0.000000 real_pulses:0 +I (239534) example: new speed:399.000000 +I (239544) example: expect speed: 0.000000 real_pulses:0 +I (239544) example: new speed:399.000000 +I (239554) example: expect speed: 0.000000 real_pulses:0 +I (239554) example: new speed:399.000000 +I (239564) example: expect speed: 0.000000 real_pulses:0 +I (239564) example: new speed:399.000000 +I (239574) example: expect speed: 0.000000 real_pulses:0 +I (239574) example: new speed:399.000000 +I (239584) example: expect speed: 0.000000 real_pulses:0 +I (239584) example: new speed:399.000000 +I (239594) example: expect speed: 0.000000 real_pulses:0 +I (239594) example: new speed:399.000000 +I (239604) example: expect speed: 0.000000 real_pulses:0 +I (239604) example: new speed:399.000000 +I (239614) example: expect speed: 0.000000 real_pulses:0 +I (239614) example: new speed:399.000000 +I (239624) example: expect speed: 0.000000 real_pulses:0 +I (239624) example: new speed:399.000000 +I (239634) example: expect speed: 0.000000 real_pulses:0 +I (239634) example: new speed:399.000000 +I (239644) example: expect speed: 0.000000 real_pulses:0 +I (239644) example: new speed:399.000000 +I (239654) example: expect speed: 0.000000 real_pulses:0 +I (239654) example: new speed:399.000000 +I (239664) example: expect speed: 0.000000 real_pulses:0 +I (239664) example: new speed:399.000000 +I (239674) example: expect speed: 0.000000 real_pulses:0 +I (239674) example: new speed:399.000000 +I (239684) example: expect speed: 0.000000 real_pulses:0 +I (239684) example: new speed:399.000000 +I (239694) example: expect speed: 0.000000 real_pulses:0 +I (239694) example: new speed:399.000000 +I (239704) example: expect speed: 0.000000 real_pulses:0 +I (239704) example: new speed:399.000000 +I (239714) example: expect speed: 0.000000 real_pulses:0 +I (239714) example: new speed:399.000000 +I (239724) example: expect speed: 0.000000 real_pulses:0 +I (239724) example: new speed:399.000000 +I (239734) example: expect speed: 0.000000 real_pulses:0 +I (239734) example: new speed:399.000000 +I (239744) example: expect speed: 0.000000 real_pulses:0 +I (239744) example: new speed:399.000000 +I (239754) example: expect speed: 0.000000 real_pulses:0 +I (239754) example: new speed:399.000000 +I (239764) example: expect speed: 0.000000 real_pulses:0 +I (239764) example: new speed:399.000000 +I (239774) example: expect speed: 0.000000 real_pulses:0 +I (239774) example: new speed:399.000000 +I (239784) example: expect speed: 0.000000 real_pulses:0 +I (239784) example: new speed:399.000000 +I (239794) example: expect speed: 0.000000 real_pulses:0 +I (239794) example: new speed:399.000000 +I (239804) example: expect speed: 0.000000 real_pulses:0 +I (239804) example: new speed:399.000000 +I (239814) example: expect speed: 0.000000 real_pulses:0 +I (239814) example: new speed:399.000000 +I (239824) example: expect speed: 0.000000 real_pulses:0 +I (239824) example: new speed:399.000000 +I (239834) example: expect speed: 0.000000 real_pulses:0 +I (239834) example: new speed:399.000000 +I (239844) example: expect speed: 0.000000 real_pulses:0 +I (239844) example: new speed:399.000000 +I (239854) example: expect speed: 0.000000 real_pulses:0 +I (239854) example: new speed:399.000000 +I (239864) example: expect speed: 0.000000 real_pulses:0 +I (239864) example: new speed:399.000000 +I (239874) example: expect speed: 0.000000 real_pulses:0 +I (239874) example: new speed:399.000000 +I (239884) example: expect speed: 0.000000 real_pulses:0 +I (239884) example: new speed:399.000000 +I (239894) example: expect speed: 0.000000 real_pulses:0 +I (239894) example: new speed:399.000000 +I (239904) example: expect speed: 0.000000 real_pulses:0 +I (239904) example: new speed:399.000000 +I (239914) example: expect speed: 0.000000 real_pulses:0 +I (239914) example: new speed:399.000000 +I (239924) example: expect speed: 0.000000 real_pulses:0 +I (239924) example: new speed:399.000000 +I (239934) example: expect speed: 0.000000 real_pulses:0 +I (239934) example: new speed:399.000000 +I (239944) example: expect speed: 0.000000 real_pulses:0 +I (239944) example: new speed:399.000000 +I (239954) example: expect speed: 0.000000 real_pulses:0 +I (239954) example: new speed:399.000000 +I (239964) example: expect speed: 0.000000 real_pulses:0 +I (239964) example: new speed:399.000000 +I (239974) example: expect speed: 0.000000 real_pulses:0 +I (239974) example: new speed:399.000000 +I (239984) example: expect speed: 0.000000 real_pulses:0 +I (239984) example: new speed:399.000000 +I (239994) example: expect speed: 0.000000 real_pulses:0 +I (239994) example: new speed:399.000000 +I (240004) example: expect speed: 0.000000 real_pulses:0 +I (240004) example: new speed:399.000000 +I (240014) example: expect speed: 0.000000 real_pulses:0 +I (240014) example: new speed:399.000000 +I (240024) example: expect speed: 0.000000 real_pulses:0 +I (240024) example: new speed:399.000000 +I (240034) example: expect speed: 0.000000 real_pulses:0 +I (240034) example: new speed:399.000000 +I (240044) example: expect speed: 0.000000 real_pulses:0 +I (240044) example: new speed:399.000000 +I (240054) example: expect speed: 0.000000 real_pulses:0 +I (240054) example: new speed:399.000000 +I (240064) example: expect speed: 0.000000 real_pulses:0 +I (240064) example: new speed:399.000000 +I (240074) example: expect speed: 0.000000 real_pulses:0 +I (240074) example: new speed:399.000000 +I (240084) example: expect speed: 0.000000 real_pulses:0 +I (240084) example: new speed:399.000000 +I (240094) example: expect speed: 0.000000 real_pulses:0 +I (240094) example: new speed:399.000000 +I (240104) example: expect speed: 0.000000 real_pulses:0 +I (240104) example: new speed:399.000000 +I (240114) example: expect speed: 0.000000 real_pulses:0 +I (240114) example: new speed:399.000000 +I (240124) example: expect speed: 0.000000 real_pulses:0 +I (240124) example: new speed:399.000000 +I (240134) example: expect speed: 0.000000 real_pulses:0 +I (240134) example: new speed:399.000000 +I (240144) example: expect speed: 0.000000 real_pulses:0 +I (240144) example: new speed:399.000000 +I (240154) example: expect speed: 0.000000 real_pulses:0 +I (240154) example: new speed:399.000000 +I (240164) example: expect speed: 0.000000 real_pulses:0 +I (240164) example: new speed:399.000000 +I (240174) example: expect speed: 0.000000 real_pulses:0 +I (240174) example: new speed:399.000000 +I (240184) example: expect speed: 0.000000 real_pulses:0 +I (240184) example: new speed:399.000000 +I (240194) example: expect speed: 0.000000 real_pulses:0 +I (240194) example: new speed:399.000000 +I (240204) example: expect speed: 0.000000 real_pulses:0 +I (240204) example: new speed:399.000000 +I (240214) example: expect speed: 0.000000 real_pulses:0 +I (240214) example: new speed:399.000000 +I (240224) example: expect speed: 0.000000 real_pulses:0 +I (240224) example: new speed:399.000000 +I (240234) example: expect speed: 0.000000 real_pulses:0 +I (240234) example: new speed:399.000000 +I (240244) example: expect speed: 0.000000 real_pulses:0 +I (240244) example: new speed:399.000000 +I (240254) example: expect speed: 0.000000 real_pulses:0 +I (240254) example: new speed:399.000000 +I (240264) example: expect speed: 0.000000 real_pulses:0 +I (240264) example: new speed:399.000000 +I (240274) example: expect speed: 0.000000 real_pulses:0 +I (240274) example: new speed:399.000000 +I (240284) example: expect speed: 0.000000 real_pulses:0 +I (240284) example: new speed:399.000000 +I (240294) example: expect speed: 0.000000 real_pulses:0 +I (240294) example: new speed:399.000000 +I (240304) example: expect speed: 0.000000 real_pulses:0 +I (240304) example: new speed:399.000000 +I (240314) example: expect speed: 0.000000 real_pulses:0 +I (240314) example: new speed:399.000000 +I (240324) example: expect speed: 0.000000 real_pulses:0 +I (240324) example: new speed:399.000000 +I (240334) example: expect speed: 0.000000 real_pulses:0 +I (240334) example: new speed:399.000000 +I (240344) example: expect speed: 0.000000 real_pulses:0 +I (240344) example: new speed:399.000000 +I (240354) example: expect speed: 0.000000 real_pulses:0 +I (240354) example: new speed:399.000000 +I (240364) example: expect speed: 0.000000 real_pulses:0 +I (240364) example: new speed:399.000000 +I (240374) example: expect speed: 0.000000 real_pulses:0 +I (240374) example: new speed:399.000000 +I (240384) modbus tcp: ModBusSlave_recv() +I (240384) modbus: ModbusSlaveProcess() +I (240384) modbus: check id... +I (240384) modbus: ok +I (240384) modbus: add: 0, length: 10 +I (240384) modbus: Read Holding Registers +I (240384) example: expect speed: 0.000000 real_pulses:0 +I (240394) example: new speed:399.000000 +I (240394) example: expect speed: 0.000000 real_pulses:0 +I (240394) example: new speed:399.000000 +I (240404) example: expect speed: 0.000000 real_pulses:0 +I (240404) example: new speed:399.000000 +I (240414) example: expect speed: 0.000000 real_pulses:0 +I (240414) example: new speed:399.000000 +I (240424) example: expect speed: 0.000000 real_pulses:0 +I (240424) example: new speed:399.000000 +I (240434) example: expect speed: 0.000000 real_pulses:0 +I (240444) example: new speed:399.000000 +I (240444) example: expect speed: 0.000000 real_pulses:0 +I (240444) example: new speed:399.000000 +I (240454) example: expect speed: 0.000000 real_pulses:0 +I (240454) example: new speed:399.000000 +I (240464) example: expect speed: 0.000000 real_pulses:0 +I (240464) example: new speed:399.000000 +I (240474) example: expect speed: 0.000000 real_pulses:0 +I (240474) example: new speed:399.000000 +I (240484) example: expect speed: 0.000000 real_pulses:0 +I (240494) example: new speed:399.000000 +I (240494) example: expect speed: 0.000000 real_pulses:0 +I (240494) example: new speed:399.000000 +I (240504) example: expect speed: 0.000000 real_pulses:0 +I (240504) example: new speed:399.000000 +I (240514) example: expect speed: 0.000000 real_pulses:0 +I (240514) example: new speed:399.000000 +I (240524) example: expect speed: 0.000000 real_pulses:0 +I (240524) example: new speed:399.000000 +I (240534) example: expect speed: 0.000000 real_pulses:0 +I (240544) example: new speed:399.000000 +I (240544) example: expect speed: 0.000000 real_pulses:0 +I (240544) example: new speed:399.000000 +I (240554) example: expect speed: 0.000000 real_pulses:0 +I (240554) example: new speed:399.000000 +I (240564) example: expect speed: 0.000000 real_pulses:0 +I (240564) example: new speed:399.000000 +I (240574) example: expect speed: 0.000000 real_pulses:0 +I (240584) example: new speed:399.000000 +I (240584) example: expect speed: 0.000000 real_pulses:0 +I (240584) example: new speed:399.000000 +I (240594) example: expect speed: 0.000000 real_pulses:0 +I (240594) example: new speed:399.000000 +I (240604) example: expect speed: 0.000000 real_pulses:0 +I (240604) example: new speed:399.000000 +I (240614) example: expect speed: 0.000000 real_pulses:0 +I (240614) example: new speed:399.000000 +I (240624) example: expect speed: 0.000000 real_pulses:0 +I (240624) example: new speed:399.000000 +I (240634) example: expect speed: 0.000000 real_pulses:0 +I (240634) example: new speed:399.000000 +I (240644) example: expect speed: 0.000000 real_pulses:0 +I (240644) example: new speed:399.000000 +I (240654) example: expect speed: 0.000000 real_pulses:0 +I (240654) example: new speed:399.000000 +I (240664) example: expect speed: 0.000000 real_pulses:0 +I (240664) example: new speed:399.000000 +I (240674) example: expect speed: 0.000000 real_pulses:0 +I (240674) example: new speed:399.000000 +I (240684) example: expect speed: 0.000000 real_pulses:0 +I (240684) example: new speed:399.000000 +I (240694) example: expect speed: 0.000000 real_pulses:0 +I (240694) example: new speed:399.000000 +I (240704) example: expect speed: 0.000000 real_pulses:0 +I (240704) example: new speed:399.000000 +I (240714) example: expect speed: 0.000000 real_pulses:0 +I (240714) example: new speed:399.000000 +I (240724) example: expect speed: 0.000000 real_pulses:0 +I (240724) example: new speed:399.000000 +I (240734) example: expect speed: 0.000000 real_pulses:0 +I (240734) example: new speed:399.000000 +I (240744) example: expect speed: 0.000000 real_pulses:0 +I (240744) example: new speed:399.000000 +I (240754) example: expect speed: 0.000000 real_pulses:0 +I (240754) example: new speed:399.000000 +I (240764) example: expect speed: 0.000000 real_pulses:0 +I (240764) example: new speed:399.000000 +I (240774) example: expect speed: 0.000000 real_pulses:0 +I (240774) example: new speed:399.000000 +I (240784) example: expect speed: 0.000000 real_pulses:0 +I (240784) example: new speed:399.000000 +I (240794) example: expect speed: 0.000000 real_pulses:0 +I (240794) example: new speed:399.000000 +I (240804) example: expect speed: 0.000000 real_pulses:0 +I (240804) example: new speed:399.000000 +I (240814) example: expect speed: 0.000000 real_pulses:0 +I (240814) example: new speed:399.000000 +I (240824) example: expect speed: 0.000000 real_pulses:0 +I (240824) example: new speed:399.000000 +I (240834) example: expect speed: 0.000000 real_pulses:0 +I (240834) example: new speed:399.000000 +I (240844) example: expect speed: 0.000000 real_pulses:0 +I (240844) example: new speed:399.000000 +I (240854) example: expect speed: 0.000000 real_pulses:0 +I (240854) example: new speed:399.000000 +I (240864) example: expect speed: 0.000000 real_pulses:0 +I (240864) example: new speed:399.000000 +I (240874) example: expect speed: 0.000000 real_pulses:0 +I (240874) example: new speed:399.000000 +I (240884) example: expect speed: 0.000000 real_pulses:0 +I (240884) example: new speed:399.000000 +I (240894) example: expect speed: 0.000000 real_pulses:0 +I (240894) example: new speed:399.000000 +I (240904) example: expect speed: 0.000000 real_pulses:0 +I (240904) example: new speed:399.000000 +I (240914) example: expect speed: 0.000000 real_pulses:0 +I (240914) example: new speed:399.000000 +I (240924) example: expect speed: 0.000000 real_pulses:0 +I (240924) example: new speed:399.000000 +I (240934) example: expect speed: 0.000000 real_pulses:0 +I (240934) example: new speed:399.000000 +I (240944) example: expect speed: 0.000000 real_pulses:0 +I (240944) example: new speed:399.000000 +I (240954) example: expect speed: 0.000000 real_pulses:0 +I (240954) example: new speed:399.000000 +I (240964) example: expect speed: 0.000000 real_pulses:0 +I (240964) example: new speed:399.000000 +I (240974) example: expect speed: 0.000000 real_pulses:0 +I (240974) example: new speed:399.000000 +I (240984) example: expect speed: 0.000000 real_pulses:0 +I (240984) example: new speed:399.000000 +I (240994) example: expect speed: 0.000000 real_pulses:0 +I (240994) example: new speed:399.000000 +I (241004) example: expect speed: 0.000000 real_pulses:0 +I (241004) example: new speed:399.000000 +I (241014) example: expect speed: 0.000000 real_pulses:0 +I (241014) example: new speed:399.000000 +I (241024) example: expect speed: 0.000000 real_pulses:0 +I (241024) example: new speed:399.000000 +I (241034) example: expect speed: 0.000000 real_pulses:0 +I (241034) example: new speed:399.000000 +I (241044) example: expect speed: 0.000000 real_pulses:0 +I (241044) example: new speed:399.000000 +I (241054) example: expect speed: 0.000000 real_pulses:0 +I (241054) example: new speed:399.000000 +I (241064) example: expect speed: 0.000000 real_pulses:0 +I (241064) example: new speed:399.000000 +I (241074) example: expect speed: 0.000000 real_pulses:0 +I (241074) example: new speed:399.000000 +I (241084) example: expect speed: 0.000000 real_pulses:0 +I (241084) example: new speed:399.000000 +I (241094) example: expect speed: 0.000000 real_pulses:0 +I (241094) example: new speed:399.000000 +I (241104) example: expect speed: 0.000000 real_pulses:0 +I (241104) example: new speed:399.000000 +I (241114) example: expect speed: 0.000000 real_pulses:0 +I (241114) example: new speed:399.000000 +I (241124) example: expect speed: 0.000000 real_pulses:0 +I (241124) example: new speed:399.000000 +I (241134) example: expect speed: 0.000000 real_pulses:0 +I (241134) example: new speed:399.000000 +I (241144) example: expect speed: 0.000000 real_pulses:0 +I (241144) example: new speed:399.000000 +I (241154) example: expect speed: 0.000000 real_pulses:0 +I (241154) example: new speed:399.000000 +I (241164) example: expect speed: 0.000000 real_pulses:0 +I (241164) example: new speed:399.000000 +I (241174) example: expect speed: 0.000000 real_pulses:0 +I (241174) example: new speed:399.000000 +I (241184) example: expect speed: 0.000000 real_pulses:0 +I (241184) example: new speed:399.000000 +I (241194) example: expect speed: 0.000000 real_pulses:0 +I (241194) example: new speed:399.000000 +I (241204) example: expect speed: 0.000000 real_pulses:0 +I (241204) example: new speed:399.000000 +I (241214) example: expect speed: 0.000000 real_pulses:0 +I (241214) example: new speed:399.000000 +I (241224) example: expect speed: 0.000000 real_pulses:0 +I (241224) example: new speed:399.000000 +I (241234) example: expect speed: 0.000000 real_pulses:0 +I (241234) example: new speed:399.000000 +I (241244) example: expect speed: 0.000000 real_pulses:0 +I (241244) example: new speed:399.000000 +I (241254) example: expect speed: 0.000000 real_pulses:0 +I (241254) example: new speed:399.000000 +I (241264) example: expect speed: 0.000000 real_pulses:0 +I (241264) example: new speed:399.000000 +I (241274) example: expect speed: 0.000000 real_pulses:0 +I (241274) example: new speed:399.000000 +I (241284) example: expect speed: 0.000000 real_pulses:0 +I (241284) example: new speed:399.000000 +I (241294) example: expect speed: 0.000000 real_pulses:0 +I (241294) example: new speed:399.000000 +I (241304) example: expect speed: 0.000000 real_pulses:0 +I (241304) example: new speed:399.000000 +I (241314) example: expect speed: 0.000000 real_pulses:0 +I (241314) example: new speed:399.000000 +I (241324) example: expect speed: 0.000000 real_pulses:0 +I (241324) example: new speed:399.000000 +I (241334) example: expect speed: 0.000000 real_pulses:0 +I (241334) example: new speed:399.000000 +I (241344) example: expect speed: 0.000000 real_pulses:0 +I (241344) example: new speed:399.000000 +I (241354) example: expect speed: 0.000000 real_pulses:0 +I (241354) example: new speed:399.000000 +I (241364) example: expect speed: 0.000000 real_pulses:0 +I (241364) example: new speed:399.000000 +I (241374) example: expect speed: 0.000000 real_pulses:0 +I (241374) example: new speed:399.000000 +I (241384) example: expect speed: 0.000000 real_pulses:0 +I (241384) example: new speed:399.000000 +I (241394) example: expect speed: 0.000000 real_pulses:0 +I (241394) example: new speed:399.000000 +I (241404) example: expect speed: 0.000000 real_pulses:0 +I (241414) example: new speed:399.000000 +I (241414) modbus tcp: ModBusSlave_recv() +I (241414) modbus: ModbusSlaveProcess() +I (241414) modbus: check id... +I (241414) modbus: ok +I (241414) modbus: add: 0, length: 10 +I (241414) modbus: Read Holding Registers +I (241414) example: expect speed: 0.000000 real_pulses:0 +I (241424) example: new speed:399.000000 +I (241424) example: expect speed: 0.000000 real_pulses:0 +I (241424) example: new speed:399.000000 +I (241434) example: expect speed: 0.000000 real_pulses:0 +I (241434) example: new speed:399.000000 +I (241444) example: expect speed: 0.000000 real_pulses:0 +I (241444) example: new speed:399.000000 +I (241454) example: expect speed: 0.000000 real_pulses:0 +I (241454) example: new speed:399.000000 +I (241464) example: expect speed: 0.000000 real_pulses:0 +I (241474) example: new speed:399.000000 +I (241474) example: expect speed: 0.000000 real_pulses:0 +I (241484) example: new speed:399.000000 +I (241484) example: expect speed: 0.000000 real_pulses:0 +I (241484) example: new speed:399.000000 +I (241494) example: expect speed: 0.000000 real_pulses:0 +I (241494) example: new speed:399.000000 +I (241504) example: expect speed: 0.000000 real_pulses:0 +I (241504) example: new speed:399.000000 +I (241514) example: expect speed: 0.000000 real_pulses:0 +I (241524) example: new speed:399.000000 +I (241524) example: expect speed: 0.000000 real_pulses:0 +I (241524) example: new speed:399.000000 +I (241534) example: expect speed: 0.000000 real_pulses:0 +I (241534) example: new speed:399.000000 +I (241544) example: expect speed: 0.000000 real_pulses:0 +I (241544) example: new speed:399.000000 +I (241554) example: expect speed: 0.000000 real_pulses:0 +I (241554) example: new speed:399.000000 +I (241564) example: expect speed: 0.000000 real_pulses:0 +I (241574) example: new speed:399.000000 +I (241574) example: expect speed: 0.000000 real_pulses:0 +I (241574) example: new speed:399.000000 +I (241584) example: expect speed: 0.000000 real_pulses:0 +I (241584) example: new speed:399.000000 +I (241594) example: expect speed: 0.000000 real_pulses:0 +I (241594) example: new speed:399.000000 +I (241604) example: expect speed: 0.000000 real_pulses:0 +I (241604) example: new speed:399.000000 +I (241614) example: expect speed: 0.000000 real_pulses:0 +I (241614) example: new speed:399.000000 +I (241624) example: expect speed: 0.000000 real_pulses:0 +I (241624) example: new speed:399.000000 +I (241634) example: expect speed: 0.000000 real_pulses:0 +I (241634) example: new speed:399.000000 +I (241644) example: expect speed: 0.000000 real_pulses:0 +I (241644) example: new speed:399.000000 +I (241654) example: expect speed: 0.000000 real_pulses:0 +I (241654) example: new speed:399.000000 +I (241664) example: expect speed: 0.000000 real_pulses:0 +I (241664) example: new speed:399.000000 +I (241674) example: expect speed: 0.000000 real_pulses:0 +I (241674) example: new speed:399.000000 +I (241684) example: expect speed: 0.000000 real_pulses:0 +I (241684) example: new speed:399.000000 +I (241694) example: expect speed: 0.000000 real_pulses:0 +I (241694) example: new speed:399.000000 +I (241704) example: expect speed: 0.000000 real_pulses:0 +I (241704) example: new speed:399.000000 +I (241714) example: expect speed: 0.000000 real_pulses:0 +I (241714) example: new speed:399.000000 +I (241724) example: expect speed: 0.000000 real_pulses:0 +I (241724) example: new speed:399.000000 +I (241734) example: expect speed: 0.000000 real_pulses:0 +I (241734) example: new speed:399.000000 +I (241744) example: expect speed: 0.000000 real_pulses:0 +I (241744) example: new speed:399.000000 +I (241754) example: expect speed: 0.000000 real_pulses:0 +I (241754) example: new speed:399.000000 +I (241764) example: expect speed: 0.000000 real_pulses:0 +I (241764) example: new speed:399.000000 +I (241774) example: expect speed: 0.000000 real_pulses:0 +I (241774) example: new speed:399.000000 +I (241784) example: expect speed: 0.000000 real_pulses:0 +I (241784) example: new speed:399.000000 +I (241794) example: expect speed: 0.000000 real_pulses:0 +I (241794) example: new speed:399.000000 +I (241804) example: expect speed: 0.000000 real_pulses:0 +I (241804) example: new speed:399.000000 +I (241814) example: expect speed: 0.000000 real_pulses:0 +I (241814) example: new speed:399.000000 +I (241824) example: expect speed: 0.000000 real_pulses:0 +I (241824) example: new speed:399.000000 +I (241834) example: expect speed: 0.000000 real_pulses:0 +I (241834) example: new speed:399.000000 +I (241844) example: expect speed: 0.000000 real_pulses:0 +I (241844) example: new speed:399.000000 +I (241854) example: expect speed: 0.000000 real_pulses:0 +I (241854) example: new speed:399.000000 +I (241864) example: expect speed: 0.000000 real_pulses:0 +I (241864) example: new speed:399.000000 +I (241874) example: expect speed: 0.000000 real_pulses:0 +I (241874) example: new speed:399.000000 +I (241884) example: expect speed: 0.000000 real_pulses:0 +I (241884) example: new speed:399.000000 +I (241894) example: expect speed: 0.000000 real_pulses:0 +I (241894) example: new speed:399.000000 +I (241904) example: expect speed: 0.000000 real_pulses:0 +I (241904) example: new speed:399.000000 +I (241914) example: expect speed: 0.000000 real_pulses:0 +I (241914) example: new speed:399.000000 +I (241924) example: expect speed: 0.000000 real_pulses:0 +I (241924) example: new speed:399.000000 +I (241934) example: expect speed: 0.000000 real_pulses:0 +I (241934) example: new speed:399.000000 +I (241944) example: expect speed: 0.000000 real_pulses:0 +I (241944) example: new speed:399.000000 +I (241954) example: expect speed: 0.000000 real_pulses:0 +I (241954) example: new speed:399.000000 +I (241964) example: expect speed: 0.000000 real_pulses:0 +I (241964) example: new speed:399.000000 +I (241974) example: expect speed: 0.000000 real_pulses:0 +I (241974) example: new speed:399.000000 +I (241984) example: expect speed: 0.000000 real_pulses:0 +I (241984) example: new speed:399.000000 +I (241994) example: expect speed: 0.000000 real_pulses:0 +I (241994) example: new speed:399.000000 +I (242004) example: expect speed: 0.000000 real_pulses:0 +I (242004) example: new speed:399.000000 +I (242014) example: expect speed: 0.000000 real_pulses:0 +I (242014) example: new speed:399.000000 +I (242024) example: expect speed: 0.000000 real_pulses:0 +I (242024) example: new speed:399.000000 +I (242034) example: expect speed: 0.000000 real_pulses:0 +I (242034) example: new speed:399.000000 +I (242044) example: expect speed: 0.000000 real_pulses:0 +I (242044) example: new speed:399.000000 +I (242054) example: expect speed: 0.000000 real_pulses:0 +I (242054) example: new speed:399.000000 +I (242064) example: expect speed: 0.000000 real_pulses:0 +I (242064) example: new speed:399.000000 +I (242074) example: expect speed: 0.000000 real_pulses:0 +I (242074) example: new speed:399.000000 +I (242084) example: expect speed: 0.000000 real_pulses:0 +I (242084) example: new speed:399.000000 +I (242094) example: expect speed: 0.000000 real_pulses:0 +I (242094) example: new speed:399.000000 +I (242104) example: expect speed: 0.000000 real_pulses:0 +I (242104) example: new speed:399.000000 +I (242114) example: expect speed: 0.000000 real_pulses:0 +I (242114) example: new speed:399.000000 +I (242124) example: expect speed: 0.000000 real_pulses:0 +I (242124) example: new speed:399.000000 +I (242134) example: expect speed: 0.000000 real_pulses:0 +I (242134) example: new speed:399.000000 +I (242144) example: expect speed: 0.000000 real_pulses:0 +I (242144) example: new speed:399.000000 +I (242154) example: expect speed: 0.000000 real_pulses:0 +I (242154) example: new speed:399.000000 +I (242164) example: expect speed: 0.000000 real_pulses:0 +I (242164) example: new speed:399.000000 +I (242174) example: expect speed: 0.000000 real_pulses:0 +I (242174) example: new speed:399.000000 +I (242184) example: expect speed: 0.000000 real_pulses:0 +I (242184) example: new speed:399.000000 +I (242194) example: expect speed: 0.000000 real_pulses:0 +I (242194) example: new speed:399.000000 +I (242204) example: expect speed: 0.000000 real_pulses:0 +I (242204) example: new speed:399.000000 +I (242214) example: expect speed: 0.000000 real_pulses:0 +I (242214) example: new speed:399.000000 +I (242224) example: expect speed: 0.000000 real_pulses:0 +I (242224) example: new speed:399.000000 +I (242234) example: expect speed: 0.000000 real_pulses:0 +I (242234) example: new speed:399.000000 +I (242244) example: expect speed: 0.000000 real_pulses:0 +I (242244) example: new speed:399.000000 +I (242254) example: expect speed: 0.000000 real_pulses:0 +I (242254) example: new speed:399.000000 +I (242264) example: expect speed: 0.000000 real_pulses:0 +I (242264) example: new speed:399.000000 +I (242274) example: expect speed: 0.000000 real_pulses:0 +I (242274) example: new speed:399.000000 +I (242284) example: expect speed: 0.000000 real_pulses:0 +I (242284) example: new speed:399.000000 +I (242294) example: expect speed: 0.000000 real_pulses:0 +I (242294) example: new speed:399.000000 +I (242304) example: expect speed: 0.000000 real_pulses:0 +I (242304) example: new speed:399.000000 +I (242314) example: expect speed: 0.000000 real_pulses:0 +I (242314) example: new speed:399.000000 +I (242324) example: expect speed: 0.000000 real_pulses:0 +I (242324) example: new speed:399.000000 +I (242334) example: expect speed: 0.000000 real_pulses:0 +I (242334) example: new speed:399.000000 +I (242344) example: expect speed: 0.000000 real_pulses:0 +I (242344) example: new speed:399.000000 +I (242354) example: expect speed: 0.000000 real_pulses:0 +I (242354) example: new speed:399.000000 +I (242364) example: expect speed: 0.000000 real_pulses:0 +I (242364) example: new speed:399.000000 +I (242374) example: expect speed: 0.000000 real_pulses:0 +I (242374) example: new speed:399.000000 +I (242384) example: expect speed: 0.000000 real_pulses:0 +I (242384) example: new speed:399.000000 +I (242394) example: expect speed: 0.000000 real_pulses:0 +I (242394) example: new speed:399.000000 +I (242404) example: expect speed: 0.000000 real_pulses:0 +I (242404) example: new speed:399.000000 +I (242414) example: expect speed: 0.000000 real_pulses:0 +I (242414) example: new speed:399.000000 +I (242424) example: expect speed: 0.000000 real_pulses:0 +I (242434) example: new speed:399.000000 +I (242434) modbus tcp: ModBusSlave_recv() +I (242434) modbus: ModbusSlaveProcess() +I (242434) modbus: check id... +I (242434) modbus: ok +I (242434) modbus: add: 0, length: 10 +I (242434) modbus: Read Holding Registers +I (242434) example: expect speed: 0.000000 real_pulses:0 +I (242444) example: new speed:399.000000 +I (242444) example: expect speed: 0.000000 real_pulses:0 +I (242444) example: new speed:399.000000 +I (242454) example: expect speed: 0.000000 real_pulses:0 +I (242454) example: new speed:399.000000 +I (242464) example: expect speed: 0.000000 real_pulses:0 +I (242464) example: new speed:399.000000 +I (242474) example: expect speed: 0.000000 real_pulses:0 +I (242474) example: new speed:399.000000 +I (242484) example: expect speed: 0.000000 real_pulses:0 +I (242484) example: new speed:399.000000 +I (242494) example: expect speed: 0.000000 real_pulses:0 +I (242504) example: new speed:399.000000 +I (242504) example: expect speed: 0.000000 real_pulses:0 +I (242504) example: new speed:399.000000 +I (242514) example: expect speed: 0.000000 real_pulses:0 +I (242514) example: new speed:399.000000 +I (242524) example: expect speed: 0.000000 real_pulses:0 +I (242524) example: new speed:399.000000 +I (242534) example: expect speed: 0.000000 real_pulses:0 +I (242544) example: new speed:399.000000 +I (242544) example: expect speed: 0.000000 real_pulses:0 +I (242544) example: new speed:399.000000 +I (242554) example: expect speed: 0.000000 real_pulses:0 +I (242554) example: new speed:399.000000 +I (242564) example: expect speed: 0.000000 real_pulses:0 +I (242564) example: new speed:399.000000 +I (242574) example: expect speed: 0.000000 real_pulses:0 +I (242574) example: new speed:399.000000 +I (242584) example: expect speed: 0.000000 real_pulses:0 +I (242584) example: new speed:399.000000 +I (242594) example: expect speed: 0.000000 real_pulses:0 +I (242604) example: new speed:399.000000 +I (242604) example: expect speed: 0.000000 real_pulses:0 +I (242604) example: new speed:399.000000 +I (242614) example: expect speed: 0.000000 real_pulses:0 +I (242614) example: new speed:399.000000 +I (242624) example: expect speed: 0.000000 real_pulses:0 +I (242624) example: new speed:399.000000 +I (242634) example: expect speed: 0.000000 real_pulses:0 +I (242634) example: new speed:399.000000 +I (242644) example: expect speed: 0.000000 real_pulses:0 +I (242644) example: new speed:399.000000 +I (242654) example: expect speed: 0.000000 real_pulses:0 +I (242654) example: new speed:399.000000 +I (242664) example: expect speed: 0.000000 real_pulses:0 +I (242664) example: new speed:399.000000 +I (242674) example: expect speed: 0.000000 real_pulses:0 +I (242674) example: new speed:399.000000 +I (242684) example: expect speed: 0.000000 real_pulses:0 +I (242684) example: new speed:399.000000 +I (242694) example: expect speed: 0.000000 real_pulses:0 +I (242694) example: new speed:399.000000 +I (242704) example: expect speed: 0.000000 real_pulses:0 +I (242704) example: new speed:399.000000 +I (242714) example: expect speed: 0.000000 real_pulses:0 +I (242714) example: new speed:399.000000 +I (242724) example: expect speed: 0.000000 real_pulses:0 +I (242724) example: new speed:399.000000 +I (242734) example: expect speed: 0.000000 real_pulses:0 +I (242734) example: new speed:399.000000 +I (242744) example: expect speed: 0.000000 real_pulses:0 +I (242744) example: new speed:399.000000 +I (242754) example: expect speed: 0.000000 real_pulses:0 +I (242754) example: new speed:399.000000 +I (242764) example: expect speed: 0.000000 real_pulses:0 +I (242764) example: new speed:399.000000 +I (242774) example: expect speed: 0.000000 real_pulses:0 +I (242774) example: new speed:399.000000 +I (242784) example: expect speed: 0.000000 real_pulses:0 +I (242784) example: new speed:399.000000 +I (242794) example: expect speed: 0.000000 real_pulses:0 +I (242794) example: new speed:399.000000 +I (242804) example: expect speed: 0.000000 real_pulses:0 +I (242804) example: new speed:399.000000 +I (242814) example: expect speed: 0.000000 real_pulses:0 +I (242814) example: new speed:399.000000 +I (242824) example: expect speed: 0.000000 real_pulses:0 +I (242824) example: new speed:399.000000 +I (242834) example: expect speed: 0.000000 real_pulses:0 +I (242834) example: new speed:399.000000 +I (242844) example: expect speed: 0.000000 real_pulses:0 +I (242844) example: new speed:399.000000 +I (242854) example: expect speed: 0.000000 real_pulses:0 +I (242854) example: new speed:399.000000 +I (242864) example: expect speed: 0.000000 real_pulses:0 +I (242864) example: new speed:399.000000 +I (242874) example: expect speed: 0.000000 real_pulses:0 +I (242874) example: new speed:399.000000 +I (242884) example: expect speed: 0.000000 real_pulses:0 +I (242884) example: new speed:399.000000 +I (242894) example: expect speed: 0.000000 real_pulses:0 +I (242894) example: new speed:399.000000 +I (242904) example: expect speed: 0.000000 real_pulses:0 +I (242904) example: new speed:399.000000 +I (242914) example: expect speed: 0.000000 real_pulses:0 +I (242914) example: new speed:399.000000 +I (242924) example: expect speed: 0.000000 real_pulses:0 +I (242924) example: new speed:399.000000 +I (242934) example: expect speed: 0.000000 real_pulses:0 +I (242934) example: new speed:399.000000 +I (242944) example: expect speed: 0.000000 real_pulses:0 +I (242944) example: new speed:399.000000 +I (242954) example: expect speed: 0.000000 real_pulses:0 +I (242954) example: new speed:399.000000 +I (242964) example: expect speed: 0.000000 real_pulses:0 +I (242964) example: new speed:399.000000 +I (242974) example: expect speed: 0.000000 real_pulses:0 +I (242974) example: new speed:399.000000 +I (242984) example: expect speed: 0.000000 real_pulses:0 +I (242984) example: new speed:399.000000 +I (242994) example: expect speed: 0.000000 real_pulses:0 +I (242994) example: new speed:399.000000 +I (243004) example: expect speed: 0.000000 real_pulses:0 +I (243004) example: new speed:399.000000 +I (243014) example: expect speed: 0.000000 real_pulses:0 +I (243014) example: new speed:399.000000 +I (243024) example: expect speed: 0.000000 real_pulses:0 +I (243024) example: new speed:399.000000 +I (243034) example: expect speed: 0.000000 real_pulses:0 +I (243034) example: new speed:399.000000 +I (243044) example: expect speed: 0.000000 real_pulses:0 +I (243044) example: new speed:399.000000 +I (243054) example: expect speed: 0.000000 real_pulses:0 +I (243054) example: new speed:399.000000 +I (243064) example: expect speed: 0.000000 real_pulses:0 +I (243064) example: new speed:399.000000 +I (243074) example: expect speed: 0.000000 real_pulses:0 +I (243074) example: new speed:399.000000 +I (243084) example: expect speed: 0.000000 real_pulses:0 +I (243084) example: new speed:399.000000 +I (243094) example: expect speed: 0.000000 real_pulses:0 +I (243094) example: new speed:399.000000 +I (243104) example: expect speed: 0.000000 real_pulses:0 +I (243104) example: new speed:399.000000 +I (243114) example: expect speed: 0.000000 real_pulses:0 +I (243114) example: new speed:399.000000 +I (243124) example: expect speed: 0.000000 real_pulses:0 +I (243124) example: new speed:399.000000 +I (243134) example: expect speed: 0.000000 real_pulses:0 +I (243134) example: new speed:399.000000 +I (243144) example: expect speed: 0.000000 real_pulses:0 +I (243144) example: new speed:399.000000 +I (243154) example: expect speed: 0.000000 real_pulses:0 +I (243154) example: new speed:399.000000 +I (243164) example: expect speed: 0.000000 real_pulses:0 +I (243164) example: new speed:399.000000 +I (243174) example: expect speed: 0.000000 real_pulses:0 +I (243174) example: new speed:399.000000 +I (243184) example: expect speed: 0.000000 real_pulses:0 +I (243184) example: new speed:399.000000 +I (243194) example: expect speed: 0.000000 real_pulses:0 +I (243194) example: new speed:399.000000 +I (243204) example: expect speed: 0.000000 real_pulses:0 +I (243204) example: new speed:399.000000 +I (243214) example: expect speed: 0.000000 real_pulses:0 +I (243214) example: new speed:399.000000 +I (243224) example: expect speed: 0.000000 real_pulses:0 +I (243224) example: new speed:399.000000 +I (243234) example: expect speed: 0.000000 real_pulses:0 +I (243234) example: new speed:399.000000 +I (243244) example: expect speed: 0.000000 real_pulses:0 +I (243244) example: new speed:399.000000 +I (243254) example: expect speed: 0.000000 real_pulses:0 +I (243254) example: new speed:399.000000 +I (243264) example: expect speed: 0.000000 real_pulses:0 +I (243264) example: new speed:399.000000 +I (243274) example: expect speed: 0.000000 real_pulses:0 +I (243274) example: new speed:399.000000 +I (243284) example: expect speed: 0.000000 real_pulses:0 +I (243284) example: new speed:399.000000 +I (243294) example: expect speed: 0.000000 real_pulses:0 +I (243294) example: new speed:399.000000 +I (243304) example: expect speed: 0.000000 real_pulses:0 +I (243304) example: new speed:399.000000 +I (243314) example: expect speed: 0.000000 real_pulses:0 +I (243314) example: new speed:399.000000 +I (243324) example: expect speed: 0.000000 real_pulses:0 +I (243324) example: new speed:399.000000 +I (243334) example: expect speed: 0.000000 real_pulses:0 +I (243334) example: new speed:399.000000 +I (243344) example: expect speed: 0.000000 real_pulses:0 +I (243344) example: new speed:399.000000 +I (243354) example: expect speed: 0.000000 real_pulses:0 +I (243354) example: new speed:399.000000 +I (243364) example: expect speed: 0.000000 real_pulses:0 +I (243364) example: new speed:399.000000 +I (243374) example: expect speed: 0.000000 real_pulses:0 +I (243374) example: new speed:399.000000 +I (243384) example: expect speed: 0.000000 real_pulses:0 +I (243384) example: new speed:399.000000 +I (243394) example: expect speed: 0.000000 real_pulses:0 +I (243394) example: new speed:399.000000 +I (243404) example: expect speed: 0.000000 real_pulses:0 +I (243404) example: new speed:399.000000 +I (243414) example: expect speed: 0.000000 real_pulses:0 +I (243414) example: new speed:399.000000 +I (243424) example: expect speed: 0.000000 real_pulses:0 +I (243424) example: new speed:399.000000 +I (243434) example: expect speed: 0.000000 real_pulses:0 +I (243434) example: new speed:399.000000 +I (243444) example: expect speed: 0.000000 real_pulses:0 +I (243444) example: new speed:399.000000 +I (243454) modbus tcp: ModBusSlave_recv() +I (243454) modbus: ModbusSlaveProcess() +I (243454) modbus: check id... +I (243454) modbus: ok +I (243454) modbus: add: 0, length: 10 +I (243454) modbus: Read Holding Registers +I (243454) example: expect speed: 0.000000 real_pulses:0 +I (243464) example: new speed:399.000000 +I (243464) example: expect speed: 0.000000 real_pulses:0 +I (243464) example: new speed:399.000000 +I (243474) example: expect speed: 0.000000 real_pulses:0 +I (243474) example: new speed:399.000000 +I (243484) example: expect speed: 0.000000 real_pulses:0 +I (243484) example: new speed:399.000000 +I (243494) example: expect speed: 0.000000 real_pulses:0 +I (243494) example: new speed:399.000000 +I (243504) example: expect speed: 0.000000 real_pulses:0 +I (243504) example: new speed:399.000000 +I (243514) example: expect speed: 0.000000 real_pulses:0 +I (243514) example: new speed:399.000000 +I (243524) example: expect speed: 0.000000 real_pulses:0 +I (243524) example: new speed:399.000000 +I (243534) example: expect speed: 0.000000 real_pulses:0 +I (243534) example: new speed:399.000000 +I (243544) example: expect speed: 0.000000 real_pulses:0 +I (243544) example: new speed:399.000000 +I (243554) example: expect speed: 0.000000 real_pulses:0 +I (243564) example: new speed:399.000000 +I (243564) example: expect speed: 0.000000 real_pulses:0 +I (243574) example: new speed:399.000000 +I (243574) example: expect speed: 0.000000 real_pulses:0 +I (243574) example: new speed:399.000000 +I (243584) example: expect speed: 0.000000 real_pulses:0 +I (243584) example: new speed:399.000000 +I (243594) example: expect speed: 0.000000 real_pulses:0 +I (243594) example: new speed:399.000000 +I (243604) example: expect speed: 0.000000 real_pulses:0 +I (243604) example: new speed:399.000000 +I (243614) example: expect speed: 0.000000 real_pulses:0 +I (243624) example: new speed:399.000000 +I (243624) example: expect speed: 0.000000 real_pulses:0 +I (243624) example: new speed:399.000000 +I (243634) example: expect speed: 0.000000 real_pulses:0 +I (243634) example: new speed:399.000000 +I (243644) example: expect speed: 0.000000 real_pulses:0 +I (243644) example: new speed:399.000000 +I (243654) example: expect speed: 0.000000 real_pulses:0 +I (243654) example: new speed:399.000000 +I (243664) example: expect speed: 0.000000 real_pulses:0 +I (243664) example: new speed:399.000000 +I (243674) example: expect speed: 0.000000 real_pulses:0 +I (243674) example: new speed:399.000000 +I (243684) example: expect speed: 0.000000 real_pulses:0 +I (243684) example: new speed:399.000000 +I (243694) example: expect speed: 0.000000 real_pulses:0 +I (243694) example: new speed:399.000000 +I (243704) example: expect speed: 0.000000 real_pulses:0 +I (243704) example: new speed:399.000000 +I (243714) example: expect speed: 0.000000 real_pulses:0 +I (243714) example: new speed:399.000000 +I (243724) example: expect speed: 0.000000 real_pulses:0 +I (243724) example: new speed:399.000000 +I (243734) example: expect speed: 0.000000 real_pulses:0 +I (243734) example: new speed:399.000000 +I (243744) example: expect speed: 0.000000 real_pulses:0 +I (243744) example: new speed:399.000000 +I (243754) example: expect speed: 0.000000 real_pulses:0 +I (243754) example: new speed:399.000000 +I (243764) example: expect speed: 0.000000 real_pulses:0 +I (243764) example: new speed:399.000000 +I (243774) example: expect speed: 0.000000 real_pulses:0 +I (243774) example: new speed:399.000000 +I (243784) example: expect speed: 0.000000 real_pulses:0 +I (243784) example: new speed:399.000000 +I (243794) example: expect speed: 0.000000 real_pulses:0 +I (243794) example: new speed:399.000000 +I (243804) example: expect speed: 0.000000 real_pulses:0 +I (243804) example: new speed:399.000000 +I (243814) example: expect speed: 0.000000 real_pulses:0 +I (243814) example: new speed:399.000000 +I (243824) example: expect speed: 0.000000 real_pulses:0 +I (243824) example: new speed:399.000000 +I (243834) example: expect speed: 0.000000 real_pulses:0 +I (243834) example: new speed:399.000000 +I (243844) example: expect speed: 0.000000 real_pulses:0 +I (243844) example: new speed:399.000000 +I (243854) example: expect speed: 0.000000 real_pulses:0 +I (243854) example: new speed:399.000000 +I (243864) example: expect speed: 0.000000 real_pulses:0 +I (243864) example: new speed:399.000000 +I (243874) example: expect speed: 0.000000 real_pulses:0 +I (243874) example: new speed:399.000000 +I (243884) example: expect speed: 0.000000 real_pulses:0 +I (243884) example: new speed:399.000000 +I (243894) example: expect speed: 0.000000 real_pulses:0 +I (243894) example: new speed:399.000000 +I (243904) example: expect speed: 0.000000 real_pulses:0 +I (243904) example: new speed:399.000000 +I (243914) example: expect speed: 0.000000 real_pulses:0 +I (243914) example: new speed:399.000000 +I (243924) example: expect speed: 0.000000 real_pulses:0 +I (243924) example: new speed:399.000000 +I (243934) example: expect speed: 0.000000 real_pulses:0 +I (243934) example: new speed:399.000000 +I (243944) example: expect speed: 0.000000 real_pulses:0 +I (243944) example: new speed:399.000000 +I (243954) example: expect speed: 0.000000 real_pulses:0 +I (243954) example: new speed:399.000000 +I (243964) example: expect speed: 0.000000 real_pulses:0 +I (243964) example: new speed:399.000000 +I (243974) example: expect speed: 0.000000 real_pulses:0 +I (243974) example: new speed:399.000000 +I (243984) example: expect speed: 0.000000 real_pulses:0 +I (243984) example: new speed:399.000000 +I (243994) example: expect speed: 0.000000 real_pulses:0 +I (243994) example: new speed:399.000000 +I (244004) example: expect speed: 0.000000 real_pulses:0 +I (244004) example: new speed:399.000000 +I (244014) example: expect speed: 0.000000 real_pulses:0 +I (244014) example: new speed:399.000000 +I (244024) example: expect speed: 0.000000 real_pulses:0 +I (244024) example: new speed:399.000000 +I (244034) example: expect speed: 0.000000 real_pulses:0 +I (244034) example: new speed:399.000000 +I (244044) example: expect speed: 0.000000 real_pulses:0 +I (244044) example: new speed:399.000000 +I (244054) example: expect speed: 0.000000 real_pulses:0 +I (244054) example: new speed:399.000000 +I (244064) example: expect speed: 0.000000 real_pulses:0 +I (244064) example: new speed:399.000000 +I (244074) example: expect speed: 0.000000 real_pulses:0 +I (244074) example: new speed:399.000000 +I (244084) example: expect speed: 0.000000 real_pulses:0 +I (244084) example: new speed:399.000000 +I (244094) example: expect speed: 0.000000 real_pulses:0 +I (244094) example: new speed:399.000000 +I (244104) example: expect speed: 0.000000 real_pulses:0 +I (244104) example: new speed:399.000000 +I (244114) example: expect speed: 0.000000 real_pulses:0 +I (244114) example: new speed:399.000000 +I (244124) example: expect speed: 0.000000 real_pulses:0 +I (244124) example: new speed:399.000000 +I (244134) example: expect speed: 0.000000 real_pulses:0 +I (244134) example: new speed:399.000000 +I (244144) example: expect speed: 0.000000 real_pulses:0 +I (244144) example: new speed:399.000000 +I (244154) example: expect speed: 0.000000 real_pulses:0 +I (244154) example: new speed:399.000000 +I (244164) example: expect speed: 0.000000 real_pulses:0 +I (244164) example: new speed:399.000000 +I (244174) example: expect speed: 0.000000 real_pulses:0 +I (244174) example: new speed:399.000000 +I (244184) example: expect speed: 0.000000 real_pulses:0 +I (244184) example: new speed:399.000000 +I (244194) example: expect speed: 0.000000 real_pulses:0 +I (244194) example: new speed:399.000000 +I (244204) example: expect speed: 0.000000 real_pulses:0 +I (244204) example: new speed:399.000000 +I (244214) example: expect speed: 0.000000 real_pulses:0 +I (244214) example: new speed:399.000000 +I (244224) example: expect speed: 0.000000 real_pulses:0 +I (244224) example: new speed:399.000000 +I (244234) example: expect speed: 0.000000 real_pulses:0 +I (244234) example: new speed:399.000000 +I (244244) example: expect speed: 0.000000 real_pulses:0 +I (244244) example: new speed:399.000000 +I (244254) example: expect speed: 0.000000 real_pulses:0 +I (244254) example: new speed:399.000000 +I (244264) example: expect speed: 0.000000 real_pulses:0 +I (244264) example: new speed:399.000000 +I (244274) example: expect speed: 0.000000 real_pulses:0 +I (244274) example: new speed:399.000000 +I (244284) example: expect speed: 0.000000 real_pulses:0 +I (244284) example: new speed:399.000000 +I (244294) example: expect speed: 0.000000 real_pulses:0 +I (244294) example: new speed:399.000000 +I (244304) example: expect speed: 0.000000 real_pulses:0 +I (244304) example: new speed:399.000000 +I (244314) example: expect speed: 0.000000 real_pulses:0 +I (244314) example: new speed:399.000000 +I (244324) example: expect speed: 0.000000 real_pulses:0 +I (244324) example: new speed:399.000000 +I (244334) example: expect speed: 0.000000 real_pulses:0 +I (244334) example: new speed:399.000000 +I (244344) example: expect speed: 0.000000 real_pulses:0 +I (244344) example: new speed:399.000000 +I (244354) example: expect speed: 0.000000 real_pulses:0 +I (244354) example: new speed:399.000000 +I (244364) example: expect speed: 0.000000 real_pulses:0 +I (244364) example: new speed:399.000000 +I (244374) example: expect speed: 0.000000 real_pulses:0 +I (244374) example: new speed:399.000000 +I (244384) example: expect speed: 0.000000 real_pulses:0 +I (244384) example: new speed:399.000000 +I (244394) example: expect speed: 0.000000 real_pulses:0 +I (244394) example: new speed:399.000000 +I (244404) example: expect speed: 0.000000 real_pulses:0 +I (244404) example: new speed:399.000000 +I (244414) example: expect speed: 0.000000 real_pulses:0 +I (244414) example: new speed:399.000000 +I (244424) example: expect speed: 0.000000 real_pulses:0 +I (244424) example: new speed:399.000000 +I (244434) example: expect speed: 0.000000 real_pulses:0 +I (244434) example: new speed:399.000000 +I (244444) example: expect speed: 0.000000 real_pulses:0 +I (244444) example: new speed:399.000000 +I (244454) example: expect speed: 0.000000 real_pulses:0 +I (244454) example: new speed:399.000000 +I (244464) example: expect speed: 0.000000 real_pulses:0 +I (244464) example: new speed:399.000000 +I (244474) example: expect speed: 0.000000 real_pulses:0 +I (244484) example: new speed:399.000000 +I (244484) modbus tcp: ModBusSlave_recv() +I (244484) modbus: ModbusSlaveProcess() +I (244484) modbus: check id... +I (244484) modbus: ok +I (244484) modbus: add: 0, length: 10 +I (244484) modbus: Read Holding Registers +I (244484) example: expect speed: 0.000000 real_pulses:0 +I (244494) example: new speed:399.000000 +I (244494) example: expect speed: 0.000000 real_pulses:0 +I (244494) example: new speed:399.000000 +I (244504) example: expect speed: 0.000000 real_pulses:0 +I (244504) example: new speed:399.000000 +I (244514) example: expect speed: 0.000000 real_pulses:0 +I (244514) example: new speed:399.000000 +I (244524) example: expect speed: 0.000000 real_pulses:0 +I (244524) example: new speed:399.000000 +I (244534) example: expect speed: 0.000000 real_pulses:0 +I (244544) example: new speed:399.000000 +I (244544) example: expect speed: 0.000000 real_pulses:0 +I (244544) example: new speed:399.000000 +I (244554) example: expect speed: 0.000000 real_pulses:0 +I (244554) example: new speed:399.000000 +I (244564) example: expect speed: 0.000000 real_pulses:0 +I (244564) example: new speed:399.000000 +I (244574) example: expect speed: 0.000000 real_pulses:0 +I (244584) example: new speed:399.000000 +I (244584) example: expect speed: 0.000000 real_pulses:0 +I (244594) example: new speed:399.000000 +I (244594) example: expect speed: 0.000000 real_pulses:0 +I (244594) example: new speed:399.000000 +I (244604) example: expect speed: 0.000000 real_pulses:0 +I (244604) example: new speed:399.000000 +I (244614) example: expect speed: 0.000000 real_pulses:0 +I (244614) example: new speed:399.000000 +I (244624) example: expect speed: 0.000000 real_pulses:0 +I (244624) example: new speed:399.000000 +I (244634) example: expect speed: 0.000000 real_pulses:0 +I (244644) example: new speed:399.000000 +I (244644) example: expect speed: 0.000000 real_pulses:0 +I (244644) example: new speed:399.000000 +I (244654) example: expect speed: 0.000000 real_pulses:0 +I (244654) example: new speed:399.000000 +I (244664) example: expect speed: 0.000000 real_pulses:0 +I (244664) example: new speed:399.000000 +I (244674) example: expect speed: 0.000000 real_pulses:0 +I (244674) example: new speed:399.000000 +I (244684) example: expect speed: 0.000000 real_pulses:0 +I (244684) example: new speed:399.000000 +I (244694) example: expect speed: 0.000000 real_pulses:0 +I (244694) example: new speed:399.000000 +I (244704) example: expect speed: 0.000000 real_pulses:0 +I (244704) example: new speed:399.000000 +I (244714) example: expect speed: 0.000000 real_pulses:0 +I (244714) example: new speed:399.000000 +I (244724) example: expect speed: 0.000000 real_pulses:0 +I (244724) example: new speed:399.000000 +I (244734) example: expect speed: 0.000000 real_pulses:0 +I (244734) example: new speed:399.000000 +I (244744) example: expect speed: 0.000000 real_pulses:0 +I (244744) example: new speed:399.000000 +I (244754) example: expect speed: 0.000000 real_pulses:0 +I (244754) example: new speed:399.000000 +I (244764) example: expect speed: 0.000000 real_pulses:0 +I (244764) example: new speed:399.000000 +I (244774) example: expect speed: 0.000000 real_pulses:0 +I (244774) example: new speed:399.000000 +I (244784) example: expect speed: 0.000000 real_pulses:0 +I (244784) example: new speed:399.000000 +I (244794) example: expect speed: 0.000000 real_pulses:0 +I (244794) example: new speed:399.000000 +I (244804) example: expect speed: 0.000000 real_pulses:0 +I (244804) example: new speed:399.000000 +I (244814) example: expect speed: 0.000000 real_pulses:0 +I (244814) example: new speed:399.000000 +I (244824) example: expect speed: 0.000000 real_pulses:0 +I (244824) example: new speed:399.000000 +I (244834) example: expect speed: 0.000000 real_pulses:0 +I (244834) example: new speed:399.000000 +I (244844) example: expect speed: 0.000000 real_pulses:0 +I (244844) example: new speed:399.000000 +I (244854) example: expect speed: 0.000000 real_pulses:0 +I (244854) example: new speed:399.000000 +I (244864) example: expect speed: 0.000000 real_pulses:0 +I (244864) example: new speed:399.000000 +I (244874) example: expect speed: 0.000000 real_pulses:0 +I (244874) example: new speed:399.000000 +I (244884) example: expect speed: 0.000000 real_pulses:0 +I (244884) example: new speed:399.000000 +I (244894) example: expect speed: 0.000000 real_pulses:0 +I (244894) example: new speed:399.000000 +I (244904) example: expect speed: 0.000000 real_pulses:0 +I (244904) example: new speed:399.000000 +I (244914) example: expect speed: 0.000000 real_pulses:0 +I (244914) example: new speed:399.000000 +I (244924) example: expect speed: 0.000000 real_pulses:0 +I (244924) example: new speed:399.000000 +I (244934) example: expect speed: 0.000000 real_pulses:0 +I (244934) example: new speed:399.000000 +I (244944) example: expect speed: 0.000000 real_pulses:0 +I (244944) example: new speed:399.000000 +I (244954) example: expect speed: 0.000000 real_pulses:0 +I (244954) example: new speed:399.000000 +I (244964) example: expect speed: 0.000000 real_pulses:0 +I (244964) example: new speed:399.000000 +I (244974) example: expect speed: 0.000000 real_pulses:0 +I (244974) example: new speed:399.000000 +I (244984) example: expect speed: 0.000000 real_pulses:0 +I (244984) example: new speed:399.000000 +I (244994) example: expect speed: 0.000000 real_pulses:0 +I (244994) example: new speed:399.000000 +I (245004) example: expect speed: 0.000000 real_pulses:0 +I (245004) example: new speed:399.000000 +I (245014) example: expect speed: 0.000000 real_pulses:0 +I (245014) example: new speed:399.000000 +I (245024) example: expect speed: 0.000000 real_pulses:0 +I (245024) example: new speed:399.000000 +I (245034) example: expect speed: 0.000000 real_pulses:0 +I (245034) example: new speed:399.000000 +I (245044) example: expect speed: 0.000000 real_pulses:0 +I (245044) example: new speed:399.000000 +I (245054) example: expect speed: 0.000000 real_pulses:0 +I (245054) example: new speed:399.000000 +I (245064) example: expect speed: 0.000000 real_pulses:0 +I (245064) example: new speed:399.000000 +I (245074) example: expect speed: 0.000000 real_pulses:0 +I (245074) example: new speed:399.000000 +I (245084) example: expect speed: 0.000000 real_pulses:0 +I (245084) example: new speed:399.000000 +I (245094) example: expect speed: 0.000000 real_pulses:0 +I (245094) example: new speed:399.000000 +I (245104) example: expect speed: 0.000000 real_pulses:0 +I (245104) example: new speed:399.000000 +I (245114) example: expect speed: 0.000000 real_pulses:0 +I (245114) example: new speed:399.000000 +I (245124) example: expect speed: 0.000000 real_pulses:0 +I (245124) example: new speed:399.000000 +I (245134) example: expect speed: 0.000000 real_pulses:0 +I (245134) example: new speed:399.000000 +I (245144) example: expect speed: 0.000000 real_pulses:0 +I (245144) example: new speed:399.000000 +I (245154) example: expect speed: 0.000000 real_pulses:0 +I (245154) example: new speed:399.000000 +I (245164) example: expect speed: 0.000000 real_pulses:0 +I (245164) example: new speed:399.000000 +I (245174) example: expect speed: 0.000000 real_pulses:0 +I (245174) example: new speed:399.000000 +I (245184) example: expect speed: 0.000000 real_pulses:0 +I (245184) example: new speed:399.000000 +I (245194) example: expect speed: 0.000000 real_pulses:0 +I (245194) example: new speed:399.000000 +I (245204) example: expect speed: 0.000000 real_pulses:0 +I (245204) example: new speed:399.000000 +I (245214) example: expect speed: 0.000000 real_pulses:0 +I (245214) example: new speed:399.000000 +I (245224) example: expect speed: 0.000000 real_pulses:0 +I (245224) example: new speed:399.000000 +I (245234) example: expect speed: 0.000000 real_pulses:0 +I (245234) example: new speed:399.000000 +I (245244) example: expect speed: 0.000000 real_pulses:0 +I (245244) example: new speed:399.000000 +I (245254) example: expect speed: 0.000000 real_pulses:0 +I (245254) example: new speed:399.000000 +I (245264) example: expect speed: 0.000000 real_pulses:0 +I (245264) example: new speed:399.000000 +I (245274) example: expect speed: 0.000000 real_pulses:0 +I (245274) example: new speed:399.000000 +I (245284) example: expect speed: 0.000000 real_pulses:0 +I (245294) example: new speed:399.000000 +I (245294) example: expect speed: 0.000000 real_pulses:0 +I (245294) example: new speed:399.000000 +I (245304) example: expect speed: 0.000000 real_pulses:0 +I (245304) example: new speed:399.000000 +I (245314) example: expect speed: 0.000000 real_pulses:0 +I (245314) example: new speed:399.000000 +I (245324) example: expect speed: 0.000000 real_pulses:0 +I (245324) example: new speed:399.000000 +I (245334) example: expect speed: 0.000000 real_pulses:0 +I (245334) example: new speed:399.000000 +I (245344) example: expect speed: 0.000000 real_pulses:0 +I (245344) example: new speed:399.000000 +I (245354) example: expect speed: 0.000000 real_pulses:0 +I (245354) example: new speed:399.000000 +I (245364) example: expect speed: 0.000000 real_pulses:0 +I (245364) example: new speed:399.000000 +I (245374) example: expect speed: 0.000000 real_pulses:0 +I (245374) example: new speed:399.000000 +I (245384) example: expect speed: 0.000000 real_pulses:0 +I (245384) example: new speed:399.000000 +I (245394) example: expect speed: 0.000000 real_pulses:0 +I (245394) example: new speed:399.000000 +I (245404) example: expect speed: 0.000000 real_pulses:0 +I (245404) example: new speed:399.000000 +I (245414) example: expect speed: 0.000000 real_pulses:0 +I (245414) example: new speed:399.000000 +I (245424) example: expect speed: 0.000000 real_pulses:0 +I (245424) example: new speed:399.000000 +I (245434) example: expect speed: 0.000000 real_pulses:0 +I (245434) example: new speed:399.000000 +I (245444) example: expect speed: 0.000000 real_pulses:0 +I (245444) example: new speed:399.000000 +I (245454) example: expect speed: 0.000000 real_pulses:0 +I (245454) example: new speed:399.000000 +I (245464) example: expect speed: 0.000000 real_pulses:0 +I (245464) example: new speed:399.000000 +I (245474) example: expect speed: 0.000000 real_pulses:0 +I (245474) example: new speed:399.000000 +I (245484) example: expect speed: 0.000000 real_pulses:0 +I (245484) example: new speed:399.000000 +I (245494) example: expect speed: 0.000000 real_pulses:0 +I (245494) example: new speed:399.000000 +I (245504) modbus tcp: ModBusSlave_recv() +I (245504) modbus: ModbusSlaveProcess() +I (245504) modbus: check id... +I (245504) modbus: ok +I (245504) modbus: add: 0, length: 10 +I (245504) modbus: Read Holding Registers +I (245504) example: expect speed: 0.000000 real_pulses:0 +I (245514) example: new speed:399.000000 +I (245514) example: expect speed: 0.000000 real_pulses:0 +I (245514) example: new speed:399.000000 +I (245524) example: expect speed: 0.000000 real_pulses:0 +I (245524) example: new speed:399.000000 +I (245534) example: expect speed: 0.000000 real_pulses:0 +I (245534) example: new speed:399.000000 +I (245544) example: expect speed: 0.000000 real_pulses:0 +I (245544) example: new speed:399.000000 +I (245554) example: expect speed: 0.000000 real_pulses:0 +I (245564) example: new speed:399.000000 +I (245564) example: expect speed: 0.000000 real_pulses:0 +I (245564) example: new speed:399.000000 +I (245574) example: expect speed: 0.000000 real_pulses:0 +I (245574) example: new speed:399.000000 +I (245584) example: expect speed: 0.000000 real_pulses:0 +I (245584) example: new speed:399.000000 +I (245594) example: expect speed: 0.000000 real_pulses:0 +I (245594) example: new speed:399.000000 +I (245604) example: expect speed: 0.000000 real_pulses:0 +I (245614) example: new speed:399.000000 +I (245614) example: expect speed: 0.000000 real_pulses:0 +I (245614) example: new speed:399.000000 +I (245624) example: expect speed: 0.000000 real_pulses:0 +I (245624) example: new speed:399.000000 +I (245634) example: expect speed: 0.000000 real_pulses:0 +I (245634) example: new speed:399.000000 +I (245644) example: expect speed: 0.000000 real_pulses:0 +I (245644) example: new speed:399.000000 +I (245654) example: expect speed: 0.000000 real_pulses:0 +I (245664) example: new speed:399.000000 +I (245664) example: expect speed: 0.000000 real_pulses:0 +I (245664) example: new speed:399.000000 +I (245674) example: expect speed: 0.000000 real_pulses:0 +I (245674) example: new speed:399.000000 +I (245684) example: expect speed: 0.000000 real_pulses:0 +I (245684) example: new speed:399.000000 +I (245694) example: expect speed: 0.000000 real_pulses:0 +I (245704) example: new speed:399.000000 +I (245704) example: expect speed: 0.000000 real_pulses:0 +I (245704) example: new speed:399.000000 +I (245714) example: expect speed: 0.000000 real_pulses:0 +I (245714) example: new speed:399.000000 +I (245724) example: expect speed: 0.000000 real_pulses:0 +I (245724) example: new speed:399.000000 +I (245734) example: expect speed: 0.000000 real_pulses:0 +I (245734) example: new speed:399.000000 +I (245744) example: expect speed: 0.000000 real_pulses:0 +I (245744) example: new speed:399.000000 +I (245754) example: expect speed: 0.000000 real_pulses:0 +I (245754) example: new speed:399.000000 +I (245764) example: expect speed: 0.000000 real_pulses:0 +I (245764) example: new speed:399.000000 +I (245774) example: expect speed: 0.000000 real_pulses:0 +I (245774) example: new speed:399.000000 +I (245784) example: expect speed: 0.000000 real_pulses:0 +I (245784) example: new speed:399.000000 +I (245794) example: expect speed: 0.000000 real_pulses:0 +I (245794) example: new speed:399.000000 +I (245804) example: expect speed: 0.000000 real_pulses:0 +I (245804) example: new speed:399.000000 +I (245814) example: expect speed: 0.000000 real_pulses:0 +I (245814) example: new speed:399.000000 +I (245824) example: expect speed: 0.000000 real_pulses:0 +I (245824) example: new speed:399.000000 +I (245834) example: expect speed: 0.000000 real_pulses:0 +I (245834) example: new speed:399.000000 +I (245844) example: expect speed: 0.000000 real_pulses:0 +I (245844) example: new speed:399.000000 +I (245854) example: expect speed: 0.000000 real_pulses:0 +I (245854) example: new speed:399.000000 +I (245864) example: expect speed: 0.000000 real_pulses:0 +I (245864) example: new speed:399.000000 +I (245874) example: expect speed: 0.000000 real_pulses:0 +I (245874) example: new speed:399.000000 +I (245884) example: expect speed: 0.000000 real_pulses:0 +I (245884) example: new speed:399.000000 +I (245894) example: expect speed: 0.000000 real_pulses:0 +I (245894) example: new speed:399.000000 +I (245904) example: expect speed: 0.000000 real_pulses:0 +I (245904) example: new speed:399.000000 +I (245914) example: expect speed: 0.000000 real_pulses:0 +I (245914) example: new speed:399.000000 +I (245924) example: expect speed: 0.000000 real_pulses:0 +I (245924) example: new speed:399.000000 +I (245934) example: expect speed: 0.000000 real_pulses:0 +I (245934) example: new speed:399.000000 +I (245944) example: expect speed: 0.000000 real_pulses:0 +I (245944) example: new speed:399.000000 +I (245954) example: expect speed: 0.000000 real_pulses:0 +I (245954) example: new speed:399.000000 +I (245964) example: expect speed: 0.000000 real_pulses:0 +I (245964) example: new speed:399.000000 +I (245974) example: expect speed: 0.000000 real_pulses:0 +I (245974) example: new speed:399.000000 +I (245984) example: expect speed: 0.000000 real_pulses:0 +I (245984) example: new speed:399.000000 +I (245994) example: expect speed: 0.000000 real_pulses:0 +I (245994) example: new speed:399.000000 +I (246004) example: expect speed: 0.000000 real_pulses:0 +I (246004) example: new speed:399.000000 +I (246014) example: expect speed: 0.000000 real_pulses:0 +I (246014) example: new speed:399.000000 +I (246024) example: expect speed: 0.000000 real_pulses:0 +I (246024) example: new speed:399.000000 +I (246034) example: expect speed: 0.000000 real_pulses:0 +I (246034) example: new speed:399.000000 +I (246044) example: expect speed: 0.000000 real_pulses:0 +I (246044) example: new speed:399.000000 +I (246054) example: expect speed: 0.000000 real_pulses:0 +I (246054) example: new speed:399.000000 +I (246064) example: expect speed: 0.000000 real_pulses:0 +I (246064) example: new speed:399.000000 +I (246074) example: expect speed: 0.000000 real_pulses:0 +I (246074) example: new speed:399.000000 +I (246084) example: expect speed: 0.000000 real_pulses:0 +I (246084) example: new speed:399.000000 +I (246094) example: expect speed: 0.000000 real_pulses:0 +I (246094) example: new speed:399.000000 +I (246104) example: expect speed: 0.000000 real_pulses:0 +I (246104) example: new speed:399.000000 +I (246114) example: expect speed: 0.000000 real_pulses:0 +I (246114) example: new speed:399.000000 +I (246124) example: expect speed: 0.000000 real_pulses:0 +I (246124) example: new speed:399.000000 +I (246134) example: expect speed: 0.000000 real_pulses:0 +I (246134) example: new speed:399.000000 +I (246144) example: expect speed: 0.000000 real_pulses:0 +I (246144) example: new speed:399.000000 +I (246154) example: expect speed: 0.000000 real_pulses:0 +I (246154) example: new speed:399.000000 +I (246164) example: expect speed: 0.000000 real_pulses:0 +I (246164) example: new speed:399.000000 +I (246174) example: expect speed: 0.000000 real_pulses:0 +I (246174) example: new speed:399.000000 +I (246184) example: expect speed: 0.000000 real_pulses:0 +I (246184) example: new speed:399.000000 +I (246194) example: expect speed: 0.000000 real_pulses:0 +I (246194) example: new speed:399.000000 +I (246204) example: expect speed: 0.000000 real_pulses:0 +I (246204) example: new speed:399.000000 +I (246214) example: expect speed: 0.000000 real_pulses:0 +I (246214) example: new speed:399.000000 +I (246224) example: expect speed: 0.000000 real_pulses:0 +I (246224) example: new speed:399.000000 +I (246234) example: expect speed: 0.000000 real_pulses:0 +I (246234) example: new speed:399.000000 +I (246244) example: expect speed: 0.000000 real_pulses:0 +I (246244) example: new speed:399.000000 +I (246254) example: expect speed: 0.000000 real_pulses:0 +I (246254) example: new speed:399.000000 +I (246264) example: expect speed: 0.000000 real_pulses:0 +I (246264) example: new speed:399.000000 +I (246274) example: expect speed: 0.000000 real_pulses:0 +I (246274) example: new speed:399.000000 +I (246284) example: expect speed: 0.000000 real_pulses:0 +I (246284) example: new speed:399.000000 +I (246294) example: expect speed: 0.000000 real_pulses:0 +I (246294) example: new speed:399.000000 +I (246304) example: expect speed: 0.000000 real_pulses:0 +I (246304) example: new speed:399.000000 +I (246314) example: expect speed: 0.000000 real_pulses:0 +I (246314) example: new speed:399.000000 +I (246324) example: expect speed: 0.000000 real_pulses:0 +I (246324) example: new speed:399.000000 +I (246334) example: expect speed: 0.000000 real_pulses:0 +I (246334) example: new speed:399.000000 +I (246344) example: expect speed: 0.000000 real_pulses:0 +I (246344) example: new speed:399.000000 +I (246354) example: expect speed: 0.000000 real_pulses:0 +I (246354) example: new speed:399.000000 +I (246364) example: expect speed: 0.000000 real_pulses:0 +I (246364) example: new speed:399.000000 +I (246374) example: expect speed: 0.000000 real_pulses:0 +I (246374) example: new speed:399.000000 +I (246384) example: expect speed: 0.000000 real_pulses:0 +I (246384) example: new speed:399.000000 +I (246394) example: expect speed: 0.000000 real_pulses:0 +I (246394) example: new speed:399.000000 +I (246404) example: expect speed: 0.000000 real_pulses:0 +I (246404) example: new speed:399.000000 +I (246414) example: expect speed: 0.000000 real_pulses:0 +I (246414) example: new speed:399.000000 +I (246424) example: expect speed: 0.000000 real_pulses:0 +I (246424) modbus tcp: ModBusSlave_recv() +I (246434) example: new speed:399.000000 +I (246434) modbus: ModbusSlaveProcess() +I (246434) modbus: check id... +I (246434) modbus: ok +I (246434) modbus: add: 0, length: 10 +I (246434) modbus: Read Holding Registers +I (246434) example: expect speed: 0.000000 real_pulses:0 +I (246444) example: new speed:399.000000 +I (246444) example: expect speed: 0.000000 real_pulses:0 +I (246444) example: new speed:399.000000 +I (246454) example: expect speed: 0.000000 real_pulses:0 +I (246454) example: new speed:399.000000 +I (246464) example: expect speed: 0.000000 real_pulses:0 +I (246464) example: new speed:399.000000 +I (246474) example: expect speed: 0.000000 real_pulses:0 +I (246474) example: new speed:399.000000 +I (246484) example: expect speed: 0.000000 real_pulses:0 +I (246494) example: new speed:399.000000 +I (246494) example: expect speed: 0.000000 real_pulses:0 +I (246494) example: new speed:399.000000 +I (246504) example: expect speed: 0.000000 real_pulses:0 +I (246504) example: new speed:399.000000 +I (246514) example: expect speed: 0.000000 real_pulses:0 +I (246514) example: new speed:399.000000 +I (246524) example: expect speed: 0.000000 real_pulses:0 +I (246524) example: new speed:399.000000 +I (246534) example: expect speed: 0.000000 real_pulses:0 +I (246534) example: new speed:399.000000 +I (246544) example: expect speed: 0.000000 real_pulses:0 +I (246544) example: new speed:399.000000 +I (246554) example: expect speed: 0.000000 real_pulses:0 +I (246554) example: new speed:399.000000 +I (246564) example: expect speed: 0.000000 real_pulses:0 +I (246564) example: new speed:399.000000 +I (246574) example: expect speed: 0.000000 real_pulses:0 +I (246574) example: new speed:399.000000 +I (246584) example: expect speed: 0.000000 real_pulses:0 +I (246584) example: new speed:399.000000 +I (246594) example: expect speed: 0.000000 real_pulses:0 +I (246594) example: new speed:399.000000 +I (246604) example: expect speed: 0.000000 real_pulses:0 +I (246604) example: new speed:399.000000 +I (246614) example: expect speed: 0.000000 real_pulses:0 +I (246614) example: new speed:399.000000 +I (246624) example: expect speed: 0.000000 real_pulses:0 +I (246624) example: new speed:399.000000 +I (246634) example: expect speed: 0.000000 real_pulses:0 +I (246634) example: new speed:399.000000 +I (246644) example: expect speed: 0.000000 real_pulses:0 +I (246644) example: new speed:399.000000 +I (246654) example: expect speed: 0.000000 real_pulses:0 +I (246654) example: new speed:399.000000 +I (246664) example: expect speed: 0.000000 real_pulses:0 +I (246664) example: new speed:399.000000 +I (246674) example: expect speed: 0.000000 real_pulses:0 +I (246674) example: new speed:399.000000 +I (246684) example: expect speed: 0.000000 real_pulses:0 +I (246684) example: new speed:399.000000 +I (246694) example: expect speed: 0.000000 real_pulses:0 +I (246694) example: new speed:399.000000 +I (246704) example: expect speed: 0.000000 real_pulses:0 +I (246704) example: new speed:399.000000 +I (246714) example: expect speed: 0.000000 real_pulses:0 +I (246714) example: new speed:399.000000 +I (246724) example: expect speed: 0.000000 real_pulses:0 +I (246724) example: new speed:399.000000 +I (246734) example: expect speed: 0.000000 real_pulses:0 +I (246734) example: new speed:399.000000 +I (246744) example: expect speed: 0.000000 real_pulses:0 +I (246744) example: new speed:399.000000 +I (246754) example: expect speed: 0.000000 real_pulses:0 +I (246754) example: new speed:399.000000 +I (246764) example: expect speed: 0.000000 real_pulses:0 +I (246764) example: new speed:399.000000 +I (246774) example: expect speed: 0.000000 real_pulses:0 +I (246774) example: new speed:399.000000 +I (246784) example: expect speed: 0.000000 real_pulses:0 +I (246784) example: new speed:399.000000 +I (246794) example: expect speed: 0.000000 real_pulses:0 +I (246794) example: new speed:399.000000 +I (246804) example: expect speed: 0.000000 real_pulses:0 +I (246804) example: new speed:399.000000 +I (246814) example: expect speed: 0.000000 real_pulses:0 +I (246814) example: new speed:399.000000 +I (246824) example: expect speed: 0.000000 real_pulses:0 +I (246824) example: new speed:399.000000 +I (246834) example: expect speed: 0.000000 real_pulses:0 +I (246834) example: new speed:399.000000 +I (246844) example: expect speed: 0.000000 real_pulses:0 +I (246844) example: new speed:399.000000 +I (246854) example: expect speed: 0.000000 real_pulses:0 +I (246854) example: new speed:399.000000 +I (246864) example: expect speed: 0.000000 real_pulses:0 +I (246864) example: new speed:399.000000 +I (246874) example: expect speed: 0.000000 real_pulses:0 +I (246874) example: new speed:399.000000 +I (246884) example: expect speed: 0.000000 real_pulses:0 +I (246884) example: new speed:399.000000 +I (246894) example: expect speed: 0.000000 real_pulses:0 +I (246894) example: new speed:399.000000 +I (246904) example: expect speed: 0.000000 real_pulses:0 +I (246904) example: new speed:399.000000 +I (246914) example: expect speed: 0.000000 real_pulses:0 +I (246914) example: new speed:399.000000 +I (246924) example: expect speed: 0.000000 real_pulses:0 +I (246924) example: new speed:399.000000 +I (246934) example: expect speed: 0.000000 real_pulses:0 +I (246934) example: new speed:399.000000 +I (246944) example: expect speed: 0.000000 real_pulses:0 +I (246944) example: new speed:399.000000 +I (246954) example: expect speed: 0.000000 real_pulses:0 +I (246954) example: new speed:399.000000 +I (246964) example: expect speed: 0.000000 real_pulses:0 +I (246964) example: new speed:399.000000 +I (246974) example: expect speed: 0.000000 real_pulses:0 +I (246974) example: new speed:399.000000 +I (246984) example: expect speed: 0.000000 real_pulses:0 +I (246984) example: new speed:399.000000 +I (246994) example: expect speed: 0.000000 real_pulses:0 +I (246994) example: new speed:399.000000 +I (247004) example: expect speed: 0.000000 real_pulses:0 +I (247004) example: new speed:399.000000 +I (247014) example: expect speed: 0.000000 real_pulses:0 +I (247014) example: new speed:399.000000 +I (247024) example: expect speed: 0.000000 real_pulses:0 +I (247024) example: new speed:399.000000 +I (247034) example: expect speed: 0.000000 real_pulses:0 +I (247034) example: new speed:399.000000 +I (247044) example: expect speed: 0.000000 real_pulses:0 +I (247044) example: new speed:399.000000 +I (247054) example: expect speed: 0.000000 real_pulses:0 +I (247054) example: new speed:399.000000 +I (247064) example: expect speed: 0.000000 real_pulses:0 +I (247064) example: new speed:399.000000 +I (247074) example: expect speed: 0.000000 real_pulses:0 +I (247074) example: new speed:399.000000 +I (247084) example: expect speed: 0.000000 real_pulses:0 +I (247084) example: new speed:399.000000 +I (247094) example: expect speed: 0.000000 real_pulses:0 +I (247094) example: new speed:399.000000 +I (247104) example: expect speed: 0.000000 real_pulses:0 +I (247104) example: new speed:399.000000 +I (247114) example: expect speed: 0.000000 real_pulses:0 +I (247114) example: new speed:399.000000 +I (247124) example: expect speed: 0.000000 real_pulses:0 +I (247124) example: new speed:399.000000 +I (247134) example: expect speed: 0.000000 real_pulses:0 +I (247134) example: new speed:399.000000 +I (247144) example: expect speed: 0.000000 real_pulses:0 +I (247144) example: new speed:399.000000 +I (247154) example: expect speed: 0.000000 real_pulses:0 +I (247154) example: new speed:399.000000 +I (247164) example: expect speed: 0.000000 real_pulses:0 +I (247164) example: new speed:399.000000 +I (247174) example: expect speed: 0.000000 real_pulses:0 +I (247174) example: new speed:399.000000 +I (247184) example: expect speed: 0.000000 real_pulses:0 +I (247184) example: new speed:399.000000 +I (247194) example: expect speed: 0.000000 real_pulses:0 +I (247194) example: new speed:399.000000 +I (247204) example: expect speed: 0.000000 real_pulses:0 +I (247204) example: new speed:399.000000 +I (247214) example: expect speed: 0.000000 real_pulses:0 +I (247214) example: new speed:399.000000 +I (247224) example: expect speed: 0.000000 real_pulses:0 +I (247224) example: new speed:399.000000 +I (247234) example: expect speed: 0.000000 real_pulses:0 +I (247234) example: new speed:399.000000 +I (247244) example: expect speed: 0.000000 real_pulses:0 +I (247244) example: new speed:399.000000 +I (247254) example: expect speed: 0.000000 real_pulses:0 +I (247254) example: new speed:399.000000 +I (247264) example: expect speed: 0.000000 real_pulses:0 +I (247264) example: new speed:399.000000 +I (247274) example: expect speed: 0.000000 real_pulses:0 +I (247274) example: new speed:399.000000 +I (247284) example: expect speed: 0.000000 real_pulses:0 +I (247284) example: new speed:399.000000 +I (247294) example: expect speed: 0.000000 real_pulses:0 +I (247294) example: new speed:399.000000 +I (247304) example: expect speed: 0.000000 real_pulses:0 +I (247304) example: new speed:399.000000 +I (247314) example: expect speed: 0.000000 real_pulses:0 +I (247314) example: new speed:399.000000 +I (247324) example: expect speed: 0.000000 real_pulses:0 +I (247324) example: new speed:399.000000 +I (247334) example: expect speed: 0.000000 real_pulses:0 +I (247334) example: new speed:399.000000 +I (247344) example: expect speed: 0.000000 real_pulses:0 +I (247344) example: new speed:399.000000 +I (247354) example: expect speed: 0.000000 real_pulses:0 +I (247354) example: new speed:399.000000 +I (247364) example: expect speed: 0.000000 real_pulses:0 +I (247364) example: new speed:399.000000 +I (247374) example: expect speed: 0.000000 real_pulses:0 +I (247374) example: new speed:399.000000 +I (247384) example: expect speed: 0.000000 real_pulses:0 +I (247384) example: new speed:399.000000 +I (247394) example: expect speed: 0.000000 real_pulses:0 +I (247394) example: new speed:399.000000 +I (247404) example: expect speed: 0.000000 real_pulses:0 +I (247404) example: new speed:399.000000 +I (247414) example: expect speed: 0.000000 real_pulses:0 +I (247414) example: new speed:399.000000 +I (247424) example: expect speed: 0.000000 real_pulses:0 +I (247424) example: new speed:399.000000 +I (247434) example: expect speed: 0.000000 real_pulses:0 +I (247434) example: new speed:399.000000 +I (247444) example: expect speed: 0.000000 real_pulses:0 +I (247454) example: new speed:399.000000 +I (247454) modbus tcp: ModBusSlave_recv() +I (247454) modbus: ModbusSlaveProcess() +I (247454) modbus: check id... +I (247454) modbus: ok +I (247454) modbus: add: 0, length: 10 +I (247454) modbus: Read Holding Registers +I (247454) example: expect speed: 0.000000 real_pulses:0 +I (247464) example: new speed:399.000000 +I (247464) example: expect speed: 0.000000 real_pulses:0 +I (247464) example: new speed:399.000000 +I (247474) example: expect speed: 0.000000 real_pulses:0 +I (247474) example: new speed:399.000000 +I (247484) example: expect speed: 0.000000 real_pulses:0 +I (247484) example: new speed:399.000000 +I (247494) example: expect speed: 0.000000 real_pulses:0 +I (247494) example: new speed:399.000000 +I (247504) example: expect speed: 0.000000 real_pulses:0 +I (247514) example: new speed:399.000000 +I (247514) example: expect speed: 0.000000 real_pulses:0 +I (247514) example: new speed:399.000000 +I (247524) example: expect speed: 0.000000 real_pulses:0 +I (247524) example: new speed:399.000000 +I (247534) example: expect speed: 0.000000 real_pulses:0 +I (247534) example: new speed:399.000000 +I (247544) example: expect speed: 0.000000 real_pulses:0 +I (247554) example: new speed:399.000000 +I (247554) example: expect speed: 0.000000 real_pulses:0 +I (247554) example: new speed:399.000000 +I (247564) example: expect speed: 0.000000 real_pulses:0 +I (247564) example: new speed:399.000000 +I (247574) example: expect speed: 0.000000 real_pulses:0 +I (247574) example: new speed:399.000000 +I (247584) example: expect speed: 0.000000 real_pulses:0 +I (247584) example: new speed:399.000000 +I (247594) example: expect speed: 0.000000 real_pulses:0 +I (247594) example: new speed:399.000000 +I (247604) example: expect speed: 0.000000 real_pulses:0 +I (247604) example: new speed:399.000000 +I (247614) example: expect speed: 0.000000 real_pulses:0 +I (247614) example: new speed:399.000000 +I (247624) example: expect speed: 0.000000 real_pulses:0 +I (247624) example: new speed:399.000000 +I (247634) example: expect speed: 0.000000 real_pulses:0 +I (247634) example: new speed:399.000000 +I (247644) example: expect speed: 0.000000 real_pulses:0 +I (247644) example: new speed:399.000000 +I (247654) example: expect speed: 0.000000 real_pulses:0 +I (247654) example: new speed:399.000000 +I (247664) example: expect speed: 0.000000 real_pulses:0 +I (247664) example: new speed:399.000000 +I (247674) example: expect speed: 0.000000 real_pulses:0 +I (247674) example: new speed:399.000000 +I (247684) example: expect speed: 0.000000 real_pulses:0 +I (247684) example: new speed:399.000000 +I (247694) example: expect speed: 0.000000 real_pulses:0 +I (247694) example: new speed:399.000000 +I (247704) example: expect speed: 0.000000 real_pulses:0 +I (247704) example: new speed:399.000000 +I (247714) example: expect speed: 0.000000 real_pulses:0 +I (247714) example: new speed:399.000000 +I (247724) example: expect speed: 0.000000 real_pulses:0 +I (247724) example: new speed:399.000000 +I (247734) example: expect speed: 0.000000 real_pulses:0 +I (247734) example: new speed:399.000000 +I (247744) example: expect speed: 0.000000 real_pulses:0 +I (247744) example: new speed:399.000000 +I (247754) example: expect speed: 0.000000 real_pulses:0 +I (247754) example: new speed:399.000000 +I (247764) example: expect speed: 0.000000 real_pulses:0 +I (247764) example: new speed:399.000000 +I (247774) example: expect speed: 0.000000 real_pulses:0 +I (247774) example: new speed:399.000000 +I (247784) example: expect speed: 0.000000 real_pulses:0 +I (247784) example: new speed:399.000000 +I (247794) example: expect speed: 0.000000 real_pulses:0 +I (247794) example: new speed:399.000000 +I (247804) example: expect speed: 0.000000 real_pulses:0 +I (247804) example: new speed:399.000000 +I (247814) example: expect speed: 0.000000 real_pulses:0 +I (247814) example: new speed:399.000000 +I (247824) example: expect speed: 0.000000 real_pulses:0 +I (247824) example: new speed:399.000000 +I (247834) example: expect speed: 0.000000 real_pulses:0 +I (247834) example: new speed:399.000000 +I (247844) example: expect speed: 0.000000 real_pulses:0 +I (247844) example: new speed:399.000000 +I (247854) example: expect speed: 0.000000 real_pulses:0 +I (247854) example: new speed:399.000000 +I (247864) example: expect speed: 0.000000 real_pulses:0 +I (247864) example: new speed:399.000000 +I (247874) example: expect speed: 0.000000 real_pulses:0 +I (247874) example: new speed:399.000000 +I (247884) example: expect speed: 0.000000 real_pulses:0 +I (247884) example: new speed:399.000000 +I (247894) example: expect speed: 0.000000 real_pulses:0 +I (247894) example: new speed:399.000000 +I (247904) example: expect speed: 0.000000 real_pulses:0 +I (247904) example: new speed:399.000000 +I (247914) example: expect speed: 0.000000 real_pulses:0 +I (247914) example: new speed:399.000000 +I (247924) example: expect speed: 0.000000 real_pulses:0 +I (247924) example: new speed:399.000000 +I (247934) example: expect speed: 0.000000 real_pulses:0 +I (247934) example: new speed:399.000000 +I (247944) example: expect speed: 0.000000 real_pulses:0 +I (247944) example: new speed:399.000000 +I (247954) example: expect speed: 0.000000 real_pulses:0 +I (247964) example: new speed:399.000000 +I (247964) example: expect speed: 0.000000 real_pulses:0 +I (247964) example: new speed:399.000000 +I (247974) example: expect speed: 0.000000 real_pulses:0 +I (247974) example: new speed:399.000000 +I (247984) example: expect speed: 0.000000 real_pulses:0 +I (247984) example: new speed:399.000000 +I (247994) example: expect speed: 0.000000 real_pulses:0 +I (247994) example: new speed:399.000000 +I (248004) example: expect speed: 0.000000 real_pulses:0 +I (248004) example: new speed:399.000000 +I (248014) example: expect speed: 0.000000 real_pulses:0 +I (248014) example: new speed:399.000000 +I (248024) example: expect speed: 0.000000 real_pulses:0 +I (248024) example: new speed:399.000000 +I (248034) example: expect speed: 0.000000 real_pulses:0 +I (248034) example: new speed:399.000000 +I (248044) example: expect speed: 0.000000 real_pulses:0 +I (248044) example: new speed:399.000000 +I (248054) example: expect speed: 0.000000 real_pulses:0 +I (248054) example: new speed:399.000000 +I (248064) example: expect speed: 0.000000 real_pulses:0 +I (248064) example: new speed:399.000000 +I (248074) example: expect speed: 0.000000 real_pulses:0 +I (248074) example: new speed:399.000000 +I (248084) example: expect speed: 0.000000 real_pulses:0 +I (248084) example: new speed:399.000000 +I (248094) example: expect speed: 0.000000 real_pulses:0 +I (248094) example: new speed:399.000000 +I (248104) example: expect speed: 0.000000 real_pulses:0 +I (248104) example: new speed:399.000000 +I (248114) example: expect speed: 0.000000 real_pulses:0 +I (248114) example: new speed:399.000000 +I (248124) example: expect speed: 0.000000 real_pulses:0 +I (248124) example: new speed:399.000000 +I (248134) example: expect speed: 0.000000 real_pulses:0 +I (248134) example: new speed:399.000000 +I (248144) example: expect speed: 0.000000 real_pulses:0 +I (248144) example: new speed:399.000000 +I (248154) example: expect speed: 0.000000 real_pulses:0 +I (248154) example: new speed:399.000000 +I (248164) example: expect speed: 0.000000 real_pulses:0 +I (248174) example: new speed:399.000000 +I (248174) example: expect speed: 0.000000 real_pulses:0 +I (248184) example: new speed:399.000000 +I (248184) example: expect speed: 0.000000 real_pulses:0 +I (248184) example: new speed:399.000000 +I (248194) example: expect speed: 0.000000 real_pulses:0 +I (248194) example: new speed:399.000000 +I (248204) example: expect speed: 0.000000 real_pulses:0 +I (248204) example: new speed:399.000000 +I (248214) example: expect speed: 0.000000 real_pulses:0 +I (248214) example: new speed:399.000000 +I (248224) example: expect speed: 0.000000 real_pulses:0 +I (248224) example: new speed:399.000000 +I (248234) example: expect speed: 0.000000 real_pulses:0 +I (248234) example: new speed:399.000000 +I (248244) example: expect speed: 0.000000 real_pulses:0 +I (248244) example: new speed:399.000000 +I (248254) example: expect speed: 0.000000 real_pulses:0 +I (248264) example: new speed:399.000000 +I (248264) example: expect speed: 0.000000 real_pulses:0 +I (248264) example: new speed:399.000000 +I (248274) example: expect speed: 0.000000 real_pulses:0 +I (248274) example: new speed:399.000000 +I (248284) example: expect speed: 0.000000 real_pulses:0 +I (248284) example: new speed:399.000000 +I (248294) example: expect speed: 0.000000 real_pulses:0 +I (248294) example: new speed:399.000000 +I (248304) example: expect speed: 0.000000 real_pulses:0 +I (248304) example: new speed:399.000000 +I (248314) example: expect speed: 0.000000 real_pulses:0 +I (248314) example: new speed:399.000000 +I (248324) example: expect speed: 0.000000 real_pulses:0 +I (248324) example: new speed:399.000000 +I (248334) example: expect speed: 0.000000 real_pulses:0 +I (248334) example: new speed:399.000000 +I (248344) example: expect speed: 0.000000 real_pulses:0 +I (248344) example: new speed:399.000000 +I (248354) example: expect speed: 0.000000 real_pulses:0 +I (248354) example: new speed:399.000000 +I (248364) example: expect speed: 0.000000 real_pulses:0 +I (248364) example: new speed:399.000000 +I (248374) example: expect speed: 0.000000 real_pulses:0 +I (248374) example: new speed:399.000000 +I (248384) example: expect speed: 0.000000 real_pulses:0 +I (248384) example: new speed:399.000000 +I (248394) example: expect speed: 0.000000 real_pulses:0 +I (248394) example: new speed:399.000000 +I (248404) example: expect speed: 0.000000 real_pulses:0 +I (248404) example: new speed:399.000000 +I (248414) example: expect speed: 0.000000 real_pulses:0 +I (248414) example: new speed:399.000000 +I (248424) example: expect speed: 0.000000 real_pulses:0 +I (248424) example: new speed:399.000000 +I (248434) example: expect speed: 0.000000 real_pulses:0 +I (248434) example: new speed:399.000000 +I (248444) example: expect speed: 0.000000 real_pulses:0 +I (248444) example: new speed:399.000000 +I (248454) example: expect speed: 0.000000 real_pulses:0 +I (248454) example: new speed:399.000000 +I (248464) example: expect speed: 0.000000 real_pulses:0 +I (248464) example: new speed:399.000000 +I (248474) modbus tcp: ModBusSlave_recv() +I (248474) modbus: ModbusSlaveProcess() +I (248474) modbus: check id... +I (248474) modbus: ok +I (248474) modbus: add: 0, length: 10 +I (248474) modbus: Read Holding Registers +I (248474) example: expect speed: 0.000000 real_pulses:0 +I (248484) example: new speed:399.000000 +I (248484) example: expect speed: 0.000000 real_pulses:0 +I (248484) example: new speed:399.000000 +I (248494) example: expect speed: 0.000000 real_pulses:0 +I (248494) example: new speed:399.000000 +I (248504) example: expect speed: 0.000000 real_pulses:0 +I (248504) example: new speed:399.000000 +I (248514) example: expect speed: 0.000000 real_pulses:0 +I (248514) example: new speed:399.000000 +I (248524) example: expect speed: 0.000000 real_pulses:0 +I (248534) example: new speed:399.000000 +I (248534) example: expect speed: 0.000000 real_pulses:0 +I (248534) example: new speed:399.000000 +I (248544) example: expect speed: 0.000000 real_pulses:0 +I (248544) example: new speed:399.000000 +I (248554) example: expect speed: 0.000000 real_pulses:0 +I (248554) example: new speed:399.000000 +I (248564) example: expect speed: 0.000000 real_pulses:0 +I (248564) example: new speed:399.000000 +I (248574) example: expect speed: 0.000000 real_pulses:0 +I (248584) example: new speed:399.000000 +I (248584) example: expect speed: 0.000000 real_pulses:0 +I (248584) example: new speed:399.000000 +I (248594) example: expect speed: 0.000000 real_pulses:0 +I (248594) example: new speed:399.000000 +I (248604) example: expect speed: 0.000000 real_pulses:0 +I (248604) example: new speed:399.000000 +I (248614) example: expect speed: 0.000000 real_pulses:0 +I (248614) example: new speed:399.000000 +I (248624) example: expect speed: 0.000000 real_pulses:0 +I (248624) example: new speed:399.000000 +I (248634) example: expect speed: 0.000000 real_pulses:0 +I (248634) example: new speed:399.000000 +I (248644) example: expect speed: 0.000000 real_pulses:0 +I (248644) example: new speed:399.000000 +I (248654) example: expect speed: 0.000000 real_pulses:0 +I (248654) example: new speed:399.000000 +I (248664) example: expect speed: 0.000000 real_pulses:0 +I (248664) example: new speed:399.000000 +I (248674) example: expect speed: 0.000000 real_pulses:0 +I (248674) example: new speed:399.000000 +I (248684) example: expect speed: 0.000000 real_pulses:0 +I (248684) example: new speed:399.000000 +I (248694) example: expect speed: 0.000000 real_pulses:0 +I (248694) example: new speed:399.000000 +I (248704) example: expect speed: 0.000000 real_pulses:0 +I (248704) example: new speed:399.000000 +I (248714) example: expect speed: 0.000000 real_pulses:0 +I (248714) example: new speed:399.000000 +I (248724) example: expect speed: 0.000000 real_pulses:0 +I (248724) example: new speed:399.000000 +I (248734) example: expect speed: 0.000000 real_pulses:0 +I (248734) example: new speed:399.000000 +I (248744) example: expect speed: 0.000000 real_pulses:0 +I (248744) example: new speed:399.000000 +I (248754) example: expect speed: 0.000000 real_pulses:0 +I (248754) example: new speed:399.000000 +I (248764) example: expect speed: 0.000000 real_pulses:0 +I (248764) example: new speed:399.000000 +I (248774) example: expect speed: 0.000000 real_pulses:0 +I (248774) example: new speed:399.000000 +I (248784) example: expect speed: 0.000000 real_pulses:0 +I (248784) example: new speed:399.000000 +I (248794) example: expect speed: 0.000000 real_pulses:0 +I (248794) example: new speed:399.000000 +I (248804) example: expect speed: 0.000000 real_pulses:0 +I (248804) example: new speed:399.000000 +I (248814) example: expect speed: 0.000000 real_pulses:0 +I (248814) example: new speed:399.000000 +I (248824) example: expect speed: 0.000000 real_pulses:0 +I (248824) example: new speed:399.000000 +I (248834) example: expect speed: 0.000000 real_pulses:0 +I (248834) example: new speed:399.000000 +I (248844) example: expect speed: 0.000000 real_pulses:0 +I (248844) example: new speed:399.000000 +I (248854) example: expect speed: 0.000000 real_pulses:0 +I (248854) example: new speed:399.000000 +I (248864) example: expect speed: 0.000000 real_pulses:0 +I (248864) example: new speed:399.000000 +I (248874) example: expect speed: 0.000000 real_pulses:0 +I (248874) example: new speed:399.000000 +I (248884) example: expect speed: 0.000000 real_pulses:0 +I (248884) example: new speed:399.000000 +I (248894) example: expect speed: 0.000000 real_pulses:0 +I (248894) example: new speed:399.000000 +I (248904) example: expect speed: 0.000000 real_pulses:0 +I (248904) example: new speed:399.000000 +I (248914) example: expect speed: 0.000000 real_pulses:0 +I (248914) example: new speed:399.000000 +I (248924) example: expect speed: 0.000000 real_pulses:0 +I (248924) example: new speed:399.000000 +I (248934) example: expect speed: 0.000000 real_pulses:0 +I (248934) example: new speed:399.000000 +I (248944) example: expect speed: 0.000000 real_pulses:0 +I (248944) example: new speed:399.000000 +I (248954) example: expect speed: 0.000000 real_pulses:0 +I (248954) example: new speed:399.000000 +I (248964) example: expect speed: 0.000000 real_pulses:0 +I (248964) example: new speed:399.000000 +I (248974) example: expect speed: 0.000000 real_pulses:0 +I (248974) example: new speed:399.000000 +I (248984) example: expect speed: 0.000000 real_pulses:0 +I (248984) example: new speed:399.000000 +I (248994) example: expect speed: 0.000000 real_pulses:0 +I (248994) example: new speed:399.000000 +I (249004) example: expect speed: 0.000000 real_pulses:0 +I (249004) example: new speed:399.000000 +I (249014) example: expect speed: 0.000000 real_pulses:0 +I (249014) example: new speed:399.000000 +I (249024) example: expect speed: 0.000000 real_pulses:0 +I (249024) example: new speed:399.000000 +I (249034) example: expect speed: 0.000000 real_pulses:0 +I (249034) example: new speed:399.000000 +I (249044) example: expect speed: 0.000000 real_pulses:0 +I (249044) example: new speed:399.000000 +I (249054) example: expect speed: 0.000000 real_pulses:0 +I (249054) example: new speed:399.000000 +I (249064) example: expect speed: 0.000000 real_pulses:0 +I (249064) example: new speed:399.000000 +I (249074) example: expect speed: 0.000000 real_pulses:0 +I (249074) example: new speed:399.000000 +I (249084) example: expect speed: 0.000000 real_pulses:0 +I (249084) example: new speed:399.000000 +I (249094) example: expect speed: 0.000000 real_pulses:0 +I (249094) example: new speed:399.000000 +I (249104) example: expect speed: 0.000000 real_pulses:0 +I (249104) example: new speed:399.000000 +I (249114) example: expect speed: 0.000000 real_pulses:0 +I (249114) example: new speed:399.000000 +I (249124) example: expect speed: 0.000000 real_pulses:0 +I (249124) example: new speed:399.000000 +I (249134) example: expect speed: 0.000000 real_pulses:0 +I (249134) example: new speed:399.000000 +I (249144) example: expect speed: 0.000000 real_pulses:0 +I (249144) example: new speed:399.000000 +I (249154) example: expect speed: 0.000000 real_pulses:0 +I (249154) example: new speed:399.000000 +I (249164) example: expect speed: 0.000000 real_pulses:0 +I (249164) example: new speed:399.000000 +I (249174) example: expect speed: 0.000000 real_pulses:0 +I (249174) example: new speed:399.000000 +I (249184) example: expect speed: 0.000000 real_pulses:0 +I (249194) example: new speed:399.000000 +I (249194) example: expect speed: 0.000000 real_pulses:0 +I (249194) example: new speed:399.000000 +I (249204) example: expect speed: 0.000000 real_pulses:0 +I (249204) example: new speed:399.000000 +I (249214) example: expect speed: 0.000000 real_pulses:0 +I (249214) example: new speed:399.000000 +I (249224) example: expect speed: 0.000000 real_pulses:0 +I (249224) example: new speed:399.000000 +I (249234) example: expect speed: 0.000000 real_pulses:0 +I (249234) example: new speed:399.000000 +I (249244) example: expect speed: 0.000000 real_pulses:0 +I (249244) example: new speed:399.000000 +I (249254) example: expect speed: 0.000000 real_pulses:0 +I (249254) example: new speed:399.000000 +I (249264) example: expect speed: 0.000000 real_pulses:0 +I (249264) example: new speed:399.000000 +I (249274) example: expect speed: 0.000000 real_pulses:0 +I (249274) example: new speed:399.000000 +I (249284) example: expect speed: 0.000000 real_pulses:0 +I (249284) example: new speed:399.000000 +I (249294) example: expect speed: 0.000000 real_pulses:0 +I (249294) example: new speed:399.000000 +I (249304) example: expect speed: 0.000000 real_pulses:0 +I (249304) example: new speed:399.000000 +I (249314) example: expect speed: 0.000000 real_pulses:0 +I (249314) example: new speed:399.000000 +I (249324) example: expect speed: 0.000000 real_pulses:0 +I (249324) example: new speed:399.000000 +I (249334) example: expect speed: 0.000000 real_pulses:0 +I (249334) example: new speed:399.000000 +I (249344) example: expect speed: 0.000000 real_pulses:0 +I (249344) example: new speed:399.000000 +I (249354) example: expect speed: 0.000000 real_pulses:0 +I (249354) example: new speed:399.000000 +I (249364) example: expect speed: 0.000000 real_pulses:0 +I (249364) example: new speed:399.000000 +I (249374) example: expect speed: 0.000000 real_pulses:0 +I (249374) example: new speed:399.000000 +I (249384) example: expect speed: 0.000000 real_pulses:0 +I (249384) example: new speed:399.000000 +I (249394) example: expect speed: 0.000000 real_pulses:0 +I (249394) example: new speed:399.000000 +I (249404) example: expect speed: 0.000000 real_pulses:0 +I (249404) example: new speed:399.000000 +I (249414) example: expect speed: 0.000000 real_pulses:0 +I (249414) example: new speed:399.000000 +I (249424) example: expect speed: 0.000000 real_pulses:0 +I (249424) example: new speed:399.000000 +I (249434) example: expect speed: 0.000000 real_pulses:0 +I (249434) example: new speed:399.000000 +I (249444) example: expect speed: 0.000000 real_pulses:0 +I (249444) example: new speed:399.000000 +I (249454) example: expect speed: 0.000000 real_pulses:0 +I (249454) example: new speed:399.000000 +I (249464) example: expect speed: 0.000000 real_pulses:0 +I (249464) example: new speed:399.000000 +I (249474) example: expect speed: 0.000000 real_pulses:0 +I (249474) example: new speed:399.000000 +I (249484) example: expect speed: 0.000000 real_pulses:0 +I (249484) example: new speed:399.000000 +I (249494) example: expect speed: 0.000000 real_pulses:0 +I (249494) modbus tcp: ModBusSlave_recv() +I (249504) example: new speed:399.000000 +I (249504) modbus: ModbusSlaveProcess() +I (249504) modbus: check id... +I (249504) modbus: ok +I (249504) modbus: add: 0, length: 10 +I (249504) modbus: Read Holding Registers +I (249504) example: expect speed: 0.000000 real_pulses:0 +I (249514) example: new speed:399.000000 +I (249514) example: expect speed: 0.000000 real_pulses:0 +I (249514) example: new speed:399.000000 +I (249524) example: expect speed: 0.000000 real_pulses:0 +I (249524) example: new speed:399.000000 +I (249534) example: expect speed: 0.000000 real_pulses:0 +I (249534) example: new speed:399.000000 +I (249544) example: expect speed: 0.000000 real_pulses:0 +I (249544) example: new speed:399.000000 +I (249554) example: expect speed: 0.000000 real_pulses:0 +I (249564) example: new speed:399.000000 +I (249564) example: expect speed: 0.000000 real_pulses:0 +I (249564) example: new speed:399.000000 +I (249574) example: expect speed: 0.000000 real_pulses:0 +I (249574) example: new speed:399.000000 +I (249584) example: expect speed: 0.000000 real_pulses:0 +I (249584) example: new speed:399.000000 +I (249594) example: expect speed: 0.000000 real_pulses:0 +I (249594) example: new speed:399.000000 +I (249604) example: expect speed: 0.000000 real_pulses:0 +I (249614) example: new speed:399.000000 +I (249614) example: expect speed: 0.000000 real_pulses:0 +I (249614) example: new speed:399.000000 +I (249624) example: expect speed: 0.000000 real_pulses:0 +I (249624) example: new speed:399.000000 +I (249634) example: expect speed: 0.000000 real_pulses:0 +I (249634) example: new speed:399.000000 +I (249644) example: expect speed: 0.000000 real_pulses:0 +I (249644) example: new speed:399.000000 +I (249654) example: expect speed: 0.000000 real_pulses:0 +I (249654) example: new speed:399.000000 +I (249664) example: expect speed: 0.000000 real_pulses:0 +I (249664) example: new speed:399.000000 +I (249674) example: expect speed: 0.000000 real_pulses:0 +I (249674) example: new speed:399.000000 +I (249684) example: expect speed: 0.000000 real_pulses:0 +I (249684) example: new speed:399.000000 +I (249694) example: expect speed: 0.000000 real_pulses:0 +I (249694) example: new speed:399.000000 +I (249704) example: expect speed: 0.000000 real_pulses:0 +I (249704) example: new speed:399.000000 +I (249714) example: expect speed: 0.000000 real_pulses:0 +I (249714) example: new speed:399.000000 +I (249724) example: expect speed: 0.000000 real_pulses:0 +I (249724) example: new speed:399.000000 +I (249734) example: expect speed: 0.000000 real_pulses:0 +I (249734) example: new speed:399.000000 +I (249744) example: expect speed: 0.000000 real_pulses:0 +I (249744) example: new speed:399.000000 +I (249754) example: expect speed: 0.000000 real_pulses:0 +I (249754) example: new speed:399.000000 +I (249764) example: expect speed: 0.000000 real_pulses:0 +I (249764) example: new speed:399.000000 +I (249774) example: expect speed: 0.000000 real_pulses:0 +I (249774) example: new speed:399.000000 +I (249784) example: expect speed: 0.000000 real_pulses:0 +I (249784) example: new speed:399.000000 +I (249794) example: expect speed: 0.000000 real_pulses:0 +I (249794) example: new speed:399.000000 +I (249804) example: expect speed: 0.000000 real_pulses:0 +I (249804) example: new speed:399.000000 +I (249814) example: expect speed: 0.000000 real_pulses:0 +I (249814) example: new speed:399.000000 +I (249824) example: expect speed: 0.000000 real_pulses:0 +I (249824) example: new speed:399.000000 +I (249834) example: expect speed: 0.000000 real_pulses:0 +I (249834) example: new speed:399.000000 +I (249844) example: expect speed: 0.000000 real_pulses:0 +I (249844) example: new speed:399.000000 +I (249854) example: expect speed: 0.000000 real_pulses:0 +I (249854) example: new speed:399.000000 +I (249864) example: expect speed: 0.000000 real_pulses:0 +I (249864) example: new speed:399.000000 +I (249874) example: expect speed: 0.000000 real_pulses:0 +I (249874) example: new speed:399.000000 +I (249884) example: expect speed: 0.000000 real_pulses:0 +I (249884) example: new speed:399.000000 +I (249894) example: expect speed: 0.000000 real_pulses:0 +I (249894) example: new speed:399.000000 +I (249904) example: expect speed: 0.000000 real_pulses:0 +I (249904) example: new speed:399.000000 +I (249914) example: expect speed: 0.000000 real_pulses:0 +I (249914) example: new speed:399.000000 +I (249924) example: expect speed: 0.000000 real_pulses:0 +I (249924) example: new speed:399.000000 +I (249934) example: expect speed: 0.000000 real_pulses:0 +I (249934) example: new speed:399.000000 +I (249944) example: expect speed: 0.000000 real_pulses:0 +I (249944) example: new speed:399.000000 +I (249954) example: expect speed: 0.000000 real_pulses:0 +I (249954) example: new speed:399.000000 +I (249964) example: expect speed: 0.000000 real_pulses:0 +I (249964) example: new speed:399.000000 +I (249974) example: expect speed: 0.000000 real_pulses:0 +I (249974) example: new speed:399.000000 +I (249984) example: expect speed: 0.000000 real_pulses:0 +I (249984) example: new speed:399.000000 +I (249994) example: expect speed: 0.000000 real_pulses:0 +I (249994) example: new speed:399.000000 +I (250004) example: expect speed: 0.000000 real_pulses:0 +I (250004) example: new speed:399.000000 +I (250014) example: expect speed: 0.000000 real_pulses:0 +I (250014) example: new speed:399.000000 +I (250024) example: expect speed: 0.000000 real_pulses:0 +I (250024) example: new speed:399.000000 +I (250034) example: expect speed: 0.000000 real_pulses:0 +I (250034) example: new speed:399.000000 +I (250044) example: expect speed: 0.000000 real_pulses:0 +I (250044) example: new speed:399.000000 +I (250054) example: expect speed: 0.000000 real_pulses:0 +I (250054) example: new speed:399.000000 +I (250064) example: expect speed: 0.000000 real_pulses:0 +I (250064) example: new speed:399.000000 +I (250074) example: expect speed: 0.000000 real_pulses:0 +I (250074) example: new speed:399.000000 +I (250084) example: expect speed: 0.000000 real_pulses:0 +I (250084) example: new speed:399.000000 +I (250094) example: expect speed: 0.000000 real_pulses:0 +I (250094) example: new speed:399.000000 +I (250104) example: expect speed: 0.000000 real_pulses:0 +I (250104) example: new speed:399.000000 +I (250114) example: expect speed: 0.000000 real_pulses:0 +I (250114) example: new speed:399.000000 +I (250124) example: expect speed: 0.000000 real_pulses:0 +I (250124) example: new speed:399.000000 +I (250134) example: expect speed: 0.000000 real_pulses:0 +I (250134) example: new speed:399.000000 +I (250144) example: expect speed: 0.000000 real_pulses:0 +I (250144) example: new speed:399.000000 +I (250154) example: expect speed: 0.000000 real_pulses:0 +I (250154) example: new speed:399.000000 +I (250164) example: expect speed: 0.000000 real_pulses:0 +I (250164) example: new speed:399.000000 +I (250174) example: expect speed: 0.000000 real_pulses:0 +I (250174) example: new speed:399.000000 +I (250184) example: expect speed: 0.000000 real_pulses:0 +I (250184) example: new speed:399.000000 +I (250194) example: expect speed: 0.000000 real_pulses:0 +I (250194) example: new speed:399.000000 +I (250204) example: expect speed: 0.000000 real_pulses:0 +I (250204) example: new speed:399.000000 +I (250214) example: expect speed: 0.000000 real_pulses:0 +I (250214) example: new speed:399.000000 +I (250224) example: expect speed: 0.000000 real_pulses:0 +I (250224) example: new speed:399.000000 +I (250234) example: expect speed: 0.000000 real_pulses:0 +I (250234) example: new speed:399.000000 +I (250244) example: expect speed: 0.000000 real_pulses:0 +I (250244) example: new speed:399.000000 +I (250254) example: expect speed: 0.000000 real_pulses:0 +I (250254) example: new speed:399.000000 +I (250264) example: expect speed: 0.000000 real_pulses:0 +I (250264) example: new speed:399.000000 +I (250274) example: expect speed: 0.000000 real_pulses:0 +I (250274) example: new speed:399.000000 +I (250284) example: expect speed: 0.000000 real_pulses:0 +I (250284) example: new speed:399.000000 +I (250294) example: expect speed: 0.000000 real_pulses:0 +I (250294) example: new speed:399.000000 +I (250304) example: expect speed: 0.000000 real_pulses:0 +I (250304) example: new speed:399.000000 +I (250314) example: expect speed: 0.000000 real_pulses:0 +I (250324) example: new speed:399.000000 +I (250324) example: expect speed: 0.000000 real_pulses:0 +I (250324) example: new speed:399.000000 +I (250334) example: expect speed: 0.000000 real_pulses:0 +I (250334) example: new speed:399.000000 +I (250344) example: expect speed: 0.000000 real_pulses:0 +I (250344) example: new speed:399.000000 +I (250354) example: expect speed: 0.000000 real_pulses:0 +I (250354) example: new speed:399.000000 +I (250364) example: expect speed: 0.000000 real_pulses:0 +I (250364) example: new speed:399.000000 +I (250374) example: expect speed: 0.000000 real_pulses:0 +I (250374) example: new speed:399.000000 +I (250384) example: expect speed: 0.000000 real_pulses:0 +I (250384) example: new speed:399.000000 +I (250394) example: expect speed: 0.000000 real_pulses:0 +I (250394) example: new speed:399.000000 +I (250404) example: expect speed: 0.000000 real_pulses:0 +I (250404) example: new speed:399.000000 +I (250414) example: expect speed: 0.000000 real_pulses:0 +I (250414) example: new speed:399.000000 +I (250424) example: expect speed: 0.000000 real_pulses:0 +I (250424) example: new speed:399.000000 +I (250434) example: expect speed: 0.000000 real_pulses:0 +I (250434) example: new speed:399.000000 +I (250444) example: expect speed: 0.000000 real_pulses:0 +I (250444) example: new speed:399.000000 +I (250454) example: expect speed: 0.000000 real_pulses:0 +I (250454) example: new speed:399.000000 +I (250464) example: expect speed: 0.000000 real_pulses:0 +I (250464) example: new speed:399.000000 +I (250474) example: expect speed: 0.000000 real_pulses:0 +I (250474) example: new speed:399.000000 +I (250484) example: expect speed: 0.000000 real_pulses:0 +I (250484) example: new speed:399.000000 +I (250494) example: expect speed: 0.000000 real_pulses:0 +I (250494) example: new speed:399.000000 +I (250504) example: expect speed: 0.000000 real_pulses:0 +I (250504) example: new speed:399.000000 +I (250514) example: expect speed: 0.000000 real_pulses:0 +I (250524) example: new speed:399.000000 +I (250524) modbus tcp: ModBusSlave_recv() +I (250524) example: expect speed: 0.000000 real_pulses:0 +I (250524) modbus: ModbusSlaveProcess() +I (250534) example: new speed:399.000000 +I (250534) modbus: check id... +I (250534) modbus: ok +I (250534) modbus: add: 0, length: 10 +I (250534) modbus: Read Holding Registers +I (250534) example: expect speed: 0.000000 real_pulses:0 +I (250544) example: new speed:399.000000 +I (250544) example: expect speed: 0.000000 real_pulses:0 +I (250544) example: new speed:399.000000 +I (250554) example: expect speed: 0.000000 real_pulses:0 +I (250554) example: new speed:399.000000 +I (250564) example: expect speed: 0.000000 real_pulses:0 +I (250564) example: new speed:399.000000 +I (250574) example: expect speed: 0.000000 real_pulses:0 +I (250574) example: new speed:399.000000 +I (250584) example: expect speed: 0.000000 real_pulses:0 +I (250594) example: new speed:399.000000 +I (250594) example: expect speed: 0.000000 real_pulses:0 +I (250594) example: new speed:399.000000 +I (250604) example: expect speed: 0.000000 real_pulses:0 +I (250604) example: new speed:399.000000 +I (250614) example: expect speed: 0.000000 real_pulses:0 +I (250614) example: new speed:399.000000 +I (250624) example: expect speed: 0.000000 real_pulses:0 +I (250624) example: new speed:399.000000 +I (250634) example: expect speed: 0.000000 real_pulses:0 +I (250644) example: new speed:399.000000 +I (250644) example: expect speed: 0.000000 real_pulses:0 +I (250644) example: new speed:399.000000 +I (250654) example: expect speed: 0.000000 real_pulses:0 +I (250654) example: new speed:399.000000 +I (250664) example: expect speed: 0.000000 real_pulses:0 +I (250664) example: new speed:399.000000 +I (250674) example: expect speed: 0.000000 real_pulses:0 +I (250674) example: new speed:399.000000 +I (250684) example: expect speed: 0.000000 real_pulses:0 +I (250684) example: new speed:399.000000 +I (250694) example: expect speed: 0.000000 real_pulses:0 +I (250694) example: new speed:399.000000 +I (250704) example: expect speed: 0.000000 real_pulses:0 +I (250704) example: new speed:399.000000 +I (250714) example: expect speed: 0.000000 real_pulses:0 +I (250714) example: new speed:399.000000 +I (250724) example: expect speed: 0.000000 real_pulses:0 +I (250724) example: new speed:399.000000 +I (250734) example: expect speed: 0.000000 real_pulses:0 +I (250734) example: new speed:399.000000 +I (250744) example: expect speed: 0.000000 real_pulses:0 +I (250744) example: new speed:399.000000 +I (250754) example: expect speed: 0.000000 real_pulses:0 +I (250754) example: new speed:399.000000 +I (250764) example: expect speed: 0.000000 real_pulses:0 +I (250764) example: new speed:399.000000 +I (250774) example: expect speed: 0.000000 real_pulses:0 +I (250774) example: new speed:399.000000 +I (250784) example: expect speed: 0.000000 real_pulses:0 +I (250784) example: new speed:399.000000 +I (250794) example: expect speed: 0.000000 real_pulses:0 +I (250794) example: new speed:399.000000 +I (250804) example: expect speed: 0.000000 real_pulses:0 +I (250804) example: new speed:399.000000 +I (250814) example: expect speed: 0.000000 real_pulses:0 +I (250814) example: new speed:399.000000 +I (250824) example: expect speed: 0.000000 real_pulses:0 +I (250824) example: new speed:399.000000 +I (250834) example: expect speed: 0.000000 real_pulses:0 +I (250834) example: new speed:399.000000 +I (250844) example: expect speed: 0.000000 real_pulses:0 +I (250844) example: new speed:399.000000 +I (250854) example: expect speed: 0.000000 real_pulses:0 +I (250854) example: new speed:399.000000 +I (250864) example: expect speed: 0.000000 real_pulses:0 +I (250864) example: new speed:399.000000 +I (250874) example: expect speed: 0.000000 real_pulses:0 +I (250874) example: new speed:399.000000 +I (250884) example: expect speed: 0.000000 real_pulses:0 +I (250884) example: new speed:399.000000 +I (250894) example: expect speed: 0.000000 real_pulses:0 +I (250894) example: new speed:399.000000 +I (250904) example: expect speed: 0.000000 real_pulses:0 +I (250904) example: new speed:399.000000 +I (250914) example: expect speed: 0.000000 real_pulses:0 +I (250914) example: new speed:399.000000 +I (250924) example: expect speed: 0.000000 real_pulses:0 +I (250924) example: new speed:399.000000 +I (250934) example: expect speed: 0.000000 real_pulses:0 +I (250934) example: new speed:399.000000 +I (250944) example: expect speed: 0.000000 real_pulses:0 +I (250944) example: new speed:399.000000 +I (250954) example: expect speed: 0.000000 real_pulses:0 +I (250954) example: new speed:399.000000 +I (250964) example: expect speed: 0.000000 real_pulses:0 +I (250964) example: new speed:399.000000 +I (250974) example: expect speed: 0.000000 real_pulses:0 +I (250974) example: new speed:399.000000 +I (250984) example: expect speed: 0.000000 real_pulses:0 +I (250984) example: new speed:399.000000 +I (250994) example: expect speed: 0.000000 real_pulses:0 +I (250994) example: new speed:399.000000 +I (251004) example: expect speed: 0.000000 real_pulses:0 +I (251004) example: new speed:399.000000 +I (251014) example: expect speed: 0.000000 real_pulses:0 +I (251014) example: new speed:399.000000 +I (251024) example: expect speed: 0.000000 real_pulses:0 +I (251024) example: new speed:399.000000 +I (251034) example: expect speed: 0.000000 real_pulses:0 +I (251034) example: new speed:399.000000 +I (251044) example: expect speed: 0.000000 real_pulses:0 +I (251044) example: new speed:399.000000 +I (251054) example: expect speed: 0.000000 real_pulses:0 +I (251054) example: new speed:399.000000 +I (251064) example: expect speed: 0.000000 real_pulses:0 +I (251064) example: new speed:399.000000 +I (251074) example: expect speed: 0.000000 real_pulses:0 +I (251074) example: new speed:399.000000 +I (251084) example: expect speed: 0.000000 real_pulses:0 +I (251084) example: new speed:399.000000 +I (251094) example: expect speed: 0.000000 real_pulses:0 +I (251094) example: new speed:399.000000 +I (251104) example: expect speed: 0.000000 real_pulses:0 +I (251104) example: new speed:399.000000 +I (251114) example: expect speed: 0.000000 real_pulses:0 +I (251114) example: new speed:399.000000 +I (251124) example: expect speed: 0.000000 real_pulses:0 +I (251124) example: new speed:399.000000 +I (251134) example: expect speed: 0.000000 real_pulses:0 +I (251134) example: new speed:399.000000 +I (251144) example: expect speed: 0.000000 real_pulses:0 +I (251144) example: new speed:399.000000 +I (251154) example: expect speed: 0.000000 real_pulses:0 +I (251154) example: new speed:399.000000 +I (251164) example: expect speed: 0.000000 real_pulses:0 +I (251164) example: new speed:399.000000 +I (251174) example: expect speed: 0.000000 real_pulses:0 +I (251174) example: new speed:399.000000 +I (251184) example: expect speed: 0.000000 real_pulses:0 +I (251184) example: new speed:399.000000 +I (251194) example: expect speed: 0.000000 real_pulses:0 +I (251194) example: new speed:399.000000 +I (251204) example: expect speed: 0.000000 real_pulses:0 +I (251204) example: new speed:399.000000 +I (251214) example: expect speed: 0.000000 real_pulses:0 +I (251214) example: new speed:399.000000 +I (251224) example: expect speed: 0.000000 real_pulses:0 +I (251224) example: new speed:399.000000 +I (251234) example: expect speed: 0.000000 real_pulses:0 +I (251234) example: new speed:399.000000 +I (251244) example: expect speed: 0.000000 real_pulses:0 +I (251244) example: new speed:399.000000 +I (251254) example: expect speed: 0.000000 real_pulses:0 +I (251254) example: new speed:399.000000 +I (251264) example: expect speed: 0.000000 real_pulses:0 +I (251264) example: new speed:399.000000 +I (251274) example: expect speed: 0.000000 real_pulses:0 +I (251274) example: new speed:399.000000 +I (251284) example: expect speed: 0.000000 real_pulses:0 +I (251284) example: new speed:399.000000 +I (251294) example: expect speed: 0.000000 real_pulses:0 +I (251294) example: new speed:399.000000 +I (251304) example: expect speed: 0.000000 real_pulses:0 +I (251304) example: new speed:399.000000 +I (251314) example: expect speed: 0.000000 real_pulses:0 +I (251314) example: new speed:399.000000 +I (251324) example: expect speed: 0.000000 real_pulses:0 +I (251324) example: new speed:399.000000 +I (251334) example: expect speed: 0.000000 real_pulses:0 +I (251344) example: new speed:399.000000 +I (251344) example: expect speed: 0.000000 real_pulses:0 +I (251354) example: new speed:399.000000 +I (251354) example: expect speed: 0.000000 real_pulses:0 +I (251354) example: new speed:399.000000 +I (251364) example: expect speed: 0.000000 real_pulses:0 +I (251364) example: new speed:399.000000 +I (251374) example: expect speed: 0.000000 real_pulses:0 +I (251374) example: new speed:399.000000 +I (251384) example: expect speed: 0.000000 real_pulses:0 +I (251384) example: new speed:399.000000 +I (251394) example: expect speed: 0.000000 real_pulses:0 +I (251394) example: new speed:399.000000 +I (251404) example: expect speed: 0.000000 real_pulses:0 +I (251404) example: new speed:399.000000 +I (251414) example: expect speed: 0.000000 real_pulses:0 +I (251414) example: new speed:399.000000 +I (251424) example: expect speed: 0.000000 real_pulses:0 +I (251424) example: new speed:399.000000 +I (251434) example: expect speed: 0.000000 real_pulses:0 +I (251434) example: new speed:399.000000 +I (251444) example: expect speed: 0.000000 real_pulses:0 +I (251444) example: new speed:399.000000 +I (251454) example: expect speed: 0.000000 real_pulses:0 +I (251454) example: new speed:399.000000 +I (251464) example: expect speed: 0.000000 real_pulses:0 +I (251464) example: new speed:399.000000 +I (251474) example: expect speed: 0.000000 real_pulses:0 +I (251474) example: new speed:399.000000 +I (251484) example: expect speed: 0.000000 real_pulses:0 +I (251484) example: new speed:399.000000 +I (251494) example: expect speed: 0.000000 real_pulses:0 +I (251494) example: new speed:399.000000 +I (251504) example: expect speed: 0.000000 real_pulses:0 +I (251504) example: new speed:399.000000 +I (251514) example: expect speed: 0.000000 real_pulses:0 +I (251514) example: new speed:399.000000 +I (251524) example: expect speed: 0.000000 real_pulses:0 +I (251524) example: new speed:399.000000 +I (251534) example: expect speed: 0.000000 real_pulses:0 +I (251534) example: new speed:399.000000 +I (251544) modbus tcp: ModBusSlave_recv() +I (251544) modbus: ModbusSlaveProcess() +I (251544) modbus: check id... +I (251544) modbus: ok +I (251544) modbus: add: 0, length: 10 +I (251544) modbus: Read Holding Registers +I (251544) example: expect speed: 0.000000 real_pulses:0 +I (251554) example: new speed:399.000000 +I (251554) example: expect speed: 0.000000 real_pulses:0 +I (251554) example: new speed:399.000000 +I (251564) example: expect speed: 0.000000 real_pulses:0 +I (251564) example: new speed:399.000000 +I (251574) example: expect speed: 0.000000 real_pulses:0 +I (251574) example: new speed:399.000000 +I (251584) example: expect speed: 0.000000 real_pulses:0 +I (251584) example: new speed:399.000000 +I (251594) example: expect speed: 0.000000 real_pulses:0 +I (251604) example: new speed:399.000000 +I (251604) example: expect speed: 0.000000 real_pulses:0 +I (251604) example: new speed:399.000000 +I (251614) example: expect speed: 0.000000 real_pulses:0 +I (251614) example: new speed:399.000000 +I (251624) example: expect speed: 0.000000 real_pulses:0 +I (251624) example: new speed:399.000000 +I (251634) example: expect speed: 0.000000 real_pulses:0 +I (251634) example: new speed:399.000000 +I (251644) example: expect speed: 0.000000 real_pulses:0 +I (251654) example: new speed:399.000000 +I (251654) example: expect speed: 0.000000 real_pulses:0 +I (251654) example: new speed:399.000000 +I (251664) example: expect speed: 0.000000 real_pulses:0 +I (251664) example: new speed:399.000000 +I (251674) example: expect speed: 0.000000 real_pulses:0 +I (251674) example: new speed:399.000000 +I (251684) example: expect speed: 0.000000 real_pulses:0 +I (251684) example: new speed:399.000000 +I (251694) example: expect speed: 0.000000 real_pulses:0 +I (251694) example: new speed:399.000000 +I (251704) example: expect speed: 0.000000 real_pulses:0 +I (251704) example: new speed:399.000000 +I (251714) example: expect speed: 0.000000 real_pulses:0 +I (251714) example: new speed:399.000000 +I (251724) example: expect speed: 0.000000 real_pulses:0 +I (251724) example: new speed:399.000000 +I (251734) example: expect speed: 0.000000 real_pulses:0 +I (251734) example: new speed:399.000000 +I (251744) example: expect speed: 0.000000 real_pulses:0 +I (251744) example: new speed:399.000000 +I (251754) example: expect speed: 0.000000 real_pulses:0 +I (251754) example: new speed:399.000000 +I (251764) example: expect speed: 0.000000 real_pulses:0 +I (251764) example: new speed:399.000000 +I (251774) example: expect speed: 0.000000 real_pulses:0 +I (251774) example: new speed:399.000000 +I (251784) example: expect speed: 0.000000 real_pulses:0 +I (251784) example: new speed:399.000000 +I (251794) example: expect speed: 0.000000 real_pulses:0 +I (251794) example: new speed:399.000000 +I (251804) example: expect speed: 0.000000 real_pulses:0 +I (251804) example: new speed:399.000000 +I (251814) example: expect speed: 0.000000 real_pulses:0 +I (251814) example: new speed:399.000000 +I (251824) example: expect speed: 0.000000 real_pulses:0 +I (251824) example: new speed:399.000000 +I (251834) example: expect speed: 0.000000 real_pulses:0 +I (251834) example: new speed:399.000000 +I (251844) example: expect speed: 0.000000 real_pulses:0 +I (251844) example: new speed:399.000000 +I (251854) example: expect speed: 0.000000 real_pulses:0 +I (251854) example: new speed:399.000000 +I (251864) example: expect speed: 0.000000 real_pulses:0 +I (251864) example: new speed:399.000000 +I (251874) example: expect speed: 0.000000 real_pulses:0 +I (251874) example: new speed:399.000000 +I (251884) example: expect speed: 0.000000 real_pulses:0 +I (251884) example: new speed:399.000000 +I (251894) example: expect speed: 0.000000 real_pulses:0 +I (251894) example: new speed:399.000000 +I (251904) example: expect speed: 0.000000 real_pulses:0 +I (251904) example: new speed:399.000000 +I (251914) example: expect speed: 0.000000 real_pulses:0 +I (251914) example: new speed:399.000000 +I (251924) example: expect speed: 0.000000 real_pulses:0 +I (251924) example: new speed:399.000000 +I (251934) example: expect speed: 0.000000 real_pulses:0 +I (251934) example: new speed:399.000000 +I (251944) example: expect speed: 0.000000 real_pulses:0 +I (251944) example: new speed:399.000000 +I (251954) example: expect speed: 0.000000 real_pulses:0 +I (251954) example: new speed:399.000000 +I (251964) example: expect speed: 0.000000 real_pulses:0 +I (251964) example: new speed:399.000000 +I (251974) example: expect speed: 0.000000 real_pulses:0 +I (251974) example: new speed:399.000000 +I (251984) example: expect speed: 0.000000 real_pulses:0 +I (251984) example: new speed:399.000000 +I (251994) example: expect speed: 0.000000 real_pulses:0 +I (251994) example: new speed:399.000000 +I (252004) example: expect speed: 0.000000 real_pulses:0 +I (252004) example: new speed:399.000000 +I (252014) example: expect speed: 0.000000 real_pulses:0 +I (252014) example: new speed:399.000000 +I (252024) example: expect speed: 0.000000 real_pulses:0 +I (252024) example: new speed:399.000000 +I (252034) example: expect speed: 0.000000 real_pulses:0 +I (252034) example: new speed:399.000000 +I (252044) example: expect speed: 0.000000 real_pulses:0 +I (252044) example: new speed:399.000000 +I (252054) example: expect speed: 0.000000 real_pulses:0 +I (252054) example: new speed:399.000000 +I (252064) example: expect speed: 0.000000 real_pulses:0 +I (252064) example: new speed:399.000000 +I (252074) example: expect speed: 0.000000 real_pulses:0 +I (252074) example: new speed:399.000000 +I (252084) example: expect speed: 0.000000 real_pulses:0 +I (252084) example: new speed:399.000000 +I (252094) example: expect speed: 0.000000 real_pulses:0 +I (252094) example: new speed:399.000000 +I (252104) example: expect speed: 0.000000 real_pulses:0 +I (252104) example: new speed:399.000000 +I (252114) example: expect speed: 0.000000 real_pulses:0 +I (252114) example: new speed:399.000000 +I (252124) example: expect speed: 0.000000 real_pulses:0 +I (252124) example: new speed:399.000000 +I (252134) example: expect speed: 0.000000 real_pulses:0 +I (252134) example: new speed:399.000000 +I (252144) example: expect speed: 0.000000 real_pulses:0 +I (252144) example: new speed:399.000000 +I (252154) example: expect speed: 0.000000 real_pulses:0 +I (252154) example: new speed:399.000000 +I (252164) example: expect speed: 0.000000 real_pulses:0 +I (252164) example: new speed:399.000000 +I (252174) example: expect speed: 0.000000 real_pulses:0 +I (252174) example: new speed:399.000000 +I (252184) example: expect speed: 0.000000 real_pulses:0 +I (252184) example: new speed:399.000000 +I (252194) example: expect speed: 0.000000 real_pulses:0 +I (252194) example: new speed:399.000000 +I (252204) example: expect speed: 0.000000 real_pulses:0 +I (252204) example: new speed:399.000000 +I (252214) example: expect speed: 0.000000 real_pulses:0 +I (252214) example: new speed:399.000000 +I (252224) example: expect speed: 0.000000 real_pulses:0 +I (252224) example: new speed:399.000000 +I (252234) example: expect speed: 0.000000 real_pulses:0 +I (252234) example: new speed:399.000000 +I (252244) example: expect speed: 0.000000 real_pulses:0 +I (252244) example: new speed:399.000000 +I (252254) example: expect speed: 0.000000 real_pulses:0 +I (252254) example: new speed:399.000000 +I (252264) example: expect speed: 0.000000 real_pulses:0 +I (252264) example: new speed:399.000000 +I (252274) example: expect speed: 0.000000 real_pulses:0 +I (252274) example: new speed:399.000000 +I (252284) example: expect speed: 0.000000 real_pulses:0 +I (252284) example: new speed:399.000000 +I (252294) example: expect speed: 0.000000 real_pulses:0 +I (252294) example: new speed:399.000000 +I (252304) example: expect speed: 0.000000 real_pulses:0 +I (252304) example: new speed:399.000000 +I (252314) example: expect speed: 0.000000 real_pulses:0 +I (252314) example: new speed:399.000000 +I (252324) example: expect speed: 0.000000 real_pulses:0 +I (252324) example: new speed:399.000000 +I (252334) example: expect speed: 0.000000 real_pulses:0 +I (252334) example: new speed:399.000000 +I (252344) example: expect speed: 0.000000 real_pulses:0 +I (252344) example: new speed:399.000000 +I (252354) example: expect speed: 0.000000 real_pulses:0 +I (252354) example: new speed:399.000000 +I (252364) example: expect speed: 0.000000 real_pulses:0 +I (252374) example: new speed:399.000000 +I (252374) example: expect speed: 0.000000 real_pulses:0 +I (252374) example: new speed:399.000000 +I (252384) example: expect speed: 0.000000 real_pulses:0 +I (252384) example: new speed:399.000000 +I (252394) example: expect speed: 0.000000 real_pulses:0 +I (252394) example: new speed:399.000000 +I (252404) example: expect speed: 0.000000 real_pulses:0 +I (252404) example: new speed:399.000000 +I (252414) example: expect speed: 0.000000 real_pulses:0 +I (252414) example: new speed:399.000000 +I (252424) example: expect speed: 0.000000 real_pulses:0 +I (252424) example: new speed:399.000000 +I (252434) example: expect speed: 0.000000 real_pulses:0 +I (252434) example: new speed:399.000000 +I (252444) example: expect speed: 0.000000 real_pulses:0 +I (252444) example: new speed:399.000000 +I (252454) example: expect speed: 0.000000 real_pulses:0 +I (252454) example: new speed:399.000000 +I (252464) example: expect speed: 0.000000 real_pulses:0 +I (252464) example: new speed:399.000000 +I (252474) example: expect speed: 0.000000 real_pulses:0 +I (252474) example: new speed:399.000000 +I (252484) example: expect speed: 0.000000 real_pulses:0 +I (252484) example: new speed:399.000000 +I (252494) example: expect speed: 0.000000 real_pulses:0 +I (252494) example: new speed:399.000000 +I (252504) example: expect speed: 0.000000 real_pulses:0 +I (252504) example: new speed:399.000000 +I (252514) example: expect speed: 0.000000 real_pulses:0 +I (252514) example: new speed:399.000000 +I (252524) example: expect speed: 0.000000 real_pulses:0 +I (252524) example: new speed:399.000000 +I (252534) example: expect speed: 0.000000 real_pulses:0 +I (252534) example: new speed:399.000000 +I (252544) example: expect speed: 0.000000 real_pulses:0 +I (252544) example: new speed:399.000000 +I (252554) example: expect speed: 0.000000 real_pulses:0 +I (252554) example: new speed:399.000000 +I (252564) example: expect speed: 0.000000 real_pulses:0 +I (252574) example: new speed:399.000000 +I (252574) modbus tcp: ModBusSlave_recv() +I (252574) modbus: ModbusSlaveProcess() +I (252574) modbus: check id... +I (252574) modbus: ok +I (252574) modbus: add: 0, length: 10 +I (252574) modbus: Read Holding Registers +I (252574) example: expect speed: 0.000000 real_pulses:0 +I (252584) example: new speed:399.000000 +I (252584) example: expect speed: 0.000000 real_pulses:0 +I (252584) example: new speed:399.000000 +I (252594) example: expect speed: 0.000000 real_pulses:0 +I (252594) example: new speed:399.000000 +I (252604) example: expect speed: 0.000000 real_pulses:0 +I (252604) example: new speed:399.000000 +I (252614) example: expect speed: 0.000000 real_pulses:0 +I (252614) example: new speed:399.000000 +I (252624) example: expect speed: 0.000000 real_pulses:0 +I (252634) example: new speed:399.000000 +I (252634) example: expect speed: 0.000000 real_pulses:0 +I (252634) example: new speed:399.000000 +I (252644) example: expect speed: 0.000000 real_pulses:0 +I (252644) example: new speed:399.000000 +I (252654) example: expect speed: 0.000000 real_pulses:0 +I (252654) example: new speed:399.000000 +I (252664) example: expect speed: 0.000000 real_pulses:0 +I (252664) example: new speed:399.000000 +I (252674) example: expect speed: 0.000000 real_pulses:0 +I (252684) example: new speed:399.000000 +I (252684) example: expect speed: 0.000000 real_pulses:0 +I (252684) example: new speed:399.000000 +I (252694) example: expect speed: 0.000000 real_pulses:0 +I (252694) example: new speed:399.000000 +I (252704) example: expect speed: 0.000000 real_pulses:0 +I (252704) example: new speed:399.000000 +I (252714) example: expect speed: 0.000000 real_pulses:0 +I (252714) example: new speed:399.000000 +I (252724) example: expect speed: 0.000000 real_pulses:0 +I (252724) example: new speed:399.000000 +I (252734) example: expect speed: 0.000000 real_pulses:0 +I (252734) example: new speed:399.000000 +I (252744) example: expect speed: 0.000000 real_pulses:0 +I (252744) example: new speed:399.000000 +I (252754) example: expect speed: 0.000000 real_pulses:0 +I (252754) example: new speed:399.000000 +I (252764) example: expect speed: 0.000000 real_pulses:0 +I (252764) example: new speed:399.000000 +I (252774) example: expect speed: 0.000000 real_pulses:0 +I (252784) example: new speed:399.000000 +I (252784) example: expect speed: 0.000000 real_pulses:0 +I (252784) example: new speed:399.000000 +I (252794) example: expect speed: 0.000000 real_pulses:0 +I (252794) example: new speed:399.000000 +I (252804) example: expect speed: 0.000000 real_pulses:0 +I (252804) example: new speed:399.000000 +I (252814) example: expect speed: 0.000000 real_pulses:0 +I (252814) example: new speed:399.000000 +I (252824) example: expect speed: 0.000000 real_pulses:0 +I (252824) example: new speed:399.000000 +I (252834) example: expect speed: 0.000000 real_pulses:0 +I (252834) example: new speed:399.000000 +I (252844) example: expect speed: 0.000000 real_pulses:0 +I (252844) example: new speed:399.000000 +I (252854) example: expect speed: 0.000000 real_pulses:0 +I (252854) example: new speed:399.000000 +I (252864) example: expect speed: 0.000000 real_pulses:0 +I (252864) example: new speed:399.000000 +I (252874) example: expect speed: 0.000000 real_pulses:0 +I (252874) example: new speed:399.000000 +I (252884) example: expect speed: 0.000000 real_pulses:0 +I (252884) example: new speed:399.000000 +I (252894) example: expect speed: 0.000000 real_pulses:0 +I (252894) example: new speed:399.000000 +I (252904) example: expect speed: 0.000000 real_pulses:0 +I (252904) example: new speed:399.000000 +I (252914) example: expect speed: 0.000000 real_pulses:0 +I (252914) example: new speed:399.000000 +I (252924) example: expect speed: 0.000000 real_pulses:0 +I (252924) example: new speed:399.000000 +I (252934) example: expect speed: 0.000000 real_pulses:0 +I (252934) example: new speed:399.000000 +I (252944) example: expect speed: 0.000000 real_pulses:0 +I (252944) example: new speed:399.000000 +I (252954) example: expect speed: 0.000000 real_pulses:0 +I (252954) example: new speed:399.000000 +I (252964) example: expect speed: 0.000000 real_pulses:0 +I (252964) example: new speed:399.000000 +I (252974) example: expect speed: 0.000000 real_pulses:0 +I (252974) example: new speed:399.000000 +I (252984) example: expect speed: 0.000000 real_pulses:0 +I (252984) example: new speed:399.000000 +I (252994) example: expect speed: 0.000000 real_pulses:0 +I (252994) example: new speed:399.000000 +I (253004) example: expect speed: 0.000000 real_pulses:0 +I (253004) example: new speed:399.000000 +I (253014) example: expect speed: 0.000000 real_pulses:0 +I (253014) example: new speed:399.000000 +I (253024) example: expect speed: 0.000000 real_pulses:0 +I (253024) example: new speed:399.000000 +I (253034) example: expect speed: 0.000000 real_pulses:0 +I (253034) example: new speed:399.000000 +I (253044) example: expect speed: 0.000000 real_pulses:0 +I (253044) example: new speed:399.000000 +I (253054) example: expect speed: 0.000000 real_pulses:0 +I (253054) example: new speed:399.000000 +I (253064) example: expect speed: 0.000000 real_pulses:0 +I (253064) example: new speed:399.000000 +I (253074) example: expect speed: 0.000000 real_pulses:0 +I (253074) example: new speed:399.000000 +I (253084) example: expect speed: 0.000000 real_pulses:0 +I (253084) example: new speed:399.000000 +I (253094) example: expect speed: 0.000000 real_pulses:0 +I (253094) example: new speed:399.000000 +I (253104) example: expect speed: 0.000000 real_pulses:0 +I (253104) example: new speed:399.000000 +I (253114) example: expect speed: 0.000000 real_pulses:0 +I (253114) example: new speed:399.000000 +I (253124) example: expect speed: 0.000000 real_pulses:0 +I (253124) example: new speed:399.000000 +I (253134) example: expect speed: 0.000000 real_pulses:0 +I (253134) example: new speed:399.000000 +I (253144) example: expect speed: 0.000000 real_pulses:0 +I (253144) example: new speed:399.000000 +I (253154) example: expect speed: 0.000000 real_pulses:0 +I (253154) example: new speed:399.000000 +I (253164) example: expect speed: 0.000000 real_pulses:0 +I (253164) example: new speed:399.000000 +I (253174) example: expect speed: 0.000000 real_pulses:0 +I (253174) example: new speed:399.000000 +I (253184) example: expect speed: 0.000000 real_pulses:0 +I (253184) example: new speed:399.000000 +I (253194) example: expect speed: 0.000000 real_pulses:0 +I (253194) example: new speed:399.000000 +I (253204) example: expect speed: 0.000000 real_pulses:0 +I (253204) example: new speed:399.000000 +I (253214) example: expect speed: 0.000000 real_pulses:0 +I (253214) example: new speed:399.000000 +I (253224) example: expect speed: 0.000000 real_pulses:0 +I (253224) example: new speed:399.000000 +I (253234) example: expect speed: 0.000000 real_pulses:0 +I (253234) example: new speed:399.000000 +I (253244) example: expect speed: 0.000000 real_pulses:0 +I (253244) example: new speed:399.000000 +I (253254) example: expect speed: 0.000000 real_pulses:0 +I (253254) example: new speed:399.000000 +I (253264) example: expect speed: 0.000000 real_pulses:0 +I (253264) example: new speed:399.000000 +I (253274) example: expect speed: 0.000000 real_pulses:0 +I (253274) example: new speed:399.000000 +I (253284) example: expect speed: 0.000000 real_pulses:0 +I (253284) example: new speed:399.000000 +I (253294) example: expect speed: 0.000000 real_pulses:0 +I (253294) example: new speed:399.000000 +I (253304) example: expect speed: 0.000000 real_pulses:0 +I (253304) example: new speed:399.000000 +I (253314) example: expect speed: 0.000000 real_pulses:0 +I (253314) example: new speed:399.000000 +I (253324) example: expect speed: 0.000000 real_pulses:0 +I (253324) example: new speed:399.000000 +I (253334) example: expect speed: 0.000000 real_pulses:0 +I (253334) example: new speed:399.000000 +I (253344) example: expect speed: 0.000000 real_pulses:0 +I (253344) example: new speed:399.000000 +I (253354) example: expect speed: 0.000000 real_pulses:0 +I (253354) example: new speed:399.000000 +I (253364) example: expect speed: 0.000000 real_pulses:0 +I (253364) example: new speed:399.000000 +I (253374) example: expect speed: 0.000000 real_pulses:0 +I (253374) example: new speed:399.000000 +I (253384) example: expect speed: 0.000000 real_pulses:0 +I (253384) example: new speed:399.000000 +I (253394) example: expect speed: 0.000000 real_pulses:0 +I (253394) example: new speed:399.000000 +I (253404) example: expect speed: 0.000000 real_pulses:0 +I (253404) example: new speed:399.000000 +I (253414) example: expect speed: 0.000000 real_pulses:0 +I (253414) example: new speed:399.000000 +I (253424) example: expect speed: 0.000000 real_pulses:0 +I (253424) example: new speed:399.000000 +I (253434) example: expect speed: 0.000000 real_pulses:0 +I (253434) example: new speed:399.000000 +I (253444) example: expect speed: 0.000000 real_pulses:0 +I (253444) example: new speed:399.000000 +I (253454) example: expect speed: 0.000000 real_pulses:0 +I (253454) example: new speed:399.000000 +I (253464) example: expect speed: 0.000000 real_pulses:0 +I (253464) example: new speed:399.000000 +I (253474) example: expect speed: 0.000000 real_pulses:0 +I (253474) example: new speed:399.000000 +I (253484) example: expect speed: 0.000000 real_pulses:0 +I (253484) example: new speed:399.000000 +I (253494) example: expect speed: 0.000000 real_pulses:0 +I (253494) example: new speed:399.000000 +I (253504) example: expect speed: 0.000000 real_pulses:0 +I (253504) example: new speed:399.000000 +I (253514) example: expect speed: 0.000000 real_pulses:0 +I (253514) example: new speed:399.000000 +I (253524) example: expect speed: 0.000000 real_pulses:0 +I (253524) example: new speed:399.000000 +I (253534) example: expect speed: 0.000000 real_pulses:0 +I (253534) example: new speed:399.000000 +I (253544) example: expect speed: 0.000000 real_pulses:0 +I (253544) example: new speed:399.000000 +I (253554) example: expect speed: 0.000000 real_pulses:0 +I (253554) example: new speed:399.000000 +I (253564) example: expect speed: 0.000000 real_pulses:0 +I (253564) example: new speed:399.000000 +I (253574) example: expect speed: 0.000000 real_pulses:0 +I (253574) example: new speed:399.000000 +I (253584) example: expect speed: 0.000000 real_pulses:0 +I (253584) example: new speed:399.000000 +I (253594) example: expect speed: 0.000000 real_pulses:0 +I (253604) example: new speed:399.000000 +I (253604) modbus tcp: ModBusSlave_recv() +I (253604) modbus: ModbusSlaveProcess() +I (253604) modbus: check id... +I (253604) modbus: ok +I (253604) modbus: add: 0, length: 10 +I (253604) modbus: Read Holding Registers +I (253604) example: expect speed: 0.000000 real_pulses:0 +I (253614) example: new speed:399.000000 +I (253614) example: expect speed: 0.000000 real_pulses:0 +I (253614) example: new speed:399.000000 +I (253624) example: expect speed: 0.000000 real_pulses:0 +I (253624) example: new speed:399.000000 +I (253634) example: expect speed: 0.000000 real_pulses:0 +I (253634) example: new speed:399.000000 +I (253644) example: expect speed: 0.000000 real_pulses:0 +I (253644) example: new speed:399.000000 +I (253654) example: expect speed: 0.000000 real_pulses:0 +I (253664) example: new speed:399.000000 +I (253664) example: expect speed: 0.000000 real_pulses:0 +I (253664) example: new speed:399.000000 +I (253674) example: expect speed: 0.000000 real_pulses:0 +I (253674) example: new speed:399.000000 +I (253684) example: expect speed: 0.000000 real_pulses:0 +I (253684) example: new speed:399.000000 +I (253694) example: expect speed: 0.000000 real_pulses:0 +I (253694) example: new speed:399.000000 +I (253704) example: expect speed: 0.000000 real_pulses:0 +I (253704) example: new speed:399.000000 +I (253714) example: expect speed: 0.000000 real_pulses:0 +I (253714) example: new speed:399.000000 +I (253724) example: expect speed: 0.000000 real_pulses:0 +I (253724) example: new speed:399.000000 +I (253734) example: expect speed: 0.000000 real_pulses:0 +I (253734) example: new speed:399.000000 +I (253744) example: expect speed: 0.000000 real_pulses:0 +I (253744) example: new speed:399.000000 +I (253754) example: expect speed: 0.000000 real_pulses:0 +I (253754) example: new speed:399.000000 +I (253764) example: expect speed: 0.000000 real_pulses:0 +I (253764) example: new speed:399.000000 +I (253774) example: expect speed: 0.000000 real_pulses:0 +I (253774) example: new speed:399.000000 +I (253784) example: expect speed: 0.000000 real_pulses:0 +I (253784) example: new speed:399.000000 +I (253794) example: expect speed: 0.000000 real_pulses:0 +I (253794) example: new speed:399.000000 +I (253804) example: expect speed: 0.000000 real_pulses:0 +I (253804) example: new speed:399.000000 +I (253814) example: expect speed: 0.000000 real_pulses:0 +I (253814) example: new speed:399.000000 +I (253824) example: expect speed: 0.000000 real_pulses:0 +I (253824) example: new speed:399.000000 +I (253834) example: expect speed: 0.000000 real_pulses:0 +I (253834) example: new speed:399.000000 +I (253844) example: expect speed: 0.000000 real_pulses:0 +I (253844) example: new speed:399.000000 +I (253854) example: expect speed: 0.000000 real_pulses:0 +I (253854) example: new speed:399.000000 +I (253864) example: expect speed: 0.000000 real_pulses:0 +I (253864) example: new speed:399.000000 +I (253874) example: expect speed: 0.000000 real_pulses:0 +I (253874) example: new speed:399.000000 +I (253884) example: expect speed: 0.000000 real_pulses:0 +I (253884) example: new speed:399.000000 +I (253894) example: expect speed: 0.000000 real_pulses:0 +I (253894) example: new speed:399.000000 +I (253904) example: expect speed: 0.000000 real_pulses:0 +I (253904) example: new speed:399.000000 +I (253914) example: expect speed: 0.000000 real_pulses:0 +I (253914) example: new speed:399.000000 +I (253924) example: expect speed: 0.000000 real_pulses:0 +I (253924) example: new speed:399.000000 +I (253934) example: expect speed: 0.000000 real_pulses:0 +I (253934) example: new speed:399.000000 +I (253944) example: expect speed: 0.000000 real_pulses:0 +I (253944) example: new speed:399.000000 +I (253954) example: expect speed: 0.000000 real_pulses:0 +I (253954) example: new speed:399.000000 +I (253964) example: expect speed: 0.000000 real_pulses:0 +I (253964) example: new speed:399.000000 +I (253974) example: expect speed: 0.000000 real_pulses:0 +I (253974) example: new speed:399.000000 +I (253984) example: expect speed: 0.000000 real_pulses:0 +I (253984) example: new speed:399.000000 +I (253994) example: expect speed: 0.000000 real_pulses:0 +I (253994) example: new speed:399.000000 +I (254004) example: expect speed: 0.000000 real_pulses:0 +I (254004) example: new speed:399.000000 +I (254014) example: expect speed: 0.000000 real_pulses:0 +I (254014) example: new speed:399.000000 +I (254024) example: expect speed: 0.000000 real_pulses:0 +I (254024) example: new speed:399.000000 +I (254034) example: expect speed: 0.000000 real_pulses:0 +I (254034) example: new speed:399.000000 +I (254044) example: expect speed: 0.000000 real_pulses:0 +I (254044) example: new speed:399.000000 +I (254054) example: expect speed: 0.000000 real_pulses:0 +I (254054) example: new speed:399.000000 +I (254064) example: expect speed: 0.000000 real_pulses:0 +I (254064) example: new speed:399.000000 +I (254074) example: expect speed: 0.000000 real_pulses:0 +I (254074) example: new speed:399.000000 +I (254084) example: expect speed: 0.000000 real_pulses:0 +I (254084) example: new speed:399.000000 +I (254094) example: expect speed: 0.000000 real_pulses:0 +I (254094) example: new speed:399.000000 +I (254104) example: expect speed: 0.000000 real_pulses:0 +I (254104) example: new speed:399.000000 +I (254114) example: expect speed: 0.000000 real_pulses:0 +I (254114) example: new speed:399.000000 +I (254124) example: expect speed: 0.000000 real_pulses:0 +I (254124) example: new speed:399.000000 +I (254134) example: expect speed: 0.000000 real_pulses:0 +I (254134) example: new speed:399.000000 +I (254144) example: expect speed: 0.000000 real_pulses:0 +I (254144) example: new speed:399.000000 +I (254154) example: expect speed: 0.000000 real_pulses:0 +I (254154) example: new speed:399.000000 +I (254164) example: expect speed: 0.000000 real_pulses:0 +I (254164) example: new speed:399.000000 +I (254174) example: expect speed: 0.000000 real_pulses:0 +I (254174) example: new speed:399.000000 +I (254184) example: expect speed: 0.000000 real_pulses:0 +I (254184) example: new speed:399.000000 +I (254194) example: expect speed: 0.000000 real_pulses:0 +I (254194) example: new speed:399.000000 +I (254204) example: expect speed: 0.000000 real_pulses:0 +I (254204) example: new speed:399.000000 +I (254214) example: expect speed: 0.000000 real_pulses:0 +I (254214) example: new speed:399.000000 +I (254224) example: expect speed: 0.000000 real_pulses:0 +I (254224) example: new speed:399.000000 +I (254234) example: expect speed: 0.000000 real_pulses:0 +I (254234) example: new speed:399.000000 +I (254244) example: expect speed: 0.000000 real_pulses:0 +I (254244) example: new speed:399.000000 +I (254254) example: expect speed: 0.000000 real_pulses:0 +I (254254) example: new speed:399.000000 +I (254264) example: expect speed: 0.000000 real_pulses:0 +I (254264) example: new speed:399.000000 +I (254274) example: expect speed: 0.000000 real_pulses:0 +I (254274) example: new speed:399.000000 +I (254284) example: expect speed: 0.000000 real_pulses:0 +I (254284) example: new speed:399.000000 +I (254294) example: expect speed: 0.000000 real_pulses:0 +I (254294) example: new speed:399.000000 +I (254304) example: expect speed: 0.000000 real_pulses:0 +I (254314) example: new speed:399.000000 +I (254314) example: expect speed: 0.000000 real_pulses:0 +I (254314) example: new speed:399.000000 +I (254324) example: expect speed: 0.000000 real_pulses:0 +I (254324) example: new speed:399.000000 +I (254334) example: expect speed: 0.000000 real_pulses:0 +I (254344) example: new speed:399.000000 +I (254344) example: expect speed: 0.000000 real_pulses:0 +I (254344) example: new speed:399.000000 +I (254354) example: expect speed: 0.000000 real_pulses:0 +I (254354) example: new speed:399.000000 +I (254364) example: expect speed: 0.000000 real_pulses:0 +I (254364) example: new speed:399.000000 +I (254374) example: expect speed: 0.000000 real_pulses:0 +I (254374) example: new speed:399.000000 +I (254384) example: expect speed: 0.000000 real_pulses:0 +I (254384) example: new speed:399.000000 +I (254394) example: expect speed: 0.000000 real_pulses:0 +I (254394) example: new speed:399.000000 +I (254404) example: expect speed: 0.000000 real_pulses:0 +I (254404) example: new speed:399.000000 +I (254414) example: expect speed: 0.000000 real_pulses:0 +I (254414) example: new speed:399.000000 +I (254424) example: expect speed: 0.000000 real_pulses:0 +I (254424) example: new speed:399.000000 +I (254434) example: expect speed: 0.000000 real_pulses:0 +I (254434) example: new speed:399.000000 +I (254444) example: expect speed: 0.000000 real_pulses:0 +I (254444) example: new speed:399.000000 +I (254454) example: expect speed: 0.000000 real_pulses:0 +I (254454) example: new speed:399.000000 +I (254464) example: expect speed: 0.000000 real_pulses:0 +I (254464) example: new speed:399.000000 +I (254474) example: expect speed: 0.000000 real_pulses:0 +I (254474) example: new speed:399.000000 +I (254484) example: expect speed: 0.000000 real_pulses:0 +I (254484) example: new speed:399.000000 +I (254494) example: expect speed: 0.000000 real_pulses:0 +I (254494) example: new speed:399.000000 +I (254504) example: expect speed: 0.000000 real_pulses:0 +I (254504) example: new speed:399.000000 +I (254514) example: expect speed: 0.000000 real_pulses:0 +I (254524) example: new speed:399.000000 +I (254524) example: expect speed: 0.000000 real_pulses:0 +I (254524) example: new speed:399.000000 +I (254534) example: expect speed: 0.000000 real_pulses:0 +I (254534) example: new speed:399.000000 +I (254544) example: expect speed: 0.000000 real_pulses:0 +I (254544) example: new speed:399.000000 +I (254554) example: expect speed: 0.000000 real_pulses:0 +I (254554) example: new speed:399.000000 +I (254564) example: expect speed: 0.000000 real_pulses:0 +I (254564) example: new speed:399.000000 +I (254574) example: expect speed: 0.000000 real_pulses:0 +I (254574) example: new speed:399.000000 +I (254584) example: expect speed: 0.000000 real_pulses:0 +I (254584) example: new speed:399.000000 +I (254594) example: expect speed: 0.000000 real_pulses:0 +I (254594) example: new speed:399.000000 +I (254604) example: expect speed: 0.000000 real_pulses:0 +I (254604) example: new speed:399.000000 +I (254614) example: expect speed: 0.000000 real_pulses:0 +I (254624) example: new speed:399.000000 +I (254624) modbus tcp: ModBusSlave_recv() +I (254624) modbus: ModbusSlaveProcess() +I (254624) modbus: check id... +I (254624) modbus: ok +I (254624) modbus: add: 0, length: 10 +I (254624) modbus: Read Holding Registers +I (254624) example: expect speed: 0.000000 real_pulses:0 +I (254634) example: new speed:399.000000 +I (254634) example: expect speed: 0.000000 real_pulses:0 +I (254634) example: new speed:399.000000 +I (254644) example: expect speed: 0.000000 real_pulses:0 +I (254644) example: new speed:399.000000 +I (254654) example: expect speed: 0.000000 real_pulses:0 +I (254654) example: new speed:399.000000 +I (254664) example: expect speed: 0.000000 real_pulses:0 +I (254664) example: new speed:399.000000 +I (254674) example: expect speed: 0.000000 real_pulses:0 +I (254684) example: new speed:399.000000 +I (254684) example: expect speed: 0.000000 real_pulses:0 +I (254684) example: new speed:399.000000 +I (254694) example: expect speed: 0.000000 real_pulses:0 +I (254694) example: new speed:399.000000 +I (254704) example: expect speed: 0.000000 real_pulses:0 +I (254704) example: new speed:399.000000 +I (254714) example: expect speed: 0.000000 real_pulses:0 +I (254714) example: new speed:399.000000 +I (254724) example: expect speed: 0.000000 real_pulses:0 +I (254734) example: new speed:399.000000 +I (254734) example: expect speed: 0.000000 real_pulses:0 +I (254734) example: new speed:399.000000 +I (254744) example: expect speed: 0.000000 real_pulses:0 +I (254744) example: new speed:399.000000 +I (254754) example: expect speed: 0.000000 real_pulses:0 +I (254754) example: new speed:399.000000 +I (254764) example: expect speed: 0.000000 real_pulses:0 +I (254764) example: new speed:399.000000 +I (254774) example: expect speed: 0.000000 real_pulses:0 +I (254774) example: new speed:399.000000 +I (254784) example: expect speed: 0.000000 real_pulses:0 +I (254784) example: new speed:399.000000 +I (254794) example: expect speed: 0.000000 real_pulses:0 +I (254794) example: new speed:399.000000 +I (254804) example: expect speed: 0.000000 real_pulses:0 +I (254804) example: new speed:399.000000 +I (254814) example: expect speed: 0.000000 real_pulses:0 +I (254824) example: new speed:399.000000 +I (254824) example: expect speed: 0.000000 real_pulses:0 +I (254824) example: new speed:399.000000 +I (254834) example: expect speed: 0.000000 real_pulses:0 +I (254834) example: new speed:399.000000 +I (254844) example: expect speed: 0.000000 real_pulses:0 +I (254844) example: new speed:399.000000 +I (254854) example: expect speed: 0.000000 real_pulses:0 +I (254854) example: new speed:399.000000 +I (254864) example: expect speed: 0.000000 real_pulses:0 +I (254864) example: new speed:399.000000 +I (254874) example: expect speed: 0.000000 real_pulses:0 +I (254874) example: new speed:399.000000 +I (254884) example: expect speed: 0.000000 real_pulses:0 +I (254884) example: new speed:399.000000 +I (254894) example: expect speed: 0.000000 real_pulses:0 +I (254894) example: new speed:399.000000 +I (254904) example: expect speed: 0.000000 real_pulses:0 +I (254904) example: new speed:399.000000 +I (254914) example: expect speed: 0.000000 real_pulses:0 +I (254914) example: new speed:399.000000 +I (254924) example: expect speed: 0.000000 real_pulses:0 +I (254924) example: new speed:399.000000 +I (254934) example: expect speed: 0.000000 real_pulses:0 +I (254934) example: new speed:399.000000 +I (254944) example: expect speed: 0.000000 real_pulses:0 +I (254944) example: new speed:399.000000 +I (254954) example: expect speed: 0.000000 real_pulses:0 +I (254954) example: new speed:399.000000 +I (254964) example: expect speed: 0.000000 real_pulses:0 +I (254964) example: new speed:399.000000 +I (254974) example: expect speed: 0.000000 real_pulses:0 +I (254974) example: new speed:399.000000 +I (254984) example: expect speed: 0.000000 real_pulses:0 +I (254984) example: new speed:399.000000 +I (254994) example: expect speed: 0.000000 real_pulses:0 +I (254994) example: new speed:399.000000 +I (255004) example: expect speed: 0.000000 real_pulses:0 +I (255004) example: new speed:399.000000 +I (255014) example: expect speed: 0.000000 real_pulses:0 +I (255014) example: new speed:399.000000 +I (255024) example: expect speed: 0.000000 real_pulses:0 +I (255024) example: new speed:399.000000 +I (255034) example: expect speed: 0.000000 real_pulses:0 +I (255034) example: new speed:399.000000 +I (255044) example: expect speed: 0.000000 real_pulses:0 +I (255044) example: new speed:399.000000 +I (255054) example: expect speed: 0.000000 real_pulses:0 +I (255054) example: new speed:399.000000 +I (255064) example: expect speed: 0.000000 real_pulses:0 +I (255064) example: new speed:399.000000 +I (255074) example: expect speed: 0.000000 real_pulses:0 +I (255074) example: new speed:399.000000 +I (255084) example: expect speed: 0.000000 real_pulses:0 +I (255084) example: new speed:399.000000 +I (255094) example: expect speed: 0.000000 real_pulses:0 +I (255094) example: new speed:399.000000 +I (255104) example: expect speed: 0.000000 real_pulses:0 +I (255104) example: new speed:399.000000 +I (255114) example: expect speed: 0.000000 real_pulses:0 +I (255114) example: new speed:399.000000 +I (255124) example: expect speed: 0.000000 real_pulses:0 +I (255124) example: new speed:399.000000 +I (255134) example: expect speed: 0.000000 real_pulses:0 +I (255134) example: new speed:399.000000 +I (255144) example: expect speed: 0.000000 real_pulses:0 +I (255144) example: new speed:399.000000 +I (255154) example: expect speed: 0.000000 real_pulses:0 +I (255154) example: new speed:399.000000 +I (255164) example: expect speed: 0.000000 real_pulses:0 +I (255164) example: new speed:399.000000 +I (255174) example: expect speed: 0.000000 real_pulses:0 +I (255174) example: new speed:399.000000 +I (255184) example: expect speed: 0.000000 real_pulses:0 +I (255184) example: new speed:399.000000 +I (255194) example: expect speed: 0.000000 real_pulses:0 +I (255194) example: new speed:399.000000 +I (255204) example: expect speed: 0.000000 real_pulses:0 +I (255204) example: new speed:399.000000 +I (255214) example: expect speed: 0.000000 real_pulses:0 +I (255214) example: new speed:399.000000 +I (255224) example: expect speed: 0.000000 real_pulses:0 +I (255224) example: new speed:399.000000 +I (255234) example: expect speed: 0.000000 real_pulses:0 +I (255234) example: new speed:399.000000 +I (255244) example: expect speed: 0.000000 real_pulses:0 +I (255244) example: new speed:399.000000 +I (255254) example: expect speed: 0.000000 real_pulses:0 +I (255254) example: new speed:399.000000 +I (255264) example: expect speed: 0.000000 real_pulses:0 +I (255264) example: new speed:399.000000 +I (255274) example: expect speed: 0.000000 real_pulses:0 +I (255274) example: new speed:399.000000 +I (255284) example: expect speed: 0.000000 real_pulses:0 +I (255284) example: new speed:399.000000 +I (255294) example: expect speed: 0.000000 real_pulses:0 +I (255294) example: new speed:399.000000 +I (255304) example: expect speed: 0.000000 real_pulses:0 +I (255304) example: new speed:399.000000 +I (255314) example: expect speed: 0.000000 real_pulses:0 +I (255314) example: new speed:399.000000 +I (255324) example: expect speed: 0.000000 real_pulses:0 +I (255324) example: new speed:399.000000 +I (255334) example: expect speed: 0.000000 real_pulses:0 +I (255334) example: new speed:399.000000 +I (255344) example: expect speed: 0.000000 real_pulses:0 +I (255344) example: new speed:399.000000 +I (255354) example: expect speed: 0.000000 real_pulses:0 +I (255354) example: new speed:399.000000 +I (255364) example: expect speed: 0.000000 real_pulses:0 +I (255364) example: new speed:399.000000 +I (255374) example: expect speed: 0.000000 real_pulses:0 +I (255374) example: new speed:399.000000 +I (255384) example: expect speed: 0.000000 real_pulses:0 +I (255384) example: new speed:399.000000 +I (255394) example: expect speed: 0.000000 real_pulses:0 +I (255394) example: new speed:399.000000 +I (255404) example: expect speed: 0.000000 real_pulses:0 +I (255404) example: new speed:399.000000 +I (255414) example: expect speed: 0.000000 real_pulses:0 +I (255414) example: new speed:399.000000 +I (255424) example: expect speed: 0.000000 real_pulses:0 +I (255424) example: new speed:399.000000 +I (255434) example: expect speed: 0.000000 real_pulses:0 +I (255434) example: new speed:399.000000 +I (255444) example: expect speed: 0.000000 real_pulses:0 +I (255444) example: new speed:399.000000 +I (255454) example: expect speed: 0.000000 real_pulses:0 +I (255454) example: new speed:399.000000 +I (255464) example: expect speed: 0.000000 real_pulses:0 +I (255464) example: new speed:399.000000 +I (255474) example: expect speed: 0.000000 real_pulses:0 +I (255474) example: new speed:399.000000 +I (255484) example: expect speed: 0.000000 real_pulses:0 +I (255484) example: new speed:399.000000 +I (255494) example: expect speed: 0.000000 real_pulses:0 +I (255494) example: new speed:399.000000 +I (255504) example: expect speed: 0.000000 real_pulses:0 +I (255504) example: new speed:399.000000 +I (255514) example: expect speed: 0.000000 real_pulses:0 +I (255514) example: new speed:399.000000 +I (255524) example: expect speed: 0.000000 real_pulses:0 +I (255524) example: new speed:399.000000 +I (255534) example: expect speed: 0.000000 real_pulses:0 +I (255544) example: new speed:399.000000 +I (255544) example: expect speed: 0.000000 real_pulses:0 +I (255544) example: new speed:399.000000 +I (255554) example: expect speed: 0.000000 real_pulses:0 +I (255564) example: new speed:399.000000 +I (255564) example: expect speed: 0.000000 real_pulses:0 +I (255564) example: new speed:399.000000 +I (255574) example: expect speed: 0.000000 real_pulses:0 +I (255574) example: new speed:399.000000 +I (255584) example: expect speed: 0.000000 real_pulses:0 +I (255584) example: new speed:399.000000 +I (255594) example: expect speed: 0.000000 real_pulses:0 +I (255594) example: new speed:399.000000 +I (255604) example: expect speed: 0.000000 real_pulses:0 +I (255604) example: new speed:399.000000 +I (255614) example: expect speed: 0.000000 real_pulses:0 +I (255614) example: new speed:399.000000 +I (255624) example: expect speed: 0.000000 real_pulses:0 +I (255624) example: new speed:399.000000 +I (255634) example: expect speed: 0.000000 real_pulses:0 +I (255644) example: new speed:399.000000 +I (255644) example: expect speed: 0.000000 real_pulses:0 +I (255644) example: new speed:399.000000 +I (255654) modbus tcp: ModBusSlave_recv() +I (255654) modbus: ModbusSlaveProcess() +I (255654) modbus: check id... +I (255654) modbus: ok +I (255654) modbus: add: 0, length: 10 +I (255654) modbus: Read Holding Registers +I (255654) example: expect speed: 0.000000 real_pulses:0 +I (255664) example: new speed:399.000000 +I (255664) example: expect speed: 0.000000 real_pulses:0 +I (255664) example: new speed:399.000000 +I (255674) example: expect speed: 0.000000 real_pulses:0 +I (255674) example: new speed:399.000000 +I (255684) example: expect speed: 0.000000 real_pulses:0 +I (255684) example: new speed:399.000000 +I (255694) example: expect speed: 0.000000 real_pulses:0 +I (255694) example: new speed:399.000000 +I (255704) example: expect speed: 0.000000 real_pulses:0 +I (255714) example: new speed:399.000000 +I (255714) example: expect speed: 0.000000 real_pulses:0 +I (255714) example: new speed:399.000000 +I (255724) example: expect speed: 0.000000 real_pulses:0 +I (255724) example: new speed:399.000000 +I (255734) example: expect speed: 0.000000 real_pulses:0 +I (255734) example: new speed:399.000000 +I (255744) example: expect speed: 0.000000 real_pulses:0 +I (255744) example: new speed:399.000000 +I (255754) example: expect speed: 0.000000 real_pulses:0 +I (255764) example: new speed:399.000000 +I (255764) example: expect speed: 0.000000 real_pulses:0 +I (255764) example: new speed:399.000000 +I (255774) example: expect speed: 0.000000 real_pulses:0 +I (255774) example: new speed:399.000000 +I (255784) example: expect speed: 0.000000 real_pulses:0 +I (255784) example: new speed:399.000000 +I (255794) example: expect speed: 0.000000 real_pulses:0 +I (255794) example: new speed:399.000000 +I (255804) example: expect speed: 0.000000 real_pulses:0 +I (255804) example: new speed:399.000000 +I (255814) example: expect speed: 0.000000 real_pulses:0 +I (255814) example: new speed:399.000000 +I (255824) example: expect speed: 0.000000 real_pulses:0 +I (255824) example: new speed:399.000000 +I (255834) example: expect speed: 0.000000 real_pulses:0 +I (255834) example: new speed:399.000000 +I (255844) example: expect speed: 0.000000 real_pulses:0 +I (255854) example: new speed:399.000000 +I (255854) example: expect speed: 0.000000 real_pulses:0 +I (255854) example: new speed:399.000000 +I (255864) example: expect speed: 0.000000 real_pulses:0 +I (255864) example: new speed:399.000000 +I (255874) example: expect speed: 0.000000 real_pulses:0 +I (255874) example: new speed:399.000000 +I (255884) example: expect speed: 0.000000 real_pulses:0 +I (255884) example: new speed:399.000000 +I (255894) example: expect speed: 0.000000 real_pulses:0 +I (255894) example: new speed:399.000000 +I (255904) example: expect speed: 0.000000 real_pulses:0 +I (255904) example: new speed:399.000000 +I (255914) example: expect speed: 0.000000 real_pulses:0 +I (255914) example: new speed:399.000000 +I (255924) example: expect speed: 0.000000 real_pulses:0 +I (255924) example: new speed:399.000000 +I (255934) example: expect speed: 0.000000 real_pulses:0 +I (255944) example: new speed:399.000000 +I (255944) example: expect speed: 0.000000 real_pulses:0 +I (255944) example: new speed:399.000000 +I (255954) example: expect speed: 0.000000 real_pulses:0 +I (255954) example: new speed:399.000000 +I (255964) example: expect speed: 0.000000 real_pulses:0 +I (255964) example: new speed:399.000000 +I (255974) example: expect speed: 0.000000 real_pulses:0 +I (255974) example: new speed:399.000000 +I (255984) example: expect speed: 0.000000 real_pulses:0 +I (255984) example: new speed:399.000000 +I (255994) example: expect speed: 0.000000 real_pulses:0 +I (255994) example: new speed:399.000000 +I (256004) example: expect speed: 0.000000 real_pulses:0 +I (256004) example: new speed:399.000000 +I (256014) example: expect speed: 0.000000 real_pulses:0 +I (256014) example: new speed:399.000000 +I (256024) example: expect speed: 0.000000 real_pulses:0 +I (256024) example: new speed:399.000000 +I (256034) example: expect speed: 0.000000 real_pulses:0 +I (256034) example: new speed:399.000000 +I (256044) example: expect speed: 0.000000 real_pulses:0 +I (256044) example: new speed:399.000000 +I (256054) example: expect speed: 0.000000 real_pulses:0 +I (256054) example: new speed:399.000000 +I (256064) example: expect speed: 0.000000 real_pulses:0 +I (256064) example: new speed:399.000000 +I (256074) example: expect speed: 0.000000 real_pulses:0 +I (256074) example: new speed:399.000000 +I (256084) example: expect speed: 0.000000 real_pulses:0 +I (256084) example: new speed:399.000000 +I (256094) example: expect speed: 0.000000 real_pulses:0 +I (256094) example: new speed:399.000000 +I (256104) example: expect speed: 0.000000 real_pulses:0 +I (256104) example: new speed:399.000000 +I (256114) example: expect speed: 0.000000 real_pulses:0 +I (256114) example: new speed:399.000000 +I (256124) example: expect speed: 0.000000 real_pulses:0 +I (256124) example: new speed:399.000000 +I (256134) example: expect speed: 0.000000 real_pulses:0 +I (256134) example: new speed:399.000000 +I (256144) example: expect speed: 0.000000 real_pulses:0 +I (256144) example: new speed:399.000000 +I (256154) example: expect speed: 0.000000 real_pulses:0 +I (256154) example: new speed:399.000000 +I (256164) example: expect speed: 0.000000 real_pulses:0 +I (256164) example: new speed:399.000000 +I (256174) example: expect speed: 0.000000 real_pulses:0 +I (256174) example: new speed:399.000000 +I (256184) example: expect speed: 0.000000 real_pulses:0 +I (256184) example: new speed:399.000000 +I (256194) example: expect speed: 0.000000 real_pulses:0 +I (256194) example: new speed:399.000000 +I (256204) example: expect speed: 0.000000 real_pulses:0 +I (256204) example: new speed:399.000000 +I (256214) example: expect speed: 0.000000 real_pulses:0 +I (256214) example: new speed:399.000000 +I (256224) example: expect speed: 0.000000 real_pulses:0 +I (256224) example: new speed:399.000000 +I (256234) example: expect speed: 0.000000 real_pulses:0 +I (256234) example: new speed:399.000000 +I (256244) example: expect speed: 0.000000 real_pulses:0 +I (256244) example: new speed:399.000000 +I (256254) example: expect speed: 0.000000 real_pulses:0 +I (256254) example: new speed:399.000000 +I (256264) example: expect speed: 0.000000 real_pulses:0 +I (256264) example: new speed:399.000000 +I (256274) example: expect speed: 0.000000 real_pulses:0 +I (256274) example: new speed:399.000000 +I (256284) example: expect speed: 0.000000 real_pulses:0 +I (256284) example: new speed:399.000000 +I (256294) example: expect speed: 0.000000 real_pulses:0 +I (256294) example: new speed:399.000000 +I (256304) example: expect speed: 0.000000 real_pulses:0 +I (256304) example: new speed:399.000000 +I (256314) example: expect speed: 0.000000 real_pulses:0 +I (256314) example: new speed:399.000000 +I (256324) example: expect speed: 0.000000 real_pulses:0 +I (256324) example: new speed:399.000000 +I (256334) example: expect speed: 0.000000 real_pulses:0 +I (256334) example: new speed:399.000000 +I (256344) example: expect speed: 0.000000 real_pulses:0 +I (256344) example: new speed:399.000000 +I (256354) example: expect speed: 0.000000 real_pulses:0 +I (256354) example: new speed:399.000000 +I (256364) example: expect speed: 0.000000 real_pulses:0 +I (256364) example: new speed:399.000000 +I (256374) example: expect speed: 0.000000 real_pulses:0 +I (256374) example: new speed:399.000000 +I (256384) example: expect speed: 0.000000 real_pulses:0 +I (256384) example: new speed:399.000000 +I (256394) example: expect speed: 0.000000 real_pulses:0 +I (256394) example: new speed:399.000000 +I (256404) example: expect speed: 0.000000 real_pulses:0 +I (256404) example: new speed:399.000000 +I (256414) example: expect speed: 0.000000 real_pulses:0 +I (256414) example: new speed:399.000000 +I (256424) example: expect speed: 0.000000 real_pulses:0 +I (256424) example: new speed:399.000000 +I (256434) example: expect speed: 0.000000 real_pulses:0 +I (256434) example: new speed:399.000000 +I (256444) example: expect speed: 0.000000 real_pulses:0 +I (256444) example: new speed:399.000000 +I (256454) example: expect speed: 0.000000 real_pulses:0 +I (256454) example: new speed:399.000000 +I (256464) example: expect speed: 0.000000 real_pulses:0 +I (256464) example: new speed:399.000000 +I (256474) example: expect speed: 0.000000 real_pulses:0 +I (256474) example: new speed:399.000000 +I (256484) example: expect speed: 0.000000 real_pulses:0 +I (256484) example: new speed:399.000000 +I (256494) example: expect speed: 0.000000 real_pulses:0 +I (256494) example: new speed:399.000000 +I (256504) example: expect speed: 0.000000 real_pulses:0 +I (256504) example: new speed:399.000000 +I (256514) example: expect speed: 0.000000 real_pulses:0 +I (256514) example: new speed:399.000000 +I (256524) example: expect speed: 0.000000 real_pulses:0 +I (256524) example: new speed:399.000000 +I (256534) example: expect speed: 0.000000 real_pulses:0 +I (256534) example: new speed:399.000000 +I (256544) example: expect speed: 0.000000 real_pulses:0 +I (256544) example: new speed:399.000000 +I (256554) example: expect speed: 0.000000 real_pulses:0 +I (256554) example: new speed:399.000000 +I (256564) example: expect speed: 0.000000 real_pulses:0 +I (256564) example: new speed:399.000000 +I (256574) example: expect speed: 0.000000 real_pulses:0 +I (256574) example: new speed:399.000000 +I (256584) example: expect speed: 0.000000 real_pulses:0 +I (256584) example: new speed:399.000000 +I (256594) example: expect speed: 0.000000 real_pulses:0 +I (256594) example: new speed:399.000000 +I (256604) example: expect speed: 0.000000 real_pulses:0 +I (256604) example: new speed:399.000000 +I (256614) example: expect speed: 0.000000 real_pulses:0 +I (256614) example: new speed:399.000000 +I (256624) example: expect speed: 0.000000 real_pulses:0 +I (256624) example: new speed:399.000000 +I (256634) example: expect speed: 0.000000 real_pulses:0 +I (256634) example: new speed:399.000000 +I (256644) example: expect speed: 0.000000 real_pulses:0 +I (256644) example: new speed:399.000000 +I (256654) example: expect speed: 0.000000 real_pulses:0 +I (256654) example: new speed:399.000000 +I (256664) modbus tcp: ModBusSlave_recv() +I (256664) modbus: ModbusSlaveProcess() +I (256664) modbus: check id... +I (256664) modbus: ok +I (256664) modbus: add: 0, length: 10 +I (256664) modbus: Read Holding Registers +I (256664) example: expect speed: 0.000000 real_pulses:0 +I (256674) example: new speed:399.000000 +I (256674) example: expect speed: 0.000000 real_pulses:0 +I (256674) example: new speed:399.000000 +I (256684) example: expect speed: 0.000000 real_pulses:0 +I (256684) example: new speed:399.000000 +I (256694) example: expect speed: 0.000000 real_pulses:0 +I (256694) example: new speed:399.000000 +I (256704) example: expect speed: 0.000000 real_pulses:0 +I (256704) example: new speed:399.000000 +I (256714) example: expect speed: 0.000000 real_pulses:0 +I (256724) example: new speed:399.000000 +I (256724) example: expect speed: 0.000000 real_pulses:0 +I (256724) example: new speed:399.000000 +I (256734) example: expect speed: 0.000000 real_pulses:0 +I (256734) example: new speed:399.000000 +I (256744) example: expect speed: 0.000000 real_pulses:0 +I (256744) example: new speed:399.000000 +I (256754) example: expect speed: 0.000000 real_pulses:0 +I (256754) example: new speed:399.000000 +I (256764) example: expect speed: 0.000000 real_pulses:0 +I (256774) example: new speed:399.000000 +I (256774) example: expect speed: 0.000000 real_pulses:0 +I (256784) example: new speed:399.000000 +I (256784) example: expect speed: 0.000000 real_pulses:0 +I (256784) example: new speed:399.000000 +I (256794) example: expect speed: 0.000000 real_pulses:0 +I (256794) example: new speed:399.000000 +I (256804) example: expect speed: 0.000000 real_pulses:0 +I (256804) example: new speed:399.000000 +I (256814) example: expect speed: 0.000000 real_pulses:0 +I (256814) example: new speed:399.000000 +I (256824) example: expect speed: 0.000000 real_pulses:0 +I (256834) example: new speed:399.000000 +I (256834) example: expect speed: 0.000000 real_pulses:0 +I (256834) example: new speed:399.000000 +I (256844) example: expect speed: 0.000000 real_pulses:0 +I (256844) example: new speed:399.000000 +I (256854) example: expect speed: 0.000000 real_pulses:0 +I (256854) example: new speed:399.000000 +I (256864) example: expect speed: 0.000000 real_pulses:0 +I (256874) example: new speed:399.000000 +I (256874) example: expect speed: 0.000000 real_pulses:0 +I (256874) example: new speed:399.000000 +I (256884) example: expect speed: 0.000000 real_pulses:0 +I (256884) example: new speed:399.000000 +I (256894) example: expect speed: 0.000000 real_pulses:0 +I (256894) example: new speed:399.000000 +I (256904) example: expect speed: 0.000000 real_pulses:0 +I (256904) example: new speed:399.000000 +I (256914) example: expect speed: 0.000000 real_pulses:0 +I (256914) example: new speed:399.000000 +I (256924) example: expect speed: 0.000000 real_pulses:0 +I (256924) example: new speed:399.000000 +I (256934) example: expect speed: 0.000000 real_pulses:0 +I (256934) example: new speed:399.000000 +I (256944) example: expect speed: 0.000000 real_pulses:0 +I (256944) example: new speed:399.000000 +I (256954) example: expect speed: 0.000000 real_pulses:0 +I (256954) example: new speed:399.000000 +I (256964) example: expect speed: 0.000000 real_pulses:0 +I (256964) example: new speed:399.000000 +I (256974) example: expect speed: 0.000000 real_pulses:0 +I (256974) example: new speed:399.000000 +I (256984) example: expect speed: 0.000000 real_pulses:0 +I (256984) example: new speed:399.000000 +I (256994) example: expect speed: 0.000000 real_pulses:0 +I (256994) example: new speed:399.000000 +I (257004) example: expect speed: 0.000000 real_pulses:0 +I (257004) example: new speed:399.000000 +I (257014) example: expect speed: 0.000000 real_pulses:0 +I (257014) example: new speed:399.000000 +I (257024) example: expect speed: 0.000000 real_pulses:0 +I (257024) example: new speed:399.000000 +I (257034) example: expect speed: 0.000000 real_pulses:0 +I (257034) example: new speed:399.000000 +I (257044) example: expect speed: 0.000000 real_pulses:0 +I (257044) example: new speed:399.000000 +I (257054) example: expect speed: 0.000000 real_pulses:0 +I (257054) example: new speed:399.000000 +I (257064) example: expect speed: 0.000000 real_pulses:0 +I (257064) example: new speed:399.000000 +I (257074) example: expect speed: 0.000000 real_pulses:0 +I (257074) example: new speed:399.000000 +I (257084) example: expect speed: 0.000000 real_pulses:0 +I (257084) example: new speed:399.000000 +I (257094) example: expect speed: 0.000000 real_pulses:0 +I (257094) example: new speed:399.000000 +I (257104) example: expect speed: 0.000000 real_pulses:0 +I (257104) example: new speed:399.000000 +I (257114) example: expect speed: 0.000000 real_pulses:0 +I (257114) example: new speed:399.000000 +I (257124) example: expect speed: 0.000000 real_pulses:0 +I (257124) example: new speed:399.000000 +I (257134) example: expect speed: 0.000000 real_pulses:0 +I (257134) example: new speed:399.000000 +I (257144) example: expect speed: 0.000000 real_pulses:0 +I (257144) example: new speed:399.000000 +I (257154) example: expect speed: 0.000000 real_pulses:0 +I (257154) example: new speed:399.000000 +I (257164) example: expect speed: 0.000000 real_pulses:0 +I (257164) example: new speed:399.000000 +I (257174) example: expect speed: 0.000000 real_pulses:0 +I (257174) example: new speed:399.000000 +I (257184) example: expect speed: 0.000000 real_pulses:0 +I (257184) example: new speed:399.000000 +I (257194) example: expect speed: 0.000000 real_pulses:0 +I (257194) example: new speed:399.000000 +I (257204) example: expect speed: 0.000000 real_pulses:0 +I (257204) example: new speed:399.000000 +I (257214) example: expect speed: 0.000000 real_pulses:0 +I (257214) example: new speed:399.000000 +I (257224) example: expect speed: 0.000000 real_pulses:0 +I (257224) example: new speed:399.000000 +I (257234) example: expect speed: 0.000000 real_pulses:0 +I (257234) example: new speed:399.000000 +I (257244) example: expect speed: 0.000000 real_pulses:0 +I (257244) example: new speed:399.000000 +I (257254) example: expect speed: 0.000000 real_pulses:0 +I (257254) example: new speed:399.000000 +I (257264) example: expect speed: 0.000000 real_pulses:0 +I (257264) example: new speed:399.000000 +I (257274) example: expect speed: 0.000000 real_pulses:0 +I (257274) example: new speed:399.000000 +I (257284) example: expect speed: 0.000000 real_pulses:0 +I (257284) example: new speed:399.000000 +I (257294) example: expect speed: 0.000000 real_pulses:0 +I (257294) example: new speed:399.000000 +I (257304) example: expect speed: 0.000000 real_pulses:0 +I (257304) example: new speed:399.000000 +I (257314) example: expect speed: 0.000000 real_pulses:0 +I (257314) example: new speed:399.000000 +I (257324) example: expect speed: 0.000000 real_pulses:0 +I (257324) example: new speed:399.000000 +I (257334) example: expect speed: 0.000000 real_pulses:0 +I (257334) example: new speed:399.000000 +I (257344) example: expect speed: 0.000000 real_pulses:0 +I (257344) example: new speed:399.000000 +I (257354) example: expect speed: 0.000000 real_pulses:0 +I (257354) example: new speed:399.000000 +I (257364) example: expect speed: 0.000000 real_pulses:0 +I (257364) example: new speed:399.000000 +I (257374) example: expect speed: 0.000000 real_pulses:0 +I (257374) example: new speed:399.000000 +I (257384) example: expect speed: 0.000000 real_pulses:0 +I (257384) example: new speed:399.000000 +I (257394) example: expect speed: 0.000000 real_pulses:0 +I (257394) example: new speed:399.000000 +I (257404) example: expect speed: 0.000000 real_pulses:0 +I (257404) example: new speed:399.000000 +I (257414) example: expect speed: 0.000000 real_pulses:0 +I (257414) example: new speed:399.000000 +I (257424) example: expect speed: 0.000000 real_pulses:0 +I (257424) example: new speed:399.000000 +I (257434) example: expect speed: 0.000000 real_pulses:0 +I (257434) example: new speed:399.000000 +I (257444) example: expect speed: 0.000000 real_pulses:0 +I (257444) example: new speed:399.000000 +I (257454) example: expect speed: 0.000000 real_pulses:0 +I (257454) example: new speed:399.000000 +I (257464) example: expect speed: 0.000000 real_pulses:0 +I (257464) example: new speed:399.000000 +I (257474) example: expect speed: 0.000000 real_pulses:0 +I (257474) example: new speed:399.000000 +I (257484) example: expect speed: 0.000000 real_pulses:0 +I (257484) example: new speed:399.000000 +I (257494) example: expect speed: 0.000000 real_pulses:0 +I (257494) example: new speed:399.000000 +I (257504) example: expect speed: 0.000000 real_pulses:0 +I (257504) example: new speed:399.000000 +I (257514) example: expect speed: 0.000000 real_pulses:0 +I (257514) example: new speed:399.000000 +I (257524) example: expect speed: 0.000000 real_pulses:0 +I (257524) example: new speed:399.000000 +I (257534) example: expect speed: 0.000000 real_pulses:0 +I (257534) example: new speed:399.000000 +I (257544) example: expect speed: 0.000000 real_pulses:0 +I (257544) example: new speed:399.000000 +I (257554) example: expect speed: 0.000000 real_pulses:0 +I (257554) example: new speed:399.000000 +I (257564) example: expect speed: 0.000000 real_pulses:0 +I (257564) example: new speed:399.000000 +I (257574) example: expect speed: 0.000000 real_pulses:0 +I (257574) example: new speed:399.000000 +I (257584) example: expect speed: 0.000000 real_pulses:0 +I (257584) example: new speed:399.000000 +I (257594) example: expect speed: 0.000000 real_pulses:0 +I (257594) example: new speed:399.000000 +I (257604) example: expect speed: 0.000000 real_pulses:0 +I (257604) example: new speed:399.000000 +I (257614) example: expect speed: 0.000000 real_pulses:0 +I (257614) example: new speed:399.000000 +I (257624) example: expect speed: 0.000000 real_pulses:0 +I (257624) example: new speed:399.000000 +I (257634) example: expect speed: 0.000000 real_pulses:0 +I (257634) example: new speed:399.000000 +I (257644) example: expect speed: 0.000000 real_pulses:0 +I (257644) example: new speed:399.000000 +I (257654) example: expect speed: 0.000000 real_pulses:0 +I (257654) example: new speed:399.000000 +I (257664) example: expect speed: 0.000000 real_pulses:0 +I (257664) example: new speed:399.000000 +I (257674) example: expect speed: 0.000000 real_pulses:0 +I (257674) example: new speed:399.000000 +I (257684) example: expect speed: 0.000000 real_pulses:0 +I (257694) example: new speed:399.000000 +I (257694) modbus tcp: ModBusSlave_recv() +I (257694) modbus: ModbusSlaveProcess() +I (257694) modbus: check id... +I (257694) modbus: ok +I (257694) modbus: add: 0, length: 10 +I (257694) modbus: Read Holding Registers +I (257694) example: expect speed: 0.000000 real_pulses:0 +I (257704) example: new speed:399.000000 +I (257704) example: expect speed: 0.000000 real_pulses:0 +I (257704) example: new speed:399.000000 +I (257714) example: expect speed: 0.000000 real_pulses:0 +I (257714) example: new speed:399.000000 +I (257724) example: expect speed: 0.000000 real_pulses:0 +I (257724) example: new speed:399.000000 +I (257734) example: expect speed: 0.000000 real_pulses:0 +I (257734) example: new speed:399.000000 +I (257744) example: expect speed: 0.000000 real_pulses:0 +I (257754) example: new speed:399.000000 +I (257754) example: expect speed: 0.000000 real_pulses:0 +I (257754) example: new speed:399.000000 +I (257764) example: expect speed: 0.000000 real_pulses:0 +I (257764) example: new speed:399.000000 +I (257774) example: expect speed: 0.000000 real_pulses:0 +I (257774) example: new speed:399.000000 +I (257784) example: expect speed: 0.000000 real_pulses:0 +I (257794) example: new speed:399.000000 +I (257794) example: expect speed: 0.000000 real_pulses:0 +I (257794) example: new speed:399.000000 +I (257804) example: expect speed: 0.000000 real_pulses:0 +I (257804) example: new speed:399.000000 +I (257814) example: expect speed: 0.000000 real_pulses:0 +I (257814) example: new speed:399.000000 +I (257824) example: expect speed: 0.000000 real_pulses:0 +I (257824) example: new speed:399.000000 +I (257834) example: expect speed: 0.000000 real_pulses:0 +I (257834) example: new speed:399.000000 +I (257844) example: expect speed: 0.000000 real_pulses:0 +I (257854) example: new speed:399.000000 +I (257854) example: expect speed: 0.000000 real_pulses:0 +I (257854) example: new speed:399.000000 +I (257864) example: expect speed: 0.000000 real_pulses:0 +I (257864) example: new speed:399.000000 +I (257874) example: expect speed: 0.000000 real_pulses:0 +I (257874) example: new speed:399.000000 +I (257884) example: expect speed: 0.000000 real_pulses:0 +I (257884) example: new speed:399.000000 +I (257894) example: expect speed: 0.000000 real_pulses:0 +I (257904) example: new speed:399.000000 +I (257904) example: expect speed: 0.000000 real_pulses:0 +I (257904) example: new speed:399.000000 +I (257914) example: expect speed: 0.000000 real_pulses:0 +I (257914) example: new speed:399.000000 +I (257924) example: expect speed: 0.000000 real_pulses:0 +I (257924) example: new speed:399.000000 +I (257934) example: expect speed: 0.000000 real_pulses:0 +I (257934) example: new speed:399.000000 +I (257944) example: expect speed: 0.000000 real_pulses:0 +I (257944) example: new speed:399.000000 +I (257954) example: expect speed: 0.000000 real_pulses:0 +I (257954) example: new speed:399.000000 +I (257964) example: expect speed: 0.000000 real_pulses:0 +I (257964) example: new speed:399.000000 +I (257974) example: expect speed: 0.000000 real_pulses:0 +I (257974) example: new speed:399.000000 +I (257984) example: expect speed: 0.000000 real_pulses:0 +I (257984) example: new speed:399.000000 +I (257994) example: expect speed: 0.000000 real_pulses:0 +I (257994) example: new speed:399.000000 +I (258004) example: expect speed: 0.000000 real_pulses:0 +I (258004) example: new speed:399.000000 +I (258014) example: expect speed: 0.000000 real_pulses:0 +I (258014) example: new speed:399.000000 +I (258024) example: expect speed: 0.000000 real_pulses:0 +I (258024) example: new speed:399.000000 +I (258034) example: expect speed: 0.000000 real_pulses:0 +I (258034) example: new speed:399.000000 +I (258044) example: expect speed: 0.000000 real_pulses:0 +I (258044) example: new speed:399.000000 +I (258054) example: expect speed: 0.000000 real_pulses:0 +I (258054) example: new speed:399.000000 +I (258064) example: expect speed: 0.000000 real_pulses:0 +I (258064) example: new speed:399.000000 +I (258074) example: expect speed: 0.000000 real_pulses:0 +I (258074) example: new speed:399.000000 +I (258084) example: expect speed: 0.000000 real_pulses:0 +I (258084) example: new speed:399.000000 +I (258094) example: expect speed: 0.000000 real_pulses:0 +I (258094) example: new speed:399.000000 +I (258104) example: expect speed: 0.000000 real_pulses:0 +I (258104) example: new speed:399.000000 +I (258114) example: expect speed: 0.000000 real_pulses:0 +I (258114) example: new speed:399.000000 +I (258124) example: expect speed: 0.000000 real_pulses:0 +I (258124) example: new speed:399.000000 +I (258134) example: expect speed: 0.000000 real_pulses:0 +I (258134) example: new speed:399.000000 +I (258144) example: expect speed: 0.000000 real_pulses:0 +I (258144) example: new speed:399.000000 +I (258154) example: expect speed: 0.000000 real_pulses:0 +I (258154) example: new speed:399.000000 +I (258164) example: expect speed: 0.000000 real_pulses:0 +I (258164) example: new speed:399.000000 +I (258174) example: expect speed: 0.000000 real_pulses:0 +I (258174) example: new speed:399.000000 +I (258184) example: expect speed: 0.000000 real_pulses:0 +I (258184) example: new speed:399.000000 +I (258194) example: expect speed: 0.000000 real_pulses:0 +I (258194) example: new speed:399.000000 +I (258204) example: expect speed: 0.000000 real_pulses:0 +I (258204) example: new speed:399.000000 +I (258214) example: expect speed: 0.000000 real_pulses:0 +I (258214) example: new speed:399.000000 +I (258224) example: expect speed: 0.000000 real_pulses:0 +I (258224) example: new speed:399.000000 +I (258234) example: expect speed: 0.000000 real_pulses:0 +I (258234) example: new speed:399.000000 +I (258244) example: expect speed: 0.000000 real_pulses:0 +I (258244) example: new speed:399.000000 +I (258254) example: expect speed: 0.000000 real_pulses:0 +I (258254) example: new speed:399.000000 +I (258264) example: expect speed: 0.000000 real_pulses:0 +I (258264) example: new speed:399.000000 +I (258274) example: expect speed: 0.000000 real_pulses:0 +I (258274) example: new speed:399.000000 +I (258284) example: expect speed: 0.000000 real_pulses:0 +I (258284) example: new speed:399.000000 +I (258294) example: expect speed: 0.000000 real_pulses:0 +I (258294) example: new speed:399.000000 +I (258304) example: expect speed: 0.000000 real_pulses:0 +I (258304) example: new speed:399.000000 +I (258314) example: expect speed: 0.000000 real_pulses:0 +I (258314) example: new speed:399.000000 +I (258324) example: expect speed: 0.000000 real_pulses:0 +I (258324) example: new speed:399.000000 +I (258334) example: expect speed: 0.000000 real_pulses:0 +I (258334) example: new speed:399.000000 +I (258344) example: expect speed: 0.000000 real_pulses:0 +I (258344) example: new speed:399.000000 +I (258354) example: expect speed: 0.000000 real_pulses:0 +I (258354) example: new speed:399.000000 +I (258364) example: expect speed: 0.000000 real_pulses:0 +I (258364) example: new speed:399.000000 +I (258374) example: expect speed: 0.000000 real_pulses:0 +I (258374) example: new speed:399.000000 +I (258384) example: expect speed: 0.000000 real_pulses:0 +I (258384) example: new speed:399.000000 +I (258394) example: expect speed: 0.000000 real_pulses:0 +I (258394) example: new speed:399.000000 +I (258404) example: expect speed: 0.000000 real_pulses:0 +I (258404) example: new speed:399.000000 +I (258414) example: expect speed: 0.000000 real_pulses:0 +I (258414) example: new speed:399.000000 +I (258424) example: expect speed: 0.000000 real_pulses:0 +I (258424) example: new speed:399.000000 +I (258434) example: expect speed: 0.000000 real_pulses:0 +I (258434) example: new speed:399.000000 +I (258444) example: expect speed: 0.000000 real_pulses:0 +I (258444) example: new speed:399.000000 +I (258454) example: expect speed: 0.000000 real_pulses:0 +I (258454) example: new speed:399.000000 +I (258464) example: expect speed: 0.000000 real_pulses:0 +I (258464) example: new speed:399.000000 +I (258474) example: expect speed: 0.000000 real_pulses:0 +I (258474) example: new speed:399.000000 +I (258484) example: expect speed: 0.000000 real_pulses:0 +I (258484) example: new speed:399.000000 +I (258494) example: expect speed: 0.000000 real_pulses:0 +I (258494) example: new speed:399.000000 +I (258504) example: expect speed: 0.000000 real_pulses:0 +I (258504) example: new speed:399.000000 +I (258514) example: expect speed: 0.000000 real_pulses:0 +I (258514) example: new speed:399.000000 +I (258524) example: expect speed: 0.000000 real_pulses:0 +I (258524) example: new speed:399.000000 +I (258534) example: expect speed: 0.000000 real_pulses:0 +I (258534) example: new speed:399.000000 +I (258544) example: expect speed: 0.000000 real_pulses:0 +I (258544) example: new speed:399.000000 +I (258554) example: expect speed: 0.000000 real_pulses:0 +I (258554) example: new speed:399.000000 +I (258564) example: expect speed: 0.000000 real_pulses:0 +I (258564) example: new speed:399.000000 +I (258574) example: expect speed: 0.000000 real_pulses:0 +I (258574) example: new speed:399.000000 +I (258584) example: expect speed: 0.000000 real_pulses:0 +I (258584) example: new speed:399.000000 +I (258594) example: expect speed: 0.000000 real_pulses:0 +I (258594) example: new speed:399.000000 +I (258604) example: expect speed: 0.000000 real_pulses:0 +I (258614) example: new speed:399.000000 +I (258614) modbus tcp: ModBusSlave_recv() +I (258614) modbus: ModbusSlaveProcess() +I (258614) modbus: check id... +I (258614) modbus: ok +I (258614) modbus: add: 0, length: 10 +I (258614) modbus: Read Holding Registers +I (258614) example: expect speed: 0.000000 real_pulses:0 +I (258624) example: new speed:399.000000 +I (258624) example: expect speed: 0.000000 real_pulses:0 +I (258624) example: new speed:399.000000 +I (258634) example: expect speed: 0.000000 real_pulses:0 +I (258634) example: new speed:399.000000 +I (258644) example: expect speed: 0.000000 real_pulses:0 +I (258644) example: new speed:399.000000 +I (258654) example: expect speed: 0.000000 real_pulses:0 +I (258654) example: new speed:399.000000 +I (258664) example: expect speed: 0.000000 real_pulses:0 +I (258674) example: new speed:399.000000 +I (258674) example: expect speed: 0.000000 real_pulses:0 +I (258674) example: new speed:399.000000 +I (258684) example: expect speed: 0.000000 real_pulses:0 +I (258684) example: new speed:399.000000 +I (258694) example: expect speed: 0.000000 real_pulses:0 +I (258694) example: new speed:399.000000 +I (258704) example: expect speed: 0.000000 real_pulses:0 +I (258704) example: new speed:399.000000 +I (258714) example: expect speed: 0.000000 real_pulses:0 +I (258724) example: new speed:399.000000 +I (258724) example: expect speed: 0.000000 real_pulses:0 +I (258724) example: new speed:399.000000 +I (258734) example: expect speed: 0.000000 real_pulses:0 +I (258734) example: new speed:399.000000 +I (258744) example: expect speed: 0.000000 real_pulses:0 +I (258744) example: new speed:399.000000 +I (258754) example: expect speed: 0.000000 real_pulses:0 +I (258754) example: new speed:399.000000 +I (258764) example: expect speed: 0.000000 real_pulses:0 +I (258764) example: new speed:399.000000 +I (258774) example: expect speed: 0.000000 real_pulses:0 +I (258774) example: new speed:399.000000 +I (258784) example: expect speed: 0.000000 real_pulses:0 +I (258784) example: new speed:399.000000 +I (258794) example: expect speed: 0.000000 real_pulses:0 +I (258794) example: new speed:399.000000 +I (258804) example: expect speed: 0.000000 real_pulses:0 +I (258804) example: new speed:399.000000 +I (258814) example: expect speed: 0.000000 real_pulses:0 +I (258814) example: new speed:399.000000 +I (258824) example: expect speed: 0.000000 real_pulses:0 +I (258824) example: new speed:399.000000 +I (258834) example: expect speed: 0.000000 real_pulses:0 +I (258834) example: new speed:399.000000 +I (258844) example: expect speed: 0.000000 real_pulses:0 +I (258844) example: new speed:399.000000 +I (258854) example: expect speed: 0.000000 real_pulses:0 +I (258854) example: new speed:399.000000 +I (258864) example: expect speed: 0.000000 real_pulses:0 +I (258864) example: new speed:399.000000 +I (258874) example: expect speed: 0.000000 real_pulses:0 +I (258874) example: new speed:399.000000 +I (258884) example: expect speed: 0.000000 real_pulses:0 +I (258884) example: new speed:399.000000 +I (258894) example: expect speed: 0.000000 real_pulses:0 +I (258894) example: new speed:399.000000 +I (258904) example: expect speed: 0.000000 real_pulses:0 +I (258904) example: new speed:399.000000 +I (258914) example: expect speed: 0.000000 real_pulses:0 +I (258924) example: new speed:399.000000 +I (258924) example: expect speed: 0.000000 real_pulses:0 +I (258924) example: new speed:399.000000 +I (258934) example: expect speed: 0.000000 real_pulses:0 +I (258934) example: new speed:399.000000 +I (258944) example: expect speed: 0.000000 real_pulses:0 +I (258944) example: new speed:399.000000 +I (258954) example: expect speed: 0.000000 real_pulses:0 +I (258954) example: new speed:399.000000 +I (258964) example: expect speed: 0.000000 real_pulses:0 +I (258964) example: new speed:399.000000 +I (258974) example: expect speed: 0.000000 real_pulses:0 +I (258974) example: new speed:399.000000 +I (258984) example: expect speed: 0.000000 real_pulses:0 +I (258984) example: new speed:399.000000 +I (258994) example: expect speed: 0.000000 real_pulses:0 +I (258994) example: new speed:399.000000 +I (259004) example: expect speed: 0.000000 real_pulses:0 +I (259004) example: new speed:399.000000 +I (259014) example: expect speed: 0.000000 real_pulses:0 +I (259014) example: new speed:399.000000 +I (259024) example: expect speed: 0.000000 real_pulses:0 +I (259024) example: new speed:399.000000 +I (259034) example: expect speed: 0.000000 real_pulses:0 +I (259034) example: new speed:399.000000 +I (259044) example: expect speed: 0.000000 real_pulses:0 +I (259044) example: new speed:399.000000 +I (259054) example: expect speed: 0.000000 real_pulses:0 +I (259054) example: new speed:399.000000 +I (259064) example: expect speed: 0.000000 real_pulses:0 +I (259064) example: new speed:399.000000 +I (259074) example: expect speed: 0.000000 real_pulses:0 +I (259074) example: new speed:399.000000 +I (259084) example: expect speed: 0.000000 real_pulses:0 +I (259084) example: new speed:399.000000 +I (259094) example: expect speed: 0.000000 real_pulses:0 +I (259094) example: new speed:399.000000 +I (259104) example: expect speed: 0.000000 real_pulses:0 +I (259104) example: new speed:399.000000 +I (259114) example: expect speed: 0.000000 real_pulses:0 +I (259114) example: new speed:399.000000 +I (259124) example: expect speed: 0.000000 real_pulses:0 +I (259124) example: new speed:399.000000 +I (259134) example: expect speed: 0.000000 real_pulses:0 +I (259134) example: new speed:399.000000 +I (259144) example: expect speed: 0.000000 real_pulses:0 +I (259144) example: new speed:399.000000 +I (259154) example: expect speed: 0.000000 real_pulses:0 +I (259154) example: new speed:399.000000 +I (259164) example: expect speed: 0.000000 real_pulses:0 +I (259164) example: new speed:399.000000 +I (259174) example: expect speed: 0.000000 real_pulses:0 +I (259174) example: new speed:399.000000 +I (259184) example: expect speed: 0.000000 real_pulses:0 +I (259184) example: new speed:399.000000 +I (259194) example: expect speed: 0.000000 real_pulses:0 +I (259194) example: new speed:399.000000 +I (259204) example: expect speed: 0.000000 real_pulses:0 +I (259204) example: new speed:399.000000 +I (259214) example: expect speed: 0.000000 real_pulses:0 +I (259214) example: new speed:399.000000 +I (259224) example: expect speed: 0.000000 real_pulses:0 +I (259224) example: new speed:399.000000 +I (259234) example: expect speed: 0.000000 real_pulses:0 +I (259234) example: new speed:399.000000 +I (259244) example: expect speed: 0.000000 real_pulses:0 +I (259244) example: new speed:399.000000 +I (259254) example: expect speed: 0.000000 real_pulses:0 +I (259254) example: new speed:399.000000 +I (259264) example: expect speed: 0.000000 real_pulses:0 +I (259264) example: new speed:399.000000 +I (259274) example: expect speed: 0.000000 real_pulses:0 +I (259274) example: new speed:399.000000 +I (259284) example: expect speed: 0.000000 real_pulses:0 +I (259284) example: new speed:399.000000 +I (259294) example: expect speed: 0.000000 real_pulses:0 +I (259294) example: new speed:399.000000 +I (259304) example: expect speed: 0.000000 real_pulses:0 +I (259304) example: new speed:399.000000 +I (259314) example: expect speed: 0.000000 real_pulses:0 +I (259314) example: new speed:399.000000 +I (259324) example: expect speed: 0.000000 real_pulses:0 +I (259324) example: new speed:399.000000 +I (259334) example: expect speed: 0.000000 real_pulses:0 +I (259334) example: new speed:399.000000 +I (259344) example: expect speed: 0.000000 real_pulses:0 +I (259344) example: new speed:399.000000 +I (259354) example: expect speed: 0.000000 real_pulses:0 +I (259354) example: new speed:399.000000 +I (259364) example: expect speed: 0.000000 real_pulses:0 +I (259364) example: new speed:399.000000 +I (259374) example: expect speed: 0.000000 real_pulses:0 +I (259374) example: new speed:399.000000 +I (259384) example: expect speed: 0.000000 real_pulses:0 +I (259384) example: new speed:399.000000 +I (259394) example: expect speed: 0.000000 real_pulses:0 +I (259394) example: new speed:399.000000 +I (259404) example: expect speed: 0.000000 real_pulses:0 +I (259404) example: new speed:399.000000 +I (259414) example: expect speed: 0.000000 real_pulses:0 +I (259414) example: new speed:399.000000 +I (259424) example: expect speed: 0.000000 real_pulses:0 +I (259424) example: new speed:399.000000 +I (259434) example: expect speed: 0.000000 real_pulses:0 +I (259434) example: new speed:399.000000 +I (259444) example: expect speed: 0.000000 real_pulses:0 +I (259444) example: new speed:399.000000 +I (259454) example: expect speed: 0.000000 real_pulses:0 +I (259454) example: new speed:399.000000 +I (259464) example: expect speed: 0.000000 real_pulses:0 +I (259464) example: new speed:399.000000 +I (259474) example: expect speed: 0.000000 real_pulses:0 +I (259474) example: new speed:399.000000 +I (259484) example: expect speed: 0.000000 real_pulses:0 +I (259484) example: new speed:399.000000 +I (259494) example: expect speed: 0.000000 real_pulses:0 +I (259494) example: new speed:399.000000 +I (259504) example: expect speed: 0.000000 real_pulses:0 +I (259504) example: new speed:399.000000 +I (259514) example: expect speed: 0.000000 real_pulses:0 +I (259514) example: new speed:399.000000 +I (259524) example: expect speed: 0.000000 real_pulses:0 +I (259524) example: new speed:399.000000 +I (259534) example: expect speed: 0.000000 real_pulses:0 +I (259534) example: new speed:399.000000 +I (259544) example: expect speed: 0.000000 real_pulses:0 +I (259544) example: new speed:399.000000 +I (259554) example: expect speed: 0.000000 real_pulses:0 +I (259554) example: new speed:399.000000 +I (259564) example: expect speed: 0.000000 real_pulses:0 +I (259564) example: new speed:399.000000 +I (259574) example: expect speed: 0.000000 real_pulses:0 +I (259574) example: new speed:399.000000 +I (259584) example: expect speed: 0.000000 real_pulses:0 +I (259584) example: new speed:399.000000 +I (259594) example: expect speed: 0.000000 real_pulses:0 +I (259594) example: new speed:399.000000 +I (259604) example: expect speed: 0.000000 real_pulses:0 +I (259604) example: new speed:399.000000 +I (259614) example: expect speed: 0.000000 real_pulses:0 +I (259614) example: new speed:399.000000 +I (259624) example: expect speed: 0.000000 real_pulses:0 +I (259624) example: new speed:399.000000 +I (259634) modbus tcp: ModBusSlave_recv() +I (259634) example: expect speed: 0.000000 real_pulses:0 +I (259634) modbus: ModbusSlaveProcess() +I (259644) example: new speed:399.000000 +I (259644) modbus: check id... +I (259644) modbus: ok +I (259644) modbus: add: 0, length: 10 +I (259644) modbus: Read Holding Registers +I (259644) example: expect speed: 0.000000 real_pulses:0 +I (259654) example: new speed:399.000000 +I (259654) example: expect speed: 0.000000 real_pulses:0 +I (259654) example: new speed:399.000000 +I (259664) example: expect speed: 0.000000 real_pulses:0 +I (259664) example: new speed:399.000000 +I (259674) example: expect speed: 0.000000 real_pulses:0 +I (259674) example: new speed:399.000000 +I (259684) example: expect speed: 0.000000 real_pulses:0 +I (259684) example: new speed:399.000000 +I (259694) example: expect speed: 0.000000 real_pulses:0 +I (259694) example: new speed:399.000000 +I (259704) example: expect speed: 0.000000 real_pulses:0 +I (259714) example: new speed:399.000000 +I (259714) example: expect speed: 0.000000 real_pulses:0 +I (259714) example: new speed:399.000000 +I (259724) example: expect speed: 0.000000 real_pulses:0 +I (259724) example: new speed:399.000000 +I (259734) example: expect speed: 0.000000 real_pulses:0 +I (259734) example: new speed:399.000000 +I (259744) example: expect speed: 0.000000 real_pulses:0 +I (259744) example: new speed:399.000000 +I (259754) example: expect speed: 0.000000 real_pulses:0 +I (259764) example: new speed:399.000000 +I (259764) example: expect speed: 0.000000 real_pulses:0 +I (259764) example: new speed:399.000000 +I (259774) example: expect speed: 0.000000 real_pulses:0 +I (259774) example: new speed:399.000000 +I (259784) example: expect speed: 0.000000 real_pulses:0 +I (259784) example: new speed:399.000000 +I (259794) example: expect speed: 0.000000 real_pulses:0 +I (259794) example: new speed:399.000000 +I (259804) example: expect speed: 0.000000 real_pulses:0 +I (259804) example: new speed:399.000000 +I (259814) example: expect speed: 0.000000 real_pulses:0 +I (259814) example: new speed:399.000000 +I (259824) example: expect speed: 0.000000 real_pulses:0 +I (259824) example: new speed:399.000000 +I (259834) example: expect speed: 0.000000 real_pulses:0 +I (259834) example: new speed:399.000000 +I (259844) example: expect speed: 0.000000 real_pulses:0 +I (259844) example: new speed:399.000000 +I (259854) example: expect speed: 0.000000 real_pulses:0 +I (259854) example: new speed:399.000000 +I (259864) example: expect speed: 0.000000 real_pulses:0 +I (259864) example: new speed:399.000000 +I (259874) example: expect speed: 0.000000 real_pulses:0 +I (259874) example: new speed:399.000000 +I (259884) example: expect speed: 0.000000 real_pulses:0 +I (259884) example: new speed:399.000000 +I (259894) example: expect speed: 0.000000 real_pulses:0 +I (259894) example: new speed:399.000000 +I (259904) example: expect speed: 0.000000 real_pulses:0 +I (259904) example: new speed:399.000000 +I (259914) example: expect speed: 0.000000 real_pulses:0 +I (259914) example: new speed:399.000000 +I (259924) example: expect speed: 0.000000 real_pulses:0 +I (259924) example: new speed:399.000000 +I (259934) example: expect speed: 0.000000 real_pulses:0 +I (259944) example: new speed:399.000000 +I (259944) example: expect speed: 0.000000 real_pulses:0 +I (259944) example: new speed:399.000000 +I (259954) example: expect speed: 0.000000 real_pulses:0 +I (259954) example: new speed:399.000000 +I (259964) example: expect speed: 0.000000 real_pulses:0 +I (259964) example: new speed:399.000000 +I (259974) example: expect speed: 0.000000 real_pulses:0 +I (259974) example: new speed:399.000000 +I (259984) example: expect speed: 0.000000 real_pulses:0 +I (259984) example: new speed:399.000000 +I (259994) example: expect speed: 0.000000 real_pulses:0 +I (259994) example: new speed:399.000000 +I (260004) example: expect speed: 0.000000 real_pulses:0 +I (260004) example: new speed:399.000000 +I (260014) example: expect speed: 0.000000 real_pulses:0 +I (260014) example: new speed:399.000000 +I (260024) example: expect speed: 0.000000 real_pulses:0 +I (260024) example: new speed:399.000000 +I (260034) example: expect speed: 0.000000 real_pulses:0 +I (260034) example: new speed:399.000000 +I (260044) example: expect speed: 0.000000 real_pulses:0 +I (260044) example: new speed:399.000000 +I (260054) example: expect speed: 0.000000 real_pulses:0 +I (260054) example: new speed:399.000000 +I (260064) example: expect speed: 0.000000 real_pulses:0 +I (260064) example: new speed:399.000000 +I (260074) example: expect speed: 0.000000 real_pulses:0 +I (260074) example: new speed:399.000000 +I (260084) example: expect speed: 0.000000 real_pulses:0 +I (260084) example: new speed:399.000000 +I (260094) example: expect speed: 0.000000 real_pulses:0 +I (260094) example: new speed:399.000000 +I (260104) example: expect speed: 0.000000 real_pulses:0 +I (260104) example: new speed:399.000000 +I (260114) example: expect speed: 0.000000 real_pulses:0 +I (260114) example: new speed:399.000000 +I (260124) example: expect speed: 0.000000 real_pulses:0 +I (260124) example: new speed:399.000000 +I (260134) example: expect speed: 0.000000 real_pulses:0 +I (260134) example: new speed:399.000000 +I (260144) example: expect speed: 0.000000 real_pulses:0 +I (260144) example: new speed:399.000000 +I (260154) example: expect speed: 0.000000 real_pulses:0 +I (260154) example: new speed:399.000000 +I (260164) example: expect speed: 0.000000 real_pulses:0 +I (260164) example: new speed:399.000000 +I (260174) example: expect speed: 0.000000 real_pulses:0 +I (260174) example: new speed:399.000000 +I (260184) example: expect speed: 0.000000 real_pulses:0 +I (260184) example: new speed:399.000000 +I (260194) example: expect speed: 0.000000 real_pulses:0 +I (260194) example: new speed:399.000000 +I (260204) example: expect speed: 0.000000 real_pulses:0 +I (260204) example: new speed:399.000000 +I (260214) example: expect speed: 0.000000 real_pulses:0 +I (260214) example: new speed:399.000000 +I (260224) example: expect speed: 0.000000 real_pulses:0 +I (260224) example: new speed:399.000000 +I (260234) example: expect speed: 0.000000 real_pulses:0 +I (260234) example: new speed:399.000000 +I (260244) example: expect speed: 0.000000 real_pulses:0 +I (260244) example: new speed:399.000000 +I (260254) example: expect speed: 0.000000 real_pulses:0 +I (260254) example: new speed:399.000000 +I (260264) example: expect speed: 0.000000 real_pulses:0 +I (260264) example: new speed:399.000000 +I (260274) example: expect speed: 0.000000 real_pulses:0 +I (260274) example: new speed:399.000000 +I (260284) example: expect speed: 0.000000 real_pulses:0 +I (260284) example: new speed:399.000000 +I (260294) example: expect speed: 0.000000 real_pulses:0 +I (260294) example: new speed:399.000000 +I (260304) example: expect speed: 0.000000 real_pulses:0 +I (260304) example: new speed:399.000000 +I (260314) example: expect speed: 0.000000 real_pulses:0 +I (260314) example: new speed:399.000000 +I (260324) example: expect speed: 0.000000 real_pulses:0 +I (260324) example: new speed:399.000000 +I (260334) example: expect speed: 0.000000 real_pulses:0 +I (260334) example: new speed:399.000000 +I (260344) example: expect speed: 0.000000 real_pulses:0 +I (260344) example: new speed:399.000000 +I (260354) example: expect speed: 0.000000 real_pulses:0 +I (260354) example: new speed:399.000000 +I (260364) example: expect speed: 0.000000 real_pulses:0 +I (260364) example: new speed:399.000000 +I (260374) example: expect speed: 0.000000 real_pulses:0 +I (260374) example: new speed:399.000000 +I (260384) example: expect speed: 0.000000 real_pulses:0 +I (260384) example: new speed:399.000000 +I (260394) example: expect speed: 0.000000 real_pulses:0 +I (260394) example: new speed:399.000000 +I (260404) example: expect speed: 0.000000 real_pulses:0 +I (260404) example: new speed:399.000000 +I (260414) example: expect speed: 0.000000 real_pulses:0 +I (260414) example: new speed:399.000000 +I (260424) example: expect speed: 0.000000 real_pulses:0 +I (260424) example: new speed:399.000000 +I (260434) example: expect speed: 0.000000 real_pulses:0 +I (260434) example: new speed:399.000000 +I (260444) example: expect speed: 0.000000 real_pulses:0 +I (260444) example: new speed:399.000000 +I (260454) example: expect speed: 0.000000 real_pulses:0 +I (260454) example: new speed:399.000000 +I (260464) example: expect speed: 0.000000 real_pulses:0 +I (260464) example: new speed:399.000000 +I (260474) example: expect speed: 0.000000 real_pulses:0 +I (260474) example: new speed:399.000000 +I (260484) example: expect speed: 0.000000 real_pulses:0 +I (260484) example: new speed:399.000000 +I (260494) example: expect speed: 0.000000 real_pulses:0 +I (260494) example: new speed:399.000000 +I (260504) example: expect speed: 0.000000 real_pulses:0 +I (260504) example: new speed:399.000000 +I (260514) example: expect speed: 0.000000 real_pulses:0 +I (260514) example: new speed:399.000000 +I (260524) example: expect speed: 0.000000 real_pulses:0 +I (260524) example: new speed:399.000000 +I (260534) example: expect speed: 0.000000 real_pulses:0 +I (260534) example: new speed:399.000000 +I (260544) example: expect speed: 0.000000 real_pulses:0 +I (260544) example: new speed:399.000000 +I (260554) example: expect speed: 0.000000 real_pulses:0 +I (260554) example: new speed:399.000000 +I (260564) example: expect speed: 0.000000 real_pulses:0 +I (260564) example: new speed:399.000000 +I (260574) example: expect speed: 0.000000 real_pulses:0 +I (260574) example: new speed:399.000000 +I (260584) example: expect speed: 0.000000 real_pulses:0 +I (260584) example: new speed:399.000000 +I (260594) example: expect speed: 0.000000 real_pulses:0 +I (260594) example: new speed:399.000000 +I (260604) example: expect speed: 0.000000 real_pulses:0 +I (260604) example: new speed:399.000000 +I (260614) example: expect speed: 0.000000 real_pulses:0 +I (260614) example: new speed:399.000000 +I (260624) example: expect speed: 0.000000 real_pulses:0 +I (260624) example: new speed:399.000000 +I (260634) example: expect speed: 0.000000 real_pulses:0 +I (260634) example: new speed:399.000000 +I (260644) example: expect speed: 0.000000 real_pulses:0 +I (260644) example: new speed:399.000000 +I (260654) example: expect speed: 0.000000 real_pulses:0 +I (260664) example: new speed:399.000000 +I (260664) modbus tcp: ModBusSlave_recv() +I (260664) modbus: ModbusSlaveProcess() +I (260664) modbus: check id... +I (260664) modbus: ok +I (260664) modbus: add: 0, length: 10 +I (260664) modbus: Read Holding Registers +I (260664) example: expect speed: 0.000000 real_pulses:0 +I (260674) example: new speed:399.000000 +I (260674) example: expect speed: 0.000000 real_pulses:0 +I (260674) example: new speed:399.000000 +I (260684) example: expect speed: 0.000000 real_pulses:0 +I (260684) example: new speed:399.000000 +I (260694) example: expect speed: 0.000000 real_pulses:0 +I (260694) example: new speed:399.000000 +I (260704) example: expect speed: 0.000000 real_pulses:0 +I (260704) example: new speed:399.000000 +I (260714) example: expect speed: 0.000000 real_pulses:0 +I (260724) example: new speed:399.000000 +I (260724) example: expect speed: 0.000000 real_pulses:0 +I (260724) example: new speed:399.000000 +I (260734) example: expect speed: 0.000000 real_pulses:0 +I (260734) example: new speed:399.000000 +I (260744) example: expect speed: 0.000000 real_pulses:0 +I (260744) example: new speed:399.000000 +I (260754) example: expect speed: 0.000000 real_pulses:0 +I (260754) example: new speed:399.000000 +I (260764) example: expect speed: 0.000000 real_pulses:0 +I (260764) example: new speed:399.000000 +I (260774) example: expect speed: 0.000000 real_pulses:0 +I (260774) example: new speed:399.000000 +I (260784) example: expect speed: 0.000000 real_pulses:0 +I (260784) example: new speed:399.000000 +I (260794) example: expect speed: 0.000000 real_pulses:0 +I (260794) example: new speed:399.000000 +I (260804) example: expect speed: 0.000000 real_pulses:0 +I (260804) example: new speed:399.000000 +I (260814) example: expect speed: 0.000000 real_pulses:0 +I (260814) example: new speed:399.000000 +I (260824) example: expect speed: 0.000000 real_pulses:0 +I (260824) example: new speed:399.000000 +I (260834) example: expect speed: 0.000000 real_pulses:0 +I (260834) example: new speed:399.000000 +I (260844) example: expect speed: 0.000000 real_pulses:0 +I (260844) example: new speed:399.000000 +I (260854) example: expect speed: 0.000000 real_pulses:0 +I (260854) example: new speed:399.000000 +I (260864) example: expect speed: 0.000000 real_pulses:0 +I (260874) example: new speed:399.000000 +I (260874) example: expect speed: 0.000000 real_pulses:0 +I (260874) example: new speed:399.000000 +I (260884) example: expect speed: 0.000000 real_pulses:0 +I (260884) example: new speed:399.000000 +I (260894) example: expect speed: 0.000000 real_pulses:0 +I (260894) example: new speed:399.000000 +I (260904) example: expect speed: 0.000000 real_pulses:0 +I (260904) example: new speed:399.000000 +I (260914) example: expect speed: 0.000000 real_pulses:0 +I (260914) example: new speed:399.000000 +I (260924) example: expect speed: 0.000000 real_pulses:0 +I (260924) example: new speed:399.000000 +I (260934) example: expect speed: 0.000000 real_pulses:0 +I (260934) example: new speed:399.000000 +I (260944) example: expect speed: 0.000000 real_pulses:0 +I (260944) example: new speed:399.000000 +I (260954) example: expect speed: 0.000000 real_pulses:0 +I (260954) example: new speed:399.000000 +I (260964) example: expect speed: 0.000000 real_pulses:0 +I (260964) example: new speed:399.000000 +I (260974) example: expect speed: 0.000000 real_pulses:0 +I (260974) example: new speed:399.000000 +I (260984) example: expect speed: 0.000000 real_pulses:0 +I (260984) example: new speed:399.000000 +I (260994) example: expect speed: 0.000000 real_pulses:0 +I (260994) example: new speed:399.000000 +I (261004) example: expect speed: 0.000000 real_pulses:0 +I (261004) example: new speed:399.000000 +I (261014) example: expect speed: 0.000000 real_pulses:0 +I (261014) example: new speed:399.000000 +I (261024) example: expect speed: 0.000000 real_pulses:0 +I (261024) example: new speed:399.000000 +I (261034) example: expect speed: 0.000000 real_pulses:0 +I (261034) example: new speed:399.000000 +I (261044) example: expect speed: 0.000000 real_pulses:0 +I (261044) example: new speed:399.000000 +I (261054) example: expect speed: 0.000000 real_pulses:0 +I (261054) example: new speed:399.000000 +I (261064) example: expect speed: 0.000000 real_pulses:0 +I (261064) example: new speed:399.000000 +I (261074) example: expect speed: 0.000000 real_pulses:0 +I (261074) example: new speed:399.000000 +I (261084) example: expect speed: 0.000000 real_pulses:0 +I (261084) example: new speed:399.000000 +I (261094) example: expect speed: 0.000000 real_pulses:0 +I (261094) example: new speed:399.000000 +I (261104) example: expect speed: 0.000000 real_pulses:0 +I (261104) example: new speed:399.000000 +I (261114) example: expect speed: 0.000000 real_pulses:0 +I (261114) example: new speed:399.000000 +I (261124) example: expect speed: 0.000000 real_pulses:0 +I (261124) example: new speed:399.000000 +I (261134) example: expect speed: 0.000000 real_pulses:0 +I (261134) example: new speed:399.000000 +I (261144) example: expect speed: 0.000000 real_pulses:0 +I (261144) example: new speed:399.000000 +I (261154) example: expect speed: 0.000000 real_pulses:0 +I (261154) example: new speed:399.000000 +I (261164) example: expect speed: 0.000000 real_pulses:0 +I (261164) example: new speed:399.000000 +I (261174) example: expect speed: 0.000000 real_pulses:0 +I (261174) example: new speed:399.000000 +I (261184) example: expect speed: 0.000000 real_pulses:0 +I (261184) example: new speed:399.000000 +I (261194) example: expect speed: 0.000000 real_pulses:0 +I (261194) example: new speed:399.000000 +I (261204) example: expect speed: 0.000000 real_pulses:0 +I (261204) example: new speed:399.000000 +I (261214) example: expect speed: 0.000000 real_pulses:0 +I (261214) example: new speed:399.000000 +I (261224) example: expect speed: 0.000000 real_pulses:0 +I (261224) example: new speed:399.000000 +I (261234) example: expect speed: 0.000000 real_pulses:0 +I (261234) example: new speed:399.000000 +I (261244) example: expect speed: 0.000000 real_pulses:0 +I (261244) example: new speed:399.000000 +I (261254) example: expect speed: 0.000000 real_pulses:0 +I (261254) example: new speed:399.000000 +I (261264) example: expect speed: 0.000000 real_pulses:0 +I (261264) example: new speed:399.000000 +I (261274) example: expect speed: 0.000000 real_pulses:0 +I (261274) example: new speed:399.000000 +I (261284) example: expect speed: 0.000000 real_pulses:0 +I (261284) example: new speed:399.000000 +I (261294) example: expect speed: 0.000000 real_pulses:0 +I (261294) example: new speed:399.000000 +I (261304) example: expect speed: 0.000000 real_pulses:0 +I (261304) example: new speed:399.000000 +I (261314) example: expect speed: 0.000000 real_pulses:0 +I (261314) example: new speed:399.000000 +I (261324) example: expect speed: 0.000000 real_pulses:0 +I (261324) example: new speed:399.000000 +I (261334) example: expect speed: 0.000000 real_pulses:0 +I (261334) example: new speed:399.000000 +I (261344) example: expect speed: 0.000000 real_pulses:0 +I (261344) example: new speed:399.000000 +I (261354) example: expect speed: 0.000000 real_pulses:0 +I (261354) example: new speed:399.000000 +I (261364) example: expect speed: 0.000000 real_pulses:0 +I (261364) example: new speed:399.000000 +I (261374) example: expect speed: 0.000000 real_pulses:0 +I (261374) example: new speed:399.000000 +I (261384) example: expect speed: 0.000000 real_pulses:0 +I (261384) example: new speed:399.000000 +I (261394) example: expect speed: 0.000000 real_pulses:0 +I (261394) example: new speed:399.000000 +I (261404) example: expect speed: 0.000000 real_pulses:0 +I (261404) example: new speed:399.000000 +I (261414) example: expect speed: 0.000000 real_pulses:0 +I (261414) example: new speed:399.000000 +I (261424) example: expect speed: 0.000000 real_pulses:0 +I (261424) example: new speed:399.000000 +I (261434) example: expect speed: 0.000000 real_pulses:0 +I (261434) example: new speed:399.000000 +I (261444) example: expect speed: 0.000000 real_pulses:0 +I (261444) example: new speed:399.000000 +I (261454) example: expect speed: 0.000000 real_pulses:0 +I (261454) example: new speed:399.000000 +I (261464) example: expect speed: 0.000000 real_pulses:0 +I (261464) example: new speed:399.000000 +I (261474) example: expect speed: 0.000000 real_pulses:0 +I (261474) example: new speed:399.000000 +I (261484) example: expect speed: 0.000000 real_pulses:0 +I (261484) example: new speed:399.000000 +I (261494) example: expect speed: 0.000000 real_pulses:0 +I (261494) example: new speed:399.000000 +I (261504) example: expect speed: 0.000000 real_pulses:0 +I (261504) example: new speed:399.000000 +I (261514) example: expect speed: 0.000000 real_pulses:0 +I (261514) example: new speed:399.000000 +I (261524) example: expect speed: 0.000000 real_pulses:0 +I (261524) example: new speed:399.000000 +I (261534) example: expect speed: 0.000000 real_pulses:0 +I (261534) example: new speed:399.000000 +I (261544) example: expect speed: 0.000000 real_pulses:0 +I (261544) example: new speed:399.000000 +I (261554) example: expect speed: 0.000000 real_pulses:0 +I (261554) example: new speed:399.000000 +I (261564) example: expect speed: 0.000000 real_pulses:0 +I (261564) example: new speed:399.000000 +I (261574) example: expect speed: 0.000000 real_pulses:0 +I (261574) example: new speed:399.000000 +I (261584) example: expect speed: 0.000000 real_pulses:0 +I (261584) example: new speed:399.000000 +I (261594) example: expect speed: 0.000000 real_pulses:0 +I (261594) example: new speed:399.000000 +I (261604) example: expect speed: 0.000000 real_pulses:0 +I (261604) example: new speed:399.000000 +I (261614) example: expect speed: 0.000000 real_pulses:0 +I (261614) example: new speed:399.000000 +I (261624) example: expect speed: 0.000000 real_pulses:0 +I (261624) example: new speed:399.000000 +I (261634) example: expect speed: 0.000000 real_pulses:0 +I (261634) example: new speed:399.000000 +I (261644) example: expect speed: 0.000000 real_pulses:0 +I (261644) example: new speed:399.000000 +I (261654) example: expect speed: 0.000000 real_pulses:0 +I (261654) example: new speed:399.000000 +I (261664) example: expect speed: 0.000000 real_pulses:0 +I (261664) example: new speed:399.000000 +I (261674) example: expect speed: 0.000000 real_pulses:0 +I (261674) example: new speed:399.000000 +I (261684) modbus tcp: ModBusSlave_recv() +I (261684) modbus: ModbusSlaveProcess() +I (261684) modbus: check id... +I (261684) modbus: ok +I (261684) modbus: add: 0, length: 10 +I (261684) modbus: Read Holding Registers +I (261684) example: expect speed: 0.000000 real_pulses:0 +I (261694) example: new speed:399.000000 +I (261694) example: expect speed: 0.000000 real_pulses:0 +I (261694) example: new speed:399.000000 +I (261704) example: expect speed: 0.000000 real_pulses:0 +I (261704) example: new speed:399.000000 +I (261714) example: expect speed: 0.000000 real_pulses:0 +I (261714) example: new speed:399.000000 +I (261724) example: expect speed: 0.000000 real_pulses:0 +I (261724) example: new speed:399.000000 +I (261734) example: expect speed: 0.000000 real_pulses:0 +I (261734) example: new speed:399.000000 +I (261744) example: expect speed: 0.000000 real_pulses:0 +I (261754) example: new speed:399.000000 +I (261754) example: expect speed: 0.000000 real_pulses:0 +I (261754) example: new speed:399.000000 +I (261764) example: expect speed: 0.000000 real_pulses:0 +I (261764) example: new speed:399.000000 +I (261774) example: expect speed: 0.000000 real_pulses:0 +I (261774) example: new speed:399.000000 +I (261784) example: expect speed: 0.000000 real_pulses:0 +I (261794) example: new speed:399.000000 +I (261794) example: expect speed: 0.000000 real_pulses:0 +I (261794) example: new speed:399.000000 +I (261804) example: expect speed: 0.000000 real_pulses:0 +I (261804) example: new speed:399.000000 +I (261814) example: expect speed: 0.000000 real_pulses:0 +I (261814) example: new speed:399.000000 +I (261824) example: expect speed: 0.000000 real_pulses:0 +I (261824) example: new speed:399.000000 +I (261834) example: expect speed: 0.000000 real_pulses:0 +I (261844) example: new speed:399.000000 +I (261844) example: expect speed: 0.000000 real_pulses:0 +I (261844) example: new speed:399.000000 +I (261854) example: expect speed: 0.000000 real_pulses:0 +I (261854) example: new speed:399.000000 +I (261864) example: expect speed: 0.000000 real_pulses:0 +I (261864) example: new speed:399.000000 +I (261874) example: expect speed: 0.000000 real_pulses:0 +I (261874) example: new speed:399.000000 +I (261884) example: expect speed: 0.000000 real_pulses:0 +I (261894) example: new speed:399.000000 +I (261894) example: expect speed: 0.000000 real_pulses:0 +I (261894) example: new speed:399.000000 +I (261904) example: expect speed: 0.000000 real_pulses:0 +I (261904) example: new speed:399.000000 +I (261914) example: expect speed: 0.000000 real_pulses:0 +I (261914) example: new speed:399.000000 +I (261924) example: expect speed: 0.000000 real_pulses:0 +I (261924) example: new speed:399.000000 +I (261934) example: expect speed: 0.000000 real_pulses:0 +I (261934) example: new speed:399.000000 +I (261944) example: expect speed: 0.000000 real_pulses:0 +I (261944) example: new speed:399.000000 +I (261954) example: expect speed: 0.000000 real_pulses:0 +I (261954) example: new speed:399.000000 +I (261964) example: expect speed: 0.000000 real_pulses:0 +I (261964) example: new speed:399.000000 +I (261974) example: expect speed: 0.000000 real_pulses:0 +I (261974) example: new speed:399.000000 +I (261984) example: expect speed: 0.000000 real_pulses:0 +I (261984) example: new speed:399.000000 +I (261994) example: expect speed: 0.000000 real_pulses:0 +I (261994) example: new speed:399.000000 +I (262004) example: expect speed: 0.000000 real_pulses:0 +I (262004) example: new speed:399.000000 +I (262014) example: expect speed: 0.000000 real_pulses:0 +I (262014) example: new speed:399.000000 +I (262024) example: expect speed: 0.000000 real_pulses:0 +I (262024) example: new speed:399.000000 +I (262034) example: expect speed: 0.000000 real_pulses:0 +I (262034) example: new speed:399.000000 +I (262044) example: expect speed: 0.000000 real_pulses:0 +I (262044) example: new speed:399.000000 +I (262054) example: expect speed: 0.000000 real_pulses:0 +I (262054) example: new speed:399.000000 +I (262064) example: expect speed: 0.000000 real_pulses:0 +I (262064) example: new speed:399.000000 +I (262074) example: expect speed: 0.000000 real_pulses:0 +I (262074) example: new speed:399.000000 +I (262084) example: expect speed: 0.000000 real_pulses:0 +I (262084) example: new speed:399.000000 +I (262094) example: expect speed: 0.000000 real_pulses:0 +I (262094) example: new speed:399.000000 +I (262104) example: expect speed: 0.000000 real_pulses:0 +I (262104) example: new speed:399.000000 +I (262114) example: expect speed: 0.000000 real_pulses:0 +I (262114) example: new speed:399.000000 +I (262124) example: expect speed: 0.000000 real_pulses:0 +I (262124) example: new speed:399.000000 +I (262134) example: expect speed: 0.000000 real_pulses:0 +I (262134) example: new speed:399.000000 +I (262144) example: expect speed: 0.000000 real_pulses:0 +I (262144) example: new speed:399.000000 +I (262154) example: expect speed: 0.000000 real_pulses:0 +I (262154) example: new speed:399.000000 +I (262164) example: expect speed: 0.000000 real_pulses:0 +I (262164) example: new speed:399.000000 +I (262174) example: expect speed: 0.000000 real_pulses:0 +I (262174) example: new speed:399.000000 +I (262184) example: expect speed: 0.000000 real_pulses:0 +I (262184) example: new speed:399.000000 +I (262194) example: expect speed: 0.000000 real_pulses:0 +I (262194) example: new speed:399.000000 +I (262204) example: expect speed: 0.000000 real_pulses:0 +I (262204) example: new speed:399.000000 +I (262214) example: expect speed: 0.000000 real_pulses:0 +I (262214) example: new speed:399.000000 +I (262224) example: expect speed: 0.000000 real_pulses:0 +I (262224) example: new speed:399.000000 +I (262234) example: expect speed: 0.000000 real_pulses:0 +I (262234) example: new speed:399.000000 +I (262244) example: expect speed: 0.000000 real_pulses:0 +I (262244) example: new speed:399.000000 +I (262254) example: expect speed: 0.000000 real_pulses:0 +I (262254) example: new speed:399.000000 +I (262264) example: expect speed: 0.000000 real_pulses:0 +I (262264) example: new speed:399.000000 +I (262274) example: expect speed: 0.000000 real_pulses:0 +I (262274) example: new speed:399.000000 +I (262284) example: expect speed: 0.000000 real_pulses:0 +I (262284) example: new speed:399.000000 +I (262294) example: expect speed: 0.000000 real_pulses:0 +I (262294) example: new speed:399.000000 +I (262304) example: expect speed: 0.000000 real_pulses:0 +I (262304) example: new speed:399.000000 +I (262314) example: expect speed: 0.000000 real_pulses:0 +I (262314) example: new speed:399.000000 +I (262324) example: expect speed: 0.000000 real_pulses:0 +I (262324) example: new speed:399.000000 +I (262334) example: expect speed: 0.000000 real_pulses:0 +I (262334) example: new speed:399.000000 +I (262344) example: expect speed: 0.000000 real_pulses:0 +I (262344) example: new speed:399.000000 +I (262354) example: expect speed: 0.000000 real_pulses:0 +I (262354) example: new speed:399.000000 +I (262364) example: expect speed: 0.000000 real_pulses:0 +I (262364) example: new speed:399.000000 +I (262374) example: expect speed: 0.000000 real_pulses:0 +I (262374) example: new speed:399.000000 +I (262384) example: expect speed: 0.000000 real_pulses:0 +I (262384) example: new speed:399.000000 +I (262394) example: expect speed: 0.000000 real_pulses:0 +I (262404) example: new speed:399.000000 +I (262404) example: expect speed: 0.000000 real_pulses:0 +I (262404) example: new speed:399.000000 +I (262414) example: expect speed: 0.000000 real_pulses:0 +I (262414) example: new speed:399.000000 +I (262424) example: expect speed: 0.000000 real_pulses:0 +I (262424) example: new speed:399.000000 +I (262434) example: expect speed: 0.000000 real_pulses:0 +I (262434) example: new speed:399.000000 +I (262444) example: expect speed: 0.000000 real_pulses:0 +I (262444) example: new speed:399.000000 +I (262454) example: expect speed: 0.000000 real_pulses:0 +I (262454) example: new speed:399.000000 +I (262464) example: expect speed: 0.000000 real_pulses:0 +I (262464) example: new speed:399.000000 +I (262474) example: expect speed: 0.000000 real_pulses:0 +I (262474) example: new speed:399.000000 +I (262484) example: expect speed: 0.000000 real_pulses:0 +I (262484) example: new speed:399.000000 +I (262494) example: expect speed: 0.000000 real_pulses:0 +I (262494) example: new speed:399.000000 +I (262504) example: expect speed: 0.000000 real_pulses:0 +I (262504) example: new speed:399.000000 +I (262514) example: expect speed: 0.000000 real_pulses:0 +I (262514) example: new speed:399.000000 +I (262524) example: expect speed: 0.000000 real_pulses:0 +I (262524) example: new speed:399.000000 +I (262534) example: expect speed: 0.000000 real_pulses:0 +I (262534) example: new speed:399.000000 +I (262544) example: expect speed: 0.000000 real_pulses:0 +I (262544) example: new speed:399.000000 +I (262554) example: expect speed: 0.000000 real_pulses:0 +I (262554) example: new speed:399.000000 +I (262564) example: expect speed: 0.000000 real_pulses:0 +I (262564) example: new speed:399.000000 +I (262574) example: expect speed: 0.000000 real_pulses:0 +I (262574) example: new speed:399.000000 +I (262584) example: expect speed: 0.000000 real_pulses:0 +I (262584) example: new speed:399.000000 +I (262594) example: expect speed: 0.000000 real_pulses:0 +I (262594) example: new speed:399.000000 +I (262604) example: expect speed: 0.000000 real_pulses:0 +I (262614) example: new speed:399.000000 +I (262614) example: expect speed: 0.000000 real_pulses:0 +I (262614) example: new speed:399.000000 +I (262624) example: expect speed: 0.000000 real_pulses:0 +I (262624) example: new speed:399.000000 +I (262634) example: expect speed: 0.000000 real_pulses:0 +I (262634) example: new speed:399.000000 +I (262644) example: expect speed: 0.000000 real_pulses:0 +I (262644) example: new speed:399.000000 +I (262654) example: expect speed: 0.000000 real_pulses:0 +I (262654) example: new speed:399.000000 +I (262664) example: expect speed: 0.000000 real_pulses:0 +I (262664) example: new speed:399.000000 +I (262674) example: expect speed: 0.000000 real_pulses:0 +I (262674) example: new speed:399.000000 +I (262684) example: expect speed: 0.000000 real_pulses:0 +I (262684) example: new speed:399.000000 +I (262694) example: expect speed: 0.000000 real_pulses:0 +I (262694) example: new speed:399.000000 +I (262704) example: expect speed: 0.000000 real_pulses:0 +I (262714) modbus tcp: ModBusSlave_recv() +I (262714) example: new speed:399.000000 +I (262714) modbus: ModbusSlaveProcess() +I (262714) modbus: check id... +I (262714) modbus: ok +I (262714) modbus: add: 0, length: 10 +I (262714) modbus: Read Holding Registers +I (262714) example: expect speed: 0.000000 real_pulses:0 +I (262724) example: new speed:399.000000 +I (262724) example: expect speed: 0.000000 real_pulses:0 +I (262724) example: new speed:399.000000 +I (262734) example: expect speed: 0.000000 real_pulses:0 +I (262734) example: new speed:399.000000 +I (262744) example: expect speed: 0.000000 real_pulses:0 +I (262744) example: new speed:399.000000 +I (262754) example: expect speed: 0.000000 real_pulses:0 +I (262754) example: new speed:399.000000 +I (262764) example: expect speed: 0.000000 real_pulses:0 +I (262774) example: new speed:399.000000 +I (262774) example: expect speed: 0.000000 real_pulses:0 +I (262774) example: new speed:399.000000 +I (262784) example: expect speed: 0.000000 real_pulses:0 +I (262784) example: new speed:399.000000 +I (262794) example: expect speed: 0.000000 real_pulses:0 +I (262794) example: new speed:399.000000 +I (262804) example: expect speed: 0.000000 real_pulses:0 +I (262804) example: new speed:399.000000 +I (262814) example: expect speed: 0.000000 real_pulses:0 +I (262824) example: new speed:399.000000 +I (262824) example: expect speed: 0.000000 real_pulses:0 +I (262824) example: new speed:399.000000 +I (262834) example: expect speed: 0.000000 real_pulses:0 +I (262834) example: new speed:399.000000 +I (262844) example: expect speed: 0.000000 real_pulses:0 +I (262844) example: new speed:399.000000 +I (262854) example: expect speed: 0.000000 real_pulses:0 +I (262854) example: new speed:399.000000 +I (262864) example: expect speed: 0.000000 real_pulses:0 +I (262864) example: new speed:399.000000 +I (262874) example: expect speed: 0.000000 real_pulses:0 +I (262874) example: new speed:399.000000 +I (262884) example: expect speed: 0.000000 real_pulses:0 +I (262884) example: new speed:399.000000 +I (262894) example: expect speed: 0.000000 real_pulses:0 +I (262894) example: new speed:399.000000 +I (262904) example: expect speed: 0.000000 real_pulses:0 +I (262904) example: new speed:399.000000 +I (262914) example: expect speed: 0.000000 real_pulses:0 +I (262914) example: new speed:399.000000 +I (262924) example: expect speed: 0.000000 real_pulses:0 +I (262924) example: new speed:399.000000 +I (262934) example: expect speed: 0.000000 real_pulses:0 +I (262934) example: new speed:399.000000 +I (262944) example: expect speed: 0.000000 real_pulses:0 +I (262944) example: new speed:399.000000 +I (262954) example: expect speed: 0.000000 real_pulses:0 +I (262954) example: new speed:399.000000 +I (262964) example: expect speed: 0.000000 real_pulses:0 +I (262964) example: new speed:399.000000 +I (262974) example: expect speed: 0.000000 real_pulses:0 +I (262974) example: new speed:399.000000 +I (262984) example: expect speed: 0.000000 real_pulses:0 +I (262984) example: new speed:399.000000 +I (262994) example: expect speed: 0.000000 real_pulses:0 +I (262994) example: new speed:399.000000 +I (263004) example: expect speed: 0.000000 real_pulses:0 +I (263004) example: new speed:399.000000 +I (263014) example: expect speed: 0.000000 real_pulses:0 +I (263024) example: new speed:399.000000 +I (263024) example: expect speed: 0.000000 real_pulses:0 +I (263024) example: new speed:399.000000 +I (263034) example: expect speed: 0.000000 real_pulses:0 +I (263034) example: new speed:399.000000 +I (263044) example: expect speed: 0.000000 real_pulses:0 +I (263044) example: new speed:399.000000 +I (263054) example: expect speed: 0.000000 real_pulses:0 +I (263054) example: new speed:399.000000 +I (263064) example: expect speed: 0.000000 real_pulses:0 +I (263064) example: new speed:399.000000 +I (263074) example: expect speed: 0.000000 real_pulses:0 +I (263074) example: new speed:399.000000 +I (263084) example: expect speed: 0.000000 real_pulses:0 +I (263084) example: new speed:399.000000 +I (263094) example: expect speed: 0.000000 real_pulses:0 +I (263094) example: new speed:399.000000 +I (263104) example: expect speed: 0.000000 real_pulses:0 +I (263104) example: new speed:399.000000 +I (263114) example: expect speed: 0.000000 real_pulses:0 +I (263114) example: new speed:399.000000 +I (263124) example: expect speed: 0.000000 real_pulses:0 +I (263124) example: new speed:399.000000 +I (263134) example: expect speed: 0.000000 real_pulses:0 +I (263134) example: new speed:399.000000 +I (263144) example: expect speed: 0.000000 real_pulses:0 +I (263144) example: new speed:399.000000 +I (263154) example: expect speed: 0.000000 real_pulses:0 +I (263154) example: new speed:399.000000 +I (263164) example: expect speed: 0.000000 real_pulses:0 +I (263164) example: new speed:399.000000 +I (263174) example: expect speed: 0.000000 real_pulses:0 +I (263174) example: new speed:399.000000 +I (263184) example: expect speed: 0.000000 real_pulses:0 +I (263184) example: new speed:399.000000 +I (263194) example: expect speed: 0.000000 real_pulses:0 +I (263194) example: new speed:399.000000 +I (263204) example: expect speed: 0.000000 real_pulses:0 +I (263204) example: new speed:399.000000 +I (263214) example: expect speed: 0.000000 real_pulses:0 +I (263224) example: new speed:399.000000 +I (263224) example: expect speed: 0.000000 real_pulses:0 +I (263234) example: new speed:399.000000 +I (263234) example: expect speed: 0.000000 real_pulses:0 +I (263234) example: new speed:399.000000 +I (263244) example: expect speed: 0.000000 real_pulses:0 +I (263244) example: new speed:399.000000 +I (263254) example: expect speed: 0.000000 real_pulses:0 +I (263254) example: new speed:399.000000 +I (263264) example: expect speed: 0.000000 real_pulses:0 +I (263264) example: new speed:399.000000 +I (263274) example: expect speed: 0.000000 real_pulses:0 +I (263274) example: new speed:399.000000 +I (263284) example: expect speed: 0.000000 real_pulses:0 +I (263284) example: new speed:399.000000 +I (263294) example: expect speed: 0.000000 real_pulses:0 +I (263294) example: new speed:399.000000 +I (263304) example: expect speed: 0.000000 real_pulses:0 +I (263304) example: new speed:399.000000 +I (263314) example: expect speed: 0.000000 real_pulses:0 +I (263314) example: new speed:399.000000 +I (263324) example: expect speed: 0.000000 real_pulses:0 +I (263324) example: new speed:399.000000 +I (263334) example: expect speed: 0.000000 real_pulses:0 +I (263334) example: new speed:399.000000 +I (263344) example: expect speed: 0.000000 real_pulses:0 +I (263344) example: new speed:399.000000 +I (263354) example: expect speed: 0.000000 real_pulses:0 +I (263354) example: new speed:399.000000 +I (263364) example: expect speed: 0.000000 real_pulses:0 +I (263364) example: new speed:399.000000 +I (263374) example: expect speed: 0.000000 real_pulses:0 +I (263374) example: new speed:399.000000 +I (263384) example: expect speed: 0.000000 real_pulses:0 +I (263384) example: new speed:399.000000 +I (263394) example: expect speed: 0.000000 real_pulses:0 +I (263394) example: new speed:399.000000 +I (263404) example: expect speed: 0.000000 real_pulses:0 +I (263404) example: new speed:399.000000 +I (263414) example: expect speed: 0.000000 real_pulses:0 +I (263414) example: new speed:399.000000 +I (263424) example: expect speed: 0.000000 real_pulses:0 +I (263434) example: new speed:399.000000 +I (263434) example: expect speed: 0.000000 real_pulses:0 +I (263434) example: new speed:399.000000 +I (263444) example: expect speed: 0.000000 real_pulses:0 +I (263444) example: new speed:399.000000 +I (263454) example: expect speed: 0.000000 real_pulses:0 +I (263454) example: new speed:399.000000 +I (263464) example: expect speed: 0.000000 real_pulses:0 +I (263464) example: new speed:399.000000 +I (263474) example: expect speed: 0.000000 real_pulses:0 +I (263474) example: new speed:399.000000 +I (263484) example: expect speed: 0.000000 real_pulses:0 +I (263484) example: new speed:399.000000 +I (263494) example: expect speed: 0.000000 real_pulses:0 +I (263494) example: new speed:399.000000 +I (263504) example: expect speed: 0.000000 real_pulses:0 +I (263504) example: new speed:399.000000 +I (263514) example: expect speed: 0.000000 real_pulses:0 +I (263514) example: new speed:399.000000 +I (263524) example: expect speed: 0.000000 real_pulses:0 +I (263524) example: new speed:399.000000 +I (263534) example: expect speed: 0.000000 real_pulses:0 +I (263534) example: new speed:399.000000 +I (263544) example: expect speed: 0.000000 real_pulses:0 +I (263544) example: new speed:399.000000 +I (263554) example: expect speed: 0.000000 real_pulses:0 +I (263554) example: new speed:399.000000 +I (263564) example: expect speed: 0.000000 real_pulses:0 +I (263564) example: new speed:399.000000 +I (263574) example: expect speed: 0.000000 real_pulses:0 +I (263574) example: new speed:399.000000 +I (263584) example: expect speed: 0.000000 real_pulses:0 +I (263584) example: new speed:399.000000 +I (263594) example: expect speed: 0.000000 real_pulses:0 +I (263594) example: new speed:399.000000 +I (263604) example: expect speed: 0.000000 real_pulses:0 +I (263604) example: new speed:399.000000 +I (263614) example: expect speed: 0.000000 real_pulses:0 +I (263624) example: new speed:399.000000 +I (263624) example: expect speed: 0.000000 real_pulses:0 +I (263634) example: new speed:399.000000 +I (263634) example: expect speed: 0.000000 real_pulses:0 +I (263634) example: new speed:399.000000 +I (263644) example: expect speed: 0.000000 real_pulses:0 +I (263644) example: new speed:399.000000 +I (263654) example: expect speed: 0.000000 real_pulses:0 +I (263654) example: new speed:399.000000 +I (263664) example: expect speed: 0.000000 real_pulses:0 +I (263664) example: new speed:399.000000 +I (263674) example: expect speed: 0.000000 real_pulses:0 +I (263674) example: new speed:399.000000 +I (263684) example: expect speed: 0.000000 real_pulses:0 +I (263684) example: new speed:399.000000 +I (263694) example: expect speed: 0.000000 real_pulses:0 +I (263694) example: new speed:399.000000 +I (263704) example: expect speed: 0.000000 real_pulses:0 +I (263704) example: new speed:399.000000 +I (263714) example: expect speed: 0.000000 real_pulses:0 +I (263714) example: new speed:399.000000 +I (263724) example: expect speed: 0.000000 real_pulses:0 +I (263734) example: new speed:399.000000 +I (263734) modbus tcp: ModBusSlave_recv() +I (263734) modbus: ModbusSlaveProcess() +I (263734) modbus: check id... +I (263734) modbus: ok +I (263734) modbus: add: 0, length: 10 +I (263734) modbus: Read Holding Registers +I (263734) example: expect speed: 0.000000 real_pulses:0 +I (263744) example: new speed:399.000000 +I (263744) example: expect speed: 0.000000 real_pulses:0 +I (263744) example: new speed:399.000000 +I (263754) example: expect speed: 0.000000 real_pulses:0 +I (263754) example: new speed:399.000000 +I (263764) example: expect speed: 0.000000 real_pulses:0 +I (263764) example: new speed:399.000000 +I (263774) example: expect speed: 0.000000 real_pulses:0 +I (263774) example: new speed:399.000000 +I (263784) example: expect speed: 0.000000 real_pulses:0 +I (263784) example: new speed:399.000000 +I (263794) example: expect speed: 0.000000 real_pulses:0 +I (263804) example: new speed:399.000000 +I (263804) example: expect speed: 0.000000 real_pulses:0 +I (263804) example: new speed:399.000000 +I (263814) example: expect speed: 0.000000 real_pulses:0 +I (263814) example: new speed:399.000000 +I (263824) example: expect speed: 0.000000 real_pulses:0 +I (263824) example: new speed:399.000000 +I (263834) example: expect speed: 0.000000 real_pulses:0 +I (263844) example: new speed:399.000000 +I (263844) example: expect speed: 0.000000 real_pulses:0 +I (263844) example: new speed:399.000000 +I (263854) example: expect speed: 0.000000 real_pulses:0 +I (263854) example: new speed:399.000000 +I (263864) example: expect speed: 0.000000 real_pulses:0 +I (263864) example: new speed:399.000000 +I (263874) example: expect speed: 0.000000 real_pulses:0 +I (263874) example: new speed:399.000000 +I (263884) example: expect speed: 0.000000 real_pulses:0 +I (263894) example: new speed:399.000000 +I (263894) example: expect speed: 0.000000 real_pulses:0 +I (263894) example: new speed:399.000000 +I (263904) example: expect speed: 0.000000 real_pulses:0 +I (263904) example: new speed:399.000000 +I (263914) example: expect speed: 0.000000 real_pulses:0 +I (263914) example: new speed:399.000000 +I (263924) example: expect speed: 0.000000 real_pulses:0 +I (263924) example: new speed:399.000000 +I (263934) example: expect speed: 0.000000 real_pulses:0 +I (263934) example: new speed:399.000000 +I (263944) example: expect speed: 0.000000 real_pulses:0 +I (263944) example: new speed:399.000000 +I (263954) example: expect speed: 0.000000 real_pulses:0 +I (263954) example: new speed:399.000000 +I (263964) example: expect speed: 0.000000 real_pulses:0 +I (263964) example: new speed:399.000000 +I (263974) example: expect speed: 0.000000 real_pulses:0 +I (263974) example: new speed:399.000000 +I (263984) example: expect speed: 0.000000 real_pulses:0 +I (263984) example: new speed:399.000000 +I (263994) example: expect speed: 0.000000 real_pulses:0 +I (263994) example: new speed:399.000000 +I (264004) example: expect speed: 0.000000 real_pulses:0 +I (264004) example: new speed:399.000000 +I (264014) example: expect speed: 0.000000 real_pulses:0 +I (264014) example: new speed:399.000000 +I (264024) example: expect speed: 0.000000 real_pulses:0 +I (264024) example: new speed:399.000000 +I (264034) example: expect speed: 0.000000 real_pulses:0 +I (264044) example: new speed:399.000000 +I (264044) example: expect speed: 0.000000 real_pulses:0 +I (264054) example: new speed:399.000000 +I (264054) example: expect speed: 0.000000 real_pulses:0 +I (264054) example: new speed:399.000000 +I (264064) example: expect speed: 0.000000 real_pulses:0 +I (264064) example: new speed:399.000000 +I (264074) example: expect speed: 0.000000 real_pulses:0 +I (264074) example: new speed:399.000000 +I (264084) example: expect speed: 0.000000 real_pulses:0 +I (264084) example: new speed:399.000000 +I (264094) example: expect speed: 0.000000 real_pulses:0 +I (264094) example: new speed:399.000000 +I (264104) example: expect speed: 0.000000 real_pulses:0 +I (264104) example: new speed:399.000000 +I (264114) example: expect speed: 0.000000 real_pulses:0 +I (264114) example: new speed:399.000000 +I (264124) example: expect speed: 0.000000 real_pulses:0 +I (264124) example: new speed:399.000000 +I (264134) example: expect speed: 0.000000 real_pulses:0 +I (264134) example: new speed:399.000000 +I (264144) example: expect speed: 0.000000 real_pulses:0 +I (264144) example: new speed:399.000000 +I (264154) example: expect speed: 0.000000 real_pulses:0 +I (264154) example: new speed:399.000000 +I (264164) example: expect speed: 0.000000 real_pulses:0 +I (264164) example: new speed:399.000000 +I (264174) example: expect speed: 0.000000 real_pulses:0 +I (264174) example: new speed:399.000000 +I (264184) example: expect speed: 0.000000 real_pulses:0 +I (264184) example: new speed:399.000000 +I (264194) example: expect speed: 0.000000 real_pulses:0 +I (264194) example: new speed:399.000000 +I (264204) example: expect speed: 0.000000 real_pulses:0 +I (264204) example: new speed:399.000000 +I (264214) example: expect speed: 0.000000 real_pulses:0 +I (264214) example: new speed:399.000000 +I (264224) example: expect speed: 0.000000 real_pulses:0 +I (264224) example: new speed:399.000000 +I (264234) example: expect speed: 0.000000 real_pulses:0 +I (264234) example: new speed:399.000000 +I (264244) example: expect speed: 0.000000 real_pulses:0 +I (264244) example: new speed:399.000000 +I (264254) example: expect speed: 0.000000 real_pulses:0 +I (264254) example: new speed:399.000000 +I (264264) example: expect speed: 0.000000 real_pulses:0 +I (264264) example: new speed:399.000000 +I (264274) example: expect speed: 0.000000 real_pulses:0 +I (264274) example: new speed:399.000000 +I (264284) example: expect speed: 0.000000 real_pulses:0 +I (264284) example: new speed:399.000000 +I (264294) example: expect speed: 0.000000 real_pulses:0 +I (264294) example: new speed:399.000000 +I (264304) example: expect speed: 0.000000 real_pulses:0 +I (264304) example: new speed:399.000000 +I (264314) example: expect speed: 0.000000 real_pulses:0 +I (264314) example: new speed:399.000000 +I (264324) example: expect speed: 0.000000 real_pulses:0 +I (264324) example: new speed:399.000000 +I (264334) example: expect speed: 0.000000 real_pulses:0 +I (264334) example: new speed:399.000000 +I (264344) example: expect speed: 0.000000 real_pulses:0 +I (264344) example: new speed:399.000000 +I (264354) example: expect speed: 0.000000 real_pulses:0 +I (264354) example: new speed:399.000000 +I (264364) example: expect speed: 0.000000 real_pulses:0 +I (264364) example: new speed:399.000000 +I (264374) example: expect speed: 0.000000 real_pulses:0 +I (264374) example: new speed:399.000000 +I (264384) example: expect speed: 0.000000 real_pulses:0 +I (264384) example: new speed:399.000000 +I (264394) example: expect speed: 0.000000 real_pulses:0 +I (264394) example: new speed:399.000000 +I (264404) example: expect speed: 0.000000 real_pulses:0 +I (264404) example: new speed:399.000000 +I (264414) example: expect speed: 0.000000 real_pulses:0 +I (264414) example: new speed:399.000000 +I (264424) example: expect speed: 0.000000 real_pulses:0 +I (264424) example: new speed:399.000000 +I (264434) example: expect speed: 0.000000 real_pulses:0 +I (264434) example: new speed:399.000000 +I (264444) example: expect speed: 0.000000 real_pulses:0 +I (264444) example: new speed:399.000000 +I (264454) example: expect speed: 0.000000 real_pulses:0 +I (264454) example: new speed:399.000000 +I (264464) example: expect speed: 0.000000 real_pulses:0 +I (264464) example: new speed:399.000000 +I (264474) example: expect speed: 0.000000 real_pulses:0 +I (264474) example: new speed:399.000000 +I (264484) example: expect speed: 0.000000 real_pulses:0 +I (264484) example: new speed:399.000000 +I (264494) example: expect speed: 0.000000 real_pulses:0 +I (264494) example: new speed:399.000000 +I (264504) example: expect speed: 0.000000 real_pulses:0 +I (264504) example: new speed:399.000000 +I (264514) example: expect speed: 0.000000 real_pulses:0 +I (264514) example: new speed:399.000000 +I (264524) example: expect speed: 0.000000 real_pulses:0 +I (264524) example: new speed:399.000000 +I (264534) example: expect speed: 0.000000 real_pulses:0 +I (264534) example: new speed:399.000000 +I (264544) example: expect speed: 0.000000 real_pulses:0 +I (264544) example: new speed:399.000000 +I (264554) example: expect speed: 0.000000 real_pulses:0 +I (264554) example: new speed:399.000000 +I (264564) example: expect speed: 0.000000 real_pulses:0 +I (264564) example: new speed:399.000000 +I (264574) example: expect speed: 0.000000 real_pulses:0 +I (264574) example: new speed:399.000000 +I (264584) example: expect speed: 0.000000 real_pulses:0 +I (264584) example: new speed:399.000000 +I (264594) example: expect speed: 0.000000 real_pulses:0 +I (264594) example: new speed:399.000000 +I (264604) example: expect speed: 0.000000 real_pulses:0 +I (264604) example: new speed:399.000000 +I (264614) example: expect speed: 0.000000 real_pulses:0 +I (264614) example: new speed:399.000000 +I (264624) example: expect speed: 0.000000 real_pulses:0 +I (264624) example: new speed:399.000000 +I (264634) example: expect speed: 0.000000 real_pulses:0 +I (264634) example: new speed:399.000000 +I (264644) example: expect speed: 0.000000 real_pulses:0 +I (264644) example: new speed:399.000000 +I (264654) example: expect speed: 0.000000 real_pulses:0 +I (264654) example: new speed:399.000000 +I (264664) example: expect speed: 0.000000 real_pulses:0 +I (264664) example: new speed:399.000000 +I (264674) example: expect speed: 0.000000 real_pulses:0 +I (264674) example: new speed:399.000000 +I (264684) example: expect speed: 0.000000 real_pulses:0 +I (264684) example: new speed:399.000000 +I (264694) example: expect speed: 0.000000 real_pulses:0 +I (264694) example: new speed:399.000000 +I (264704) example: expect speed: 0.000000 real_pulses:0 +I (264704) example: new speed:399.000000 +I (264714) example: expect speed: 0.000000 real_pulses:0 +I (264714) example: new speed:399.000000 +I (264724) example: expect speed: 0.000000 real_pulses:0 +I (264724) example: new speed:399.000000 +I (264734) example: expect speed: 0.000000 real_pulses:0 +I (264734) example: new speed:399.000000 +I (264744) example: expect speed: 0.000000 real_pulses:0 +I (264744) example: new speed:399.000000 +I (264754) modbus tcp: ModBusSlave_recv() +I (264754) example: expect speed: 0.000000 real_pulses:0 +I (264754) modbus: ModbusSlaveProcess() +I (264764) example: new speed:399.000000 +I (264764) modbus: check id... +I (264764) modbus: ok +I (264764) modbus: add: 0, length: 10 +I (264764) modbus: Read Holding Registers +I (264764) example: expect speed: 0.000000 real_pulses:0 +I (264774) example: new speed:399.000000 +I (264774) example: expect speed: 0.000000 real_pulses:0 +I (264774) example: new speed:399.000000 +I (264784) example: expect speed: 0.000000 real_pulses:0 +I (264784) example: new speed:399.000000 +I (264794) example: expect speed: 0.000000 real_pulses:0 +I (264794) example: new speed:399.000000 +I (264804) example: expect speed: 0.000000 real_pulses:0 +I (264804) example: new speed:399.000000 +I (264814) example: expect speed: 0.000000 real_pulses:0 +I (264824) example: new speed:399.000000 +I (264824) example: expect speed: 0.000000 real_pulses:0 +I (264824) example: new speed:399.000000 +I (264834) example: expect speed: 0.000000 real_pulses:0 +I (264834) example: new speed:399.000000 +I (264844) example: expect speed: 0.000000 real_pulses:0 +I (264844) example: new speed:399.000000 +I (264854) example: expect speed: 0.000000 real_pulses:0 +I (264854) example: new speed:399.000000 +I (264864) example: expect speed: 0.000000 real_pulses:0 +I (264874) example: new speed:399.000000 +I (264874) example: expect speed: 0.000000 real_pulses:0 +I (264874) example: new speed:399.000000 +I (264884) example: expect speed: 0.000000 real_pulses:0 +I (264884) example: new speed:399.000000 +I (264894) example: expect speed: 0.000000 real_pulses:0 +I (264894) example: new speed:399.000000 +I (264904) example: expect speed: 0.000000 real_pulses:0 +I (264904) example: new speed:399.000000 +I (264914) example: expect speed: 0.000000 real_pulses:0 +I (264914) example: new speed:399.000000 +I (264924) example: expect speed: 0.000000 real_pulses:0 +I (264924) example: new speed:399.000000 +I (264934) example: expect speed: 0.000000 real_pulses:0 +I (264934) example: new speed:399.000000 +I (264944) example: expect speed: 0.000000 real_pulses:0 +I (264944) example: new speed:399.000000 +I (264954) example: expect speed: 0.000000 real_pulses:0 +I (264954) example: new speed:399.000000 +I (264964) example: expect speed: 0.000000 real_pulses:0 +I (264964) example: new speed:399.000000 +I (264974) example: expect speed: 0.000000 real_pulses:0 +I (264974) example: new speed:399.000000 +I (264984) example: expect speed: 0.000000 real_pulses:0 +I (264984) example: new speed:399.000000 +I (264994) example: expect speed: 0.000000 real_pulses:0 +I (264994) example: new speed:399.000000 +I (265004) example: expect speed: 0.000000 real_pulses:0 +I (265004) example: new speed:399.000000 +I (265014) example: expect speed: 0.000000 real_pulses:0 +I (265014) example: new speed:399.000000 +I (265024) example: expect speed: 0.000000 real_pulses:0 +I (265024) example: new speed:399.000000 +I (265034) example: expect speed: 0.000000 real_pulses:0 +I (265034) example: new speed:399.000000 +I (265044) example: expect speed: 0.000000 real_pulses:0 +I (265044) example: new speed:399.000000 +I (265054) example: expect speed: 0.000000 real_pulses:0 +I (265054) example: new speed:399.000000 +I (265064) example: expect speed: 0.000000 real_pulses:0 +I (265064) example: new speed:399.000000 +I (265074) example: expect speed: 0.000000 real_pulses:0 +I (265074) example: new speed:399.000000 +I (265084) example: expect speed: 0.000000 real_pulses:0 +I (265084) example: new speed:399.000000 +I (265094) example: expect speed: 0.000000 real_pulses:0 +I (265094) example: new speed:399.000000 +I (265104) example: expect speed: 0.000000 real_pulses:0 +I (265104) example: new speed:399.000000 +I (265114) example: expect speed: 0.000000 real_pulses:0 +I (265114) example: new speed:399.000000 +I (265124) example: expect speed: 0.000000 real_pulses:0 +I (265124) example: new speed:399.000000 +I (265134) example: expect speed: 0.000000 real_pulses:0 +I (265134) example: new speed:399.000000 +I (265144) example: expect speed: 0.000000 real_pulses:0 +I (265144) example: new speed:399.000000 +I (265154) example: expect speed: 0.000000 real_pulses:0 +I (265154) example: new speed:399.000000 +I (265164) example: expect speed: 0.000000 real_pulses:0 +I (265164) example: new speed:399.000000 +I (265174) example: expect speed: 0.000000 real_pulses:0 +I (265174) example: new speed:399.000000 +I (265184) example: expect speed: 0.000000 real_pulses:0 +I (265184) example: new speed:399.000000 +I (265194) example: expect speed: 0.000000 real_pulses:0 +I (265194) example: new speed:399.000000 +I (265204) example: expect speed: 0.000000 real_pulses:0 +I (265204) example: new speed:399.000000 +I (265214) example: expect speed: 0.000000 real_pulses:0 +I (265214) example: new speed:399.000000 +I (265224) example: expect speed: 0.000000 real_pulses:0 +I (265224) example: new speed:399.000000 +I (265234) example: expect speed: 0.000000 real_pulses:0 +I (265234) example: new speed:399.000000 +I (265244) example: expect speed: 0.000000 real_pulses:0 +I (265244) example: new speed:399.000000 +I (265254) example: expect speed: 0.000000 real_pulses:0 +I (265254) example: new speed:399.000000 +I (265264) example: expect speed: 0.000000 real_pulses:0 +I (265264) example: new speed:399.000000 +I (265274) example: expect speed: 0.000000 real_pulses:0 +I (265274) example: new speed:399.000000 +I (265284) example: expect speed: 0.000000 real_pulses:0 +I (265284) example: new speed:399.000000 +I (265294) example: expect speed: 0.000000 real_pulses:0 +I (265294) example: new speed:399.000000 +I (265304) example: expect speed: 0.000000 real_pulses:0 +I (265304) example: new speed:399.000000 +I (265314) example: expect speed: 0.000000 real_pulses:0 +I (265314) example: new speed:399.000000 +I (265324) example: expect speed: 0.000000 real_pulses:0 +I (265324) example: new speed:399.000000 +I (265334) example: expect speed: 0.000000 real_pulses:0 +I (265334) example: new speed:399.000000 +I (265344) example: expect speed: 0.000000 real_pulses:0 +I (265344) example: new speed:399.000000 +I (265354) example: expect speed: 0.000000 real_pulses:0 +I (265354) example: new speed:399.000000 +I (265364) example: expect speed: 0.000000 real_pulses:0 +I (265364) example: new speed:399.000000 +I (265374) example: expect speed: 0.000000 real_pulses:0 +I (265374) example: new speed:399.000000 +I (265384) example: expect speed: 0.000000 real_pulses:0 +I (265384) example: new speed:399.000000 +I (265394) example: expect speed: 0.000000 real_pulses:0 +I (265394) example: new speed:399.000000 +I (265404) example: expect speed: 0.000000 real_pulses:0 +I (265404) example: new speed:399.000000 +I (265414) example: expect speed: 0.000000 real_pulses:0 +I (265414) example: new speed:399.000000 +I (265424) example: expect speed: 0.000000 real_pulses:0 +I (265424) example: new speed:399.000000 +I (265434) example: expect speed: 0.000000 real_pulses:0 +I (265434) example: new speed:399.000000 +I (265444) example: expect speed: 0.000000 real_pulses:0 +I (265444) example: new speed:399.000000 +I (265454) example: expect speed: 0.000000 real_pulses:0 +I (265454) example: new speed:399.000000 +I (265464) example: expect speed: 0.000000 real_pulses:0 +I (265474) example: new speed:399.000000 +I (265474) example: expect speed: 0.000000 real_pulses:0 +I (265474) example: new speed:399.000000 +I (265484) example: expect speed: 0.000000 real_pulses:0 +I (265484) example: new speed:399.000000 +I (265494) example: expect speed: 0.000000 real_pulses:0 +I (265494) example: new speed:399.000000 +I (265504) example: expect speed: 0.000000 real_pulses:0 +I (265504) example: new speed:399.000000 +I (265514) example: expect speed: 0.000000 real_pulses:0 +I (265514) example: new speed:399.000000 +I (265524) example: expect speed: 0.000000 real_pulses:0 +I (265524) example: new speed:399.000000 +I (265534) example: expect speed: 0.000000 real_pulses:0 +I (265534) example: new speed:399.000000 +I (265544) example: expect speed: 0.000000 real_pulses:0 +I (265544) example: new speed:399.000000 +I (265554) example: expect speed: 0.000000 real_pulses:0 +I (265554) example: new speed:399.000000 +I (265564) example: expect speed: 0.000000 real_pulses:0 +I (265564) example: new speed:399.000000 +I (265574) example: expect speed: 0.000000 real_pulses:0 +I (265574) example: new speed:399.000000 +I (265584) example: expect speed: 0.000000 real_pulses:0 +I (265584) example: new speed:399.000000 +I (265594) example: expect speed: 0.000000 real_pulses:0 +I (265594) example: new speed:399.000000 +I (265604) example: expect speed: 0.000000 real_pulses:0 +I (265604) example: new speed:399.000000 +I (265614) example: expect speed: 0.000000 real_pulses:0 +I (265614) example: new speed:399.000000 +I (265624) example: expect speed: 0.000000 real_pulses:0 +I (265624) example: new speed:399.000000 +I (265634) example: expect speed: 0.000000 real_pulses:0 +I (265634) example: new speed:399.000000 +I (265644) example: expect speed: 0.000000 real_pulses:0 +I (265644) example: new speed:399.000000 +I (265654) example: expect speed: 0.000000 real_pulses:0 +I (265654) example: new speed:399.000000 +I (265664) example: expect speed: 0.000000 real_pulses:0 +I (265664) example: new speed:399.000000 +I (265674) example: expect speed: 0.000000 real_pulses:0 +I (265674) example: new speed:399.000000 +I (265684) example: expect speed: 0.000000 real_pulses:0 +I (265684) example: new speed:399.000000 +I (265694) example: expect speed: 0.000000 real_pulses:0 +I (265694) example: new speed:399.000000 +I (265704) example: expect speed: 0.000000 real_pulses:0 +I (265704) example: new speed:399.000000 +I (265714) example: expect speed: 0.000000 real_pulses:0 +I (265714) example: new speed:399.000000 +I (265724) example: expect speed: 0.000000 real_pulses:0 +I (265724) example: new speed:399.000000 +I (265734) example: expect speed: 0.000000 real_pulses:0 +I (265734) example: new speed:399.000000 +I (265744) example: expect speed: 0.000000 real_pulses:0 +I (265744) example: new speed:399.000000 +I (265754) example: expect speed: 0.000000 real_pulses:0 +I (265754) example: new speed:399.000000 +I (265764) example: expect speed: 0.000000 real_pulses:0 +I (265764) example: new speed:399.000000 +I (265774) example: expect speed: 0.000000 real_pulses:0 +I (265784) example: new speed:399.000000 +I (265784) modbus tcp: ModBusSlave_recv() +I (265784) modbus: ModbusSlaveProcess() +I (265784) modbus: check id... +I (265784) modbus: ok +I (265784) modbus: add: 0, length: 10 +I (265784) modbus: Read Holding Registers +I (265784) example: expect speed: 0.000000 real_pulses:0 +I (265794) example: new speed:399.000000 +I (265794) example: expect speed: 0.000000 real_pulses:0 +I (265794) example: new speed:399.000000 +I (265804) example: expect speed: 0.000000 real_pulses:0 +I (265804) example: new speed:399.000000 +I (265814) example: expect speed: 0.000000 real_pulses:0 +I (265814) example: new speed:399.000000 +I (265824) example: expect speed: 0.000000 real_pulses:0 +I (265824) example: new speed:399.000000 +I (265834) example: expect speed: 0.000000 real_pulses:0 +I (265844) example: new speed:399.000000 +I (265844) example: expect speed: 0.000000 real_pulses:0 +I (265844) example: new speed:399.000000 +I (265854) example: expect speed: 0.000000 real_pulses:0 +I (265854) example: new speed:399.000000 +I (265864) example: expect speed: 0.000000 real_pulses:0 +I (265864) example: new speed:399.000000 +I (265874) example: expect speed: 0.000000 real_pulses:0 +I (265884) example: new speed:399.000000 +I (265884) example: expect speed: 0.000000 real_pulses:0 +I (265894) example: new speed:399.000000 +I (265894) example: expect speed: 0.000000 real_pulses:0 +I (265894) example: new speed:399.000000 +I (265904) example: expect speed: 0.000000 real_pulses:0 +I (265904) example: new speed:399.000000 +I (265914) example: expect speed: 0.000000 real_pulses:0 +I (265914) example: new speed:399.000000 +I (265924) example: expect speed: 0.000000 real_pulses:0 +I (265924) example: new speed:399.000000 +I (265934) example: expect speed: 0.000000 real_pulses:0 +I (265944) example: new speed:399.000000 +I (265944) example: expect speed: 0.000000 real_pulses:0 +I (265944) example: new speed:399.000000 +I (265954) example: expect speed: 0.000000 real_pulses:0 +I (265954) example: new speed:399.000000 +I (265964) example: expect speed: 0.000000 real_pulses:0 +I (265964) example: new speed:399.000000 +I (265974) example: expect speed: 0.000000 real_pulses:0 +I (265974) example: new speed:399.000000 +I (265984) example: expect speed: 0.000000 real_pulses:0 +I (265984) example: new speed:399.000000 +I (265994) example: expect speed: 0.000000 real_pulses:0 +I (265994) example: new speed:399.000000 +I (266004) example: expect speed: 0.000000 real_pulses:0 +I (266004) example: new speed:399.000000 +I (266014) example: expect speed: 0.000000 real_pulses:0 +I (266014) example: new speed:399.000000 +I (266024) example: expect speed: 0.000000 real_pulses:0 +I (266024) example: new speed:399.000000 +I (266034) example: expect speed: 0.000000 real_pulses:0 +I (266034) example: new speed:399.000000 +I (266044) example: expect speed: 0.000000 real_pulses:0 +I (266044) example: new speed:399.000000 +I (266054) example: expect speed: 0.000000 real_pulses:0 +I (266054) example: new speed:399.000000 +I (266064) example: expect speed: 0.000000 real_pulses:0 +I (266064) example: new speed:399.000000 +I (266074) example: expect speed: 0.000000 real_pulses:0 +I (266074) example: new speed:399.000000 +I (266084) example: expect speed: 0.000000 real_pulses:0 +I (266094) example: new speed:399.000000 +I (266094) example: expect speed: 0.000000 real_pulses:0 +I (266104) example: new speed:399.000000 +I (266104) example: expect speed: 0.000000 real_pulses:0 +I (266104) example: new speed:399.000000 +I (266114) example: expect speed: 0.000000 real_pulses:0 +I (266114) example: new speed:399.000000 +I (266124) example: expect speed: 0.000000 real_pulses:0 +I (266124) example: new speed:399.000000 +I (266134) example: expect speed: 0.000000 real_pulses:0 +I (266134) example: new speed:399.000000 +I (266144) example: expect speed: 0.000000 real_pulses:0 +I (266144) example: new speed:399.000000 +I (266154) example: expect speed: 0.000000 real_pulses:0 +I (266154) example: new speed:399.000000 +I (266164) example: expect speed: 0.000000 real_pulses:0 +I (266164) example: new speed:399.000000 +I (266174) example: expect speed: 0.000000 real_pulses:0 +I (266174) example: new speed:399.000000 +I (266184) example: expect speed: 0.000000 real_pulses:0 +I (266184) example: new speed:399.000000 +I (266194) example: expect speed: 0.000000 real_pulses:0 +I (266194) example: new speed:399.000000 +I (266204) example: expect speed: 0.000000 real_pulses:0 +I (266204) example: new speed:399.000000 +I (266214) example: expect speed: 0.000000 real_pulses:0 +I (266214) example: new speed:399.000000 +I (266224) example: expect speed: 0.000000 real_pulses:0 +I (266224) example: new speed:399.000000 +I (266234) example: expect speed: 0.000000 real_pulses:0 +I (266234) example: new speed:399.000000 +I (266244) example: expect speed: 0.000000 real_pulses:0 +I (266244) example: new speed:399.000000 +I (266254) example: expect speed: 0.000000 real_pulses:0 +I (266254) example: new speed:399.000000 +I (266264) example: expect speed: 0.000000 real_pulses:0 +I (266264) example: new speed:399.000000 +I (266274) example: expect speed: 0.000000 real_pulses:0 +I (266274) example: new speed:399.000000 +I (266284) example: expect speed: 0.000000 real_pulses:0 +I (266284) example: new speed:399.000000 +I (266294) example: expect speed: 0.000000 real_pulses:0 +I (266294) example: new speed:399.000000 +I (266304) example: expect speed: 0.000000 real_pulses:0 +I (266304) example: new speed:399.000000 +I (266314) example: expect speed: 0.000000 real_pulses:0 +I (266314) example: new speed:399.000000 +I (266324) example: expect speed: 0.000000 real_pulses:0 +I (266324) example: new speed:399.000000 +I (266334) example: expect speed: 0.000000 real_pulses:0 +I (266334) example: new speed:399.000000 +I (266344) example: expect speed: 0.000000 real_pulses:0 +I (266344) example: new speed:399.000000 +I (266354) example: expect speed: 0.000000 real_pulses:0 +I (266354) example: new speed:399.000000 +I (266364) example: expect speed: 0.000000 real_pulses:0 +I (266364) example: new speed:399.000000 +I (266374) example: expect speed: 0.000000 real_pulses:0 +I (266374) example: new speed:399.000000 +I (266384) example: expect speed: 0.000000 real_pulses:0 +I (266384) example: new speed:399.000000 +I (266394) example: expect speed: 0.000000 real_pulses:0 +I (266394) example: new speed:399.000000 +I (266404) example: expect speed: 0.000000 real_pulses:0 +I (266404) example: new speed:399.000000 +I (266414) example: expect speed: 0.000000 real_pulses:0 +I (266414) example: new speed:399.000000 +I (266424) example: expect speed: 0.000000 real_pulses:0 +I (266424) example: new speed:399.000000 +I (266434) example: expect speed: 0.000000 real_pulses:0 +I (266434) example: new speed:399.000000 +I (266444) example: expect speed: 0.000000 real_pulses:0 +I (266444) example: new speed:399.000000 +I (266454) example: expect speed: 0.000000 real_pulses:0 +I (266454) example: new speed:399.000000 +I (266464) example: expect speed: 0.000000 real_pulses:0 +I (266464) example: new speed:399.000000 +I (266474) example: expect speed: 0.000000 real_pulses:0 +I (266474) example: new speed:399.000000 +I (266484) example: expect speed: 0.000000 real_pulses:0 +I (266484) example: new speed:399.000000 +I (266494) example: expect speed: 0.000000 real_pulses:0 +I (266494) example: new speed:399.000000 +I (266504) example: expect speed: 0.000000 real_pulses:0 +I (266504) example: new speed:399.000000 +I (266514) example: expect speed: 0.000000 real_pulses:0 +I (266514) example: new speed:399.000000 +I (266524) example: expect speed: 0.000000 real_pulses:0 +I (266524) example: new speed:399.000000 +I (266534) example: expect speed: 0.000000 real_pulses:0 +I (266534) example: new speed:399.000000 +I (266544) example: expect speed: 0.000000 real_pulses:0 +I (266544) example: new speed:399.000000 +I (266554) example: expect speed: 0.000000 real_pulses:0 +I (266554) example: new speed:399.000000 +I (266564) example: expect speed: 0.000000 real_pulses:0 +I (266564) example: new speed:399.000000 +I (266574) example: expect speed: 0.000000 real_pulses:0 +I (266574) example: new speed:399.000000 +I (266584) example: expect speed: 0.000000 real_pulses:0 +I (266584) example: new speed:399.000000 +I (266594) example: expect speed: 0.000000 real_pulses:0 +I (266594) example: new speed:399.000000 +I (266604) example: expect speed: 0.000000 real_pulses:0 +I (266604) example: new speed:399.000000 +I (266614) example: expect speed: 0.000000 real_pulses:0 +I (266614) example: new speed:399.000000 +I (266624) example: expect speed: 0.000000 real_pulses:0 +I (266624) example: new speed:399.000000 +I (266634) example: expect speed: 0.000000 real_pulses:0 +I (266634) example: new speed:399.000000 +I (266644) example: expect speed: 0.000000 real_pulses:0 +I (266644) example: new speed:399.000000 +I (266654) example: expect speed: 0.000000 real_pulses:0 +I (266654) example: new speed:399.000000 +I (266664) example: expect speed: 0.000000 real_pulses:0 +I (266664) example: new speed:399.000000 +I (266674) example: expect speed: 0.000000 real_pulses:0 +I (266674) example: new speed:399.000000 +I (266684) example: expect speed: 0.000000 real_pulses:0 +I (266684) example: new speed:399.000000 +I (266694) example: expect speed: 0.000000 real_pulses:0 +I (266704) example: new speed:399.000000 +I (266704) example: expect speed: 0.000000 real_pulses:0 +I (266704) example: new speed:399.000000 +I (266714) example: expect speed: 0.000000 real_pulses:0 +I (266714) example: new speed:399.000000 +I (266724) example: expect speed: 0.000000 real_pulses:0 +I (266724) example: new speed:399.000000 +I (266734) example: expect speed: 0.000000 real_pulses:0 +I (266734) example: new speed:399.000000 +I (266744) example: expect speed: 0.000000 real_pulses:0 +I (266744) example: new speed:399.000000 +I (266754) example: expect speed: 0.000000 real_pulses:0 +I (266754) example: new speed:399.000000 +I (266764) example: expect speed: 0.000000 real_pulses:0 +I (266764) example: new speed:399.000000 +I (266774) example: expect speed: 0.000000 real_pulses:0 +I (266774) example: new speed:399.000000 +I (266784) example: expect speed: 0.000000 real_pulses:0 +I (266784) example: new speed:399.000000 +I (266794) example: expect speed: 0.000000 real_pulses:0 +I (266804) example: new speed:399.000000 +I (266804) modbus tcp: ModBusSlave_recv() +I (266804) modbus: ModbusSlaveProcess() +I (266804) modbus: check id... +I (266804) modbus: ok +I (266804) modbus: add: 0, length: 10 +I (266804) modbus: Read Holding Registers +I (266804) example: expect speed: 0.000000 real_pulses:0 +I (266814) example: new speed:399.000000 +I (266814) example: expect speed: 0.000000 real_pulses:0 +I (266814) example: new speed:399.000000 +I (266824) example: expect speed: 0.000000 real_pulses:0 +I (266824) example: new speed:399.000000 +I (266834) example: expect speed: 0.000000 real_pulses:0 +I (266834) example: new speed:399.000000 +I (266844) example: expect speed: 0.000000 real_pulses:0 +I (266844) example: new speed:399.000000 +I (266854) example: expect speed: 0.000000 real_pulses:0 +I (266854) example: new speed:399.000000 +I (266864) example: expect speed: 0.000000 real_pulses:0 +I (266864) example: new speed:399.000000 +I (266874) example: expect speed: 0.000000 real_pulses:0 +I (266884) example: new speed:399.000000 +I (266884) example: expect speed: 0.000000 real_pulses:0 +I (266884) example: new speed:399.000000 +I (266894) example: expect speed: 0.000000 real_pulses:0 +I (266894) example: new speed:399.000000 +I (266904) example: expect speed: 0.000000 real_pulses:0 +I (266914) example: new speed:399.000000 +I (266914) example: expect speed: 0.000000 real_pulses:0 +I (266914) example: new speed:399.000000 +I (266924) example: expect speed: 0.000000 real_pulses:0 +I (266924) example: new speed:399.000000 +I (266934) example: expect speed: 0.000000 real_pulses:0 +I (266934) example: new speed:399.000000 +I (266944) example: expect speed: 0.000000 real_pulses:0 +I (266944) example: new speed:399.000000 +I (266954) example: expect speed: 0.000000 real_pulses:0 +I (266964) example: new speed:399.000000 +I (266964) example: expect speed: 0.000000 real_pulses:0 +I (266964) example: new speed:399.000000 +I (266974) example: expect speed: 0.000000 real_pulses:0 +I (266974) example: new speed:399.000000 +I (266984) example: expect speed: 0.000000 real_pulses:0 +I (266984) example: new speed:399.000000 +I (266994) example: expect speed: 0.000000 real_pulses:0 +I (266994) example: new speed:399.000000 +I (267004) example: expect speed: 0.000000 real_pulses:0 +I (267014) example: new speed:399.000000 +I (267014) example: expect speed: 0.000000 real_pulses:0 +I (267014) example: new speed:399.000000 +I (267024) example: expect speed: 0.000000 real_pulses:0 +I (267024) example: new speed:399.000000 +I (267034) example: expect speed: 0.000000 real_pulses:0 +I (267034) example: new speed:399.000000 +I (267044) example: expect speed: 0.000000 real_pulses:0 +I (267044) example: new speed:399.000000 +I (267054) example: expect speed: 0.000000 real_pulses:0 +I (267054) example: new speed:399.000000 +I (267064) example: expect speed: 0.000000 real_pulses:0 +I (267064) example: new speed:399.000000 +I (267074) example: expect speed: 0.000000 real_pulses:0 +I (267074) example: new speed:399.000000 +I (267084) example: expect speed: 0.000000 real_pulses:0 +I (267084) example: new speed:399.000000 +I (267094) example: expect speed: 0.000000 real_pulses:0 +I (267094) example: new speed:399.000000 +I (267104) example: expect speed: 0.000000 real_pulses:0 +I (267104) example: new speed:399.000000 +I (267114) example: expect speed: 0.000000 real_pulses:0 +I (267114) example: new speed:399.000000 +I (267124) example: expect speed: 0.000000 real_pulses:0 +I (267124) example: new speed:399.000000 +I (267134) example: expect speed: 0.000000 real_pulses:0 +I (267134) example: new speed:399.000000 +I (267144) example: expect speed: 0.000000 real_pulses:0 +I (267144) example: new speed:399.000000 +I (267154) example: expect speed: 0.000000 real_pulses:0 +I (267154) example: new speed:399.000000 +I (267164) example: expect speed: 0.000000 real_pulses:0 +I (267164) example: new speed:399.000000 +I (267174) example: expect speed: 0.000000 real_pulses:0 +I (267174) example: new speed:399.000000 +I (267184) example: expect speed: 0.000000 real_pulses:0 +I (267184) example: new speed:399.000000 +I (267194) example: expect speed: 0.000000 real_pulses:0 +I (267194) example: new speed:399.000000 +I (267204) example: expect speed: 0.000000 real_pulses:0 +I (267204) example: new speed:399.000000 +I (267214) example: expect speed: 0.000000 real_pulses:0 +I (267214) example: new speed:399.000000 +I (267224) example: expect speed: 0.000000 real_pulses:0 +I (267224) example: new speed:399.000000 +I (267234) example: expect speed: 0.000000 real_pulses:0 +I (267234) example: new speed:399.000000 +I (267244) example: expect speed: 0.000000 real_pulses:0 +I (267244) example: new speed:399.000000 +I (267254) example: expect speed: 0.000000 real_pulses:0 +I (267254) example: new speed:399.000000 +I (267264) example: expect speed: 0.000000 real_pulses:0 +I (267264) example: new speed:399.000000 +I (267274) example: expect speed: 0.000000 real_pulses:0 +I (267274) example: new speed:399.000000 +I (267284) example: expect speed: 0.000000 real_pulses:0 +I (267284) example: new speed:399.000000 +I (267294) example: expect speed: 0.000000 real_pulses:0 +I (267294) example: new speed:399.000000 +I (267304) example: expect speed: 0.000000 real_pulses:0 +I (267304) example: new speed:399.000000 +I (267314) example: expect speed: 0.000000 real_pulses:0 +I (267314) example: new speed:399.000000 +I (267324) example: expect speed: 0.000000 real_pulses:0 +I (267324) example: new speed:399.000000 +I (267334) example: expect speed: 0.000000 real_pulses:0 +I (267334) example: new speed:399.000000 +I (267344) example: expect speed: 0.000000 real_pulses:0 +I (267344) example: new speed:399.000000 +I (267354) example: expect speed: 0.000000 real_pulses:0 +I (267354) example: new speed:399.000000 +I (267364) example: expect speed: 0.000000 real_pulses:0 +I (267364) example: new speed:399.000000 +I (267374) example: expect speed: 0.000000 real_pulses:0 +I (267374) example: new speed:399.000000 +I (267384) example: expect speed: 0.000000 real_pulses:0 +I (267384) example: new speed:399.000000 +I (267394) example: expect speed: 0.000000 real_pulses:0 +I (267394) example: new speed:399.000000 +I (267404) example: expect speed: 0.000000 real_pulses:0 +I (267404) example: new speed:399.000000 +I (267414) example: expect speed: 0.000000 real_pulses:0 +I (267424) example: new speed:399.000000 +I (267424) example: expect speed: 0.000000 real_pulses:0 +I (267424) example: new speed:399.000000 +I (267434) example: expect speed: 0.000000 real_pulses:0 +I (267444) example: new speed:399.000000 +I (267444) example: expect speed: 0.000000 real_pulses:0 +I (267444) example: new speed:399.000000 +I (267454) example: expect speed: 0.000000 real_pulses:0 +I (267454) example: new speed:399.000000 +I (267464) example: expect speed: 0.000000 real_pulses:0 +I (267464) example: new speed:399.000000 +I (267474) example: expect speed: 0.000000 real_pulses:0 +I (267474) example: new speed:399.000000 +I (267484) example: expect speed: 0.000000 real_pulses:0 +I (267484) example: new speed:399.000000 +I (267494) example: expect speed: 0.000000 real_pulses:0 +I (267494) example: new speed:399.000000 +I (267504) example: expect speed: 0.000000 real_pulses:0 +I (267504) example: new speed:399.000000 +I (267514) example: expect speed: 0.000000 real_pulses:0 +I (267514) example: new speed:399.000000 +I (267524) example: expect speed: 0.000000 real_pulses:0 +I (267524) example: new speed:399.000000 +I (267534) example: expect speed: 0.000000 real_pulses:0 +I (267534) example: new speed:399.000000 +I (267544) example: expect speed: 0.000000 real_pulses:0 +I (267544) example: new speed:399.000000 +I (267554) example: expect speed: 0.000000 real_pulses:0 +I (267554) example: new speed:399.000000 +I (267564) example: expect speed: 0.000000 real_pulses:0 +I (267564) example: new speed:399.000000 +I (267574) example: expect speed: 0.000000 real_pulses:0 +I (267574) example: new speed:399.000000 +I (267584) example: expect speed: 0.000000 real_pulses:0 +I (267584) example: new speed:399.000000 +I (267594) example: expect speed: 0.000000 real_pulses:0 +I (267594) example: new speed:399.000000 +I (267604) example: expect speed: 0.000000 real_pulses:0 +I (267604) example: new speed:399.000000 +I (267614) example: expect speed: 0.000000 real_pulses:0 +I (267614) example: new speed:399.000000 +I (267624) example: expect speed: 0.000000 real_pulses:0 +I (267624) example: new speed:399.000000 +I (267634) example: expect speed: 0.000000 real_pulses:0 +I (267634) example: new speed:399.000000 +I (267644) example: expect speed: 0.000000 real_pulses:0 +I (267644) example: new speed:399.000000 +I (267654) example: expect speed: 0.000000 real_pulses:0 +I (267654) example: new speed:399.000000 +I (267664) example: expect speed: 0.000000 real_pulses:0 +I (267664) example: new speed:399.000000 +I (267674) example: expect speed: 0.000000 real_pulses:0 +I (267674) example: new speed:399.000000 +I (267684) example: expect speed: 0.000000 real_pulses:0 +I (267684) example: new speed:399.000000 +I (267694) example: expect speed: 0.000000 real_pulses:0 +I (267694) example: new speed:399.000000 +I (267704) example: expect speed: 0.000000 real_pulses:0 +I (267704) example: new speed:399.000000 +I (267714) example: expect speed: 0.000000 real_pulses:0 +I (267714) example: new speed:399.000000 +I (267724) example: expect speed: 0.000000 real_pulses:0 +I (267734) example: new speed:399.000000 +I (267734) example: expect speed: 0.000000 real_pulses:0 +I (267734) example: new speed:399.000000 +I (267744) example: expect speed: 0.000000 real_pulses:0 +I (267744) example: new speed:399.000000 +I (267754) example: expect speed: 0.000000 real_pulses:0 +I (267754) example: new speed:399.000000 +I (267764) example: expect speed: 0.000000 real_pulses:0 +I (267764) example: new speed:399.000000 +I (267774) example: expect speed: 0.000000 real_pulses:0 +I (267774) example: new speed:399.000000 +I (267784) example: expect speed: 0.000000 real_pulses:0 +I (267784) example: new speed:399.000000 +I (267794) example: expect speed: 0.000000 real_pulses:0 +I (267794) example: new speed:399.000000 +I (267804) example: expect speed: 0.000000 real_pulses:0 +I (267804) example: new speed:399.000000 +I (267814) example: expect speed: 0.000000 real_pulses:0 +I (267814) example: new speed:399.000000 +I (267824) example: expect speed: 0.000000 real_pulses:0 +I (267834) example: new speed:399.000000 +I (267834) modbus tcp: ModBusSlave_recv() +I (267834) modbus: ModbusSlaveProcess() +I (267834) modbus: check id... +I (267834) modbus: ok +I (267834) modbus: add: 0, length: 10 +I (267834) modbus: Read Holding Registers +I (267834) example: expect speed: 0.000000 real_pulses:0 +I (267844) example: new speed:399.000000 +I (267844) example: expect speed: 0.000000 real_pulses:0 +I (267844) example: new speed:399.000000 +I (267854) example: expect speed: 0.000000 real_pulses:0 +I (267854) example: new speed:399.000000 +I (267864) example: expect speed: 0.000000 real_pulses:0 +I (267864) example: new speed:399.000000 +I (267874) example: expect speed: 0.000000 real_pulses:0 +I (267874) example: new speed:399.000000 +I (267884) example: expect speed: 0.000000 real_pulses:0 +I (267884) example: new speed:399.000000 +I (267894) example: expect speed: 0.000000 real_pulses:0 +I (267904) example: new speed:399.000000 +I (267904) example: expect speed: 0.000000 real_pulses:0 +I (267904) example: new speed:399.000000 +I (267914) example: expect speed: 0.000000 real_pulses:0 +I (267914) example: new speed:399.000000 +I (267924) example: expect speed: 0.000000 real_pulses:0 +I (267924) example: new speed:399.000000 +I (267934) example: expect speed: 0.000000 real_pulses:0 +I (267934) example: new speed:399.000000 +I (267944) example: expect speed: 0.000000 real_pulses:0 +I (267944) example: new speed:399.000000 +I (267954) example: expect speed: 0.000000 real_pulses:0 +I (267954) example: new speed:399.000000 +I (267964) example: expect speed: 0.000000 real_pulses:0 +I (267964) example: new speed:399.000000 +I (267974) example: expect speed: 0.000000 real_pulses:0 +I (267974) example: new speed:399.000000 +I (267984) example: expect speed: 0.000000 real_pulses:0 +I (267984) example: new speed:399.000000 +I (267994) example: expect speed: 0.000000 real_pulses:0 +I (267994) example: new speed:399.000000 +I (268004) example: expect speed: 0.000000 real_pulses:0 +I (268004) example: new speed:399.000000 +I (268014) example: expect speed: 0.000000 real_pulses:0 +I (268014) example: new speed:399.000000 +I (268024) example: expect speed: 0.000000 real_pulses:0 +I (268024) example: new speed:399.000000 +I (268034) example: expect speed: 0.000000 real_pulses:0 +I (268034) example: new speed:399.000000 +I (268044) example: expect speed: 0.000000 real_pulses:0 +I (268044) example: new speed:399.000000 +I (268054) example: expect speed: 0.000000 real_pulses:0 +I (268054) example: new speed:399.000000 +I (268064) example: expect speed: 0.000000 real_pulses:0 +I (268064) example: new speed:399.000000 +I (268074) example: expect speed: 0.000000 real_pulses:0 +I (268074) example: new speed:399.000000 +I (268084) example: expect speed: 0.000000 real_pulses:0 +I (268084) example: new speed:399.000000 +I (268094) example: expect speed: 0.000000 real_pulses:0 +I (268094) example: new speed:399.000000 +I (268104) example: expect speed: 0.000000 real_pulses:0 +I (268104) example: new speed:399.000000 +I (268114) example: expect speed: 0.000000 real_pulses:0 +I (268114) example: new speed:399.000000 +I (268124) example: expect speed: 0.000000 real_pulses:0 +I (268124) example: new speed:399.000000 +I (268134) example: expect speed: 0.000000 real_pulses:0 +I (268134) example: new speed:399.000000 +I (268144) example: expect speed: 0.000000 real_pulses:0 +I (268144) example: new speed:399.000000 +I (268154) example: expect speed: 0.000000 real_pulses:0 +I (268154) example: new speed:399.000000 +I (268164) example: expect speed: 0.000000 real_pulses:0 +I (268164) example: new speed:399.000000 +I (268174) example: expect speed: 0.000000 real_pulses:0 +I (268174) example: new speed:399.000000 +I (268184) example: expect speed: 0.000000 real_pulses:0 +I (268184) example: new speed:399.000000 +I (268194) example: expect speed: 0.000000 real_pulses:0 +I (268194) example: new speed:399.000000 +I (268204) example: expect speed: 0.000000 real_pulses:0 +I (268204) example: new speed:399.000000 +I (268214) example: expect speed: 0.000000 real_pulses:0 +I (268214) example: new speed:399.000000 +I (268224) example: expect speed: 0.000000 real_pulses:0 +I (268224) example: new speed:399.000000 +I (268234) example: expect speed: 0.000000 real_pulses:0 +I (268234) example: new speed:399.000000 +I (268244) example: expect speed: 0.000000 real_pulses:0 +I (268244) example: new speed:399.000000 +I (268254) example: expect speed: 0.000000 real_pulses:0 +I (268254) example: new speed:399.000000 +I (268264) example: expect speed: 0.000000 real_pulses:0 +I (268264) example: new speed:399.000000 +I (268274) example: expect speed: 0.000000 real_pulses:0 +I (268274) example: new speed:399.000000 +I (268284) example: expect speed: 0.000000 real_pulses:0 +I (268284) example: new speed:399.000000 +I (268294) example: expect speed: 0.000000 real_pulses:0 +I (268294) example: new speed:399.000000 +I (268304) example: expect speed: 0.000000 real_pulses:0 +I (268304) example: new speed:399.000000 +I (268314) example: expect speed: 0.000000 real_pulses:0 +I (268314) example: new speed:399.000000 +I (268324) example: expect speed: 0.000000 real_pulses:0 +I (268324) example: new speed:399.000000 +I (268334) example: expect speed: 0.000000 real_pulses:0 +I (268334) example: new speed:399.000000 +I (268344) example: expect speed: 0.000000 real_pulses:0 +I (268344) example: new speed:399.000000 +I (268354) example: expect speed: 0.000000 real_pulses:0 +I (268354) example: new speed:399.000000 +I (268364) example: expect speed: 0.000000 real_pulses:0 +I (268364) example: new speed:399.000000 +I (268374) example: expect speed: 0.000000 real_pulses:0 +I (268374) example: new speed:399.000000 +I (268384) example: expect speed: 0.000000 real_pulses:0 +I (268384) example: new speed:399.000000 +I (268394) example: expect speed: 0.000000 real_pulses:0 +I (268394) example: new speed:399.000000 +I (268404) example: expect speed: 0.000000 real_pulses:0 +I (268404) example: new speed:399.000000 +I (268414) example: expect speed: 0.000000 real_pulses:0 +I (268414) example: new speed:399.000000 +I (268424) example: expect speed: 0.000000 real_pulses:0 +I (268424) example: new speed:399.000000 +I (268434) example: expect speed: 0.000000 real_pulses:0 +I (268434) example: new speed:399.000000 +I (268444) example: expect speed: 0.000000 real_pulses:0 +I (268444) example: new speed:399.000000 +I (268454) example: expect speed: 0.000000 real_pulses:0 +I (268454) example: new speed:399.000000 +I (268464) example: expect speed: 0.000000 real_pulses:0 +I (268464) example: new speed:399.000000 +I (268474) example: expect speed: 0.000000 real_pulses:0 +I (268474) example: new speed:399.000000 +I (268484) example: expect speed: 0.000000 real_pulses:0 +I (268484) example: new speed:399.000000 +I (268494) example: expect speed: 0.000000 real_pulses:0 +I (268494) example: new speed:399.000000 +I (268504) example: expect speed: 0.000000 real_pulses:0 +I (268504) example: new speed:399.000000 +I (268514) example: expect speed: 0.000000 real_pulses:0 +I (268514) example: new speed:399.000000 +I (268524) example: expect speed: 0.000000 real_pulses:0 +I (268524) example: new speed:399.000000 +I (268534) example: expect speed: 0.000000 real_pulses:0 +I (268534) example: new speed:399.000000 +I (268544) example: expect speed: 0.000000 real_pulses:0 +I (268544) example: new speed:399.000000 +I (268554) example: expect speed: 0.000000 real_pulses:0 +I (268554) example: new speed:399.000000 +I (268564) example: expect speed: 0.000000 real_pulses:0 +I (268564) example: new speed:399.000000 +I (268574) example: expect speed: 0.000000 real_pulses:0 +I (268574) example: new speed:399.000000 +I (268584) example: expect speed: 0.000000 real_pulses:0 +I (268584) example: new speed:399.000000 +I (268594) example: expect speed: 0.000000 real_pulses:0 +I (268594) example: new speed:399.000000 +I (268604) example: expect speed: 0.000000 real_pulses:0 +I (268604) example: new speed:399.000000 +I (268614) example: expect speed: 0.000000 real_pulses:0 +I (268614) example: new speed:399.000000 +I (268624) example: expect speed: 0.000000 real_pulses:0 +I (268624) example: new speed:399.000000 +I (268634) example: expect speed: 0.000000 real_pulses:0 +I (268634) example: new speed:399.000000 +I (268644) example: expect speed: 0.000000 real_pulses:0 +I (268644) example: new speed:399.000000 +I (268654) example: expect speed: 0.000000 real_pulses:0 +I (268654) example: new speed:399.000000 +I (268664) example: expect speed: 0.000000 real_pulses:0 +I (268664) example: new speed:399.000000 +I (268674) example: expect speed: 0.000000 real_pulses:0 +I (268674) example: new speed:399.000000 +I (268684) example: expect speed: 0.000000 real_pulses:0 +I (268684) example: new speed:399.000000 +I (268694) example: expect speed: 0.000000 real_pulses:0 +I (268694) example: new speed:399.000000 +I (268704) example: expect speed: 0.000000 real_pulses:0 +I (268704) example: new speed:399.000000 +I (268714) example: expect speed: 0.000000 real_pulses:0 +I (268714) example: new speed:399.000000 +I (268724) example: expect speed: 0.000000 real_pulses:0 +I (268724) example: new speed:399.000000 +I (268734) example: expect speed: 0.000000 real_pulses:0 +I (268734) example: new speed:399.000000 +I (268744) example: expect speed: 0.000000 real_pulses:0 +I (268744) example: new speed:399.000000 +I (268754) example: expect speed: 0.000000 real_pulses:0 +I (268754) example: new speed:399.000000 +I (268764) example: expect speed: 0.000000 real_pulses:0 +I (268764) example: new speed:399.000000 +I (268774) example: expect speed: 0.000000 real_pulses:0 +I (268774) example: new speed:399.000000 +I (268784) example: expect speed: 0.000000 real_pulses:0 +I (268784) example: new speed:399.000000 +I (268794) example: expect speed: 0.000000 real_pulses:0 +I (268794) example: new speed:399.000000 +I (268804) example: expect speed: 0.000000 real_pulses:0 +I (268804) example: new speed:399.000000 +I (268814) example: expect speed: 0.000000 real_pulses:0 +I (268814) example: new speed:399.000000 +I (268824) example: expect speed: 0.000000 real_pulses:0 +I (268824) example: new speed:399.000000 +I (268834) example: expect speed: 0.000000 real_pulses:0 +I (268834) example: new speed:399.000000 +I (268854) example: expect speed: 0.000000 real_pulses:0 +I (268854) example: new speed:399.000000 +I (268854) modbus tcp: ModBusSlave_recv() +I (268854) modbus: ModbusSlaveProcess() +I (268854) modbus: check id... +I (268854) modbus: ok +I (268854) modbus: add: 0, length: 10 +I (268854) modbus: Read Holding Registers +I (268854) example: expect speed: 0.000000 real_pulses:0 +I (268864) example: new speed:399.000000 +I (268864) example: expect speed: 0.000000 real_pulses:0 +I (268864) example: new speed:399.000000 +I (268874) example: expect speed: 0.000000 real_pulses:0 +I (268874) example: new speed:399.000000 +I (268884) example: expect speed: 0.000000 real_pulses:0 +I (268884) example: new speed:399.000000 +I (268894) example: expect speed: 0.000000 real_pulses:0 +I (268894) example: new speed:399.000000 +I (268904) example: expect speed: 0.000000 real_pulses:0 +I (268904) example: new speed:399.000000 +I (268914) example: expect speed: 0.000000 real_pulses:0 +I (268914) example: new speed:399.000000 +I (268924) example: expect speed: 0.000000 real_pulses:0 +I (268924) example: new speed:399.000000 +I (268934) example: expect speed: 0.000000 real_pulses:0 +I (268934) example: new speed:399.000000 +I (268944) example: expect speed: 0.000000 real_pulses:0 +I (268944) example: new speed:399.000000 +I (268954) example: expect speed: 0.000000 real_pulses:0 +I (268954) example: new speed:399.000000 +I (268964) example: expect speed: 0.000000 real_pulses:0 +I (268974) example: new speed:399.000000 +I (268974) example: expect speed: 0.000000 real_pulses:0 +I (268974) example: new speed:399.000000 +I (268984) example: expect speed: 0.000000 real_pulses:0 +I (268984) example: new speed:399.000000 +I (268994) example: expect speed: 0.000000 real_pulses:0 +I (268994) example: new speed:399.000000 +I (269004) example: expect speed: 0.000000 real_pulses:0 +I (269004) example: new speed:399.000000 +I (269014) example: expect speed: 0.000000 real_pulses:0 +I (269024) example: new speed:399.000000 +I (269024) example: expect speed: 0.000000 real_pulses:0 +I (269024) example: new speed:399.000000 +I (269034) example: expect speed: 0.000000 real_pulses:0 +I (269034) example: new speed:399.000000 +I (269044) example: expect speed: 0.000000 real_pulses:0 +I (269044) example: new speed:399.000000 +I (269054) example: expect speed: 0.000000 real_pulses:0 +I (269054) example: new speed:399.000000 +I (269064) example: expect speed: 0.000000 real_pulses:0 +I (269064) example: new speed:399.000000 +I (269074) example: expect speed: 0.000000 real_pulses:0 +I (269074) example: new speed:399.000000 +I (269084) example: expect speed: 0.000000 real_pulses:0 +I (269084) example: new speed:399.000000 +I (269094) example: expect speed: 0.000000 real_pulses:0 +I (269094) example: new speed:399.000000 +I (269104) example: expect speed: 0.000000 real_pulses:0 +I (269104) example: new speed:399.000000 +I (269114) example: expect speed: 0.000000 real_pulses:0 +I (269114) example: new speed:399.000000 +I (269124) example: expect speed: 0.000000 real_pulses:0 +I (269124) example: new speed:399.000000 +I (269134) example: expect speed: 0.000000 real_pulses:0 +I (269134) example: new speed:399.000000 +I (269144) example: expect speed: 0.000000 real_pulses:0 +I (269144) example: new speed:399.000000 +I (269154) example: expect speed: 0.000000 real_pulses:0 +I (269154) example: new speed:399.000000 +I (269164) example: expect speed: 0.000000 real_pulses:0 +I (269164) example: new speed:399.000000 +I (269174) example: expect speed: 0.000000 real_pulses:0 +I (269174) example: new speed:399.000000 +I (269184) example: expect speed: 0.000000 real_pulses:0 +I (269184) example: new speed:399.000000 +I (269194) example: expect speed: 0.000000 real_pulses:0 +I (269194) example: new speed:399.000000 +I (269204) example: expect speed: 0.000000 real_pulses:0 +I (269204) example: new speed:399.000000 +I (269214) example: expect speed: 0.000000 real_pulses:0 +I (269214) example: new speed:399.000000 +I (269224) example: expect speed: 0.000000 real_pulses:0 +I (269224) example: new speed:399.000000 +I (269234) example: expect speed: 0.000000 real_pulses:0 +I (269234) example: new speed:399.000000 +I (269244) example: expect speed: 0.000000 real_pulses:0 +I (269244) example: new speed:399.000000 +I (269254) example: expect speed: 0.000000 real_pulses:0 +I (269254) example: new speed:399.000000 +I (269264) example: expect speed: 0.000000 real_pulses:0 +I (269264) example: new speed:399.000000 +I (269274) example: expect speed: 0.000000 real_pulses:0 +I (269274) example: new speed:399.000000 +I (269284) example: expect speed: 0.000000 real_pulses:0 +I (269284) example: new speed:399.000000 +I (269294) example: expect speed: 0.000000 real_pulses:0 +I (269294) example: new speed:399.000000 +I (269304) example: expect speed: 0.000000 real_pulses:0 +I (269304) example: new speed:399.000000 +I (269314) example: expect speed: 0.000000 real_pulses:0 +I (269314) example: new speed:399.000000 +I (269324) example: expect speed: 0.000000 real_pulses:0 +I (269324) example: new speed:399.000000 +I (269334) example: expect speed: 0.000000 real_pulses:0 +I (269334) example: new speed:399.000000 +I (269344) example: expect speed: 0.000000 real_pulses:0 +I (269344) example: new speed:399.000000 +I (269354) example: expect speed: 0.000000 real_pulses:0 +I (269354) example: new speed:399.000000 +I (269364) example: expect speed: 0.000000 real_pulses:0 +I (269364) example: new speed:399.000000 +I (269374) example: expect speed: 0.000000 real_pulses:0 +I (269374) example: new speed:399.000000 +I (269384) example: expect speed: 0.000000 real_pulses:0 +I (269384) example: new speed:399.000000 +I (269394) example: expect speed: 0.000000 real_pulses:0 +I (269394) example: new speed:399.000000 +I (269404) example: expect speed: 0.000000 real_pulses:0 +I (269404) example: new speed:399.000000 +I (269414) example: expect speed: 0.000000 real_pulses:0 +I (269414) example: new speed:399.000000 +I (269424) example: expect speed: 0.000000 real_pulses:0 +I (269424) example: new speed:399.000000 +I (269434) example: expect speed: 0.000000 real_pulses:0 +I (269434) example: new speed:399.000000 +I (269444) example: expect speed: 0.000000 real_pulses:0 +I (269444) example: new speed:399.000000 +I (269454) example: expect speed: 0.000000 real_pulses:0 +I (269454) example: new speed:399.000000 +I (269464) example: expect speed: 0.000000 real_pulses:0 +I (269464) example: new speed:399.000000 +I (269474) example: expect speed: 0.000000 real_pulses:0 +I (269474) example: new speed:399.000000 +I (269484) example: expect speed: 0.000000 real_pulses:0 +I (269484) example: new speed:399.000000 +I (269494) example: expect speed: 0.000000 real_pulses:0 +I (269494) example: new speed:399.000000 +I (269504) example: expect speed: 0.000000 real_pulses:0 +I (269504) example: new speed:399.000000 +I (269514) example: expect speed: 0.000000 real_pulses:0 +I (269514) example: new speed:399.000000 +I (269524) example: expect speed: 0.000000 real_pulses:0 +I (269524) example: new speed:399.000000 +I (269534) example: expect speed: 0.000000 real_pulses:0 +I (269534) example: new speed:399.000000 +I (269544) example: expect speed: 0.000000 real_pulses:0 +I (269544) example: new speed:399.000000 +I (269554) example: expect speed: 0.000000 real_pulses:0 +I (269554) example: new speed:399.000000 +I (269564) example: expect speed: 0.000000 real_pulses:0 +I (269564) example: new speed:399.000000 +I (269574) example: expect speed: 0.000000 real_pulses:0 +I (269574) example: new speed:399.000000 +I (269584) example: expect speed: 0.000000 real_pulses:0 +I (269584) example: new speed:399.000000 +I (269594) example: expect speed: 0.000000 real_pulses:0 +I (269594) example: new speed:399.000000 +I (269604) example: expect speed: 0.000000 real_pulses:0 +I (269604) example: new speed:399.000000 +I (269614) example: expect speed: 0.000000 real_pulses:0 +I (269614) example: new speed:399.000000 +I (269624) example: expect speed: 0.000000 real_pulses:0 +I (269624) example: new speed:399.000000 +I (269634) example: expect speed: 0.000000 real_pulses:0 +I (269634) example: new speed:399.000000 +I (269644) example: expect speed: 0.000000 real_pulses:0 +I (269644) example: new speed:399.000000 +I (269654) example: expect speed: 0.000000 real_pulses:0 +I (269654) example: new speed:399.000000 +I (269664) example: expect speed: 0.000000 real_pulses:0 +I (269664) example: new speed:399.000000 +I (269674) example: expect speed: 0.000000 real_pulses:0 +I (269674) example: new speed:399.000000 +I (269684) example: expect speed: 0.000000 real_pulses:0 +I (269684) example: new speed:399.000000 +I (269694) example: expect speed: 0.000000 real_pulses:0 +I (269694) example: new speed:399.000000 +I (269704) example: expect speed: 0.000000 real_pulses:0 +I (269704) example: new speed:399.000000 +I (269714) example: expect speed: 0.000000 real_pulses:0 +I (269714) example: new speed:399.000000 +I (269724) example: expect speed: 0.000000 real_pulses:0 +I (269724) example: new speed:399.000000 +I (269734) example: expect speed: 0.000000 real_pulses:0 +I (269734) example: new speed:399.000000 +I (269744) example: expect speed: 0.000000 real_pulses:0 +I (269744) example: new speed:399.000000 +I (269754) example: expect speed: 0.000000 real_pulses:0 +I (269754) example: new speed:399.000000 +I (269764) example: expect speed: 0.000000 real_pulses:0 +I (269764) example: new speed:399.000000 +I (269774) example: expect speed: 0.000000 real_pulses:0 +I (269774) example: new speed:399.000000 +I (269784) example: expect speed: 0.000000 real_pulses:0 +I (269784) example: new speed:399.000000 +I (269794) example: expect speed: 0.000000 real_pulses:0 +I (269794) example: new speed:399.000000 +I (269804) example: expect speed: 0.000000 real_pulses:0 +I (269804) example: new speed:399.000000 +I (269814) example: expect speed: 0.000000 real_pulses:0 +I (269814) example: new speed:399.000000 +I (269824) example: expect speed: 0.000000 real_pulses:0 +I (269824) example: new speed:399.000000 +I (269834) example: expect speed: 0.000000 real_pulses:0 +I (269834) example: new speed:399.000000 +I (269844) example: expect speed: 0.000000 real_pulses:0 +I (269844) example: new speed:399.000000 +I (269854) example: expect speed: 0.000000 real_pulses:0 +I (269854) example: new speed:399.000000 +I (269864) example: expect speed: 0.000000 real_pulses:0 +I (269864) example: new speed:399.000000 +I (269874) modbus tcp: ModBusSlave_recv() +I (269874) modbus: ModbusSlaveProcess() +I (269874) modbus: check id... +I (269874) modbus: ok +I (269874) modbus: add: 0, length: 10 +I (269874) modbus: Read Holding Registers +I (269874) example: expect speed: 0.000000 real_pulses:0 +I (269884) example: new speed:399.000000 +I (269884) example: expect speed: 0.000000 real_pulses:0 +I (269884) example: new speed:399.000000 +I (269894) example: expect speed: 0.000000 real_pulses:0 +I (269894) example: new speed:399.000000 +I (269904) example: expect speed: 0.000000 real_pulses:0 +I (269904) example: new speed:399.000000 +I (269914) example: expect speed: 0.000000 real_pulses:0 +I (269914) example: new speed:399.000000 +I (269924) example: expect speed: 0.000000 real_pulses:0 +I (269924) example: new speed:399.000000 +I (269934) example: expect speed: 0.000000 real_pulses:0 +I (269944) example: new speed:399.000000 +I (269944) example: expect speed: 0.000000 real_pulses:0 +I (269944) example: new speed:399.000000 +I (269954) example: expect speed: 0.000000 real_pulses:0 +I (269954) example: new speed:399.000000 +I (269964) example: expect speed: 0.000000 real_pulses:0 +I (269964) example: new speed:399.000000 +I (269974) example: expect speed: 0.000000 real_pulses:0 +I (269974) example: new speed:399.000000 +I (269984) example: expect speed: 0.000000 real_pulses:0 +I (269984) example: new speed:399.000000 +I (269994) example: expect speed: 0.000000 real_pulses:0 +I (269994) example: new speed:399.000000 +I (270004) example: expect speed: 0.000000 real_pulses:0 +I (270004) example: new speed:399.000000 +I (270014) example: expect speed: 0.000000 real_pulses:0 +I (270014) example: new speed:399.000000 +I (270024) example: expect speed: 0.000000 real_pulses:0 +I (270024) example: new speed:399.000000 +I (270034) example: expect speed: 0.000000 real_pulses:0 +I (270034) example: new speed:399.000000 +I (270044) example: expect speed: 0.000000 real_pulses:0 +I (270044) example: new speed:399.000000 +I (270054) example: expect speed: 0.000000 real_pulses:0 +I (270054) example: new speed:399.000000 +I (270064) example: expect speed: 0.000000 real_pulses:0 +I (270064) example: new speed:399.000000 +I (270074) example: expect speed: 0.000000 real_pulses:0 +I (270074) example: new speed:399.000000 +I (270084) example: expect speed: 0.000000 real_pulses:0 +I (270084) example: new speed:399.000000 +I (270094) example: expect speed: 0.000000 real_pulses:0 +I (270094) example: new speed:399.000000 +I (270104) example: expect speed: 0.000000 real_pulses:0 +I (270104) example: new speed:399.000000 +I (270114) example: expect speed: 0.000000 real_pulses:0 +I (270114) example: new speed:399.000000 +I (270124) example: expect speed: 0.000000 real_pulses:0 +I (270124) example: new speed:399.000000 +I (270134) example: expect speed: 0.000000 real_pulses:0 +I (270134) example: new speed:399.000000 +I (270144) example: expect speed: 0.000000 real_pulses:0 +I (270144) example: new speed:399.000000 +I (270154) example: expect speed: 0.000000 real_pulses:0 +I (270154) example: new speed:399.000000 +I (270164) example: expect speed: 0.000000 real_pulses:0 +I (270164) example: new speed:399.000000 +I (270174) example: expect speed: 0.000000 real_pulses:0 +I (270174) example: new speed:399.000000 +I (270184) example: expect speed: 0.000000 real_pulses:0 +I (270184) example: new speed:399.000000 +I (270194) example: expect speed: 0.000000 real_pulses:0 +I (270194) example: new speed:399.000000 +I (270204) example: expect speed: 0.000000 real_pulses:0 +I (270204) example: new speed:399.000000 +I (270214) example: expect speed: 0.000000 real_pulses:0 +I (270214) example: new speed:399.000000 +I (270224) example: expect speed: 0.000000 real_pulses:0 +I (270224) example: new speed:399.000000 +I (270234) example: expect speed: 0.000000 real_pulses:0 +I (270234) example: new speed:399.000000 +I (270244) example: expect speed: 0.000000 real_pulses:0 +I (270244) example: new speed:399.000000 +I (270254) example: expect speed: 0.000000 real_pulses:0 +I (270254) example: new speed:399.000000 +I (270264) example: expect speed: 0.000000 real_pulses:0 +I (270264) example: new speed:399.000000 +I (270274) example: expect speed: 0.000000 real_pulses:0 +I (270274) example: new speed:399.000000 +I (270284) example: expect speed: 0.000000 real_pulses:0 +I (270294) example: new speed:399.000000 +I (270294) example: expect speed: 0.000000 real_pulses:0 +I (270294) example: new speed:399.000000 +I (270304) example: expect speed: 0.000000 real_pulses:0 +I (270304) example: new speed:399.000000 +I (270314) example: expect speed: 0.000000 real_pulses:0 +I (270314) example: new speed:399.000000 +I (270324) example: expect speed: 0.000000 real_pulses:0 +I (270324) example: new speed:399.000000 +I (270334) example: expect speed: 0.000000 real_pulses:0 +I (270334) example: new speed:399.000000 +I (270344) example: expect speed: 0.000000 real_pulses:0 +I (270344) example: new speed:399.000000 +I (270354) example: expect speed: 0.000000 real_pulses:0 +I (270354) example: new speed:399.000000 +I (270364) example: expect speed: 0.000000 real_pulses:0 +I (270364) example: new speed:399.000000 +I (270374) example: expect speed: 0.000000 real_pulses:0 +I (270374) example: new speed:399.000000 +I (270384) example: expect speed: 0.000000 real_pulses:0 +I (270384) example: new speed:399.000000 +I (270394) example: expect speed: 0.000000 real_pulses:0 +I (270394) example: new speed:399.000000 +I (270404) example: expect speed: 0.000000 real_pulses:0 +I (270404) example: new speed:399.000000 +I (270414) example: expect speed: 0.000000 real_pulses:0 +I (270414) example: new speed:399.000000 +I (270424) example: expect speed: 0.000000 real_pulses:0 +I (270424) example: new speed:399.000000 +I (270434) example: expect speed: 0.000000 real_pulses:0 +I (270434) example: new speed:399.000000 +I (270444) example: expect speed: 0.000000 real_pulses:0 +I (270444) example: new speed:399.000000 +I (270454) example: expect speed: 0.000000 real_pulses:0 +I (270454) example: new speed:399.000000 +I (270464) example: expect speed: 0.000000 real_pulses:0 +I (270464) example: new speed:399.000000 +I (270474) example: expect speed: 0.000000 real_pulses:0 +I (270474) example: new speed:399.000000 +I (270484) example: expect speed: 0.000000 real_pulses:0 +I (270484) example: new speed:399.000000 +I (270494) example: expect speed: 0.000000 real_pulses:0 +I (270494) example: new speed:399.000000 +I (270504) example: expect speed: 0.000000 real_pulses:0 +I (270504) example: new speed:399.000000 +I (270514) example: expect speed: 0.000000 real_pulses:0 +I (270514) example: new speed:399.000000 +I (270524) example: expect speed: 0.000000 real_pulses:0 +I (270524) example: new speed:399.000000 +I (270534) example: expect speed: 0.000000 real_pulses:0 +I (270534) example: new speed:399.000000 +I (270544) example: expect speed: 0.000000 real_pulses:0 +I (270544) example: new speed:399.000000 +I (270554) example: expect speed: 0.000000 real_pulses:0 +I (270554) example: new speed:399.000000 +I (270564) example: expect speed: 0.000000 real_pulses:0 +I (270564) example: new speed:399.000000 +I (270574) example: expect speed: 0.000000 real_pulses:0 +I (270574) example: new speed:399.000000 +I (270584) example: expect speed: 0.000000 real_pulses:0 +I (270584) example: new speed:399.000000 +I (270594) example: expect speed: 0.000000 real_pulses:0 +I (270594) example: new speed:399.000000 +I (270604) example: expect speed: 0.000000 real_pulses:0 +I (270604) example: new speed:399.000000 +I (270614) example: expect speed: 0.000000 real_pulses:0 +I (270614) example: new speed:399.000000 +I (270624) example: expect speed: 0.000000 real_pulses:0 +I (270624) example: new speed:399.000000 +I (270634) example: expect speed: 0.000000 real_pulses:0 +I (270634) example: new speed:399.000000 +I (270644) example: expect speed: 0.000000 real_pulses:0 +I (270644) example: new speed:399.000000 +I (270654) example: expect speed: 0.000000 real_pulses:0 +I (270654) example: new speed:399.000000 +I (270664) example: expect speed: 0.000000 real_pulses:0 +I (270664) example: new speed:399.000000 +I (270674) example: expect speed: 0.000000 real_pulses:0 +I (270674) example: new speed:399.000000 +I (270684) example: expect speed: 0.000000 real_pulses:0 +I (270684) example: new speed:399.000000 +I (270694) example: expect speed: 0.000000 real_pulses:0 +I (270694) example: new speed:399.000000 +I (270704) example: expect speed: 0.000000 real_pulses:0 +I (270704) example: new speed:399.000000 +I (270714) example: expect speed: 0.000000 real_pulses:0 +I (270714) example: new speed:399.000000 +I (270724) example: expect speed: 0.000000 real_pulses:0 +I (270724) example: new speed:399.000000 +I (270734) example: expect speed: 0.000000 real_pulses:0 +I (270734) example: new speed:399.000000 +I (270744) example: expect speed: 0.000000 real_pulses:0 +I (270744) example: new speed:399.000000 +I (270754) example: expect speed: 0.000000 real_pulses:0 +I (270754) example: new speed:399.000000 +I (270764) example: expect speed: 0.000000 real_pulses:0 +I (270764) example: new speed:399.000000 +I (270774) example: expect speed: 0.000000 real_pulses:0 +I (270774) example: new speed:399.000000 +I (270784) example: expect speed: 0.000000 real_pulses:0 +I (270784) example: new speed:399.000000 +I (270794) example: expect speed: 0.000000 real_pulses:0 +I (270804) example: new speed:399.000000 +I (270804) modbus tcp: ModBusSlave_recv() +I (270804) modbus: ModbusSlaveProcess() +I (270804) modbus: check id... +I (270804) modbus: ok +I (270804) modbus: add: 0, length: 10 +I (270804) modbus: Read Holding Registers +I (270804) example: expect speed: 0.000000 real_pulses:0 +I (270814) example: new speed:399.000000 +I (270814) example: expect speed: 0.000000 real_pulses:0 +I (270814) example: new speed:399.000000 +I (270824) example: expect speed: 0.000000 real_pulses:0 +I (270824) example: new speed:399.000000 +I (270834) example: expect speed: 0.000000 real_pulses:0 +I (270834) example: new speed:399.000000 +I (270844) example: expect speed: 0.000000 real_pulses:0 +I (270844) example: new speed:399.000000 +I (270854) example: expect speed: 0.000000 real_pulses:0 +I (270854) example: new speed:399.000000 +I (270864) example: expect speed: 0.000000 real_pulses:0 +I (270874) example: new speed:399.000000 +I (270874) example: expect speed: 0.000000 real_pulses:0 +I (270874) example: new speed:399.000000 +I (270884) example: expect speed: 0.000000 real_pulses:0 +I (270894) example: new speed:399.000000 +I (270894) example: expect speed: 0.000000 real_pulses:0 +I (270904) example: new speed:399.000000 +I (270904) example: expect speed: 0.000000 real_pulses:0 +I (270904) example: new speed:399.000000 +I (270914) example: expect speed: 0.000000 real_pulses:0 +I (270914) example: new speed:399.000000 +I (270924) example: expect speed: 0.000000 real_pulses:0 +I (270924) example: new speed:399.000000 +I (270934) example: expect speed: 0.000000 real_pulses:0 +I (270934) example: new speed:399.000000 +I (270944) example: expect speed: 0.000000 real_pulses:0 +I (270944) example: new speed:399.000000 +I (270954) example: expect speed: 0.000000 real_pulses:0 +I (270954) example: new speed:399.000000 +I (270964) example: expect speed: 0.000000 real_pulses:0 +I (270964) example: new speed:399.000000 +I (270974) example: expect speed: 0.000000 real_pulses:0 +I (270974) example: new speed:399.000000 +I (270984) example: expect speed: 0.000000 real_pulses:0 +I (270984) example: new speed:399.000000 +I (270994) example: expect speed: 0.000000 real_pulses:0 +I (270994) example: new speed:399.000000 +I (271004) example: expect speed: 0.000000 real_pulses:0 +I (271004) example: new speed:399.000000 +I (271014) example: expect speed: 0.000000 real_pulses:0 +I (271014) example: new speed:399.000000 +I (271024) example: expect speed: 0.000000 real_pulses:0 +I (271024) example: new speed:399.000000 +I (271034) example: expect speed: 0.000000 real_pulses:0 +I (271034) example: new speed:399.000000 +I (271044) example: expect speed: 0.000000 real_pulses:0 +I (271044) example: new speed:399.000000 +I (271054) example: expect speed: 0.000000 real_pulses:0 +I (271054) example: new speed:399.000000 +I (271064) example: expect speed: 0.000000 real_pulses:0 +I (271064) example: new speed:399.000000 +I (271074) example: expect speed: 0.000000 real_pulses:0 +I (271074) example: new speed:399.000000 +I (271084) example: expect speed: 0.000000 real_pulses:0 +I (271084) example: new speed:399.000000 +I (271094) example: expect speed: 0.000000 real_pulses:0 +I (271094) example: new speed:399.000000 +I (271104) example: expect speed: 0.000000 real_pulses:0 +I (271104) example: new speed:399.000000 +I (271114) example: expect speed: 0.000000 real_pulses:0 +I (271114) example: new speed:399.000000 +I (271124) example: expect speed: 0.000000 real_pulses:0 +I (271124) example: new speed:399.000000 +I (271134) example: expect speed: 0.000000 real_pulses:0 +I (271134) example: new speed:399.000000 +I (271144) example: expect speed: 0.000000 real_pulses:0 +I (271144) example: new speed:399.000000 +I (271154) example: expect speed: 0.000000 real_pulses:0 +I (271154) example: new speed:399.000000 +I (271164) example: expect speed: 0.000000 real_pulses:0 +I (271164) example: new speed:399.000000 +I (271174) example: expect speed: 0.000000 real_pulses:0 +I (271174) example: new speed:399.000000 +I (271184) example: expect speed: 0.000000 real_pulses:0 +I (271184) example: new speed:399.000000 +I (271194) example: expect speed: 0.000000 real_pulses:0 +I (271194) example: new speed:399.000000 +I (271204) example: expect speed: 0.000000 real_pulses:0 +I (271204) example: new speed:399.000000 +I (271214) example: expect speed: 0.000000 real_pulses:0 +I (271214) example: new speed:399.000000 +I (271224) example: expect speed: 0.000000 real_pulses:0 +I (271224) example: new speed:399.000000 +I (271234) example: expect speed: 0.000000 real_pulses:0 +I (271234) example: new speed:399.000000 +I (271244) example: expect speed: 0.000000 real_pulses:0 +I (271244) example: new speed:399.000000 +I (271254) example: expect speed: 0.000000 real_pulses:0 +I (271254) example: new speed:399.000000 +I (271264) example: expect speed: 0.000000 real_pulses:0 +I (271264) example: new speed:399.000000 +I (271274) example: expect speed: 0.000000 real_pulses:0 +I (271274) example: new speed:399.000000 +I (271284) example: expect speed: 0.000000 real_pulses:0 +I (271284) example: new speed:399.000000 +I (271294) example: expect speed: 0.000000 real_pulses:0 +I (271294) example: new speed:399.000000 +I (271304) example: expect speed: 0.000000 real_pulses:0 +I (271304) example: new speed:399.000000 +I (271314) example: expect speed: 0.000000 real_pulses:0 +I (271314) example: new speed:399.000000 +I (271324) example: expect speed: 0.000000 real_pulses:0 +I (271324) example: new speed:399.000000 +I (271334) example: expect speed: 0.000000 real_pulses:0 +I (271334) example: new speed:399.000000 +I (271344) example: expect speed: 0.000000 real_pulses:0 +I (271344) example: new speed:399.000000 +I (271354) example: expect speed: 0.000000 real_pulses:0 +I (271354) example: new speed:399.000000 +I (271364) example: expect speed: 0.000000 real_pulses:0 +I (271364) example: new speed:399.000000 +I (271374) example: expect speed: 0.000000 real_pulses:0 +I (271374) example: new speed:399.000000 +I (271384) example: expect speed: 0.000000 real_pulses:0 +I (271384) example: new speed:399.000000 +I (271394) example: expect speed: 0.000000 real_pulses:0 +I (271394) example: new speed:399.000000 +I (271404) example: expect speed: 0.000000 real_pulses:0 +I (271404) example: new speed:399.000000 +I (271414) example: expect speed: 0.000000 real_pulses:0 +I (271414) example: new speed:399.000000 +I (271424) example: expect speed: 0.000000 real_pulses:0 +I (271424) example: new speed:399.000000 +I (271434) example: expect speed: 0.000000 real_pulses:0 +I (271434) example: new speed:399.000000 +I (271444) example: expect speed: 0.000000 real_pulses:0 +I (271444) example: new speed:399.000000 +I (271454) example: expect speed: 0.000000 real_pulses:0 +I (271454) example: new speed:399.000000 +I (271464) example: expect speed: 0.000000 real_pulses:0 +I (271464) example: new speed:399.000000 +I (271474) example: expect speed: 0.000000 real_pulses:0 +I (271474) example: new speed:399.000000 +I (271484) example: expect speed: 0.000000 real_pulses:0 +I (271484) example: new speed:399.000000 +I (271494) example: expect speed: 0.000000 real_pulses:0 +I (271494) example: new speed:399.000000 +I (271504) example: expect speed: 0.000000 real_pulses:0 +I (271504) example: new speed:399.000000 +I (271514) example: expect speed: 0.000000 real_pulses:0 +I (271514) example: new speed:399.000000 +I (271524) example: expect speed: 0.000000 real_pulses:0 +I (271524) example: new speed:399.000000 +I (271534) example: expect speed: 0.000000 real_pulses:0 +I (271534) example: new speed:399.000000 +I (271544) example: expect speed: 0.000000 real_pulses:0 +I (271544) example: new speed:399.000000 +I (271554) example: expect speed: 0.000000 real_pulses:0 +I (271554) example: new speed:399.000000 +I (271564) example: expect speed: 0.000000 real_pulses:0 +I (271564) example: new speed:399.000000 +I (271574) example: expect speed: 0.000000 real_pulses:0 +I (271574) example: new speed:399.000000 +I (271584) example: expect speed: 0.000000 real_pulses:0 +I (271584) example: new speed:399.000000 +I (271594) example: expect speed: 0.000000 real_pulses:0 +I (271594) example: new speed:399.000000 +I (271604) example: expect speed: 0.000000 real_pulses:0 +I (271604) example: new speed:399.000000 +I (271614) example: expect speed: 0.000000 real_pulses:0 +I (271614) example: new speed:399.000000 +I (271624) example: expect speed: 0.000000 real_pulses:0 +I (271624) example: new speed:399.000000 +I (271634) example: expect speed: 0.000000 real_pulses:0 +I (271634) example: new speed:399.000000 +I (271644) example: expect speed: 0.000000 real_pulses:0 +I (271644) example: new speed:399.000000 +I (271654) example: expect speed: 0.000000 real_pulses:0 +I (271654) example: new speed:399.000000 +I (271664) example: expect speed: 0.000000 real_pulses:0 +I (271664) example: new speed:399.000000 +I (271674) example: expect speed: 0.000000 real_pulses:0 +I (271674) example: new speed:399.000000 +I (271684) example: expect speed: 0.000000 real_pulses:0 +I (271684) example: new speed:399.000000 +I (271694) example: expect speed: 0.000000 real_pulses:0 +I (271694) example: new speed:399.000000 +I (271704) example: expect speed: 0.000000 real_pulses:0 +I (271704) example: new speed:399.000000 +I (271714) example: expect speed: 0.000000 real_pulses:0 +I (271714) example: new speed:399.000000 +I (271724) example: expect speed: 0.000000 real_pulses:0 +I (271724) example: new speed:399.000000 +I (271734) example: expect speed: 0.000000 real_pulses:0 +I (271734) example: new speed:399.000000 +I (271744) example: expect speed: 0.000000 real_pulses:0 +I (271744) example: new speed:399.000000 +I (271754) example: expect speed: 0.000000 real_pulses:0 +I (271754) example: new speed:399.000000 +I (271764) example: expect speed: 0.000000 real_pulses:0 +I (271764) example: new speed:399.000000 +I (271774) example: expect speed: 0.000000 real_pulses:0 +I (271774) example: new speed:399.000000 +I (271784) example: expect speed: 0.000000 real_pulses:0 +I (271784) example: new speed:399.000000 +I (271794) example: expect speed: 0.000000 real_pulses:0 +I (271794) example: new speed:399.000000 +I (271804) example: expect speed: 0.000000 real_pulses:0 +I (271804) example: new speed:399.000000 +I (271814) example: expect speed: 0.000000 real_pulses:0 +I (271824) example: new speed:399.000000 +I (271824) modbus tcp: ModBusSlave_recv() +I (271824) modbus: ModbusSlaveProcess() +I (271824) modbus: check id... +I (271824) modbus: ok +I (271824) modbus: add: 0, length: 10 +I (271824) modbus: Read Holding Registers +I (271824) example: expect speed: 0.000000 real_pulses:0 +I (271834) example: new speed:399.000000 +I (271834) example: expect speed: 0.000000 real_pulses:0 +I (271834) example: new speed:399.000000 +I (271844) example: expect speed: 0.000000 real_pulses:0 +I (271844) example: new speed:399.000000 +I (271854) example: expect speed: 0.000000 real_pulses:0 +I (271854) example: new speed:399.000000 +I (271864) example: expect speed: 0.000000 real_pulses:0 +I (271864) example: new speed:399.000000 +I (271874) example: expect speed: 0.000000 real_pulses:0 +I (271884) example: new speed:399.000000 +I (271884) example: expect speed: 0.000000 real_pulses:0 +I (271884) example: new speed:399.000000 +I (271894) example: expect speed: 0.000000 real_pulses:0 +I (271894) example: new speed:399.000000 +I (271904) example: expect speed: 0.000000 real_pulses:0 +I (271904) example: new speed:399.000000 +I (271914) example: expect speed: 0.000000 real_pulses:0 +I (271914) example: new speed:399.000000 +I (271924) example: expect speed: 0.000000 real_pulses:0 +I (271934) example: new speed:399.000000 +I (271934) example: expect speed: 0.000000 real_pulses:0 +I (271934) example: new speed:399.000000 +I (271944) example: expect speed: 0.000000 real_pulses:0 +I (271944) example: new speed:399.000000 +I (271954) example: expect speed: 0.000000 real_pulses:0 +I (271954) example: new speed:399.000000 +I (271964) example: expect speed: 0.000000 real_pulses:0 +I (271964) example: new speed:399.000000 +I (271974) example: expect speed: 0.000000 real_pulses:0 +I (271974) example: new speed:399.000000 +I (271984) example: expect speed: 0.000000 real_pulses:0 +I (271984) example: new speed:399.000000 +I (271994) example: expect speed: 0.000000 real_pulses:0 +I (271994) example: new speed:399.000000 +I (272004) example: expect speed: 0.000000 real_pulses:0 +I (272004) example: new speed:399.000000 +I (272014) example: expect speed: 0.000000 real_pulses:0 +I (272014) example: new speed:399.000000 +I (272024) example: expect speed: 0.000000 real_pulses:0 +I (272024) example: new speed:399.000000 +I (272034) example: expect speed: 0.000000 real_pulses:0 +I (272034) example: new speed:399.000000 +I (272044) example: expect speed: 0.000000 real_pulses:0 +I (272044) example: new speed:399.000000 +I (272054) example: expect speed: 0.000000 real_pulses:0 +I (272054) example: new speed:399.000000 +I (272064) example: expect speed: 0.000000 real_pulses:0 +I (272064) example: new speed:399.000000 +I (272074) example: expect speed: 0.000000 real_pulses:0 +I (272074) example: new speed:399.000000 +I (272084) example: expect speed: 0.000000 real_pulses:0 +I (272084) example: new speed:399.000000 +I (272094) example: expect speed: 0.000000 real_pulses:0 +I (272094) example: new speed:399.000000 +I (272104) example: expect speed: 0.000000 real_pulses:0 +I (272104) example: new speed:399.000000 +I (272114) example: expect speed: 0.000000 real_pulses:0 +I (272114) example: new speed:399.000000 +I (272124) example: expect speed: 0.000000 real_pulses:0 +I (272124) example: new speed:399.000000 +I (272134) example: expect speed: 0.000000 real_pulses:0 +I (272134) example: new speed:399.000000 +I (272144) example: expect speed: 0.000000 real_pulses:0 +I (272144) example: new speed:399.000000 +I (272154) example: expect speed: 0.000000 real_pulses:0 +I (272154) example: new speed:399.000000 +I (272164) example: expect speed: 0.000000 real_pulses:0 +I (272164) example: new speed:399.000000 +I (272174) example: expect speed: 0.000000 real_pulses:0 +I (272174) example: new speed:399.000000 +I (272184) example: expect speed: 0.000000 real_pulses:0 +I (272184) example: new speed:399.000000 +I (272194) example: expect speed: 0.000000 real_pulses:0 +I (272194) example: new speed:399.000000 +I (272204) example: expect speed: 0.000000 real_pulses:0 +I (272204) example: new speed:399.000000 +I (272214) example: expect speed: 0.000000 real_pulses:0 +I (272214) example: new speed:399.000000 +I (272224) example: expect speed: 0.000000 real_pulses:0 +I (272224) example: new speed:399.000000 +I (272234) example: expect speed: 0.000000 real_pulses:0 +I (272234) example: new speed:399.000000 +I (272244) example: expect speed: 0.000000 real_pulses:0 +I (272244) example: new speed:399.000000 +I (272254) example: expect speed: 0.000000 real_pulses:0 +I (272254) example: new speed:399.000000 +I (272264) example: expect speed: 0.000000 real_pulses:0 +I (272264) example: new speed:399.000000 +I (272274) example: expect speed: 0.000000 real_pulses:0 +I (272274) example: new speed:399.000000 +I (272284) example: expect speed: 0.000000 real_pulses:0 +I (272284) example: new speed:399.000000 +I (272294) example: expect speed: 0.000000 real_pulses:0 +I (272294) example: new speed:399.000000 +I (272304) example: expect speed: 0.000000 real_pulses:0 +I (272304) example: new speed:399.000000 +I (272314) example: expect speed: 0.000000 real_pulses:0 +I (272314) example: new speed:399.000000 +I (272324) example: expect speed: 0.000000 real_pulses:0 +I (272334) example: new speed:399.000000 +I (272334) example: expect speed: 0.000000 real_pulses:0 +I (272334) example: new speed:399.000000 +I (272344) example: expect speed: 0.000000 real_pulses:0 +I (272344) example: new speed:399.000000 +I (272354) example: expect speed: 0.000000 real_pulses:0 +I (272354) example: new speed:399.000000 +I (272364) example: expect speed: 0.000000 real_pulses:0 +I (272364) example: new speed:399.000000 +I (272374) example: expect speed: 0.000000 real_pulses:0 +I (272374) example: new speed:399.000000 +I (272384) example: expect speed: 0.000000 real_pulses:0 +I (272384) example: new speed:399.000000 +I (272394) example: expect speed: 0.000000 real_pulses:0 +I (272394) example: new speed:399.000000 +I (272404) example: expect speed: 0.000000 real_pulses:0 +I (272404) example: new speed:399.000000 +I (272414) example: expect speed: 0.000000 real_pulses:0 +I (272414) example: new speed:399.000000 +I (272424) example: expect speed: 0.000000 real_pulses:0 +I (272424) example: new speed:399.000000 +I (272434) example: expect speed: 0.000000 real_pulses:0 +I (272434) example: new speed:399.000000 +I (272444) example: expect speed: 0.000000 real_pulses:0 +I (272444) example: new speed:399.000000 +I (272454) example: expect speed: 0.000000 real_pulses:0 +I (272454) example: new speed:399.000000 +I (272464) example: expect speed: 0.000000 real_pulses:0 +I (272464) example: new speed:399.000000 +I (272474) example: expect speed: 0.000000 real_pulses:0 +I (272474) example: new speed:399.000000 +I (272484) example: expect speed: 0.000000 real_pulses:0 +I (272484) example: new speed:399.000000 +I (272494) example: expect speed: 0.000000 real_pulses:0 +I (272494) example: new speed:399.000000 +I (272504) example: expect speed: 0.000000 real_pulses:0 +I (272504) example: new speed:399.000000 +I (272514) example: expect speed: 0.000000 real_pulses:0 +I (272514) example: new speed:399.000000 +I (272524) example: expect speed: 0.000000 real_pulses:0 +I (272524) example: new speed:399.000000 +I (272534) example: expect speed: 0.000000 real_pulses:0 +I (272534) example: new speed:399.000000 +I (272544) example: expect speed: 0.000000 real_pulses:0 +I (272544) example: new speed:399.000000 +I (272554) example: expect speed: 0.000000 real_pulses:0 +I (272554) example: new speed:399.000000 +I (272564) example: expect speed: 0.000000 real_pulses:0 +I (272564) example: new speed:399.000000 +I (272574) example: expect speed: 0.000000 real_pulses:0 +I (272574) example: new speed:399.000000 +I (272584) example: expect speed: 0.000000 real_pulses:0 +I (272584) example: new speed:399.000000 +I (272594) example: expect speed: 0.000000 real_pulses:0 +I (272594) example: new speed:399.000000 +I (272604) example: expect speed: 0.000000 real_pulses:0 +I (272604) example: new speed:399.000000 +I (272614) example: expect speed: 0.000000 real_pulses:0 +I (272614) example: new speed:399.000000 +I (272624) example: expect speed: 0.000000 real_pulses:0 +I (272624) example: new speed:399.000000 +I (272634) example: expect speed: 0.000000 real_pulses:0 +I (272634) example: new speed:399.000000 +I (272644) example: expect speed: 0.000000 real_pulses:0 +I (272644) example: new speed:399.000000 +I (272654) example: expect speed: 0.000000 real_pulses:0 +I (272654) example: new speed:399.000000 +I (272664) example: expect speed: 0.000000 real_pulses:0 +I (272664) example: new speed:399.000000 +I (272674) example: expect speed: 0.000000 real_pulses:0 +I (272674) example: new speed:399.000000 +I (272684) example: expect speed: 0.000000 real_pulses:0 +I (272684) example: new speed:399.000000 +I (272694) example: expect speed: 0.000000 real_pulses:0 +I (272694) example: new speed:399.000000 +I (272704) example: expect speed: 0.000000 real_pulses:0 +I (272704) example: new speed:399.000000 +I (272714) example: expect speed: 0.000000 real_pulses:0 +I (272714) example: new speed:399.000000 +I (272724) example: expect speed: 0.000000 real_pulses:0 +I (272724) example: new speed:399.000000 +I (272734) example: expect speed: 0.000000 real_pulses:0 +I (272734) example: new speed:399.000000 +I (272744) example: expect speed: 0.000000 real_pulses:0 +I (272744) example: new speed:399.000000 +I (272754) example: expect speed: 0.000000 real_pulses:0 +I (272754) example: new speed:399.000000 +I (272764) example: expect speed: 0.000000 real_pulses:0 +I (272764) example: new speed:399.000000 +I (272774) example: expect speed: 0.000000 real_pulses:0 +I (272774) example: new speed:399.000000 +I (272784) example: expect speed: 0.000000 real_pulses:0 +I (272784) example: new speed:399.000000 +I (272794) example: expect speed: 0.000000 real_pulses:0 +I (272794) example: new speed:399.000000 +I (272804) example: expect speed: 0.000000 real_pulses:0 +I (272804) example: new speed:399.000000 +I (272814) example: expect speed: 0.000000 real_pulses:0 +I (272814) example: new speed:399.000000 +I (272824) example: expect speed: 0.000000 real_pulses:0 +I (272824) example: new speed:399.000000 +I (272834) example: expect speed: 0.000000 real_pulses:0 +I (272834) example: new speed:399.000000 +I (272844) example: expect speed: 0.000000 real_pulses:0 +I (272854) example: new speed:399.000000 +I (272854) example: expect speed: 0.000000 real_pulses:0 +I (272854) example: new speed:399.000000 +I (272864) example: expect speed: 0.000000 real_pulses:0 +I (272864) example: new speed:399.000000 +I (272874) example: expect speed: 0.000000 real_pulses:0 +I (272874) example: new speed:399.000000 +I (272884) modbus tcp: ModBusSlave_recv() +I (272884) example: expect speed: 0.000000 real_pulses:0 +I (272884) modbus: ModbusSlaveProcess() +I (272894) example: new speed:399.000000 +I (272894) modbus: check id... +I (272894) modbus: ok +I (272894) modbus: add: 0, length: 10 +I (272894) modbus: Read Holding Registers +I (272894) example: expect speed: 0.000000 real_pulses:0 +I (272904) example: new speed:399.000000 +I (272904) example: expect speed: 0.000000 real_pulses:0 +I (272904) example: new speed:399.000000 +I (272914) example: expect speed: 0.000000 real_pulses:0 +I (272914) example: new speed:399.000000 +I (272924) example: expect speed: 0.000000 real_pulses:0 +I (272924) example: new speed:399.000000 +I (272934) example: expect speed: 0.000000 real_pulses:0 +I (272934) example: new speed:399.000000 +I (272944) example: expect speed: 0.000000 real_pulses:0 +I (272944) example: new speed:399.000000 +I (272954) example: expect speed: 0.000000 real_pulses:0 +I (272964) example: new speed:399.000000 +I (272964) example: expect speed: 0.000000 real_pulses:0 +I (272964) example: new speed:399.000000 +I (272974) example: expect speed: 0.000000 real_pulses:0 +I (272974) example: new speed:399.000000 +I (272984) example: expect speed: 0.000000 real_pulses:0 +I (272984) example: new speed:399.000000 +I (272994) example: expect speed: 0.000000 real_pulses:0 +I (272994) example: new speed:399.000000 +I (273004) example: expect speed: 0.000000 real_pulses:0 +I (273014) example: new speed:399.000000 +I (273014) example: expect speed: 0.000000 real_pulses:0 +I (273014) example: new speed:399.000000 +I (273024) example: expect speed: 0.000000 real_pulses:0 +I (273024) example: new speed:399.000000 +I (273034) example: expect speed: 0.000000 real_pulses:0 +I (273034) example: new speed:399.000000 +I (273044) example: expect speed: 0.000000 real_pulses:0 +I (273054) example: new speed:399.000000 +I (273054) example: expect speed: 0.000000 real_pulses:0 +I (273054) example: new speed:399.000000 +I (273064) example: expect speed: 0.000000 real_pulses:0 +I (273064) example: new speed:399.000000 +I (273074) example: expect speed: 0.000000 real_pulses:0 +I (273074) example: new speed:399.000000 +I (273084) example: expect speed: 0.000000 real_pulses:0 +I (273084) example: new speed:399.000000 +I (273094) example: expect speed: 0.000000 real_pulses:0 +I (273094) example: new speed:399.000000 +I (273104) example: expect speed: 0.000000 real_pulses:0 +I (273104) example: new speed:399.000000 +I (273114) example: expect speed: 0.000000 real_pulses:0 +I (273114) example: new speed:399.000000 +I (273124) example: expect speed: 0.000000 real_pulses:0 +I (273124) example: new speed:399.000000 +I (273134) example: expect speed: 0.000000 real_pulses:0 +I (273134) example: new speed:399.000000 +I (273144) example: expect speed: 0.000000 real_pulses:0 +I (273144) example: new speed:399.000000 +I (273154) example: expect speed: 0.000000 real_pulses:0 +I (273154) example: new speed:399.000000 +I (273164) example: expect speed: 0.000000 real_pulses:0 +I (273164) example: new speed:399.000000 +I (273174) example: expect speed: 0.000000 real_pulses:0 +I (273174) example: new speed:399.000000 +I (273184) example: expect speed: 0.000000 real_pulses:0 +I (273184) example: new speed:399.000000 +I (273194) example: expect speed: 0.000000 real_pulses:0 +I (273194) example: new speed:399.000000 +I (273204) example: expect speed: 0.000000 real_pulses:0 +I (273204) example: new speed:399.000000 +I (273214) example: expect speed: 0.000000 real_pulses:0 +I (273214) example: new speed:399.000000 +I (273224) example: expect speed: 0.000000 real_pulses:0 +I (273224) example: new speed:399.000000 +I (273234) example: expect speed: 0.000000 real_pulses:0 +I (273234) example: new speed:399.000000 +I (273244) example: expect speed: 0.000000 real_pulses:0 +I (273244) example: new speed:399.000000 +I (273254) example: expect speed: 0.000000 real_pulses:0 +I (273264) example: new speed:399.000000 +I (273264) example: expect speed: 0.000000 real_pulses:0 +I (273264) example: new speed:399.000000 +I (273274) example: expect speed: 0.000000 real_pulses:0 +I (273274) example: new speed:399.000000 +I (273284) example: expect speed: 0.000000 real_pulses:0 +I (273284) example: new speed:399.000000 +I (273294) example: expect speed: 0.000000 real_pulses:0 +I (273294) example: new speed:399.000000 +I (273304) example: expect speed: 0.000000 real_pulses:0 +I (273304) example: new speed:399.000000 +I (273314) example: expect speed: 0.000000 real_pulses:0 +I (273314) example: new speed:399.000000 +I (273324) example: expect speed: 0.000000 real_pulses:0 +I (273324) example: new speed:399.000000 +I (273334) example: expect speed: 0.000000 real_pulses:0 +I (273334) example: new speed:399.000000 +I (273344) example: expect speed: 0.000000 real_pulses:0 +I (273344) example: new speed:399.000000 +I (273354) example: expect speed: 0.000000 real_pulses:0 +I (273354) example: new speed:399.000000 +I (273364) example: expect speed: 0.000000 real_pulses:0 +I (273364) example: new speed:399.000000 +I (273374) example: expect speed: 0.000000 real_pulses:0 +I (273374) example: new speed:399.000000 +I (273384) example: expect speed: 0.000000 real_pulses:0 +I (273384) example: new speed:399.000000 +I (273394) example: expect speed: 0.000000 real_pulses:0 +I (273394) example: new speed:399.000000 +I (273404) example: expect speed: 0.000000 real_pulses:0 +I (273404) example: new speed:399.000000 +I (273414) example: expect speed: 0.000000 real_pulses:0 +I (273414) example: new speed:399.000000 +I (273424) example: expect speed: 0.000000 real_pulses:0 +I (273424) example: new speed:399.000000 +I (273434) example: expect speed: 0.000000 real_pulses:0 +I (273434) example: new speed:399.000000 +I (273444) example: expect speed: 0.000000 real_pulses:0 +I (273444) example: new speed:399.000000 +I (273454) example: expect speed: 0.000000 real_pulses:0 +I (273454) example: new speed:399.000000 +I (273464) example: expect speed: 0.000000 real_pulses:0 +I (273464) example: new speed:399.000000 +I (273474) example: expect speed: 0.000000 real_pulses:0 +I (273474) example: new speed:399.000000 +I (273484) example: expect speed: 0.000000 real_pulses:0 +I (273484) example: new speed:399.000000 +I (273494) example: expect speed: 0.000000 real_pulses:0 +I (273494) example: new speed:399.000000 +I (273504) example: expect speed: 0.000000 real_pulses:0 +I (273504) example: new speed:399.000000 +I (273514) example: expect speed: 0.000000 real_pulses:0 +I (273514) example: new speed:399.000000 +I (273524) example: expect speed: 0.000000 real_pulses:0 +I (273524) example: new speed:399.000000 +I (273534) example: expect speed: 0.000000 real_pulses:0 +I (273534) example: new speed:399.000000 +I (273544) example: expect speed: 0.000000 real_pulses:0 +I (273544) example: new speed:399.000000 +I (273554) example: expect speed: 0.000000 real_pulses:0 +I (273554) example: new speed:399.000000 +I (273564) example: expect speed: 0.000000 real_pulses:0 +I (273574) example: new speed:399.000000 +I (273574) example: expect speed: 0.000000 real_pulses:0 +I (273574) example: new speed:399.000000 +I (273584) example: expect speed: 0.000000 real_pulses:0 +I (273584) example: new speed:399.000000 +I (273594) example: expect speed: 0.000000 real_pulses:0 +I (273594) example: new speed:399.000000 +I (273604) example: expect speed: 0.000000 real_pulses:0 +I (273604) example: new speed:399.000000 +I (273614) example: expect speed: 0.000000 real_pulses:0 +I (273614) example: new speed:399.000000 +I (273624) example: expect speed: 0.000000 real_pulses:0 +I (273624) example: new speed:399.000000 +I (273634) example: expect speed: 0.000000 real_pulses:0 +I (273634) example: new speed:399.000000 +I (273644) example: expect speed: 0.000000 real_pulses:0 +I (273644) example: new speed:399.000000 +I (273654) example: expect speed: 0.000000 real_pulses:0 +I (273654) example: new speed:399.000000 +I (273664) example: expect speed: 0.000000 real_pulses:0 +I (273664) example: new speed:399.000000 +I (273674) example: expect speed: 0.000000 real_pulses:0 +I (273674) example: new speed:399.000000 +I (273684) example: expect speed: 0.000000 real_pulses:0 +I (273684) example: new speed:399.000000 +I (273694) example: expect speed: 0.000000 real_pulses:0 +I (273694) example: new speed:399.000000 +I (273704) example: expect speed: 0.000000 real_pulses:0 +I (273704) example: new speed:399.000000 +I (273714) example: expect speed: 0.000000 real_pulses:0 +I (273714) example: new speed:399.000000 +I (273724) example: expect speed: 0.000000 real_pulses:0 +I (273724) example: new speed:399.000000 +I (273734) example: expect speed: 0.000000 real_pulses:0 +I (273734) example: new speed:399.000000 +I (273744) example: expect speed: 0.000000 real_pulses:0 +I (273744) example: new speed:399.000000 +I (273754) example: expect speed: 0.000000 real_pulses:0 +I (273754) example: new speed:399.000000 +I (273764) example: expect speed: 0.000000 real_pulses:0 +I (273764) example: new speed:399.000000 +I (273774) example: expect speed: 0.000000 real_pulses:0 +I (273774) example: new speed:399.000000 +I (273784) example: expect speed: 0.000000 real_pulses:0 +I (273784) example: new speed:399.000000 +I (273794) example: expect speed: 0.000000 real_pulses:0 +I (273794) example: new speed:399.000000 +I (273804) example: expect speed: 0.000000 real_pulses:0 +I (273804) example: new speed:399.000000 +I (273814) example: expect speed: 0.000000 real_pulses:0 +I (273814) example: new speed:399.000000 +I (273824) example: expect speed: 0.000000 real_pulses:0 +I (273824) example: new speed:399.000000 +I (273834) example: expect speed: 0.000000 real_pulses:0 +I (273834) example: new speed:399.000000 +I (273844) example: expect speed: 0.000000 real_pulses:0 +I (273844) example: new speed:399.000000 +I (273854) example: expect speed: 0.000000 real_pulses:0 +I (273864) example: new speed:399.000000 +I (273864) example: expect speed: 0.000000 real_pulses:0 +I (273874) example: new speed:399.000000 +I (273874) modbus tcp: ModBusSlave_recv() +I (273874) modbus: ModbusSlaveProcess() +I (273874) modbus: check id... +I (273874) modbus: ok +I (273874) modbus: add: 0, length: 10 +I (273874) modbus: Read Holding Registers +I (273874) example: expect speed: 0.000000 real_pulses:0 +I (273884) example: new speed:399.000000 +I (273884) example: expect speed: 0.000000 real_pulses:0 +I (273884) example: new speed:399.000000 +I (273894) example: expect speed: 0.000000 real_pulses:0 +I (273894) example: new speed:399.000000 +I (273904) example: expect speed: 0.000000 real_pulses:0 +I (273904) example: new speed:399.000000 +I (273914) example: expect speed: 0.000000 real_pulses:0 +I (273914) example: new speed:399.000000 +I (273924) example: expect speed: 0.000000 real_pulses:0 +I (273924) example: new speed:399.000000 +I (273934) example: expect speed: 0.000000 real_pulses:0 +I (273944) example: new speed:399.000000 +I (273944) example: expect speed: 0.000000 real_pulses:0 +I (273944) example: new speed:399.000000 +I (273954) example: expect speed: 0.000000 real_pulses:0 +I (273954) example: new speed:399.000000 +I (273964) example: expect speed: 0.000000 real_pulses:0 +I (273964) example: new speed:399.000000 +I (273974) example: expect speed: 0.000000 real_pulses:0 +I (273974) example: new speed:399.000000 +I (273984) example: expect speed: 0.000000 real_pulses:0 +I (273994) example: new speed:399.000000 +I (273994) example: expect speed: 0.000000 real_pulses:0 +I (273994) example: new speed:399.000000 +I (274004) example: expect speed: 0.000000 real_pulses:0 +I (274004) example: new speed:399.000000 +I (274014) example: expect speed: 0.000000 real_pulses:0 +I (274014) example: new speed:399.000000 +I (274024) example: expect speed: 0.000000 real_pulses:0 +I (274024) example: new speed:399.000000 +I (274034) example: expect speed: 0.000000 real_pulses:0 +I (274034) example: new speed:399.000000 +I (274044) example: expect speed: 0.000000 real_pulses:0 +I (274044) example: new speed:399.000000 +I (274054) example: expect speed: 0.000000 real_pulses:0 +I (274054) example: new speed:399.000000 +I (274064) example: expect speed: 0.000000 real_pulses:0 +I (274064) example: new speed:399.000000 +I (274074) example: expect speed: 0.000000 real_pulses:0 +I (274084) example: new speed:399.000000 +I (274084) example: expect speed: 0.000000 real_pulses:0 +I (274084) example: new speed:399.000000 +I (274094) example: expect speed: 0.000000 real_pulses:0 +I (274094) example: new speed:399.000000 +I (274104) example: expect speed: 0.000000 real_pulses:0 +I (274104) example: new speed:399.000000 +I (274114) example: expect speed: 0.000000 real_pulses:0 +I (274114) example: new speed:399.000000 +I (274124) example: expect speed: 0.000000 real_pulses:0 +I (274124) example: new speed:399.000000 +I (274134) example: expect speed: 0.000000 real_pulses:0 +I (274134) example: new speed:399.000000 +I (274144) example: expect speed: 0.000000 real_pulses:0 +I (274144) example: new speed:399.000000 +I (274154) example: expect speed: 0.000000 real_pulses:0 +I (274154) example: new speed:399.000000 +I (274164) example: expect speed: 0.000000 real_pulses:0 +I (274164) example: new speed:399.000000 +I (274174) example: expect speed: 0.000000 real_pulses:0 +I (274174) example: new speed:399.000000 +I (274184) example: expect speed: 0.000000 real_pulses:0 +I (274184) example: new speed:399.000000 +I (274194) example: expect speed: 0.000000 real_pulses:0 +I (274194) example: new speed:399.000000 +I (274204) example: expect speed: 0.000000 real_pulses:0 +I (274204) example: new speed:399.000000 +I (274214) example: expect speed: 0.000000 real_pulses:0 +I (274214) example: new speed:399.000000 +I (274224) example: expect speed: 0.000000 real_pulses:0 +I (274224) example: new speed:399.000000 +I (274234) example: expect speed: 0.000000 real_pulses:0 +I (274234) example: new speed:399.000000 +I (274244) example: expect speed: 0.000000 real_pulses:0 +I (274244) example: new speed:399.000000 +I (274254) example: expect speed: 0.000000 real_pulses:0 +I (274254) example: new speed:399.000000 +I (274264) example: expect speed: 0.000000 real_pulses:0 +I (274264) example: new speed:399.000000 +I (274274) example: expect speed: 0.000000 real_pulses:0 +I (274274) example: new speed:399.000000 +I (274284) example: expect speed: 0.000000 real_pulses:0 +I (274284) example: new speed:399.000000 +I (274294) example: expect speed: 0.000000 real_pulses:0 +I (274294) example: new speed:399.000000 +I (274304) example: expect speed: 0.000000 real_pulses:0 +I (274304) example: new speed:399.000000 +I (274314) example: expect speed: 0.000000 real_pulses:0 +I (274314) example: new speed:399.000000 +I (274324) example: expect speed: 0.000000 real_pulses:0 +I (274324) example: new speed:399.000000 +I (274334) example: expect speed: 0.000000 real_pulses:0 +I (274334) example: new speed:399.000000 +I (274344) example: expect speed: 0.000000 real_pulses:0 +I (274344) example: new speed:399.000000 +I (274354) example: expect speed: 0.000000 real_pulses:0 +I (274354) example: new speed:399.000000 +I (274364) example: expect speed: 0.000000 real_pulses:0 +I (274364) example: new speed:399.000000 +I (274374) example: expect speed: 0.000000 real_pulses:0 +I (274384) example: new speed:399.000000 +I (274384) example: expect speed: 0.000000 real_pulses:0 +I (274384) example: new speed:399.000000 +I (274394) example: expect speed: 0.000000 real_pulses:0 +I (274394) example: new speed:399.000000 +I (274404) example: expect speed: 0.000000 real_pulses:0 +I (274404) example: new speed:399.000000 +I (274414) example: expect speed: 0.000000 real_pulses:0 +I (274414) example: new speed:399.000000 +I (274424) example: expect speed: 0.000000 real_pulses:0 +I (274424) example: new speed:399.000000 +I (274434) example: expect speed: 0.000000 real_pulses:0 +I (274434) example: new speed:399.000000 +I (274444) example: expect speed: 0.000000 real_pulses:0 +I (274444) example: new speed:399.000000 +I (274454) example: expect speed: 0.000000 real_pulses:0 +I (274454) example: new speed:399.000000 +I (274464) example: expect speed: 0.000000 real_pulses:0 +I (274464) example: new speed:399.000000 +I (274474) example: expect speed: 0.000000 real_pulses:0 +I (274474) example: new speed:399.000000 +I (274484) example: expect speed: 0.000000 real_pulses:0 +I (274484) example: new speed:399.000000 +I (274494) example: expect speed: 0.000000 real_pulses:0 +I (274494) example: new speed:399.000000 +I (274504) example: expect speed: 0.000000 real_pulses:0 +I (274504) example: new speed:399.000000 +I (274514) example: expect speed: 0.000000 real_pulses:0 +I (274514) example: new speed:399.000000 +I (274524) example: expect speed: 0.000000 real_pulses:0 +I (274524) example: new speed:399.000000 +I (274534) example: expect speed: 0.000000 real_pulses:0 +I (274534) example: new speed:399.000000 +I (274544) example: expect speed: 0.000000 real_pulses:0 +I (274544) example: new speed:399.000000 +I (274554) example: expect speed: 0.000000 real_pulses:0 +I (274554) example: new speed:399.000000 +I (274564) example: expect speed: 0.000000 real_pulses:0 +I (274564) example: new speed:399.000000 +I (274574) example: expect speed: 0.000000 real_pulses:0 +I (274574) example: new speed:399.000000 +I (274584) example: expect speed: 0.000000 real_pulses:0 +I (274594) example: new speed:399.000000 +I (274594) example: expect speed: 0.000000 real_pulses:0 +I (274594) example: new speed:399.000000 +I (274604) example: expect speed: 0.000000 real_pulses:0 +I (274604) example: new speed:399.000000 +I (274614) example: expect speed: 0.000000 real_pulses:0 +I (274614) example: new speed:399.000000 +I (274624) example: expect speed: 0.000000 real_pulses:0 +I (274624) example: new speed:399.000000 +I (274634) example: expect speed: 0.000000 real_pulses:0 +I (274634) example: new speed:399.000000 +I (274644) example: expect speed: 0.000000 real_pulses:0 +I (274644) example: new speed:399.000000 +I (274654) example: expect speed: 0.000000 real_pulses:0 +I (274654) example: new speed:399.000000 +I (274664) example: expect speed: 0.000000 real_pulses:0 +I (274664) example: new speed:399.000000 +I (274674) example: expect speed: 0.000000 real_pulses:0 +I (274674) example: new speed:399.000000 +I (274684) example: expect speed: 0.000000 real_pulses:0 +I (274684) example: new speed:399.000000 +I (274694) example: expect speed: 0.000000 real_pulses:0 +I (274694) example: new speed:399.000000 +I (274704) example: expect speed: 0.000000 real_pulses:0 +I (274704) example: new speed:399.000000 +I (274714) example: expect speed: 0.000000 real_pulses:0 +I (274714) example: new speed:399.000000 +I (274724) example: expect speed: 0.000000 real_pulses:0 +I (274724) example: new speed:399.000000 +I (274734) example: expect speed: 0.000000 real_pulses:0 +I (274734) example: new speed:399.000000 +I (274744) example: expect speed: 0.000000 real_pulses:0 +I (274744) example: new speed:399.000000 +I (274754) example: expect speed: 0.000000 real_pulses:0 +I (274754) example: new speed:399.000000 +I (274764) example: expect speed: 0.000000 real_pulses:0 +I (274764) example: new speed:399.000000 +I (274774) example: expect speed: 0.000000 real_pulses:0 +I (274774) example: new speed:399.000000 +I (274784) example: expect speed: 0.000000 real_pulses:0 +I (274784) example: new speed:399.000000 +I (274794) example: expect speed: 0.000000 real_pulses:0 +I (274794) example: new speed:399.000000 +I (274804) example: expect speed: 0.000000 real_pulses:0 +I (274804) example: new speed:399.000000 +I (274814) example: expect speed: 0.000000 real_pulses:0 +I (274814) example: new speed:399.000000 +I (274824) example: expect speed: 0.000000 real_pulses:0 +I (274824) example: new speed:399.000000 +I (274834) example: expect speed: 0.000000 real_pulses:0 +I (274834) example: new speed:399.000000 +I (274844) example: expect speed: 0.000000 real_pulses:0 +I (274844) example: new speed:399.000000 +I (274854) example: expect speed: 0.000000 real_pulses:0 +I (274854) example: new speed:399.000000 +I (274864) example: expect speed: 0.000000 real_pulses:0 +I (274864) example: new speed:399.000000 +I (274874) example: expect speed: 0.000000 real_pulses:0 +I (274874) example: new speed:399.000000 +I (274884) example: expect speed: 0.000000 real_pulses:0 +I (274884) example: new speed:399.000000 +I (274894) example: expect speed: 0.000000 real_pulses:0 +I (274904) example: new speed:399.000000 +I (274904) example: expect speed: 0.000000 real_pulses:0 +I (274904) example: new speed:399.000000 +I (274914) example: expect speed: 0.000000 real_pulses:0 +I (274914) example: new speed:399.000000 +I (274924) example: expect speed: 0.000000 real_pulses:0 +I (274924) example: new speed:399.000000 +I (274934) example: expect speed: 0.000000 real_pulses:0 +I (274934) example: new speed:399.000000 +I (274944) example: expect speed: 0.000000 real_pulses:0 +I (274944) example: new speed:399.000000 +I (274954) example: expect speed: 0.000000 real_pulses:0 +I (274954) example: new speed:399.000000 +I (274964) modbus tcp: ModBusSlave_recv() +I (274964) modbus: ModbusSlaveProcess() +I (274964) modbus: check id... +I (274964) modbus: ok +I (274964) modbus: add: 0, length: 10 +I (274964) modbus: Read Holding Registers +I (274964) example: expect speed: 0.000000 real_pulses:0 +I (274974) example: new speed:399.000000 +I (274974) example: expect speed: 0.000000 real_pulses:0 +I (274974) example: new speed:399.000000 +I (274984) example: expect speed: 0.000000 real_pulses:0 +I (274984) example: new speed:399.000000 +I (274994) example: expect speed: 0.000000 real_pulses:0 +I (274994) example: new speed:399.000000 +I (275004) example: expect speed: 0.000000 real_pulses:0 +I (275004) example: new speed:399.000000 +I (275014) example: expect speed: 0.000000 real_pulses:0 +I (275024) example: new speed:399.000000 +I (275024) example: expect speed: 0.000000 real_pulses:0 +I (275024) example: new speed:399.000000 +I (275034) example: expect speed: 0.000000 real_pulses:0 +I (275034) example: new speed:399.000000 +I (275044) example: expect speed: 0.000000 real_pulses:0 +I (275044) example: new speed:399.000000 +I (275054) example: expect speed: 0.000000 real_pulses:0 +I (275054) example: new speed:399.000000 +I (275064) example: expect speed: 0.000000 real_pulses:0 +I (275064) example: new speed:399.000000 +I (275074) example: expect speed: 0.000000 real_pulses:0 +I (275074) example: new speed:399.000000 +I (275084) example: expect speed: 0.000000 real_pulses:0 +I (275084) example: new speed:399.000000 +I (275094) example: expect speed: 0.000000 real_pulses:0 +I (275104) example: new speed:399.000000 +I (275104) example: expect speed: 0.000000 real_pulses:0 +I (275104) example: new speed:399.000000 +I (275114) example: expect speed: 0.000000 real_pulses:0 +I (275114) example: new speed:399.000000 +I (275124) example: expect speed: 0.000000 real_pulses:0 +I (275124) example: new speed:399.000000 +I (275134) example: expect speed: 0.000000 real_pulses:0 +I (275134) example: new speed:399.000000 +I (275144) example: expect speed: 0.000000 real_pulses:0 +I (275144) example: new speed:399.000000 +I (275154) example: expect speed: 0.000000 real_pulses:0 +I (275154) example: new speed:399.000000 +I (275164) example: expect speed: 0.000000 real_pulses:0 +I (275164) example: new speed:399.000000 +I (275174) example: expect speed: 0.000000 real_pulses:0 +I (275174) example: new speed:399.000000 +I (275184) example: expect speed: 0.000000 real_pulses:0 +I (275184) example: new speed:399.000000 +I (275194) example: expect speed: 0.000000 real_pulses:0 +I (275194) example: new speed:399.000000 +I (275204) example: expect speed: 0.000000 real_pulses:0 +I (275204) example: new speed:399.000000 +I (275214) example: expect speed: 0.000000 real_pulses:0 +I (275214) example: new speed:399.000000 +I (275224) example: expect speed: 0.000000 real_pulses:0 +I (275224) example: new speed:399.000000 +I (275234) example: expect speed: 0.000000 real_pulses:0 +I (275234) example: new speed:399.000000 +I (275244) example: expect speed: 0.000000 real_pulses:0 +I (275244) example: new speed:399.000000 +I (275254) example: expect speed: 0.000000 real_pulses:0 +I (275254) example: new speed:399.000000 +I (275264) example: expect speed: 0.000000 real_pulses:0 +I (275264) example: new speed:399.000000 +I (275274) example: expect speed: 0.000000 real_pulses:0 +I (275274) example: new speed:399.000000 +I (275284) example: expect speed: 0.000000 real_pulses:0 +I (275284) example: new speed:399.000000 +I (275294) example: expect speed: 0.000000 real_pulses:0 +I (275294) example: new speed:399.000000 +I (275304) example: expect speed: 0.000000 real_pulses:0 +I (275314) example: new speed:399.000000 +I (275314) example: expect speed: 0.000000 real_pulses:0 +I (275314) example: new speed:399.000000 +I (275324) example: expect speed: 0.000000 real_pulses:0 +I (275324) example: new speed:399.000000 +I (275334) example: expect speed: 0.000000 real_pulses:0 +I (275334) example: new speed:399.000000 +I (275344) example: expect speed: 0.000000 real_pulses:0 +I (275344) example: new speed:399.000000 +I (275354) example: expect speed: 0.000000 real_pulses:0 +I (275354) example: new speed:399.000000 +I (275364) example: expect speed: 0.000000 real_pulses:0 +I (275364) example: new speed:399.000000 +I (275374) example: expect speed: 0.000000 real_pulses:0 +I (275374) example: new speed:399.000000 +I (275384) example: expect speed: 0.000000 real_pulses:0 +I (275384) example: new speed:399.000000 +I (275394) example: expect speed: 0.000000 real_pulses:0 +I (275394) example: new speed:399.000000 +I (275404) example: expect speed: 0.000000 real_pulses:0 +I (275404) example: new speed:399.000000 +I (275414) example: expect speed: 0.000000 real_pulses:0 +I (275414) example: new speed:399.000000 +I (275424) example: expect speed: 0.000000 real_pulses:0 +I (275424) example: new speed:399.000000 +I (275434) example: expect speed: 0.000000 real_pulses:0 +I (275434) example: new speed:399.000000 +I (275444) example: expect speed: 0.000000 real_pulses:0 +I (275444) example: new speed:399.000000 +I (275454) example: expect speed: 0.000000 real_pulses:0 +I (275454) example: new speed:399.000000 +I (275464) example: expect speed: 0.000000 real_pulses:0 +I (275464) example: new speed:399.000000 +I (275474) example: expect speed: 0.000000 real_pulses:0 +I (275474) example: new speed:399.000000 +I (275484) example: expect speed: 0.000000 real_pulses:0 +I (275484) example: new speed:399.000000 +I (275494) example: expect speed: 0.000000 real_pulses:0 +I (275494) example: new speed:399.000000 +I (275504) example: expect speed: 0.000000 real_pulses:0 +I (275514) example: new speed:399.000000 +I (275514) example: expect speed: 0.000000 real_pulses:0 +I (275514) example: new speed:399.000000 +I (275524) example: expect speed: 0.000000 real_pulses:0 +I (275524) example: new speed:399.000000 +I (275534) example: expect speed: 0.000000 real_pulses:0 +I (275544) example: new speed:399.000000 +I (275544) example: expect speed: 0.000000 real_pulses:0 +I (275544) example: new speed:399.000000 +I (275554) example: expect speed: 0.000000 real_pulses:0 +I (275554) example: new speed:399.000000 +I (275564) example: expect speed: 0.000000 real_pulses:0 +I (275564) example: new speed:399.000000 +I (275574) example: expect speed: 0.000000 real_pulses:0 +I (275574) example: new speed:399.000000 +I (275584) example: expect speed: 0.000000 real_pulses:0 +I (275584) example: new speed:399.000000 +I (275594) example: expect speed: 0.000000 real_pulses:0 +I (275594) example: new speed:399.000000 +I (275604) example: expect speed: 0.000000 real_pulses:0 +I (275614) example: new speed:399.000000 +I (275614) example: expect speed: 0.000000 real_pulses:0 +I (275624) example: new speed:399.000000 +I (275624) example: expect speed: 0.000000 real_pulses:0 +I (275624) example: new speed:399.000000 +I (275634) example: expect speed: 0.000000 real_pulses:0 +I (275634) example: new speed:399.000000 +I (275644) example: expect speed: 0.000000 real_pulses:0 +I (275644) example: new speed:399.000000 +I (275654) example: expect speed: 0.000000 real_pulses:0 +I (275654) example: new speed:399.000000 +I (275664) example: expect speed: 0.000000 real_pulses:0 +I (275664) example: new speed:399.000000 +I (275674) example: expect speed: 0.000000 real_pulses:0 +I (275674) example: new speed:399.000000 +I (275684) example: expect speed: 0.000000 real_pulses:0 +I (275684) example: new speed:399.000000 +I (275694) example: expect speed: 0.000000 real_pulses:0 +I (275694) example: new speed:399.000000 +I (275704) example: expect speed: 0.000000 real_pulses:0 +I (275704) example: new speed:399.000000 +I (275714) example: expect speed: 0.000000 real_pulses:0 +I (275714) example: new speed:399.000000 +I (275724) example: expect speed: 0.000000 real_pulses:0 +I (275724) example: new speed:399.000000 +I (275734) example: expect speed: 0.000000 real_pulses:0 +I (275734) example: new speed:399.000000 +I (275744) example: expect speed: 0.000000 real_pulses:0 +I (275744) example: new speed:399.000000 +I (275754) example: expect speed: 0.000000 real_pulses:0 +I (275754) example: new speed:399.000000 +I (275764) example: expect speed: 0.000000 real_pulses:0 +I (275764) example: new speed:399.000000 +I (275774) example: expect speed: 0.000000 real_pulses:0 +I (275774) example: new speed:399.000000 +I (275784) example: expect speed: 0.000000 real_pulses:0 +I (275784) example: new speed:399.000000 +I (275794) example: expect speed: 0.000000 real_pulses:0 +I (275794) example: new speed:399.000000 +I (275804) example: expect speed: 0.000000 real_pulses:0 +I (275804) example: new speed:399.000000 +I (275814) example: expect speed: 0.000000 real_pulses:0 +I (275814) example: new speed:399.000000 +I (275824) example: expect speed: 0.000000 real_pulses:0 +I (275824) example: new speed:399.000000 +I (275834) example: expect speed: 0.000000 real_pulses:0 +I (275834) example: new speed:399.000000 +I (275844) example: expect speed: 0.000000 real_pulses:0 +I (275844) example: new speed:399.000000 +I (275854) example: expect speed: 0.000000 real_pulses:0 +I (275854) example: new speed:399.000000 +I (275864) example: expect speed: 0.000000 real_pulses:0 +I (275864) example: new speed:399.000000 +I (275874) example: expect speed: 0.000000 real_pulses:0 +I (275874) example: new speed:399.000000 +I (275884) example: expect speed: 0.000000 real_pulses:0 +I (275884) example: new speed:399.000000 +I (275894) example: expect speed: 0.000000 real_pulses:0 +I (275894) example: new speed:399.000000 +I (275904) example: expect speed: 0.000000 real_pulses:0 +I (275904) example: new speed:399.000000 +I (275914) example: expect speed: 0.000000 real_pulses:0 +I (275924) example: new speed:399.000000 +I (275924) modbus tcp: ModBusSlave_recv() +I (275924) modbus: ModbusSlaveProcess() +I (275924) modbus: check id... +I (275924) modbus: ok +I (275924) modbus: add: 0, length: 10 +I (275924) modbus: Read Holding Registers +I (275924) example: expect speed: 0.000000 real_pulses:0 +I (275934) example: new speed:399.000000 +I (275934) example: expect speed: 0.000000 real_pulses:0 +I (275934) example: new speed:399.000000 +I (275944) example: expect speed: 0.000000 real_pulses:0 +I (275944) example: new speed:399.000000 +I (275954) example: expect speed: 0.000000 real_pulses:0 +I (275954) example: new speed:399.000000 +I (275964) example: expect speed: 0.000000 real_pulses:0 +I (275964) example: new speed:399.000000 +I (275974) example: expect speed: 0.000000 real_pulses:0 +I (275984) example: new speed:399.000000 +I (275984) example: expect speed: 0.000000 real_pulses:0 +I (275984) example: new speed:399.000000 +I (275994) example: expect speed: 0.000000 real_pulses:0 +I (275994) example: new speed:399.000000 +I (276004) example: expect speed: 0.000000 real_pulses:0 +I (276004) example: new speed:399.000000 +I (276014) example: expect speed: 0.000000 real_pulses:0 +I (276014) example: new speed:399.000000 +I (276024) example: expect speed: 0.000000 real_pulses:0 +I (276024) example: new speed:399.000000 +I (276034) example: expect speed: 0.000000 real_pulses:0 +I (276034) example: new speed:399.000000 +I (276044) example: expect speed: 0.000000 real_pulses:0 +I (276054) example: new speed:399.000000 +I (276054) example: expect speed: 0.000000 real_pulses:0 +I (276054) example: new speed:399.000000 +I (276064) example: expect speed: 0.000000 real_pulses:0 +I (276064) example: new speed:399.000000 +I (276074) example: expect speed: 0.000000 real_pulses:0 +I (276074) example: new speed:399.000000 +I (276084) example: expect speed: 0.000000 real_pulses:0 +I (276084) example: new speed:399.000000 +I (276094) example: expect speed: 0.000000 real_pulses:0 +I (276094) example: new speed:399.000000 +I (276104) example: expect speed: 0.000000 real_pulses:0 +I (276104) example: new speed:399.000000 +I (276114) example: expect speed: 0.000000 real_pulses:0 +I (276124) example: new speed:399.000000 +I (276124) example: expect speed: 0.000000 real_pulses:0 +I (276134) example: new speed:399.000000 +I (276134) example: expect speed: 0.000000 real_pulses:0 +I (276134) example: new speed:399.000000 +I (276144) example: expect speed: 0.000000 real_pulses:0 +I (276144) example: new speed:399.000000 +I (276154) example: expect speed: 0.000000 real_pulses:0 +I (276154) example: new speed:399.000000 +I (276164) example: expect speed: 0.000000 real_pulses:0 +I (276164) example: new speed:399.000000 +I (276174) example: expect speed: 0.000000 real_pulses:0 +I (276174) example: new speed:399.000000 +I (276184) example: expect speed: 0.000000 real_pulses:0 +I (276184) example: new speed:399.000000 +I (276194) example: expect speed: 0.000000 real_pulses:0 +I (276194) example: new speed:399.000000 +I (276204) example: expect speed: 0.000000 real_pulses:0 +I (276204) example: new speed:399.000000 +I (276214) example: expect speed: 0.000000 real_pulses:0 +I (276214) example: new speed:399.000000 +I (276224) example: expect speed: 0.000000 real_pulses:0 +I (276224) example: new speed:399.000000 +I (276234) example: expect speed: 0.000000 real_pulses:0 +I (276234) example: new speed:399.000000 +I (276244) example: expect speed: 0.000000 real_pulses:0 +I (276244) example: new speed:399.000000 +I (276254) example: expect speed: 0.000000 real_pulses:0 +I (276254) example: new speed:399.000000 +I (276264) example: expect speed: 0.000000 real_pulses:0 +I (276264) example: new speed:399.000000 +I (276274) example: expect speed: 0.000000 real_pulses:0 +I (276274) example: new speed:399.000000 +I (276284) example: expect speed: 0.000000 real_pulses:0 +I (276284) example: new speed:399.000000 +I (276294) example: expect speed: 0.000000 real_pulses:0 +I (276294) example: new speed:399.000000 +I (276304) example: expect speed: 0.000000 real_pulses:0 +I (276304) example: new speed:399.000000 +I (276314) example: expect speed: 0.000000 real_pulses:0 +I (276314) example: new speed:399.000000 +I (276324) example: expect speed: 0.000000 real_pulses:0 +I (276324) example: new speed:399.000000 +I (276334) example: expect speed: 0.000000 real_pulses:0 +I (276334) example: new speed:399.000000 +I (276344) example: expect speed: 0.000000 real_pulses:0 +I (276344) example: new speed:399.000000 +I (276354) example: expect speed: 0.000000 real_pulses:0 +I (276354) example: new speed:399.000000 +I (276364) example: expect speed: 0.000000 real_pulses:0 +I (276364) example: new speed:399.000000 +I (276374) example: expect speed: 0.000000 real_pulses:0 +I (276374) example: new speed:399.000000 +I (276384) example: expect speed: 0.000000 real_pulses:0 +I (276384) example: new speed:399.000000 +I (276394) example: expect speed: 0.000000 real_pulses:0 +I (276394) example: new speed:399.000000 +I (276404) example: expect speed: 0.000000 real_pulses:0 +I (276404) example: new speed:399.000000 +I (276414) example: expect speed: 0.000000 real_pulses:0 +I (276414) example: new speed:399.000000 +I (276424) example: expect speed: 0.000000 real_pulses:0 +I (276424) example: new speed:399.000000 +I (276434) example: expect speed: 0.000000 real_pulses:0 +I (276444) example: new speed:399.000000 +I (276444) example: expect speed: 0.000000 real_pulses:0 +I (276444) example: new speed:399.000000 +I (276454) example: expect speed: 0.000000 real_pulses:0 +I (276454) example: new speed:399.000000 +I (276464) example: expect speed: 0.000000 real_pulses:0 +I (276464) example: new speed:399.000000 +I (276474) example: expect speed: 0.000000 real_pulses:0 +I (276474) example: new speed:399.000000 +I (276484) example: expect speed: 0.000000 real_pulses:0 +I (276484) example: new speed:399.000000 +I (276494) example: expect speed: 0.000000 real_pulses:0 +I (276494) example: new speed:399.000000 +I (276504) example: expect speed: 0.000000 real_pulses:0 +I (276504) example: new speed:399.000000 +I (276514) example: expect speed: 0.000000 real_pulses:0 +I (276514) example: new speed:399.000000 +I (276524) example: expect speed: 0.000000 real_pulses:0 +I (276524) example: new speed:399.000000 +I (276534) example: expect speed: 0.000000 real_pulses:0 +I (276534) example: new speed:399.000000 +I (276544) example: expect speed: 0.000000 real_pulses:0 +I (276544) example: new speed:399.000000 +I (276554) example: expect speed: 0.000000 real_pulses:0 +I (276554) example: new speed:399.000000 +I (276564) example: expect speed: 0.000000 real_pulses:0 +I (276564) example: new speed:399.000000 +I (276574) example: expect speed: 0.000000 real_pulses:0 +I (276574) example: new speed:399.000000 +I (276584) example: expect speed: 0.000000 real_pulses:0 +I (276584) example: new speed:399.000000 +I (276594) example: expect speed: 0.000000 real_pulses:0 +I (276594) example: new speed:399.000000 +I (276604) example: expect speed: 0.000000 real_pulses:0 +I (276604) example: new speed:399.000000 +I (276614) example: expect speed: 0.000000 real_pulses:0 +I (276614) example: new speed:399.000000 +I (276624) example: expect speed: 0.000000 real_pulses:0 +I (276624) example: new speed:399.000000 +I (276634) example: expect speed: 0.000000 real_pulses:0 +I (276634) example: new speed:399.000000 +I (276644) example: expect speed: 0.000000 real_pulses:0 +I (276644) example: new speed:399.000000 +I (276654) example: expect speed: 0.000000 real_pulses:0 +I (276654) example: new speed:399.000000 +I (276664) example: expect speed: 0.000000 real_pulses:0 +I (276664) example: new speed:399.000000 +I (276674) example: expect speed: 0.000000 real_pulses:0 +I (276674) example: new speed:399.000000 +I (276684) example: expect speed: 0.000000 real_pulses:0 +I (276684) example: new speed:399.000000 +I (276694) example: expect speed: 0.000000 real_pulses:0 +I (276694) example: new speed:399.000000 +I (276704) example: expect speed: 0.000000 real_pulses:0 +I (276704) example: new speed:399.000000 +I (276714) example: expect speed: 0.000000 real_pulses:0 +I (276714) example: new speed:399.000000 +I (276724) example: expect speed: 0.000000 real_pulses:0 +I (276724) example: new speed:399.000000 +I (276734) example: expect speed: 0.000000 real_pulses:0 +I (276744) example: new speed:399.000000 +I (276744) example: expect speed: 0.000000 real_pulses:0 +I (276744) example: new speed:399.000000 +I (276754) example: expect speed: 0.000000 real_pulses:0 +I (276754) example: new speed:399.000000 +I (276764) example: expect speed: 0.000000 real_pulses:0 +I (276764) example: new speed:399.000000 +I (276774) example: expect speed: 0.000000 real_pulses:0 +I (276774) example: new speed:399.000000 +I (276784) example: expect speed: 0.000000 real_pulses:0 +I (276784) example: new speed:399.000000 +I (276794) example: expect speed: 0.000000 real_pulses:0 +I (276794) example: new speed:399.000000 +I (276804) example: expect speed: 0.000000 real_pulses:0 +I (276804) example: new speed:399.000000 +I (276814) example: expect speed: 0.000000 real_pulses:0 +I (276814) example: new speed:399.000000 +I (276824) example: expect speed: 0.000000 real_pulses:0 +I (276824) example: new speed:399.000000 +I (276834) example: expect speed: 0.000000 real_pulses:0 +I (276844) example: new speed:399.000000 +I (276844) example: expect speed: 0.000000 real_pulses:0 +I (276844) example: new speed:399.000000 +I (276854) example: expect speed: 0.000000 real_pulses:0 +I (276854) example: new speed:399.000000 +I (276864) example: expect speed: 0.000000 real_pulses:0 +I (276864) example: new speed:399.000000 +I (276874) example: expect speed: 0.000000 real_pulses:0 +I (276874) example: new speed:399.000000 +I (276884) example: expect speed: 0.000000 real_pulses:0 +I (276884) example: new speed:399.000000 +I (276894) example: expect speed: 0.000000 real_pulses:0 +I (276894) example: new speed:399.000000 +I (276904) example: expect speed: 0.000000 real_pulses:0 +I (276904) example: new speed:399.000000 +I (276914) example: expect speed: 0.000000 real_pulses:0 +I (276914) example: new speed:399.000000 +I (276924) example: expect speed: 0.000000 real_pulses:0 +I (276924) example: new speed:399.000000 +I (276934) example: expect speed: 0.000000 real_pulses:0 +I (276934) example: new speed:399.000000 +I (276944) example: expect speed: 0.000000 real_pulses:0 +I (276954) example: new speed:399.000000 +I (276954) example: expect speed: 0.000000 real_pulses:0 +I (276954) example: new speed:399.000000 +I (276964) modbus tcp: ModBusSlave_recv() +I (276964) modbus: ModbusSlaveProcess() +I (276964) modbus: check id... +I (276964) modbus: ok +I (276964) modbus: add: 0, length: 10 +I (276964) modbus: Read Holding Registers +I (276964) example: expect speed: 0.000000 real_pulses:0 +I (276974) example: new speed:399.000000 +I (276974) example: expect speed: 0.000000 real_pulses:0 +I (276974) example: new speed:399.000000 +I (276984) example: expect speed: 0.000000 real_pulses:0 +I (276984) example: new speed:399.000000 +I (276994) example: expect speed: 0.000000 real_pulses:0 +I (276994) example: new speed:399.000000 +I (277004) example: expect speed: 0.000000 real_pulses:0 +I (277004) example: new speed:399.000000 +I (277014) example: expect speed: 0.000000 real_pulses:0 +I (277014) example: new speed:399.000000 +I (277024) example: expect speed: 0.000000 real_pulses:0 +I (277024) example: new speed:399.000000 +I (277034) example: expect speed: 0.000000 real_pulses:0 +I (277044) example: new speed:399.000000 +I (277044) example: expect speed: 0.000000 real_pulses:0 +I (277044) example: new speed:399.000000 +I (277054) example: expect speed: 0.000000 real_pulses:0 +I (277054) example: new speed:399.000000 +I (277064) example: expect speed: 0.000000 real_pulses:0 +I (277064) example: new speed:399.000000 +I (277074) example: expect speed: 0.000000 real_pulses:0 +I (277074) example: new speed:399.000000 +I (277084) example: expect speed: 0.000000 real_pulses:0 +I (277084) example: new speed:399.000000 +I (277094) example: expect speed: 0.000000 real_pulses:0 +I (277094) example: new speed:399.000000 +I (277104) example: expect speed: 0.000000 real_pulses:0 +I (277114) example: new speed:399.000000 +I (277114) example: expect speed: 0.000000 real_pulses:0 +I (277114) example: new speed:399.000000 +I (277124) example: expect speed: 0.000000 real_pulses:0 +I (277124) example: new speed:399.000000 +I (277134) example: expect speed: 0.000000 real_pulses:0 +I (277134) example: new speed:399.000000 +I (277144) example: expect speed: 0.000000 real_pulses:0 +I (277144) example: new speed:399.000000 +I (277154) example: expect speed: 0.000000 real_pulses:0 +I (277154) example: new speed:399.000000 +I (277164) example: expect speed: 0.000000 real_pulses:0 +I (277164) example: new speed:399.000000 +I (277174) example: expect speed: 0.000000 real_pulses:0 +I (277174) example: new speed:399.000000 +I (277184) example: expect speed: 0.000000 real_pulses:0 +I (277184) example: new speed:399.000000 +I (277194) example: expect speed: 0.000000 real_pulses:0 +I (277194) example: new speed:399.000000 +I (277204) example: expect speed: 0.000000 real_pulses:0 +I (277204) example: new speed:399.000000 +I (277214) example: expect speed: 0.000000 real_pulses:0 +I (277214) example: new speed:399.000000 +I (277224) example: expect speed: 0.000000 real_pulses:0 +I (277224) example: new speed:399.000000 +I (277234) example: expect speed: 0.000000 real_pulses:0 +I (277234) example: new speed:399.000000 +I (277244) example: expect speed: 0.000000 real_pulses:0 +I (277254) example: new speed:399.000000 +I (277254) example: expect speed: 0.000000 real_pulses:0 +I (277254) example: new speed:399.000000 +I (277264) example: expect speed: 0.000000 real_pulses:0 +I (277264) example: new speed:399.000000 +I (277274) example: expect speed: 0.000000 real_pulses:0 +I (277274) example: new speed:399.000000 +I (277284) example: expect speed: 0.000000 real_pulses:0 +I (277284) example: new speed:399.000000 +I (277294) example: expect speed: 0.000000 real_pulses:0 +I (277294) example: new speed:399.000000 +I (277304) example: expect speed: 0.000000 real_pulses:0 +I (277304) example: new speed:399.000000 +I (277314) example: expect speed: 0.000000 real_pulses:0 +I (277314) example: new speed:399.000000 +I (277324) example: expect speed: 0.000000 real_pulses:0 +I (277324) example: new speed:399.000000 +I (277334) example: expect speed: 0.000000 real_pulses:0 +I (277334) example: new speed:399.000000 +I (277344) example: expect speed: 0.000000 real_pulses:0 +I (277344) example: new speed:399.000000 +I (277354) example: expect speed: 0.000000 real_pulses:0 +I (277354) example: new speed:399.000000 +I (277364) example: expect speed: 0.000000 real_pulses:0 +I (277364) example: new speed:399.000000 +I (277374) example: expect speed: 0.000000 real_pulses:0 +I (277374) example: new speed:399.000000 +I (277384) example: expect speed: 0.000000 real_pulses:0 +I (277384) example: new speed:399.000000 +I (277394) example: expect speed: 0.000000 real_pulses:0 +I (277394) example: new speed:399.000000 +I (277404) example: expect speed: 0.000000 real_pulses:0 +I (277404) example: new speed:399.000000 +I (277414) example: expect speed: 0.000000 real_pulses:0 +I (277414) example: new speed:399.000000 +I (277424) example: expect speed: 0.000000 real_pulses:0 +I (277424) example: new speed:399.000000 +I (277434) example: expect speed: 0.000000 real_pulses:0 +I (277434) example: new speed:399.000000 +I (277444) example: expect speed: 0.000000 real_pulses:0 +I (277454) example: new speed:399.000000 +I (277454) example: expect speed: 0.000000 real_pulses:0 +I (277454) example: new speed:399.000000 +I (277464) example: expect speed: 0.000000 real_pulses:0 +I (277464) example: new speed:399.000000 +I (277474) example: expect speed: 0.000000 real_pulses:0 +I (277474) example: new speed:399.000000 +I (277484) example: expect speed: 0.000000 real_pulses:0 +I (277484) example: new speed:399.000000 +I (277494) example: expect speed: 0.000000 real_pulses:0 +I (277494) example: new speed:399.000000 +I (277504) example: expect speed: 0.000000 real_pulses:0 +I (277504) example: new speed:399.000000 +I (277514) example: expect speed: 0.000000 real_pulses:0 +I (277514) example: new speed:399.000000 +I (277524) example: expect speed: 0.000000 real_pulses:0 +I (277524) example: new speed:399.000000 +I (277534) example: expect speed: 0.000000 real_pulses:0 +I (277534) example: new speed:399.000000 +I (277544) example: expect speed: 0.000000 real_pulses:0 +I (277544) example: new speed:399.000000 +I (277554) example: expect speed: 0.000000 real_pulses:0 +I (277554) example: new speed:399.000000 +I (277564) example: expect speed: 0.000000 real_pulses:0 +I (277564) example: new speed:399.000000 +I (277574) example: expect speed: 0.000000 real_pulses:0 +I (277574) example: new speed:399.000000 +I (277584) example: expect speed: 0.000000 real_pulses:0 +I (277584) example: new speed:399.000000 +I (277594) example: expect speed: 0.000000 real_pulses:0 +I (277594) example: new speed:399.000000 +I (277604) example: expect speed: 0.000000 real_pulses:0 +I (277604) example: new speed:399.000000 +I (277614) example: expect speed: 0.000000 real_pulses:0 +I (277614) example: new speed:399.000000 +I (277624) example: expect speed: 0.000000 real_pulses:0 +I (277624) example: new speed:399.000000 +I (277634) example: expect speed: 0.000000 real_pulses:0 +I (277634) example: new speed:399.000000 +I (277644) example: expect speed: 0.000000 real_pulses:0 +I (277644) example: new speed:399.000000 +I (277654) example: expect speed: 0.000000 real_pulses:0 +I (277664) example: new speed:399.000000 +I (277664) example: expect speed: 0.000000 real_pulses:0 +I (277664) example: new speed:399.000000 +I (277674) example: expect speed: 0.000000 real_pulses:0 +I (277674) example: new speed:399.000000 +I (277684) example: expect speed: 0.000000 real_pulses:0 +I (277684) example: new speed:399.000000 +I (277694) example: expect speed: 0.000000 real_pulses:0 +I (277694) example: new speed:399.000000 +I (277704) example: expect speed: 0.000000 real_pulses:0 +I (277704) example: new speed:399.000000 +I (277714) example: expect speed: 0.000000 real_pulses:0 +I (277714) example: new speed:399.000000 +I (277724) example: expect speed: 0.000000 real_pulses:0 +I (277724) example: new speed:399.000000 +I (277734) example: expect speed: 0.000000 real_pulses:0 +I (277734) example: new speed:399.000000 +I (277744) example: expect speed: 0.000000 real_pulses:0 +I (277744) example: new speed:399.000000 +I (277754) example: expect speed: 0.000000 real_pulses:0 +I (277754) example: new speed:399.000000 +I (277764) example: expect speed: 0.000000 real_pulses:0 +I (277764) example: new speed:399.000000 +I (277774) example: expect speed: 0.000000 real_pulses:0 +I (277774) example: new speed:399.000000 +I (277784) example: expect speed: 0.000000 real_pulses:0 +I (277784) example: new speed:399.000000 +I (277794) example: expect speed: 0.000000 real_pulses:0 +I (277794) example: new speed:399.000000 +I (277804) example: expect speed: 0.000000 real_pulses:0 +I (277804) example: new speed:399.000000 +I (277814) example: expect speed: 0.000000 real_pulses:0 +I (277814) example: new speed:399.000000 +I (277824) example: expect speed: 0.000000 real_pulses:0 +I (277824) example: new speed:399.000000 +I (277834) example: expect speed: 0.000000 real_pulses:0 +I (277834) example: new speed:399.000000 +I (277844) example: expect speed: 0.000000 real_pulses:0 +I (277844) example: new speed:399.000000 +I (277854) example: expect speed: 0.000000 real_pulses:0 +I (277854) example: new speed:399.000000 +I (277864) example: expect speed: 0.000000 real_pulses:0 +I (277864) example: new speed:399.000000 +I (277874) example: expect speed: 0.000000 real_pulses:0 +I (277874) example: new speed:399.000000 +I (277884) example: expect speed: 0.000000 real_pulses:0 +I (277884) example: new speed:399.000000 +I (277894) example: expect speed: 0.000000 real_pulses:0 +I (277894) example: new speed:399.000000 +I (277904) example: expect speed: 0.000000 real_pulses:0 +I (277904) example: new speed:399.000000 +I (277914) example: expect speed: 0.000000 real_pulses:0 +I (277914) example: new speed:399.000000 +I (277924) example: expect speed: 0.000000 real_pulses:0 +I (277924) example: new speed:399.000000 +I (277934) example: expect speed: 0.000000 real_pulses:0 +I (277934) example: new speed:399.000000 +I (277944) example: expect speed: 0.000000 real_pulses:0 +I (277944) example: new speed:399.000000 +I (277954) example: expect speed: 0.000000 real_pulses:0 +I (277954) example: new speed:399.000000 +I (277964) example: expect speed: 0.000000 real_pulses:0 +I (277974) example: new speed:399.000000 +I (277974) modbus tcp: ModBusSlave_recv() +I (277974) modbus: ModbusSlaveProcess() +I (277974) modbus: check id... +I (277974) modbus: ok +I (277974) modbus: add: 0, length: 10 +I (277974) modbus: Read Holding Registers +I (277974) example: expect speed: 0.000000 real_pulses:0 +I (277984) example: new speed:399.000000 +I (277984) example: expect speed: 0.000000 real_pulses:0 +I (277984) example: new speed:399.000000 +I (277994) example: expect speed: 0.000000 real_pulses:0 +I (277994) example: new speed:399.000000 +I (278004) example: expect speed: 0.000000 real_pulses:0 +I (278004) example: new speed:399.000000 +I (278014) example: expect speed: 0.000000 real_pulses:0 +I (278024) example: new speed:399.000000 +I (278024) example: expect speed: 0.000000 real_pulses:0 +I (278024) example: new speed:399.000000 +I (278034) example: expect speed: 0.000000 real_pulses:0 +I (278034) example: new speed:399.000000 +I (278044) example: expect speed: 0.000000 real_pulses:0 +I (278044) example: new speed:399.000000 +I (278054) example: expect speed: 0.000000 real_pulses:0 +I (278064) example: new speed:399.000000 +I (278064) example: expect speed: 0.000000 real_pulses:0 +I (278064) example: new speed:399.000000 +I (278074) example: expect speed: 0.000000 real_pulses:0 +I (278074) example: new speed:399.000000 +I (278084) example: expect speed: 0.000000 real_pulses:0 +I (278084) example: new speed:399.000000 +I (278094) example: expect speed: 0.000000 real_pulses:0 +I (278094) example: new speed:399.000000 +I (278104) example: expect speed: 0.000000 real_pulses:0 +I (278104) example: new speed:399.000000 +I (278114) example: expect speed: 0.000000 real_pulses:0 +I (278114) example: new speed:399.000000 +I (278124) example: expect speed: 0.000000 real_pulses:0 +I (278124) example: new speed:399.000000 +I (278134) example: expect speed: 0.000000 real_pulses:0 +I (278134) example: new speed:399.000000 +I (278144) example: expect speed: 0.000000 real_pulses:0 +I (278144) example: new speed:399.000000 +I (278154) example: expect speed: 0.000000 real_pulses:0 +I (278154) example: new speed:399.000000 +I (278164) example: expect speed: 0.000000 real_pulses:0 +I (278174) example: new speed:399.000000 +I (278174) example: expect speed: 0.000000 real_pulses:0 +I (278184) example: new speed:399.000000 +I (278184) example: expect speed: 0.000000 real_pulses:0 +I (278184) example: new speed:399.000000 +I (278194) example: expect speed: 0.000000 real_pulses:0 +I (278194) example: new speed:399.000000 +I (278204) example: expect speed: 0.000000 real_pulses:0 +I (278204) example: new speed:399.000000 +I (278214) example: expect speed: 0.000000 real_pulses:0 +I (278224) example: new speed:399.000000 +I (278224) example: expect speed: 0.000000 real_pulses:0 +I (278224) example: new speed:399.000000 +I (278234) example: expect speed: 0.000000 real_pulses:0 +I (278234) example: new speed:399.000000 +I (278244) example: expect speed: 0.000000 real_pulses:0 +I (278244) example: new speed:399.000000 +I (278254) example: expect speed: 0.000000 real_pulses:0 +I (278254) example: new speed:399.000000 +I (278264) example: expect speed: 0.000000 real_pulses:0 +I (278264) example: new speed:399.000000 +I (278274) example: expect speed: 0.000000 real_pulses:0 +I (278274) example: new speed:399.000000 +I (278284) example: expect speed: 0.000000 real_pulses:0 +I (278284) example: new speed:399.000000 +I (278294) example: expect speed: 0.000000 real_pulses:0 +I (278294) example: new speed:399.000000 +I (278304) example: expect speed: 0.000000 real_pulses:0 +I (278304) example: new speed:399.000000 +I (278314) example: expect speed: 0.000000 real_pulses:0 +I (278314) example: new speed:399.000000 +I (278324) example: expect speed: 0.000000 real_pulses:0 +I (278324) example: new speed:399.000000 +I (278334) example: expect speed: 0.000000 real_pulses:0 +I (278334) example: new speed:399.000000 +I (278344) example: expect speed: 0.000000 real_pulses:0 +I (278344) example: new speed:399.000000 +I (278354) example: expect speed: 0.000000 real_pulses:0 +I (278354) example: new speed:399.000000 +I (278364) example: expect speed: 0.000000 real_pulses:0 +I (278364) example: new speed:399.000000 +I (278374) example: expect speed: 0.000000 real_pulses:0 +I (278384) example: new speed:399.000000 +I (278384) example: expect speed: 0.000000 real_pulses:0 +I (278384) example: new speed:399.000000 +I (278394) example: expect speed: 0.000000 real_pulses:0 +I (278394) example: new speed:399.000000 +I (278404) example: expect speed: 0.000000 real_pulses:0 +I (278404) example: new speed:399.000000 +I (278414) example: expect speed: 0.000000 real_pulses:0 +I (278414) example: new speed:399.000000 +I (278424) example: expect speed: 0.000000 real_pulses:0 +I (278424) example: new speed:399.000000 +I (278434) example: expect speed: 0.000000 real_pulses:0 +I (278434) example: new speed:399.000000 +I (278444) example: expect speed: 0.000000 real_pulses:0 +I (278444) example: new speed:399.000000 +I (278454) example: expect speed: 0.000000 real_pulses:0 +I (278454) example: new speed:399.000000 +I (278464) example: expect speed: 0.000000 real_pulses:0 +I (278464) example: new speed:399.000000 +I (278474) example: expect speed: 0.000000 real_pulses:0 +I (278474) example: new speed:399.000000 +I (278484) example: expect speed: 0.000000 real_pulses:0 +I (278484) example: new speed:399.000000 +I (278494) example: expect speed: 0.000000 real_pulses:0 +I (278494) example: new speed:399.000000 +I (278504) example: expect speed: 0.000000 real_pulses:0 +I (278504) example: new speed:399.000000 +I (278514) example: expect speed: 0.000000 real_pulses:0 +I (278514) example: new speed:399.000000 +I (278524) example: expect speed: 0.000000 real_pulses:0 +I (278524) example: new speed:399.000000 +I (278534) example: expect speed: 0.000000 real_pulses:0 +I (278534) example: new speed:399.000000 +I (278544) example: expect speed: 0.000000 real_pulses:0 +I (278544) example: new speed:399.000000 +I (278554) example: expect speed: 0.000000 real_pulses:0 +I (278554) example: new speed:399.000000 +I (278564) example: expect speed: 0.000000 real_pulses:0 +I (278564) example: new speed:399.000000 +I (278574) example: expect speed: 0.000000 real_pulses:0 +I (278574) example: new speed:399.000000 +I (278584) example: expect speed: 0.000000 real_pulses:0 +I (278584) example: new speed:399.000000 +I (278594) example: expect speed: 0.000000 real_pulses:0 +I (278594) example: new speed:399.000000 +I (278604) example: expect speed: 0.000000 real_pulses:0 +I (278604) example: new speed:399.000000 +I (278614) example: expect speed: 0.000000 real_pulses:0 +I (278614) example: new speed:399.000000 +I (278624) example: expect speed: 0.000000 real_pulses:0 +I (278624) example: new speed:399.000000 +I (278634) example: expect speed: 0.000000 real_pulses:0 +I (278634) example: new speed:399.000000 +I (278644) example: expect speed: 0.000000 real_pulses:0 +I (278644) example: new speed:399.000000 +I (278654) example: expect speed: 0.000000 real_pulses:0 +I (278654) example: new speed:399.000000 +I (278664) example: expect speed: 0.000000 real_pulses:0 +I (278664) example: new speed:399.000000 +I (278674) example: expect speed: 0.000000 real_pulses:0 +I (278684) example: new speed:399.000000 +I (278684) example: expect speed: 0.000000 real_pulses:0 +I (278694) example: new speed:399.000000 +I (278694) example: expect speed: 0.000000 real_pulses:0 +I (278694) example: new speed:399.000000 +I (278704) example: expect speed: 0.000000 real_pulses:0 +I (278704) example: new speed:399.000000 +I (278714) example: expect speed: 0.000000 real_pulses:0 +I (278714) example: new speed:399.000000 +I (278724) example: expect speed: 0.000000 real_pulses:0 +I (278724) example: new speed:399.000000 +I (278734) example: expect speed: 0.000000 real_pulses:0 +I (278734) example: new speed:399.000000 +I (278744) example: expect speed: 0.000000 real_pulses:0 +I (278744) example: new speed:399.000000 +I (278754) example: expect speed: 0.000000 real_pulses:0 +I (278754) example: new speed:399.000000 +I (278764) example: expect speed: 0.000000 real_pulses:0 +I (278764) example: new speed:399.000000 +I (278774) example: expect speed: 0.000000 real_pulses:0 +I (278774) example: new speed:399.000000 +I (278784) example: expect speed: 0.000000 real_pulses:0 +I (278784) example: new speed:399.000000 +I (278794) example: expect speed: 0.000000 real_pulses:0 +I (278794) example: new speed:399.000000 +I (278804) example: expect speed: 0.000000 real_pulses:0 +I (278804) example: new speed:399.000000 +I (278814) example: expect speed: 0.000000 real_pulses:0 +I (278814) example: new speed:399.000000 +I (278824) example: expect speed: 0.000000 real_pulses:0 +I (278824) example: new speed:399.000000 +I (278834) example: expect speed: 0.000000 real_pulses:0 +I (278834) example: new speed:399.000000 +I (278844) example: expect speed: 0.000000 real_pulses:0 +I (278844) example: new speed:399.000000 +I (278854) example: expect speed: 0.000000 real_pulses:0 +I (278854) example: new speed:399.000000 +I (278864) example: expect speed: 0.000000 real_pulses:0 +I (278864) example: new speed:399.000000 +I (278874) example: expect speed: 0.000000 real_pulses:0 +I (278874) example: new speed:399.000000 +I (278884) example: expect speed: 0.000000 real_pulses:0 +I (278884) example: new speed:399.000000 +I (278894) example: expect speed: 0.000000 real_pulses:0 +I (278894) example: new speed:399.000000 +I (278904) example: expect speed: 0.000000 real_pulses:0 +I (278904) example: new speed:399.000000 +I (278914) example: expect speed: 0.000000 real_pulses:0 +I (278914) example: new speed:399.000000 +I (278924) example: expect speed: 0.000000 real_pulses:0 +I (278924) example: new speed:399.000000 +I (278934) example: expect speed: 0.000000 real_pulses:0 +I (278934) example: new speed:399.000000 +I (278944) example: expect speed: 0.000000 real_pulses:0 +I (278944) example: new speed:399.000000 +I (278954) example: expect speed: 0.000000 real_pulses:0 +I (278954) example: new speed:399.000000 +I (278964) example: expect speed: 0.000000 real_pulses:0 +I (278964) example: new speed:399.000000 +I (278974) example: expect speed: 0.000000 real_pulses:0 +I (278974) example: new speed:399.000000 +I (278984) example: expect speed: 0.000000 real_pulses:0 +I (278994) example: new speed:399.000000 +I (278994) modbus tcp: ModBusSlave_recv() +I (278994) modbus: ModbusSlaveProcess() +I (278994) modbus: check id... +I (278994) modbus: ok +I (278994) modbus: add: 0, length: 10 +I (278994) modbus: Read Holding Registers +I (278994) example: expect speed: 0.000000 real_pulses:0 +I (279004) example: new speed:399.000000 +I (279004) example: expect speed: 0.000000 real_pulses:0 +I (279004) example: new speed:399.000000 +I (279014) example: expect speed: 0.000000 real_pulses:0 +I (279014) example: new speed:399.000000 +I (279024) example: expect speed: 0.000000 real_pulses:0 +I (279024) example: new speed:399.000000 +I (279034) example: expect speed: 0.000000 real_pulses:0 +I (279034) example: new speed:399.000000 +I (279044) example: expect speed: 0.000000 real_pulses:0 +I (279044) example: new speed:399.000000 +I (279054) example: expect speed: 0.000000 real_pulses:0 +I (279064) example: new speed:399.000000 +I (279064) example: expect speed: 0.000000 real_pulses:0 +I (279064) example: new speed:399.000000 +I (279074) example: expect speed: 0.000000 real_pulses:0 +I (279074) example: new speed:399.000000 +I (279084) example: expect speed: 0.000000 real_pulses:0 +I (279094) example: new speed:399.000000 +I (279094) example: expect speed: 0.000000 real_pulses:0 +I (279094) example: new speed:399.000000 +I (279104) example: expect speed: 0.000000 real_pulses:0 +I (279104) example: new speed:399.000000 +I (279114) example: expect speed: 0.000000 real_pulses:0 +I (279114) example: new speed:399.000000 +I (279124) example: expect speed: 0.000000 real_pulses:0 +I (279124) example: new speed:399.000000 +I (279134) example: expect speed: 0.000000 real_pulses:0 +I (279134) example: new speed:399.000000 +I (279144) example: expect speed: 0.000000 real_pulses:0 +I (279144) example: new speed:399.000000 +I (279154) example: expect speed: 0.000000 real_pulses:0 +I (279154) example: new speed:399.000000 +I (279164) example: expect speed: 0.000000 real_pulses:0 +I (279164) example: new speed:399.000000 +I (279174) example: expect speed: 0.000000 real_pulses:0 +I (279174) example: new speed:399.000000 +I (279184) example: expect speed: 0.000000 real_pulses:0 +I (279184) example: new speed:399.000000 +I (279194) example: expect speed: 0.000000 real_pulses:0 +I (279204) example: new speed:399.000000 +I (279204) example: expect speed: 0.000000 real_pulses:0 +I (279204) example: new speed:399.000000 +I (279214) example: expect speed: 0.000000 real_pulses:0 +I (279214) example: new speed:399.000000 +I (279224) example: expect speed: 0.000000 real_pulses:0 +I (279224) example: new speed:399.000000 +I (279234) example: expect speed: 0.000000 real_pulses:0 +I (279234) example: new speed:399.000000 +I (279244) example: expect speed: 0.000000 real_pulses:0 +I (279244) example: new speed:399.000000 +I (279254) example: expect speed: 0.000000 real_pulses:0 +I (279254) example: new speed:399.000000 +I (279264) example: expect speed: 0.000000 real_pulses:0 +I (279264) example: new speed:399.000000 +I (279274) example: expect speed: 0.000000 real_pulses:0 +I (279274) example: new speed:399.000000 +I (279284) example: expect speed: 0.000000 real_pulses:0 +I (279284) example: new speed:399.000000 +I (279294) example: expect speed: 0.000000 real_pulses:0 +I (279294) example: new speed:399.000000 +I (279304) example: expect speed: 0.000000 real_pulses:0 +I (279304) example: new speed:399.000000 +I (279314) example: expect speed: 0.000000 real_pulses:0 +I (279314) example: new speed:399.000000 +I (279324) example: expect speed: 0.000000 real_pulses:0 +I (279324) example: new speed:399.000000 +I (279334) example: expect speed: 0.000000 real_pulses:0 +I (279334) example: new speed:399.000000 +I (279344) example: expect speed: 0.000000 real_pulses:0 +I (279344) example: new speed:399.000000 +I (279354) example: expect speed: 0.000000 real_pulses:0 +I (279354) example: new speed:399.000000 +I (279364) example: expect speed: 0.000000 real_pulses:0 +I (279364) example: new speed:399.000000 +I (279374) example: expect speed: 0.000000 real_pulses:0 +I (279374) example: new speed:399.000000 +I (279384) example: expect speed: 0.000000 real_pulses:0 +I (279384) example: new speed:399.000000 +I (279394) example: expect speed: 0.000000 real_pulses:0 +I (279394) example: new speed:399.000000 +I (279404) example: expect speed: 0.000000 real_pulses:0 +I (279404) example: new speed:399.000000 +I (279414) example: expect speed: 0.000000 real_pulses:0 +I (279414) example: new speed:399.000000 +I (279424) example: expect speed: 0.000000 real_pulses:0 +I (279424) example: new speed:399.000000 +I (279434) example: expect speed: 0.000000 real_pulses:0 +I (279434) example: new speed:399.000000 +I (279444) example: expect speed: 0.000000 real_pulses:0 +I (279444) example: new speed:399.000000 +I (279454) example: expect speed: 0.000000 real_pulses:0 +I (279454) example: new speed:399.000000 +I (279464) example: expect speed: 0.000000 real_pulses:0 +I (279464) example: new speed:399.000000 +I (279474) example: expect speed: 0.000000 real_pulses:0 +I (279474) example: new speed:399.000000 +I (279484) example: expect speed: 0.000000 real_pulses:0 +I (279484) example: new speed:399.000000 +I (279494) example: expect speed: 0.000000 real_pulses:0 +I (279504) example: new speed:399.000000 +I (279504) example: expect speed: 0.000000 real_pulses:0 +I (279514) example: new speed:399.000000 +I (279514) example: expect speed: 0.000000 real_pulses:0 +I (279514) example: new speed:399.000000 +I (279524) example: expect speed: 0.000000 real_pulses:0 +I (279524) example: new speed:399.000000 +I (279534) example: expect speed: 0.000000 real_pulses:0 +I (279534) example: new speed:399.000000 +I (279544) example: expect speed: 0.000000 real_pulses:0 +I (279544) example: new speed:399.000000 +I (279554) example: expect speed: 0.000000 real_pulses:0 +I (279554) example: new speed:399.000000 +I (279564) example: expect speed: 0.000000 real_pulses:0 +I (279564) example: new speed:399.000000 +I (279574) example: expect speed: 0.000000 real_pulses:0 +I (279574) example: new speed:399.000000 +I (279584) example: expect speed: 0.000000 real_pulses:0 +I (279584) example: new speed:399.000000 +I (279594) example: expect speed: 0.000000 real_pulses:0 +I (279594) example: new speed:399.000000 +I (279604) example: expect speed: 0.000000 real_pulses:0 +I (279604) example: new speed:399.000000 +I (279614) example: expect speed: 0.000000 real_pulses:0 +I (279614) example: new speed:399.000000 +I (279624) example: expect speed: 0.000000 real_pulses:0 +I (279624) example: new speed:399.000000 +I (279634) example: expect speed: 0.000000 real_pulses:0 +I (279634) example: new speed:399.000000 +I (279644) example: expect speed: 0.000000 real_pulses:0 +I (279644) example: new speed:399.000000 +I (279654) example: expect speed: 0.000000 real_pulses:0 +I (279654) example: new speed:399.000000 +I (279664) example: expect speed: 0.000000 real_pulses:0 +I (279664) example: new speed:399.000000 +I (279674) example: expect speed: 0.000000 real_pulses:0 +I (279674) example: new speed:399.000000 +I (279684) example: expect speed: 0.000000 real_pulses:0 +I (279684) example: new speed:399.000000 +I (279694) example: expect speed: 0.000000 real_pulses:0 +I (279694) example: new speed:399.000000 +I (279704) example: expect speed: 0.000000 real_pulses:0 +I (279714) example: new speed:399.000000 +I (279714) example: expect speed: 0.000000 real_pulses:0 +I (279714) example: new speed:399.000000 +I (279724) example: expect speed: 0.000000 real_pulses:0 +I (279724) example: new speed:399.000000 +I (279734) example: expect speed: 0.000000 real_pulses:0 +I (279734) example: new speed:399.000000 +I (279744) example: expect speed: 0.000000 real_pulses:0 +I (279744) example: new speed:399.000000 +I (279754) example: expect speed: 0.000000 real_pulses:0 +I (279754) example: new speed:399.000000 +I (279764) example: expect speed: 0.000000 real_pulses:0 +I (279764) example: new speed:399.000000 +I (279774) example: expect speed: 0.000000 real_pulses:0 +I (279774) example: new speed:399.000000 +I (279784) example: expect speed: 0.000000 real_pulses:0 +I (279784) example: new speed:399.000000 +I (279794) example: expect speed: 0.000000 real_pulses:0 +I (279794) example: new speed:399.000000 +I (279804) example: expect speed: 0.000000 real_pulses:0 +I (279804) example: new speed:399.000000 +I (279814) example: expect speed: 0.000000 real_pulses:0 +I (279814) example: new speed:399.000000 +I (279824) example: expect speed: 0.000000 real_pulses:0 +I (279824) example: new speed:399.000000 +I (279834) example: expect speed: 0.000000 real_pulses:0 +I (279834) example: new speed:399.000000 +I (279844) example: expect speed: 0.000000 real_pulses:0 +I (279844) example: new speed:399.000000 +I (279854) example: expect speed: 0.000000 real_pulses:0 +I (279854) example: new speed:399.000000 +I (279864) example: expect speed: 0.000000 real_pulses:0 +I (279864) example: new speed:399.000000 +I (279874) example: expect speed: 0.000000 real_pulses:0 +I (279874) example: new speed:399.000000 +I (279884) example: expect speed: 0.000000 real_pulses:0 +I (279884) example: new speed:399.000000 +I (279894) example: expect speed: 0.000000 real_pulses:0 +I (279894) example: new speed:399.000000 +I (279904) example: expect speed: 0.000000 real_pulses:0 +I (279904) example: new speed:399.000000 +I (279914) example: expect speed: 0.000000 real_pulses:0 +I (279914) example: new speed:399.000000 +I (279924) example: expect speed: 0.000000 real_pulses:0 +I (279924) example: new speed:399.000000 +I (279934) example: expect speed: 0.000000 real_pulses:0 +I (279934) example: new speed:399.000000 +I (279944) example: expect speed: 0.000000 real_pulses:0 +I (279944) example: new speed:399.000000 +I (279954) example: expect speed: 0.000000 real_pulses:0 +I (279954) example: new speed:399.000000 +I (279964) example: expect speed: 0.000000 real_pulses:0 +I (279964) example: new speed:399.000000 +I (279974) example: expect speed: 0.000000 real_pulses:0 +I (279974) example: new speed:399.000000 +I (279984) example: expect speed: 0.000000 real_pulses:0 +I (279984) example: new speed:399.000000 +I (279994) example: expect speed: 0.000000 real_pulses:0 +I (279994) example: new speed:399.000000 +I (280014) example: expect speed: 0.000000 real_pulses:0 +I (280014) example: new speed:399.000000 +I (280014) example: expect speed: 0.000000 real_pulses:0 +I (280024) modbus tcp: ModBusSlave_recv() +I (280024) example: new speed:399.000000 +I (280024) modbus: ModbusSlaveProcess() +I (280024) modbus: check id... +I (280024) modbus: ok +I (280024) modbus: add: 0, length: 10 +I (280024) modbus: Read Holding Registers +I (280024) example: expect speed: 0.000000 real_pulses:0 +I (280034) example: new speed:399.000000 +I (280034) example: expect speed: 0.000000 real_pulses:0 +I (280044) example: new speed:399.000000 +I (280044) example: expect speed: 0.000000 real_pulses:0 +I (280044) example: new speed:399.000000 +I (280054) example: expect speed: 0.000000 real_pulses:0 +I (280054) example: new speed:399.000000 +I (280064) example: expect speed: 0.000000 real_pulses:0 +I (280064) example: new speed:399.000000 +I (280074) example: expect speed: 0.000000 real_pulses:0 +I (280074) example: new speed:399.000000 +I (280084) example: expect speed: 0.000000 real_pulses:0 +I (280084) example: new speed:399.000000 +I (280094) example: expect speed: 0.000000 real_pulses:0 +I (280104) example: new speed:399.000000 +I (280104) example: expect speed: 0.000000 real_pulses:0 +I (280104) example: new speed:399.000000 +I (280114) example: expect speed: 0.000000 real_pulses:0 +I (280124) example: new speed:399.000000 +I (280124) example: expect speed: 0.000000 real_pulses:0 +I (280124) example: new speed:399.000000 +I (280134) example: expect speed: 0.000000 real_pulses:0 +I (280134) example: new speed:399.000000 +I (280144) example: expect speed: 0.000000 real_pulses:0 +I (280144) example: new speed:399.000000 +I (280154) example: expect speed: 0.000000 real_pulses:0 +I (280154) example: new speed:399.000000 +I (280164) example: expect speed: 0.000000 real_pulses:0 +I (280174) example: new speed:399.000000 +I (280174) example: expect speed: 0.000000 real_pulses:0 +I (280174) example: new speed:399.000000 +I (280184) example: expect speed: 0.000000 real_pulses:0 +I (280184) example: new speed:399.000000 +I (280194) example: expect speed: 0.000000 real_pulses:0 +I (280194) example: new speed:399.000000 +I (280204) example: expect speed: 0.000000 real_pulses:0 +I (280204) example: new speed:399.000000 +I (280214) example: expect speed: 0.000000 real_pulses:0 +I (280224) example: new speed:399.000000 +I (280224) example: expect speed: 0.000000 real_pulses:0 +I (280224) example: new speed:399.000000 +I (280234) example: expect speed: 0.000000 real_pulses:0 +I (280234) example: new speed:399.000000 +I (280244) example: expect speed: 0.000000 real_pulses:0 +I (280244) example: new speed:399.000000 +I (280254) example: expect speed: 0.000000 real_pulses:0 +I (280254) example: new speed:399.000000 +I (280264) example: expect speed: 0.000000 real_pulses:0 +I (280264) example: new speed:399.000000 +I (280274) example: expect speed: 0.000000 real_pulses:0 +I (280274) example: new speed:399.000000 +I (280284) example: expect speed: 0.000000 real_pulses:0 +I (280284) example: new speed:399.000000 +I (280294) example: expect speed: 0.000000 real_pulses:0 +I (280294) example: new speed:399.000000 +I (280304) example: expect speed: 0.000000 real_pulses:0 +I (280304) example: new speed:399.000000 +I (280314) example: expect speed: 0.000000 real_pulses:0 +I (280314) example: new speed:399.000000 +I (280324) example: expect speed: 0.000000 real_pulses:0 +I (280324) example: new speed:399.000000 +I (280334) example: expect speed: 0.000000 real_pulses:0 +I (280334) example: new speed:399.000000 +I (280344) example: expect speed: 0.000000 real_pulses:0 +I (280344) example: new speed:399.000000 +I (280354) example: expect speed: 0.000000 real_pulses:0 +I (280354) example: new speed:399.000000 +I (280364) example: expect speed: 0.000000 real_pulses:0 +I (280364) example: new speed:399.000000 +I (280374) example: expect speed: 0.000000 real_pulses:0 +I (280374) example: new speed:399.000000 +I (280384) example: expect speed: 0.000000 real_pulses:0 +I (280384) example: new speed:399.000000 +I (280394) example: expect speed: 0.000000 real_pulses:0 +I (280394) example: new speed:399.000000 +I (280404) example: expect speed: 0.000000 real_pulses:0 +I (280404) example: new speed:399.000000 +I (280414) example: expect speed: 0.000000 real_pulses:0 +I (280414) example: new speed:399.000000 +I (280424) example: expect speed: 0.000000 real_pulses:0 +I (280424) example: new speed:399.000000 +I (280434) example: expect speed: 0.000000 real_pulses:0 +I (280434) example: new speed:399.000000 +I (280444) example: expect speed: 0.000000 real_pulses:0 +I (280444) example: new speed:399.000000 +I (280454) example: expect speed: 0.000000 real_pulses:0 +I (280454) example: new speed:399.000000 +I (280464) example: expect speed: 0.000000 real_pulses:0 +I (280464) example: new speed:399.000000 +I (280474) example: expect speed: 0.000000 real_pulses:0 +I (280474) example: new speed:399.000000 +I (280484) example: expect speed: 0.000000 real_pulses:0 +I (280484) example: new speed:399.000000 +I (280494) example: expect speed: 0.000000 real_pulses:0 +I (280494) example: new speed:399.000000 +I (280504) example: expect speed: 0.000000 real_pulses:0 +I (280504) example: new speed:399.000000 +I (280514) example: expect speed: 0.000000 real_pulses:0 +I (280514) example: new speed:399.000000 +I (280524) example: expect speed: 0.000000 real_pulses:0 +I (280534) example: new speed:399.000000 +I (280534) example: expect speed: 0.000000 real_pulses:0 +I (280534) example: new speed:399.000000 +I (280544) example: expect speed: 0.000000 real_pulses:0 +I (280544) example: new speed:399.000000 +I (280554) example: expect speed: 0.000000 real_pulses:0 +I (280554) example: new speed:399.000000 +I (280564) example: expect speed: 0.000000 real_pulses:0 +I (280564) example: new speed:399.000000 +I (280574) example: expect speed: 0.000000 real_pulses:0 +I (280574) example: new speed:399.000000 +I (280584) example: expect speed: 0.000000 real_pulses:0 +I (280584) example: new speed:399.000000 +I (280594) example: expect speed: 0.000000 real_pulses:0 +I (280594) example: new speed:399.000000 +I (280604) example: expect speed: 0.000000 real_pulses:0 +I (280604) example: new speed:399.000000 +I (280614) example: expect speed: 0.000000 real_pulses:0 +I (280614) example: new speed:399.000000 +I (280624) example: expect speed: 0.000000 real_pulses:0 +I (280624) example: new speed:399.000000 +I (280634) example: expect speed: 0.000000 real_pulses:0 +I (280634) example: new speed:399.000000 +I (280644) example: expect speed: 0.000000 real_pulses:0 +I (280644) example: new speed:399.000000 +I (280654) example: expect speed: 0.000000 real_pulses:0 +I (280654) example: new speed:399.000000 +I (280664) example: expect speed: 0.000000 real_pulses:0 +I (280664) example: new speed:399.000000 +I (280674) example: expect speed: 0.000000 real_pulses:0 +I (280674) example: new speed:399.000000 +I (280684) example: expect speed: 0.000000 real_pulses:0 +I (280684) example: new speed:399.000000 +I (280694) example: expect speed: 0.000000 real_pulses:0 +I (280694) example: new speed:399.000000 +I (280704) example: expect speed: 0.000000 real_pulses:0 +I (280704) example: new speed:399.000000 +I (280714) example: expect speed: 0.000000 real_pulses:0 +I (280714) example: new speed:399.000000 +I (280724) example: expect speed: 0.000000 real_pulses:0 +I (280734) example: new speed:399.000000 +I (280734) example: expect speed: 0.000000 real_pulses:0 +I (280744) example: new speed:399.000000 +I (280744) example: expect speed: 0.000000 real_pulses:0 +I (280744) example: new speed:399.000000 +I (280754) example: expect speed: 0.000000 real_pulses:0 +I (280754) example: new speed:399.000000 +I (280764) example: expect speed: 0.000000 real_pulses:0 +I (280764) example: new speed:399.000000 +I (280774) example: expect speed: 0.000000 real_pulses:0 +I (280774) example: new speed:399.000000 +I (280784) example: expect speed: 0.000000 real_pulses:0 +I (280784) example: new speed:399.000000 +I (280794) example: expect speed: 0.000000 real_pulses:0 +I (280794) example: new speed:399.000000 +I (280804) example: expect speed: 0.000000 real_pulses:0 +I (280804) example: new speed:399.000000 +I (280814) example: expect speed: 0.000000 real_pulses:0 +I (280814) example: new speed:399.000000 +I (280824) example: expect speed: 0.000000 real_pulses:0 +I (280824) example: new speed:399.000000 +I (280834) example: expect speed: 0.000000 real_pulses:0 +I (280834) example: new speed:399.000000 +I (280844) example: expect speed: 0.000000 real_pulses:0 +I (280844) example: new speed:399.000000 +I (280854) example: expect speed: 0.000000 real_pulses:0 +I (280854) example: new speed:399.000000 +I (280864) example: expect speed: 0.000000 real_pulses:0 +I (280864) example: new speed:399.000000 +I (280874) example: expect speed: 0.000000 real_pulses:0 +I (280874) example: new speed:399.000000 +I (280884) example: expect speed: 0.000000 real_pulses:0 +I (280884) example: new speed:399.000000 +I (280894) example: expect speed: 0.000000 real_pulses:0 +I (280894) example: new speed:399.000000 +I (280904) example: expect speed: 0.000000 real_pulses:0 +I (280904) example: new speed:399.000000 +I (280914) example: expect speed: 0.000000 real_pulses:0 +I (280914) example: new speed:399.000000 +I (280924) example: expect speed: 0.000000 real_pulses:0 +I (280924) example: new speed:399.000000 +I (280934) example: expect speed: 0.000000 real_pulses:0 +I (280944) example: new speed:399.000000 +I (280944) example: expect speed: 0.000000 real_pulses:0 +I (280944) example: new speed:399.000000 +I (280954) example: expect speed: 0.000000 real_pulses:0 +I (280954) example: new speed:399.000000 +I (280964) example: expect speed: 0.000000 real_pulses:0 +I (280964) example: new speed:399.000000 +I (280974) example: expect speed: 0.000000 real_pulses:0 +I (280974) example: new speed:399.000000 +I (280984) example: expect speed: 0.000000 real_pulses:0 +I (280984) example: new speed:399.000000 +I (280994) example: expect speed: 0.000000 real_pulses:0 +I (280994) example: new speed:399.000000 +I (281004) example: expect speed: 0.000000 real_pulses:0 +I (281004) example: new speed:399.000000 +I (281014) example: expect speed: 0.000000 real_pulses:0 +I (281014) example: new speed:399.000000 +I (281024) example: expect speed: 0.000000 real_pulses:0 +I (281024) example: new speed:399.000000 +I (281034) modbus tcp: ModBusSlave_recv() +I (281034) example: expect speed: 0.000000 real_pulses:0 +I (281034) modbus: ModbusSlaveProcess() +I (281034) example: new speed:399.000000 +I (281044) modbus: check id... +I (281044) modbus: ok +I (281044) modbus: add: 0, length: 10 +I (281044) modbus: Read Holding Registers +I (281044) example: expect speed: 0.000000 real_pulses:0 +I (281054) example: new speed:399.000000 +I (281054) example: expect speed: 0.000000 real_pulses:0 +I (281054) example: new speed:399.000000 +I (281064) example: expect speed: 0.000000 real_pulses:0 +I (281064) example: new speed:399.000000 +I (281074) example: expect speed: 0.000000 real_pulses:0 +I (281074) example: new speed:399.000000 +I (281084) example: expect speed: 0.000000 real_pulses:0 +I (281084) example: new speed:399.000000 +I (281094) example: expect speed: 0.000000 real_pulses:0 +I (281094) example: new speed:399.000000 +I (281104) example: expect speed: 0.000000 real_pulses:0 +I (281114) example: new speed:399.000000 +I (281114) example: expect speed: 0.000000 real_pulses:0 +I (281114) example: new speed:399.000000 +I (281124) example: expect speed: 0.000000 real_pulses:0 +I (281124) example: new speed:399.000000 +I (281134) example: expect speed: 0.000000 real_pulses:0 +I (281144) example: new speed:399.000000 +I (281144) example: expect speed: 0.000000 real_pulses:0 +I (281144) example: new speed:399.000000 +I (281154) example: expect speed: 0.000000 real_pulses:0 +I (281154) example: new speed:399.000000 +I (281164) example: expect speed: 0.000000 real_pulses:0 +I (281164) example: new speed:399.000000 +I (281174) example: expect speed: 0.000000 real_pulses:0 +I (281174) example: new speed:399.000000 +I (281184) example: expect speed: 0.000000 real_pulses:0 +I (281184) example: new speed:399.000000 +I (281194) example: expect speed: 0.000000 real_pulses:0 +I (281194) example: new speed:399.000000 +I (281204) example: expect speed: 0.000000 real_pulses:0 +I (281204) example: new speed:399.000000 +I (281214) example: expect speed: 0.000000 real_pulses:0 +I (281214) example: new speed:399.000000 +I (281224) example: expect speed: 0.000000 real_pulses:0 +I (281224) example: new speed:399.000000 +I (281234) example: expect speed: 0.000000 real_pulses:0 +I (281244) example: new speed:399.000000 +I (281244) example: expect speed: 0.000000 real_pulses:0 +I (281244) example: new speed:399.000000 +I (281254) example: expect speed: 0.000000 real_pulses:0 +I (281264) example: new speed:399.000000 +I (281264) example: expect speed: 0.000000 real_pulses:0 +I (281264) example: new speed:399.000000 +I (281274) example: expect speed: 0.000000 real_pulses:0 +I (281274) example: new speed:399.000000 +I (281284) example: expect speed: 0.000000 real_pulses:0 +I (281284) example: new speed:399.000000 +I (281294) example: expect speed: 0.000000 real_pulses:0 +I (281294) example: new speed:399.000000 +I (281304) example: expect speed: 0.000000 real_pulses:0 +I (281304) example: new speed:399.000000 +I (281314) example: expect speed: 0.000000 real_pulses:0 +I (281314) example: new speed:399.000000 +I (281324) example: expect speed: 0.000000 real_pulses:0 +I (281324) example: new speed:399.000000 +I (281334) example: expect speed: 0.000000 real_pulses:0 +I (281334) example: new speed:399.000000 +I (281344) example: expect speed: 0.000000 real_pulses:0 +I (281344) example: new speed:399.000000 +I (281354) example: expect speed: 0.000000 real_pulses:0 +I (281354) example: new speed:399.000000 +I (281364) example: expect speed: 0.000000 real_pulses:0 +I (281364) example: new speed:399.000000 +I (281374) example: expect speed: 0.000000 real_pulses:0 +I (281374) example: new speed:399.000000 +I (281384) example: expect speed: 0.000000 real_pulses:0 +I (281384) example: new speed:399.000000 +I (281394) example: expect speed: 0.000000 real_pulses:0 +I (281394) example: new speed:399.000000 +I (281404) example: expect speed: 0.000000 real_pulses:0 +I (281404) example: new speed:399.000000 +I (281414) example: expect speed: 0.000000 real_pulses:0 +I (281414) example: new speed:399.000000 +I (281424) example: expect speed: 0.000000 real_pulses:0 +I (281424) example: new speed:399.000000 +I (281434) example: expect speed: 0.000000 real_pulses:0 +I (281434) example: new speed:399.000000 +I (281444) example: expect speed: 0.000000 real_pulses:0 +I (281444) example: new speed:399.000000 +I (281454) example: expect speed: 0.000000 real_pulses:0 +I (281454) example: new speed:399.000000 +I (281464) example: expect speed: 0.000000 real_pulses:0 +I (281464) example: new speed:399.000000 +I (281474) example: expect speed: 0.000000 real_pulses:0 +I (281474) example: new speed:399.000000 +I (281484) example: expect speed: 0.000000 real_pulses:0 +I (281484) example: new speed:399.000000 +I (281494) example: expect speed: 0.000000 real_pulses:0 +I (281494) example: new speed:399.000000 +I (281504) example: expect speed: 0.000000 real_pulses:0 +I (281504) example: new speed:399.000000 +I (281514) example: expect speed: 0.000000 real_pulses:0 +I (281514) example: new speed:399.000000 +I (281524) example: expect speed: 0.000000 real_pulses:0 +I (281524) example: new speed:399.000000 +I (281534) example: expect speed: 0.000000 real_pulses:0 +I (281544) example: new speed:399.000000 +I (281544) example: expect speed: 0.000000 real_pulses:0 +I (281554) example: new speed:399.000000 +I (281554) example: expect speed: 0.000000 real_pulses:0 +I (281564) example: new speed:399.000000 +I (281564) example: expect speed: 0.000000 real_pulses:0 +I (281564) example: new speed:399.000000 +I (281574) example: expect speed: 0.000000 real_pulses:0 +I (281574) example: new speed:399.000000 +I (281584) example: expect speed: 0.000000 real_pulses:0 +I (281584) example: new speed:399.000000 +I (281594) example: expect speed: 0.000000 real_pulses:0 +I (281594) example: new speed:399.000000 +I (281604) example: expect speed: 0.000000 real_pulses:0 +I (281604) example: new speed:399.000000 +I (281614) example: expect speed: 0.000000 real_pulses:0 +I (281614) example: new speed:399.000000 +I (281624) example: expect speed: 0.000000 real_pulses:0 +I (281624) example: new speed:399.000000 +I (281634) example: expect speed: 0.000000 real_pulses:0 +I (281634) example: new speed:399.000000 +I (281644) example: expect speed: 0.000000 real_pulses:0 +I (281644) example: new speed:399.000000 +I (281654) example: expect speed: 0.000000 real_pulses:0 +I (281654) example: new speed:399.000000 +I (281664) example: expect speed: 0.000000 real_pulses:0 +I (281664) example: new speed:399.000000 +I (281674) example: expect speed: 0.000000 real_pulses:0 +I (281674) example: new speed:399.000000 +I (281684) example: expect speed: 0.000000 real_pulses:0 +I (281684) example: new speed:399.000000 +I (281694) example: expect speed: 0.000000 real_pulses:0 +I (281694) example: new speed:399.000000 +I (281704) example: expect speed: 0.000000 real_pulses:0 +I (281704) example: new speed:399.000000 +I (281714) example: expect speed: 0.000000 real_pulses:0 +I (281714) example: new speed:399.000000 +I (281724) example: expect speed: 0.000000 real_pulses:0 +I (281724) example: new speed:399.000000 +I (281734) example: expect speed: 0.000000 real_pulses:0 +I (281734) example: new speed:399.000000 +I (281744) example: expect speed: 0.000000 real_pulses:0 +I (281744) example: new speed:399.000000 +I (281754) example: expect speed: 0.000000 real_pulses:0 +I (281764) example: new speed:399.000000 +I (281764) example: expect speed: 0.000000 real_pulses:0 +I (281764) example: new speed:399.000000 +I (281774) example: expect speed: 0.000000 real_pulses:0 +I (281774) example: new speed:399.000000 +I (281784) example: expect speed: 0.000000 real_pulses:0 +I (281784) example: new speed:399.000000 +I (281794) example: expect speed: 0.000000 real_pulses:0 +I (281794) example: new speed:399.000000 +I (281804) example: expect speed: 0.000000 real_pulses:0 +I (281804) example: new speed:399.000000 +I (281814) example: expect speed: 0.000000 real_pulses:0 +I (281814) example: new speed:399.000000 +I (281824) example: expect speed: 0.000000 real_pulses:0 +I (281824) example: new speed:399.000000 +I (281834) example: expect speed: 0.000000 real_pulses:0 +I (281834) example: new speed:399.000000 +I (281844) example: expect speed: 0.000000 real_pulses:0 +I (281844) example: new speed:399.000000 +I (281854) example: expect speed: 0.000000 real_pulses:0 +I (281854) example: new speed:399.000000 +I (281864) example: expect speed: 0.000000 real_pulses:0 +I (281864) example: new speed:399.000000 +I (281874) example: expect speed: 0.000000 real_pulses:0 +I (281874) example: new speed:399.000000 +I (281884) example: expect speed: 0.000000 real_pulses:0 +I (281884) example: new speed:399.000000 +I (281894) example: expect speed: 0.000000 real_pulses:0 +I (281894) example: new speed:399.000000 +I (281904) example: expect speed: 0.000000 real_pulses:0 +I (281904) example: new speed:399.000000 +I (281914) example: expect speed: 0.000000 real_pulses:0 +I (281914) example: new speed:399.000000 +I (281924) example: expect speed: 0.000000 real_pulses:0 +I (281924) example: new speed:399.000000 +I (281934) example: expect speed: 0.000000 real_pulses:0 +I (281934) example: new speed:399.000000 +I (281944) example: expect speed: 0.000000 real_pulses:0 +I (281944) example: new speed:399.000000 +I (281954) example: expect speed: 0.000000 real_pulses:0 +I (281954) example: new speed:399.000000 +I (281964) example: expect speed: 0.000000 real_pulses:0 +I (281964) example: new speed:399.000000 +I (281974) example: expect speed: 0.000000 real_pulses:0 +I (281974) example: new speed:399.000000 +I (281984) example: expect speed: 0.000000 real_pulses:0 +I (281984) example: new speed:399.000000 +I (281994) example: expect speed: 0.000000 real_pulses:0 +I (281994) example: new speed:399.000000 +I (282004) example: expect speed: 0.000000 real_pulses:0 +I (282004) example: new speed:399.000000 +I (282014) example: expect speed: 0.000000 real_pulses:0 +I (282014) example: new speed:399.000000 +I (282024) example: expect speed: 0.000000 real_pulses:0 +I (282024) example: new speed:399.000000 +I (282034) example: expect speed: 0.000000 real_pulses:0 +I (282034) example: new speed:399.000000 +I (282044) example: expect speed: 0.000000 real_pulses:0 +I (282044) example: new speed:399.000000 +I (282054) example: expect speed: 0.000000 real_pulses:0 +I (282064) example: new speed:399.000000 +I (282064) modbus tcp: ModBusSlave_recv() +I (282064) modbus: ModbusSlaveProcess() +I (282064) modbus: check id... +I (282064) modbus: ok +I (282064) modbus: add: 0, length: 10 +I (282064) modbus: Read Holding Registers +I (282064) example: expect speed: 0.000000 real_pulses:0 +I (282074) example: new speed:399.000000 +I (282074) example: expect speed: 0.000000 real_pulses:0 +I (282074) example: new speed:399.000000 +I (282084) example: expect speed: 0.000000 real_pulses:0 +I (282084) example: new speed:399.000000 +I (282094) example: expect speed: 0.000000 real_pulses:0 +I (282094) example: new speed:399.000000 +I (282104) example: expect speed: 0.000000 real_pulses:0 +I (282104) example: new speed:399.000000 +I (282114) example: expect speed: 0.000000 real_pulses:0 +I (282114) example: new speed:399.000000 +I (282124) example: expect speed: 0.000000 real_pulses:0 +I (282134) example: new speed:399.000000 +I (282134) example: expect speed: 0.000000 real_pulses:0 +I (282134) example: new speed:399.000000 +I (282144) example: expect speed: 0.000000 real_pulses:0 +I (282144) example: new speed:399.000000 +I (282154) example: expect speed: 0.000000 real_pulses:0 +I (282154) example: new speed:399.000000 +I (282164) example: expect speed: 0.000000 real_pulses:0 +I (282164) example: new speed:399.000000 +I (282174) example: expect speed: 0.000000 real_pulses:0 +I (282174) example: new speed:399.000000 +I (282184) example: expect speed: 0.000000 real_pulses:0 +I (282184) example: new speed:399.000000 +I (282194) example: expect speed: 0.000000 real_pulses:0 +I (282194) example: new speed:399.000000 +I (282204) example: expect speed: 0.000000 real_pulses:0 +I (282204) example: new speed:399.000000 +I (282214) example: expect speed: 0.000000 real_pulses:0 +I (282214) example: new speed:399.000000 +I (282224) example: expect speed: 0.000000 real_pulses:0 +I (282224) example: new speed:399.000000 +I (282234) example: expect speed: 0.000000 real_pulses:0 +I (282234) example: new speed:399.000000 +I (282244) example: expect speed: 0.000000 real_pulses:0 +I (282244) example: new speed:399.000000 +I (282254) example: expect speed: 0.000000 real_pulses:0 +I (282254) example: new speed:399.000000 +I (282264) example: expect speed: 0.000000 real_pulses:0 +I (282274) example: new speed:399.000000 +I (282274) example: expect speed: 0.000000 real_pulses:0 +I (282274) example: new speed:399.000000 +I (282284) example: expect speed: 0.000000 real_pulses:0 +I (282284) example: new speed:399.000000 +I (282294) example: expect speed: 0.000000 real_pulses:0 +I (282294) example: new speed:399.000000 +I (282304) example: expect speed: 0.000000 real_pulses:0 +I (282304) example: new speed:399.000000 +I (282314) example: expect speed: 0.000000 real_pulses:0 +I (282314) example: new speed:399.000000 +I (282324) example: expect speed: 0.000000 real_pulses:0 +I (282324) example: new speed:399.000000 +I (282334) example: expect speed: 0.000000 real_pulses:0 +I (282334) example: new speed:399.000000 +I (282344) example: expect speed: 0.000000 real_pulses:0 +I (282344) example: new speed:399.000000 +I (282354) example: expect speed: 0.000000 real_pulses:0 +I (282354) example: new speed:399.000000 +I (282364) example: expect speed: 0.000000 real_pulses:0 +I (282364) example: new speed:399.000000 +I (282374) example: expect speed: 0.000000 real_pulses:0 +I (282374) example: new speed:399.000000 +I (282384) example: expect speed: 0.000000 real_pulses:0 +I (282384) example: new speed:399.000000 +I (282394) example: expect speed: 0.000000 real_pulses:0 +I (282394) example: new speed:399.000000 +I (282404) example: expect speed: 0.000000 real_pulses:0 +I (282404) example: new speed:399.000000 +I (282414) example: expect speed: 0.000000 real_pulses:0 +I (282414) example: new speed:399.000000 +I (282424) example: expect speed: 0.000000 real_pulses:0 +I (282424) example: new speed:399.000000 +I (282434) example: expect speed: 0.000000 real_pulses:0 +I (282434) example: new speed:399.000000 +I (282444) example: expect speed: 0.000000 real_pulses:0 +I (282444) example: new speed:399.000000 +I (282454) example: expect speed: 0.000000 real_pulses:0 +I (282454) example: new speed:399.000000 +I (282464) example: expect speed: 0.000000 real_pulses:0 +I (282464) example: new speed:399.000000 +I (282474) example: expect speed: 0.000000 real_pulses:0 +I (282474) example: new speed:399.000000 +I (282484) example: expect speed: 0.000000 real_pulses:0 +I (282484) example: new speed:399.000000 +I (282494) example: expect speed: 0.000000 real_pulses:0 +I (282494) example: new speed:399.000000 +I (282504) example: expect speed: 0.000000 real_pulses:0 +I (282504) example: new speed:399.000000 +I (282514) example: expect speed: 0.000000 real_pulses:0 +I (282514) example: new speed:399.000000 +I (282524) example: expect speed: 0.000000 real_pulses:0 +I (282524) example: new speed:399.000000 +I (282534) example: expect speed: 0.000000 real_pulses:0 +I (282534) example: new speed:399.000000 +I (282544) example: expect speed: 0.000000 real_pulses:0 +I (282544) example: new speed:399.000000 +I (282554) example: expect speed: 0.000000 real_pulses:0 +I (282554) example: new speed:399.000000 +I (282564) example: expect speed: 0.000000 real_pulses:0 +I (282574) example: new speed:399.000000 +I (282574) example: expect speed: 0.000000 real_pulses:0 +I (282574) example: new speed:399.000000 +I (282584) example: expect speed: 0.000000 real_pulses:0 +I (282584) example: new speed:399.000000 +I (282594) example: expect speed: 0.000000 real_pulses:0 +I (282594) example: new speed:399.000000 +I (282604) example: expect speed: 0.000000 real_pulses:0 +I (282604) example: new speed:399.000000 +I (282614) example: expect speed: 0.000000 real_pulses:0 +I (282614) example: new speed:399.000000 +I (282624) example: expect speed: 0.000000 real_pulses:0 +I (282624) example: new speed:399.000000 +I (282634) example: expect speed: 0.000000 real_pulses:0 +I (282634) example: new speed:399.000000 +I (282644) example: expect speed: 0.000000 real_pulses:0 +I (282644) example: new speed:399.000000 +I (282654) example: expect speed: 0.000000 real_pulses:0 +I (282654) example: new speed:399.000000 +I (282664) example: expect speed: 0.000000 real_pulses:0 +I (282664) example: new speed:399.000000 +I (282674) example: expect speed: 0.000000 real_pulses:0 +I (282674) example: new speed:399.000000 +I (282684) example: expect speed: 0.000000 real_pulses:0 +I (282684) example: new speed:399.000000 +I (282694) example: expect speed: 0.000000 real_pulses:0 +I (282694) example: new speed:399.000000 +I (282704) example: expect speed: 0.000000 real_pulses:0 +I (282704) example: new speed:399.000000 +I (282714) example: expect speed: 0.000000 real_pulses:0 +I (282714) example: new speed:399.000000 +I (282724) example: expect speed: 0.000000 real_pulses:0 +I (282724) example: new speed:399.000000 +I (282734) example: expect speed: 0.000000 real_pulses:0 +I (282734) example: new speed:399.000000 +I (282744) example: expect speed: 0.000000 real_pulses:0 +I (282744) example: new speed:399.000000 +I (282754) example: expect speed: 0.000000 real_pulses:0 +I (282754) example: new speed:399.000000 +I (282764) example: expect speed: 0.000000 real_pulses:0 +I (282764) example: new speed:399.000000 +I (282774) example: expect speed: 0.000000 real_pulses:0 +I (282784) example: new speed:399.000000 +I (282784) example: expect speed: 0.000000 real_pulses:0 +I (282784) example: new speed:399.000000 +I (282794) example: expect speed: 0.000000 real_pulses:0 +I (282794) example: new speed:399.000000 +I (282804) example: expect speed: 0.000000 real_pulses:0 +I (282804) example: new speed:399.000000 +I (282814) example: expect speed: 0.000000 real_pulses:0 +I (282814) example: new speed:399.000000 +I (282824) example: expect speed: 0.000000 real_pulses:0 +I (282824) example: new speed:399.000000 +I (282834) example: expect speed: 0.000000 real_pulses:0 +I (282834) example: new speed:399.000000 +I (282844) example: expect speed: 0.000000 real_pulses:0 +I (282844) example: new speed:399.000000 +I (282854) example: expect speed: 0.000000 real_pulses:0 +I (282854) example: new speed:399.000000 +I (282864) example: expect speed: 0.000000 real_pulses:0 +I (282864) example: new speed:399.000000 +I (282874) example: expect speed: 0.000000 real_pulses:0 +I (282874) example: new speed:399.000000 +I (282884) example: expect speed: 0.000000 real_pulses:0 +I (282884) example: new speed:399.000000 +I (282894) example: expect speed: 0.000000 real_pulses:0 +I (282894) example: new speed:399.000000 +I (282904) example: expect speed: 0.000000 real_pulses:0 +I (282904) example: new speed:399.000000 +I (282914) example: expect speed: 0.000000 real_pulses:0 +I (282914) example: new speed:399.000000 +I (282924) example: expect speed: 0.000000 real_pulses:0 +I (282924) example: new speed:399.000000 +I (282934) example: expect speed: 0.000000 real_pulses:0 +I (282934) example: new speed:399.000000 +I (282944) example: expect speed: 0.000000 real_pulses:0 +I (282944) example: new speed:399.000000 +I (282954) example: expect speed: 0.000000 real_pulses:0 +I (282954) example: new speed:399.000000 +I (282964) example: expect speed: 0.000000 real_pulses:0 +I (282964) example: new speed:399.000000 +I (282974) example: expect speed: 0.000000 real_pulses:0 +I (282984) example: new speed:399.000000 +I (282984) example: expect speed: 0.000000 real_pulses:0 +I (282984) example: new speed:399.000000 +I (282994) example: expect speed: 0.000000 real_pulses:0 +I (282994) example: new speed:399.000000 +I (283004) example: expect speed: 0.000000 real_pulses:0 +I (283004) example: new speed:399.000000 +I (283014) example: expect speed: 0.000000 real_pulses:0 +I (283014) example: new speed:399.000000 +I (283024) example: expect speed: 0.000000 real_pulses:0 +I (283024) example: new speed:399.000000 +I (283034) example: expect speed: 0.000000 real_pulses:0 +I (283034) example: new speed:399.000000 +I (283044) example: expect speed: 0.000000 real_pulses:0 +I (283044) example: new speed:399.000000 +I (283054) example: expect speed: 0.000000 real_pulses:0 +I (283054) example: new speed:399.000000 +I (283064) example: expect speed: 0.000000 real_pulses:0 +I (283064) example: new speed:399.000000 +I (283074) example: expect speed: 0.000000 real_pulses:0 +I (283074) example: new speed:399.000000 +I (283084) modbus tcp: ModBusSlave_recv() +I (283084) modbus: ModbusSlaveProcess() +I (283084) modbus: check id... +I (283084) modbus: ok +I (283084) modbus: add: 0, length: 10 +I (283084) modbus: Read Holding Registers +I (283084) example: expect speed: 0.000000 real_pulses:0 +I (283094) example: new speed:399.000000 +I (283094) example: expect speed: 0.000000 real_pulses:0 +I (283094) example: new speed:399.000000 +I (283104) example: expect speed: 0.000000 real_pulses:0 +I (283104) example: new speed:399.000000 +I (283114) example: expect speed: 0.000000 real_pulses:0 +I (283114) example: new speed:399.000000 +I (283124) example: expect speed: 0.000000 real_pulses:0 +I (283124) example: new speed:399.000000 +I (283134) example: expect speed: 0.000000 real_pulses:0 +I (283134) example: new speed:399.000000 +I (283144) example: expect speed: 0.000000 real_pulses:0 +I (283154) example: new speed:399.000000 +I (283154) example: expect speed: 0.000000 real_pulses:0 +I (283154) example: new speed:399.000000 +I (283164) example: expect speed: 0.000000 real_pulses:0 +I (283164) example: new speed:399.000000 +I (283174) example: expect speed: 0.000000 real_pulses:0 +I (283174) example: new speed:399.000000 +I (283184) example: expect speed: 0.000000 real_pulses:0 +I (283194) example: new speed:399.000000 +I (283194) example: expect speed: 0.000000 real_pulses:0 +I (283204) example: new speed:399.000000 +I (283204) example: expect speed: 0.000000 real_pulses:0 +I (283204) example: new speed:399.000000 +I (283214) example: expect speed: 0.000000 real_pulses:0 +I (283214) example: new speed:399.000000 +I (283224) example: expect speed: 0.000000 real_pulses:0 +I (283224) example: new speed:399.000000 +I (283234) example: expect speed: 0.000000 real_pulses:0 +I (283234) example: new speed:399.000000 +I (283244) example: expect speed: 0.000000 real_pulses:0 +I (283254) example: new speed:399.000000 +I (283254) example: expect speed: 0.000000 real_pulses:0 +I (283254) example: new speed:399.000000 +I (283264) example: expect speed: 0.000000 real_pulses:0 +I (283264) example: new speed:399.000000 +I (283274) example: expect speed: 0.000000 real_pulses:0 +I (283274) example: new speed:399.000000 +I (283284) example: expect speed: 0.000000 real_pulses:0 +I (283294) example: new speed:399.000000 +I (283294) example: expect speed: 0.000000 real_pulses:0 +I (283304) example: new speed:399.000000 +I (283304) example: expect speed: 0.000000 real_pulses:0 +I (283304) example: new speed:399.000000 +I (283314) example: expect speed: 0.000000 real_pulses:0 +I (283314) example: new speed:399.000000 +I (283324) example: expect speed: 0.000000 real_pulses:0 +I (283324) example: new speed:399.000000 +I (283334) example: expect speed: 0.000000 real_pulses:0 +I (283334) example: new speed:399.000000 +I (283344) example: expect speed: 0.000000 real_pulses:0 +I (283344) example: new speed:399.000000 +I (283354) example: expect speed: 0.000000 real_pulses:0 +I (283354) example: new speed:399.000000 +I (283364) example: expect speed: 0.000000 real_pulses:0 +I (283364) example: new speed:399.000000 +I (283374) example: expect speed: 0.000000 real_pulses:0 +I (283374) example: new speed:399.000000 +I (283384) example: expect speed: 0.000000 real_pulses:0 +I (283384) example: new speed:399.000000 +I (283394) example: expect speed: 0.000000 real_pulses:0 +I (283394) example: new speed:399.000000 +I (283404) example: expect speed: 0.000000 real_pulses:0 +I (283404) example: new speed:399.000000 +I (283414) example: expect speed: 0.000000 real_pulses:0 +I (283414) example: new speed:399.000000 +I (283424) example: expect speed: 0.000000 real_pulses:0 +I (283424) example: new speed:399.000000 +I (283434) example: expect speed: 0.000000 real_pulses:0 +I (283434) example: new speed:399.000000 +I (283444) example: expect speed: 0.000000 real_pulses:0 +I (283444) example: new speed:399.000000 +I (283454) example: expect speed: 0.000000 real_pulses:0 +I (283454) example: new speed:399.000000 +I (283464) example: expect speed: 0.000000 real_pulses:0 +I (283464) example: new speed:399.000000 +I (283474) example: expect speed: 0.000000 real_pulses:0 +I (283474) example: new speed:399.000000 +I (283484) example: expect speed: 0.000000 real_pulses:0 +I (283484) example: new speed:399.000000 +I (283494) example: expect speed: 0.000000 real_pulses:0 +I (283504) example: new speed:399.000000 +I (283504) example: expect speed: 0.000000 real_pulses:0 +I (283504) example: new speed:399.000000 +I (283514) example: expect speed: 0.000000 real_pulses:0 +I (283514) example: new speed:399.000000 +I (283524) example: expect speed: 0.000000 real_pulses:0 +I (283524) example: new speed:399.000000 +I (283534) example: expect speed: 0.000000 real_pulses:0 +I (283544) example: new speed:399.000000 +I (283544) example: expect speed: 0.000000 real_pulses:0 +I (283544) example: new speed:399.000000 +I (283554) example: expect speed: 0.000000 real_pulses:0 +I (283554) example: new speed:399.000000 +I (283564) example: expect speed: 0.000000 real_pulses:0 +I (283564) example: new speed:399.000000 +I (283574) example: expect speed: 0.000000 real_pulses:0 +I (283574) example: new speed:399.000000 +I (283584) example: expect speed: 0.000000 real_pulses:0 +I (283584) example: new speed:399.000000 +I (283594) example: expect speed: 0.000000 real_pulses:0 +I (283594) example: new speed:399.000000 +I (283604) example: expect speed: 0.000000 real_pulses:0 +I (283604) example: new speed:399.000000 +I (283614) example: expect speed: 0.000000 real_pulses:0 +I (283614) example: new speed:399.000000 +I (283624) example: expect speed: 0.000000 real_pulses:0 +I (283624) example: new speed:399.000000 +I (283634) example: expect speed: 0.000000 real_pulses:0 +I (283634) example: new speed:399.000000 +I (283644) example: expect speed: 0.000000 real_pulses:0 +I (283644) example: new speed:399.000000 +I (283654) example: expect speed: 0.000000 real_pulses:0 +I (283654) example: new speed:399.000000 +I (283664) example: expect speed: 0.000000 real_pulses:0 +I (283664) example: new speed:399.000000 +I (283674) example: expect speed: 0.000000 real_pulses:0 +I (283674) example: new speed:399.000000 +I (283684) example: expect speed: 0.000000 real_pulses:0 +I (283684) example: new speed:399.000000 +I (283694) example: expect speed: 0.000000 real_pulses:0 +I (283694) example: new speed:399.000000 +I (283704) example: expect speed: 0.000000 real_pulses:0 +I (283704) example: new speed:399.000000 +I (283714) example: expect speed: 0.000000 real_pulses:0 +I (283714) example: new speed:399.000000 +I (283724) example: expect speed: 0.000000 real_pulses:0 +I (283724) example: new speed:399.000000 +I (283734) example: expect speed: 0.000000 real_pulses:0 +I (283734) example: new speed:399.000000 +I (283744) example: expect speed: 0.000000 real_pulses:0 +I (283744) example: new speed:399.000000 +I (283754) example: expect speed: 0.000000 real_pulses:0 +I (283754) example: new speed:399.000000 +I (283764) example: expect speed: 0.000000 real_pulses:0 +I (283764) example: new speed:399.000000 +I (283774) example: expect speed: 0.000000 real_pulses:0 +I (283774) example: new speed:399.000000 +I (283784) example: expect speed: 0.000000 real_pulses:0 +I (283784) example: new speed:399.000000 +I (283794) example: expect speed: 0.000000 real_pulses:0 +I (283804) example: new speed:399.000000 +I (283804) example: expect speed: 0.000000 real_pulses:0 +I (283804) example: new speed:399.000000 +I (283814) example: expect speed: 0.000000 real_pulses:0 +I (283814) example: new speed:399.000000 +I (283824) example: expect speed: 0.000000 real_pulses:0 +I (283824) example: new speed:399.000000 +I (283834) example: expect speed: 0.000000 real_pulses:0 +I (283834) example: new speed:399.000000 +I (283844) example: expect speed: 0.000000 real_pulses:0 +I (283844) example: new speed:399.000000 +I (283854) example: expect speed: 0.000000 real_pulses:0 +I (283854) example: new speed:399.000000 +I (283864) example: expect speed: 0.000000 real_pulses:0 +I (283864) example: new speed:399.000000 +I (283874) example: expect speed: 0.000000 real_pulses:0 +I (283874) example: new speed:399.000000 +I (283884) example: expect speed: 0.000000 real_pulses:0 +I (283884) example: new speed:399.000000 +I (283894) example: expect speed: 0.000000 real_pulses:0 +I (283894) example: new speed:399.000000 +I (283904) example: expect speed: 0.000000 real_pulses:0 +I (283904) example: new speed:399.000000 +I (283914) example: expect speed: 0.000000 real_pulses:0 +I (283914) example: new speed:399.000000 +I (283924) example: expect speed: 0.000000 real_pulses:0 +I (283924) example: new speed:399.000000 +I (283934) example: expect speed: 0.000000 real_pulses:0 +I (283934) example: new speed:399.000000 +I (283944) example: expect speed: 0.000000 real_pulses:0 +I (283944) example: new speed:399.000000 +I (283954) example: expect speed: 0.000000 real_pulses:0 +I (283954) example: new speed:399.000000 +I (283964) example: expect speed: 0.000000 real_pulses:0 +I (283964) example: new speed:399.000000 +I (283974) example: expect speed: 0.000000 real_pulses:0 +I (283974) example: new speed:399.000000 +I (283984) example: expect speed: 0.000000 real_pulses:0 +I (283984) example: new speed:399.000000 +I (283994) example: expect speed: 0.000000 real_pulses:0 +I (283994) example: new speed:399.000000 +I (284004) example: expect speed: 0.000000 real_pulses:0 +I (284014) example: new speed:399.000000 +I (284014) modbus tcp: ModBusSlave_recv() +I (284014) modbus: ModbusSlaveProcess() +I (284014) modbus: check id... +I (284014) modbus: ok +I (284014) modbus: add: 0, length: 10 +I (284014) modbus: Read Holding Registers +I (284014) example: expect speed: 0.000000 real_pulses:0 +I (284024) example: new speed:399.000000 +I (284024) example: expect speed: 0.000000 real_pulses:0 +I (284024) example: new speed:399.000000 +I (284034) example: expect speed: 0.000000 real_pulses:0 +I (284034) example: new speed:399.000000 +I (284044) example: expect speed: 0.000000 real_pulses:0 +I (284044) example: new speed:399.000000 +I (284054) example: expect speed: 0.000000 real_pulses:0 +I (284054) example: new speed:399.000000 +I (284064) example: expect speed: 0.000000 real_pulses:0 +I (284064) example: new speed:399.000000 +I (284074) example: expect speed: 0.000000 real_pulses:0 +I (284074) example: new speed:399.000000 +I (284084) example: expect speed: 0.000000 real_pulses:0 +I (284094) example: new speed:399.000000 +I (284094) example: expect speed: 0.000000 real_pulses:0 +I (284104) example: new speed:399.000000 +I (284104) example: expect speed: 0.000000 real_pulses:0 +I (284114) example: new speed:399.000000 +I (284114) example: expect speed: 0.000000 real_pulses:0 +I (284124) example: new speed:399.000000 +I (284124) example: expect speed: 0.000000 real_pulses:0 +I (284124) example: new speed:399.000000 +I (284134) example: expect speed: 0.000000 real_pulses:0 +I (284134) example: new speed:399.000000 +I (284144) example: expect speed: 0.000000 real_pulses:0 +I (284144) example: new speed:399.000000 +I (284154) example: expect speed: 0.000000 real_pulses:0 +I (284154) example: new speed:399.000000 +I (284164) example: expect speed: 0.000000 real_pulses:0 +I (284164) example: new speed:399.000000 +I (284174) example: expect speed: 0.000000 real_pulses:0 +I (284174) example: new speed:399.000000 +I (284184) example: expect speed: 0.000000 real_pulses:0 +I (284184) example: new speed:399.000000 +I (284194) example: expect speed: 0.000000 real_pulses:0 +I (284194) example: new speed:399.000000 +I (284204) example: expect speed: 0.000000 real_pulses:0 +I (284204) example: new speed:399.000000 +I (284214) example: expect speed: 0.000000 real_pulses:0 +I (284214) example: new speed:399.000000 +I (284224) example: expect speed: 0.000000 real_pulses:0 +I (284224) example: new speed:399.000000 +I (284234) example: expect speed: 0.000000 real_pulses:0 +I (284234) example: new speed:399.000000 +I (284244) example: expect speed: 0.000000 real_pulses:0 +I (284244) example: new speed:399.000000 +I (284254) example: expect speed: 0.000000 real_pulses:0 +I (284254) example: new speed:399.000000 +I (284264) example: expect speed: 0.000000 real_pulses:0 +I (284264) example: new speed:399.000000 +I (284274) example: expect speed: 0.000000 real_pulses:0 +I (284274) example: new speed:399.000000 +I (284284) example: expect speed: 0.000000 real_pulses:0 +I (284284) example: new speed:399.000000 +I (284294) example: expect speed: 0.000000 real_pulses:0 +I (284294) example: new speed:399.000000 +I (284304) example: expect speed: 0.000000 real_pulses:0 +I (284304) example: new speed:399.000000 +I (284314) example: expect speed: 0.000000 real_pulses:0 +I (284324) example: new speed:399.000000 +I (284324) example: expect speed: 0.000000 real_pulses:0 +I (284324) example: new speed:399.000000 +I (284334) example: expect speed: 0.000000 real_pulses:0 +I (284334) example: new speed:399.000000 +I (284344) example: expect speed: 0.000000 real_pulses:0 +I (284344) example: new speed:399.000000 +I (284354) example: expect speed: 0.000000 real_pulses:0 +I (284354) example: new speed:399.000000 +I (284364) example: expect speed: 0.000000 real_pulses:0 +I (284364) example: new speed:399.000000 +I (284374) example: expect speed: 0.000000 real_pulses:0 +I (284374) example: new speed:399.000000 +I (284384) example: expect speed: 0.000000 real_pulses:0 +I (284384) example: new speed:399.000000 +I (284394) example: expect speed: 0.000000 real_pulses:0 +I (284394) example: new speed:399.000000 +I (284404) example: expect speed: 0.000000 real_pulses:0 +I (284404) example: new speed:399.000000 +I (284414) example: expect speed: 0.000000 real_pulses:0 +I (284414) example: new speed:399.000000 +I (284424) example: expect speed: 0.000000 real_pulses:0 +I (284424) example: new speed:399.000000 +I (284434) example: expect speed: 0.000000 real_pulses:0 +I (284434) example: new speed:399.000000 +I (284444) example: expect speed: 0.000000 real_pulses:0 +I (284444) example: new speed:399.000000 +I (284454) example: expect speed: 0.000000 real_pulses:0 +I (284454) example: new speed:399.000000 +I (284464) example: expect speed: 0.000000 real_pulses:0 +I (284464) example: new speed:399.000000 +I (284474) example: expect speed: 0.000000 real_pulses:0 +I (284474) example: new speed:399.000000 +I (284484) example: expect speed: 0.000000 real_pulses:0 +I (284484) example: new speed:399.000000 +I (284494) example: expect speed: 0.000000 real_pulses:0 +I (284494) example: new speed:399.000000 +I (284504) example: expect speed: 0.000000 real_pulses:0 +I (284504) example: new speed:399.000000 +I (284514) example: expect speed: 0.000000 real_pulses:0 +I (284514) example: new speed:399.000000 +I (284524) example: expect speed: 0.000000 real_pulses:0 +I (284524) example: new speed:399.000000 +I (284534) example: expect speed: 0.000000 real_pulses:0 +I (284534) example: new speed:399.000000 +I (284544) example: expect speed: 0.000000 real_pulses:0 +I (284544) example: new speed:399.000000 +I (284554) example: expect speed: 0.000000 real_pulses:0 +I (284554) example: new speed:399.000000 +I (284564) example: expect speed: 0.000000 real_pulses:0 +I (284564) example: new speed:399.000000 +I (284574) example: expect speed: 0.000000 real_pulses:0 +I (284574) example: new speed:399.000000 +I (284584) example: expect speed: 0.000000 real_pulses:0 +I (284584) example: new speed:399.000000 +I (284594) example: expect speed: 0.000000 real_pulses:0 +I (284594) example: new speed:399.000000 +I (284604) example: expect speed: 0.000000 real_pulses:0 +I (284604) example: new speed:399.000000 +I (284614) example: expect speed: 0.000000 real_pulses:0 +I (284624) example: new speed:399.000000 +I (284624) example: expect speed: 0.000000 real_pulses:0 +I (284624) example: new speed:399.000000 +I (284634) example: expect speed: 0.000000 real_pulses:0 +I (284634) example: new speed:399.000000 +I (284644) example: expect speed: 0.000000 real_pulses:0 +I (284644) example: new speed:399.000000 +I (284654) example: expect speed: 0.000000 real_pulses:0 +I (284654) example: new speed:399.000000 +I (284664) example: expect speed: 0.000000 real_pulses:0 +I (284664) example: new speed:399.000000 +I (284674) example: expect speed: 0.000000 real_pulses:0 +I (284674) example: new speed:399.000000 +I (284684) example: expect speed: 0.000000 real_pulses:0 +I (284684) example: new speed:399.000000 +I (284694) example: expect speed: 0.000000 real_pulses:0 +I (284694) example: new speed:399.000000 +I (284704) example: expect speed: 0.000000 real_pulses:0 +I (284704) example: new speed:399.000000 +I (284714) example: expect speed: 0.000000 real_pulses:0 +I (284714) example: new speed:399.000000 +I (284724) example: expect speed: 0.000000 real_pulses:0 +I (284724) example: new speed:399.000000 +I (284734) example: expect speed: 0.000000 real_pulses:0 +I (284734) example: new speed:399.000000 +I (284744) example: expect speed: 0.000000 real_pulses:0 +I (284744) example: new speed:399.000000 +I (284754) example: expect speed: 0.000000 real_pulses:0 +I (284754) example: new speed:399.000000 +I (284764) example: expect speed: 0.000000 real_pulses:0 +I (284764) example: new speed:399.000000 +I (284774) example: expect speed: 0.000000 real_pulses:0 +I (284774) example: new speed:399.000000 +I (284784) example: expect speed: 0.000000 real_pulses:0 +I (284784) example: new speed:399.000000 +I (284794) example: expect speed: 0.000000 real_pulses:0 +I (284794) example: new speed:399.000000 +I (284804) example: expect speed: 0.000000 real_pulses:0 +I (284804) example: new speed:399.000000 +I (284814) example: expect speed: 0.000000 real_pulses:0 +I (284814) example: new speed:399.000000 +I (284824) example: expect speed: 0.000000 real_pulses:0 +I (284834) example: new speed:399.000000 +I (284834) example: expect speed: 0.000000 real_pulses:0 +I (284834) example: new speed:399.000000 +I (284844) example: expect speed: 0.000000 real_pulses:0 +I (284844) example: new speed:399.000000 +I (284854) example: expect speed: 0.000000 real_pulses:0 +I (284854) example: new speed:399.000000 +I (284864) example: expect speed: 0.000000 real_pulses:0 +I (284864) example: new speed:399.000000 +I (284874) example: expect speed: 0.000000 real_pulses:0 +I (284874) example: new speed:399.000000 +I (284884) example: expect speed: 0.000000 real_pulses:0 +I (284884) example: new speed:399.000000 +I (284894) example: expect speed: 0.000000 real_pulses:0 +I (284894) example: new speed:399.000000 +I (284904) example: expect speed: 0.000000 real_pulses:0 +I (284904) example: new speed:399.000000 +I (284914) example: expect speed: 0.000000 real_pulses:0 +I (284914) example: new speed:399.000000 +I (284924) example: expect speed: 0.000000 real_pulses:0 +I (284924) example: new speed:399.000000 +I (284934) example: expect speed: 0.000000 real_pulses:0 +I (284934) example: new speed:399.000000 +I (284944) example: expect speed: 0.000000 real_pulses:0 +I (284944) example: new speed:399.000000 +I (284954) example: expect speed: 0.000000 real_pulses:0 +I (284954) example: new speed:399.000000 +I (284964) example: expect speed: 0.000000 real_pulses:0 +I (284964) example: new speed:399.000000 +I (284974) example: expect speed: 0.000000 real_pulses:0 +I (284974) example: new speed:399.000000 +I (284984) example: expect speed: 0.000000 real_pulses:0 +I (284984) example: new speed:399.000000 +I (284994) example: expect speed: 0.000000 real_pulses:0 +I (284994) example: new speed:399.000000 +I (285004) example: expect speed: 0.000000 real_pulses:0 +I (285004) example: new speed:399.000000 +I (285014) example: expect speed: 0.000000 real_pulses:0 +I (285014) example: new speed:399.000000 +I (285024) example: expect speed: 0.000000 real_pulses:0 +I (285034) example: new speed:399.000000 +I (285034) modbus tcp: ModBusSlave_recv() +I (285034) modbus: ModbusSlaveProcess() +I (285034) modbus: check id... +I (285034) modbus: ok +I (285034) modbus: add: 0, length: 10 +I (285034) modbus: Read Holding Registers +I (285034) example: expect speed: 0.000000 real_pulses:0 +I (285044) example: new speed:399.000000 +I (285044) example: expect speed: 0.000000 real_pulses:0 +I (285044) example: new speed:399.000000 +I (285054) example: expect speed: 0.000000 real_pulses:0 +I (285054) example: new speed:399.000000 +I (285064) example: expect speed: 0.000000 real_pulses:0 +I (285064) example: new speed:399.000000 +I (285074) example: expect speed: 0.000000 real_pulses:0 +I (285074) example: new speed:399.000000 +I (285084) example: expect speed: 0.000000 real_pulses:0 +I (285094) example: new speed:399.000000 +I (285094) example: expect speed: 0.000000 real_pulses:0 +I (285094) example: new speed:399.000000 +I (285104) example: expect speed: 0.000000 real_pulses:0 +I (285104) example: new speed:399.000000 +I (285114) example: expect speed: 0.000000 real_pulses:0 +I (285114) example: new speed:399.000000 +I (285124) example: expect speed: 0.000000 real_pulses:0 +I (285134) example: new speed:399.000000 +I (285134) example: expect speed: 0.000000 real_pulses:0 +I (285134) example: new speed:399.000000 +I (285144) example: expect speed: 0.000000 real_pulses:0 +I (285144) example: new speed:399.000000 +I (285154) example: expect speed: 0.000000 real_pulses:0 +I (285154) example: new speed:399.000000 +I (285164) example: expect speed: 0.000000 real_pulses:0 +I (285164) example: new speed:399.000000 +I (285174) example: expect speed: 0.000000 real_pulses:0 +I (285174) example: new speed:399.000000 +I (285184) example: expect speed: 0.000000 real_pulses:0 +I (285184) example: new speed:399.000000 +I (285194) example: expect speed: 0.000000 real_pulses:0 +I (285194) example: new speed:399.000000 +I (285204) example: expect speed: 0.000000 real_pulses:0 +I (285204) example: new speed:399.000000 +I (285214) example: expect speed: 0.000000 real_pulses:0 +I (285214) example: new speed:399.000000 +I (285224) example: expect speed: 0.000000 real_pulses:0 +I (285224) example: new speed:399.000000 +I (285234) example: expect speed: 0.000000 real_pulses:0 +I (285234) example: new speed:399.000000 +I (285244) example: expect speed: 0.000000 real_pulses:0 +I (285244) example: new speed:399.000000 +I (285254) example: expect speed: 0.000000 real_pulses:0 +I (285254) example: new speed:399.000000 +I (285264) example: expect speed: 0.000000 real_pulses:0 +I (285264) example: new speed:399.000000 +I (285274) example: expect speed: 0.000000 real_pulses:0 +I (285274) example: new speed:399.000000 +I (285284) example: expect speed: 0.000000 real_pulses:0 +I (285284) example: new speed:399.000000 +I (285294) example: expect speed: 0.000000 real_pulses:0 +I (285294) example: new speed:399.000000 +I (285304) example: expect speed: 0.000000 real_pulses:0 +I (285304) example: new speed:399.000000 +I (285314) example: expect speed: 0.000000 real_pulses:0 +I (285314) example: new speed:399.000000 +I (285324) example: expect speed: 0.000000 real_pulses:0 +I (285324) example: new speed:399.000000 +I (285334) example: expect speed: 0.000000 real_pulses:0 +I (285344) example: new speed:399.000000 +I (285344) example: expect speed: 0.000000 real_pulses:0 +I (285344) example: new speed:399.000000 +I (285354) example: expect speed: 0.000000 real_pulses:0 +I (285354) example: new speed:399.000000 +I (285364) example: expect speed: 0.000000 real_pulses:0 +I (285364) example: new speed:399.000000 +I (285374) example: expect speed: 0.000000 real_pulses:0 +I (285374) example: new speed:399.000000 +I (285384) example: expect speed: 0.000000 real_pulses:0 +I (285384) example: new speed:399.000000 +I (285394) example: expect speed: 0.000000 real_pulses:0 +I (285394) example: new speed:399.000000 +I (285404) example: expect speed: 0.000000 real_pulses:0 +I (285404) example: new speed:399.000000 +I (285414) example: expect speed: 0.000000 real_pulses:0 +I (285414) example: new speed:399.000000 +I (285424) example: expect speed: 0.000000 real_pulses:0 +I (285424) example: new speed:399.000000 +I (285434) example: expect speed: 0.000000 real_pulses:0 +I (285434) example: new speed:399.000000 +I (285444) example: expect speed: 0.000000 real_pulses:0 +I (285444) example: new speed:399.000000 +I (285454) example: expect speed: 0.000000 real_pulses:0 +I (285454) example: new speed:399.000000 +I (285464) example: expect speed: 0.000000 real_pulses:0 +I (285464) example: new speed:399.000000 +I (285474) example: expect speed: 0.000000 real_pulses:0 +I (285474) example: new speed:399.000000 +I (285484) example: expect speed: 0.000000 real_pulses:0 +I (285484) example: new speed:399.000000 +I (285494) example: expect speed: 0.000000 real_pulses:0 +I (285494) example: new speed:399.000000 +I (285504) example: expect speed: 0.000000 real_pulses:0 +I (285504) example: new speed:399.000000 +I (285514) example: expect speed: 0.000000 real_pulses:0 +I (285514) example: new speed:399.000000 +I (285524) example: expect speed: 0.000000 real_pulses:0 +I (285524) example: new speed:399.000000 +I (285534) example: expect speed: 0.000000 real_pulses:0 +I (285534) example: new speed:399.000000 +I (285544) example: expect speed: 0.000000 real_pulses:0 +I (285544) example: new speed:399.000000 +I (285554) example: expect speed: 0.000000 real_pulses:0 +I (285554) example: new speed:399.000000 +I (285564) example: expect speed: 0.000000 real_pulses:0 +I (285564) example: new speed:399.000000 +I (285574) example: expect speed: 0.000000 real_pulses:0 +I (285574) example: new speed:399.000000 +I (285584) example: expect speed: 0.000000 real_pulses:0 +I (285584) example: new speed:399.000000 +I (285594) example: expect speed: 0.000000 real_pulses:0 +I (285594) example: new speed:399.000000 +I (285604) example: expect speed: 0.000000 real_pulses:0 +I (285604) example: new speed:399.000000 +I (285614) example: expect speed: 0.000000 real_pulses:0 +I (285614) example: new speed:399.000000 +I (285624) example: expect speed: 0.000000 real_pulses:0 +I (285624) example: new speed:399.000000 +I (285634) example: expect speed: 0.000000 real_pulses:0 +I (285634) example: new speed:399.000000 +I (285644) example: expect speed: 0.000000 real_pulses:0 +I (285654) example: new speed:399.000000 +I (285654) example: expect speed: 0.000000 real_pulses:0 +I (285654) example: new speed:399.000000 +I (285664) example: expect speed: 0.000000 real_pulses:0 +I (285664) example: new speed:399.000000 +I (285674) example: expect speed: 0.000000 real_pulses:0 +I (285674) example: new speed:399.000000 +I (285684) example: expect speed: 0.000000 real_pulses:0 +I (285684) example: new speed:399.000000 +I (285694) example: expect speed: 0.000000 real_pulses:0 +I (285694) example: new speed:399.000000 +I (285704) example: expect speed: 0.000000 real_pulses:0 +I (285704) example: new speed:399.000000 +I (285714) example: expect speed: 0.000000 real_pulses:0 +I (285714) example: new speed:399.000000 +I (285724) example: expect speed: 0.000000 real_pulses:0 +I (285724) example: new speed:399.000000 +I (285734) example: expect speed: 0.000000 real_pulses:0 +I (285734) example: new speed:399.000000 +I (285744) example: expect speed: 0.000000 real_pulses:0 +I (285744) example: new speed:399.000000 +I (285754) example: expect speed: 0.000000 real_pulses:0 +I (285754) example: new speed:399.000000 +I (285764) example: expect speed: 0.000000 real_pulses:0 +I (285764) example: new speed:399.000000 +I (285774) example: expect speed: 0.000000 real_pulses:0 +I (285774) example: new speed:399.000000 +I (285784) example: expect speed: 0.000000 real_pulses:0 +I (285784) example: new speed:399.000000 +I (285794) example: expect speed: 0.000000 real_pulses:0 +I (285794) example: new speed:399.000000 +I (285804) example: expect speed: 0.000000 real_pulses:0 +I (285804) example: new speed:399.000000 +I (285814) example: expect speed: 0.000000 real_pulses:0 +I (285814) example: new speed:399.000000 +I (285824) example: expect speed: 0.000000 real_pulses:0 +I (285824) example: new speed:399.000000 +I (285834) example: expect speed: 0.000000 real_pulses:0 +I (285834) example: new speed:399.000000 +I (285844) example: expect speed: 0.000000 real_pulses:0 +I (285854) example: new speed:399.000000 +I (285854) example: expect speed: 0.000000 real_pulses:0 +I (285854) example: new speed:399.000000 +I (285864) example: expect speed: 0.000000 real_pulses:0 +I (285864) example: new speed:399.000000 +I (285874) example: expect speed: 0.000000 real_pulses:0 +I (285874) example: new speed:399.000000 +I (285884) example: expect speed: 0.000000 real_pulses:0 +I (285884) example: new speed:399.000000 +I (285894) example: expect speed: 0.000000 real_pulses:0 +I (285894) example: new speed:399.000000 +I (285904) example: expect speed: 0.000000 real_pulses:0 +I (285904) example: new speed:399.000000 +I (285914) example: expect speed: 0.000000 real_pulses:0 +I (285914) example: new speed:399.000000 +I (285924) example: expect speed: 0.000000 real_pulses:0 +I (285924) example: new speed:399.000000 +I (285934) example: expect speed: 0.000000 real_pulses:0 +I (285934) example: new speed:399.000000 +I (285944) example: expect speed: 0.000000 real_pulses:0 +I (285944) example: new speed:399.000000 +I (285954) example: expect speed: 0.000000 real_pulses:0 +I (285954) example: new speed:399.000000 +I (285964) example: expect speed: 0.000000 real_pulses:0 +I (285964) example: new speed:399.000000 +I (285974) example: expect speed: 0.000000 real_pulses:0 +I (285974) example: new speed:399.000000 +I (285984) example: expect speed: 0.000000 real_pulses:0 +I (285984) example: new speed:399.000000 +I (285994) example: expect speed: 0.000000 real_pulses:0 +I (285994) example: new speed:399.000000 +I (286004) example: expect speed: 0.000000 real_pulses:0 +I (286004) example: new speed:399.000000 +I (286014) example: expect speed: 0.000000 real_pulses:0 +I (286014) example: new speed:399.000000 +I (286024) example: expect speed: 0.000000 real_pulses:0 +I (286024) example: new speed:399.000000 +I (286034) example: expect speed: 0.000000 real_pulses:0 +I (286034) example: new speed:399.000000 +I (286044) example: expect speed: 0.000000 real_pulses:0 +I (286044) example: new speed:399.000000 +I (286054) example: expect speed: 0.000000 real_pulses:0 +I (286064) modbus tcp: ModBusSlave_recv() +I (286064) example: new speed:399.000000 +I (286064) modbus: ModbusSlaveProcess() +I (286064) modbus: check id... +I (286064) modbus: ok +I (286064) modbus: add: 0, length: 10 +I (286064) modbus: Read Holding Registers +I (286064) example: expect speed: 0.000000 real_pulses:0 +I (286074) example: new speed:399.000000 +I (286074) example: expect speed: 0.000000 real_pulses:0 +I (286074) example: new speed:399.000000 +I (286084) example: expect speed: 0.000000 real_pulses:0 +I (286084) example: new speed:399.000000 +I (286094) example: expect speed: 0.000000 real_pulses:0 +I (286094) example: new speed:399.000000 +I (286104) example: expect speed: 0.000000 real_pulses:0 +I (286104) example: new speed:399.000000 +I (286114) example: expect speed: 0.000000 real_pulses:0 +I (286114) example: new speed:399.000000 +I (286124) example: expect speed: 0.000000 real_pulses:0 +I (286124) example: new speed:399.000000 +I (286134) example: expect speed: 0.000000 real_pulses:0 +I (286134) example: new speed:399.000000 +I (286144) example: expect speed: 0.000000 real_pulses:0 +I (286144) example: new speed:399.000000 +I (286154) example: expect speed: 0.000000 real_pulses: \ No newline at end of file diff --git a/build/log/idf_py_stdout_output_17276 b/build/log/idf_py_stdout_output_17276 new file mode 100644 index 0000000..a6f5c57 --- /dev/null +++ b/build/log/idf_py_stdout_output_17276 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a30 bytes. Smallest app partition is 0x100000 bytes. 0x4d5d0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 + +A fatal error occurred: Could not open COM5, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_17480 b/build/log/idf_py_stdout_output_17480 new file mode 100644 index 0000000..8d9158a --- /dev/null +++ b/build/log/idf_py_stdout_output_17480 @@ -0,0 +1,15 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b60 bytes. Smallest app partition is 0x100000 bytes. 0x4d4a0 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_17680 b/build/log/idf_py_stdout_output_17680 new file mode 100644 index 0000000..bfbb119 --- /dev/null +++ b/build/log/idf_py_stdout_output_17680 @@ -0,0 +1,76 @@ +[1/10] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/8] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[3/8] Linking C static library esp-idf\main\libmain.a +[4/8] Generating ld/sections.ld +[5/8] Linking CXX executable wifi_station.elf +[6/8] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/8] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a30 bytes. Smallest app partition is 0x100000 bytes. 0x4d5d0 bytes (30%) free. +[7/8] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 432.2 kbit/s)... +Hash of data verified. +Compressed 731696 bytes to 462174... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd30... (6 %) +Writing at 0x00026274... (10 %) +Writing at 0x0002b77e... (13 %) +Writing at 0x00035bea... (17 %) +Writing at 0x0003b999... (20 %) +Writing at 0x0004150c... (24 %) +Writing at 0x00047664... (27 %) +Writing at 0x0004dc44... (31 %) +Writing at 0x000535e9... (34 %) +Writing at 0x00058c07... (37 %) +Writing at 0x0005e453... (41 %) +Writing at 0x00063d71... (44 %) +Writing at 0x00069921... (48 %) +Writing at 0x0006f4f2... (51 %) +Writing at 0x00074391... (55 %) +Writing at 0x00079440... (58 %) +Writing at 0x0007e4a8... (62 %) +Writing at 0x0008379c... (65 %) +Writing at 0x00088c88... (68 %) +Writing at 0x0008e721... (72 %) +Writing at 0x00093ec1... (75 %) +Writing at 0x0009984d... (79 %) +Writing at 0x0009f892... (82 %) +Writing at 0x000a50a3... (86 %) +Writing at 0x000aae40... (89 %) +Writing at 0x000b4e98... (93 %) +Writing at 0x000bb8b4... (96 %) +Writing at 0x000c117f... (100 %) +Wrote 731696 bytes (462174 compressed) at 0x00010000 in 7.8 seconds (effective 753.3 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 480.8 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_17768 b/build/log/idf_py_stdout_output_17768 new file mode 100644 index 0000000..506f3ef --- /dev/null +++ b/build/log/idf_py_stdout_output_17768 @@ -0,0 +1,43 @@ +-- Found Git: E:/Espressif/tools/idf-git/2.39.2/cmd/git.exe (found version "2.39.2.windows.1") +-- ccache will be used for faster recompilation +-- The C compiler identification is GNU 11.2.0 +-- The CXX compiler identification is GNU 11.2.0 +-- The ASM compiler identification is GNU +-- Found assembler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Building ESP-IDF components for target esp32s3 +-- Project sdkconfig file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig +-- Looking for sys/types.h +-- Looking for sys/types.h - found +-- Looking for stdint.h +-- Looking for stdint.h - found +-- Looking for stddef.h +-- Looking for stddef.h - found +-- Check size of time_t +-- Check size of time_t - done +-- Found Python3: E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe (found version "3.11.2") found components: Interpreter +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS - Success +-- App "wifi_station" version: v5.0.4-dirty +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_common esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_netif esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_system esp_timer esp_wifi espcoredump esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lwip main mbedtls mqtt newlib nvs_flash openthread partition_table perfmon protobuf-c protocomm pthread sdmmc soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock E:/Espressif/frameworks/esp-idf-v5.0.4/components/console E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/json E:/Espressif/frameworks/esp-idf-v5.0.4/components/log E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build diff --git a/build/log/idf_py_stdout_output_17856 b/build/log/idf_py_stdout_output_17856 new file mode 100644 index 0000000..3840aad --- /dev/null +++ b/build/log/idf_py_stdout_output_17856 @@ -0,0 +1,2354 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=215a0h (136608) map +I (121) esp_image: segment 1: paddr=000315c8 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353d0 vaddr=40374000 size=0ac48h ( 44104) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae84h (503428) map +I (227) esp_image: segment 4: paddr=000baeac vaddr=4037ec48 size=07ccch ( 31948) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (268) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 939df5e585bb6361... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (270) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (384) wifi station: wifi_init_sta finished. +I (434) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (444) wifi:state: init -> auth (b0) +I (484) wifi:state: auth -> assoc (0) +I (554) wifi:state: assoc -> run (10) +I (1684) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (1684) wifi:security: WPA2-PSK, phy: bgn, rssi: -83 +I (1694) wifi:pm start, type: 1 + +I (1694) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (1694) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (1694) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1764) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (2244) wifi:idx +I (2284) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (3694) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (3694) wifi station: got ip:192.168.1.107 +I (3694) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (3694) modbus tcp: ModBusTCPSlave_init() +I (3694) example: Create DC motor +I (3694) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (3694) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (3694) example: Init pcnt driver to decode rotary signal +I (3694) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (3694) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (3694) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (3694) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (3704) example: Create PID control block +I (3704) example: Create a timer to do PID calculation periodically +I (3704) example: Enable motor +I (3704) example: Forward motor +I (3704) example: Start motor speed loop +I (4704) example: expect speed: 0.000000 real_pulses:0 +I (5704) example: expect speed: 0.000000 real_pulses:0 +I (6704) example: expect speed: 0.000000 real_pulses:0 +I (7704) example: expect speed: 0.000000 real_pulses:0 +I (8704) example: expect speed: 0.000000 real_pulses:0 +I (9704) example: expect speed: 0.000000 real_pulses:0 +I (10704) example: expect speed: 0.000000 real_pulses:0 +I (11704) example: expect speed: 0.000000 real_pulses:0 +I (12364) modbus tcp: accept assess +I (12374) modbus tcp: ModBusSlave_recv() +I (12374) modbus: ModbusSlaveProcess()--------------------------- +I (12374) modbus: check id... +I (12374) modbus: ok +I (12374) modbus: add: 0, length: 10 +I (12374) modbus: Read Holding Registers +I (12704) example: expect speed: 0.000000 real_pulses:0 +I (13544) modbus tcp: ModBusSlave_recv() +I (13544) modbus: ModbusSlaveProcess()--------------------------- +I (13544) modbus: check id... +I (13544) modbus: ok +I (13544) modbus: add: 0, length: 10 +I (13544) modbus: Read Holding Registers +I (13704) example: expect speed: 0.000000 real_pulses:0 +I (14704) example: expect speed: 0.000000 real_pulses:0 +I (14844) modbus tcp: ModBusSlave_recv() +I (14844) modbus: ModbusSlaveProcess()--------------------------- +I (14844) modbus: check id... +I (14844) modbus: ok +I (14844) modbus: add: 0, length: 10 +I (14844) modbus: Read Holding Registers +I (15704) example: expect speed: 0.000000 real_pulses:0 +I (16704) example: expect speed: 0.000000 real_pulses:0 +I (17234) modbus tcp: ModBusSlave_recv() +I (17234) modbus: ModbusSlaveProcess()--------------------------- +I (17234) modbus: check id... +I (17234) modbus: ok +I (17234) modbus: add: 0, length: 10 +I (17234) modbus: Read Holding Registers +I (17704) example: expect speed: 0.000000 real_pulses:0 +I (18704) example: expect speed: 0.000000 real_pulses:0 +I (19704) example: expect speed: 0.000000 real_pulses:0 +I (20704) example: expect speed: 0.000000 real_pulses:0 +I (21704) example: expect speed: 0.000000 real_pulses:0 +I (21744) modbus tcp: ModBusSlave_recv() +I (21744) modbus: ModbusSlaveProcess()--------------------------- +I (21744) modbus: check id... +I (21744) modbus: ok +I (21744) modbus: add: 0, length: 10 +I (21744) modbus: Read Holding Registers +I (22704) example: expect speed: 0.000000 real_pulses:0 +I (22964) modbus tcp: ModBusSlave_recv() +I (22964) modbus: ModbusSlaveProcess()--------------------------- +I (22974) modbus: check id... +I (22974) modbus: ok +I (22974) modbus: add: 0, length: 10 +I (22974) modbus: Read Holding Registers +I (23704) example: expect speed: 0.000000 real_pulses:0 +I (24194) modbus tcp: ModBusSlave_recv() +I (24194) modbus: ModbusSlaveProcess()--------------------------- +I (24194) modbus: check id... +I (24194) modbus: ok +I (24194) modbus: add: 0, length: 10 +I (24194) modbus: Read Holding Registers +I (24704) example: expect speed: 0.000000 real_pulses:0 +I (25704) example: expect speed: 0.000000 real_pulses:0 +I (26344) modbus tcp: ModBusSlave_recv() +I (26344) modbus: ModbusSlaveProcess()--------------------------- +I (26344) modbus: check id... +I (26344) modbus: ok +I (26344) modbus: add: 0, length: 10 +I (26344) modbus: Read Holding Registers +I (26704) example: expect speed: 0.000000 real_pulses:0 +I (27264) modbus tcp: ModBusSlave_recv() +I (27264) modbus: ModbusSlaveProcess()--------------------------- +I (27264) modbus: check id... +I (27264) modbus: ok +I (27264) modbus: add: 0, length: 10 +I (27264) modbus: Read Holding Registers +I (27704) example: expect speed: 0.000000 real_pulses:0 +I (28494) modbus tcp: ModBusSlave_recv() +I (28494) modbus: ModbusSlaveProcess()--------------------------- +I (28494) modbus: check id... +I (28494) modbus: ok +I (28494) modbus: add: 0, length: 10 +I (28494) modbus: Read Holding Registers +I (28704) example: expect speed: 0.000000 real_pulses:0 +I (29704) example: expect speed: 0.000000 real_pulses:0 +I (30704) example: expect speed: 0.000000 real_pulses:0 +I (31004) modbus tcp: ModBusSlave_recv() +I (31004) modbus: ModbusSlaveProcess()--------------------------- +I (31004) modbus: check id... +I (31004) modbus: ok +I (31004) modbus: add: 0, length: 10 +I (31004) modbus: Read Holding Registers +I (31704) example: expect speed: 0.000000 real_pulses:0 +I (32284) modbus tcp: ModBusSlave_recv() +I (32284) modbus: ModbusSlaveProcess()--------------------------- +I (32284) modbus: check id... +I (32284) modbus: ok +I (32284) modbus: add: 0, length: 10 +I (32294) modbus: Read Holding Registers +I (32704) example: expect speed: 0.000000 real_pulses:0 +I (33314) modbus tcp: ModBusSlave_recv() +I (33314) modbus: ModbusSlaveProcess()--------------------------- +I (33314) modbus: check id... +I (33314) modbus: ok +I (33314) modbus: add: 0, length: 10 +I (33314) modbus: Read Holding Registers +I (33704) example: expect speed: 0.000000 real_pulses:0 +I (34234) modbus tcp: ModBusSlave_recv() +I (34234) modbus: ModbusSlaveProcess()--------------------------- +I (34234) modbus: check id... +I (34234) modbus: ok +I (34234) modbus: add: 0, length: 10 +I (34234) modbus: Read Holding Registers +I (34704) example: expect speed: 0.000000 real_pulses:0 +I (35264) modbus tcp: ModBusSlave_recv() +I (35264) modbus: ModbusSlaveProcess()--------------------------- +I (35264) modbus: check id... +I (35264) modbus: ok +I (35264) modbus: add: 0, length: 10 +I (35264) modbus: Read Holding Registers +I (35704) example: expect speed: 0.000000 real_pulses:0 +I (36284) modbus tcp: ModBusSlave_recv() +I (36284) modbus: ModbusSlaveProcess()--------------------------- +I (36284) modbus: check id... +I (36284) modbus: ok +I (36284) modbus: add: 0, length: 10 +I (36284) modbus: Read Holding Registers +I (36704) example: expect speed: 0.000000 real_pulses:0 +I (37304) modbus tcp: ModBusSlave_recv() +I (37304) modbus: ModbusSlaveProcess()--------------------------- +I (37304) modbus: check id... +I (37304) modbus: ok +I (37304) modbus: add: 0, length: 10 +I (37304) modbus: Read Holding Registers +I (37704) example: expect speed: 0.000000 real_pulses:0 +I (38324) modbus tcp: ModBusSlave_recv() +I (38324) modbus: ModbusSlaveProcess()--------------------------- +I (38334) modbus: check id... +I (38334) modbus: ok +I (38334) modbus: add: 0, length: 10 +I (38334) modbus: Read Holding Registers +I (38704) example: expect speed: 0.000000 real_pulses:0 +I (39364) modbus tcp: ModBusSlave_recv() +I (39364) modbus: ModbusSlaveProcess()--------------------------- +I (39364) modbus: check id... +I (39364) modbus: ok +I (39364) modbus: add: 0, length: 10 +I (39364) modbus: Read Holding Registers +I (39704) example: expect speed: 0.000000 real_pulses:0 +I (40394) modbus tcp: ModBusSlave_recv() +I (40394) modbus: ModbusSlaveProcess()--------------------------- +I (40394) modbus: check id... +I (40394) modbus: ok +I (40394) modbus: add: 0, length: 10 +I (40394) modbus: Read Holding Registers +I (40704) example: expect speed: 0.000000 real_pulses:0 +I (41404) modbus tcp: ModBusSlave_recv() +I (41404) modbus: ModbusSlaveProcess()--------------------------- +I (41404) modbus: check id... +I (41404) modbus: ok +I (41404) modbus: add: 0, length: 10 +I (41404) modbus: Read Holding Registers +I (41704) example: expect speed: 0.000000 real_pulses:0 +I (42434) modbus tcp: ModBusSlave_recv() +I (42434) modbus: ModbusSlaveProcess()--------------------------- +I (42434) modbus: check id... +I (42434) modbus: ok +I (42434) modbus: add: 0, length: 10 +I (42434) modbus: Read Holding Registers +I (42704) example: expect speed: 0.000000 real_pulses:0 +I (43454) modbus tcp: ModBusSlave_recv() +I (43454) modbus: ModbusSlaveProcess()--------------------------- +I (43454) modbus: check id... +I (43454) modbus: ok +I (43454) modbus: add: 0, length: 10 +I (43454) modbus: Read Holding Registers +I (43704) example: expect speed: 0.000000 real_pulses:0 +I (44474) modbus tcp: ModBusSlave_recv() +I (44474) modbus: ModbusSlaveProcess()--------------------------- +I (44474) modbus: check id... +I (44474) modbus: ok +I (44474) modbus: add: 0, length: 10 +I (44474) modbus: Read Holding Registers +I (44704) example: expect speed: 0.000000 real_pulses:0 +I (45494) modbus tcp: ModBusSlave_recv() +I (45494) modbus: ModbusSlaveProcess()--------------------------- +I (45494) modbus: check id... +I (45494) modbus: ok +I (45494) modbus: add: 0, length: 10 +I (45494) modbus: Read Holding Registers +I (45704) example: expect speed: 0.000000 real_pulses:0 +I (46414) modbus tcp: ModBusSlave_recv() +I (46414) modbus: ModbusSlaveProcess()--------------------------- +I (46414) modbus: check id... +I (46414) modbus: ok +I (46414) modbus: add: 0, length: 10 +I (46414) modbus: Read Holding Registers +I (46704) example: expect speed: 0.000000 real_pulses:0 +I (47444) modbus tcp: ModBusSlave_recv() +I (47444) modbus: ModbusSlaveProcess()--------------------------- +I (47444) modbus: check id... +I (47444) modbus: ok +I (47444) modbus: add: 0, length: 10 +I (47444) modbus: Read Holding Registers +I (47704) example: expect speed: 0.000000 real_pulses:0 +I (48464) modbus tcp: ModBusSlave_recv() +I (48464) modbus: ModbusSlaveProcess()--------------------------- +I (48464) modbus: check id... +I (48464) modbus: ok +I (48464) modbus: add: 0, length: 10 +I (48464) modbus: Read Holding Registers +I (48704) example: expect speed: 0.000000 real_pulses:0 +I (49524) modbus tcp: ModBusSlave_recv() +I (49524) modbus: ModbusSlaveProcess()--------------------------- +I (49524) modbus: check id... +I (49524) modbus: ok +I (49524) modbus: add: 0, length: 10 +I (49524) modbus: Read Holding Registers +I (49704) example: expect speed: 0.000000 real_pulses:0 +I (50514) modbus tcp: ModBusSlave_recv() +I (50514) modbus: ModbusSlaveProcess()--------------------------- +I (50514) modbus: check id... +I (50514) modbus: ok +I (50514) modbus: add: 0, length: 10 +I (50514) modbus: Read Holding Registers +I (50704) example: expect speed: 0.000000 real_pulses:0 +I (51594) modbus tcp: ModBusSlave_recv() +I (51594) modbus: ModbusSlaveProcess()--------------------------- +I (51594) modbus: check id... +I (51594) modbus: ok +I (51594) modbus: add: 0, length: 10 +I (51594) modbus: Read Holding Registers +I (51704) example: expect speed: 0.000000 real_pulses:0 +I (52354) modbus tcp: ModBusSlave_recv() +I (52354) modbus: ModbusSlaveProcess()--------------------------- +I (52354) modbus: check id... +I (52364) modbus: ok +I (52364) modbus: add: 0, length: 2 +I (52364) modbus: Write Single Register +I (52364) modbus: gwordvar[0]=2 +I (52564) modbus tcp: ModBusSlave_recv() +I (52564) modbus: ModbusSlaveProcess()--------------------------- +I (52564) modbus: check id... +I (52564) modbus: ok +I (52564) modbus: add: 0, length: 10 +I (52564) modbus: Read Holding Registers +I (52704) example: expect speed: 0.000000 real_pulses:0 +I (53584) modbus tcp: ModBusSlave_recv() +I (53584) modbus: ModbusSlaveProcess()--------------------------- +I (53584) modbus: check id... +I (53584) modbus: ok +I (53584) modbus: add: 0, length: 10 +I (53584) modbus: Read Holding Registers +I (53704) example: expect speed: 0.000000 real_pulses:0 +I (54604) modbus tcp: ModBusSlave_recv() +I (54604) modbus: ModbusSlaveProcess()--------------------------- +I (54604) modbus: check id... +I (54604) modbus: ok +I (54604) modbus: add: 0, length: 10 +I (54604) modbus: Read Holding Registers +I (54704) example: expect speed: 0.000000 real_pulses:0 +I (55634) modbus tcp: ModBusSlave_recv() +I (55634) modbus: ModbusSlaveProcess()--------------------------- +I (55634) modbus: check id... +I (55634) modbus: ok +I (55634) modbus: add: 0, length: 10 +I (55634) modbus: Read Holding Registers +I (55704) example: expect speed: 0.000000 real_pulses:0 +I (56654) modbus tcp: ModBusSlave_recv() +I (56654) modbus: ModbusSlaveProcess()--------------------------- +I (56654) modbus: check id... +I (56654) modbus: ok +I (56654) modbus: add: 0, length: 10 +I (56654) modbus: Read Holding Registers +I (56704) example: expect speed: 0.000000 real_pulses:0 +I (57684) modbus tcp: ModBusSlave_recv() +I (57684) modbus: ModbusSlaveProcess()--------------------------- +I (57684) modbus: check id... +I (57684) modbus: ok +I (57684) modbus: add: 0, length: 10 +I (57684) modbus: Read Holding Registers +I (57704) example: expect speed: 0.000000 real_pulses:0 +I (58704) example: expect speed: 0.000000 real_pulses:0 +I (58704) modbus tcp: ModBusSlave_recv() +I (58704) modbus: ModbusSlaveProcess()--------------------------- +I (58704) modbus: check id... +I (58704) modbus: ok +I (58704) modbus: add: 0, length: 10 +I (58704) modbus: Read Holding Registers +I (59704) example: expect speed: 0.000000 real_pulses:0 +I (59734) modbus tcp: ModBusSlave_recv() +I (59734) modbus: ModbusSlaveProcess()--------------------------- +I (59734) modbus: check id... +I (59734) modbus: ok +I (59734) modbus: add: 0, length: 10 +I (59734) modbus: Read Holding Registers +I (60704) example: expect speed: 0.000000 real_pulses:0 +I (60764) modbus tcp: ModBusSlave_recv() +I (60764) modbus: ModbusSlaveProcess()--------------------------- +I (60764) modbus: check id... +I (60764) modbus: ok +I (60764) modbus: add: 0, length: 10 +I (60764) modbus: Read Holding Registers +I (61704) example: expect speed: 0.000000 real_pulses:0 +I (61774) modbus tcp: ModBusSlave_recv() +I (61774) modbus: ModbusSlaveProcess()--------------------------- +I (61774) modbus: check id... +I (61774) modbus: ok +I (61774) modbus: add: 0, length: 10 +I (61774) modbus: Read Holding Registers +I (62704) modbus tcp: ModBusSlave_recv() +I (62704) modbus: ModbusSlaveProcess()--------------------------- +I (62704) modbus: check id... +I (62704) modbus: ok +I (62704) modbus: add: 0, length: 10 +I (62704) modbus: Read Holding Registers +I (62704) example: expect speed: 0.000000 real_pulses:0 +I (63704) example: expect speed: 0.000000 real_pulses:0 +I (63764) modbus tcp: ModBusSlave_recv() +I (63764) modbus: ModbusSlaveProcess()--------------------------- +I (63764) modbus: check id... +I (63764) modbus: ok +I (63764) modbus: add: 0, length: 10 +I (63764) modbus: Read Holding Registers +I (64704) example: expect speed: 0.000000 real_pulses:0 +I (64744) modbus tcp: ModBusSlave_recv() +I (64744) modbus: ModbusSlaveProcess()--------------------------- +I (64744) modbus: check id... +I (64744) modbus: ok +I (64744) modbus: add: 0, length: 10 +I (64744) modbus: Read Holding Registers +I (65704) example: expect speed: 0.000000 real_pulses:0 +I (65774) modbus tcp: ModBusSlave_recv() +I (65774) modbus: ModbusSlaveProcess()--------------------------- +I (65774) modbus: check id... +I (65774) modbus: ok +I (65774) modbus: add: 0, length: 10 +I (65774) modbus: Read Holding Registers +I (66704) example: expect speed: 0.000000 real_pulses:0 +I (66794) modbus tcp: ModBusSlave_recv() +I (66794) modbus: ModbusSlaveProcess()--------------------------- +I (66794) modbus: check id... +I (66794) modbus: ok +I (66794) modbus: add: 0, length: 10 +I (66794) modbus: Read Holding Registers +I (67704) example: expect speed: 0.000000 real_pulses:0 +I (67764) modbus tcp: ModBusSlave_recv() +I (67764) modbus: ModbusSlaveProcess()--------------------------- +I (67764) modbus: check id... +I (67764) modbus: ok +I (67764) modbus: add: 0, length: 10 +I (67764) modbus: Read Holding Registers +I (68704) example: expect speed: 0.000000 real_pulses:0 +I (68844) modbus tcp: ModBusSlave_recv() +I (68844) modbus: ModbusSlaveProcess()--------------------------- +I (68844) modbus: check id... +I (68844) modbus: ok +I (68844) modbus: add: 0, length: 10 +I (68844) modbus: Read Holding Registers +I (69704) example: expect speed: 0.000000 real_pulses:0 +I (69864) modbus tcp: ModBusSlave_recv() +I (69864) modbus: ModbusSlaveProcess()--------------------------- +I (69864) modbus: check id... +I (69864) modbus: ok +I (69864) modbus: add: 0, length: 10 +I (69864) modbus: Read Holding Registers +I (70704) example: expect speed: 0.000000 real_pulses:0 +I (70894) modbus tcp: ModBusSlave_recv() +I (70894) modbus: ModbusSlaveProcess()--------------------------- +I (70894) modbus: check id... +I (70894) modbus: ok +I (70894) modbus: add: 0, length: 10 +I (70894) modbus: Read Holding Registers +I (71704) example: expect speed: 0.000000 real_pulses:0 +I (71914) modbus tcp: ModBusSlave_recv() +I (71914) modbus: ModbusSlaveProcess()--------------------------- +I (71914) modbus: check id... +I (71914) modbus: ok +I (71914) modbus: add: 0, length: 10 +I (71914) modbus: Read Holding Registers +I (72704) example: expect speed: 0.000000 real_pulses:0 +I (72944) modbus tcp: ModBusSlave_recv() +I (72944) modbus: ModbusSlaveProcess()--------------------------- +I (72944) modbus: check id... +I (72944) modbus: ok +I (72944) modbus: add: 0, length: 10 +I (72944) modbus: Read Holding Registers +I (73704) example: expect speed: 0.000000 real_pulses:0 +I (74034) modbus tcp: ModBusSlave_recv() +I (74034) modbus: ModbusSlaveProcess()--------------------------- +I (74034) modbus: check id... +I (74034) modbus: ok +I (74034) modbus: add: 0, length: 10 +I (74034) modbus: Read Holding Registers +I (74704) example: expect speed: 0.000000 real_pulses:0 +I (75084) modbus tcp: ModBusSlave_recv() +I (75084) modbus: ModbusSlaveProcess()--------------------------- +I (75084) modbus: check id... +I (75084) modbus: ok +I (75084) modbus: add: 0, length: 10 +I (75094) modbus: Read Holding Registers +I (75704) example: expect speed: 0.000000 real_pulses:0 +I (76344) modbus tcp: ModBusSlave_recv() +I (76354) modbus: ModbusSlaveProcess()--------------------------- +I (76354) modbus: check id... +I (76354) modbus: ok +I (76354) modbus: add: 0, length: 10 +I (76354) modbus: Read Holding Registers +I (76704) example: expect speed: 0.000000 real_pulses:0 +I (77704) example: expect speed: 0.000000 real_pulses:0 +I (77854) modbus tcp: ModBusSlave_recv() +I (77854) modbus: ModbusSlaveProcess()--------------------------- +I (77854) modbus: check id... +I (77854) modbus: ok +I (77854) modbus: add: 0, length: 10 +I (77854) modbus: Read Holding Registers +I (78704) example: expect speed: 0.000000 real_pulses:0 +I (79704) example: expect speed: 0.000000 real_pulses:0 +I (80004) modbus tcp: ModBusSlave_recv() +I (80014) modbus: ModbusSlaveProcess()--------------------------- +I (80014) modbus: check id... +I (80014) modbus: ok +I (80014) modbus: add: 0, length: 10 +I (80014) modbus: Read Holding Registers +I (80704) example: expect speed: 0.000000 real_pulses:0 +I (81704) example: expect speed: 0.000000 real_pulses:0 +I (82344) modbus tcp: ModBusSlave_recv() +I (82344) modbus: ModbusSlaveProcess()--------------------------- +I (82344) modbus: check id... +I (82344) modbus: ok +I (82344) modbus: add: 0, length: 10 +I (82344) modbus: Read Holding Registers +I (82704) example: expect speed: 0.000000 real_pulses:0 +I (83694) modbus tcp: ModBusSlave_recv() +I (83694) modbus: ModbusSlaveProcess()--------------------------- +I (83694) modbus: check id... +I (83694) modbus: ok +I (83694) modbus: add: 0, length: 10 +I (83694) modbus: Read Holding Registers +I (83704) example: expect speed: 0.000000 real_pulses:0 +I (84614) modbus tcp: ModBusSlave_recv() +I (84614) modbus: ModbusSlaveProcess()--------------------------- +I (84614) modbus: check id... +I (84614) modbus: ok +I (84614) modbus: add: 0, length: 10 +I (84614) modbus: Read Holding Registers +I (84704) example: expect speed: 0.000000 real_pulses:0 +I (85664) modbus tcp: ModBusSlave_recv() +I (85674) modbus: ModbusSlaveProcess()--------------------------- +I (85674) modbus: check id... +I (85674) modbus: ok +I (85674) modbus: add: 0, length: 10 +I (85674) modbus: Read Holding Registers +I (85704) example: expect speed: 0.000000 real_pulses:0 +I (86704) example: expect speed: 0.000000 real_pulses:0 +I (86964) modbus tcp: ModBusSlave_recv() +I (86964) modbus: ModbusSlaveProcess()--------------------------- +I (86964) modbus: check id... +I (86964) modbus: ok +I (86964) modbus: add: 0, length: 10 +I (86964) modbus: Read Holding Registers +I (87684) modbus tcp: ModBusSlave_recv() +I (87684) modbus: ModbusSlaveProcess()--------------------------- +I (87684) modbus: check id... +I (87684) modbus: ok +I (87684) modbus: add: 0, length: 10 +I (87684) modbus: Read Holding Registers +I (87704) example: expect speed: 0.000000 real_pulses:0 +I (88704) example: expect speed: 0.000000 real_pulses:0 +I (88704) modbus tcp: ModBusSlave_recv() +I (88704) modbus: ModbusSlaveProcess()--------------------------- +I (88704) modbus: check id... +I (88704) modbus: ok +I (88704) modbus: add: 0, length: 10 +I (88704) modbus: Read Holding Registers +I (89704) example: expect speed: 0.000000 real_pulses:0 +I (90444) modbus tcp: ModBusSlave_recv() +I (90454) modbus: ModbusSlaveProcess()--------------------------- +I (90454) modbus: check id... +I (90454) modbus: ok +I (90454) modbus: add: 0, length: 10 +I (90454) modbus: Read Holding Registers +I (90704) example: expect speed: 0.000000 real_pulses:0 +I (91474) modbus tcp: ModBusSlave_recv() +I (91474) modbus: ModbusSlaveProcess()--------------------------- +I (91474) modbus: check id... +I (91474) modbus: ok +I (91474) modbus: add: 0, length: 10 +I (91474) modbus: Read Holding Registers +I (91704) example: expect speed: 0.000000 real_pulses:0 +I (92494) modbus tcp: ModBusSlave_recv() +I (92494) modbus: ModbusSlaveProcess()--------------------------- +I (92494) modbus: check id... +I (92494) modbus: ok +I (92494) modbus: add: 0, length: 10 +I (92494) modbus: Read Holding Registers +I (92704) example: expect speed: 0.000000 real_pulses:0 +I (93414) modbus tcp: ModBusSlave_recv() +I (93414) modbus: ModbusSlaveProcess()--------------------------- +I (93414) modbus: check id... +I (93414) modbus: ok +I (93414) modbus: add: 0, length: 10 +I (93414) modbus: Read Holding Registers +I (93704) example: expect speed: 0.000000 real_pulses:0 +I (94444) modbus tcp: ModBusSlave_recv() +I (94444) modbus: ModbusSlaveProcess()--------------------------- +I (94444) modbus: check id... +I (94444) modbus: ok +I (94444) modbus: add: 0, length: 10 +I (94444) modbus: Read Holding Registers +I (94704) example: expect speed: 0.000000 real_pulses:0 +I (95474) modbus tcp: ModBusSlave_recv() +I (95474) modbus: ModbusSlaveProcess()--------------------------- +I (95474) modbus: check id... +I (95474) modbus: ok +I (95474) modbus: add: 0, length: 10 +I (95474) modbus: Read Holding Registers +I (95704) example: expect speed: 0.000000 real_pulses:0 +I (96494) modbus tcp: ModBusSlave_recv() +I (96494) modbus: ModbusSlaveProcess()--------------------------- +I (96494) modbus: check id... +I (96494) modbus: ok +I (96494) modbus: add: 0, length: 10 +I (96494) modbus: Read Holding Registers +I (96704) example: expect speed: 0.000000 real_pulses:0 +I (97524) modbus tcp: ModBusSlave_recv() +I (97524) modbus: ModbusSlaveProcess()--------------------------- +I (97524) modbus: check id... +I (97524) modbus: ok +I (97524) modbus: add: 0, length: 10 +I (97524) modbus: Read Holding Registers +I (97704) example: expect speed: 0.000000 real_pulses:0 +I (98534) modbus tcp: ModBusSlave_recv() +I (98534) modbus: ModbusSlaveProcess()--------------------------- +I (98534) modbus: check id... +I (98534) modbus: ok +I (98534) modbus: add: 0, length: 10 +I (98534) modbus: Read Holding Registers +I (98704) example: expect speed: 0.000000 real_pulses:0 +I (99564) modbus tcp: ModBusSlave_recv() +I (99564) modbus: ModbusSlaveProcess()--------------------------- +I (99564) modbus: check id... +I (99564) modbus: ok +I (99564) modbus: add: 0, length: 10 +I (99564) modbus: Read Holding Registers +I (99704) example: expect speed: 0.000000 real_pulses:0 +I (100594) modbus tcp: ModBusSlave_recv() +I (100594) modbus: ModbusSlaveProcess()--------------------------- +I (100594) modbus: check id... +I (100594) modbus: ok +I (100594) modbus: add: 0, length: 10 +I (100594) modbus: Read Holding Registers +I (100704) example: expect speed: 0.000000 real_pulses:0 +I (101614) modbus tcp: ModBusSlave_recv() +I (101614) modbus: ModbusSlaveProcess()--------------------------- +I (101614) modbus: check id... +I (101614) modbus: ok +I (101614) modbus: add: 0, length: 10 +I (101614) modbus: Read Holding Registers +I (101704) example: expect speed: 0.000000 real_pulses:0 +I (102644) modbus tcp: ModBusSlave_recv() +I (102644) modbus: ModbusSlaveProcess()--------------------------- +I (102644) modbus: check id... +I (102644) modbus: ok +I (102644) modbus: add: 0, length: 10 +I (102644) modbus: Read Holding Registers +I (102704) example: expect speed: 0.000000 real_pulses:0 +I (103654) modbus tcp: ModBusSlave_recv() +I (103654) modbus: ModbusSlaveProcess()--------------------------- +I (103654) modbus: check id... +I (103654) modbus: ok +I (103654) modbus: add: 0, length: 10 +I (103654) modbus: Read Holding Registers +I (103704) example: expect speed: 0.000000 real_pulses:0 +I (104574) modbus tcp: ModBusSlave_recv() +I (104584) modbus: ModbusSlaveProcess()--------------------------- +I (104584) modbus: check id... +I (104584) modbus: ok +I (104584) modbus: add: 0, length: 10 +I (104584) modbus: Read Holding Registers +I (104704) example: expect speed: 0.000000 real_pulses:0 +I (105634) modbus tcp: ModBusSlave_recv() +I (105634) modbus: ModbusSlaveProcess()--------------------------- +I (105634) modbus: check id... +I (105634) modbus: ok +I (105634) modbus: add: 0, length: 10 +I (105634) modbus: Read Holding Registers +I (105704) example: expect speed: 0.000000 real_pulses:0 +I (106624) modbus tcp: ModBusSlave_recv() +I (106624) modbus: ModbusSlaveProcess()--------------------------- +I (106624) modbus: check id... +I (106634) modbus: ok +I (106634) modbus: add: 0, length: 10 +I (106634) modbus: Read Holding Registers +I (106704) example: expect speed: 0.000000 real_pulses:0 +I (107704) example: expect speed: 0.000000 real_pulses:0 +I (107704) modbus tcp: ModBusSlave_recv() +I (107704) modbus: ModbusSlaveProcess()--------------------------- +I (107704) modbus: check id... +I (107704) modbus: ok +I (107704) modbus: add: 0, length: 10 +I (107704) modbus: Read Holding Registers +I (108674) modbus tcp: ModBusSlave_recv() +I (108674) modbus: ModbusSlaveProcess()--------------------------- +I (108674) modbus: check id... +I (108674) modbus: ok +I (108674) modbus: add: 0, length: 10 +I (108674) modbus: Read Holding Registers +I (108704) example: expect speed: 0.000000 real_pulses:0 +I (109694) modbus tcp: ModBusSlave_recv() +I (109704) modbus: ModbusSlaveProcess()--------------------------- +I (109704) modbus: check id... +I (109704) modbus: ok +I (109704) modbus: add: 0, length: 10 +I (109704) modbus: Read Holding Registers +I (109704) example: expect speed: 0.000000 real_pulses:0 +I (110704) example: expect speed: 0.000000 real_pulses:0 +I (110724) modbus tcp: ModBusSlave_recv() +I (110724) modbus: ModbusSlaveProcess()--------------------------- +I (110724) modbus: check id... +I (110724) modbus: ok +I (110724) modbus: add: 0, length: 10 +I (110724) modbus: Read Holding Registers +I (111704) example: expect speed: 0.000000 real_pulses:0 +I (111754) modbus tcp: ModBusSlave_recv() +I (111754) modbus: ModbusSlaveProcess()--------------------------- +I (111754) modbus: check id... +I (111754) modbus: ok +I (111754) modbus: add: 0, length: 10 +I (111754) modbus: Read Holding Registers +I (112704) example: expect speed: 0.000000 real_pulses:0 +I (112774) modbus tcp: ModBusSlave_recv() +I (112774) modbus: ModbusSlaveProcess()--------------------------- +I (112774) modbus: check id... +I (112774) modbus: ok +I (112774) modbus: add: 0, length: 10 +I (112774) modbus: Read Holding Registers +I (113704) example: expect speed: 0.000000 real_pulses:0 +I (113794) modbus tcp: ModBusSlave_recv() +I (113794) modbus: ModbusSlaveProcess()--------------------------- +I (113794) modbus: check id... +I (113794) modbus: ok +I (113794) modbus: add: 0, length: 10 +I (113794) modbus: Read Holding Registers +I (114704) example: expect speed: 0.000000 real_pulses:0 +I (114814) modbus tcp: ModBusSlave_recv() +I (114824) modbus: ModbusSlaveProcess()--------------------------- +I (114824) modbus: check id... +I (114824) modbus: ok +I (114824) modbus: add: 0, length: 10 +I (114824) modbus: Read Holding Registers +I (115704) example: expect speed: 0.000000 real_pulses:0 +I (115844) modbus tcp: ModBusSlave_recv() +I (115844) modbus: ModbusSlaveProcess()--------------------------- +I (115844) modbus: check id... +I (115844) modbus: ok +I (115844) modbus: add: 0, length: 10 +I (115844) modbus: Read Holding Registers +I (116704) example: expect speed: 0.000000 real_pulses:0 +I (116774) modbus tcp: ModBusSlave_recv() +I (116774) modbus: ModbusSlaveProcess()--------------------------- +I (116774) modbus: check id... +I (116774) modbus: ok +I (116774) modbus: add: 0, length: 10 +I (116774) modbus: Read Holding Registers +I (117704) example: expect speed: 0.000000 real_pulses:0 +I (117784) modbus tcp: ModBusSlave_recv() +I (117784) modbus: ModbusSlaveProcess()--------------------------- +I (117794) modbus: check id... +I (117794) modbus: ok +I (117794) modbus: add: 0, length: 10 +I (117794) modbus: Read Holding Registers +I (118704) example: expect speed: 0.000000 real_pulses:0 +I (118814) modbus tcp: ModBusSlave_recv() +I (118814) modbus: ModbusSlaveProcess()--------------------------- +I (118814) modbus: check id... +I (118814) modbus: ok +I (118814) modbus: add: 0, length: 10 +I (118814) modbus: Read Holding Registers +I (119704) example: expect speed: 0.000000 real_pulses:0 +I (119734) modbus tcp: ModBusSlave_recv() +I (119734) modbus: ModbusSlaveProcess()--------------------------- +I (119734) modbus: check id... +I (119734) modbus: ok +I (119734) modbus: add: 3, length: 9 +I (119734) modbus: Write Single Register +I (119734) modbus: gwordvar[3]=9 +I (119844) modbus tcp: ModBusSlave_recv() +I (119844) modbus: ModbusSlaveProcess()--------------------------- +I (119844) modbus: check id... +I (119844) modbus: ok +I (119844) modbus: add: 0, length: 10 +I (119844) modbus: Read Holding Registers +I (120704) example: expect speed: 0.000000 real_pulses:0 +I (120864) modbus tcp: ModBusSlave_recv() +I (120864) modbus: ModbusSlaveProcess()--------------------------- +I (120864) modbus: check id... +I (120864) modbus: ok +I (120864) modbus: add: 0, length: 10 +I (120864) modbus: Read Holding Registers +I (121704) example: expect speed: 0.000000 real_pulses:0 +I (122114) modbus tcp: ModBusSlave_recv() +I (122124) modbus: ModbusSlaveProcess()--------------------------- +I (122124) modbus: check id... +I (122124) modbus: ok +I (122124) modbus: add: 0, length: 10 +I (122124) modbus: Read Holding Registers +I (122704) example: expect speed: 0.000000 real_pulses:0 +I (123324) modbus tcp: ModBusSlave_recv() +I (123324) modbus: ModbusSlaveProcess()--------------------------- +I (123334) modbus: check id... +I (123334) modbus: ok +I (123334) modbus: add: 0, length: 10 +I (123334) modbus: Read Holding Registers +I (123704) example: expect speed: 0.000000 real_pulses:0 +I (124704) example: expect speed: 0.000000 real_pulses:0 +I (124784) modbus tcp: ModBusSlave_recv() +I (124784) modbus: ModbusSlaveProcess()--------------------------- +I (124784) modbus: check id... +I (124784) modbus: ok +I (124784) modbus: add: 0, length: 10 +I (124784) modbus: Read Holding Registers +I (125704) example: expect speed: 0.000000 real_pulses:0 +I (126014) modbus tcp: ModBusSlave_recv() +I (126014) modbus: ModbusSlaveProcess()--------------------------- +I (126014) modbus: check id... +I (126014) modbus: ok +I (126014) modbus: add: 0, length: 10 +I (126014) modbus: Read Holding Registers +I (126704) example: expect speed: 0.000000 real_pulses:0 +I (127004) modbus tcp: ModBusSlave_recv() +I (127004) modbus: ModbusSlaveProcess()--------------------------- +I (127004) modbus: check id... +I (127004) modbus: ok +I (127004) modbus: add: 0, length: 10 +I (127004) modbus: Read Holding Registers +I (127704) example: expect speed: 0.000000 real_pulses:0 +I (128034) modbus tcp: ModBusSlave_recv() +I (128034) modbus: ModbusSlaveProcess()--------------------------- +I (128034) modbus: check id... +I (128034) modbus: ok +I (128034) modbus: add: 0, length: 10 +I (128034) modbus: Read Holding Registers +I (128704) example: expect speed: 0.000000 real_pulses:0 +I (129094) modbus tcp: ModBusSlave_recv() +I (129094) modbus: ModbusSlaveProcess()--------------------------- +I (129094) modbus: check id... +I (129094) modbus: ok +I (129094) modbus: add: 0, length: 10 +I (129094) modbus: Read Holding Registers +I (129704) example: expect speed: 0.000000 real_pulses:0 +I (130084) modbus tcp: ModBusSlave_recv() +I (130084) modbus: ModbusSlaveProcess()--------------------------- +I (130084) modbus: check id... +I (130084) modbus: ok +I (130084) modbus: add: 0, length: 10 +I (130084) modbus: Read Holding Registers +I (130704) example: expect speed: 0.000000 real_pulses:0 +I (130994) modbus tcp: ModBusSlave_recv() +I (130994) modbus: ModbusSlaveProcess()--------------------------- +I (130994) modbus: check id... +I (130994) modbus: ok +I (131004) modbus: add: 0, length: 10 +I (131004) modbus: Read Holding Registers +I (131704) example: expect speed: 0.000000 real_pulses:0 +I (132024) modbus tcp: ModBusSlave_recv() +I (132024) modbus: ModbusSlaveProcess()--------------------------- +I (132024) modbus: check id... +I (132024) modbus: ok +I (132024) modbus: add: 0, length: 10 +I (132024) modbus: Read Holding Registers +I (132704) example: expect speed: 0.000000 real_pulses:0 +I (133044) modbus tcp: ModBusSlave_recv() +I (133044) modbus: ModbusSlaveProcess()--------------------------- +I (133044) modbus: check id... +I (133044) modbus: ok +I (133044) modbus: add: 0, length: 10 +I (133044) modbus: Read Holding Registers +I (133704) example: expect speed: 0.000000 real_pulses:0 +I (134074) modbus tcp: ModBusSlave_recv() +I (134074) modbus: ModbusSlaveProcess()--------------------------- +I (134074) modbus: check id... +I (134074) modbus: ok +I (134074) modbus: add: 0, length: 10 +I (134074) modbus: Read Holding Registers +I (134704) example: expect speed: 0.000000 real_pulses:0 +I (135104) modbus tcp: ModBusSlave_recv() +I (135104) modbus: ModbusSlaveProcess()--------------------------- +I (135104) modbus: check id... +I (135104) modbus: ok +I (135104) modbus: add: 0, length: 10 +I (135104) modbus: Read Holding Registers +I (135704) example: expect speed: 0.000000 real_pulses:0 +I (136114) modbus tcp: ModBusSlave_recv() +I (136114) modbus: ModbusSlaveProcess()--------------------------- +I (136114) modbus: check id... +I (136114) modbus: ok +I (136114) modbus: add: 0, length: 10 +I (136124) modbus: Read Holding Registers +I (136704) example: expect speed: 0.000000 real_pulses:0 +I (137144) modbus tcp: ModBusSlave_recv() +I (137144) modbus: ModbusSlaveProcess()--------------------------- +I (137144) modbus: check id... +I (137144) modbus: ok +I (137144) modbus: add: 0, length: 10 +I (137144) modbus: Read Holding Registers +I (137704) example: expect speed: 0.000000 real_pulses:0 +I (138164) modbus tcp: ModBusSlave_recv() +I (138164) modbus: ModbusSlaveProcess()--------------------------- +I (138164) modbus: check id... +I (138164) modbus: ok +I (138164) modbus: add: 0, length: 10 +I (138164) modbus: Read Holding Registers +I (138704) example: expect speed: 0.000000 real_pulses:0 +I (139194) modbus tcp: ModBusSlave_recv() +I (139194) modbus: ModbusSlaveProcess()--------------------------- +I (139194) modbus: check id... +I (139194) modbus: ok +I (139194) modbus: add: 0, length: 10 +I (139194) modbus: Read Holding Registers +I (139704) example: expect speed: 0.000000 real_pulses:0 +I (140214) modbus tcp: ModBusSlave_recv() +I (140214) modbus: ModbusSlaveProcess()--------------------------- +I (140214) modbus: check id... +I (140214) modbus: ok +I (140214) modbus: add: 0, length: 10 +I (140214) modbus: Read Holding Registers +I (140704) example: expect speed: 0.000000 real_pulses:0 +I (141244) modbus tcp: ModBusSlave_recv() +I (141244) modbus: ModbusSlaveProcess()--------------------------- +I (141244) modbus: check id... +I (141244) modbus: ok +I (141244) modbus: add: 0, length: 10 +I (141244) modbus: Read Holding Registers +I (141704) example: expect speed: 0.000000 real_pulses:0 +I (142264) modbus tcp: ModBusSlave_recv() +I (142264) modbus: ModbusSlaveProcess()--------------------------- +I (142264) modbus: check id... +I (142264) modbus: ok +I (142264) modbus: add: 0, length: 10 +I (142274) modbus: Read Holding Registers +I (142704) example: expect speed: 0.000000 real_pulses:0 +I (143184) modbus tcp: ModBusSlave_recv() +I (143184) modbus: ModbusSlaveProcess()--------------------------- +I (143184) modbus: check id... +I (143194) modbus: ok +I (143194) modbus: add: 0, length: 10 +I (143194) modbus: Read Holding Registers +I (143704) example: expect speed: 0.000000 real_pulses:0 +I (144214) modbus tcp: ModBusSlave_recv() +I (144214) modbus: ModbusSlaveProcess()--------------------------- +I (144214) modbus: check id... +I (144214) modbus: ok +I (144214) modbus: add: 0, length: 10 +I (144214) modbus: Read Holding Registers +I (144704) example: expect speed: 0.000000 real_pulses:0 +I (145234) modbus tcp: ModBusSlave_recv() +I (145234) modbus: ModbusSlaveProcess()--------------------------- +I (145234) modbus: check id... +I (145234) modbus: ok +I (145234) modbus: add: 0, length: 10 +I (145234) modbus: Read Holding Registers +I (145704) example: expect speed: 0.000000 real_pulses:0 +I (146264) modbus tcp: ModBusSlave_recv() +I (146264) modbus: ModbusSlaveProcess()--------------------------- +I (146264) modbus: check id... +I (146264) modbus: ok +I (146264) modbus: add: 0, length: 10 +I (146264) modbus: Read Holding Registers +I (146704) example: expect speed: 0.000000 real_pulses:0 +I (147364) modbus tcp: ModBusSlave_recv() +I (147364) modbus: ModbusSlaveProcess()--------------------------- +I (147364) modbus: check id... +I (147364) modbus: ok +I (147364) modbus: add: 0, length: 10 +I (147364) modbus: Read Holding Registers +I (147594) modbus tcp: ModBusSlave_recv() +I (147594) modbus: ModbusSlaveProcess()--------------------------- +I (147594) modbus: check id... +I (147594) modbus: ok +I (147594) modbus: add: 2, length: 6 +I (147594) modbus: Write Single Register +I (147594) modbus: gwordvar[2]=6 +I (147704) example: expect speed: 0.000000 real_pulses:0 +I (148304) modbus tcp: ModBusSlave_recv() +I (148304) modbus: ModbusSlaveProcess()--------------------------- +I (148304) modbus: check id... +I (148304) modbus: ok +I (148304) modbus: add: 0, length: 10 +I (148304) modbus: Read Holding Registers +I (148704) example: expect speed: 0.000000 real_pulses:0 +I (149324) modbus tcp: ModBusSlave_recv() +I (149334) modbus: ModbusSlaveProcess()--------------------------- +I (149334) modbus: check id... +I (149334) modbus: ok +I (149334) modbus: add: 0, length: 10 +I (149334) modbus: Read Holding Registers +I (149704) example: expect speed: 0.000000 real_pulses:0 +I (150354) modbus tcp: ModBusSlave_recv() +I (150354) modbus: ModbusSlaveProcess()--------------------------- +I (150354) modbus: check id... +I (150354) modbus: ok +I (150354) modbus: add: 0, length: 10 +I (150354) modbus: Read Holding Registers +I (150704) example: expect speed: 0.000000 real_pulses:0 +I (151394) modbus tcp: ModBusSlave_recv() +I (151394) modbus: ModbusSlaveProcess()--------------------------- +I (151394) modbus: check id... +I (151394) modbus: ok +I (151394) modbus: add: 0, length: 10 +I (151394) modbus: Read Holding Registers +I (151704) example: expect speed: 0.000000 real_pulses:0 +I (152404) modbus tcp: ModBusSlave_recv() +I (152404) modbus: ModbusSlaveProcess()--------------------------- +I (152404) modbus: check id... +I (152404) modbus: ok +I (152404) modbus: add: 0, length: 10 +I (152404) modbus: Read Holding Registers +I (152704) example: expect speed: 0.000000 real_pulses:0 +I (153424) modbus tcp: ModBusSlave_recv() +I (153424) modbus: ModbusSlaveProcess()--------------------------- +I (153424) modbus: check id... +I (153424) modbus: ok +I (153424) modbus: add: 0, length: 10 +I (153424) modbus: Read Holding Registers +I (153704) example: expect speed: 0.000000 real_pulses:0 +I (154444) modbus tcp: ModBusSlave_recv() +I (154444) modbus: ModbusSlaveProcess()--------------------------- +I (154444) modbus: check id... +I (154454) modbus: ok +I (154454) modbus: add: 0, length: 10 +I (154454) modbus: Read Holding Registers +I (154704) example: expect speed: 0.000000 real_pulses:0 +I (155374) modbus tcp: ModBusSlave_recv() +I (155374) modbus: ModbusSlaveProcess()--------------------------- +I (155374) modbus: check id... +I (155374) modbus: ok +I (155374) modbus: add: 0, length: 10 +I (155374) modbus: Read Holding Registers +I (155704) example: expect speed: 0.000000 real_pulses:0 +I (156394) modbus tcp: ModBusSlave_recv() +I (156394) modbus: ModbusSlaveProcess()--------------------------- +I (156394) modbus: check id... +I (156394) modbus: ok +I (156394) modbus: add: 0, length: 10 +I (156394) modbus: Read Holding Registers +I (156704) example: expect speed: 0.000000 real_pulses:0 +I (157414) modbus tcp: ModBusSlave_recv() +I (157414) modbus: ModbusSlaveProcess()--------------------------- +I (157414) modbus: check id... +I (157414) modbus: ok +I (157414) modbus: add: 0, length: 10 +I (157414) modbus: Read Holding Registers +I (157704) example: expect speed: 0.000000 real_pulses:0 +I (158444) modbus tcp: ModBusSlave_recv() +I (158444) modbus: ModbusSlaveProcess()--------------------------- +I (158444) modbus: check id... +I (158444) modbus: ok +I (158444) modbus: add: 0, length: 10 +I (158444) modbus: Read Holding Registers +I (158704) example: expect speed: 0.000000 real_pulses:0 +I (159464) modbus tcp: ModBusSlave_recv() +I (159464) modbus: ModbusSlaveProcess()--------------------------- +I (159464) modbus: check id... +I (159464) modbus: ok +I (159464) modbus: add: 0, length: 10 +I (159464) modbus: Read Holding Registers +I (159704) example: expect speed: 0.000000 real_pulses:0 +I (160494) modbus tcp: ModBusSlave_recv() +I (160494) modbus: ModbusSlaveProcess()--------------------------- +I (160494) modbus: check id... +I (160494) modbus: ok +I (160494) modbus: add: 0, length: 10 +I (160494) modbus: Read Holding Registers +I (160704) example: expect speed: 0.000000 real_pulses:0 +I (161514) modbus tcp: ModBusSlave_recv() +I (161514) modbus: ModbusSlaveProcess()--------------------------- +I (161514) modbus: check id... +I (161514) modbus: ok +I (161514) modbus: add: 0, length: 10 +I (161514) modbus: Read Holding Registers +I (161704) example: expect speed: 0.000000 real_pulses:0 +I (162534) modbus tcp: ModBusSlave_recv() +I (162534) modbus: ModbusSlaveProcess()--------------------------- +I (162534) modbus: check id... +I (162534) modbus: ok +I (162534) modbus: add: 0, length: 10 +I (162534) modbus: Read Holding Registers +I (162704) example: expect speed: 0.000000 real_pulses:0 +I (163564) modbus tcp: ModBusSlave_recv() +I (163564) modbus: ModbusSlaveProcess()--------------------------- +I (163564) modbus: check id... +I (163564) modbus: ok +I (163564) modbus: add: 0, length: 10 +I (163564) modbus: Read Holding Registers +I (163704) example: expect speed: 0.000000 real_pulses:0 +I (164594) modbus tcp: ModBusSlave_recv() +I (164594) modbus: ModbusSlaveProcess()--------------------------- +I (164594) modbus: check id... +I (164594) modbus: ok +I (164594) modbus: add: 0, length: 10 +I (164594) modbus: Read Holding Registers +I (164704) example: expect speed: 0.000000 real_pulses:0 +I (165614) modbus tcp: ModBusSlave_recv() +I (165614) modbus: ModbusSlaveProcess()--------------------------- +I (165614) modbus: check id... +I (165614) modbus: ok +I (165614) modbus: add: 0, length: 10 +I (165614) modbus: Read Holding Registers +I (165704) example: expect speed: 0.000000 real_pulses:0 +I (166634) modbus tcp: ModBusSlave_recv() +I (166634) modbus: ModbusSlaveProcess()--------------------------- +I (166634) modbus: check id... +I (166634) modbus: ok +I (166634) modbus: add: 0, length: 10 +I (166634) modbus: Read Holding Registers +I (166704) example: expect speed: 0.000000 real_pulses:0 +I (167554) modbus tcp: ModBusSlave_recv() +I (167554) modbus: ModbusSlaveProcess()--------------------------- +I (167554) modbus: check id... +I (167554) modbus: ok +I (167554) modbus: add: 0, length: 10 +I (167554) modbus: Read Holding Registers +I (167704) example: expect speed: 0.000000 real_pulses:0 +I (168584) modbus tcp: ModBusSlave_recv() +I (168584) modbus: ModbusSlaveProcess()--------------------------- +I (168584) modbus: check id... +I (168584) modbus: ok +I (168584) modbus: add: 0, length: 10 +I (168584) modbus: Read Holding Registers +I (168704) example: expect speed: 0.000000 real_pulses:0 +I (169614) modbus tcp: ModBusSlave_recv() +I (169614) modbus: ModbusSlaveProcess()--------------------------- +I (169614) modbus: check id... +I (169614) modbus: ok +I (169614) modbus: add: 0, length: 10 +I (169614) modbus: Read Holding Registers +I (169704) example: expect speed: 0.000000 real_pulses:0 +I (170634) modbus tcp: ModBusSlave_recv() +I (170634) modbus: ModbusSlaveProcess()--------------------------- +I (170634) modbus: check id... +I (170634) modbus: ok +I (170634) modbus: add: 0, length: 10 +I (170634) modbus: Read Holding Registers +I (170704) example: expect speed: 0.000000 real_pulses:0 +I (171654) modbus tcp: ModBusSlave_recv() +I (171654) modbus: ModbusSlaveProcess()--------------------------- +I (171654) modbus: check id... +I (171654) modbus: ok +I (171654) modbus: add: 0, length: 10 +I (171654) modbus: Read Holding Registers +I (171704) example: expect speed: 0.000000 real_pulses:0 +I (172674) modbus tcp: ModBusSlave_recv() +I (172674) modbus: ModbusSlaveProcess()--------------------------- +I (172674) modbus: check id... +I (172674) modbus: ok +I (172674) modbus: add: 0, length: 10 +I (172684) modbus: Read Holding Registers +I (172704) example: expect speed: 0.000000 real_pulses:0 +I (173694) modbus tcp: ModBusSlave_recv() +I (173704) modbus: ModbusSlaveProcess()--------------------------- +I (173704) modbus: check id... +I (173704) modbus: ok +I (173704) modbus: add: 0, length: 10 +I (173704) modbus: Read Holding Registers +I (173704) example: expect speed: 0.000000 real_pulses:0 +I (174704) example: expect speed: 0.000000 real_pulses:0 +I (174724) modbus tcp: ModBusSlave_recv() +I (174724) modbus: ModbusSlaveProcess()--------------------------- +I (174724) modbus: check id... +I (174724) modbus: ok +I (174724) modbus: add: 0, length: 10 +I (174724) modbus: Read Holding Registers +I (175704) example: expect speed: 0.000000 real_pulses:0 +I (175744) modbus tcp: ModBusSlave_recv() +I (175744) modbus: ModbusSlaveProcess()--------------------------- +I (175744) modbus: check id... +I (175744) modbus: ok +I (175744) modbus: add: 0, length: 10 +I (175744) modbus: Read Holding Registers +I (176704) example: expect speed: 0.000000 real_pulses:0 +I (176774) modbus tcp: ModBusSlave_recv() +I (176774) modbus: ModbusSlaveProcess()--------------------------- +I (176774) modbus: check id... +I (176774) modbus: ok +I (176774) modbus: add: 0, length: 10 +I (176774) modbus: Read Holding Registers +I (177704) example: expect speed: 0.000000 real_pulses:0 +I (177794) modbus tcp: ModBusSlave_recv() +I (177794) modbus: ModbusSlaveProcess()--------------------------- +I (177794) modbus: check id... +I (177794) modbus: ok +I (177794) modbus: add: 0, length: 10 +I (177794) modbus: Read Holding Registers +I (178704) example: expect speed: 0.000000 real_pulses:0 +I (178824) modbus tcp: ModBusSlave_recv() +I (178824) modbus: ModbusSlaveProcess()--------------------------- +I (178824) modbus: check id... +I (178824) modbus: ok +I (178824) modbus: add: 0, length: 10 +I (178824) modbus: Read Holding Registers +I (179704) example: expect speed: 0.000000 real_pulses:0 +I (179854) modbus tcp: ModBusSlave_recv() +I (179854) modbus: ModbusSlaveProcess()--------------------------- +I (179854) modbus: check id... +I (179854) modbus: ok +I (179854) modbus: add: 0, length: 10 +I (179854) modbus: Read Holding Registers +I (180704) example: expect speed: 0.000000 real_pulses:0 +I (180864) modbus tcp: ModBusSlave_recv() +I (180864) modbus: ModbusSlaveProcess()--------------------------- +I (180864) modbus: check id... +I (180864) modbus: ok +I (180864) modbus: add: 0, length: 10 +I (180864) modbus: Read Holding Registers +I (181704) example: expect speed: 0.000000 real_pulses:0 +I (181804) modbus tcp: ModBusSlave_recv() +I (181804) modbus: ModbusSlaveProcess()--------------------------- +I (181804) modbus: check id... +I (181804) modbus: ok +I (181804) modbus: add: 0, length: 10 +I (181804) modbus: Read Holding Registers +I (182704) example: expect speed: 0.000000 real_pulses:0 +I (183024) modbus tcp: ModBusSlave_recv() +I (183024) modbus: ModbusSlaveProcess()--------------------------- +I (183024) modbus: check id... +I (183024) modbus: ok +I (183024) modbus: add: 0, length: 10 +I (183024) modbus: Read Holding Registers +I (183704) example: expect speed: 0.000000 real_pulses:0 +I (184044) modbus tcp: ModBusSlave_recv() +I (184044) modbus: ModbusSlaveProcess()--------------------------- +I (184044) modbus: check id... +I (184044) modbus: ok +I (184044) modbus: add: 0, length: 10 +I (184044) modbus: Read Holding Registers +I (184704) example: expect speed: 0.000000 real_pulses:0 +I (185064) modbus tcp: ModBusSlave_recv() +I (185064) modbus: ModbusSlaveProcess()--------------------------- +I (185064) modbus: check id... +I (185064) modbus: ok +I (185064) modbus: add: 0, length: 10 +I (185064) modbus: Read Holding Registers +I (185704) example: expect speed: 0.000000 real_pulses:0 +I (186104) modbus tcp: ModBusSlave_recv() +I (186104) modbus: ModbusSlaveProcess()--------------------------- +I (186104) modbus: check id... +I (186104) modbus: ok +I (186104) modbus: add: 0, length: 10 +I (186104) modbus: Read Holding Registers +I (186704) example: expect speed: 0.000000 real_pulses:0 +I (187174) modbus tcp: ModBusSlave_recv() +I (187174) modbus: ModbusSlaveProcess()--------------------------- +I (187174) modbus: check id... +I (187174) modbus: ok +I (187174) modbus: add: 0, length: 10 +I (187174) modbus: Read Holding Registers +I (187704) example: expect speed: 0.000000 real_pulses:0 +I (188144) modbus tcp: ModBusSlave_recv() +I (188144) modbus: ModbusSlaveProcess()--------------------------- +I (188144) modbus: check id... +I (188144) modbus: ok +I (188144) modbus: add: 0, length: 10 +I (188144) modbus: Read Holding Registers +I (188704) example: expect speed: 0.000000 real_pulses:0 +I (189164) modbus tcp: ModBusSlave_recv() +I (189164) modbus: ModbusSlaveProcess()--------------------------- +I (189164) modbus: check id... +I (189164) modbus: ok +I (189164) modbus: add: 0, length: 10 +I (189164) modbus: Read Holding Registers +I (189704) example: expect speed: 0.000000 real_pulses:0 +I (190084) modbus tcp: ModBusSlave_recv() +I (190084) modbus: ModbusSlaveProcess()--------------------------- +I (190084) modbus: check id... +I (190084) modbus: ok +I (190084) modbus: add: 0, length: 10 +I (190084) modbus: Read Holding Registers +I (190704) example: expect speed: 0.000000 real_pulses:0 +I (191104) modbus tcp: ModBusSlave_recv() +I (191104) modbus: ModbusSlaveProcess()--------------------------- +I (191104) modbus: check id... +I (191104) modbus: ok +I (191104) modbus: add: 0, length: 10 +I (191114) modbus: Read Holding Registers +I (191704) example: expect speed: 0.000000 real_pulses:0 +I (192134) modbus tcp: ModBusSlave_recv() +I (192134) modbus: ModbusSlaveProcess()--------------------------- +I (192134) modbus: check id... +I (192134) modbus: ok +I (192134) modbus: add: 0, length: 10 +I (192134) modbus: Read Holding Registers +I (192704) example: expect speed: 0.000000 real_pulses:0 +I (193154) modbus tcp: ModBusSlave_recv() +I (193154) modbus: ModbusSlaveProcess()--------------------------- +I (193154) modbus: check id... +I (193154) modbus: ok +I (193154) modbus: add: 0, length: 10 +I (193154) modbus: Read Holding Registers +I (193704) example: expect speed: 0.000000 real_pulses:0 +I (194184) modbus tcp: ModBusSlave_recv() +I (194184) modbus: ModbusSlaveProcess()--------------------------- +I (194184) modbus: check id... +I (194184) modbus: ok +I (194184) modbus: add: 0, length: 10 +I (194184) modbus: Read Holding Registers +I (194704) example: expect speed: 0.000000 real_pulses:0 +I (195204) modbus tcp: ModBusSlave_recv() +I (195204) modbus: ModbusSlaveProcess()--------------------------- +I (195204) modbus: check id... +I (195204) modbus: ok +I (195204) modbus: add: 0, length: 10 +I (195204) modbus: Read Holding Registers +I (195704) example: expect speed: 0.000000 real_pulses:0 +I (196224) modbus tcp: ModBusSlave_recv() +I (196224) modbus: ModbusSlaveProcess()--------------------------- +I (196224) modbus: check id... +I (196224) modbus: ok +I (196224) modbus: add: 0, length: 10 +I (196224) modbus: Read Holding Registers +I (196704) example: expect speed: 0.000000 real_pulses:0 +I (197254) modbus tcp: ModBusSlave_recv() +I (197254) modbus: ModbusSlaveProcess()--------------------------- +I (197254) modbus: check id... +I (197254) modbus: ok +I (197254) modbus: add: 0, length: 10 +I (197254) modbus: Read Holding Registers +I (197704) example: expect speed: 0.000000 real_pulses:0 +I (198194) modbus tcp: ModBusSlave_recv() +I (198194) modbus: ModbusSlaveProcess()--------------------------- +I (198204) modbus: check id... +I (198204) modbus: ok +I (198204) modbus: add: 0, length: 10 +I (198204) modbus: Read Holding Registers +I (198704) example: expect speed: 0.000000 real_pulses:0 +I (199294) modbus tcp: ModBusSlave_recv() +I (199304) modbus: ModbusSlaveProcess()--------------------------- +I (199304) modbus: check id... +I (199304) modbus: ok +I (199304) modbus: add: 0, length: 10 +I (199304) modbus: Read Holding Registers +I (199704) example: expect speed: 0.000000 real_pulses:0 +I (200604) modbus tcp: ModBusSlave_recv() +I (200604) modbus: ModbusSlaveProcess()--------------------------- +I (200604) modbus: check id... +I (200604) modbus: ok +I (200604) modbus: add: 0, length: 10 +I (200604) modbus: Read Holding Registers +I (200704) example: expect speed: 0.000000 real_pulses:0 +I (201344) modbus tcp: ModBusSlave_recv() +I (201344) modbus: ModbusSlaveProcess()--------------------------- +I (201344) modbus: check id... +I (201344) modbus: ok +I (201344) modbus: add: 0, length: 10 +I (201344) modbus: Read Holding Registers +I (201704) example: expect speed: 0.000000 real_pulses:0 +I (202414) modbus tcp: ModBusSlave_recv() +I (202414) modbus: ModbusSlaveProcess()--------------------------- +I (202424) modbus: check id... +I (202424) modbus: ok +I (202424) modbus: add: 0, length: 10 +I (202424) modbus: Read Holding Registers +I (202704) example: expect speed: 0.000000 real_pulses:0 +I (203294) modbus tcp: ModBusSlave_recv() +I (203294) modbus: ModbusSlaveProcess()--------------------------- +I (203294) modbus: check id... +I (203294) modbus: ok +I (203294) modbus: add: 0, length: 10 +I (203294) modbus: Read Holding Registers +I (203704) example: expect speed: 0.000000 real_pulses:0 +I (204314) modbus tcp: ModBusSlave_recv() +I (204324) modbus: ModbusSlaveProcess()--------------------------- +I (204324) modbus: check id... +I (204324) modbus: ok +I (204324) modbus: add: 0, length: 10 +I (204324) modbus: Read Holding Registers +I (204704) example: expect speed: 0.000000 real_pulses:0 +I (205514) modbus tcp: ModBusSlave_recv() +I (205514) modbus: ModbusSlaveProcess()--------------------------- +I (205514) modbus: check id... +I (205514) modbus: ok +I (205514) modbus: add: 0, length: 10 +I (205514) modbus: Read Holding Registers +I (205704) example: expect speed: 0.000000 real_pulses:0 +I (206364) modbus tcp: ModBusSlave_recv() +I (206364) modbus: ModbusSlaveProcess()--------------------------- +I (206364) modbus: check id... +I (206364) modbus: ok +I (206364) modbus: add: 0, length: 10 +I (206364) modbus: Read Holding Registers +I (206704) example: expect speed: 0.000000 real_pulses:0 +I (207554) modbus tcp: ModBusSlave_recv() +I (207564) modbus: ModbusSlaveProcess()--------------------------- +I (207564) modbus: check id... +I (207564) modbus: ok +I (207564) modbus: add: 0, length: 10 +I (207564) modbus: Read Holding Registers +I (207704) example: expect speed: 0.000000 real_pulses:0 +I (208414) modbus tcp: ModBusSlave_recv() +I (208414) modbus: ModbusSlaveProcess()--------------------------- +I (208414) modbus: check id... +I (208414) modbus: ok +I (208414) modbus: add: 0, length: 10 +I (208414) modbus: Read Holding Registers +I (208704) example: expect speed: 0.000000 real_pulses:0 +I (209694) modbus tcp: ModBusSlave_recv() +I (209694) modbus: ModbusSlaveProcess()--------------------------- +I (209694) modbus: check id... +I (209694) modbus: ok +I (209694) modbus: add: 0, length: 10 +I (209694) modbus: Read Holding Registers +I (209704) example: expect speed: 0.000000 real_pulses:0 +I (210464) modbus tcp: ModBusSlave_recv() +I (210464) modbus: ModbusSlaveProcess()--------------------------- +I (210464) modbus: check id... +I (210464) modbus: ok +I (210464) modbus: add: 0, length: 10 +I (210464) modbus: Read Holding Registers +I (210704) example: expect speed: 0.000000 real_pulses:0 +I (211484) modbus tcp: ModBusSlave_recv() +I (211484) modbus: ModbusSlaveProcess()--------------------------- +I (211484) modbus: check id... +I (211484) modbus: ok +I (211484) modbus: add: 0, length: 10 +I (211484) modbus: Read Holding Registers +I (211704) example: expect speed: 0.000000 real_pulses:0 +I (212504) modbus tcp: ModBusSlave_recv() +I (212504) modbus: ModbusSlaveProcess()--------------------------- +I (212514) modbus: check id... +I (212514) modbus: ok +I (212514) modbus: add: 0, length: 10 +I (212514) modbus: Read Holding Registers +I (212704) example: expect speed: 0.000000 real_pulses:0 +I (213574) modbus tcp: ModBusSlave_recv() +I (213574) modbus: ModbusSlaveProcess()--------------------------- +I (213574) modbus: check id... +I (213574) modbus: ok +I (213574) modbus: add: 0, length: 10 +I (213574) modbus: Read Holding Registers +I (213704) example: expect speed: 0.000000 real_pulses:0 +I (214554) modbus tcp: ModBusSlave_recv() +I (214554) modbus: ModbusSlaveProcess()--------------------------- +I (214554) modbus: check id... +I (214554) modbus: ok +I (214554) modbus: add: 0, length: 10 +I (214554) modbus: Read Holding Registers +I (214704) example: expect speed: 0.000000 real_pulses:0 +I (215484) modbus tcp: ModBusSlave_recv() +I (215484) modbus: ModbusSlaveProcess()--------------------------- +I (215484) modbus: check id... +I (215484) modbus: ok +I (215484) modbus: add: 0, length: 10 +I (215484) modbus: Read Holding Registers +I (215704) example: expect speed: 0.000000 real_pulses:0 +I (216504) modbus tcp: ModBusSlave_recv() +I (216504) modbus: ModbusSlaveProcess()--------------------------- +I (216504) modbus: check id... +I (216504) modbus: ok +I (216504) modbus: add: 0, length: 10 +I (216504) modbus: Read Holding Registers +I (216704) example: expect speed: 0.000000 real_pulses:0 +I (217534) modbus tcp: ModBusSlave_recv() +I (217534) modbus: ModbusSlaveProcess()--------------------------- +I (217534) modbus: check id... +I (217534) modbus: ok +I (217534) modbus: add: 0, length: 10 +I (217534) modbus: Read Holding Registers +I (217704) example: expect speed: 0.000000 real_pulses:0 +I (218554) modbus tcp: ModBusSlave_recv() +I (218554) modbus: ModbusSlaveProcess()--------------------------- +I (218554) modbus: check id... +I (218554) modbus: ok +I (218554) modbus: add: 0, length: 10 +I (218554) modbus: Read Holding Registers +I (218704) example: expect speed: 0.000000 real_pulses:0 +I (219584) modbus tcp: ModBusSlave_recv() +I (219584) modbus: ModbusSlaveProcess()--------------------------- +I (219584) modbus: check id... +I (219584) modbus: ok +I (219584) modbus: add: 0, length: 10 +I (219584) modbus: Read Holding Registers +I (219704) example: expect speed: 0.000000 real_pulses:0 +I (220594) modbus tcp: ModBusSlave_recv() +I (220604) modbus: ModbusSlaveProcess()--------------------------- +I (220604) modbus: check id... +I (220604) modbus: ok +I (220604) modbus: add: 0, length: 10 +I (220604) modbus: Read Holding Registers +I (220704) example: expect speed: 0.000000 real_pulses:0 +I (221624) modbus tcp: ModBusSlave_recv() +I (221624) modbus: ModbusSlaveProcess()--------------------------- +I (221624) modbus: check id... +I (221624) modbus: ok +I (221624) modbus: add: 0, length: 10 +I (221624) modbus: Read Holding Registers +I (221704) example: expect speed: 0.000000 real_pulses:0 +I (222644) modbus tcp: ModBusSlave_recv() +I (222644) modbus: ModbusSlaveProcess()--------------------------- +I (222644) modbus: check id... +I (222644) modbus: ok +I (222644) modbus: add: 0, length: 10 +I (222644) modbus: Read Holding Registers +I (222704) example: expect speed: 0.000000 real_pulses:0 +I (223674) modbus tcp: ModBusSlave_recv() +I (223674) modbus: ModbusSlaveProcess()--------------------------- +I (223674) modbus: check id... +I (223674) modbus: ok +I (223674) modbus: add: 0, length: 10 +I (223674) modbus: Read Holding Registers +I (223704) example: expect speed: 0.000000 real_pulses:0 +I (224694) modbus tcp: ModBusSlave_recv() +I (224694) modbus: ModbusSlaveProcess()--------------------------- +I (224694) modbus: check id... +I (224694) modbus: ok +I (224694) modbus: add: 0, length: 10 +I (224694) modbus: Read Holding Registers +I (224704) example: expect speed: 0.000000 real_pulses:0 +I (225704) example: expect speed: 0.000000 real_pulses:0 +I (225734) modbus tcp: ModBusSlave_recv() +I (225734) modbus: ModbusSlaveProcess()--------------------------- +I (225734) modbus: check id... +I (225734) modbus: ok +I (225734) modbus: add: 0, length: 10 +I (225734) modbus: Read Holding Registers +I (226704) example: expect speed: 0.000000 real_pulses:0 +I (226744) modbus tcp: ModBusSlave_recv() +I (226744) modbus: ModbusSlaveProcess()--------------------------- +I (226744) modbus: check id... +I (226744) modbus: ok +I (226744) modbus: add: 0, length: 10 +I (226744) modbus: Read Holding Registers +I (227664) modbus tcp: ModBusSlave_recv() +I (227664) modbus: ModbusSlaveProcess()--------------------------- +I (227664) modbus: check id... +I (227664) modbus: ok +I (227664) modbus: add: 0, length: 10 +I (227664) modbus: Read Holding Registers +I (227704) example: expect speed: 0.000000 real_pulses:0 +I (228694) modbus tcp: ModBusSlave_recv() +I (228694) modbus: ModbusSlaveProcess()--------------------------- +I (228694) modbus: check id... +I (228694) modbus: ok +I (228694) modbus: add: 0, length: 10 +I (228694) modbus: Read Holding Registers +I (228704) example: expect speed: 0.000000 real_pulses:0 +I (229704) example: expect speed: 0.000000 real_pulses:0 +I (229714) modbus tcp: ModBusSlave_recv() +I (229714) modbus: ModbusSlaveProcess()--------------------------- +I (229714) modbus: check id... +I (229714) modbus: ok +I (229714) modbus: add: 0, length: 10 +I (229714) modbus: Read Holding Registers +I (230704) example: expect speed: 0.000000 real_pulses:0 +I (230734) modbus tcp: ModBusSlave_recv() +I (230734) modbus: ModbusSlaveProcess()--------------------------- +I (230734) modbus: check id... +I (230734) modbus: ok +I (230734) modbus: add: 0, length: 10 +I (230734) modbus: Read Holding Registers +I (231704) example: expect speed: 0.000000 real_pulses:0 +I (231764) modbus tcp: ModBusSlave_recv() +I (231764) modbus: ModbusSlaveProcess()--------------------------- +I (231774) modbus: check id... +I (231774) modbus: ok +I (231774) modbus: add: 0, length: 10 +I (231774) modbus: Read Holding Registers +I (232704) example: expect speed: 0.000000 real_pulses:0 +I (232784) modbus tcp: ModBusSlave_recv() +I (232784) modbus: ModbusSlaveProcess()--------------------------- +I (232784) modbus: check id... +I (232784) modbus: ok +I (232784) modbus: add: 0, length: 10 +I (232784) modbus: Read Holding Registers +I (233704) example: expect speed: 0.000000 real_pulses:0 +I (233804) modbus tcp: ModBusSlave_recv() +I (233804) modbus: ModbusSlaveProcess()--------------------------- +I (233804) modbus: check id... +I (233804) modbus: ok +I (233804) modbus: add: 0, length: 10 +I (233814) modbus: Read Holding Registers +I (234704) example: expect speed: 0.000000 real_pulses:0 +I (234834) modbus tcp: ModBusSlave_recv() +I (234834) modbus: ModbusSlaveProcess()--------------------------- +I (234834) modbus: check id... +I (234834) modbus: ok +I (234834) modbus: add: 0, length: 10 +I (234834) modbus: Read Holding Registers +I (235704) example: expect speed: 0.000000 real_pulses:0 +I (235864) modbus tcp: ModBusSlave_recv() +I (235864) modbus: ModbusSlaveProcess()--------------------------- +I (235864) modbus: check id... +I (235864) modbus: ok +I (235864) modbus: add: 0, length: 10 +I (235864) modbus: Read Holding Registers +I (236704) example: expect speed: 0.000000 real_pulses:0 +I (236884) modbus tcp: ModBusSlave_recv() +I (236884) modbus: ModbusSlaveProcess()--------------------------- +I (236884) modbus: check id... +I (236884) modbus: ok +I (236884) modbus: add: 0, length: 10 +I (236884) modbus: Read Holding Registers +I (237704) example: expect speed: 0.000000 real_pulses:0 +I (237904) modbus tcp: ModBusSlave_recv() +I (237904) modbus: ModbusSlaveProcess()--------------------------- +I (237904) modbus: check id... +I (237904) modbus: ok +I (237904) modbus: add: 0, length: 10 +I (237904) modbus: Read Holding Registers +I (238704) example: expect speed: 0.000000 real_pulses:0 +I (238924) modbus tcp: ModBusSlave_recv() +I (238924) modbus: ModbusSlaveProcess()--------------------------- +I (238924) modbus: check id... +I (238924) modbus: ok +I (238924) modbus: add: 0, length: 10 +I (238924) modbus: Read Holding Registers +I (239704) example: expect speed: 0.000000 real_pulses:0 +I (239854) modbus tcp: ModBusSlave_recv() +I (239854) modbus: ModbusSlaveProcess()--------------------------- +I (239854) modbus: check id... +I (239854) modbus: ok +I (239854) modbus: add: 0, length: 10 +I (239854) modbus: Read Holding Registers +I (240704) example: expect speed: 0.000000 real_pulses:0 +I (240874) modbus tcp: ModBusSlave_recv() +I (240874) modbus: ModbusSlaveProcess()--------------------------- +I (240874) modbus: check id... +I (240874) modbus: ok +I (240874) modbus: add: 0, length: 10 +I (240874) modbus: Read Holding Registers +I (241704) example: expect speed: 0.000000 real_pulses:0 +I (241894) modbus tcp: ModBusSlave_recv() +I (241904) modbus: ModbusSlaveProcess()--------------------------- +I (241904) modbus: check id... +I (241904) modbus: ok +I (241904) modbus: add: 0, length: 10 +I (241904) modbus: Read Holding Registers +I (242704) example: expect speed: 0.000000 real_pulses:0 +I (242924) modbus tcp: ModBusSlave_recv() +I (242924) modbus: ModbusSlaveProcess()--------------------------- +I (242924) modbus: check id... +I (242924) modbus: ok +I (242924) modbus: add: 0, length: 10 +I (242924) modbus: Read Holding Registers +I (243704) example: expect speed: 0.000000 real_pulses:0 +I (243944) modbus tcp: ModBusSlave_recv() +I (243944) modbus: ModbusSlaveProcess()--------------------------- +I (243944) modbus: check id... +I (243944) modbus: ok +I (243944) modbus: add: 0, length: 10 +I (243944) modbus: Read Holding Registers +I (244704) example: expect speed: 0.000000 real_pulses:0 +I (244974) modbus tcp: ModBusSlave_recv() +I (244974) modbus: ModbusSlaveProcess()--------------------------- +I (244974) modbus: check id... +I (244974) modbus: ok +I (244974) modbus: add: 0, length: 10 +I (244974) modbus: Read Holding Registers +I (245704) example: expect speed: 0.000000 real_pulses:0 +I (245994) modbus tcp: ModBusSlave_recv() +I (245994) modbus: ModbusSlaveProcess()--------------------------- +I (245994) modbus: check id... +I (245994) modbus: ok +I (245994) modbus: add: 0, length: 10 +I (245994) modbus: Read Holding Registers +I (246704) example: expect speed: 0.000000 real_pulses:0 +I (247014) modbus tcp: ModBusSlave_recv() +I (247014) modbus: ModbusSlaveProcess()--------------------------- +I (247014) modbus: check id... +I (247014) modbus: ok +I (247014) modbus: add: 0, length: 10 +I (247014) modbus: Read Holding Registers +I (247704) example: expect speed: 0.000000 real_pulses:0 +I (248074) modbus tcp: ModBusSlave_recv() +I (248074) modbus: ModbusSlaveProcess()--------------------------- +I (248074) modbus: check id... +I (248074) modbus: ok +I (248074) modbus: add: 0, length: 10 +I (248074) modbus: Read Holding Registers +I (248704) example: expect speed: 0.000000 real_pulses:0 +I (249064) modbus tcp: ModBusSlave_recv() +I (249064) modbus: ModbusSlaveProcess()--------------------------- +I (249064) modbus: check id... +I (249064) modbus: ok +I (249064) modbus: add: 0, length: 10 +I (249064) modbus: Read Holding Registers +I (249704) example: expect speed: 0.000000 real_pulses:0 +I (250094) modbus tcp: ModBusSlave_recv() +I (250094) modbus: ModbusSlaveProcess()--------------------------- +I (250104) modbus: check id... +I (250104) modbus: ok +I (250104) modbus: add: 0, length: 10 +I (250104) modbus: Read Holding Registers +I (250704) example: expect speed: 0.000000 real_pulses:0 +I (251124) modbus tcp: ModBusSlave_recv() +I (251124) modbus: ModbusSlaveProcess()--------------------------- +I (251124) modbus: check id... +I (251124) modbus: ok +I (251124) modbus: add: 0, length: 10 +I (251124) modbus: Read Holding Registers +I (251704) example: expect speed: 0.000000 real_pulses:0 +I (252144) modbus tcp: ModBusSlave_recv() +I (252144) modbus: ModbusSlaveProcess()--------------------------- +I (252144) modbus: check id... +I (252144) modbus: ok +I (252144) modbus: add: 0, length: 10 +I (252144) modbus: Read Holding Registers +I (252704) example: expect speed: 0.000000 real_pulses:0 +I (253164) modbus tcp: ModBusSlave_recv() +I (253164) modbus: ModbusSlaveProcess()--------------------------- +I (253164) modbus: check id... +I (253164) modbus: ok +I (253164) modbus: add: 0, length: 10 +I (253164) modbus: Read Holding Registers +I (253704) example: expect speed: 0.000000 real_pulses:0 +I (254084) modbus tcp: ModBusSlave_recv() +I (254084) modbus: ModbusSlaveProcess()--------------------------- +I (254084) modbus: check id... +I (254084) modbus: ok +I (254084) modbus: add: 0, length: 10 +I (254084) modbus: Read Holding Registers +I (254704) example: expect speed: 0.000000 real_pulses:0 +I (255104) modbus tcp: ModBusSlave_recv() +I (255104) modbus: ModbusSlaveProcess()--------------------------- +I (255104) modbus: check id... +I (255104) modbus: ok +I (255104) modbus: add: 0, length: 10 +I (255104) modbus: Read Holding Registers +I (255704) example: expect speed: 0.000000 real_pulses:0 +I (256134) modbus tcp: ModBusSlave_recv() +I (256134) modbus: ModbusSlaveProcess()--------------------------- +I (256134) modbus: check id... +I (256134) modbus: ok +I (256134) modbus: add: 0, length: 10 +I (256134) modbus: Read Holding Registers +I (256704) example: expect speed: 0.000000 real_pulses:0 +I (257154) modbus tcp: ModBusSlave_recv() +I (257154) modbus: ModbusSlaveProcess()--------------------------- +I (257154) modbus: check id... +I (257154) modbus: ok +I (257154) modbus: add: 0, length: 10 +I (257154) modbus: Read Holding Registers +I (257704) example: expect speed: 0.000000 real_pulses:0 +I (258184) modbus tcp: ModBusSlave_recv() +I (258184) modbus: ModbusSlaveProcess()--------------------------- +I (258184) modbus: check id... +I (258184) modbus: ok +I (258184) modbus: add: 0, length: 10 +I (258184) modbus: Read Holding Registers +I (258704) example: expect speed: 0.000000 real_pulses:0 +I (259204) modbus tcp: ModBusSlave_recv() +I (259204) modbus: ModbusSlaveProcess()--------------------------- +I (259214) modbus: check id... +I (259214) modbus: ok +I (259214) modbus: add: 0, length: 10 +I (259214) modbus: Read Holding Registers +I (259704) example: expect speed: 0.000000 real_pulses:0 +I (260224) modbus tcp: ModBusSlave_recv() +I (260234) modbus: ModbusSlaveProcess()--------------------------- +I (260234) modbus: check id... +I (260234) modbus: ok +I (260234) modbus: add: 0, length: 10 +I (260234) modbus: Read Holding Registers +I (260704) example: expect speed: 0.000000 real_pulses:0 +I (261254) modbus tcp: ModBusSlave_recv() +I (261254) modbus: ModbusSlaveProcess()--------------------------- +I (261254) modbus: check id... +I (261254) modbus: ok +I (261254) modbus: add: 0, length: 10 +I (261254) modbus: Read Holding Registers +I (261704) example: expect speed: 0.000000 real_pulses:0 +I (262274) modbus tcp: ModBusSlave_recv() +I (262274) modbus: ModbusSlaveProcess()--------------------------- +I (262274) modbus: check id... +I (262274) modbus: ok +I (262274) modbus: add: 0, length: 10 +I (262274) modbus: Read Holding Registers +I (262704) example: expect speed: 0.000000 real_pulses:0 +I (263304) modbus tcp: ModBusSlave_recv() +I (263304) modbus: ModbusSlaveProcess()--------------------------- +I (263304) modbus: check id... +I (263304) modbus: ok +I (263304) modbus: add: 0, length: 10 +I (263304) modbus: Read Holding Registers +I (263704) example: expect speed: 0.000000 real_pulses:0 +I (264324) modbus tcp: ModBusSlave_recv() +I (264324) modbus: ModbusSlaveProcess()--------------------------- +I (264324) modbus: check id... +I (264324) modbus: ok +I (264324) modbus: add: 0, length: 10 +I (264324) modbus: Read Holding Registers +I (264704) example: expect speed: 0.000000 real_pulses:0 +I (265304) modbus tcp: ModBusSlave_recv() +I (265304) modbus: ModbusSlaveProcess()--------------------------- +I (265304) modbus: check id... +I (265304) modbus: ok +I (265304) modbus: add: 0, length: 10 +I (265304) modbus: Read Holding Registers +I (265704) example: expect speed: 0.000000 real_pulses:0 +I (266484) modbus tcp: ModBusSlave_recv() +I (266484) modbus: ModbusSlaveProcess()--------------------------- +I (266484) modbus: check id... +I (266484) modbus: ok +I (266484) modbus: add: 0, length: 10 +I (266484) modbus: Read Holding Registers +I (266704) example: expect speed: 0.000000 real_pulses:0 +I (267704) example: expect speed: 0.000000 real_pulses:0 +I (267704) modbus tcp: ModBusSlave_recv() +I (267704) modbus: ModbusSlaveProcess()--------------------------- +I (267704) modbus: check id... +I (267704) modbus: ok +I (267704) modbus: add: 0, length: 10 +I (267704) modbus: Read Holding Registers +I (268704) example: expect speed: 0.000000 real_pulses:0 +I (269704) example: expect speed: 0.000000 real_pulses:0 +I (269774) modbus tcp: ModBusSlave_recv() +I (269774) modbus: ModbusSlaveProcess()--------------------------- +I (269774) modbus: check id... +I (269774) modbus: ok +I (269774) modbus: add: 0, length: 10 +I (269774) modbus: Read Holding Registers +I (270704) example: expect speed: 0.000000 real_pulses:0 +I (270884) modbus tcp: ModBusSlave_recv() +I (270884) modbus: ModbusSlaveProcess()--------------------------- +I (270884) modbus: check id... +I (270884) modbus: ok +I (270884) modbus: add: 0, length: 10 +I (270884) modbus: Read Holding Registers +I (271704) example: expect speed: 0.000000 real_pulses:0 +I (271934) modbus tcp: ModBusSlave_recv() +I (271934) modbus: ModbusSlaveProcess()--------------------------- +I (271934) modbus: check id... +I (271934) modbus: ok +I (271934) modbus: add: 0, length: 10 +I (271934) modbus: Read Holding Registers +I (272704) example: expect speed: 0.000000 real_pulses:0 +I (272924) modbus tcp: ModBusSlave_recv() +I (272924) modbus: ModbusSlaveProcess()--------------------------- +I (272924) modbus: check id... +I (272924) modbus: ok +I (272924) modbus: add: 0, length: 10 +I (272924) modbus: Read Holding Registers +I (273704) example: expect speed: 0.000000 real_pulses:0 +I (273854) modbus tcp: ModBusSlave_recv() +I (273854) modbus: ModbusSlaveProcess()--------------------------- +I (273864) modbus: check id... +I (273864) modbus: ok +I (273864) modbus: add: 0, length: 10 +I (273864) modbus: Read Holding Registers +I (274704) example: expect speed: 0.000000 real_pulses:0 +I (274874) modbus tcp: ModBusSlave_recv() +I (274874) modbus: ModbusSlaveProcess()--------------------------- +I (274874) modbus: check id... +I (274874) modbus: ok +I (274874) modbus: add: 0, length: 10 +I (274874) modbus: Read Holding Registers +I (275704) example: expect speed: 0.000000 real_pulses:0 +I (275894) modbus tcp: ModBusSlave_recv() +I (275894) modbus: ModbusSlaveProcess()--------------------------- +I (275894) modbus: check id... +I (275894) modbus: ok +I (275894) modbus: add: 0, length: 10 +I (275894) modbus: Read Holding Registers +I (276704) example: expect speed: 0.000000 real_pulses:0 +I (276914) modbus tcp: ModBusSlave_recv() +I (276914) modbus: ModbusSlaveProcess()--------------------------- +I (276924) modbus: check id... +I (276924) modbus: ok +I (276924) modbus: add: 0, length: 10 +I (276924) modbus: Read Holding Registers +I (277704) example: expect speed: 0.000000 real_pulses:0 +I (277944) modbus tcp: ModBusSlave_recv() +I (277944) modbus: ModbusSlaveProcess()--------------------------- +I (277944) modbus: check id... +I (277944) modbus: ok +I (277944) modbus: add: 0, length: 10 +I (277944) modbus: Read Holding Registers +I (278704) example: expect speed: 0.000000 real_pulses:0 +I (278984) modbus tcp: ModBusSlave_recv() +I (278984) modbus: ModbusSlaveProcess()--------------------------- +I (278984) modbus: check id... +I (278984) modbus: ok +I (278984) modbus: add: 0, length: 10 +I (278984) modbus: Read Holding Registers +I (279704) example: expect speed: 0.000000 real_pulses:0 +I (280024) modbus tcp: ModBusSlave_recv() +I (280024) modbus: ModbusSlaveProcess()--------------------------- +I (280024) modbus: check id... +I (280024) modbus: ok +I (280024) modbus: add: 0, length: 10 +I (280024) modbus: Read Holding Registers +I (280704) example: expect speed: 0.000000 real_pulses:0 +I (281014) modbus tcp: ModBusSlave_recv() +I (281014) modbus: ModbusSlaveProcess()--------------------------- +I (281014) modbus: check id... +I (281014) modbus: ok +I (281014) modbus: add: 0, length: 10 +I (281014) modbus: Read Holding Registers +I (281704) example: expect speed: 0.000000 real_pulses:0 +I (282044) modbus tcp: ModBusSlave_recv() +I (282044) modbus: ModbusSlaveProcess()--------------------------- +I (282044) modbus: check id... +I (282044) modbus: ok +I (282044) modbus: add: 0, length: 10 +I (282044) modbus: Read Holding Registers +I (282704) example: expect speed: 0.000000 real_pulses:0 +I (283064) modbus tcp: ModBusSlave_recv() +I (283064) modbus: ModbusSlaveProcess()--------------------------- +I (283064) modbus: check id... +I (283064) modbus: ok +I (283064) modbus: add: 0, length: 10 +I (283064) modbus: Read Holding Registers +I (283704) example: expect speed: 0.000000 real_pulses:0 +I (284114) modbus tcp: ModBusSlave_recv() +I (284114) modbus: ModbusSlaveProcess()--------------------------- +I (284114) modbus: check id... +I (284114) modbus: ok +I (284114) modbus: add: 0, length: 10 +I (284114) modbus: Read Holding Registers +I (284704) example: expect speed: 0.000000 real_pulses:0 +I (285114) modbus tcp: ModBusSlave_recv() +I (285114) modbus: ModbusSlaveProcess()--------------------------- +I (285114) modbus: check id... +I (285114) modbus: ok +I (285114) modbus: add: 0, length: 10 +I (285114) modbus: Read Holding Registers +I (285704) example: expect speed: 0.000000 real_pulses:0 +I (286134) modbus tcp: ModBusSlave_recv() +I (286134) modbus: ModbusSlaveProcess()--------------------------- +I (286134) modbus: check id... +I (286134) modbus: ok +I (286144) modbus: add: 0, length: 10 +I (286144) modbus: Read Holding Registers +I (286704) example: expect speed: 0.000000 real_pulses:0 +I (287164) modbus tcp: ModBusSlave_recv() +I (287164) modbus: ModbusSlaveProcess()--------------------------- +I (287164) modbus: check id... +I (287164) modbus: ok +I (287164) modbus: add: 0, length: 10 +I (287164) modbus: Read Holding Registers +I (287704) example: expect speed: 0.000000 real_pulses:0 +I (288084) modbus tcp: ModBusSlave_recv() +I (288084) modbus: ModbusSlaveProcess()--------------------------- +I (288084) modbus: check id... +I (288084) modbus: ok +I (288084) modbus: add: 0, length: 10 +I (288084) modbus: Read Holding Registers +I (288704) example: expect speed: 0.000000 real_pulses:0 +I (289104) modbus tcp: ModBusSlave_recv() +I (289104) modbus: ModbusSlaveProcess()--------------------------- +I (289104) modbus: check id... +I (289104) modbus: ok +I (289104) modbus: add: 0, length: 10 +I (289104) modbus: Read Holding Registers +I (289704) example: expect speed: 0.000000 real_pulses:0 +I (290124) modbus tcp: ModBusSlave_recv() +I (290134) modbus: ModbusSlaveProcess()--------------------------- +I (290134) modbus: check id... +I (290134) modbus: ok +I (290134) modbus: add: 0, length: 10 +I (290134) modbus: Read Holding Registers +I (290704) example: expect speed: 0.000000 real_pulses:0 +I (291184) modbus tcp: ModBusSlave_recv() +I (291184) modbus: ModbusSlaveProcess()--------------------------- +I (291184) modbus: check id... +I (291184) modbus: ok +I (291184) modbus: add: 0, length: 10 +I (291184) modbus: Read Holding Registers +I (291704) example: expect speed: 0.000000 real_pulses:0 +I (292194) modbus tcp: ModBusSlave_recv() +I (292204) modbus: ModbusSlaveProcess()--------------------------- +I (292204) modbus: check id... +I (292204) modbus: ok +I (292204) modbus: add: 0, length: 10 +I (292204) modbus: Read Holding Registers +I (292704) example: expect speed: 0.000000 real_pulses:0 +I (293224) modbus tcp: ModBusSlave_recv() +I (293224) modbus: ModbusSlaveProcess()--------------------------- +I (293224) modbus: check id... +I (293224) modbus: ok +I (293224) modbus: add: 0, length: 10 +I (293224) modbus: Read Holding Registers +I (293704) example: expect speed: 0.000000 real_pulses:0 +I (294234) modbus tcp: ModBusSlave_recv() +I (294234) modbus: ModbusSlaveProcess()--------------------------- +I (294234) modbus: check id... +I (294234) modbus: ok +I (294234) modbus: add: 0, length: 10 +I (294234) modbus: Read Holding Registers +I (294704) example: expect speed: 0.000000 real_pulses:0 +I (295274) modbus tcp: ModBusSlave_recv() +I (295274) modbus: ModbusSlaveProcess()--------------------------- +I (295274) modbus: check id... +I (295274) modbus: ok +I (295274) modbus: add: 0, length: 10 +I (295274) modbus: Read Holding Registers +I (295704) example: expect speed: 0.000000 real_pulses:0 +I (296274) modbus tcp: ModBusSlave_recv() +I (296274) modbus: ModbusSlaveProcess()--------------------------- +I (296274) modbus: check id... +I (296274) modbus: ok +I (296274) modbus: add: 0, length: 10 +I (296274) modbus: Read Holding Registers +I (296704) example: expect speed: 0.000000 real_pulses:0 +I (297294) modbus tcp: ModBusSlave_recv() +I (297294) modbus: ModbusSlaveProcess()--------------------------- +I (297304) modbus: check id... +I (297304) modbus: ok +I (297304) modbus: add: 0, length: 10 +I (297304) modbus: Read Holding Registers +I (297704) example: expect speed: 0.000000 real_pulses:0 +I (298324) modbus tcp: ModBusSlave_recv() +I (298324) modbus: ModbusSlaveProcess()--------------------------- +I (298324) modbus: check id... +I (298324) modbus: ok +I (298324) modbus: add: 0, length: 10 +I (298324) modbus: Read Holding Registers +I (298704) example: expect speed: 0.000000 real_pulses:0 +I (299244) modbus tcp: ModBusSlave_recv() +I (299244) modbus: ModbusSlaveProcess()--------------------------- +I (299244) modbus: check id... +I (299254) modbus: ok +I (299254) modbus: add: 0, length: 10 +I (299254) modbus: Read Holding Registers +I (299704) example: expect speed: 0.000000 real_pulses:0 +I (300264) modbus tcp: ModBusSlave_recv() +I (300264) modbus: ModbusSlaveProcess()--------------------------- +I (300264) modbus: check id... +I (300274) modbus: ok +I (300274) modbus: add: 0, length: 10 +I (300274) modbus: Read Holding Registers +I (300704) example: expect speed: 0.000000 real_pulses:0 +I (301294) modbus tcp: ModBusSlave_recv() +I (301294) modbus: ModbusSlaveProcess()--------------------------- +I (301294) modbus: check id... +I (301294) modbus: ok +I (301294) modbus: add: 0, length: 10 +I (301294) modbus: Read Holding Registers +I (301704) example: expect speed: 0.000000 real_pulses:0 +I (302314) modbus tcp: ModBusSlave_recv() +I (302314) modbus: ModbusSlaveProcess()--------------------------- +I (302314) modbus: check id... +I (302314) modbus: ok +I (302314) modbus: add: 0, length: 10 +I (302314) modbus: Read Holding Registers +I (302704) example: expect speed: 0.000000 real_pulses:0 +I (303344) modbus tcp: ModBusSlave_recv() +I (303344) modbus: ModbusSlaveProcess()--------------------------- +I (303344) modbus: check id... +I (303344) modbus: ok +I (303344) modbus: add: 0, length: 10 +I (303344) modbus: Read Holding Registers +I (303704) example: expect speed: 0.000000 real_pulses:0 +I (304364) modbus tcp: ModBusSlave_recv() +I (304364) modbus: ModbusSlaveProcess()--------------------------- +I (304364) modbus: check id... +I (304364) modbus: ok +I (304364) modbus: add: 0, length: 10 +I (304364) modbus: Read Holding Registers +I (304704) example: expect speed: 0.000000 real_pulses:0 +I (305384) modbus tcp: ModBusSlave_recv() +I (305384) modbus: ModbusSlaveProcess()--------------------------- +I (305384) modbus: check id... +I (305384) modbus: ok +I (305384) modbus: add: 0, length: 10 +I (305384) modbus: Read Holding Registers +I (305704) example: expect speed: 0.000000 real_pulses:0 +I (306414) modbus tcp: ModBusSlave_recv() +I (306414) modbus: ModbusSlaveProcess()--------------------------- +I (306414) modbus: check id... +I (306414) modbus: ok +I (306414) modbus: add: 0, length: 10 +I (306414) modbus: Read Holding Registers +I (306704) example: expect speed: 0.000000 real_pulses:0 +I (307434) modbus tcp: ModBusSlave_recv() +I (307434) modbus: ModbusSlaveProcess()--------------------------- +I (307434) modbus: check id... +I (307444) modbus: ok +I (307444) modbus: add: 0, length: 10 +I (307444) modbus: Read Holding Registers +I (307704) example: expect speed: 0.000000 real_pulses:0 +I (308454) modbus tcp: ModBusSlave_recv() +I (308454) modbus: ModbusSlaveProcess()--------------------------- +I (308454) modbus: check id... +I (308464) modbus: ok +I (308464) modbus: add: 0, length: 10 +I (308464) modbus: Read Holding Registers +I (308704) example: expect speed: 0.000000 real_pulses:0 +I (309494) modbus tcp: ModBusSlave_recv() +I (309494) modbus: ModbusSlaveProcess()--------------------------- +I (309494) modbus: check id... +I (309494) modbus: ok +I (309494) modbus: add: 0, length: 10 +I (309494) modbus: Read Holding Registers +I (309704) example: expect speed: 0.000000 real_pulses:0 +I (310504) modbus tcp: ModBusSlave_recv() +I (310504) modbus: ModbusSlaveProcess()--------------------------- +I (310504) modbus: check id... +I (310504) modbus: ok +I (310504) modbus: add: 0, length: 10 +I (310504) modbus: Read Holding Registers +I (310704) example: expect speed: 0.000000 real_pulses:0 +I (311554) modbus tcp: ModBusSlave_recv() +I (311554) modbus: ModbusSlaveProcess()--------------------------- +I (311554) modbus: check id... +I (311554) modbus: ok +I (311554) modbus: add: 0, length: 10 +I (311554) modbus: Read Holding Registers +I (311704) example: expect speed: 0.000000 real_pulses:0 +I (312454) modbus tcp: ModBusSlave_recv() +I (312454) modbus: ModbusSlaveProcess()--------------------------- +I (312454) modbus: check id... +I (312454) modbus: ok +I (312454) modbus: add: 0, length: 10 +I (312454) modbus: Read Holding Registers +I (312704) example: expect speed: 0.000000 real_pulses:0 +I (313474) modbus tcp: ModBusSlave_recv() +I (313474) modbus: ModbusSlaveProcess()--------------------------- +I (313474) modbus: check id... +I (313474) modbus: ok +I (313474) modbus: add: 0, length: 10 +I (313474) modbus: Read Holding Registers +I (313704) example: expect speed: 0.000000 real_pulses:0 +I (314504) modbus tcp: ModBusSlave_recv() +I (314504) modbus: ModbusSlaveProcess()--------------------------- +I (314504) modbus: check id... +I (314504) modbus: ok +I (314504) modbus: add: 0, length: 10 +I (314504) modbus: Read Holding Registers +I (314704) example: expect speed: 0.000000 real_pulses:0 +I (315534) modbus tcp: ModBusSlave_recv() +I (315534) modbus: ModbusSlaveProcess()--------------------------- +I (315534) modbus: check id... +I (315534) modbus: ok +I (315534) modbus: add: 0, length: 10 +I (315534) modbus: Read Holding Registers +I (315704) example: expect speed: 0.000000 real_pulses:0 +I (316554) modbus tcp: ModBusSlave_recv() +I (316554) modbus: ModbusSlaveProcess()--------------------------- +I (316554) modbus: check id... +I (316554) modbus: ok +I (316554) modbus: add: 0, length: 10 +I (316554) modbus: Read Holding Registers +I (316704) example: expect speed: 0.000000 real_pulses:0 +I (317574) modbus tcp: ModBusSlave_recv() +I (317574) modbus: ModbusSlaveProcess()--------------------------- +I (317574) modbus: check id... +I (317574) modbus: ok +I (317574) modbus: add: 0, length: 10 +I (317574) modbus: Read Holding Registers +I (317704) example: expect speed: 0.000000 real_pulses:0 +I (318604) modbus tcp: ModBusSlave_recv() +I (318604) modbus: ModbusSlaveProcess()--------------------------- +I (318604) modbus: check id... +I (318604) modbus: ok +I (318604) modbus: add: 0, length: 10 +I (318604) modbus: Read Holding Registers +I (318704) example: expect speed: 0.000000 real_pulses:0 +I (319624) modbus tcp: ModBusSlave_recv() +I (319624) modbus: ModbusSlaveProcess()--------------------------- +I (319624) modbus: check id... +I (319624) modbus: ok +I (319624) modbus: add: 0, length: 10 +I (319624) modbus: Read Holding Registers +I (319704) example: expect speed: 0.000000 real_pulses:0 +I (320644) modbus tcp: ModBusSlave_recv() +I (320644) modbus: ModbusSlaveProcess()--------------------------- +I (320644) modbus: check id... +I (320644) modbus: ok +I (320644) modbus: add: 0, length: 10 +I (320654) modbus: Read Holding Registers +I (320704) example: expect speed: 0.000000 real_pulses:0 +I (321664) modbus tcp: ModBusSlave_recv() +I (321664) modbus: ModbusSlaveProcess()--------------------------- +I (321664) modbus: check id... +I (321664) modbus: ok +I (321664) modbus: add: 0, length: 10 +I (321664) modbus: Read Holding Registers +I (321704) example: expect speed: 0.000000 real_pulses:0 +I (322704) example: expect speed: 0.000000 real_pulses:0 +I (322704) modbus tcp: ModBusSlave_recv() +I (322704) modbus: ModbusSlaveProcess()--------------------------- +I (322704) modbus: check id... +I (322704) modbus: ok +I (322704) modbus: add: 0, length: 10 +I (322704) modbus: Read Holding Registers +I (323704) example: expect speed: 0.000000 real_pulses:0 +I (323724) modbus tcp: ModBusSlave_recv() +I (323724) modbus: ModbusSlaveProcess()--------------------------- +I (323724) modbus: check id... +I (323724) modbus: ok +I (323724) modbus: add: 0, length: 10 +I (323724) modbus: Read Holding Registers +I (324644) modbus tcp: ModBusSlave_recv() +I (324644) modbus: ModbusSlaveProcess()--------------------------- +I (324644) modbus: check id... +I (324644) modbus: ok +I (324644) modbus: add: 0, length: 10 +I (324644) modbus: Read Holding Registers +I (324704) example: expect speed: 0.000000 real_pulses:0 +I (325664) modbus tcp: ModBusSlave_recv() +I (325674) modbus: ModbusSlaveProcess()--------------------------- +I (325674) modbus: check id... +I (325674) modbus: ok +I (325674) modbus: add: 0, length: 10 +I (325674) modbus: Read Holding Registers +I (325704) example: expect speed: 0.000000 real_pulses:0 +I (326684) modbus tcp: ModBusSlave_recv() +I (326684) modbus: ModbusSlaveProcess()--------------------------- +I (326684) modbus: check id... +I (326684) modbus: ok +I (326684) modbus: add: 0, length: 10 +I (326684) modbus: Read Holding Registers +I (326704) example: expect speed: 0.000000 real_pulses:0 +I (327704) example: expect speed: 0.000000 real_pulses:0 +I (327714) modbus tcp: ModBusSlave_recv() +I (327714) modbus: ModbusSlaveProcess()--------------------------- +I (327714) modbus: check id... +I (327714) modbus: ok +I (327714) modbus: add: 0, length: 10 +I (327714) modbus: Read Holding Registers +I (328704) example: expect speed: 0.000000 real_pulses:0 +I (328734) modbus tcp: ModBusSlave_recv() +I (328744) modbus: ModbusSlaveProcess()--------------------------- +I (328744) modbus: check id... +I (328744) modbus: ok +I (328744) modbus: add: 0, length: 10 +I (328744) modbus: Read Holding Registers +I (329704) example: expect speed: 0.000000 real_pulses:0 +I (329754) modbus tcp: ModBusSlave_recv() +I (329754) modbus: ModbusSlaveProcess()--------------------------- +I (329754) modbus: check id... +I (329754) modbus: ok +I (329754) modbus: add: 0, length: 10 +I (329754) modbus: Read Holding Registers +I (330704) example: expect speed: 0.000000 real_pulses:0 +I (330784) modbus tcp: ModBusSlave_recv() +I (330784) modbus: ModbusSlaveProcess()--------------------------- +I (330784) modbus: check id... +I (330784) modbus: ok +I (330784) modbus: add: 0, length: 10 +I (330784) modbus: Read Holding Registers +I (331704) example: expect speed: 0.000000 real_pulses:0 +I (331814) modbus tcp: ModBusSlave_recv() +I (331814) modbus: ModbusSlaveProcess()--------------------------- +I (331814) modbus: check id... +I (331814) modbus: ok +I (331824) modbus: add: 0, length: 10 +I (331824) modbus: Read Holding Registers +I (332704) example: expect speed: 0.000000 real_pulses:0 +I (332834) modbus tcp: ModBusSlave_recv() +I (332834) modbus: ModbusSlaveProcess()--------------------------- +I (332834) modbus: check id... +I (332834) modbus: ok +I (332834) modbus: add: 0, length: 10 +I (332834) modbus: Read Holding Registers +I (333704) example: expect speed: 0.000000 real_pulses:0 +I (333854) modbus tcp: ModBusSlave_recv() +I (333854) modbus: ModbusSlaveProcess()--------------------------- +I (333854) modbus: check id... +I (333854) modbus: ok +I (333854) modbus: add: 0, length: 10 +I (333854) modbus: Read Holding Registers +I (334704) example: expect speed: 0.000000 real_pulses:0 +I (334784) modbus tcp: ModBusSlave_recv() +I (334784) modbus: ModbusSlaveProcess()--------------------------- +I (334784) modbus: check id... +I (334784) modbus: ok +I (334784) modbus: add: 0, length: 10 +I (334794) modbus: Read Holding Registers +I (335704) example: expect speed: 0.000000 real_pulses:0 +I (335804) modbus tcp: ModBusSlave_recv() +I (335804) modbus: ModbusSlaveProcess()--------------------------- +I (335804) modbus: check id... +I (335804) modbus: ok +I (335804) modbus: add: 0, length: 10 +I (335804) modbus: Read Holding Registers +I (336704) example: expect speed: 0.000000 real_pulses:0 +I (336934) modbus tcp: ModBusSlave_recv() +I (336934) modbus: ModbusSlaveProcess()--------------------------- +I (336934) modbus: check id... +I (336934) modbus: ok +I (336934) modbus: add: 0, length: 10 +I (336934) modbus: Read Holding Registers +I (337704) example: expect speed: 0.000000 real_pulses:0 +I (337884) modbus tcp: ModBusSlave_recv() +I (337884) modbus: ModbusSlaveProcess()--------------------------- +I (337884) modbus: check id... +I (337884) modbus: ok +I (337884) modbus: add: 0, length: 10 +I (337884) modbus: Read Holding Registers +I (338704) example: expect speed: 0.000000 real_pulses:0 +I (338884) modbus tcp: ModBusSlave_recv() +I (338884) modbus: ModbusSlaveProcess()--------------------------- +I (338884) modbus: check id... +I (338884) modbus: ok +I (338884) modbus: add: 0, length: 10 +I (338884) modbus: Read Holding Registers +I (339704) example: expect speed: 0.000000 real_pulses:0 +I (339894) modbus tcp: ModBusSlave_recv() +I (339894) modbus: ModbusSlaveProcess()--------------------------- +I (339894) modbus: check id... +I (339894) modbus: ok +I (339894) modbus: add: 0, length: 10 +I (339894) modbus: Read Holding Registers +I (340704) example: expect speed: 0.000000 real_pulses:0 +I (340924) modbus tcp: ModBusSlave_recv() +I (340924) modbus: ModbusSlaveProcess()--------------------------- +I (340924) modbus: check id... +I (340924) modbus: ok +I (340924) modbus: add: 0, length: 10 +I (340924) modbus: Read Holding Registers +I (341704) example: expect speed: 0.000000 real_pulses:0 +I (341944) modbus tcp: ModBusSlave_recv() +I (341944) modbus: ModbusSlaveProcess()--------------------------- +I (341944) modbus: check id... +I (341944) modbus: ok +I (341944) modbus: add: 0, length: 10 +I (341944) modbus: Read Holding Registers +I (342704) example: expect speed: 0.000000 real_pulses:0 +I (342974) modbus tcp: ModBusSlave_recv() +I (342974) modbus: ModbusSlaveProcess()--------------------------- +I (342974) modbus: check id... +I (342974) modbus: ok +I (342974) modbus: add: 0, length: 10 +I (342974) modbus: Read Holding Registers +I (343704) example: expect speed: 0.000000 real_pulses:0 +I (343994) modbus tcp: ModBusSlave_recv() +I (343994) modbus: ModbusSlaveProcess()--------------------------- +I (343994) modbus: check id... +I (343994) modbus: ok +I (343994) modbus: add: 0, length: 10 +I (343994) modbus: Read Holding Registers diff --git a/build/log/idf_py_stdout_output_18004 b/build/log/idf_py_stdout_output_18004 new file mode 100644 index 0000000..84340f5 --- /dev/null +++ b/build/log/idf_py_stdout_output_18004 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 + +A fatal error occurred: Could not open COM5, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_18224 b/build/log/idf_py_stdout_output_18224 new file mode 100644 index 0000000..b939d4a --- /dev/null +++ b/build/log/idf_py_stdout_output_18224 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a76 +waiting for download diff --git a/build/log/idf_py_stdout_output_18516 b/build/log/idf_py_stdout_output_18516 new file mode 100644 index 0000000..cc433cf --- /dev/null +++ b/build/log/idf_py_stdout_output_18516 @@ -0,0 +1,3430 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21570h (136560) map +I (121) esp_image: segment 1: paddr=00031598 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353a0 vaddr=40374000 size=0ac78h ( 44152) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ad80h (503168) map +I (227) esp_image: segment 4: paddr=000bada8 vaddr=4037ec78 size=07c9ch ( 31900) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (266) cpu_start: Pro cpu start user code +I (266) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (267) cpu_start: ELF file SHA256: f76bde08b89fdf9d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (268) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42F0 len 00045420 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (269) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (271) spi_flash: flash io: dio +W (271) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (273) app_start: Starting scheduler on CPU1 +I (273) main_task: Started on CPU0 +I (283) main_task: Calling app_main() +I (303) wifi station: ESP_WIFI_MODE_STA +I (303) pp: pp rom version: e7ae62f +I (303) net80211: net80211 rom version: e7ae62f +I (313) wifi:wifi driver task: 3fcae328, prio:23, stack:6656, core=0 +I (313) system_api: Base MAC address is not set +I (313) system_api: read default base MAC address from EFUSE +I (323) wifi:wifi firmware version: e2d0ad8 +I (323) wifi:wifi certification version: v7.0 +I (323) wifi:config NVS flash: enabled +I (323) wifi:config nano formating: disabled +I (323) wifi:Init data frame dynamic rx buffer num: 32 +I (323) wifi:Init management frame dynamic rx buffer num: 32 +I (323) wifi:Init management short buffer num: 32 +I (323) wifi:Init dynamic tx buffer num: 32 +I (323) wifi:Init static tx FG buffer num: 2 +I (323) wifi:Init static rx buffer size: 1600 +I (323) wifi:Init static rx buffer num: 10 +I (323) wifi:Init dynamic rx buffer num: 32 +I (323) wifi_init: rx ba win: 6 +I (323) wifi_init: tcpip mbox: 32 +I (323) wifi_init: udp mbox: 6 +I (323) wifi_init: tcp mbox: 6 +I (323) wifi_init: tcp tx win: 5744 +I (323) wifi_init: tcp rx win: 5744 +I (323) wifi_init: tcp mss: 1440 +I (323) wifi_init: WiFi IRAM OP enabled +I (323) wifi_init: WiFi RX IRAM OP enabled +I (333) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (363) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (363) wifi:enable tsf +I (363) wifi station: wifi_init_sta finished. +I (373) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (373) wifi:state: init -> auth (b0) +I (383) wifi:state: auth -> assoc (0) +I (393) wifi:state: assoc -> run (10) +I (423) wifi:connected with CMCC-xRSZ, aid = 134, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (423) wifi:security: WPA2-PSK, phy: bgn, rssi: -44 +I (433) wifi:pm start, type: 1 + +I (433) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (433) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (433) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (473) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1433) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1433) wifi station: got ip:192.168.1.156 +I (1433) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1433) modbus tcp: ModBusTCPSlave_init() +I (1433) bdc_control: Create DC motor +I (1433) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1433) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1433) bdc_control: Init pcnt driver to decode rotary signal +I (1433) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1433) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1433) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1433) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1433) bdc_control: Create PID control block +I (1433) bdc_control: Create a timer to do PID calculation periodically +I (1433) bdc_control: Enable motor and forward +I (1433) bdc_control: Start motor speed loop +I (4913) modbus tcp: accept assess +I (5093) modbus tcp: ModBusSlave_recv() +I (5093) modbus: ModbusSlaveProcess()--------------------------- +I (5093) modbus: check id... +I (5093) modbus: ok +I (5093) modbus: add: 0, length: 10 +I (5093) modbus: Read Holding Registers +I (5133) modbus tcp: ModBusSlave_recv() +I (5133) modbus: ModbusSlaveProcess()--------------------------- +I (5133) modbus: check id... +I (5133) modbus: ok +I (5133) modbus: add: 0, length: 10 +I (5133) modbus: Read Holding Registers +I (5293) modbus tcp: ModBusSlave_recv() +I (5293) modbus: ModbusSlaveProcess()--------------------------- +I (5293) modbus: check id... +I (5293) modbus: ok +I (5293) modbus: add: 0, length: 10 +I (5293) modbus: Read Holding Registers +I (5393) modbus tcp: ModBusSlave_recv() +I (5393) modbus: ModbusSlaveProcess()--------------------------- +I (5393) modbus: check id... +I (5393) modbus: ok +I (5393) modbus: add: 0, length: 10 +I (5393) modbus: Read Holding Registers +I (5463) modbus tcp: ModBusSlave_recv() +I (5463) modbus: ModbusSlaveProcess()--------------------------- +I (5463) modbus: check id... +I (5463) modbus: ok +I (5463) modbus: add: 0, length: 10 +I (5463) modbus: Read Holding Registers +I (5603) modbus tcp: ModBusSlave_recv() +I (5603) modbus: ModbusSlaveProcess()--------------------------- +I (5603) modbus: check id... +I (5603) modbus: ok +I (5603) modbus: add: 0, length: 10 +I (5603) modbus: Read Holding Registers +I (5683) modbus tcp: ModBusSlave_recv() +I (5683) modbus: ModbusSlaveProcess()--------------------------- +I (5683) modbus: check id... +I (5683) modbus: ok +I (5683) modbus: add: 0, length: 10 +I (5683) modbus: Read Holding Registers +I (5803) modbus tcp: ModBusSlave_recv() +I (5803) modbus: ModbusSlaveProcess()--------------------------- +I (5803) modbus: check id... +I (5803) modbus: ok +I (5803) modbus: add: 0, length: 10 +I (5803) modbus: Read Holding Registers +I (5913) modbus tcp: ModBusSlave_recv() +I (5913) modbus: ModbusSlaveProcess()--------------------------- +I (5913) modbus: check id... +I (5913) modbus: ok +I (5913) modbus: add: 0, length: 10 +I (5913) modbus: Read Holding Registers +I (6013) modbus tcp: ModBusSlave_recv() +I (6013) modbus: ModbusSlaveProcess()--------------------------- +I (6013) modbus: check id... +I (6013) modbus: ok +I (6013) modbus: add: 0, length: 10 +I (6013) modbus: Read Holding Registers +I (6213) modbus tcp: ModBusSlave_recv() +I (6213) modbus: ModbusSlaveProcess()--------------------------- +I (6213) modbus: check id... +I (6213) modbus: ok +I (6213) modbus: add: 0, length: 10 +I (6213) modbus: Read Holding Registers +I (6233) modbus tcp: ModBusSlave_recv() +I (6233) modbus: ModbusSlaveProcess()--------------------------- +I (6233) modbus: check id... +I (6233) modbus: ok +I (6233) modbus: add: 0, length: 10 +I (6233) modbus: Read Holding Registers +I (6423) modbus tcp: ModBusSlave_recv() +I (6423) modbus: ModbusSlaveProcess()--------------------------- +I (6423) modbus: check id... +I (6423) modbus: ok +I (6423) modbus: add: 0, length: 10 +I (6423) modbus: Read Holding Registers +I (6453) modbus tcp: ModBusSlave_recv() +I (6453) modbus: ModbusSlaveProcess()--------------------------- +I (6453) modbus: check id... +I (6453) modbus: ok +I (6453) modbus: add: 0, length: 10 +I (6453) modbus: Read Holding Registers +I (6623) modbus tcp: ModBusSlave_recv() +I (6623) modbus: ModbusSlaveProcess()--------------------------- +I (6623) modbus: check id... +I (6623) modbus: ok +I (6623) modbus: add: 0, length: 10 +I (6623) modbus: Read Holding Registers +I (6673) modbus tcp: ModBusSlave_recv() +I (6673) modbus: ModbusSlaveProcess()--------------------------- +I (6673) modbus: check id... +I (6673) modbus: ok +I (6673) modbus: add: 0, length: 10 +I (6673) modbus: Read Holding Registers +I (6823) modbus tcp: ModBusSlave_recv() +I (6823) modbus: ModbusSlaveProcess()--------------------------- +I (6823) modbus: check id... +I (6823) modbus: ok +I (6823) modbus: add: 0, length: 10 +I (6823) modbus: Read Holding Registers +I (6893) modbus tcp: ModBusSlave_recv() +I (6893) modbus: ModbusSlaveProcess()--------------------------- +I (6893) modbus: check id... +I (6903) modbus: ok +I (6903) modbus: add: 0, length: 10 +I (6903) modbus: Read Holding Registers +I (7033) modbus tcp: ModBusSlave_recv() +I (7033) modbus: ModbusSlaveProcess()--------------------------- +I (7033) modbus: check id... +I (7033) modbus: ok +I (7033) modbus: add: 0, length: 10 +I (7033) modbus: Read Holding Registers +I (7113) modbus tcp: ModBusSlave_recv() +I (7113) modbus: ModbusSlaveProcess()--------------------------- +I (7113) modbus: check id... +I (7113) modbus: ok +I (7113) modbus: add: 0, length: 10 +I (7113) modbus: Read Holding Registers +I (7243) modbus tcp: ModBusSlave_recv() +I (7243) modbus: ModbusSlaveProcess()--------------------------- +I (7243) modbus: check id... +I (7243) modbus: ok +I (7243) modbus: add: 0, length: 10 +I (7243) modbus: Read Holding Registers +I (7333) modbus tcp: ModBusSlave_recv() +I (7333) modbus: ModbusSlaveProcess()--------------------------- +I (7333) modbus: check id... +I (7333) modbus: ok +I (7333) modbus: add: 0, length: 10 +I (7333) modbus: Read Holding Registers +I (7443) modbus tcp: ModBusSlave_recv() +I (7443) modbus: ModbusSlaveProcess()--------------------------- +I (7443) modbus: check id... +I (7443) modbus: ok +I (7443) modbus: add: 0, length: 10 +I (7443) modbus: Read Holding Registers +I (7553) modbus tcp: ModBusSlave_recv() +I (7553) modbus: ModbusSlaveProcess()--------------------------- +I (7553) modbus: check id... +I (7553) modbus: ok +I (7553) modbus: add: 0, length: 10 +I (7553) modbus: Read Holding Registers +I (7753) modbus tcp: ModBusSlave_recv() +I (7753) modbus: ModbusSlaveProcess()--------------------------- +I (7753) modbus: check id... +I (7753) modbus: ok +I (7753) modbus: add: 0, length: 10 +I (7753) modbus: Read Holding Registers +I (7773) modbus tcp: ModBusSlave_recv() +I (7773) modbus: ModbusSlaveProcess()--------------------------- +I (7773) modbus: check id... +I (7773) modbus: ok +I (7773) modbus: add: 0, length: 10 +I (7773) modbus: Read Holding Registers +I (7953) modbus tcp: ModBusSlave_recv() +I (7953) modbus: ModbusSlaveProcess()--------------------------- +I (7953) modbus: check id... +I (7953) modbus: ok +I (7953) modbus: add: 0, length: 10 +I (7953) modbus: Read Holding Registers +I (7973) modbus tcp: ModBusSlave_recv() +I (7973) modbus: ModbusSlaveProcess()--------------------------- +I (7973) modbus: check id... +I (7973) modbus: ok +I (7973) modbus: add: 0, length: 10 +I (7973) modbus: Read Holding Registers +I (8083) modbus tcp: ModBusSlave_recv() +I (8093) modbus: ModbusSlaveProcess()--------------------------- +I (8093) modbus: check id... +I (8093) modbus: ok +I (8093) modbus: add: 0, length: 10 +I (8093) modbus: Read Holding Registers +I (8263) modbus tcp: ModBusSlave_recv() +I (8263) modbus: ModbusSlaveProcess()--------------------------- +I (8263) modbus: check id... +I (8263) modbus: ok +I (8263) modbus: add: 0, length: 10 +I (8263) modbus: Read Holding Registers +I (8303) modbus tcp: ModBusSlave_recv() +I (8303) modbus: ModbusSlaveProcess()--------------------------- +I (8303) modbus: check id... +I (8313) modbus: ok +I (8313) modbus: add: 0, length: 10 +I (8313) modbus: Read Holding Registers +I (8463) modbus tcp: ModBusSlave_recv() +I (8463) modbus: ModbusSlaveProcess()--------------------------- +I (8463) modbus: check id... +I (8463) modbus: ok +I (8463) modbus: add: 0, length: 10 +I (8463) modbus: Read Holding Registers +I (8523) modbus tcp: ModBusSlave_recv() +I (8533) modbus: ModbusSlaveProcess()--------------------------- +I (8533) modbus: check id... +I (8533) modbus: ok +I (8533) modbus: add: 0, length: 10 +I (8533) modbus: Read Holding Registers +I (8633) modbus tcp: ModBusSlave_recv() +I (8643) modbus: ModbusSlaveProcess()--------------------------- +I (8643) modbus: check id... +I (8643) modbus: ok +I (8643) modbus: add: 0, length: 10 +I (8643) modbus: Read Holding Registers +I (8773) modbus tcp: ModBusSlave_recv() +I (8773) modbus: ModbusSlaveProcess()--------------------------- +I (8783) modbus: check id... +I (8783) modbus: ok +I (8783) modbus: add: 0, length: 10 +I (8783) modbus: Read Holding Registers +I (8873) modbus tcp: ModBusSlave_recv() +I (8873) modbus: ModbusSlaveProcess()--------------------------- +I (8873) modbus: check id... +I (8873) modbus: ok +I (8883) modbus: add: 0, length: 10 +I (8883) modbus: Read Holding Registers +I (8983) modbus tcp: ModBusSlave_recv() +I (8983) modbus: ModbusSlaveProcess()--------------------------- +I (8983) modbus: check id... +I (8983) modbus: ok +I (8983) modbus: add: 0, length: 10 +I (8983) modbus: Read Holding Registers +I (9083) modbus tcp: ModBusSlave_recv() +I (9083) modbus: ModbusSlaveProcess()--------------------------- +I (9083) modbus: check id... +I (9083) modbus: ok +I (9083) modbus: add: 0, length: 10 +I (9083) modbus: Read Holding Registers +I (9283) modbus tcp: ModBusSlave_recv() +I (9283) modbus: ModbusSlaveProcess()--------------------------- +I (9283) modbus: check id... +I (9283) modbus: ok +I (9283) modbus: add: 0, length: 10 +I (9283) modbus: Read Holding Registers +I (9313) modbus tcp: ModBusSlave_recv() +I (9313) modbus: ModbusSlaveProcess()--------------------------- +I (9313) modbus: check id... +I (9313) modbus: ok +I (9313) modbus: add: 0, length: 10 +I (9313) modbus: Read Holding Registers +I (9403) modbus tcp: ModBusSlave_recv() +I (9403) modbus: ModbusSlaveProcess()--------------------------- +I (9403) modbus: check id... +I (9403) modbus: ok +I (9403) modbus: add: 0, length: 10 +I (9403) modbus: Read Holding Registers +I (9593) modbus tcp: ModBusSlave_recv() +I (9593) modbus: ModbusSlaveProcess()--------------------------- +I (9593) modbus: check id... +I (9593) modbus: ok +I (9593) modbus: add: 0, length: 10 +I (9593) modbus: Read Holding Registers +I (9633) modbus tcp: ModBusSlave_recv() +I (9633) modbus: ModbusSlaveProcess()--------------------------- +I (9633) modbus: check id... +I (9633) modbus: ok +I (9633) modbus: add: 0, length: 10 +I (9633) modbus: Read Holding Registers +I (9793) modbus tcp: ModBusSlave_recv() +I (9793) modbus: ModbusSlaveProcess()--------------------------- +I (9793) modbus: check id... +I (9793) modbus: ok +I (9793) modbus: add: 0, length: 10 +I (9793) modbus: Read Holding Registers +I (9843) modbus tcp: ModBusSlave_recv() +I (9843) modbus: ModbusSlaveProcess()--------------------------- +I (9843) modbus: check id... +I (9843) modbus: ok +I (9843) modbus: add: 0, length: 10 +I (9843) modbus: Read Holding Registers +I (10003) modbus tcp: ModBusSlave_recv() +I (10003) modbus: ModbusSlaveProcess()--------------------------- +I (10003) modbus: check id... +I (10003) modbus: ok +I (10003) modbus: add: 0, length: 10 +I (10003) modbus: Read Holding Registers +I (10063) modbus tcp: ModBusSlave_recv() +I (10063) modbus: ModbusSlaveProcess()--------------------------- +I (10063) modbus: check id... +I (10063) modbus: ok +I (10063) modbus: add: 0, length: 10 +I (10063) modbus: Read Holding Registers +I (10203) modbus tcp: ModBusSlave_recv() +I (10213) modbus: ModbusSlaveProcess()--------------------------- +I (10213) modbus: check id... +I (10213) modbus: ok +I (10213) modbus: add: 0, length: 10 +I (10213) modbus: Read Holding Registers +I (10293) modbus tcp: ModBusSlave_recv() +I (10293) modbus: ModbusSlaveProcess()--------------------------- +I (10293) modbus: check id... +I (10293) modbus: ok +I (10293) modbus: add: 0, length: 10 +I (10293) modbus: Read Holding Registers +I (10413) modbus tcp: ModBusSlave_recv() +I (10413) modbus: ModbusSlaveProcess()--------------------------- +I (10413) modbus: check id... +I (10413) modbus: ok +I (10413) modbus: add: 0, length: 10 +I (10413) modbus: Read Holding Registers +I (10503) modbus tcp: ModBusSlave_recv() +I (10503) modbus: ModbusSlaveProcess()--------------------------- +I (10503) modbus: check id... +I (10503) modbus: ok +I (10503) modbus: add: 0, length: 10 +I (10503) modbus: Read Holding Registers +I (10723) modbus tcp: ModBusSlave_recv() +I (10723) modbus: ModbusSlaveProcess()--------------------------- +I (10723) modbus: check id... +I (10723) modbus: ok +I (10723) modbus: add: 0, length: 10 +I (10723) modbus: Read Holding Registers +I (10743) modbus tcp: ModBusSlave_recv() +I (10743) modbus: ModbusSlaveProcess()--------------------------- +I (10743) modbus: check id... +I (10743) modbus: ok +I (10743) modbus: add: 0, length: 10 +I (10743) modbus: Read Holding Registers +I (10923) modbus tcp: ModBusSlave_recv() +I (10923) modbus: ModbusSlaveProcess()--------------------------- +I (10923) modbus: check id... +I (10923) modbus: ok +I (10923) modbus: add: 0, length: 10 +I (10923) modbus: Read Holding Registers +I (10963) modbus tcp: ModBusSlave_recv() +I (10963) modbus: ModbusSlaveProcess()--------------------------- +I (10963) modbus: check id... +I (10963) modbus: ok +I (10963) modbus: add: 0, length: 10 +I (10963) modbus: Read Holding Registers +I (11133) modbus tcp: ModBusSlave_recv() +I (11133) modbus: ModbusSlaveProcess()--------------------------- +I (11133) modbus: check id... +I (11133) modbus: ok +I (11133) modbus: add: 0, length: 10 +I (11133) modbus: Read Holding Registers +I (11173) modbus tcp: ModBusSlave_recv() +I (11173) modbus: ModbusSlaveProcess()--------------------------- +I (11173) modbus: check id... +I (11173) modbus: ok +I (11173) modbus: add: 0, length: 10 +I (11173) modbus: Read Holding Registers +I (11333) modbus tcp: ModBusSlave_recv() +I (11333) modbus: ModbusSlaveProcess()--------------------------- +I (11333) modbus: check id... +I (11333) modbus: ok +I (11333) modbus: add: 0, length: 10 +I (11333) modbus: Read Holding Registers +I (11383) modbus tcp: ModBusSlave_recv() +I (11383) modbus: ModbusSlaveProcess()--------------------------- +I (11383) modbus: check id... +I (11383) modbus: ok +I (11383) modbus: add: 0, length: 10 +I (11383) modbus: Read Holding Registers +I (11543) modbus tcp: ModBusSlave_recv() +I (11543) modbus: ModbusSlaveProcess()--------------------------- +I (11543) modbus: check id... +I (11543) modbus: ok +I (11543) modbus: add: 0, length: 10 +I (11543) modbus: Read Holding Registers +I (11603) modbus tcp: ModBusSlave_recv() +I (11603) modbus: ModbusSlaveProcess()--------------------------- +I (11603) modbus: check id... +I (11603) modbus: ok +I (11613) modbus: add: 0, length: 10 +I (11613) modbus: Read Holding Registers +I (11743) modbus tcp: ModBusSlave_recv() +I (11743) modbus: ModbusSlaveProcess()--------------------------- +I (11743) modbus: check id... +I (11743) modbus: ok +I (11743) modbus: add: 0, length: 10 +I (11743) modbus: Read Holding Registers +I (11823) modbus tcp: ModBusSlave_recv() +I (11833) modbus: ModbusSlaveProcess()--------------------------- +I (11833) modbus: check id... +I (11833) modbus: ok +I (11833) modbus: add: 0, length: 10 +I (11833) modbus: Read Holding Registers +I (11943) modbus tcp: ModBusSlave_recv() +I (11953) modbus: ModbusSlaveProcess()--------------------------- +I (11953) modbus: check id... +I (11953) modbus: ok +I (11953) modbus: add: 0, length: 10 +I (11953) modbus: Read Holding Registers +I (12043) modbus tcp: ModBusSlave_recv() +I (12043) modbus: ModbusSlaveProcess()--------------------------- +I (12043) modbus: check id... +I (12043) modbus: ok +I (12043) modbus: add: 0, length: 10 +I (12043) modbus: Read Holding Registers +I (12153) modbus tcp: ModBusSlave_recv() +I (12153) modbus: ModbusSlaveProcess()--------------------------- +I (12153) modbus: check id... +I (12153) modbus: ok +I (12153) modbus: add: 0, length: 10 +I (12153) modbus: Read Holding Registers +I (12353) modbus tcp: ModBusSlave_recv() +I (12353) modbus: ModbusSlaveProcess()--------------------------- +I (12353) modbus: check id... +I (12353) modbus: ok +I (12353) modbus: add: 0, length: 10 +I (12353) modbus: Read Holding Registers +I (12373) modbus tcp: ModBusSlave_recv() +I (12373) modbus: ModbusSlaveProcess()--------------------------- +I (12373) modbus: check id... +I (12373) modbus: ok +I (12373) modbus: add: 0, length: 10 +I (12373) modbus: Read Holding Registers +I (12563) modbus tcp: ModBusSlave_recv() +I (12563) modbus: ModbusSlaveProcess()--------------------------- +I (12563) modbus: check id... +I (12563) modbus: ok +I (12563) modbus: add: 0, length: 10 +I (12563) modbus: Read Holding Registers +I (12623) modbus tcp: ModBusSlave_recv() +I (12623) modbus: ModbusSlaveProcess()--------------------------- +I (12623) modbus: check id... +I (12623) modbus: ok +I (12623) modbus: add: 0, length: 10 +I (12623) modbus: Read Holding Registers +I (12713) modbus tcp: ModBusSlave_recv() +I (12713) modbus: ModbusSlaveProcess()--------------------------- +I (12713) modbus: check id... +I (12713) modbus: ok +I (12713) modbus: add: 0, length: 10 +I (12713) modbus: Read Holding Registers +I (12823) modbus tcp: ModBusSlave_recv() +I (12823) modbus: ModbusSlaveProcess()--------------------------- +I (12833) modbus: check id... +I (12833) modbus: ok +I (12833) modbus: add: 0, length: 10 +I (12833) modbus: Read Holding Registers +I (12973) modbus tcp: ModBusSlave_recv() +I (12973) modbus: ModbusSlaveProcess()--------------------------- +I (12973) modbus: check id... +I (12973) modbus: ok +I (12973) modbus: add: 0, length: 10 +I (12973) modbus: Read Holding Registers +I (13073) modbus tcp: ModBusSlave_recv() +I (13073) modbus: ModbusSlaveProcess()--------------------------- +I (13073) modbus: check id... +I (13073) modbus: ok +I (13073) modbus: add: 0, length: 10 +I (13073) modbus: Read Holding Registers +I (13163) modbus tcp: ModBusSlave_recv() +I (13163) modbus: ModbusSlaveProcess()--------------------------- +I (13163) modbus: check id... +I (13163) modbus: ok +I (13163) modbus: add: 0, length: 10 +I (13163) modbus: Read Holding Registers +I (13283) modbus tcp: ModBusSlave_recv() +I (13283) modbus: ModbusSlaveProcess()--------------------------- +I (13283) modbus: check id... +I (13283) modbus: ok +I (13283) modbus: add: 0, length: 10 +I (13283) modbus: Read Holding Registers +I (13383) modbus tcp: ModBusSlave_recv() +I (13383) modbus: ModbusSlaveProcess()--------------------------- +I (13383) modbus: check id... +I (13383) modbus: ok +I (13383) modbus: add: 0, length: 10 +I (13383) modbus: Read Holding Registers +I (13583) modbus tcp: ModBusSlave_recv() +I (13583) modbus: ModbusSlaveProcess()--------------------------- +I (13583) modbus: check id... +I (13583) modbus: ok +I (13583) modbus: add: 0, length: 10 +I (13583) modbus: Read Holding Registers +I (13613) modbus tcp: ModBusSlave_recv() +I (13613) modbus: ModbusSlaveProcess()--------------------------- +I (13613) modbus: check id... +I (13613) modbus: ok +I (13613) modbus: add: 0, length: 10 +I (13613) modbus: Read Holding Registers +I (13793) modbus tcp: ModBusSlave_recv() +I (13793) modbus: ModbusSlaveProcess()--------------------------- +I (13793) modbus: check id... +I (13793) modbus: ok +I (13793) modbus: add: 0, length: 10 +I (13793) modbus: Read Holding Registers +I (13833) modbus tcp: ModBusSlave_recv() +I (13833) modbus: ModbusSlaveProcess()--------------------------- +I (13833) modbus: check id... +I (13833) modbus: ok +I (13833) modbus: add: 0, length: 10 +I (13833) modbus: Read Holding Registers +I (13993) modbus tcp: ModBusSlave_recv() +I (13993) modbus: ModbusSlaveProcess()--------------------------- +I (13993) modbus: check id... +I (13993) modbus: ok +I (13993) modbus: add: 0, length: 10 +I (13993) modbus: Read Holding Registers +I (14053) modbus tcp: ModBusSlave_recv() +I (14053) modbus: ModbusSlaveProcess()--------------------------- +I (14053) modbus: check id... +I (14053) modbus: ok +I (14053) modbus: add: 0, length: 10 +I (14053) modbus: Read Holding Registers +I (14143) modbus tcp: ModBusSlave_recv() +I (14143) modbus: ModbusSlaveProcess()--------------------------- +I (14153) modbus: check id... +I (14153) modbus: ok +I (14153) modbus: add: 0, length: 10 +I (14153) modbus: Read Holding Registers +I (14303) modbus tcp: ModBusSlave_recv() +I (14303) modbus: ModbusSlaveProcess()--------------------------- +I (14303) modbus: check id... +I (14303) modbus: ok +I (14303) modbus: add: 0, length: 10 +I (14303) modbus: Read Holding Registers +I (14373) modbus tcp: ModBusSlave_recv() +I (14373) modbus: ModbusSlaveProcess()--------------------------- +I (14373) modbus: check id... +I (14373) modbus: ok +I (14373) modbus: add: 0, length: 10 +I (14373) modbus: Read Holding Registers +I (14483) modbus tcp: ModBusSlave_recv() +I (14483) modbus: ModbusSlaveProcess()--------------------------- +I (14483) modbus: check id... +I (14483) modbus: ok +I (14483) modbus: add: 0, length: 10 +I (14483) modbus: Read Holding Registers +I (14613) modbus tcp: ModBusSlave_recv() +I (14613) modbus: ModbusSlaveProcess()--------------------------- +I (14613) modbus: check id... +I (14613) modbus: ok +I (14613) modbus: add: 0, length: 10 +I (14613) modbus: Read Holding Registers +I (14713) modbus tcp: ModBusSlave_recv() +I (14713) modbus: ModbusSlaveProcess()--------------------------- +I (14713) modbus: check id... +I (14713) modbus: ok +I (14713) modbus: add: 0, length: 10 +I (14713) modbus: Read Holding Registers +I (14813) modbus tcp: ModBusSlave_recv() +I (14813) modbus: ModbusSlaveProcess()--------------------------- +I (14813) modbus: check id... +I (14813) modbus: ok +I (14813) modbus: add: 0, length: 10 +I (14813) modbus: Read Holding Registers +I (15023) modbus tcp: ModBusSlave_recv() +I (15023) modbus: ModbusSlaveProcess()--------------------------- +I (15023) modbus: check id... +I (15023) modbus: ok +I (15023) modbus: add: 0, length: 10 +I (15023) modbus: Read Holding Registers +I (15043) modbus tcp: ModBusSlave_recv() +I (15043) modbus: ModbusSlaveProcess()--------------------------- +I (15043) modbus: check id... +I (15043) modbus: ok +I (15043) modbus: add: 0, length: 10 +I (15043) modbus: Read Holding Registers +I (15223) modbus tcp: ModBusSlave_recv() +I (15223) modbus: ModbusSlaveProcess()--------------------------- +I (15223) modbus: check id... +I (15223) modbus: ok +I (15223) modbus: add: 0, length: 10 +I (15223) modbus: Read Holding Registers +I (15263) modbus tcp: ModBusSlave_recv() +I (15263) modbus: ModbusSlaveProcess()--------------------------- +I (15263) modbus: check id... +I (15263) modbus: ok +I (15263) modbus: add: 0, length: 10 +I (15263) modbus: Read Holding Registers +I (15433) modbus tcp: ModBusSlave_recv() +I (15433) modbus: ModbusSlaveProcess()--------------------------- +I (15433) modbus: check id... +I (15433) modbus: ok +I (15433) modbus: add: 0, length: 10 +I (15433) modbus: Read Holding Registers +I (15533) modbus tcp: ModBusSlave_recv() +I (15533) modbus: ModbusSlaveProcess()--------------------------- +I (15533) modbus: check id... +I (15533) modbus: ok +I (15533) modbus: add: 0, length: 10 +I (15533) modbus: Read Holding Registers +I (15593) modbus tcp: ModBusSlave_recv() +I (15593) modbus: ModbusSlaveProcess()--------------------------- +I (15593) modbus: check id... +I (15593) modbus: ok +I (15593) modbus: add: 0, length: 10 +I (15593) modbus: Read Holding Registers +I (15733) modbus tcp: ModBusSlave_recv() +I (15743) modbus: ModbusSlaveProcess()--------------------------- +I (15743) modbus: check id... +I (15743) modbus: ok +I (15743) modbus: add: 0, length: 10 +I (15743) modbus: Read Holding Registers +I (15843) modbus tcp: ModBusSlave_recv() +I (15843) modbus: ModbusSlaveProcess()--------------------------- +I (15843) modbus: check id... +I (15843) modbus: ok +I (15843) modbus: add: 0, length: 10 +I (15843) modbus: Read Holding Registers +I (15923) modbus tcp: ModBusSlave_recv() +I (15923) modbus: ModbusSlaveProcess()--------------------------- +I (15923) modbus: check id... +I (15923) modbus: ok +I (15923) modbus: add: 0, length: 10 +I (15923) modbus: Read Holding Registers +I (16053) modbus tcp: ModBusSlave_recv() +I (16053) modbus: ModbusSlaveProcess()--------------------------- +I (16053) modbus: check id... +I (16053) modbus: ok +I (16053) modbus: add: 0, length: 10 +I (16053) modbus: Read Holding Registers +I (16143) modbus tcp: ModBusSlave_recv() +I (16143) modbus: ModbusSlaveProcess()--------------------------- +I (16143) modbus: check id... +I (16143) modbus: ok +I (16143) modbus: add: 0, length: 10 +I (16143) modbus: Read Holding Registers +I (16353) modbus tcp: ModBusSlave_recv() +I (16353) modbus: ModbusSlaveProcess()--------------------------- +I (16353) modbus: check id... +I (16353) modbus: ok +I (16353) modbus: add: 0, length: 10 +I (16353) modbus: Read Holding Registers +I (16383) modbus tcp: ModBusSlave_recv() +I (16383) modbus: ModbusSlaveProcess()--------------------------- +I (16383) modbus: check id... +I (16383) modbus: ok +I (16383) modbus: add: 0, length: 10 +I (16383) modbus: Read Holding Registers +I (16553) modbus tcp: ModBusSlave_recv() +I (16553) modbus: ModbusSlaveProcess()--------------------------- +I (16553) modbus: check id... +I (16553) modbus: ok +I (16553) modbus: add: 0, length: 10 +I (16553) modbus: Read Holding Registers +I (16603) modbus tcp: ModBusSlave_recv() +I (16603) modbus: ModbusSlaveProcess()--------------------------- +I (16603) modbus: check id... +I (16603) modbus: ok +I (16603) modbus: add: 0, length: 10 +I (16603) modbus: Read Holding Registers +I (16763) modbus tcp: ModBusSlave_recv() +I (16763) modbus: ModbusSlaveProcess()--------------------------- +I (16763) modbus: check id... +I (16763) modbus: ok +I (16763) modbus: add: 0, length: 10 +I (16763) modbus: Read Holding Registers +I (16833) modbus tcp: ModBusSlave_recv() +I (16833) modbus: ModbusSlaveProcess()--------------------------- +I (16833) modbus: check id... +I (16833) modbus: ok +I (16833) modbus: add: 0, length: 10 +I (16833) modbus: Read Holding Registers +I (16963) modbus tcp: ModBusSlave_recv() +I (16963) modbus: ModbusSlaveProcess()--------------------------- +I (16973) modbus: check id... +I (16973) modbus: ok +I (16973) modbus: add: 0, length: 10 +I (16973) modbus: Read Holding Registers +I (17043) modbus tcp: ModBusSlave_recv() +I (17043) modbus: ModbusSlaveProcess()--------------------------- +I (17053) modbus: check id... +I (17053) modbus: ok +I (17053) modbus: add: 0, length: 10 +I (17053) modbus: Read Holding Registers +I (17173) modbus tcp: ModBusSlave_recv() +I (17173) modbus: ModbusSlaveProcess()--------------------------- +I (17173) modbus: check id... +I (17173) modbus: ok +I (17173) modbus: add: 0, length: 10 +I (17173) modbus: Read Holding Registers +I (17273) modbus tcp: ModBusSlave_recv() +I (17273) modbus: ModbusSlaveProcess()--------------------------- +I (17273) modbus: check id... +I (17273) modbus: ok +I (17273) modbus: add: 0, length: 10 +I (17273) modbus: Read Holding Registers +I (17373) modbus tcp: ModBusSlave_recv() +I (17373) modbus: ModbusSlaveProcess()--------------------------- +I (17373) modbus: check id... +I (17373) modbus: ok +I (17373) modbus: add: 0, length: 10 +I (17373) modbus: Read Holding Registers +I (17583) modbus tcp: ModBusSlave_recv() +I (17583) modbus: ModbusSlaveProcess()--------------------------- +I (17583) modbus: check id... +I (17583) modbus: ok +I (17583) modbus: add: 0, length: 10 +I (17583) modbus: Read Holding Registers +I (17613) modbus tcp: ModBusSlave_recv() +I (17613) modbus: ModbusSlaveProcess()--------------------------- +I (17613) modbus: check id... +I (17613) modbus: ok +I (17613) modbus: add: 0, length: 10 +I (17613) modbus: Read Holding Registers +I (17783) modbus tcp: ModBusSlave_recv() +I (17783) modbus: ModbusSlaveProcess()--------------------------- +I (17783) modbus: check id... +I (17783) modbus: ok +I (17783) modbus: add: 0, length: 10 +I (17783) modbus: Read Holding Registers +I (17833) modbus tcp: ModBusSlave_recv() +I (17833) modbus: ModbusSlaveProcess()--------------------------- +I (17833) modbus: check id... +I (17833) modbus: ok +I (17833) modbus: add: 0, length: 10 +I (17833) modbus: Read Holding Registers +I (17993) modbus tcp: ModBusSlave_recv() +I (17993) modbus: ModbusSlaveProcess()--------------------------- +I (17993) modbus: check id... +I (17993) modbus: ok +I (17993) modbus: add: 0, length: 10 +I (17993) modbus: Read Holding Registers +I (18093) modbus tcp: ModBusSlave_recv() +I (18093) modbus: ModbusSlaveProcess()--------------------------- +I (18093) modbus: check id... +I (18093) modbus: ok +I (18093) modbus: add: 0, length: 10 +I (18093) modbus: Read Holding Registers +I (18163) modbus tcp: ModBusSlave_recv() +I (18163) modbus: ModbusSlaveProcess()--------------------------- +I (18163) modbus: check id... +I (18163) modbus: ok +I (18163) modbus: add: 0, length: 10 +I (18163) modbus: Read Holding Registers +I (18293) modbus tcp: ModBusSlave_recv() +I (18293) modbus: ModbusSlaveProcess()--------------------------- +I (18293) modbus: check id... +I (18293) modbus: ok +I (18293) modbus: add: 0, length: 10 +I (18293) modbus: Read Holding Registers +I (18383) modbus tcp: ModBusSlave_recv() +I (18383) modbus: ModbusSlaveProcess()--------------------------- +I (18383) modbus: check id... +I (18383) modbus: ok +I (18383) modbus: add: 0, length: 10 +I (18383) modbus: Read Holding Registers +I (18503) modbus tcp: ModBusSlave_recv() +I (18503) modbus: ModbusSlaveProcess()--------------------------- +I (18503) modbus: check id... +I (18503) modbus: ok +I (18503) modbus: add: 0, length: 10 +I (18503) modbus: Read Holding Registers +I (18593) modbus tcp: ModBusSlave_recv() +I (18593) modbus: ModbusSlaveProcess()--------------------------- +I (18603) modbus: check id... +I (18603) modbus: ok +I (18603) modbus: add: 0, length: 10 +I (18603) modbus: Read Holding Registers +I (18813) modbus tcp: ModBusSlave_recv() +I (18813) modbus: ModbusSlaveProcess()--------------------------- +I (18813) modbus: check id... +I (18813) modbus: ok +I (18813) modbus: add: 0, length: 10 +I (18813) modbus: Read Holding Registers +I (18833) modbus tcp: ModBusSlave_recv() +I (18833) modbus: ModbusSlaveProcess()--------------------------- +I (18833) modbus: check id... +I (18833) modbus: ok +I (18833) modbus: add: 0, length: 10 +I (18833) modbus: Read Holding Registers +I (19013) modbus tcp: ModBusSlave_recv() +I (19013) modbus: ModbusSlaveProcess()--------------------------- +I (19013) modbus: check id... +I (19013) modbus: ok +I (19013) modbus: add: 0, length: 10 +I (19013) modbus: Read Holding Registers +I (19053) modbus tcp: ModBusSlave_recv() +I (19053) modbus: ModbusSlaveProcess()--------------------------- +I (19053) modbus: check id... +I (19053) modbus: ok +I (19053) modbus: add: 0, length: 10 +I (19053) modbus: Read Holding Registers +I (19223) modbus tcp: ModBusSlave_recv() +I (19223) modbus: ModbusSlaveProcess()--------------------------- +I (19223) modbus: check id... +I (19223) modbus: ok +I (19223) modbus: add: 0, length: 10 +I (19223) modbus: Read Holding Registers +I (19273) modbus tcp: ModBusSlave_recv() +I (19273) modbus: ModbusSlaveProcess()--------------------------- +I (19273) modbus: check id... +I (19273) modbus: ok +I (19273) modbus: add: 0, length: 10 +I (19273) modbus: Read Holding Registers +I (19423) modbus tcp: ModBusSlave_recv() +I (19423) modbus: ModbusSlaveProcess()--------------------------- +I (19423) modbus: check id... +I (19423) modbus: ok +I (19423) modbus: add: 0, length: 10 +I (19423) modbus: Read Holding Registers +I (19493) modbus tcp: ModBusSlave_recv() +I (19493) modbus: ModbusSlaveProcess()--------------------------- +I (19493) modbus: check id... +I (19493) modbus: ok +I (19493) modbus: add: 0, length: 10 +I (19493) modbus: Read Holding Registers +I (19633) modbus tcp: ModBusSlave_recv() +I (19633) modbus: ModbusSlaveProcess()--------------------------- +I (19633) modbus: check id... +I (19633) modbus: ok +I (19633) modbus: add: 0, length: 10 +I (19633) modbus: Read Holding Registers +I (19713) modbus tcp: ModBusSlave_recv() +I (19713) modbus: ModbusSlaveProcess()--------------------------- +I (19713) modbus: check id... +I (19713) modbus: ok +I (19713) modbus: add: 0, length: 10 +I (19713) modbus: Read Holding Registers +I (19833) modbus tcp: ModBusSlave_recv() +I (19833) modbus: ModbusSlaveProcess()--------------------------- +I (19833) modbus: check id... +I (19833) modbus: ok +I (19833) modbus: add: 0, length: 10 +I (19833) modbus: Read Holding Registers +I (19933) modbus tcp: ModBusSlave_recv() +I (19933) modbus: ModbusSlaveProcess()--------------------------- +I (19933) modbus: check id... +I (19933) modbus: ok +I (19933) modbus: add: 0, length: 10 +I (19933) modbus: Read Holding Registers +I (20143) modbus tcp: ModBusSlave_recv() +I (20143) modbus: ModbusSlaveProcess()--------------------------- +I (20143) modbus: check id... +I (20143) modbus: ok +I (20143) modbus: add: 0, length: 10 +I (20143) modbus: Read Holding Registers +I (20173) modbus tcp: ModBusSlave_recv() +I (20173) modbus: ModbusSlaveProcess()--------------------------- +I (20173) modbus: check id... +I (20173) modbus: ok +I (20173) modbus: add: 0, length: 10 +I (20173) modbus: Read Holding Registers +I (20263) modbus tcp: ModBusSlave_recv() +I (20263) modbus: ModbusSlaveProcess()--------------------------- +I (20263) modbus: check id... +I (20263) modbus: ok +I (20263) modbus: add: 0, length: 10 +I (20263) modbus: Read Holding Registers +I (20453) modbus tcp: ModBusSlave_recv() +I (20453) modbus: ModbusSlaveProcess()--------------------------- +I (20453) modbus: check id... +I (20453) modbus: ok +I (20453) modbus: add: 0, length: 10 +I (20453) modbus: Read Holding Registers +I (20483) modbus tcp: ModBusSlave_recv() +I (20483) modbus: ModbusSlaveProcess()--------------------------- +I (20483) modbus: check id... +I (20483) modbus: ok +I (20483) modbus: add: 0, length: 10 +I (20483) modbus: Read Holding Registers +I (20653) modbus tcp: ModBusSlave_recv() +I (20653) modbus: ModbusSlaveProcess()--------------------------- +I (20653) modbus: check id... +I (20653) modbus: ok +I (20653) modbus: add: 0, length: 10 +I (20653) modbus: Read Holding Registers +I (20703) modbus tcp: ModBusSlave_recv() +I (20703) modbus: ModbusSlaveProcess()--------------------------- +I (20703) modbus: check id... +I (20703) modbus: ok +I (20703) modbus: add: 0, length: 10 +I (20703) modbus: Read Holding Registers +I (20853) modbus tcp: ModBusSlave_recv() +I (20853) modbus: ModbusSlaveProcess()--------------------------- +I (20853) modbus: check id... +I (20853) modbus: ok +I (20853) modbus: add: 0, length: 10 +I (20853) modbus: Read Holding Registers +I (20923) modbus tcp: ModBusSlave_recv() +I (20923) modbus: ModbusSlaveProcess()--------------------------- +I (20923) modbus: check id... +I (20923) modbus: ok +I (20923) modbus: add: 0, length: 10 +I (20923) modbus: Read Holding Registers +I (21063) modbus tcp: ModBusSlave_recv() +I (21063) modbus: ModbusSlaveProcess()--------------------------- +I (21063) modbus: check id... +I (21063) modbus: ok +I (21063) modbus: add: 0, length: 10 +I (21063) modbus: Read Holding Registers +I (21143) modbus tcp: ModBusSlave_recv() +I (21143) modbus: ModbusSlaveProcess()--------------------------- +I (21143) modbus: check id... +I (21143) modbus: ok +I (21143) modbus: add: 0, length: 10 +I (21143) modbus: Read Holding Registers +I (21263) modbus tcp: ModBusSlave_recv() +I (21273) modbus: ModbusSlaveProcess()--------------------------- +I (21273) modbus: check id... +I (21273) modbus: ok +I (21273) modbus: add: 0, length: 10 +I (21273) modbus: Read Holding Registers +I (21363) modbus tcp: ModBusSlave_recv() +I (21363) modbus: ModbusSlaveProcess()--------------------------- +I (21363) modbus: check id... +I (21363) modbus: ok +I (21363) modbus: add: 0, length: 10 +I (21363) modbus: Read Holding Registers +I (21573) modbus tcp: ModBusSlave_recv() +I (21573) modbus: ModbusSlaveProcess()--------------------------- +I (21573) modbus: check id... +I (21573) modbus: ok +I (21573) modbus: add: 0, length: 10 +I (21573) modbus: Read Holding Registers +I (21603) modbus tcp: ModBusSlave_recv() +I (21603) modbus: ModbusSlaveProcess()--------------------------- +I (21603) modbus: check id... +I (21603) modbus: ok +I (21603) modbus: add: 0, length: 10 +I (21603) modbus: Read Holding Registers +I (21783) modbus tcp: ModBusSlave_recv() +I (21783) modbus: ModbusSlaveProcess()--------------------------- +I (21783) modbus: check id... +I (21783) modbus: ok +I (21783) modbus: add: 0, length: 10 +I (21783) modbus: Read Holding Registers +I (21823) modbus tcp: ModBusSlave_recv() +I (21823) modbus: ModbusSlaveProcess()--------------------------- +I (21823) modbus: check id... +I (21823) modbus: ok +I (21823) modbus: add: 0, length: 10 +I (21823) modbus: Read Holding Registers +I (21933) modbus tcp: ModBusSlave_recv() +I (21933) modbus: ModbusSlaveProcess()--------------------------- +I (21933) modbus: check id... +I (21933) modbus: ok +I (21933) modbus: add: 0, length: 10 +I (21933) modbus: Read Holding Registers +I (22023) modbus tcp: ModBusSlave_recv() +I (22023) modbus: ModbusSlaveProcess()--------------------------- +I (22023) modbus: check id... +I (22023) modbus: ok +I (22023) modbus: add: 0, length: 10 +I (22023) modbus: Read Holding Registers +I (22193) modbus tcp: ModBusSlave_recv() +I (22193) modbus: ModbusSlaveProcess()--------------------------- +I (22193) modbus: check id... +I (22193) modbus: ok +I (22193) modbus: add: 0, length: 10 +I (22193) modbus: Read Holding Registers +I (22243) modbus tcp: ModBusSlave_recv() +I (22243) modbus: ModbusSlaveProcess()--------------------------- +I (22243) modbus: check id... +I (22243) modbus: ok +I (22243) modbus: add: 0, length: 10 +I (22243) modbus: Read Holding Registers +I (22393) modbus tcp: ModBusSlave_recv() +I (22393) modbus: ModbusSlaveProcess()--------------------------- +I (22393) modbus: check id... +I (22393) modbus: ok +I (22393) modbus: add: 0, length: 10 +I (22393) modbus: Read Holding Registers +I (22493) modbus tcp: ModBusSlave_recv() +I (22493) modbus: ModbusSlaveProcess()--------------------------- +I (22493) modbus: check id... +I (22493) modbus: ok +I (22493) modbus: add: 0, length: 10 +I (22493) modbus: Read Holding Registers +I (22573) modbus tcp: ModBusSlave_recv() +I (22573) modbus: ModbusSlaveProcess()--------------------------- +I (22583) modbus: check id... +I (22583) modbus: ok +I (22583) modbus: add: 0, length: 10 +I (22583) modbus: Read Holding Registers +I (22683) modbus tcp: ModBusSlave_recv() +I (22683) modbus: ModbusSlaveProcess()--------------------------- +I (22683) modbus: check id... +I (22683) modbus: ok +I (22683) modbus: add: 0, length: 10 +I (22683) modbus: Read Holding Registers +I (22803) modbus tcp: ModBusSlave_recv() +I (22803) modbus: ModbusSlaveProcess()--------------------------- +I (22803) modbus: check id... +I (22803) modbus: ok +I (22803) modbus: add: 0, length: 10 +I (22803) modbus: Read Holding Registers +I (22903) modbus tcp: ModBusSlave_recv() +I (22903) modbus: ModbusSlaveProcess()--------------------------- +I (22903) modbus: check id... +I (22903) modbus: ok +I (22903) modbus: add: 0, length: 10 +I (22903) modbus: Read Holding Registers +I (23113) modbus tcp: ModBusSlave_recv() +I (23113) modbus: ModbusSlaveProcess()--------------------------- +I (23113) modbus: check id... +I (23113) modbus: ok +I (23113) modbus: add: 0, length: 10 +I (23113) modbus: Read Holding Registers +I (23143) modbus tcp: ModBusSlave_recv() +I (23143) modbus: ModbusSlaveProcess()--------------------------- +I (23143) modbus: check id... +I (23143) modbus: ok +I (23143) modbus: add: 0, length: 10 +I (23143) modbus: Read Holding Registers +I (23233) modbus tcp: ModBusSlave_recv() +I (23233) modbus: ModbusSlaveProcess()--------------------------- +I (23233) modbus: check id... +I (23233) modbus: ok +I (23233) modbus: add: 0, length: 10 +I (23233) modbus: Read Holding Registers +I (23413) modbus tcp: ModBusSlave_recv() +I (23413) modbus: ModbusSlaveProcess()--------------------------- +I (23413) modbus: check id... +I (23413) modbus: ok +I (23413) modbus: add: 0, length: 10 +I (23413) modbus: Read Holding Registers +I (23453) modbus tcp: ModBusSlave_recv() +I (23453) modbus: ModbusSlaveProcess()--------------------------- +I (23453) modbus: check id... +I (23453) modbus: ok +I (23453) modbus: add: 0, length: 10 +I (23453) modbus: Read Holding Registers +I (23623) modbus tcp: ModBusSlave_recv() +I (23623) modbus: ModbusSlaveProcess()--------------------------- +I (23623) modbus: check id... +I (23623) modbus: ok +I (23623) modbus: add: 0, length: 10 +I (23623) modbus: Read Holding Registers +I (23673) modbus tcp: ModBusSlave_recv() +I (23673) modbus: ModbusSlaveProcess()--------------------------- +I (23673) modbus: check id... +I (23673) modbus: ok +I (23673) modbus: add: 0, length: 10 +I (23673) modbus: Read Holding Registers +I (23823) modbus tcp: ModBusSlave_recv() +I (23833) modbus: ModbusSlaveProcess()--------------------------- +I (23833) modbus: check id... +I (23833) modbus: ok +I (23833) modbus: add: 0, length: 10 +I (23833) modbus: Read Holding Registers +I (23893) modbus tcp: ModBusSlave_recv() +I (23893) modbus: ModbusSlaveProcess()--------------------------- +I (23893) modbus: check id... +I (23893) modbus: ok +I (23893) modbus: add: 0, length: 10 +I (23893) modbus: Read Holding Registers +I (24043) modbus tcp: ModBusSlave_recv() +I (24043) modbus: ModbusSlaveProcess()--------------------------- +I (24043) modbus: check id... +I (24043) modbus: ok +I (24043) modbus: add: 0, length: 10 +I (24043) modbus: Read Holding Registers +I (24133) modbus tcp: ModBusSlave_recv() +I (24133) modbus: ModbusSlaveProcess()--------------------------- +I (24133) modbus: check id... +I (24133) modbus: ok +I (24133) modbus: add: 0, length: 10 +I (24133) modbus: Read Holding Registers +I (24233) modbus tcp: ModBusSlave_recv() +I (24243) modbus: ModbusSlaveProcess()--------------------------- +I (24243) modbus: check id... +I (24243) modbus: ok +I (24243) modbus: add: 0, length: 10 +I (24243) modbus: Read Holding Registers +I (24443) modbus tcp: ModBusSlave_recv() +I (24443) modbus: ModbusSlaveProcess()--------------------------- +I (24443) modbus: check id... +I (24443) modbus: ok +I (24443) modbus: add: 0, length: 10 +I (24443) modbus: Read Holding Registers +I (24453) modbus tcp: ModBusSlave_recv() +I (24453) modbus: ModbusSlaveProcess()--------------------------- +I (24453) modbus: check id... +I (24453) modbus: ok +I (24463) modbus: add: 0, length: 10 +I (24463) modbus: Read Holding Registers +I (24643) modbus tcp: ModBusSlave_recv() +I (24643) modbus: ModbusSlaveProcess()--------------------------- +I (24643) modbus: check id... +I (24643) modbus: ok +I (24643) modbus: add: 0, length: 10 +I (24643) modbus: Read Holding Registers +I (24673) modbus tcp: ModBusSlave_recv() +I (24673) modbus: ModbusSlaveProcess()--------------------------- +I (24673) modbus: check id... +I (24673) modbus: ok +I (24673) modbus: add: 0, length: 10 +I (24673) modbus: Read Holding Registers +I (24853) modbus tcp: ModBusSlave_recv() +I (24853) modbus: ModbusSlaveProcess()--------------------------- +I (24853) modbus: check id... +I (24853) modbus: ok +I (24853) modbus: add: 0, length: 10 +I (24853) modbus: Read Holding Registers +I (24903) modbus tcp: ModBusSlave_recv() +I (24903) modbus: ModbusSlaveProcess()--------------------------- +I (24903) modbus: check id... +I (24903) modbus: ok +I (24903) modbus: add: 0, length: 10 +I (24903) modbus: Read Holding Registers +I (25053) modbus tcp: ModBusSlave_recv() +I (25053) modbus: ModbusSlaveProcess()--------------------------- +I (25053) modbus: check id... +I (25053) modbus: ok +I (25053) modbus: add: 0, length: 10 +I (25053) modbus: Read Holding Registers +I (25113) modbus tcp: ModBusSlave_recv() +I (25113) modbus: ModbusSlaveProcess()--------------------------- +I (25113) modbus: check id... +I (25113) modbus: ok +I (25113) modbus: add: 0, length: 10 +I (25113) modbus: Read Holding Registers +I (25223) modbus tcp: ModBusSlave_recv() +I (25223) modbus: ModbusSlaveProcess()--------------------------- +I (25223) modbus: check id... +I (25223) modbus: ok +I (25223) modbus: add: 0, length: 10 +I (25223) modbus: Read Holding Registers +I (25363) modbus tcp: ModBusSlave_recv() +I (25363) modbus: ModbusSlaveProcess()--------------------------- +I (25363) modbus: check id... +I (25363) modbus: ok +I (25363) modbus: add: 0, length: 10 +I (25363) modbus: Read Holding Registers +I (25433) modbus tcp: ModBusSlave_recv() +I (25433) modbus: ModbusSlaveProcess()--------------------------- +I (25433) modbus: check id... +I (25433) modbus: ok +I (25433) modbus: add: 0, length: 10 +I (25433) modbus: Read Holding Registers +I (25553) modbus tcp: ModBusSlave_recv() +I (25553) modbus: ModbusSlaveProcess()--------------------------- +I (25553) modbus: check id... +I (25553) modbus: ok +I (25553) modbus: add: 0, length: 10 +I (25553) modbus: Read Holding Registers +I (25663) modbus tcp: ModBusSlave_recv() +I (25663) modbus: ModbusSlaveProcess()--------------------------- +I (25663) modbus: check id... +I (25663) modbus: ok +I (25663) modbus: add: 0, length: 10 +I (25663) modbus: Read Holding Registers +I (25873) modbus tcp: ModBusSlave_recv() +I (25873) modbus: ModbusSlaveProcess()--------------------------- +I (25873) modbus: check id... +I (25873) modbus: ok +I (25873) modbus: add: 0, length: 10 +I (25873) modbus: Read Holding Registers +I (25903) modbus tcp: ModBusSlave_recv() +I (25903) modbus: ModbusSlaveProcess()--------------------------- +I (25903) modbus: check id... +I (25903) modbus: ok +I (25903) modbus: add: 0, length: 10 +I (25903) modbus: Read Holding Registers +I (26083) modbus tcp: ModBusSlave_recv() +I (26083) modbus: ModbusSlaveProcess()--------------------------- +I (26083) modbus: check id... +I (26083) modbus: ok +I (26083) modbus: add: 0, length: 10 +I (26083) modbus: Read Holding Registers +I (26103) modbus tcp: ModBusSlave_recv() +I (26103) modbus: ModbusSlaveProcess()--------------------------- +I (26103) modbus: check id... +I (26103) modbus: ok +I (26103) modbus: add: 0, length: 10 +I (26103) modbus: Read Holding Registers +I (26283) modbus tcp: ModBusSlave_recv() +I (26283) modbus: ModbusSlaveProcess()--------------------------- +I (26283) modbus: check id... +I (26283) modbus: ok +I (26283) modbus: add: 0, length: 10 +I (26283) modbus: Read Holding Registers +I (26323) modbus tcp: ModBusSlave_recv() +I (26323) modbus: ModbusSlaveProcess()--------------------------- +I (26323) modbus: check id... +I (26323) modbus: ok +I (26323) modbus: add: 0, length: 10 +I (26323) modbus: Read Holding Registers +I (26433) modbus tcp: ModBusSlave_recv() +I (26433) modbus: ModbusSlaveProcess()--------------------------- +I (26433) modbus: check id... +I (26433) modbus: ok +I (26433) modbus: add: 0, length: 10 +I (26433) modbus: Read Holding Registers +I (26593) modbus tcp: ModBusSlave_recv() +I (26593) modbus: ModbusSlaveProcess()--------------------------- +I (26593) modbus: check id... +I (26593) modbus: ok +I (26593) modbus: add: 0, length: 10 +I (26593) modbus: Read Holding Registers +I (26653) modbus tcp: ModBusSlave_recv() +I (26653) modbus: ModbusSlaveProcess()--------------------------- +I (26653) modbus: check id... +I (26653) modbus: ok +I (26653) modbus: add: 0, length: 10 +I (26653) modbus: Read Holding Registers +I (26763) modbus tcp: ModBusSlave_recv() +I (26763) modbus: ModbusSlaveProcess()--------------------------- +I (26763) modbus: check id... +I (26763) modbus: ok +I (26763) modbus: add: 0, length: 10 +I (26763) modbus: Read Holding Registers +I (26893) modbus tcp: ModBusSlave_recv() +I (26903) modbus: ModbusSlaveProcess()--------------------------- +I (26903) modbus: check id... +I (26903) modbus: ok +I (26903) modbus: add: 0, length: 10 +I (26903) modbus: Read Holding Registers +I (26983) modbus tcp: ModBusSlave_recv() +I (26983) modbus: ModbusSlaveProcess()--------------------------- +I (26983) modbus: check id... +I (26983) modbus: ok +I (26983) modbus: add: 0, length: 10 +I (26983) modbus: Read Holding Registers +I (27103) modbus tcp: ModBusSlave_recv() +I (27103) modbus: ModbusSlaveProcess()--------------------------- +I (27103) modbus: check id... +I (27103) modbus: ok +I (27103) modbus: add: 0, length: 10 +I (27103) modbus: Read Holding Registers +I (27303) modbus tcp: ModBusSlave_recv() +I (27303) modbus: ModbusSlaveProcess()--------------------------- +I (27303) modbus: check id... +I (27303) modbus: ok +I (27313) modbus: add: 0, length: 10 +I (27313) modbus: Read Holding Registers +I (27323) modbus tcp: ModBusSlave_recv() +I (27333) modbus: ModbusSlaveProcess()--------------------------- +I (27333) modbus: check id... +I (27333) modbus: ok +I (27333) modbus: add: 0, length: 10 +I (27333) modbus: Read Holding Registers +I (27513) modbus tcp: ModBusSlave_recv() +I (27513) modbus: ModbusSlaveProcess()--------------------------- +I (27513) modbus: check id... +I (27513) modbus: ok +I (27513) modbus: add: 0, length: 10 +I (27513) modbus: Read Holding Registers +I (27563) modbus tcp: ModBusSlave_recv() +I (27563) modbus: ModbusSlaveProcess()--------------------------- +I (27563) modbus: check id... +I (27563) modbus: ok +I (27563) modbus: add: 0, length: 10 +I (27563) modbus: Read Holding Registers +I (27713) modbus tcp: ModBusSlave_recv() +I (27713) modbus: ModbusSlaveProcess()--------------------------- +I (27713) modbus: check id... +I (27713) modbus: ok +I (27713) modbus: add: 0, length: 10 +I (27713) modbus: Read Holding Registers +I (27783) modbus tcp: ModBusSlave_recv() +I (27783) modbus: ModbusSlaveProcess()--------------------------- +I (27783) modbus: check id... +I (27783) modbus: ok +I (27783) modbus: add: 0, length: 10 +I (27783) modbus: Read Holding Registers +I (27923) modbus tcp: ModBusSlave_recv() +I (27923) modbus: ModbusSlaveProcess()--------------------------- +I (27923) modbus: check id... +I (27923) modbus: ok +I (27923) modbus: add: 0, length: 10 +I (27923) modbus: Read Holding Registers +I (28003) modbus tcp: ModBusSlave_recv() +I (28003) modbus: ModbusSlaveProcess()--------------------------- +I (28003) modbus: check id... +I (28003) modbus: ok +I (28003) modbus: add: 0, length: 10 +I (28003) modbus: Read Holding Registers +I (28133) modbus tcp: ModBusSlave_recv() +I (28133) modbus: ModbusSlaveProcess()--------------------------- +I (28133) modbus: check id... +I (28133) modbus: ok +I (28133) modbus: add: 0, length: 10 +I (28133) modbus: Read Holding Registers +I (28223) modbus tcp: ModBusSlave_recv() +I (28223) modbus: ModbusSlaveProcess()--------------------------- +I (28223) modbus: check id... +I (28223) modbus: ok +I (28233) modbus: add: 0, length: 10 +I (28233) modbus: Read Holding Registers +I (28333) modbus tcp: ModBusSlave_recv() +I (28333) modbus: ModbusSlaveProcess()--------------------------- +I (28333) modbus: check id... +I (28333) modbus: ok +I (28333) modbus: add: 0, length: 10 +I (28333) modbus: Read Holding Registers +I (28433) modbus tcp: ModBusSlave_recv() +I (28433) modbus: ModbusSlaveProcess()--------------------------- +I (28433) modbus: check id... +I (28433) modbus: ok +I (28433) modbus: add: 0, length: 10 +I (28433) modbus: Read Holding Registers +I (28543) modbus tcp: ModBusSlave_recv() +I (28543) modbus: ModbusSlaveProcess()--------------------------- +I (28543) modbus: check id... +I (28543) modbus: ok +I (28543) modbus: add: 0, length: 10 +I (28543) modbus: Read Holding Registers +I (28743) modbus tcp: ModBusSlave_recv() +I (28743) modbus: ModbusSlaveProcess()--------------------------- +I (28743) modbus: check id... +I (28743) modbus: ok +I (28743) modbus: add: 0, length: 10 +I (28743) modbus: Read Holding Registers +I (28763) modbus tcp: ModBusSlave_recv() +I (28763) modbus: ModbusSlaveProcess()--------------------------- +I (28763) modbus: check id... +I (28763) modbus: ok +I (28763) modbus: add: 0, length: 10 +I (28763) modbus: Read Holding Registers +I (28873) modbus tcp: ModBusSlave_recv() +I (28873) modbus: ModbusSlaveProcess()--------------------------- +I (28873) modbus: check id... +I (28873) modbus: ok +I (28873) modbus: add: 0, length: 10 +I (28873) modbus: Read Holding Registers +I (28983) modbus tcp: ModBusSlave_recv() +I (28983) modbus: ModbusSlaveProcess()--------------------------- +I (28983) modbus: check id... +I (28983) modbus: ok +I (28983) modbus: add: 0, length: 10 +I (28983) modbus: Read Holding Registers +I (29153) modbus tcp: ModBusSlave_recv() +I (29153) modbus: ModbusSlaveProcess()--------------------------- +I (29153) modbus: check id... +I (29153) modbus: ok +I (29153) modbus: add: 0, length: 10 +I (29153) modbus: Read Holding Registers +I (29203) modbus tcp: ModBusSlave_recv() +I (29203) modbus: ModbusSlaveProcess()--------------------------- +I (29203) modbus: check id... +I (29203) modbus: ok +I (29203) modbus: add: 0, length: 10 +I (29203) modbus: Read Holding Registers +I (29363) modbus tcp: ModBusSlave_recv() +I (29363) modbus: ModbusSlaveProcess()--------------------------- +I (29363) modbus: check id... +I (29363) modbus: ok +I (29363) modbus: add: 0, length: 10 +I (29363) modbus: Read Holding Registers +I (29463) modbus tcp: ModBusSlave_recv() +I (29463) modbus: ModbusSlaveProcess()--------------------------- +I (29463) modbus: check id... +I (29463) modbus: ok +I (29463) modbus: add: 0, length: 10 +I (29463) modbus: Read Holding Registers +I (29533) modbus tcp: ModBusSlave_recv() +I (29533) modbus: ModbusSlaveProcess()--------------------------- +I (29533) modbus: check id... +I (29533) modbus: ok +I (29533) modbus: add: 0, length: 10 +I (29533) modbus: Read Holding Registers +I (29663) modbus tcp: ModBusSlave_recv() +I (29663) modbus: ModbusSlaveProcess()--------------------------- +I (29663) modbus: check id... +I (29663) modbus: ok +I (29663) modbus: add: 0, length: 10 +I (29663) modbus: Read Holding Registers +I (29763) modbus tcp: ModBusSlave_recv() +I (29763) modbus: ModbusSlaveProcess()--------------------------- +I (29763) modbus: check id... +I (29763) modbus: ok +I (29763) modbus: add: 0, length: 10 +I (29763) modbus: Read Holding Registers +I (29873) modbus tcp: ModBusSlave_recv() +I (29873) modbus: ModbusSlaveProcess()--------------------------- +I (29873) modbus: check id... +I (29873) modbus: ok +I (29873) modbus: add: 0, length: 10 +I (29873) modbus: Read Holding Registers +I (29973) modbus tcp: ModBusSlave_recv() +I (29973) modbus: ModbusSlaveProcess()--------------------------- +I (29973) modbus: check id... +I (29973) modbus: ok +I (29973) modbus: add: 0, length: 10 +I (29973) modbus: Read Holding Registers +I (30173) modbus tcp: ModBusSlave_recv() +I (30173) modbus: ModbusSlaveProcess()--------------------------- +I (30173) modbus: check id... +I (30173) modbus: ok +I (30173) modbus: add: 0, length: 10 +I (30173) modbus: Read Holding Registers +I (30193) modbus tcp: ModBusSlave_recv() +I (30193) modbus: ModbusSlaveProcess()--------------------------- +I (30193) modbus: check id... +I (30193) modbus: ok +I (30193) modbus: add: 0, length: 10 +I (30193) modbus: Read Holding Registers +I (30383) modbus tcp: ModBusSlave_recv() +I (30383) modbus: ModbusSlaveProcess()--------------------------- +I (30383) modbus: check id... +I (30383) modbus: ok +I (30383) modbus: add: 0, length: 10 +I (30383) modbus: Read Holding Registers +I (30423) modbus tcp: ModBusSlave_recv() +I (30423) modbus: ModbusSlaveProcess()--------------------------- +I (30423) modbus: check id... +I (30423) modbus: ok +I (30423) modbus: add: 0, length: 10 +I (30423) modbus: Read Holding Registers +I (30533) modbus tcp: ModBusSlave_recv() +I (30533) modbus: ModbusSlaveProcess()--------------------------- +I (30533) modbus: check id... +I (30533) modbus: ok +I (30533) modbus: add: 0, length: 10 +I (30533) modbus: Read Holding Registers +I (30683) modbus tcp: ModBusSlave_recv() +I (30683) modbus: ModbusSlaveProcess()--------------------------- +I (30683) modbus: check id... +I (30683) modbus: ok +I (30683) modbus: add: 0, length: 10 +I (30693) modbus: Read Holding Registers +I (30743) modbus tcp: ModBusSlave_recv() +I (30743) modbus: ModbusSlaveProcess()--------------------------- +I (30743) modbus: check id... +I (30743) modbus: ok +I (30743) modbus: add: 0, length: 10 +I (30743) modbus: Read Holding Registers +I (30893) modbus tcp: ModBusSlave_recv() +I (30893) modbus: ModbusSlaveProcess()--------------------------- +I (30893) modbus: check id... +I (30893) modbus: ok +I (30893) modbus: add: 0, length: 10 +I (30893) modbus: Read Holding Registers +I (30973) modbus tcp: ModBusSlave_recv() +I (30973) modbus: ModbusSlaveProcess()--------------------------- +I (30973) modbus: check id... +I (30973) modbus: ok +I (30973) modbus: add: 0, length: 10 +I (30973) modbus: Read Holding Registers +I (31103) modbus tcp: ModBusSlave_recv() +I (31103) modbus: ModbusSlaveProcess()--------------------------- +I (31103) modbus: check id... +I (31103) modbus: ok +I (31103) modbus: add: 0, length: 10 +I (31103) modbus: Read Holding Registers +I (31183) modbus tcp: ModBusSlave_recv() +I (31183) modbus: ModbusSlaveProcess()--------------------------- +I (31183) modbus: check id... +I (31183) modbus: ok +I (31183) modbus: add: 0, length: 10 +I (31183) modbus: Read Holding Registers +I (31303) modbus tcp: ModBusSlave_recv() +I (31303) modbus: ModbusSlaveProcess()--------------------------- +I (31303) modbus: check id... +I (31303) modbus: ok +I (31303) modbus: add: 0, length: 10 +I (31303) modbus: Read Holding Registers +I (31403) modbus tcp: ModBusSlave_recv() +I (31403) modbus: ModbusSlaveProcess()--------------------------- +I (31403) modbus: check id... +I (31403) modbus: ok +I (31403) modbus: add: 0, length: 10 +I (31403) modbus: Read Holding Registers +I (31613) modbus tcp: ModBusSlave_recv() +I (31613) modbus: ModbusSlaveProcess()--------------------------- +I (31613) modbus: check id... +I (31613) modbus: ok +I (31613) modbus: add: 0, length: 10 +I (31613) modbus: Read Holding Registers +I (31643) modbus tcp: ModBusSlave_recv() +I (31643) modbus: ModbusSlaveProcess()--------------------------- +I (31643) modbus: check id... +I (31643) modbus: ok +I (31643) modbus: add: 0, length: 10 +I (31643) modbus: Read Holding Registers +I (31733) modbus tcp: ModBusSlave_recv() +I (31733) modbus: ModbusSlaveProcess()--------------------------- +I (31733) modbus: check id... +I (31733) modbus: ok +I (31733) modbus: add: 0, length: 10 +I (31733) modbus: Read Holding Registers +I (31923) modbus tcp: ModBusSlave_recv() +I (31923) modbus: ModbusSlaveProcess()--------------------------- +I (31923) modbus: check id... +I (31923) modbus: ok +I (31923) modbus: add: 0, length: 10 +I (31923) modbus: Read Holding Registers +I (31963) modbus tcp: ModBusSlave_recv() +I (31963) modbus: ModbusSlaveProcess()--------------------------- +I (31963) modbus: check id... +I (31963) modbus: ok +I (31963) modbus: add: 0, length: 10 +I (31963) modbus: Read Holding Registers +I (32123) modbus tcp: ModBusSlave_recv() +I (32123) modbus: ModbusSlaveProcess()--------------------------- +I (32123) modbus: check id... +I (32123) modbus: ok +I (32123) modbus: add: 0, length: 10 +I (32123) modbus: Read Holding Registers +I (32173) modbus tcp: ModBusSlave_recv() +I (32173) modbus: ModbusSlaveProcess()--------------------------- +I (32173) modbus: check id... +I (32173) modbus: ok +I (32173) modbus: add: 0, length: 10 +I (32173) modbus: Read Holding Registers +I (32283) modbus tcp: ModBusSlave_recv() +I (32283) modbus: ModbusSlaveProcess()--------------------------- +I (32283) modbus: check id... +I (32283) modbus: ok +I (32283) modbus: add: 0, length: 10 +I (32283) modbus: Read Holding Registers +I (32433) modbus tcp: ModBusSlave_recv() +I (32433) modbus: ModbusSlaveProcess()--------------------------- +I (32433) modbus: check id... +I (32433) modbus: ok +I (32433) modbus: add: 0, length: 10 +I (32433) modbus: Read Holding Registers +I (32513) modbus tcp: ModBusSlave_recv() +I (32513) modbus: ModbusSlaveProcess()--------------------------- +I (32513) modbus: check id... +I (32513) modbus: ok +I (32513) modbus: add: 0, length: 10 +I (32513) modbus: Read Holding Registers +I (32603) modbus tcp: ModBusSlave_recv() +I (32603) modbus: ModbusSlaveProcess()--------------------------- +I (32603) modbus: check id... +I (32603) modbus: ok +I (32603) modbus: add: 0, length: 10 +I (32603) modbus: Read Holding Registers +I (32733) modbus tcp: ModBusSlave_recv() +I (32733) modbus: ModbusSlaveProcess()--------------------------- +I (32733) modbus: check id... +I (32733) modbus: ok +I (32733) modbus: add: 0, length: 10 +I (32733) modbus: Read Holding Registers +I (32943) modbus tcp: ModBusSlave_recv() +I (32943) modbus: ModbusSlaveProcess()--------------------------- +I (32943) modbus: check id... +I (32943) modbus: ok +I (32943) modbus: add: 0, length: 10 +I (32943) modbus: Read Holding Registers +I (32963) modbus tcp: ModBusSlave_recv() +I (32963) modbus: ModbusSlaveProcess()--------------------------- +I (32963) modbus: check id... +I (32963) modbus: ok +I (32963) modbus: add: 0, length: 10 +I (32963) modbus: Read Holding Registers +I (33143) modbus tcp: ModBusSlave_recv() +I (33143) modbus: ModbusSlaveProcess()--------------------------- +I (33143) modbus: check id... +I (33143) modbus: ok +I (33143) modbus: add: 0, length: 10 +I (33143) modbus: Read Holding Registers +I (33203) modbus tcp: ModBusSlave_recv() +I (33203) modbus: ModbusSlaveProcess()--------------------------- +I (33203) modbus: check id... +I (33203) modbus: ok +I (33203) modbus: add: 0, length: 10 +I (33203) modbus: Read Holding Registers +I (33353) modbus tcp: ModBusSlave_recv() +I (33353) modbus: ModbusSlaveProcess()--------------------------- +I (33353) modbus: check id... +I (33353) modbus: ok +I (33353) modbus: add: 0, length: 10 +I (33353) modbus: Read Holding Registers +I (33413) modbus tcp: ModBusSlave_recv() +I (33413) modbus: ModbusSlaveProcess()--------------------------- +I (33413) modbus: check id... +I (33413) modbus: ok +I (33413) modbus: add: 0, length: 10 +I (33413) modbus: Read Holding Registers +I (33523) modbus tcp: ModBusSlave_recv() +I (33523) modbus: ModbusSlaveProcess()--------------------------- +I (33523) modbus: check id... +I (33523) modbus: ok +I (33523) modbus: add: 0, length: 10 +I (33523) modbus: Read Holding Registers +I (33653) modbus tcp: ModBusSlave_recv() +I (33653) modbus: ModbusSlaveProcess()--------------------------- +I (33653) modbus: check id... +I (33653) modbus: ok +I (33653) modbus: add: 0, length: 10 +I (33653) modbus: Read Holding Registers +I (33743) modbus tcp: ModBusSlave_recv() +I (33743) modbus: ModbusSlaveProcess()--------------------------- +I (33743) modbus: check id... +I (33743) modbus: ok +I (33743) modbus: add: 0, length: 10 +I (33743) modbus: Read Holding Registers +I (33863) modbus tcp: ModBusSlave_recv() +I (33863) modbus: ModbusSlaveProcess()--------------------------- +I (33863) modbus: check id... +I (33863) modbus: ok +I (33863) modbus: add: 0, length: 10 +I (33863) modbus: Read Holding Registers +I (33963) modbus tcp: ModBusSlave_recv() +I (33963) modbus: ModbusSlaveProcess()--------------------------- +I (33963) modbus: check id... +I (33963) modbus: ok +I (33963) modbus: add: 0, length: 10 +I (33963) modbus: Read Holding Registers +I (34173) modbus tcp: ModBusSlave_recv() +I (34173) modbus: ModbusSlaveProcess()--------------------------- +I (34173) modbus: check id... +I (34173) modbus: ok +I (34173) modbus: add: 0, length: 10 +I (34173) modbus: Read Holding Registers +I (34203) modbus tcp: ModBusSlave_recv() +I (34203) modbus: ModbusSlaveProcess()--------------------------- +I (34203) modbus: check id... +I (34203) modbus: ok +I (34203) modbus: add: 0, length: 10 +I (34203) modbus: Read Holding Registers +I (34373) modbus tcp: ModBusSlave_recv() +I (34373) modbus: ModbusSlaveProcess()--------------------------- +I (34373) modbus: check id... +I (34373) modbus: ok +I (34373) modbus: add: 0, length: 10 +I (34373) modbus: Read Holding Registers +I (34423) modbus tcp: ModBusSlave_recv() +I (34423) modbus: ModbusSlaveProcess()--------------------------- +I (34423) modbus: check id... +I (34423) modbus: ok +I (34423) modbus: add: 0, length: 10 +I (34423) modbus: Read Holding Registers +I (34583) modbus tcp: ModBusSlave_recv() +I (34583) modbus: ModbusSlaveProcess()--------------------------- +I (34583) modbus: check id... +I (34583) modbus: ok +I (34583) modbus: add: 0, length: 10 +I (34583) modbus: Read Holding Registers +I (34683) modbus tcp: ModBusSlave_recv() +I (34683) modbus: ModbusSlaveProcess()--------------------------- +I (34683) modbus: check id... +I (34683) modbus: ok +I (34683) modbus: add: 0, length: 10 +I (34683) modbus: Read Holding Registers +I (34753) modbus tcp: ModBusSlave_recv() +I (34753) modbus: ModbusSlaveProcess()--------------------------- +I (34753) modbus: check id... +I (34753) modbus: ok +I (34753) modbus: add: 0, length: 10 +I (34753) modbus: Read Holding Registers +I (34853) modbus tcp: ModBusSlave_recv() +I (34863) modbus: ModbusSlaveProcess()--------------------------- +I (34863) modbus: check id... +I (34863) modbus: ok +I (34863) modbus: add: 0, length: 10 +I (34863) modbus: Read Holding Registers +I (34973) modbus tcp: ModBusSlave_recv() +I (34973) modbus: ModbusSlaveProcess()--------------------------- +I (34973) modbus: check id... +I (34973) modbus: ok +I (34973) modbus: add: 0, length: 10 +I (34973) modbus: Read Holding Registers +I (35093) modbus tcp: ModBusSlave_recv() +I (35093) modbus: ModbusSlaveProcess()--------------------------- +I (35093) modbus: check id... +I (35093) modbus: ok +I (35093) modbus: add: 0, length: 10 +I (35093) modbus: Read Holding Registers +I (35293) modbus tcp: ModBusSlave_recv() +I (35293) modbus: ModbusSlaveProcess()--------------------------- +I (35293) modbus: check id... +I (35293) modbus: ok +I (35293) modbus: add: 0, length: 10 +I (35293) modbus: Read Holding Registers +I (35313) modbus tcp: ModBusSlave_recv() +I (35313) modbus: ModbusSlaveProcess()--------------------------- +I (35313) modbus: check id... +I (35313) modbus: ok +I (35313) modbus: add: 0, length: 10 +I (35313) modbus: Read Holding Registers +I (35423) modbus tcp: ModBusSlave_recv() +I (35423) modbus: ModbusSlaveProcess()--------------------------- +I (35423) modbus: check id... +I (35423) modbus: ok +I (35423) modbus: add: 0, length: 10 +I (35423) modbus: Read Holding Registers +I (35603) modbus tcp: ModBusSlave_recv() +I (35603) modbus: ModbusSlaveProcess()--------------------------- +I (35603) modbus: check id... +I (35603) modbus: ok +I (35603) modbus: add: 0, length: 10 +I (35603) modbus: Read Holding Registers +I (35633) modbus tcp: ModBusSlave_recv() +I (35633) modbus: ModbusSlaveProcess()--------------------------- +I (35633) modbus: check id... +I (35633) modbus: ok +I (35633) modbus: add: 0, length: 10 +I (35633) modbus: Read Holding Registers +I (35813) modbus tcp: ModBusSlave_recv() +I (35813) modbus: ModbusSlaveProcess()--------------------------- +I (35813) modbus: check id... +I (35813) modbus: ok +I (35813) modbus: add: 0, length: 10 +I (35813) modbus: Read Holding Registers +I (35863) modbus tcp: ModBusSlave_recv() +I (35863) modbus: ModbusSlaveProcess()--------------------------- +I (35863) modbus: check id... +I (35863) modbus: ok +I (35863) modbus: add: 0, length: 10 +I (35863) modbus: Read Holding Registers +I (36013) modbus tcp: ModBusSlave_recv() +I (36013) modbus: ModbusSlaveProcess()--------------------------- +I (36013) modbus: check id... +I (36013) modbus: ok +I (36013) modbus: add: 0, length: 10 +I (36013) modbus: Read Holding Registers +I (36113) modbus tcp: ModBusSlave_recv() +I (36113) modbus: ModbusSlaveProcess()--------------------------- +I (36113) modbus: check id... +I (36113) modbus: ok +I (36113) modbus: add: 0, length: 10 +I (36113) modbus: Read Holding Registers +I (36223) modbus tcp: ModBusSlave_recv() +I (36223) modbus: ModbusSlaveProcess()--------------------------- +I (36223) modbus: check id... +I (36223) modbus: ok +I (36223) modbus: add: 0, length: 10 +I (36223) modbus: Read Holding Registers +I (36303) modbus tcp: ModBusSlave_recv() +I (36303) modbus: ModbusSlaveProcess()--------------------------- +I (36303) modbus: check id... +I (36303) modbus: ok +I (36303) modbus: add: 0, length: 10 +I (36303) modbus: Read Holding Registers +I (36423) modbus tcp: ModBusSlave_recv() +I (36423) modbus: ModbusSlaveProcess()--------------------------- +I (36423) modbus: check id... +I (36423) modbus: ok +I (36423) modbus: add: 0, length: 10 +I (36423) modbus: Read Holding Registers +I (36633) modbus tcp: ModBusSlave_recv() +I (36633) modbus: ModbusSlaveProcess()--------------------------- +I (36633) modbus: check id... +I (36633) modbus: ok +I (36633) modbus: add: 0, length: 10 +I (36633) modbus: Read Holding Registers +I (36673) modbus tcp: ModBusSlave_recv() +I (36673) modbus: ModbusSlaveProcess()--------------------------- +I (36673) modbus: check id... +I (36673) modbus: ok +I (36673) modbus: add: 0, length: 10 +I (36673) modbus: Read Holding Registers +I (36833) modbus tcp: ModBusSlave_recv() +I (36833) modbus: ModbusSlaveProcess()--------------------------- +I (36833) modbus: check id... +I (36833) modbus: ok +I (36833) modbus: add: 0, length: 10 +I (36833) modbus: Read Holding Registers +I (36903) modbus tcp: ModBusSlave_recv() +I (36903) modbus: ModbusSlaveProcess()--------------------------- +I (36903) modbus: check id... +I (36903) modbus: ok +I (36903) modbus: add: 0, length: 10 +I (36903) modbus: Read Holding Registers +I (37033) modbus tcp: ModBusSlave_recv() +I (37033) modbus: ModbusSlaveProcess()--------------------------- +I (37033) modbus: check id... +I (37033) modbus: ok +I (37033) modbus: add: 0, length: 10 +I (37033) modbus: Read Holding Registers +I (37113) modbus tcp: ModBusSlave_recv() +I (37123) modbus: ModbusSlaveProcess()--------------------------- +I (37123) modbus: check id... +I (37123) modbus: ok +I (37123) modbus: add: 0, length: 10 +I (37123) modbus: Read Holding Registers +I (37213) modbus tcp: ModBusSlave_recv() +I (37213) modbus: ModbusSlaveProcess()--------------------------- +I (37213) modbus: check id... +I (37213) modbus: ok +I (37213) modbus: add: 0, length: 10 +I (37213) modbus: Read Holding Registers +I (37343) modbus tcp: ModBusSlave_recv() +I (37343) modbus: ModbusSlaveProcess()--------------------------- +I (37343) modbus: check id... +I (37343) modbus: ok +I (37343) modbus: add: 0, length: 10 +I (37343) modbus: Read Holding Registers +I (37433) modbus tcp: ModBusSlave_recv() +I (37433) modbus: ModbusSlaveProcess()--------------------------- +I (37433) modbus: check id... +I (37433) modbus: ok +I (37433) modbus: add: 0, length: 10 +I (37433) modbus: Read Holding Registers +I (37653) modbus tcp: ModBusSlave_recv() +I (37653) modbus: ModbusSlaveProcess()--------------------------- +I (37653) modbus: check id... +I (37653) modbus: ok +I (37653) modbus: add: 0, length: 10 +I (37653) modbus: Read Holding Registers +I (37673) modbus tcp: ModBusSlave_recv() +I (37673) modbus: ModbusSlaveProcess()--------------------------- +I (37673) modbus: check id... +I (37673) modbus: ok +I (37673) modbus: add: 0, length: 10 +I (37673) modbus: Read Holding Registers +I (37853) modbus tcp: ModBusSlave_recv() +I (37863) modbus: ModbusSlaveProcess()--------------------------- +I (37863) modbus: check id... +I (37863) modbus: ok +I (37863) modbus: add: 0, length: 10 +I (37863) modbus: Read Holding Registers +I (37903) modbus tcp: ModBusSlave_recv() +I (37903) modbus: ModbusSlaveProcess()--------------------------- +I (37903) modbus: check id... +I (37903) modbus: ok +I (37903) modbus: add: 0, length: 10 +I (37903) modbus: Read Holding Registers +I (38063) modbus tcp: ModBusSlave_recv() +I (38063) modbus: ModbusSlaveProcess()--------------------------- +I (38063) modbus: check id... +I (38063) modbus: ok +I (38063) modbus: add: 0, length: 10 +I (38063) modbus: Read Holding Registers +I (38113) modbus tcp: ModBusSlave_recv() +I (38113) modbus: ModbusSlaveProcess()--------------------------- +I (38113) modbus: check id... +I (38113) modbus: ok +I (38113) modbus: add: 0, length: 10 +I (38113) modbus: Read Holding Registers +I (38223) modbus tcp: ModBusSlave_recv() +I (38223) modbus: ModbusSlaveProcess()--------------------------- +I (38223) modbus: check id... +I (38223) modbus: ok +I (38223) modbus: add: 0, length: 10 +I (38223) modbus: Read Holding Registers +I (38323) modbus tcp: ModBusSlave_recv() +I (38323) modbus: ModbusSlaveProcess()--------------------------- +I (38323) modbus: check id... +I (38323) modbus: ok +I (38323) modbus: add: 0, length: 10 +I (38323) modbus: Read Holding Registers +I (38433) modbus tcp: ModBusSlave_recv() +I (38433) modbus: ModbusSlaveProcess()--------------------------- +I (38433) modbus: check id... +I (38433) modbus: ok +I (38433) modbus: add: 0, length: 10 +I (38433) modbus: Read Holding Registers +I (38543) modbus tcp: ModBusSlave_recv() +I (38543) modbus: ModbusSlaveProcess()--------------------------- +I (38543) modbus: check id... +I (38543) modbus: ok +I (38543) modbus: add: 0, length: 10 +I (38543) modbus: Read Holding Registers +I (38673) modbus tcp: ModBusSlave_recv() +I (38673) modbus: ModbusSlaveProcess()--------------------------- +I (38673) modbus: check id... +I (38673) modbus: ok +I (38673) modbus: add: 0, length: 10 +I (38673) modbus: Read Holding Registers +I (38783) modbus tcp: ModBusSlave_recv() +I (38783) modbus: ModbusSlaveProcess()--------------------------- +I (38783) modbus: check id... +I (38783) modbus: ok +I (38783) modbus: add: 0, length: 10 +I (38783) modbus: Read Holding Registers +I (38983) modbus tcp: ModBusSlave_recv() +I (38983) modbus: ModbusSlaveProcess()--------------------------- +I (38983) modbus: check id... +I (38983) modbus: ok +I (38983) modbus: add: 0, length: 10 +I (38983) modbus: Read Holding Registers +I (39003) modbus tcp: ModBusSlave_recv() +I (39003) modbus: ModbusSlaveProcess()--------------------------- +I (39003) modbus: check id... +I (39003) modbus: ok +I (39003) modbus: add: 0, length: 10 +I (39003) modbus: Read Holding Registers +I (39193) modbus tcp: ModBusSlave_recv() +I (39193) modbus: ModbusSlaveProcess()--------------------------- +I (39193) modbus: check id... +I (39193) modbus: ok +I (39193) modbus: add: 0, length: 10 +I (39193) modbus: Read Holding Registers +I (39223) modbus tcp: ModBusSlave_recv() +I (39223) modbus: ModbusSlaveProcess()--------------------------- +I (39223) modbus: check id... +I (39223) modbus: ok +I (39223) modbus: add: 0, length: 10 +I (39223) modbus: Read Holding Registers +I (39333) modbus tcp: ModBusSlave_recv() +I (39333) modbus: ModbusSlaveProcess()--------------------------- +I (39333) modbus: check id... +I (39333) modbus: ok +I (39333) modbus: add: 0, length: 10 +I (39333) modbus: Read Holding Registers +I (39493) modbus tcp: ModBusSlave_recv() +I (39493) modbus: ModbusSlaveProcess()--------------------------- +I (39493) modbus: check id... +I (39493) modbus: ok +I (39493) modbus: add: 0, length: 10 +I (39493) modbus: Read Holding Registers +I (39543) modbus tcp: ModBusSlave_recv() +I (39543) modbus: ModbusSlaveProcess()--------------------------- +I (39543) modbus: check id... +I (39543) modbus: ok +I (39543) modbus: add: 0, length: 10 +I (39543) modbus: Read Holding Registers +I (39693) modbus tcp: ModBusSlave_recv() +I (39693) modbus: ModbusSlaveProcess()--------------------------- +I (39693) modbus: check id... +I (39693) modbus: ok +I (39703) modbus: add: 0, length: 10 +I (39703) modbus: Read Holding Registers +I (39773) modbus tcp: ModBusSlave_recv() +I (39773) modbus: ModbusSlaveProcess()--------------------------- +I (39773) modbus: check id... +I (39773) modbus: ok +I (39773) modbus: add: 0, length: 10 +I (39773) modbus: Read Holding Registers +I (39873) modbus tcp: ModBusSlave_recv() +I (39873) modbus: ModbusSlaveProcess()--------------------------- +I (39873) modbus: check id... +I (39873) modbus: ok +I (39873) modbus: add: 0, length: 10 +I (39873) modbus: Read Holding Registers +I (40003) modbus tcp: ModBusSlave_recv() +I (40003) modbus: ModbusSlaveProcess()--------------------------- +I (40003) modbus: check id... +I (40003) modbus: ok +I (40013) modbus: add: 0, length: 10 +I (40013) modbus: Read Holding Registers +I (40093) modbus tcp: ModBusSlave_recv() +I (40093) modbus: ModbusSlaveProcess()--------------------------- +I (40093) modbus: check id... +I (40093) modbus: ok +I (40093) modbus: add: 0, length: 10 +I (40093) modbus: Read Holding Registers +I (40213) modbus tcp: ModBusSlave_recv() +I (40213) modbus: ModbusSlaveProcess()--------------------------- +I (40213) modbus: check id... +I (40213) modbus: ok +I (40213) modbus: add: 0, length: 10 +I (40213) modbus: Read Holding Registers +I (40313) modbus tcp: ModBusSlave_recv() +I (40313) modbus: ModbusSlaveProcess()--------------------------- +I (40313) modbus: check id... +I (40313) modbus: ok +I (40313) modbus: add: 0, length: 10 +I (40313) modbus: Read Holding Registers +I (40523) modbus tcp: ModBusSlave_recv() +I (40523) modbus: ModbusSlaveProcess()--------------------------- +I (40523) modbus: check id... +I (40523) modbus: ok +I (40523) modbus: add: 0, length: 10 +I (40523) modbus: Read Holding Registers +I (40533) modbus tcp: ModBusSlave_recv() +I (40533) modbus: ModbusSlaveProcess()--------------------------- +I (40533) modbus: check id... +I (40533) modbus: ok +I (40533) modbus: add: 0, length: 10 +I (40533) modbus: Read Holding Registers +I (40643) modbus tcp: ModBusSlave_recv() +I (40643) modbus: ModbusSlaveProcess()--------------------------- +I (40643) modbus: check id... +I (40643) modbus: ok +I (40643) modbus: add: 0, length: 10 +I (40643) modbus: Read Holding Registers +I (40823) modbus tcp: ModBusSlave_recv() +I (40823) modbus: ModbusSlaveProcess()--------------------------- +I (40823) modbus: check id... +I (40823) modbus: ok +I (40823) modbus: add: 0, length: 10 +I (40823) modbus: Read Holding Registers +I (40863) modbus tcp: ModBusSlave_recv() +I (40863) modbus: ModbusSlaveProcess()--------------------------- +I (40863) modbus: check id... +I (40863) modbus: ok +I (40873) modbus: add: 0, length: 10 +I (40873) modbus: Read Holding Registers +I (40973) modbus tcp: ModBusSlave_recv() +I (40973) modbus: ModbusSlaveProcess()--------------------------- +I (40973) modbus: check id... +I (40973) modbus: ok +I (40973) modbus: add: 0, length: 10 +I (40973) modbus: Read Holding Registers +I (41133) modbus tcp: ModBusSlave_recv() +I (41133) modbus: ModbusSlaveProcess()--------------------------- +I (41133) modbus: check id... +I (41133) modbus: ok +I (41133) modbus: add: 0, length: 10 +I (41133) modbus: Read Holding Registers +I (41183) modbus tcp: ModBusSlave_recv() +I (41183) modbus: ModbusSlaveProcess()--------------------------- +I (41183) modbus: check id... +I (41183) modbus: ok +I (41183) modbus: add: 0, length: 10 +I (41183) modbus: Read Holding Registers +I (41293) modbus tcp: ModBusSlave_recv() +I (41293) modbus: ModbusSlaveProcess()--------------------------- +I (41293) modbus: check id... +I (41293) modbus: ok +I (41293) modbus: add: 0, length: 10 +I (41293) modbus: Read Holding Registers +I (41443) modbus tcp: ModBusSlave_recv() +I (41443) modbus: ModbusSlaveProcess()--------------------------- +I (41443) modbus: check id... +I (41443) modbus: ok +I (41443) modbus: add: 0, length: 10 +I (41443) modbus: Read Holding Registers +I (41513) modbus tcp: ModBusSlave_recv() +I (41513) modbus: ModbusSlaveProcess()--------------------------- +I (41513) modbus: check id... +I (41513) modbus: ok +I (41513) modbus: add: 0, length: 10 +I (41513) modbus: Read Holding Registers +I (41643) modbus tcp: ModBusSlave_recv() +I (41643) modbus: ModbusSlaveProcess()--------------------------- +I (41643) modbus: check id... +I (41643) modbus: ok +I (41643) modbus: add: 0, length: 10 +I (41643) modbus: Read Holding Registers +I (41733) modbus tcp: ModBusSlave_recv() +I (41733) modbus: ModbusSlaveProcess()--------------------------- +I (41733) modbus: check id... +I (41733) modbus: ok +I (41733) modbus: add: 0, length: 10 +I (41733) modbus: Read Holding Registers +I (41853) modbus tcp: ModBusSlave_recv() +I (41853) modbus: ModbusSlaveProcess()--------------------------- +I (41853) modbus: check id... +I (41853) modbus: ok +I (41853) modbus: add: 0, length: 10 +I (41853) modbus: Read Holding Registers +I (42053) modbus tcp: ModBusSlave_recv() +I (42053) modbus: ModbusSlaveProcess()--------------------------- +I (42053) modbus: check id... +I (42053) modbus: ok +I (42053) modbus: add: 0, length: 10 +I (42053) modbus: Read Holding Registers +I (42083) modbus tcp: ModBusSlave_recv() +I (42083) modbus: ModbusSlaveProcess()--------------------------- +I (42083) modbus: check id... +I (42083) modbus: ok +I (42083) modbus: add: 0, length: 10 +I (42083) modbus: Read Holding Registers +I (42193) modbus tcp: ModBusSlave_recv() +I (42193) modbus: ModbusSlaveProcess()--------------------------- +I (42193) modbus: check id... +I (42193) modbus: ok +I (42193) modbus: add: 0, length: 10 +I (42193) modbus: Read Holding Registers +I (42363) modbus tcp: ModBusSlave_recv() +I (42363) modbus: ModbusSlaveProcess()--------------------------- +I (42363) modbus: check id... +I (42363) modbus: ok +I (42363) modbus: add: 0, length: 10 +I (42363) modbus: Read Holding Registers +I (42403) modbus tcp: ModBusSlave_recv() +I (42403) modbus: ModbusSlaveProcess()--------------------------- +I (42403) modbus: check id... +I (42403) modbus: ok +I (42403) modbus: add: 0, length: 10 +I (42403) modbus: Read Holding Registers +I (42573) modbus tcp: ModBusSlave_recv() +I (42573) modbus: ModbusSlaveProcess()--------------------------- +I (42573) modbus: check id... +I (42573) modbus: ok +I (42573) modbus: add: 0, length: 10 +I (42573) modbus: Read Holding Registers +I (42623) modbus tcp: ModBusSlave_recv() +I (42623) modbus: ModbusSlaveProcess()--------------------------- +I (42623) modbus: check id... +I (42623) modbus: ok +I (42623) modbus: add: 0, length: 10 +I (42623) modbus: Read Holding Registers +I (42773) modbus tcp: ModBusSlave_recv() +I (42773) modbus: ModbusSlaveProcess()--------------------------- +I (42773) modbus: check id... +I (42773) modbus: ok +I (42773) modbus: add: 0, length: 10 +I (42773) modbus: Read Holding Registers +I (42873) modbus tcp: ModBusSlave_recv() +I (42873) modbus: ModbusSlaveProcess()--------------------------- +I (42873) modbus: check id... +I (42873) modbus: ok +I (42873) modbus: add: 0, length: 10 +I (42873) modbus: Read Holding Registers +I (42973) modbus tcp: ModBusSlave_recv() +I (42973) modbus: ModbusSlaveProcess()--------------------------- +I (42973) modbus: check id... +I (42973) modbus: ok +I (42973) modbus: add: 0, length: 10 +I (42973) modbus: Read Holding Registers +I (43083) modbus tcp: ModBusSlave_recv() +I (43083) modbus: ModbusSlaveProcess()--------------------------- +I (43083) modbus: check id... +I (43083) modbus: ok +I (43083) modbus: add: 0, length: 10 +I (43083) modbus: Read Holding Registers +I (43183) modbus tcp: ModBusSlave_recv() +I (43183) modbus: ModbusSlaveProcess()--------------------------- +I (43183) modbus: check id... +I (43183) modbus: ok +I (43183) modbus: add: 0, length: 10 +I (43183) modbus: Read Holding Registers +I (43283) modbus tcp: ModBusSlave_recv() +I (43283) modbus: ModbusSlaveProcess()--------------------------- +I (43283) modbus: check id... +I (43283) modbus: ok +I (43283) modbus: add: 0, length: 10 +I (43283) modbus: Read Holding Registers +I (43493) modbus tcp: ModBusSlave_recv() +I (43493) modbus: ModbusSlaveProcess()--------------------------- +I (43493) modbus: check id... +I (43493) modbus: ok +I (43493) modbus: add: 0, length: 10 +I (43493) modbus: Read Holding Registers +I (43503) modbus tcp: ModBusSlave_recv() +I (43503) modbus: ModbusSlaveProcess()--------------------------- +I (43503) modbus: check id... +I (43503) modbus: ok +I (43503) modbus: add: 0, length: 10 +I (43503) modbus: Read Holding Registers +I (43693) modbus tcp: ModBusSlave_recv() +I (43693) modbus: ModbusSlaveProcess()--------------------------- +I (43693) modbus: check id... +I (43693) modbus: ok +I (43693) modbus: add: 0, length: 10 +I (43693) modbus: Read Holding Registers +I (43733) modbus tcp: ModBusSlave_recv() +I (43733) modbus: ModbusSlaveProcess()--------------------------- +I (43733) modbus: check id... +I (43733) modbus: ok +I (43733) modbus: add: 0, length: 10 +I (43733) modbus: Read Holding Registers +I (43903) modbus tcp: ModBusSlave_recv() +I (43903) modbus: ModbusSlaveProcess()--------------------------- +I (43903) modbus: check id... +I (43903) modbus: ok +I (43903) modbus: add: 0, length: 10 +I (43903) modbus: Read Holding Registers +I (43953) modbus tcp: ModBusSlave_recv() +I (43953) modbus: ModbusSlaveProcess()--------------------------- +I (43953) modbus: check id... +I (43953) modbus: ok +I (43953) modbus: add: 0, length: 10 +I (43953) modbus: Read Holding Registers +I (44103) modbus tcp: ModBusSlave_recv() +I (44103) modbus: ModbusSlaveProcess()--------------------------- +I (44103) modbus: check id... +I (44103) modbus: ok +I (44103) modbus: add: 0, length: 10 +I (44103) modbus: Read Holding Registers +I (44203) modbus tcp: ModBusSlave_recv() +I (44203) modbus: ModbusSlaveProcess()--------------------------- +I (44203) modbus: check id... +I (44203) modbus: ok +I (44203) modbus: add: 0, length: 10 +I (44203) modbus: Read Holding Registers +I (44303) modbus tcp: ModBusSlave_recv() +I (44313) modbus: ModbusSlaveProcess()--------------------------- +I (44313) modbus: check id... +I (44313) modbus: ok +I (44313) modbus: add: 0, length: 10 +I (44313) modbus: Read Holding Registers +I (44393) modbus tcp: ModBusSlave_recv() +I (44393) modbus: ModbusSlaveProcess()--------------------------- +I (44393) modbus: check id... +I (44393) modbus: ok +I (44393) modbus: add: 0, length: 10 +I (44393) modbus: Read Holding Registers +I (44513) modbus tcp: ModBusSlave_recv() +I (44513) modbus: ModbusSlaveProcess()--------------------------- +I (44513) modbus: check id... +I (44513) modbus: ok +I (44513) modbus: add: 0, length: 10 +I (44513) modbus: Read Holding Registers +I (44613) modbus tcp: ModBusSlave_recv() +I (44613) modbus: ModbusSlaveProcess()--------------------------- +I (44613) modbus: check id... +I (44613) modbus: ok +I (44613) modbus: add: 0, length: 10 +I (44613) modbus: Read Holding Registers +I (44823) modbus tcp: ModBusSlave_recv() +I (44823) modbus: ModbusSlaveProcess()--------------------------- +I (44823) modbus: check id... +I (44823) modbus: ok +I (44823) modbus: add: 0, length: 10 +I (44823) modbus: Read Holding Registers +I (44853) modbus tcp: ModBusSlave_recv() +I (44853) modbus: ModbusSlaveProcess()--------------------------- +I (44853) modbus: check id... +I (44853) modbus: ok +I (44853) modbus: add: 0, length: 10 +I (44853) modbus: Read Holding Registers +I (44943) modbus tcp: ModBusSlave_recv() +I (44943) modbus: ModbusSlaveProcess()--------------------------- +I (44943) modbus: check id... +I (44943) modbus: ok +I (44943) modbus: add: 0, length: 10 +I (44943) modbus: Read Holding Registers +I (45123) modbus tcp: ModBusSlave_recv() +I (45123) modbus: ModbusSlaveProcess()--------------------------- +I (45123) modbus: check id... +I (45123) modbus: ok +I (45123) modbus: add: 0, length: 10 +I (45123) modbus: Read Holding Registers +I (45163) modbus tcp: ModBusSlave_recv() +I (45163) modbus: ModbusSlaveProcess()--------------------------- +I (45163) modbus: check id... +I (45173) modbus: ok +I (45173) modbus: add: 0, length: 10 +I (45173) modbus: Read Holding Registers +I (45333) modbus tcp: ModBusSlave_recv() +I (45333) modbus: ModbusSlaveProcess()--------------------------- +I (45333) modbus: check id... +I (45333) modbus: ok +I (45333) modbus: add: 0, length: 10 +I (45333) modbus: Read Holding Registers +I (45433) modbus tcp: ModBusSlave_recv() +I (45433) modbus: ModbusSlaveProcess()--------------------------- +I (45433) modbus: check id... +I (45433) modbus: ok +I (45433) modbus: add: 0, length: 10 +I (45433) modbus: Read Holding Registers +I (45503) modbus tcp: ModBusSlave_recv() +I (45503) modbus: ModbusSlaveProcess()--------------------------- +I (45503) modbus: check id... +I (45503) modbus: ok +I (45503) modbus: add: 0, length: 10 +I (45503) modbus: Read Holding Registers +I (45603) modbus tcp: ModBusSlave_recv() +I (45613) modbus: ModbusSlaveProcess()--------------------------- +I (45613) modbus: check id... +I (45613) modbus: ok +I (45613) modbus: add: 0, length: 10 +I (45613) modbus: Read Holding Registers +I (45743) modbus tcp: ModBusSlave_recv() +I (45743) modbus: ModbusSlaveProcess()--------------------------- +I (45743) modbus: check id... +I (45743) modbus: ok +I (45743) modbus: add: 0, length: 10 +I (45743) modbus: Read Holding Registers +I (45853) modbus tcp: ModBusSlave_recv() +I (45853) modbus: ModbusSlaveProcess()--------------------------- +I (45853) modbus: check id... +I (45853) modbus: ok +I (45853) modbus: add: 0, length: 10 +I (45853) modbus: Read Holding Registers +I (46053) modbus tcp: ModBusSlave_recv() +I (46053) modbus: ModbusSlaveProcess()--------------------------- +I (46053) modbus: check id... +I (46053) modbus: ok +I (46053) modbus: add: 0, length: 10 +I (46053) modbus: Read Holding Registers +I (46083) modbus tcp: ModBusSlave_recv() +I (46083) modbus: ModbusSlaveProcess()--------------------------- +I (46083) modbus: check id... +I (46083) modbus: ok +I (46083) modbus: add: 0, length: 10 +I (46083) modbus: Read Holding Registers +I (46253) modbus tcp: ModBusSlave_recv() +I (46253) modbus: ModbusSlaveProcess()--------------------------- +I (46253) modbus: check id... +I (46253) modbus: ok +I (46253) modbus: add: 0, length: 10 +I (46253) modbus: Read Holding Registers +I (46283) modbus tcp: ModBusSlave_recv() +I (46283) modbus: ModbusSlaveProcess()--------------------------- +I (46293) modbus: check id... +I (46293) modbus: ok +I (46293) modbus: add: 0, length: 10 +I (46293) modbus: Read Holding Registers +I (46453) modbus tcp: ModBusSlave_recv() +I (46463) modbus: ModbusSlaveProcess()--------------------------- +I (46463) modbus: check id... +I (46463) modbus: ok +I (46463) modbus: add: 0, length: 10 +I (46463) modbus: Read Holding Registers +I (46513) modbus tcp: ModBusSlave_recv() +I (46513) modbus: ModbusSlaveProcess()--------------------------- +I (46513) modbus: check id... +I (46513) modbus: ok +I (46513) modbus: add: 0, length: 10 +I (46513) modbus: Read Holding Registers +I (46663) modbus tcp: ModBusSlave_recv() +I (46663) modbus: ModbusSlaveProcess()--------------------------- +I (46663) modbus: check id... +I (46663) modbus: ok +I (46663) modbus: add: 0, length: 10 +I (46663) modbus: Read Holding Registers +I (46733) modbus tcp: ModBusSlave_recv() +I (46733) modbus: ModbusSlaveProcess()--------------------------- +I (46733) modbus: check id... +I (46733) modbus: ok +I (46733) modbus: add: 0, length: 10 +I (46733) modbus: Read Holding Registers +I (46863) modbus tcp: ModBusSlave_recv() +I (46863) modbus: ModbusSlaveProcess()--------------------------- +I (46873) modbus: check id... +I (46873) modbus: ok +I (46873) modbus: add: 0, length: 10 +I (46873) modbus: Read Holding Registers +I (46953) modbus tcp: ModBusSlave_recv() +I (46953) modbus: ModbusSlaveProcess()--------------------------- +I (46953) modbus: check id... +I (46953) modbus: ok +I (46953) modbus: add: 0, length: 10 +I (46953) modbus: Read Holding Registers +I (47073) modbus tcp: ModBusSlave_recv() +I (47073) modbus: ModbusSlaveProcess()--------------------------- +I (47073) modbus: check id... +I (47073) modbus: ok +I (47073) modbus: add: 0, length: 10 +I (47073) modbus: Read Holding Registers +I (47173) modbus tcp: ModBusSlave_recv() +I (47173) modbus: ModbusSlaveProcess()--------------------------- +I (47173) modbus: check id... +I (47173) modbus: ok +I (47173) modbus: add: 0, length: 10 +I (47173) modbus: Read Holding Registers +I (47383) modbus tcp: ModBusSlave_recv() +I (47383) modbus: ModbusSlaveProcess()--------------------------- +I (47383) modbus: check id... +I (47383) modbus: ok +I (47383) modbus: add: 0, length: 10 +I (47383) modbus: Read Holding Registers +I (47413) modbus tcp: ModBusSlave_recv() +I (47413) modbus: ModbusSlaveProcess()--------------------------- +I (47413) modbus: check id... +I (47413) modbus: ok +I (47413) modbus: add: 0, length: 10 +I (47413) modbus: Read Holding Registers +I (47583) modbus tcp: ModBusSlave_recv() +I (47583) modbus: ModbusSlaveProcess()--------------------------- +I (47583) modbus: check id... +I (47583) modbus: ok +I (47583) modbus: add: 0, length: 10 +I (47583) modbus: Read Holding Registers +I (47613) modbus tcp: ModBusSlave_recv() +I (47613) modbus: ModbusSlaveProcess()--------------------------- +I (47613) modbus: check id... +I (47613) modbus: ok +I (47623) modbus: add: 0, length: 10 +I (47623) modbus: Read Holding Registers +I (47793) modbus tcp: ModBusSlave_recv() +I (47793) modbus: ModbusSlaveProcess()--------------------------- +I (47793) modbus: check id... +I (47793) modbus: ok +I (47793) modbus: add: 0, length: 10 +I (47793) modbus: Read Holding Registers +I (47843) modbus tcp: ModBusSlave_recv() +I (47843) modbus: ModbusSlaveProcess()--------------------------- +I (47843) modbus: check id... +I (47843) modbus: ok +I (47843) modbus: add: 0, length: 10 +I (47843) modbus: Read Holding Registers +I (47993) modbus tcp: ModBusSlave_recv() +I (47993) modbus: ModbusSlaveProcess()--------------------------- +I (47993) modbus: check id... +I (47993) modbus: ok +I (47993) modbus: add: 0, length: 10 +I (47993) modbus: Read Holding Registers +I (48063) modbus tcp: ModBusSlave_recv() +I (48063) modbus: ModbusSlaveProcess()--------------------------- +I (48063) modbus: check id... +I (48063) modbus: ok +I (48063) modbus: add: 0, length: 10 +I (48063) modbus: Read Holding Registers +I (48203) modbus tcp: ModBusSlave_recv() +I (48203) modbus: ModbusSlaveProcess()--------------------------- +I (48203) modbus: check id... +I (48203) modbus: ok +I (48203) modbus: add: 0, length: 10 +I (48203) modbus: Read Holding Registers +I (48283) modbus tcp: ModBusSlave_recv() +I (48283) modbus: ModbusSlaveProcess()--------------------------- +I (48283) modbus: check id... +I (48283) modbus: ok +I (48283) modbus: add: 0, length: 10 +I (48283) modbus: Read Holding Registers +I (48403) modbus tcp: ModBusSlave_recv() +I (48413) modbus: ModbusSlaveProcess()--------------------------- +I (48413) modbus: check id... +I (48413) modbus: ok +I (48413) modbus: add: 0, length: 10 +I (48413) modbus: Read Holding Registers +I (48503) modbus tcp: ModBusSlave_recv() +I (48503) modbus: ModbusSlaveProcess()--------------------------- +I (48503) modbus: check id... +I (48503) modbus: ok +I (48503) modbus: add: 0, length: 10 +I (48503) modbus: Read Holding Registers +I (48613) modbus tcp: ModBusSlave_recv() +I (48613) modbus: ModbusSlaveProcess()--------------------------- +I (48613) modbus: check id... +I (48613) modbus: ok +I (48613) modbus: add: 0, length: 10 +I (48613) modbus: Read Holding Registers +I (48813) modbus tcp: ModBusSlave_recv() +I (48813) modbus: ModbusSlaveProcess()--------------------------- +I (48813) modbus: check id... +I (48813) modbus: ok +I (48813) modbus: add: 0, length: 10 +I (48813) modbus: Read Holding Registers +I (48833) modbus tcp: ModBusSlave_recv() +I (48833) modbus: ModbusSlaveProcess()--------------------------- +I (48833) modbus: check id... +I (48833) modbus: ok +I (48833) modbus: add: 0, length: 10 +I (48833) modbus: Read Holding Registers +I (49023) modbus tcp: ModBusSlave_recv() +I (49023) modbus: ModbusSlaveProcess()--------------------------- +I (49023) modbus: check id... +I (49023) modbus: ok +I (49023) modbus: add: 0, length: 10 +I (49023) modbus: Read Holding Registers +I (49053) modbus tcp: ModBusSlave_recv() +I (49053) modbus: ModbusSlaveProcess()--------------------------- +I (49053) modbus: check id... +I (49053) modbus: ok +I (49053) modbus: add: 0, length: 10 +I (49053) modbus: Read Holding Registers +I (49163) modbus tcp: ModBusSlave_recv() +I (49163) modbus: ModbusSlaveProcess()--------------------------- +I (49163) modbus: check id... +I (49163) modbus: ok +I (49163) modbus: add: 0, length: 10 +I (49163) modbus: Read Holding Registers +I (49333) modbus tcp: ModBusSlave_recv() +I (49333) modbus: ModbusSlaveProcess()--------------------------- +I (49333) modbus: check id... +I (49333) modbus: ok +I (49333) modbus: add: 0, length: 10 +I (49333) modbus: Read Holding Registers +I (49383) modbus tcp: ModBusSlave_recv() +I (49383) modbus: ModbusSlaveProcess()--------------------------- +I (49383) modbus: check id... +I (49383) modbus: ok +I (49383) modbus: add: 0, length: 10 +I (49383) modbus: Read Holding Registers +I (49523) modbus tcp: ModBusSlave_recv() +I (49523) modbus: ModbusSlaveProcess()--------------------------- +I (49533) modbus: check id... +I (49533) modbus: ok +I (49533) modbus: add: 0, length: 10 +I (49533) modbus: Read Holding Registers +I (49633) modbus tcp: ModBusSlave_recv() +I (49633) modbus: ModbusSlaveProcess()--------------------------- +I (49633) modbus: check id... +I (49633) modbus: ok +I (49633) modbus: add: 0, length: 10 +I (49633) modbus: Read Holding Registers +I (49713) modbus tcp: ModBusSlave_recv() +I (49713) modbus: ModbusSlaveProcess()--------------------------- +I (49713) modbus: check id... +I (49713) modbus: ok +I (49713) modbus: add: 0, length: 10 +I (49713) modbus: Read Holding Registers +I (49843) modbus tcp: ModBusSlave_recv() +I (49843) modbus: ModbusSlaveProcess()--------------------------- +I (49843) modbus: check id... +I (49843) modbus: ok +I (49843) modbus: add: 0, length: 10 +I (49843) modbus: Read Holding Registers +I (49933) modbus tcp: ModBusSlave_recv() +I (49933) modbus: ModbusSlaveProcess()--------------------------- +I (49933) modbus: check id... +I (49933) modbus: ok +I (49933) modbus: add: 0, length: 10 +I (49933) modbus: Read Holding Registers +I (50023) modbus tcp: ModBusSlave_recv() +I (50023) modbus: ModbusSlaveProcess()--------------------------- +I (50023) modbus: check id... +I (50023) modbus: ok +I (50023) modbus: add: 0, length: 10 +I (50023) modbus: Read Holding Registers +I (50143) modbus tcp: ModBusSlave_recv() +I (50153) modbus: ModbusSlaveProcess()--------------------------- +I (50153) modbus: check id... +I (50153) modbus: ok +I (50153) modbus: add: 0, length: 10 +I (50153) modbus: Read Holding Registers +I (50243) modbus tcp: ModBusSlave_recv() +I (50243) modbus: ModbusSlaveProcess()--------------------------- +I (50243) modbus: check id... +I (50243) modbus: ok +I (50243) modbus: add: 0, length: 10 +I (50243) modbus: Read Holding Registers +I (50453) modbus tcp: ModBusSlave_recv() +I (50453) modbus: ModbusSlaveProcess()--------------------------- +I (50453) modbus: check id... +I (50453) modbus: ok +I (50453) modbus: add: 0, length: 10 +I (50453) modbus: Read Holding Registers +I (50483) modbus tcp: ModBusSlave_recv() +I (50483) modbus: ModbusSlaveProcess()--------------------------- +I (50483) modbus: check id... +I (50483) modbus: ok +I (50483) modbus: add: 0, length: 10 +I (50483) modbus: Read Holding Registers +I (50573) modbus tcp: ModBusSlave_recv() +I (50573) modbus: ModbusSlaveProcess()--------------------------- +I (50573) modbus: check id... +I (50573) modbus: ok +I (50573) modbus: add: 0, length: 10 +I (50573) modbus: Read Holding Registers +I (50753) modbus tcp: ModBusSlave_recv() +I (50753) modbus: ModbusSlaveProcess()--------------------------- +I (50753) modbus: check id... +I (50753) modbus: ok +I (50753) modbus: add: 0, length: 10 +I (50753) modbus: Read Holding Registers +I (50803) modbus tcp: ModBusSlave_recv() +I (50803) modbus: ModbusSlaveProcess()--------------------------- +I (50803) modbus: check id... +I (50803) modbus: ok +I (50803) modbus: add: 0, length: 10 +I (50803) modbus: Read Holding Registers +I (50973) modbus tcp: ModBusSlave_recv() +I (50973) modbus: ModbusSlaveProcess()--------------------------- +I (50973) modbus: check id... +I (50973) modbus: ok +I (50973) modbus: add: 0, length: 10 +I (50973) modbus: Read Holding Registers +I (51023) modbus tcp: ModBusSlave_recv() +I (51023) modbus: ModbusSlaveProcess()--------------------------- +I (51023) modbus: check id... +I (51023) modbus: ok +I (51023) modbus: add: 0, length: 10 +I (51023) modbus: Read Holding Registers +I (51173) modbus tcp: ModBusSlave_recv() +I (51173) modbus: ModbusSlaveProcess()--------------------------- +I (51173) modbus: check id... +I (51173) modbus: ok +I (51173) modbus: add: 0, length: 10 +I (51173) modbus: Read Holding Registers +I (51273) modbus tcp: ModBusSlave_recv() +I (51273) modbus: ModbusSlaveProcess()--------------------------- +I (51273) modbus: check id... +I (51273) modbus: ok +I (51273) modbus: add: 0, length: 10 +I (51273) modbus: Read Holding Registers +I (51353) modbus tcp: ModBusSlave_recv() +I (51353) modbus: ModbusSlaveProcess()--------------------------- +I (51353) modbus: check id... +I (51353) modbus: ok +I (51353) modbus: add: 0, length: 10 +I (51353) modbus: Read Holding Registers +I (51473) modbus tcp: ModBusSlave_recv() +I (51483) modbus: ModbusSlaveProcess()--------------------------- +I (51483) modbus: check id... +I (51483) modbus: ok +I (51483) modbus: add: 0, length: 10 +I (51483) modbus: Read Holding Registers +I (51583) modbus tcp: ModBusSlave_recv() +I (51583) modbus: ModbusSlaveProcess()--------------------------- +I (51583) modbus: check id... +I (51583) modbus: ok +I (51583) modbus: add: 0, length: 10 +I (51583) modbus: Read Holding Registers +I (51683) modbus tcp: ModBusSlave_recv() +I (51683) modbus: ModbusSlaveProcess()--------------------------- +I (51683) modbus: check id... +I (51683) modbus: ok +I (51683) modbus: add: 0, length: 10 +I (51683) modbus: Read Holding Registers +I (51793) modbus tcp: ModBusSlave_recv() +I (51793) modbus: ModbusSlaveProcess()--------------------------- +I (51793) modbus: check id... +I (51793) modbus: ok +I (51793) modbus: add: 0, length: 10 +I (51793) modbus: Read Holding Registers +I (51993) modbus tcp: ModBusSlave_recv() +I (51993) modbus: ModbusSlaveProcess()--------------------------- +I (51993) modbus: check id... +I (51993) modbus: ok +I (51993) modbus: add: 0, length: 10 +I (51993) modbus: Read Holding Registers +I (52023) modbus tcp: ModBusSlave_recv() +I (52023) modbus: ModbusSlaveProcess()--------------------------- +I (52023) modbus: check id... +I (52023) modbus: ok +I (52033) modbus: add: 0, length: 10 +I (52033) modbus: Read Holding Registers +I (52123) modbus tcp: ModBusSlave_recv() +I (52123) modbus: ModbusSlaveProcess()--------------------------- +I (52123) modbus: check id... +I (52123) modbus: ok +I (52123) modbus: add: 0, length: 10 +I (52123) modbus: Read Holding Registers +I (52293) modbus tcp: ModBusSlave_recv() +I (52293) modbus: ModbusSlaveProcess()--------------------------- +I (52303) modbus: check id... +I (52303) modbus: ok +I (52303) modbus: add: 0, length: 10 +I (52303) modbus: Read Holding Registers +I (52343) modbus tcp: ModBusSlave_recv() +I (52343) modbus: ModbusSlaveProcess()--------------------------- +I (52343) modbus: check id... +I (52343) modbus: ok +I (52343) modbus: add: 0, length: 10 +I (52343) modbus: Read Holding Registers +I (52503) modbus tcp: ModBusSlave_recv() +I (52503) modbus: ModbusSlaveProcess()--------------------------- +I (52503) modbus: check id... +I (52503) modbus: ok +I (52503) modbus: add: 0, length: 10 +I (52503) modbus: Read Holding Registers +I (52563) modbus tcp: ModBusSlave_recv() +I (52563) modbus: ModbusSlaveProcess()--------------------------- +I (52563) modbus: check id... +I (52563) modbus: ok +I (52563) modbus: add: 0, length: 10 +I (52563) modbus: Read Holding Registers +I (52703) modbus tcp: ModBusSlave_recv() +I (52703) modbus: ModbusSlaveProcess()--------------------------- +I (52713) modbus: check id... +I (52713) modbus: ok +I (52713) modbus: add: 0, length: 10 +I (52713) modbus: Read Holding Registers +I (52803) modbus tcp: ModBusSlave_recv() +I (52803) modbus: ModbusSlaveProcess()--------------------------- +I (52803) modbus: check id... +I (52803) modbus: ok +I (52803) modbus: add: 0, length: 10 +I (52803) modbus: Read Holding Registers +I (52913) modbus tcp: ModBusSlave_recv() +I (52913) modbus: ModbusSlaveProcess()--------------------------- +I (52913) modbus: check id... +I (52913) modbus: ok +I (52913) modbus: add: 0, length: 10 +I (52913) modbus: Read Holding Registers +I (53013) modbus tcp: ModBusSlave_recv() +I (53013) modbus: ModbusSlaveProcess()--------------------------- +I (53013) modbus: check id... +I (53013) modbus: ok +I (53013) modbus: add: 0, length: 10 +I (53013) modbus: Read Holding Registers +I (53113) modbus tcp: ModBusSlave_recv() +I (53113) modbus: ModbusSlaveProcess()--------------------------- +I (53113) modbus: check id... +I (53123) modbus: ok +I (53123) modbus: add: 0, length: 10 +I (53123) modbus: Read Holding Registers +I (53223) modbus tcp: ModBusSlave_recv() +I (53223) modbus: ModbusSlaveProcess()--------------------------- +I (53223) modbus: check id... +I (53223) modbus: ok +I (53223) modbus: add: 0, length: 10 +I (53223) modbus: Read Holding Registers +I (53333) modbus tcp: ModBusSlave_recv() +I (53333) modbus: ModbusSlaveProcess()--------------------------- +I (53333) modbus: check id... +I (53333) modbus: ok +I (53333) modbus: add: 0, length: 10 +I (53333) modbus: Read Holding Registers +I (53433) modbus tcp: ModBusSlave_recv() +I (53433) modbus: ModbusSlaveProcess()--------------------------- +I (53433) modbus: check id... +I (53433) modbus: ok +I (53433) modbus: add: 0, length: 10 +I (53433) modbus: Read Holding Registers +I (53623) modbus tcp: ModBusSlave_recv() +I (53633) modbus: ModbusSlaveProcess()--------------------------- +I (53633) modbus: check id... +I (53633) modbus: ok +I (53633) modbus: add: 0, length: 10 +I (53633) modbus: Read Holding Registers +I (53673) modbus tcp: ModBusSlave_recv() +I (53673) modbus: ModbusSlaveProcess()--------------------------- +I (53673) modbus: check id... +I (53673) modbus: ok +I (53673) modbus: add: 0, length: 10 +I (53673) modbus: Read Holding Registers +I (53833) modbus tcp: ModBusSlave_recv() +I (53833) modbus: ModbusSlaveProcess()--------------------------- +I (53833) modbus: check id... +I (53833) modbus: ok +I (53833) modbus: add: 0, length: 10 +I (53833) modbus: Read Holding Registers +I (53933) modbus tcp: ModBusSlave_recv() +I (53933) modbus: ModbusSlaveProcess()--------------------------- +I (53933) modbus: check id... +I (53933) modbus: ok +I (53933) modbus: add: 0, length: 10 +I (53933) modbus: Read Holding Registers +I (54003) modbus tcp: ModBusSlave_recv() +I (54003) modbus: ModbusSlaveProcess()--------------------------- +I (54003) modbus: check id... +I (54003) modbus: ok +I (54003) modbus: add: 0, length: 10 +I (54003) modbus: Read Holding Registers +I (54143) modbus tcp: ModBusSlave_recv() +I (54143) modbus: ModbusSlaveProcess()--------------------------- +I (54143) modbus: check id... +I (54143) modbus: ok +I (54143) modbus: add: 0, length: 10 +I (54143) modbus: Read Holding Registers +I (54213) modbus tcp: ModBusSlave_recv() +I (54223) modbus: ModbusSlaveProcess()--------------------------- +I (54223) modbus: check id... +I (54223) modbus: ok +I (54223) modbus: add: 0, length: 10 +I (54223) modbus: Read Holding Registers +I (54333) modbus tcp: ModBusSlave_recv() +I (54333) modbus: ModbusSlaveProcess()--------------------------- +I (54333) modbus: check id... +I (54333) modbus: ok +I (54333) modbus: add: 0, length: 10 +I (54333) modbus: Read Holding Registers +I (54443) modbus tcp: ModBusSlave_recv() +I (54443) modbus: ModbusSlaveProcess()--------------------------- +I (54443) modbus: check id... +I (54443) modbus: ok +I (54443) modbus: add: 0, length: 10 +I (54443) modbus: Read Holding Registers +I (54653) modbus tcp: ModBusSlave_recv() +I (54653) modbus: ModbusSlaveProcess()--------------------------- +I (54653) modbus: check id... +I (54653) modbus: ok +I (54653) modbus: add: 0, length: 10 +I (54653) modbus: Read Holding Registers +I (54673) modbus tcp: ModBusSlave_recv() +I (54673) modbus: ModbusSlaveProcess()--------------------------- +I (54673) modbus: check id... +I (54673) modbus: ok +I (54673) modbus: add: 0, length: 10 +I (54673) modbus: Read Holding Registers +I (54853) modbus tcp: ModBusSlave_recv() +I (54853) modbus: ModbusSlaveProcess()--------------------------- +I (54853) modbus: check id... +I (54853) modbus: ok +I (54863) modbus: add: 0, length: 10 +I (54863) modbus: Read Holding Registers +I (54903) modbus tcp: ModBusSlave_recv() +I (54903) modbus: ModbusSlaveProcess()--------------------------- +I (54903) modbus: check id... +I (54903) modbus: ok +I (54903) modbus: add: 0, length: 10 +I (54903) modbus: Read Holding Registers +I (55063) modbus tcp: ModBusSlave_recv() +I (55063) modbus: ModbusSlaveProcess()--------------------------- +I (55063) modbus: check id... +I (55063) modbus: ok +I (55063) modbus: add: 0, length: 10 +I (55063) modbus: Read Holding Registers +I (55163) modbus tcp: ModBusSlave_recv() +I (55163) modbus: ModbusSlaveProcess()--------------------------- +I (55163) modbus: check id... +I (55163) modbus: ok +I (55163) modbus: add: 0, length: 10 +I (55163) modbus: Read Holding Registers +I (55223) modbus tcp: ModBusSlave_recv() +I (55223) modbus: ModbusSlaveProcess()--------------------------- +I (55223) modbus: check id... +I (55223) modbus: ok +I (55223) modbus: add: 0, length: 10 +I (55223) modbus: Read Holding Registers +I (55373) modbus tcp: ModBusSlave_recv() +I (55373) modbus: ModbusSlaveProcess()--------------------------- +I (55373) modbus: check id... +I (55373) modbus: ok +I (55373) modbus: add: 0, length: 10 +I (55373) modbus: Read Holding Registers +I (55473) modbus tcp: ModBusSlave_recv() +I (55473) modbus: ModbusSlaveProcess()--------------------------- +I (55473) modbus: check id... +I (55473) modbus: ok +I (55473) modbus: add: 0, length: 10 +I (55473) modbus: Read Holding Registers +I (55553) modbus tcp: ModBusSlave_recv() +I (55553) modbus: ModbusSlaveProcess()--------------------------- +I (55553) modbus: check id... +I (55553) modbus: ok +I (55553) modbus: add: 0, length: 10 +I (55553) modbus: Read Holding Registers +I (55673) modbus tcp: ModBusSlave_recv() +I (55673) modbus: ModbusSlaveProcess()--------------------------- +I (55673) modbus: check id... +I (55673) modbus: ok +I (55673) modbus: add: 0, length: 10 +I (55673) modbus: Read Holding Registers +I (55883) modbus tcp: ModBusSlave_recv() +I (55883) modbus: ModbusSlaveProcess()--------------------------- +I (55883) modbus: check id... +I (55883) modbus: ok +I (55883) modbus: add: 0, length: 10 +I (55883) modbus: Read Holding Registers +I (55913) modbus tcp: ModBusSlave_recv() +I (55913) modbus: ModbusSlaveProcess()--------------------------- +I (55913) modbus: check id... +I (55913) modbus: ok +I (55913) modbus: add: 0, length: 10 +I (55913) modbus: Read Holding Registers +I (56013) modbus tcp: ModBusSlave_recv() +I (56013) modbus: ModbusSlaveProcess()--------------------------- +I (56013) modbus: check id... +I (56013) modbus: ok +I (56013) modbus: add: 0, length: 10 +I (56013) modbus: Read Holding Registers +I (56113) modbus tcp: ModBusSlave_recv() +I (56123) modbus: ModbusSlaveProcess()--------------------------- +I (56123) modbus: check id... +I (56123) modbus: ok +I (56123) modbus: add: 0, length: 10 +I (56123) modbus: Read Holding Registers +I (56293) modbus tcp: ModBusSlave_recv() +I (56293) modbus: ModbusSlaveProcess()--------------------------- +I (56293) modbus: check id... +I (56293) modbus: ok +I (56293) modbus: add: 0, length: 10 +I (56293) modbus: Read Holding Registers +I (56343) modbus tcp: ModBusSlave_recv() +I (56343) modbus: ModbusSlaveProcess()--------------------------- +I (56343) modbus: check id... +I (56343) modbus: ok +I (56343) modbus: add: 0, length: 10 +I (56343) modbus: Read Holding Registers +I (56493) modbus tcp: ModBusSlave_recv() +I (56493) modbus: ModbusSlaveProcess()--------------------------- +I (56493) modbus: check id... +I (56493) modbus: ok +I (56493) modbus: add: 0, length: 10 +I (56493) modbus: Read Holding Registers +I (56563) modbus tcp: ModBusSlave_recv() +I (56563) modbus: ModbusSlaveProcess()--------------------------- +I (56563) modbus: check id... +I (56563) modbus: ok +I (56563) modbus: add: 0, length: 10 +I (56563) modbus: Read Holding Registers +I (56693) modbus tcp: ModBusSlave_recv() +I (56703) modbus: ModbusSlaveProcess()--------------------------- +I (56703) modbus: check id... +I (56703) modbus: ok +I (56703) modbus: add: 0, length: 10 +I (56703) modbus: Read Holding Registers +I (56783) modbus tcp: ModBusSlave_recv() +I (56783) modbus: ModbusSlaveProcess()--------------------------- +I (56783) modbus: check id... +I (56783) modbus: ok +I (56783) modbus: add: 0, length: 10 +I (56783) modbus: Read Holding Registers +I (56903) modbus tcp: ModBusSlave_recv() +I (56903) modbus: ModbusSlaveProcess()--------------------------- +I (56903) modbus: check id... +I (56903) modbus: ok +I (56903) modbus: add: 0, length: 10 +I (56903) modbus: Read Holding Registers +I (57103) modbus tcp: ModBusSlave_recv() +I (57103) modbus: ModbusSlaveProcess()--------------------------- +I (57103) modbus: check id... +I (57103) modbus: ok +I (57103) modbus: add: 0, length: 10 +I (57103) modbus: Read Holding Registers +I (57123) modbus tcp: ModBusSlave_recv() +I (57133) modbus: ModbusSlaveProcess()--------------------------- +I (57133) modbus: check id... +I (57133) modbus: ok +I (57133) modbus: add: 0, length: 10 +I (57133) modbus: Read Holding Registers +I (57313) modbus tcp: ModBusSlave_recv() +I (57313) modbus: ModbusSlaveProcess()--------------------------- +I (57313) modbus: check id... +I (57313) modbus: ok +I (57313) modbus: add: 0, length: 10 +I (57313) modbus: Read Holding Registers +I (57333) modbus tcp: ModBusSlave_recv() +I (57333) modbus: ModbusSlaveProcess()--------------------------- +I (57333) modbus: check id... +I (57333) modbus: ok +I (57333) modbus: add: 0, length: 10 +I (57333) modbus: Read Holding Registers +I (57523) modbus tcp: ModBusSlave_recv() +I (57523) modbus: ModbusSlaveProcess()--------------------------- +I (57523) modbus: check id... +I (57523) modbus: ok +I (57523) modbus: add: 0, length: 10 +I (57523) modbus: Read Holding Registers +I (57573) modbus tcp: ModBusSlave_recv() +I (57573) modbus: ModbusSlaveProcess()--------------------------- +I (57573) modbus: check id... +I (57573) modbus: ok +I (57573) modbus: add: 0, length: 10 +I (57573) modbus: Read Holding Registers +I (57723) modbus tcp: ModBusSlave_recv() +I (57723) modbus: ModbusSlaveProcess()--------------------------- +I (57723) modbus: check id... +I (57723) modbus: ok +I (57723) modbus: add: 0, length: 10 +I (57723) modbus: Read Holding Registers +I (57773) modbus tcp: ModBusSlave_recv() +I (57773) modbus: ModbusSlaveProcess()--------------------------- +I (57783) modbus: check id... +I (57783) modbus: ok +I (57783) modbus: add: 0, length: 10 +I (57783) modbus: Read Holding Registers +I (57923) modbus tcp: ModBusSlave_recv() +I (57923) modbus: ModbusSlaveProcess()--------------------------- +I (57923) modbus: check id... +I (57923) modbus: ok +I (57923) modbus: add: 0, length: 10 +I (57923) modbus: Read Holding Registers +I (57993) modbus tcp: ModBusSlave_recv() +I (57993) modbus: ModbusSlaveProcess()--------------------------- +I (57993) modbus: check id... +I (57993) modbus: ok +I (57993) modbus: add: 0, length: 10 +I (57993) modbus: Read Holding Registers +I (58133) modbus tcp: ModBusSlave_recv() +I (58133) modbus: ModbusSlaveProcess()--------------------------- +I (58133) modbus: check id... +I (58133) modbus: ok +I (58133) modbus: add: 0, length: 10 +I (58133) modbus: Read Holding Registers +I (58213) modbus tcp: ModBusSlave_recv() +I (58213) modbus: ModbusSlaveProcess()--------------------------- +I (58213) modbus: check id... +I (58213) modbus: ok +I (58213) modbus: add: 0, length: 10 +I (58213) modbus: Read Holding Registers +I (58333) modbus tcp: ModBusSlave_recv() +I (58343) modbus: ModbusSlaveProcess()--------------------------- +I (58343) modbus: check id... +I (58343) modbus: ok +I (58343) modbus: add: 0, length: 10 +I (58343) modbus: Read Holding Registers +I (58443) modbus tcp: ModBusSlave_recv() +I (58443) modbus: ModbusSlaveProcess()--------------------------- +I (58443) modbus: check id... +I (58443) modbus: ok +I (58443) modbus: add: 0, length: 10 +I (58443) modbus: Read Holding Registers +I (58543) modbus tcp: ModBusSlave_recv() +I (58543) modbus: ModbusSlaveProcess()--------------------------- +I (58543) modbus: check id... +I (58543) modbus: ok +I (58543) modbus: add: 0, length: 10 +I (58543) modbus: Read Holding Registers +I (58743) modbus tcp: ModBusSlave_recv() +I (58743) modbus: ModbusSlaveProcess()--------------------------- +I (58743) modbus: check id... +I (58743) modbus: ok +I (58743) modbus: add: 0, length: 10 +I (58743) modbus: Read Holding Registers +I (58763) modbus tcp: ModBusSlave_recv() +I (58763) modbus: ModbusSlaveProcess()--------------------------- +I (58763) modbus: check id... +I (58763) modbus: ok +I (58763) modbus: add: 0, length: 10 +I (58763) modbus: Read Holding Registers +I (58953) modbus tcp: ModBusSlave_recv() +I (58953) modbus: ModbusSlaveProcess()--------------------------- +I (58953) modbus: check id... +I (58953) modbus: ok +I (58953) modbus: add: 0, length: 10 +I (58953) modbus: Read Holding Registers +I (58983) modbus tcp: ModBusSlave_recv() +I (58983) modbus: ModbusSlaveProcess()--------------------------- +I (58983) modbus: check id... +I (58983) modbus: ok +I (58983) modbus: add: 0, length: 10 +I (58983) modbus: Read Holding Registers +I (59153) modbus tcp: ModBusSlave_recv() +I (59153) modbus: ModbusSlaveProcess()--------------------------- +I (59153) modbus: check id... +I (59153) modbus: ok +I (59153) modbus: add: 0, length: 10 +I (59153) modbus: Read Holding Registers +I (59203) modbus tcp: ModBusSlave_recv() +I (59203) modbus: ModbusSlaveProcess()--------------------------- +I (59203) modbus: check id... +I (59203) modbus: ok +I (59203) modbus: add: 0, length: 10 +I (59203) modbus: Read Holding Registers +I (59313) modbus tcp: ModBusSlave_recv() +I (59313) modbus: ModbusSlaveProcess()--------------------------- +I (59313) modbus: check id... +I (59313) modbus: ok +I (59313) modbus: add: 0, length: 10 +I (59313) modbus: Read Holding Registers +I (59463) modbus tcp: ModBusSlave_recv() +I (59463) modbus: ModbusSlaveProcess()--------------------------- +I (59463) modbus: check id... +I (59463) modbus: ok +I (59463) modbus: add: 0, length: 10 +I (59463) modbus: Read Holding Registers +I (59533) modbus tcp: ModBusSlave_recv() +I (59533) modbus: ModbusSlaveProcess()--------------------------- +I (59533) modbus: check id... +I (59533) modbus: ok +I (59533) modbus: add: 0, length: 10 +I (59533) modbus: Read Holding Registers +I (59663) modbus tcp: ModBusSlave_recv() +I (59663) modbus: ModbusSlaveProcess()--------------------------- +I (59663) modbus: check id... +I (59663) modbus: ok +I (59663) modbus: add: 0, length: 10 +I (59663) modbus: Read Holding Registers +I (59753) modbus tcp: ModBusSlave_recv() +I (59753) modbus: ModbusSlaveProcess()--------------------------- +I (59753) modbus: check id... +I (59753) modbus: ok +I (59753) modbus: add: 0, length: 10 +I (59753) modbus: Read Holding Registers +I (59873) modbus tcp: ModBusSlave_recv() +I (59873) modbus: ModbusSlaveProcess()--------------------------- +I (59873) modbus: check id... +I (59873) modbus: ok +I (59873) modbus: add: 0, length: 10 +I (59873) modbus: Read Holding Registers +I (60073) modbus tcp: ModBusSlave_recv() +I (60073) modbus: ModbusSlaveProcess()--------------------------- +I (60083) modbus: check id... +I (60083) modbus: ok +I (60083) modbus: add: 0, length: 10 +I (60083) modbus: Read Holding Registers +I (60093) modbus tcp: ModBusSlave_recv() +I (60093) modbus: ModbusSlaveProcess()--------------------------- +I (60093) modbus: check id... +I (60093) modbus: ok +I (60093) modbus: add: 0, length: 10 +I (60093) modbus: Read Holding Registers +I (60283) modbus tcp: ModBusSlave_recv() +I (60283) modbus: ModbusSlaveProcess()--------------------------- +I (60283) modbus: check id... +I (60283) modbus: ok +I (60283) modbus: add: 0, length: 10 +I (60283) modbus: Read Holding Registers +I (60313) modbus tcp: ModBusSlave_recv() +I (60313) modbus: ModbusSlaveProcess()--------------------------- +I (60313) modbus: check id... +I (60313) modbus: ok +I (60313) modbus: add: 0, length: 10 +I (60313) modbus: Read Holding Registers +I (60423) modbus tcp: ModBusSlave_recv() +I (60423) modbus: ModbusSlaveProcess()--------------------------- +I (60423) modbus: check id... +I (60423) modbus: ok +I (60423) modbus: add: 0, length: 10 +I (60423) modbus: Read Holding Registers +I (60593) modbus tcp: ModBusSlave_recv() +I (60593) modbus: ModbusSlaveProcess()--------------------------- +I (60593) modbus: check id... +I (60593) modbus: ok +I (60593) modbus: add: 0, length: 10 +I (60593) modbus: Read Holding Registers +I (60693) modbus tcp: ModBusSlave_recv() +I (60693) modbus: ModbusSlaveProcess()--------------------------- +I (60693) modbus: check id... +I (60693) modbus: ok +I (60693) modbus: add: 0, length: 10 +I (60693) modbus: Read Holding Registers +I (60763) modbus tcp: ModBusSlave_recv() +I (60763) modbus: ModbusSlaveProcess()--------------------------- +I (60763) modbus: check id... +I (60763) modbus: ok +I (60763) modbus: add: 0, length: 10 +I (60763) modbus: Read Holding Registers +I (60893) modbus tcp: ModBusSlave_recv() +I (60893) modbus: ModbusSlaveProcess()--------------------------- +I (60893) modbus: check id... +I (60893) modbus: ok +I (60893) modbus: add: 0, length: 10 +I (60893) modbus: Read Holding Registers +I (60973) modbus tcp: ModBusSlave_recv() +I (60973) modbus: ModbusSlaveProcess()--------------------------- +I (60973) modbus: check id... +I (60973) modbus: ok +I (60973) modbus: add: 0, length: 10 +I (60973) modbus: Read Holding Registers +I (61073) modbus tcp: ModBusSlave_recv() +I (61073) modbus: ModbusSlaveProcess()--------------------------- +I (61073) modbus: check id... +I (61073) modbus: ok +I (61073) modbus: add: 0, length: 10 +I (61073) modbus: Read Holding Registers +I (61203) modbus tcp: ModBusSlave_recv() +I (61203) modbus: ModbusSlaveProcess()--------------------------- +I (61203) modbus: check id... +I (61203) modbus: ok +I (61203) modbus: add: 0, length: 10 +I (61203) modbus: Read Holding Registers +I (61303) modbus tcp: ModBusSlave_recv() +I (61303) modbus: ModbusSlaveProcess()--------------------------- +I (61303) modbus: check id... +I (61303) modbus: ok +I (61303) modbus: add: 0, length: 10 +I (61303) modbus: Read Holding Registers +I (61403) modbus tcp: ModBusSlave_recv() +I (61403) modbus: ModbusSlaveProcess()--------------------------- +I (61403) modbus: check id... +I (61403) modbus: ok +I (61403) modbus: add: 0, length: 10 +I (61403) modbus: Read Holding Registers +I (61613) modbus tcp: ModBusSlave_recv() +I (61613) modbus: ModbusSlaveProcess()--------------------------- +I (61613) modbus: check id... +I (61613) modbus: ok +I (61613) modbus: add: 0, length: 10 +I (61613) modbus: Read Holding Registers +I (61633) modbus tcp: ModBusSlave_recv() +I (61633) modbus: ModbusSlaveProcess()--------------------------- +I (61633) modbus: check id... +I (61633) modbus: ok +I (61633) modbus: add: 0, length: 10 +I (61633) modbus: Read Holding Registers +I (61733) modbus tcp: ModBusSlave_recv() +I (61733) modbus: ModbusSlaveProcess()--------------------------- +I (61733) modbus: check id... +I (61733) modbus: ok +I (61733) modbus: add: 0, length: 10 +I (61733) modbus: Read Holding Registers +I (61923) modbus tcp: ModBusSlave_recv() +I (61923) modbus: ModbusSlaveProcess()--------------------------- +I (61923) modbus: check id... +I (61923) modbus: ok +I (61923) modbus: add: 0, length: 10 +I (61923) modbus: Read Holding Registers +I (61953) modbus tcp: ModBusSlave_recv() +I (61953) modbus: ModbusSlaveProcess()--------------------------- +I (61953) modbus: check id... +I (61953) modbus: ok +I (61953) modbus: add: 0, length: 10 +I (61953) modbus: Read Holding Registers +I (62123) modbus tcp: ModBusSlave_recv() +I (62123) modbus: ModbusSlaveProcess()--------------------------- +I (62123) modbus: check id... +I (62123) modbus: ok +I (62123) modbus: add: 0, length: 10 +I (62123) modbus: Read Holding Registers +I (62173) modbus tcp: ModBusSlave_recv() +I (62173) modbus: ModbusSlaveProcess()--------------------------- +I (62173) modbus: check id... +I (62173) modbus: ok +I (62173) modbus: add: 0, length: 10 +I (62173) modbus: Read Holding Registers +I (62333) modbus tcp: ModBusSlave_recv() +I (62333) modbus: ModbusSlaveProcess()--------------------------- +I (62333) modbus: check id... +I (62333) modbus: ok +I (62333) modbus: add: 0, length: 10 +I (62333) modbus: Read Holding Registers +I (62433) modbus tcp: ModBusSlave_recv() +I (62433) modbus: ModbusSlaveProcess()--------------------------- +I (62433) modbus: check id... +I (62433) modbus: ok +I (62433) modbus: add: 0, length: 10 +I (62433) modbus: Read Holding Registers +I (62503) modbus tcp: ModBusSlave_recv() +I (62503) modbus: ModbusSlaveProcess()--------------------------- +I (62503) modbus: check id... +I (62503) modbus: ok +I (62503) modbus: add: 0, length: 10 +I (62503) modbus: Read Holding Registers +I (62633) modbus tcp: ModBusSlave_recv() +I (62633) modbus: ModbusSlaveProcess()--------------------------- +I (62633) modbus: check id... +I (62633) modbus: ok +I (62633) modbus: add: 0, length: 10 +I (62633) modbus: Read Holding Registers +I (62743) modbus tcp: ModBusSlave_recv() +I (62743) modbus: ModbusSlaveProcess()--------------------------- +I (62743) modbus: check id... +I (62743) modbus: ok +I (62743) modbus: add: 0, length: 10 +I (62743) modbus: Read Holding Registers +I (62833) modbus tcp: ModBusSlave_recv() +I (62833) modbus: ModbusSlaveProcess()--------------------------- +I (62833) modbus: check id... +I (62833) modbus: ok +I (62833) modbus: add: 0, length: 10 +I (62833) modbus: Read Holding Registers +I (62923) modbus tcp: ModBusSlave_recv() +I (62923) modbus: ModbusSlaveProcess()--------------------------- +I (62933) modbus: check id... +I (62933) modbus: ok +I (62933) modbus: add: 0, length: 10 +I (62933) modbus: Read Holding Registers +I (63043) modbus tcp: ModBusSlave_recv() +I (63043) modbus: ModbusSlaveProcess()--------------------------- +I (63043) modbus: check id... +I (63043) modbus: ok +I (63043) modbus: add: 0, length: 10 +I (63043) modbus: Read Holding Registers +I (63153) modbus tcp: ModBusSlave_recv() +I (63153) modbus: ModbusSlaveProcess()--------------------------- +I (63153) modbus: check id... +I (63153) modbus: ok +I (63153) modbus: add: 0, length: 10 +I (63153) modbus: Read Holding Registers +I (63353) modbus tcp: ModBusSlave_recv() +I (63353) modbus: ModbusSlaveProcess()--------------------------- +I (63353) modbus: check id... +I (63353) modbus: ok +I (63353) modbus: add: 0, length: 10 +I (63353) modbus: Read Holding Registers +I (63383) modbus tcp: ModBusSlave_recv() +I (63383) modbus: ModbusSlaveProcess()--------------------------- +I (63383) modbus: check id... +I (63383) modbus: ok +I (63383) modbus: add: 0, length: 10 +I (63393) modbus: Read Holding Registers +I (63473) modbus tcp: ModBusSlave_recv() +I (63483) modbus: ModbusSlaveProcess()--------------------------- +I (63483) modbus: check id... +I (63483) modbus: ok +I (63483) modbus: add: 0, length: 10 +I (63483) modbus: Read Holding Registers +I (63663) modbus tcp: ModBusSlave_recv() +I (63663) modbus: ModbusSlaveProcess()--------------------------- +I (63663) modbus: check id... +I (63663) modbus: ok +I (63663) modbus: add: 0, length: 10 +I (63663) modbus: Read Holding Registers +I (63703) modbus tcp: ModBusSlave_recv() +I (63703) modbus: ModbusSlaveProcess()--------------------------- +I (63703) modbus: check id... +I (63703) modbus: ok +I (63703) modbus: add: 0, length: 10 +I (63703) modbus: Read Holding Registers +I (63863) modbus tcp: ModBusSlave_recv() +I (63863) modbus: ModbusSlaveProcess()--------------------------- +I (63863) modbus: check id... +I (63863) modbus: ok +I (63863) modbus: add: 0, length: 10 +I (63873) modbus: Read Holding Registers +I (63913) modbus tcp: ModBusSlave_recv() +I (63923) modbus: ModbusSlaveProcess()--------------------------- +I (63923) modbus: check id... +I (63923) modbus: ok +I (63923) modbus: add: 0, length: 10 +I (63923) modbus: Read Holding Registers +I (64073) modbus tcp: ModBusSlave_recv() +I (64073) modbus: ModbusSlaveProcess()--------------------------- +I (64073) modbus: check id... +I (64073) modbus: ok +I (64073) modbus: add: 0, length: 10 +I (64073) modbus: Read Holding Registers +I (64173) modbus tcp: ModBusSlave_recv() +I (64173) modbus: ModbusSlaveProcess()--------------------------- +I (64173) modbus: check id... +I (64173) modbus: ok +I (64173) modbus: add: 0, length: 10 +I (64173) modbus: Read Holding Registers +I (64273) modbus tcp: ModBusSlave_recv() +I (64273) modbus: ModbusSlaveProcess()--------------------------- +I (64273) modbus: check id... +I (64273) modbus: ok +I (64273) modbus: add: 0, length: 10 +I (64273) modbus: Read Holding Registers +I (64373) modbus tcp: ModBusSlave_recv() +I (64383) modbus: ModbusSlaveProcess()--------------------------- +I (64383) modbus: check id... +I (64383) modbus: ok +I (64383) modbus: add: 0, length: 10 +I (64383) modbus: Read Holding Registers +I (64483) modbus tcp: ModBusSlave_recv() +I (64483) modbus: ModbusSlaveProcess()--------------------------- +I (64483) modbus: check id... +I (64483) modbus: ok +I (64483) modbus: add: 0, length: 10 +I (64483) modbus: Read Holding Registers +I (64683) modbus tcp: ModBusSlave_recv() +I (64683) modbus: ModbusSlaveProcess()--------------------------- +I (64683) modbus: check id... +I (64683) modbus: ok +I (64683) modbus: add: 0, length: 10 +I (64683) modbus: Read Holding Registers +I (64703) modbus tcp: ModBusSlave_recv() +I (64703) modbus: ModbusSlaveProcess()--------------------------- +I (64703) modbus: check id... +I (64703) modbus: ok +I (64703) modbus: add: 0, length: 10 +I (64703) modbus: Read Holding Registers +I (64893) modbus tcp: ModBusSlave_recv() +I (64893) modbus: ModbusSlaveProcess()--------------------------- +I (64893) modbus: check id... +I (64893) modbus: ok +I (64893) modbus: add: 0, length: 10 +I (64893) modbus: Read Holding Registers +I (64933) modbus tcp: ModBusSlave_recv() +I (64933) modbus: ModbusSlaveProcess()--------------------------- +I (64933) modbus: check id... +I (64933) modbus: ok +I (64933) modbus: add: 0, length: 10 +I (64933) modbus: Read Holding Registers +I (65103) modbus tcp: ModBusSlave_recv() +I (65103) modbus: ModbusSlaveProcess()--------------------------- +I (65103) modbus: check id... +I (65103) modbus: ok +I (65103) modbus: add: 0, length: 10 +I (65103) modbus: Read Holding Registers +I (65203) modbus tcp: ModBusSlave_recv() +I (65203) modbus: ModbusSlaveProcess()--------------------------- +I (65203) modbus: check id... +I (65203) modbus: ok +I (65203) modbus: add: 0, length: 10 +I (65203) modbus: Read Holding Registers +I (65273) modbus tcp: ModBusSlave_recv() +I (65273) modbus: ModbusSlaveProcess()--------------------------- +I (65273) modbus: check id... +I (65273) modbus: ok +I (65273) modbus: add: 0, length: 10 +I (65273) modbus: Read Holding Registers +I (65383) modbus tcp: ModBusSlave_recv() +I (65383) modbus: ModbusSlaveProcess()--------------------------- +I (65383) modbus: check id... +I (65383) modbus: ok +I (65383) modbus: add: 0, length: 10 +I (65383) modbus: Read Holding Registers +I (65503) modbus tcp: ModBusSlave_recv() +I (65503) modbus: ModbusSlaveProcess()--------------------------- +I (65503) modbus: check id... +I (65503) modbus: ok +I (65503) modbus: add: 0, length: 10 +I (65503) modbus: Read Holding Registers +I (65603) modbus tcp: ModBusSlave_recv() +I (65603) modbus: ModbusSlaveProcess()--------------------------- +I (65603) modbus: check id... +I (65603) modbus: ok +I (65603) modbus: add: 0, length: 10 +I (65613) modbus: Read Holding Registers +I (65713) modbus tcp: ModBusSlave_recv() +I (65713) modbus: ModbusSlaveProcess()--------------------------- +I (65713) modbus: check id... +I (65713) modbus: ok +I (65713) modbus: add: 0, length: 10 +I (65713) modbus: Read Holding Registers +I (65913) modbus tcp: ModBusSlave_recv() +I (65913) modbus: ModbusSlaveProcess()--------------------------- +I (65913) modbus: check id... +I (65913) modbus: ok +I (65913) modbus: add: 0, length: 10 +I (65913) modbus: Read Holding Registers +I (65943) modbus tcp: ModBusSlave_recv() +I (65943) modbus: ModbusSlaveProcess()--------------------------- +I (65943) modbus: check id... +I (65943) modbus: ok +I (65943) modbus: add: 0, length: 10 +I (65943) modbus: Read Ho \ No newline at end of file diff --git a/build/log/idf_py_stdout_output_18624 b/build/log/idf_py_stdout_output_18624 new file mode 100644 index 0000000..e633d95 --- /dev/null +++ b/build/log/idf_py_stdout_output_18624 @@ -0,0 +1,24 @@ +[1/12] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj +[2/12] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor_mcpwm_impl.c.obj +[3/12] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[4/10] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[5/10] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[6/10] Linking C static library esp-idf\main\libmain.a +[7/10] Generating ld/sections.ld +[8/10] Linking CXX executable wifi_station.elf +[9/10] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[10/10] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2a70 bytes. Smallest app partition is 0x100000 bytes. 0x4d590 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_18760 b/build/log/idf_py_stdout_output_18760 new file mode 100644 index 0000000..a08104a --- /dev/null +++ b/build/log/idf_py_stdout_output_18760 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b60 bytes. Smallest app partition is 0x100000 bytes. 0x4d4a0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 429.4 kbit/s)... +Hash of data verified. +Compressed 732000 bytes to 462333... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3a... (6 %) +Writing at 0x00026282... (10 %) +Writing at 0x0002b78c... (13 %) +Writing at 0x00035c05... (17 %) +Writing at 0x0003b9ad... (20 %) +Writing at 0x00041508... (24 %) +Writing at 0x0004766c... (27 %) +Writing at 0x0004dca0... (31 %) +Writing at 0x0005362e... (34 %) +Writing at 0x00058c4f... (37 %) +Writing at 0x0005e494... (41 %) +Writing at 0x00063dbb... (44 %) +Writing at 0x0006994a... (48 %) +Writing at 0x0006f56c... (51 %) +Writing at 0x000743ee... (55 %) +Writing at 0x000794af... (58 %) +Writing at 0x0007e502... (62 %) +Writing at 0x000837f1... (65 %) +Writing at 0x00088ce1... (68 %) +Writing at 0x0008e765... (72 %) +Writing at 0x00093ef7... (75 %) +Writing at 0x00099895... (79 %) +Writing at 0x0009f8a1... (82 %) +Writing at 0x000a50f0... (86 %) +Writing at 0x000aae1e... (89 %) +Writing at 0x000b4bdc... (93 %) +Writing at 0x000bb8f1... (96 %) +Writing at 0x000c11b2... (100 %) +Wrote 732000 bytes (462333 compressed) at 0x00010000 in 7.8 seconds (effective 753.3 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 463.7 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_18796 b/build/log/idf_py_stdout_output_18796 new file mode 100644 index 0000000..fabc37f --- /dev/null +++ b/build/log/idf_py_stdout_output_18796 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2c00 bytes. Smallest app partition is 0x100000 bytes. 0x4d400 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting.... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 446.9 kbit/s)... +Hash of data verified. +Compressed 732160 bytes to 462396... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd41... (6 %) +Writing at 0x000262a8... (10 %) +Writing at 0x0002b7af... (13 %) +Writing at 0x00035c21... (17 %) +Writing at 0x0003b9d9... (20 %) +Writing at 0x0004153e... (24 %) +Writing at 0x0004769e... (27 %) +Writing at 0x0004dcea... (31 %) +Writing at 0x00053660... (34 %) +Writing at 0x00058ca7... (37 %) +Writing at 0x0005e4de... (41 %) +Writing at 0x00063df4... (44 %) +Writing at 0x00069981... (48 %) +Writing at 0x0006f593... (51 %) +Writing at 0x000743fb... (55 %) +Writing at 0x000794d4... (58 %) +Writing at 0x0007e520... (62 %) +Writing at 0x00083826... (65 %) +Writing at 0x00088d23... (68 %) +Writing at 0x0008e7a0... (72 %) +Writing at 0x00093f2f... (75 %) +Writing at 0x000998d5... (79 %) +Writing at 0x0009f8e2... (82 %) +Writing at 0x000a5130... (86 %) +Writing at 0x000aae8a... (89 %) +Writing at 0x000b4be5... (93 %) +Writing at 0x000bb91b... (96 %) +Writing at 0x000c120c... (100 %) +Wrote 732160 bytes (462396 compressed) at 0x00010000 in 7.7 seconds (effective 762.6 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 516.4 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_18828 b/build/log/idf_py_stdout_output_18828 new file mode 100644 index 0000000..57113f3 --- /dev/null +++ b/build/log/idf_py_stdout_output_18828 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b60 bytes. Smallest app partition is 0x100000 bytes. 0x4d4a0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 434.1 kbit/s)... +Hash of data verified. +Compressed 732000 bytes to 462333... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3a... (6 %) +Writing at 0x00026282... (10 %) +Writing at 0x0002b78c... (13 %) +Writing at 0x00035c05... (17 %) +Writing at 0x0003b9ad... (20 %) +Writing at 0x00041508... (24 %) +Writing at 0x0004766c... (27 %) +Writing at 0x0004dca0... (31 %) +Writing at 0x0005362e... (34 %) +Writing at 0x00058c4f... (37 %) +Writing at 0x0005e494... (41 %) +Writing at 0x00063dbb... (44 %) +Writing at 0x0006994a... (48 %) +Writing at 0x0006f56c... (51 %) +Writing at 0x000743ee... (55 %) +Writing at 0x000794af... (58 %) +Writing at 0x0007e502... (62 %) +Writing at 0x000837f1... (65 %) +Writing at 0x00088ce1... (68 %) +Writing at 0x0008e765... (72 %) +Writing at 0x00093ef7... (75 %) +Writing at 0x00099895... (79 %) +Writing at 0x0009f8a1... (82 %) +Writing at 0x000a50f0... (86 %) +Writing at 0x000aae1e... (89 %) +Writing at 0x000b4bdc... (93 %) +Writing at 0x000bb8f1... (96 %) +Writing at 0x000c11b2... (100 %) +Wrote 732000 bytes (462333 compressed) at 0x00010000 in 7.8 seconds (effective 754.3 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 481.8 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_19028 b/build/log/idf_py_stdout_output_19028 new file mode 100644 index 0000000..f868635 --- /dev/null +++ b/build/log/idf_py_stdout_output_19028 @@ -0,0 +1,2513 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=215c8h (136648) map +I (121) esp_image: segment 1: paddr=000315f0 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353f8 vaddr=40374000 size=0ac20h ( 44064) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7aeb8h (503480) map +I (227) esp_image: segment 4: paddr=000baee0 vaddr=4037ec20 size=07cf4h ( 31988) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (268) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 34fd76e4452d7819... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (270) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (374) wifi station: wifi_init_sta finished. +I (384) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (384) wifi:state: init -> auth (b0) +I (394) wifi:state: auth -> assoc (0) +I (394) wifi:state: assoc -> run (10) +I (444) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (444) wifi:security: WPA2-PSK, phy: bgn, rssi: -81 +I (444) wifi:pm start, type: 1 + +I (444) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (444) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (454) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (524) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1944) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (1944) wifi station: got ip:192.168.1.107 +I (1944) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1944) modbus tcp: ModBusTCPSlave_init() +I (1944) example: Create DC motor +I (1944) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1944) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1944) example: Init pcnt driver to decode rotary signal +I (1944) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1944) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1944) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1944) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1954) example: Create PID control block +I (1954) example: Create a timer to do PID calculation periodically +I (1954) example: Enable motor +I (1954) example: Forward motor +I (1954) example: Start motor speed loop +I (2954) example: expect speed: 0.000000 real_pulses:0 +I (2954) example: new speed:399.000000 +I (3904) modbus tcp: accept assess +I (3954) example: expect speed: 0.000000 real_pulses:0 +I (3954) example: new speed:399.000000 +I (4924) modbus tcp: ModBusSlave_recv() +I (4924) modbus: ModbusSlaveProcess()--------------------------- +I (4924) modbus: check id... +I (4924) modbus: ok +I (4924) modbus: add: 0, length: 10 +I (4924) modbus: Read Holding Registers +I (4954) example: expect speed: 0.000000 real_pulses:0 +I (4954) example: new speed:399.000000 +I (5954) modbus tcp: ModBusSlave_recv() +I (5954) modbus: ModbusSlaveProcess()--------------------------- +I (5954) modbus: check id... +I (5954) modbus: ok +I (5954) example: expect speed: 0.000000 real_pulses:0 +I (5954) modbus: add: 0, length: 10 +I (5954) example: new speed:399.000000 +I (5954) modbus: Read Holding Registers +I (6954) example: expect speed: 0.000000 real_pulses:0 +I (6954) example: new speed:399.000000 +I (6974) modbus tcp: ModBusSlave_recv() +I (6974) modbus: ModbusSlaveProcess()--------------------------- +I (6974) modbus: check id... +I (6974) modbus: ok +I (6974) modbus: add: 0, length: 10 +I (6974) modbus: Read Holding Registers +I (7954) example: expect speed: 0.000000 real_pulses:0 +I (7954) example: new speed:399.000000 +I (8004) modbus tcp: ModBusSlave_recv() +I (8004) modbus: ModbusSlaveProcess()--------------------------- +I (8004) modbus: check id... +I (8004) modbus: ok +I (8004) modbus: add: 0, length: 10 +I (8004) modbus: Read Holding Registers +I (8954) example: expect speed: 0.000000 real_pulses:0 +I (8954) example: new speed:399.000000 +I (9024) modbus tcp: ModBusSlave_recv() +I (9024) modbus: ModbusSlaveProcess()--------------------------- +I (9024) modbus: check id... +I (9024) modbus: ok +I (9024) modbus: add: 0, length: 10 +I (9024) modbus: Read Holding Registers +I (9954) example: expect speed: 0.000000 real_pulses:0 +I (9954) example: new speed:399.000000 +I (10054) modbus tcp: ModBusSlave_recv() +I (10054) modbus: ModbusSlaveProcess()--------------------------- +I (10054) modbus: check id... +I (10054) modbus: ok +I (10054) modbus: add: 0, length: 10 +I (10054) modbus: Read Holding Registers +I (10954) example: expect speed: 0.000000 real_pulses:0 +I (10954) example: new speed:399.000000 +I (11074) modbus tcp: ModBusSlave_recv() +I (11084) modbus: ModbusSlaveProcess()--------------------------- +I (11084) modbus: check id... +I (11084) modbus: ok +I (11084) modbus: add: 0, length: 10 +I (11084) modbus: Read Holding Registers +I (11954) example: expect speed: 0.000000 real_pulses:0 +I (11954) example: new speed:399.000000 +I (12124) modbus tcp: ModBusSlave_recv() +I (12124) modbus: ModbusSlaveProcess()--------------------------- +I (12124) modbus: check id... +I (12124) modbus: ok +I (12124) modbus: add: 0, length: 10 +I (12124) modbus: Read Holding Registers +I (12954) example: expect speed: 0.000000 real_pulses:0 +I (12954) example: new speed:399.000000 +I (13114) modbus tcp: ModBusSlave_recv() +I (13114) modbus: ModbusSlaveProcess()--------------------------- +I (13124) modbus: check id... +I (13124) modbus: ok +I (13124) modbus: add: 0, length: 10 +I (13124) modbus: Read Holding Registers +I (13954) example: expect speed: 0.000000 real_pulses:0 +I (13954) example: new speed:399.000000 +I (14144) modbus tcp: ModBusSlave_recv() +I (14144) modbus: ModbusSlaveProcess()--------------------------- +I (14144) modbus: check id... +I (14144) modbus: ok +I (14144) modbus: add: 0, length: 10 +I (14144) modbus: Read Holding Registers +I (14954) example: expect speed: 0.000000 real_pulses:0 +I (14954) example: new speed:399.000000 +I (15164) modbus tcp: ModBusSlave_recv() +I (15164) modbus: ModbusSlaveProcess()--------------------------- +I (15164) modbus: check id... +I (15164) modbus: ok +I (15164) modbus: add: 0, length: 10 +I (15164) modbus: Read Holding Registers +I (15954) example: expect speed: 0.000000 real_pulses:0 +I (15954) example: new speed:399.000000 +I (16194) modbus tcp: ModBusSlave_recv() +I (16194) modbus: ModbusSlaveProcess()--------------------------- +I (16194) modbus: check id... +I (16194) modbus: ok +I (16194) modbus: add: 0, length: 10 +I (16194) modbus: Read Holding Registers +I (16954) example: expect speed: 0.000000 real_pulses:0 +I (16954) example: new speed:399.000000 +I (17214) modbus tcp: ModBusSlave_recv() +I (17214) modbus: ModbusSlaveProcess()--------------------------- +I (17214) modbus: check id... +I (17214) modbus: ok +I (17214) modbus: add: 0, length: 10 +I (17214) modbus: Read Holding Registers +I (17954) example: expect speed: 0.000000 real_pulses:0 +I (17954) example: new speed:399.000000 +I (18134) modbus tcp: ModBusSlave_recv() +I (18134) modbus: ModbusSlaveProcess()--------------------------- +I (18134) modbus: check id... +I (18144) modbus: ok +I (18144) modbus: add: 0, length: 10 +I (18144) modbus: Read Holding Registers +I (18954) example: expect speed: 0.000000 real_pulses:0 +I (18954) example: new speed:399.000000 +I (19164) modbus tcp: ModBusSlave_recv() +I (19164) modbus: ModbusSlaveProcess()--------------------------- +I (19164) modbus: check id... +I (19164) modbus: ok +I (19164) modbus: add: 0, length: 10 +I (19164) modbus: Read Holding Registers +I (19954) example: expect speed: 0.000000 real_pulses:0 +I (19954) example: new speed:399.000000 +I (20184) modbus tcp: ModBusSlave_recv() +I (20184) modbus: ModbusSlaveProcess()--------------------------- +I (20184) modbus: check id... +I (20184) modbus: ok +I (20194) modbus: add: 0, length: 10 +I (20194) modbus: Read Holding Registers +I (20954) example: expect speed: 0.000000 real_pulses:0 +I (20954) example: new speed:399.000000 +I (21204) modbus tcp: ModBusSlave_recv() +I (21204) modbus: ModbusSlaveProcess()--------------------------- +I (21204) modbus: check id... +I (21204) modbus: ok +I (21204) modbus: add: 0, length: 10 +I (21214) modbus: Read Holding Registers +I (21954) example: expect speed: 0.000000 real_pulses:0 +I (21954) example: new speed:399.000000 +I (22234) modbus tcp: ModBusSlave_recv() +I (22234) modbus: ModbusSlaveProcess()--------------------------- +I (22234) modbus: check id... +I (22234) modbus: ok +I (22234) modbus: add: 0, length: 10 +I (22234) modbus: Read Holding Registers +I (22954) example: expect speed: 0.000000 real_pulses:0 +I (22954) example: new speed:399.000000 +I (23254) modbus tcp: ModBusSlave_recv() +I (23254) modbus: ModbusSlaveProcess()--------------------------- +I (23254) modbus: check id... +I (23254) modbus: ok +I (23254) modbus: add: 0, length: 10 +I (23254) modbus: Read Holding Registers +I (23954) example: expect speed: 0.000000 real_pulses:0 +I (23954) example: new speed:399.000000 +I (24284) modbus tcp: ModBusSlave_recv() +I (24284) modbus: ModbusSlaveProcess()--------------------------- +I (24284) modbus: check id... +I (24284) modbus: ok +I (24284) modbus: add: 0, length: 10 +I (24284) modbus: Read Holding Registers +I (24954) example: expect speed: 0.000000 real_pulses:0 +I (24954) example: new speed:399.000000 +I (25304) modbus tcp: ModBusSlave_recv() +I (25304) modbus: ModbusSlaveProcess()--------------------------- +I (25304) modbus: check id... +I (25304) modbus: ok +I (25304) modbus: add: 0, length: 10 +I (25304) modbus: Read Holding Registers +I (25954) example: expect speed: 0.000000 real_pulses:0 +I (25954) example: new speed:399.000000 +I (26324) modbus tcp: ModBusSlave_recv() +I (26324) modbus: ModbusSlaveProcess()--------------------------- +I (26324) modbus: check id... +I (26324) modbus: ok +I (26324) modbus: add: 0, length: 10 +I (26324) modbus: Read Holding Registers +I (26954) example: expect speed: 0.000000 real_pulses:0 +I (26954) example: new speed:399.000000 +I (27364) modbus tcp: ModBusSlave_recv() +I (27364) modbus: ModbusSlaveProcess()--------------------------- +I (27364) modbus: check id... +I (27364) modbus: ok +I (27364) modbus: add: 0, length: 10 +I (27364) modbus: Read Holding Registers +I (27954) example: expect speed: 0.000000 real_pulses:0 +I (27954) example: new speed:399.000000 +I (28954) example: expect speed: 0.000000 real_pulses:0 +I (28954) example: new speed:399.000000 +I (29504) modbus tcp: ModBusSlave_recv() +I (29504) modbus: ModbusSlaveProcess()--------------------------- +I (29504) modbus: check id... +I (29504) modbus: ok +I (29504) modbus: add: 0, length: 10 +I (29504) modbus: Read Holding Registers +I (29954) example: expect speed: 0.000000 real_pulses:0 +I (29954) example: new speed:399.000000 +I (30954) example: expect speed: 0.000000 real_pulses:0 +I (30954) example: new speed:399.000000 +I (31244) modbus tcp: ModBusSlave_recv() +I (31244) modbus: ModbusSlaveProcess()--------------------------- +I (31244) modbus: check id... +I (31244) modbus: ok +I (31244) modbus: add: 0, length: 10 +I (31244) modbus: Read Holding Registers +I (31954) example: expect speed: 0.000000 real_pulses:0 +I (31954) example: new speed:399.000000 +I (32274) modbus tcp: ModBusSlave_recv() +I (32274) modbus: ModbusSlaveProcess()--------------------------- +I (32274) modbus: check id... +I (32274) modbus: ok +I (32274) modbus: add: 0, length: 10 +I (32274) modbus: Read Holding Registers +I (32954) example: expect speed: 0.000000 real_pulses:0 +I (32954) example: new speed:399.000000 +I (33224) modbus tcp: ModBusSlave_recv() +I (33224) modbus: ModbusSlaveProcess()--------------------------- +I (33224) modbus: check id... +I (33224) modbus: ok +I (33224) modbus: add: 0, length: 10 +I (33224) modbus: Read Holding Registers +I (33954) example: expect speed: 0.000000 real_pulses:0 +I (33954) example: new speed:399.000000 +I (34214) modbus tcp: ModBusSlave_recv() +I (34214) modbus: ModbusSlaveProcess()--------------------------- +I (34214) modbus: check id... +I (34214) modbus: ok +I (34214) modbus: add: 0, length: 10 +I (34214) modbus: Read Holding Registers +I (34954) example: expect speed: 0.000000 real_pulses:0 +I (34954) example: new speed:399.000000 +I (35334) modbus tcp: ModBusSlave_recv() +I (35334) modbus: ModbusSlaveProcess()--------------------------- +I (35344) modbus: check id... +I (35344) modbus: ok +I (35344) modbus: add: 0, length: 10 +I (35344) modbus: Read Holding Registers +I (35954) example: expect speed: 0.000000 real_pulses:0 +I (35954) example: new speed:399.000000 +I (36264) modbus tcp: ModBusSlave_recv() +I (36264) modbus: ModbusSlaveProcess()--------------------------- +I (36264) modbus: check id... +I (36264) modbus: ok +I (36264) modbus: add: 0, length: 10 +I (36264) modbus: Read Holding Registers +I (36954) example: expect speed: 0.000000 real_pulses:0 +I (36954) example: new speed:399.000000 +I (37284) modbus tcp: ModBusSlave_recv() +I (37284) modbus: ModbusSlaveProcess()--------------------------- +I (37284) modbus: check id... +I (37284) modbus: ok +I (37284) modbus: add: 0, length: 10 +I (37284) modbus: Read Holding Registers +I (37954) example: expect speed: 0.000000 real_pulses:0 +I (37954) example: new speed:399.000000 +I (38304) modbus tcp: ModBusSlave_recv() +I (38304) modbus: ModbusSlaveProcess()--------------------------- +I (38304) modbus: check id... +I (38304) modbus: ok +I (38304) modbus: add: 0, length: 10 +I (38314) modbus: Read Holding Registers +I (38954) example: expect speed: 0.000000 real_pulses:0 +I (38954) example: new speed:399.000000 +I (39334) modbus tcp: ModBusSlave_recv() +I (39334) modbus: ModbusSlaveProcess()--------------------------- +I (39334) modbus: check id... +I (39334) modbus: ok +I (39334) modbus: add: 0, length: 10 +I (39334) modbus: Read Holding Registers +I (39954) example: expect speed: 0.000000 real_pulses:0 +I (39954) example: new speed:399.000000 +I (40364) modbus tcp: ModBusSlave_recv() +I (40364) modbus: ModbusSlaveProcess()--------------------------- +I (40364) modbus: check id... +I (40364) modbus: ok +I (40364) modbus: add: 0, length: 10 +I (40364) modbus: Read Holding Registers +I (40954) example: expect speed: 0.000000 real_pulses:0 +I (40954) example: new speed:399.000000 +I (41384) modbus tcp: ModBusSlave_recv() +I (41384) modbus: ModbusSlaveProcess()--------------------------- +I (41384) modbus: check id... +I (41384) modbus: ok +I (41384) modbus: add: 0, length: 10 +I (41384) modbus: Read Holding Registers +I (41954) example: expect speed: 0.000000 real_pulses:0 +I (41954) example: new speed:399.000000 +I (42404) modbus tcp: ModBusSlave_recv() +I (42404) modbus: ModbusSlaveProcess()--------------------------- +I (42404) modbus: check id... +I (42404) modbus: ok +I (42404) modbus: add: 0, length: 10 +I (42404) modbus: Read Holding Registers +I (42954) example: expect speed: 0.000000 real_pulses:0 +I (42954) example: new speed:399.000000 +I (43434) modbus tcp: ModBusSlave_recv() +I (43434) modbus: ModbusSlaveProcess()--------------------------- +I (43434) modbus: check id... +I (43434) modbus: ok +I (43434) modbus: add: 0, length: 10 +I (43434) modbus: Read Holding Registers +I (43954) example: expect speed: 0.000000 real_pulses:0 +I (43954) example: new speed:399.000000 +I (44454) modbus tcp: ModBusSlave_recv() +I (44454) modbus: ModbusSlaveProcess()--------------------------- +I (44454) modbus: check id... +I (44454) modbus: ok +I (44454) modbus: add: 0, length: 10 +I (44454) modbus: Read Holding Registers +I (44954) example: expect speed: 0.000000 real_pulses:0 +I (44954) example: new speed:399.000000 +I (45474) modbus tcp: ModBusSlave_recv() +I (45474) modbus: ModbusSlaveProcess()--------------------------- +I (45474) modbus: check id... +I (45474) modbus: ok +I (45474) modbus: add: 0, length: 10 +I (45474) modbus: Read Holding Registers +I (45954) example: expect speed: 0.000000 real_pulses:0 +I (45954) example: new speed:399.000000 +I (46504) modbus tcp: ModBusSlave_recv() +I (46504) modbus: ModbusSlaveProcess()--------------------------- +I (46504) modbus: check id... +I (46504) modbus: ok +I (46504) modbus: add: 0, length: 10 +I (46504) modbus: Read Holding Registers +I (46954) example: expect speed: 0.000000 real_pulses:0 +I (46954) example: new speed:399.000000 +I (47534) modbus tcp: ModBusSlave_recv() +I (47534) modbus: ModbusSlaveProcess()--------------------------- +I (47534) modbus: check id... +I (47534) modbus: ok +I (47534) modbus: add: 0, length: 10 +I (47534) modbus: Read Holding Registers +I (47954) example: expect speed: 0.000000 real_pulses:0 +I (47954) example: new speed:399.000000 +I (48584) modbus tcp: ModBusSlave_recv() +I (48584) modbus: ModbusSlaveProcess()--------------------------- +I (48584) modbus: check id... +I (48584) modbus: ok +I (48584) modbus: add: 0, length: 10 +I (48584) modbus: Read Holding Registers +I (48954) example: expect speed: 0.000000 real_pulses:0 +I (48954) example: new speed:399.000000 +I (49954) example: expect speed: 0.000000 real_pulses:0 +I (49954) example: new speed:399.000000 +I (50594) modbus tcp: ModBusSlave_recv() +I (50594) modbus: ModbusSlaveProcess()--------------------------- +I (50594) modbus: check id... +I (50594) modbus: ok +I (50594) modbus: add: 0, length: 10 +I (50594) modbus: Read Holding Registers +I (50954) example: expect speed: 0.000000 real_pulses:0 +I (50954) example: new speed:399.000000 +I (51954) example: expect speed: 0.000000 real_pulses:0 +I (51954) example: new speed:399.000000 +I (52954) example: expect speed: 0.000000 real_pulses:0 +I (52954) example: new speed:399.000000 +I (53054) modbus tcp: ModBusSlave_recv() +I (53054) modbus: ModbusSlaveProcess()--------------------------- +I (53054) modbus: check id... +I (53054) modbus: ok +I (53054) modbus: add: 0, length: 10 +I (53054) modbus: Read Holding Registers +I (53954) example: expect speed: 0.000000 real_pulses:0 +I (53954) example: new speed:399.000000 +I (54954) example: expect speed: 0.000000 real_pulses:0 +I (54954) example: new speed:399.000000 +I (55514) modbus tcp: ModBusSlave_recv() +I (55514) modbus: ModbusSlaveProcess()--------------------------- +I (55514) modbus: check id... +I (55514) modbus: ok +I (55514) modbus: add: 0, length: 10 +I (55514) modbus: Read Holding Registers +I (55954) example: expect speed: 0.000000 real_pulses:0 +I (55954) example: new speed:399.000000 +I (56954) example: expect speed: 0.000000 real_pulses:0 +I (56954) example: new speed:399.000000 +I (57954) example: expect speed: 0.000000 real_pulses:0 +I (57954) example: new speed:399.000000 +I (58074) modbus tcp: ModBusSlave_recv() +I (58074) modbus: ModbusSlaveProcess()--------------------------- +I (58074) modbus: check id... +I (58074) modbus: ok +I (58074) modbus: add: 0, length: 10 +I (58074) modbus: Read Holding Registers +I (58954) example: expect speed: 0.000000 real_pulses:0 +I (58954) example: new speed:399.000000 +I (59194) modbus tcp: ModBusSlave_recv() +I (59194) modbus: ModbusSlaveProcess()--------------------------- +I (59204) modbus: check id... +I (59204) modbus: ok +I (59204) modbus: add: 0, length: 10 +I (59204) modbus: Read Holding Registers +I (59954) example: expect speed: 0.000000 real_pulses:0 +I (59954) example: new speed:399.000000 +I (60254) modbus tcp: ModBusSlave_recv() +I (60254) modbus: ModbusSlaveProcess()--------------------------- +I (60254) modbus: check id... +I (60254) modbus: ok +I (60254) modbus: add: 0, length: 10 +I (60254) modbus: Read Holding Registers +I (60954) example: expect speed: 0.000000 real_pulses:0 +I (60954) example: new speed:399.000000 +I (61254) modbus tcp: ModBusSlave_recv() +I (61254) modbus: ModbusSlaveProcess()--------------------------- +I (61254) modbus: check id... +I (61254) modbus: ok +I (61254) modbus: add: 0, length: 10 +I (61254) modbus: Read Holding Registers +I (61954) example: expect speed: 0.000000 real_pulses:0 +I (61954) example: new speed:399.000000 +I (62264) modbus tcp: ModBusSlave_recv() +I (62264) modbus: ModbusSlaveProcess()--------------------------- +I (62274) modbus: check id... +I (62274) modbus: ok +I (62274) modbus: add: 0, length: 10 +I (62274) modbus: Read Holding Registers +I (62954) example: expect speed: 0.000000 real_pulses:0 +I (62954) example: new speed:399.000000 +I (63244) modbus tcp: ModBusSlave_recv() +I (63244) modbus: ModbusSlaveProcess()--------------------------- +I (63244) modbus: check id... +I (63244) modbus: ok +I (63244) modbus: add: 0, length: 10 +I (63244) modbus: Read Holding Registers +I (63954) example: expect speed: 0.000000 real_pulses:0 +I (63954) example: new speed:399.000000 +I (64224) modbus tcp: ModBusSlave_recv() +I (64224) modbus: ModbusSlaveProcess()--------------------------- +I (64224) modbus: check id... +I (64224) modbus: ok +I (64224) modbus: add: 0, length: 10 +I (64224) modbus: Read Holding Registers +I (64954) example: expect speed: 0.000000 real_pulses:0 +I (64954) example: new speed:399.000000 +I (65234) modbus tcp: ModBusSlave_recv() +I (65234) modbus: ModbusSlaveProcess()--------------------------- +I (65234) modbus: check id... +I (65244) modbus: ok +I (65244) modbus: add: 0, length: 10 +I (65244) modbus: Read Holding Registers +I (65954) example: expect speed: 0.000000 real_pulses:0 +I (65954) example: new speed:399.000000 +I (66264) modbus tcp: ModBusSlave_recv() +I (66264) modbus: ModbusSlaveProcess()--------------------------- +I (66264) modbus: check id... +I (66264) modbus: ok +I (66264) modbus: add: 0, length: 10 +I (66264) modbus: Read Holding Registers +I (66574) modbus tcp: ModBusSlave_recv() +I (66574) modbus: ModbusSlaveProcess()--------------------------- +I (66574) modbus: check id... +I (66574) modbus: ok +I (66574) modbus: add: 0, length: 2 +I (66574) modbus: Write Single Register +I (66574) modbus: gwordvar[0]=2 +I (66954) example: expect speed: 0.000000 real_pulses:0 +I (66954) example: new speed:399.000000 +I (67284) modbus tcp: ModBusSlave_recv() +I (67284) modbus: ModbusSlaveProcess()--------------------------- +I (67284) modbus: check id... +I (67284) modbus: ok +I (67284) modbus: add: 0, length: 10 +I (67284) modbus: Read Holding Registers +I (67954) example: expect speed: 0.000000 real_pulses:0 +I (67954) example: new speed:399.000000 +I (68314) modbus tcp: ModBusSlave_recv() +I (68314) modbus: ModbusSlaveProcess()--------------------------- +I (68314) modbus: check id... +I (68314) modbus: ok +I (68314) modbus: add: 0, length: 10 +I (68314) modbus: Read Holding Registers +I (68954) example: expect speed: 0.000000 real_pulses:0 +I (68954) example: new speed:399.000000 +I (69334) modbus tcp: ModBusSlave_recv() +I (69334) modbus: ModbusSlaveProcess()--------------------------- +I (69334) modbus: check id... +I (69334) modbus: ok +I (69334) modbus: add: 0, length: 10 +I (69334) modbus: Read Holding Registers +I (69954) example: expect speed: 0.000000 real_pulses:0 +I (69954) example: new speed:399.000000 +I (70364) modbus tcp: ModBusSlave_recv() +I (70374) modbus: ModbusSlaveProcess()--------------------------- +I (70374) modbus: check id... +I (70374) modbus: ok +I (70374) modbus: add: 0, length: 10 +I (70374) modbus: Read Holding Registers +I (70954) example: expect speed: 0.000000 real_pulses:0 +I (70954) example: new speed:399.000000 +I (71384) modbus tcp: ModBusSlave_recv() +I (71384) modbus: ModbusSlaveProcess()--------------------------- +I (71384) modbus: check id... +I (71384) modbus: ok +I (71384) modbus: add: 0, length: 10 +I (71384) modbus: Read Holding Registers +I (71954) example: expect speed: 0.000000 real_pulses:0 +I (71954) example: new speed:399.000000 +I (72404) modbus tcp: ModBusSlave_recv() +I (72404) modbus: ModbusSlaveProcess()--------------------------- +I (72404) modbus: check id... +I (72414) modbus: ok +I (72414) modbus: add: 0, length: 10 +I (72414) modbus: Read Holding Registers +I (72954) example: expect speed: 0.000000 real_pulses:0 +I (72954) example: new speed:399.000000 +I (73434) modbus tcp: ModBusSlave_recv() +I (73434) modbus: ModbusSlaveProcess()--------------------------- +I (73434) modbus: check id... +I (73434) modbus: ok +I (73434) modbus: add: 0, length: 10 +I (73434) modbus: Read Holding Registers +I (73954) example: expect speed: 0.000000 real_pulses:0 +I (73954) example: new speed:399.000000 +I (74454) modbus tcp: ModBusSlave_recv() +I (74454) modbus: ModbusSlaveProcess()--------------------------- +I (74454) modbus: check id... +I (74454) modbus: ok +I (74454) modbus: add: 0, length: 10 +I (74454) modbus: Read Holding Registers +I (74954) example: expect speed: 0.000000 real_pulses:0 +I (74954) example: new speed:399.000000 +I (75374) modbus tcp: ModBusSlave_recv() +I (75374) modbus: ModbusSlaveProcess()--------------------------- +I (75384) modbus: check id... +I (75384) modbus: ok +I (75384) modbus: add: 0, length: 10 +I (75384) modbus: Read Holding Registers +I (75954) example: expect speed: 0.000000 real_pulses:0 +I (75954) example: new speed:399.000000 +I (76314) modbus tcp: ModBusSlave_recv() +I (76314) modbus: ModbusSlaveProcess()--------------------------- +I (76314) modbus: check id... +I (76314) modbus: ok +I (76314) modbus: add: 1, length: 1 +I (76314) modbus: Write Single Register +I (76314) modbus: gwordvar[1]=1 +I (76404) modbus tcp: ModBusSlave_recv() +I (76404) modbus: ModbusSlaveProcess()--------------------------- +I (76404) modbus: check id... +I (76404) modbus: ok +I (76404) modbus: add: 0, length: 10 +I (76404) modbus: Read Holding Registers +I (76954) example: expect speed: 2.000000 real_pulses:0 +I (76954) example: new speed:399.000000 +I (77424) modbus tcp: ModBusSlave_recv() +I (77424) modbus: ModbusSlaveProcess()--------------------------- +I (77424) modbus: check id... +I (77424) modbus: ok +I (77424) modbus: add: 0, length: 10 +I (77424) modbus: Read Holding Registers +I (77954) example: expect speed: 2.000000 real_pulses:0 +I (77954) example: new speed:399.000000 +I (78444) modbus tcp: ModBusSlave_recv() +I (78444) modbus: ModbusSlaveProcess()--------------------------- +I (78444) modbus: check id... +I (78444) modbus: ok +I (78444) modbus: add: 0, length: 10 +I (78444) modbus: Read Holding Registers +I (78954) example: expect speed: 2.000000 real_pulses:0 +I (78954) example: new speed:399.000000 +I (79504) modbus tcp: ModBusSlave_recv() +I (79504) modbus: ModbusSlaveProcess()--------------------------- +I (79504) modbus: check id... +I (79504) modbus: ok +I (79504) modbus: add: 0, length: 10 +I (79504) modbus: Read Holding Registers +I (79954) example: expect speed: 2.000000 real_pulses:0 +I (79954) example: new speed:399.000000 +I (80494) modbus tcp: ModBusSlave_recv() +I (80494) modbus: ModbusSlaveProcess()--------------------------- +I (80494) modbus: check id... +I (80494) modbus: ok +I (80494) modbus: add: 0, length: 10 +I (80494) modbus: Read Holding Registers +I (80954) example: expect speed: 2.000000 real_pulses:0 +I (80954) example: new speed:399.000000 +I (81524) modbus tcp: ModBusSlave_recv() +I (81524) modbus: ModbusSlaveProcess()--------------------------- +I (81524) modbus: check id... +I (81524) modbus: ok +I (81524) modbus: add: 0, length: 10 +I (81524) modbus: Read Holding Registers +I (81954) example: expect speed: 2.000000 real_pulses:0 +I (81954) example: new speed:399.000000 +I (82544) modbus tcp: ModBusSlave_recv() +I (82544) modbus: ModbusSlaveProcess()--------------------------- +I (82544) modbus: check id... +I (82544) modbus: ok +I (82544) modbus: add: 0, length: 10 +I (82544) modbus: Read Holding Registers +I (82954) example: expect speed: 2.000000 real_pulses:0 +I (82954) example: new speed:399.000000 +I (83574) modbus tcp: ModBusSlave_recv() +I (83574) modbus: ModbusSlaveProcess()--------------------------- +I (83574) modbus: check id... +I (83574) modbus: ok +I (83574) modbus: add: 0, length: 10 +I (83574) modbus: Read Holding Registers +I (83954) example: expect speed: 2.000000 real_pulses:0 +I (83954) example: new speed:399.000000 +I (84594) modbus tcp: ModBusSlave_recv() +I (84594) modbus: ModbusSlaveProcess()--------------------------- +I (84594) modbus: check id... +I (84594) modbus: ok +I (84594) modbus: add: 0, length: 10 +I (84594) modbus: Read Holding Registers +I (84954) example: expect speed: 2.000000 real_pulses:0 +I (84954) example: new speed:399.000000 +I (85614) modbus tcp: ModBusSlave_recv() +I (85614) modbus: ModbusSlaveProcess()--------------------------- +I (85614) modbus: check id... +I (85614) modbus: ok +I (85614) modbus: add: 0, length: 10 +I (85614) modbus: Read Holding Registers +I (85954) example: expect speed: 2.000000 real_pulses:0 +I (85954) example: new speed:399.000000 +I (86644) modbus tcp: ModBusSlave_recv() +I (86644) modbus: ModbusSlaveProcess()--------------------------- +I (86644) modbus: check id... +I (86644) modbus: ok +I (86654) modbus: add: 0, length: 10 +I (86654) modbus: Read Holding Registers +I (86954) example: expect speed: 2.000000 real_pulses:0 +I (86954) example: new speed:399.000000 +I (87664) modbus tcp: ModBusSlave_recv() +I (87664) modbus: ModbusSlaveProcess()--------------------------- +I (87664) modbus: check id... +I (87664) modbus: ok +I (87664) modbus: add: 0, length: 10 +I (87664) modbus: Read Holding Registers +I (87954) example: expect speed: 2.000000 real_pulses:0 +I (87954) example: new speed:399.000000 +I (88694) modbus tcp: ModBusSlave_recv() +I (88694) modbus: ModbusSlaveProcess()--------------------------- +I (88694) modbus: check id... +I (88694) modbus: ok +I (88694) modbus: add: 0, length: 10 +I (88694) modbus: Read Holding Registers +I (88954) example: expect speed: 2.000000 real_pulses:0 +I (88954) example: new speed:399.000000 +I (89614) modbus tcp: ModBusSlave_recv() +I (89614) modbus: ModbusSlaveProcess()--------------------------- +I (89614) modbus: check id... +I (89614) modbus: ok +I (89614) modbus: add: 0, length: 10 +I (89614) modbus: Read Holding Registers +I (89954) example: expect speed: 2.000000 real_pulses:0 +I (89954) example: new speed:399.000000 +I (90674) modbus tcp: ModBusSlave_recv() +I (90674) modbus: ModbusSlaveProcess()--------------------------- +I (90674) modbus: check id... +I (90674) modbus: ok +I (90674) modbus: add: 0, length: 10 +I (90674) modbus: Read Holding Registers +I (90954) example: expect speed: 2.000000 real_pulses:0 +I (90954) example: new speed:399.000000 +I (91654) modbus tcp: ModBusSlave_recv() +I (91654) modbus: ModbusSlaveProcess()--------------------------- +I (91654) modbus: check id... +I (91654) modbus: ok +I (91654) modbus: add: 0, length: 10 +I (91654) modbus: Read Holding Registers +I (91954) example: expect speed: 2.000000 real_pulses:0 +I (91954) example: new speed:399.000000 +I (92714) modbus tcp: ModBusSlave_recv() +I (92714) modbus: ModbusSlaveProcess()--------------------------- +I (92714) modbus: check id... +I (92714) modbus: ok +I (92714) modbus: add: 0, length: 10 +I (92714) modbus: Read Holding Registers +I (92954) example: expect speed: 2.000000 real_pulses:0 +I (92954) example: new speed:399.000000 +I (93704) modbus tcp: ModBusSlave_recv() +I (93704) modbus: ModbusSlaveProcess()--------------------------- +I (93704) modbus: check id... +I (93704) modbus: ok +I (93704) modbus: add: 0, length: 10 +I (93704) modbus: Read Holding Registers +I (93954) example: expect speed: 2.000000 real_pulses:0 +I (93954) example: new speed:399.000000 +I (94744) modbus tcp: ModBusSlave_recv() +I (94744) modbus: ModbusSlaveProcess()--------------------------- +I (94744) modbus: check id... +I (94744) modbus: ok +I (94744) modbus: add: 0, length: 10 +I (94744) modbus: Read Holding Registers +I (94954) example: expect speed: 2.000000 real_pulses:0 +I (94954) example: new speed:399.000000 +I (95754) modbus tcp: ModBusSlave_recv() +I (95754) modbus: ModbusSlaveProcess()--------------------------- +I (95754) modbus: check id... +I (95754) modbus: ok +I (95754) modbus: add: 0, length: 10 +I (95754) modbus: Read Holding Registers +I (95954) example: expect speed: 2.000000 real_pulses:0 +I (95954) example: new speed:399.000000 +I (96774) modbus tcp: ModBusSlave_recv() +I (96774) modbus: ModbusSlaveProcess()--------------------------- +I (96774) modbus: check id... +I (96774) modbus: ok +I (96774) modbus: add: 0, length: 10 +I (96774) modbus: Read Holding Registers +I (96954) example: expect speed: 2.000000 real_pulses:0 +I (96954) example: new speed:399.000000 +I (97804) modbus tcp: ModBusSlave_recv() +I (97804) modbus: ModbusSlaveProcess()--------------------------- +I (97804) modbus: check id... +I (97804) modbus: ok +I (97804) modbus: add: 0, length: 10 +I (97804) modbus: Read Holding Registers +I (97954) example: expect speed: 2.000000 real_pulses:0 +I (97954) example: new speed:399.000000 +I (98824) modbus tcp: ModBusSlave_recv() +I (98824) modbus: ModbusSlaveProcess()--------------------------- +I (98824) modbus: check id... +I (98824) modbus: ok +I (98824) modbus: add: 0, length: 10 +I (98824) modbus: Read Holding Registers +I (98954) example: expect speed: 2.000000 real_pulses:0 +I (98954) example: new speed:399.000000 +I (99854) modbus tcp: ModBusSlave_recv() +I (99854) modbus: ModbusSlaveProcess()--------------------------- +I (99854) modbus: check id... +I (99854) modbus: ok +I (99854) modbus: add: 0, length: 10 +I (99854) modbus: Read Holding Registers +I (99954) example: expect speed: 2.000000 real_pulses:0 +I (99954) example: new speed:399.000000 +I (100954) example: expect speed: 2.000000 real_pulses:0 +I (100954) example: new speed:399.000000 +I (100964) modbus tcp: ModBusSlave_recv() +I (100964) modbus: ModbusSlaveProcess()--------------------------- +I (100964) modbus: check id... +I (100964) modbus: ok +I (100964) modbus: add: 0, length: 10 +I (100964) modbus: Read Holding Registers +I (101954) example: expect speed: 2.000000 real_pulses:0 +I (101954) example: new speed:399.000000 +I (102004) modbus tcp: ModBusSlave_recv() +I (102004) modbus: ModbusSlaveProcess()--------------------------- +I (102004) modbus: check id... +I (102004) modbus: ok +I (102004) modbus: add: 0, length: 10 +I (102004) modbus: Read Holding Registers +I (102954) example: expect speed: 2.000000 real_pulses:0 +I (102954) example: new speed:399.000000 +I (103944) modbus tcp: ModBusSlave_recv() +I (103944) modbus: ModbusSlaveProcess()--------------------------- +I (103944) modbus: check id... +I (103944) modbus: ok +I (103944) modbus: add: 0, length: 10 +I (103944) modbus: Read Holding Registers +I (103954) example: expect speed: 2.000000 real_pulses:0 +I (103954) example: new speed:399.000000 +I (104954) example: expect speed: 2.000000 real_pulses:0 +I (104954) example: new speed:399.000000 +I (105954) example: expect speed: 2.000000 real_pulses:0 +I (105954) example: new speed:399.000000 +I (106104) modbus tcp: ModBusSlave_recv() +I (106104) modbus: ModbusSlaveProcess()--------------------------- +I (106104) modbus: check id... +I (106104) modbus: ok +I (106104) modbus: add: 0, length: 10 +I (106104) modbus: Read Holding Registers +I (106954) example: expect speed: 2.000000 real_pulses:0 +I (106954) example: new speed:399.000000 +I (107124) modbus tcp: ModBusSlave_recv() +I (107124) modbus: ModbusSlaveProcess()--------------------------- +I (107124) modbus: check id... +I (107124) modbus: ok +I (107124) modbus: add: 0, length: 10 +I (107124) modbus: Read Holding Registers +I (107954) example: expect speed: 2.000000 real_pulses:0 +I (107954) example: new speed:399.000000 +I (108204) modbus tcp: ModBusSlave_recv() +I (108204) modbus: ModbusSlaveProcess()--------------------------- +I (108204) modbus: check id... +I (108204) modbus: ok +I (108204) modbus: add: 0, length: 10 +I (108204) modbus: Read Holding Registers +I (108954) example: expect speed: 2.000000 real_pulses:0 +I (108954) example: new speed:399.000000 +I (109274) modbus tcp: ModBusSlave_recv() +I (109274) modbus: ModbusSlaveProcess()--------------------------- +I (109274) modbus: check id... +I (109274) modbus: ok +I (109274) modbus: add: 0, length: 10 +I (109274) modbus: Read Holding Registers +I (109954) example: expect speed: 2.000000 real_pulses:0 +I (109954) example: new speed:399.000000 +I (110954) example: expect speed: 2.000000 real_pulses:0 +I (110954) example: new speed:399.000000 +I (111624) modbus tcp: ModBusSlave_recv() +I (111624) modbus: ModbusSlaveProcess()--------------------------- +I (111624) modbus: check id... +I (111624) modbus: ok +I (111624) modbus: add: 0, length: 10 +I (111624) modbus: Read Holding Registers +I (111954) example: expect speed: 2.000000 real_pulses:0 +I (111954) example: new speed:399.000000 +I (112954) example: expect speed: 2.000000 real_pulses:0 +I (112954) example: new speed:399.000000 +I (113954) example: expect speed: 2.000000 real_pulses:0 +I (113954) example: new speed:399.000000 +I (114294) modbus tcp: ModBusSlave_recv() +I (114294) modbus: ModbusSlaveProcess()--------------------------- +I (114294) modbus: check id... +I (114294) modbus: ok +I (114294) modbus: add: 0, length: 10 +I (114294) modbus: Read Holding Registers +I (114954) example: expect speed: 2.000000 real_pulses:0 +I (114954) example: new speed:399.000000 +I (115414) modbus tcp: ModBusSlave_recv() +I (115414) modbus: ModbusSlaveProcess()--------------------------- +I (115414) modbus: check id... +I (115414) modbus: ok +I (115414) modbus: add: 0, length: 10 +I (115414) modbus: Read Holding Registers +I (115954) example: expect speed: 2.000000 real_pulses:0 +I (115954) example: new speed:399.000000 +I (116954) example: expect speed: 2.000000 real_pulses:0 +I (116954) example: new speed:399.000000 +I (117834) modbus tcp: ModBusSlave_recv() +I (117834) modbus: ModbusSlaveProcess()--------------------------- +I (117834) modbus: check id... +I (117834) modbus: ok +I (117834) modbus: add: 0, length: 10 +I (117834) modbus: Read Holding Registers +I (117954) example: expect speed: 2.000000 real_pulses:0 +I (117954) example: new speed:399.000000 +I (118954) example: expect speed: 2.000000 real_pulses:0 +I (118954) example: new speed:399.000000 +I (119164) modbus tcp: ModBusSlave_recv() +I (119164) modbus: ModbusSlaveProcess()--------------------------- +I (119164) modbus: check id... +I (119164) modbus: ok +I (119164) modbus: add: 0, length: 10 +I (119164) modbus: Read Holding Registers +I (119954) example: expect speed: 2.000000 real_pulses:0 +I (119954) example: new speed:399.000000 +I (120234) modbus tcp: ModBusSlave_recv() +I (120234) modbus: ModbusSlaveProcess()--------------------------- +I (120234) modbus: check id... +I (120234) modbus: ok +I (120234) modbus: add: 0, length: 10 +I (120234) modbus: Read Holding Registers +I (120954) example: expect speed: 2.000000 real_pulses:0 +I (120954) example: new speed:399.000000 +I (121254) modbus tcp: ModBusSlave_recv() +I (121254) modbus: ModbusSlaveProcess()--------------------------- +I (121254) modbus: check id... +I (121254) modbus: ok +I (121254) modbus: add: 0, length: 10 +I (121254) modbus: Read Holding Registers +I (121954) example: expect speed: 2.000000 real_pulses:0 +I (121954) example: new speed:399.000000 +I (122274) modbus tcp: ModBusSlave_recv() +I (122274) modbus: ModbusSlaveProcess()--------------------------- +I (122274) modbus: check id... +I (122274) modbus: ok +I (122274) modbus: add: 0, length: 10 +I (122274) modbus: Read Holding Registers +I (122954) example: expect speed: 2.000000 real_pulses:0 +I (122954) example: new speed:399.000000 +I (123334) modbus tcp: ModBusSlave_recv() +I (123334) modbus: ModbusSlaveProcess()--------------------------- +I (123334) modbus: check id... +I (123334) modbus: ok +I (123334) modbus: add: 0, length: 10 +I (123334) modbus: Read Holding Registers +I (123954) example: expect speed: 2.000000 real_pulses:0 +I (123954) example: new speed:399.000000 +I (124354) modbus tcp: ModBusSlave_recv() +I (124354) modbus: ModbusSlaveProcess()--------------------------- +I (124354) modbus: check id... +I (124354) modbus: ok +I (124354) modbus: add: 0, length: 10 +I (124354) modbus: Read Holding Registers +I (124954) example: expect speed: 2.000000 real_pulses:0 +I (124954) example: new speed:399.000000 +I (125354) modbus tcp: ModBusSlave_recv() +I (125354) modbus: ModbusSlaveProcess()--------------------------- +I (125354) modbus: check id... +I (125354) modbus: ok +I (125354) modbus: add: 0, length: 10 +I (125354) modbus: Read Holding Registers +I (125954) example: expect speed: 2.000000 real_pulses:0 +I (125954) example: new speed:399.000000 +I (126374) modbus tcp: ModBusSlave_recv() +I (126374) modbus: ModbusSlaveProcess()--------------------------- +I (126374) modbus: check id... +I (126374) modbus: ok +I (126374) modbus: add: 0, length: 10 +I (126374) modbus: Read Holding Registers +I (126954) example: expect speed: 2.000000 real_pulses:0 +I (126954) example: new speed:399.000000 +I (127394) modbus tcp: ModBusSlave_recv() +I (127394) modbus: ModbusSlaveProcess()--------------------------- +I (127394) modbus: check id... +I (127394) modbus: ok +I (127394) modbus: add: 0, length: 10 +I (127394) modbus: Read Holding Registers +I (127954) example: expect speed: 2.000000 real_pulses:0 +I (127954) example: new speed:399.000000 +I (128424) modbus tcp: ModBusSlave_recv() +I (128424) modbus: ModbusSlaveProcess()--------------------------- +I (128424) modbus: check id... +I (128424) modbus: ok +I (128424) modbus: add: 0, length: 10 +I (128424) modbus: Read Holding Registers +I (128954) example: expect speed: 2.000000 real_pulses:0 +I (128954) example: new speed:399.000000 +I (129344) modbus tcp: ModBusSlave_recv() +I (129344) modbus: ModbusSlaveProcess()--------------------------- +I (129344) modbus: check id... +I (129344) modbus: ok +I (129344) modbus: add: 0, length: 10 +I (129344) modbus: Read Holding Registers +I (129954) example: expect speed: 2.000000 real_pulses:0 +I (129954) example: new speed:399.000000 +I (130364) modbus tcp: ModBusSlave_recv() +I (130364) modbus: ModbusSlaveProcess()--------------------------- +I (130364) modbus: check id... +I (130364) modbus: ok +I (130364) modbus: add: 0, length: 10 +I (130364) modbus: Read Holding Registers +I (130954) example: expect speed: 2.000000 real_pulses:0 +I (130954) example: new speed:399.000000 +I (131394) modbus tcp: ModBusSlave_recv() +I (131394) modbus: ModbusSlaveProcess()--------------------------- +I (131394) modbus: check id... +I (131394) modbus: ok +I (131394) modbus: add: 0, length: 10 +I (131394) modbus: Read Holding Registers +I (131954) example: expect speed: 2.000000 real_pulses:0 +I (131954) example: new speed:399.000000 +I (132424) modbus tcp: ModBusSlave_recv() +I (132424) modbus: ModbusSlaveProcess()--------------------------- +I (132424) modbus: check id... +I (132424) modbus: ok +I (132424) modbus: add: 0, length: 10 +I (132424) modbus: Read Holding Registers +I (132954) example: expect speed: 2.000000 real_pulses:0 +I (132954) example: new speed:399.000000 +I (133434) modbus tcp: ModBusSlave_recv() +I (133434) modbus: ModbusSlaveProcess()--------------------------- +I (133434) modbus: check id... +I (133434) modbus: ok +I (133434) modbus: add: 0, length: 10 +I (133434) modbus: Read Holding Registers +I (133954) example: expect speed: 2.000000 real_pulses:0 +I (133954) example: new speed:399.000000 +I (134464) modbus tcp: ModBusSlave_recv() +I (134464) modbus: ModbusSlaveProcess()--------------------------- +I (134464) modbus: check id... +I (134464) modbus: ok +I (134464) modbus: add: 0, length: 10 +I (134464) modbus: Read Holding Registers +I (134954) example: expect speed: 2.000000 real_pulses:0 +I (134954) example: new speed:399.000000 +I (135484) modbus tcp: ModBusSlave_recv() +I (135484) modbus: ModbusSlaveProcess()--------------------------- +I (135484) modbus: check id... +I (135484) modbus: ok +I (135484) modbus: add: 0, length: 10 +I (135484) modbus: Read Holding Registers +I (135954) example: expect speed: 2.000000 real_pulses:0 +I (135954) example: new speed:399.000000 +I (136954) example: expect speed: 2.000000 real_pulses:0 +I (136954) example: new speed:399.000000 +I (137634) modbus tcp: ModBusSlave_recv() +I (137634) modbus: ModbusSlaveProcess()--------------------------- +I (137634) modbus: check id... +I (137634) modbus: ok +I (137634) modbus: add: 0, length: 10 +I (137634) modbus: Read Holding Registers +I (137954) example: expect speed: 2.000000 real_pulses:0 +I (137954) example: new speed:399.000000 +I (138774) modbus tcp: ModBusSlave_recv() +I (138774) modbus: ModbusSlaveProcess()--------------------------- +I (138774) modbus: check id... +I (138774) modbus: ok +I (138774) modbus: add: 0, length: 10 +I (138774) modbus: Read Holding Registers +I (138954) example: expect speed: 2.000000 real_pulses:0 +I (138954) example: new speed:399.000000 +I (139814) modbus tcp: ModBusSlave_recv() +I (139814) modbus: ModbusSlaveProcess()--------------------------- +I (139814) modbus: check id... +I (139814) modbus: ok +I (139814) modbus: add: 0, length: 10 +I (139814) modbus: Read Holding Registers +I (139954) example: expect speed: 2.000000 real_pulses:0 +I (139954) example: new speed:399.000000 +I (140814) modbus tcp: ModBusSlave_recv() +I (140814) modbus: ModbusSlaveProcess()--------------------------- +I (140814) modbus: check id... +I (140814) modbus: ok +I (140814) modbus: add: 0, length: 10 +I (140814) modbus: Read Holding Registers +I (140954) example: expect speed: 2.000000 real_pulses:0 +I (140954) example: new speed:399.000000 +I (141834) modbus tcp: ModBusSlave_recv() +I (141834) modbus: ModbusSlaveProcess()--------------------------- +I (141834) modbus: check id... +I (141834) modbus: ok +I (141834) modbus: add: 0, length: 10 +I (141834) modbus: Read Holding Registers +I (141954) example: expect speed: 2.000000 real_pulses:0 +I (141954) example: new speed:399.000000 +I (142864) modbus tcp: ModBusSlave_recv() +I (142864) modbus: ModbusSlaveProcess()--------------------------- +I (142864) modbus: check id... +I (142864) modbus: ok +I (142864) modbus: add: 0, length: 10 +I (142864) modbus: Read Holding Registers +I (142954) example: expect speed: 2.000000 real_pulses:0 +I (142954) example: new speed:399.000000 +I (143884) modbus tcp: ModBusSlave_recv() +I (143884) modbus: ModbusSlaveProcess()--------------------------- +I (143884) modbus: check id... +I (143884) modbus: ok +I (143884) modbus: add: 0, length: 10 +I (143884) modbus: Read Holding Registers +I (143954) example: expect speed: 2.000000 real_pulses:0 +I (143954) example: new speed:399.000000 +I (144914) modbus tcp: ModBusSlave_recv() +I (144914) modbus: ModbusSlaveProcess()--------------------------- +I (144914) modbus: check id... +I (144914) modbus: ok +I (144914) modbus: add: 0, length: 10 +I (144914) modbus: Read Holding Registers +I (144954) example: expect speed: 2.000000 real_pulses:0 +I (144954) example: new speed:399.000000 +I (145954) example: expect speed: 2.000000 real_pulses:0 +I (145954) example: new speed:399.000000 +I (145954) modbus tcp: ModBusSlave_recv() +I (145954) modbus: ModbusSlaveProcess()--------------------------- +I (145954) modbus: check id... +I (145954) modbus: ok +I (145954) modbus: add: 0, length: 10 +I (145954) modbus: Read Holding Registers +I (146954) example: expect speed: 2.000000 real_pulses:0 +I (146954) example: new speed:399.000000 +I (147054) modbus tcp: ModBusSlave_recv() +I (147054) modbus: ModbusSlaveProcess()--------------------------- +I (147054) modbus: check id... +I (147054) modbus: ok +I (147054) modbus: add: 0, length: 10 +I (147054) modbus: Read Holding Registers +I (147954) example: expect speed: 2.000000 real_pulses:0 +I (147954) example: new speed:399.000000 +I (147984) modbus tcp: ModBusSlave_recv() +I (147984) modbus: ModbusSlaveProcess()--------------------------- +I (147984) modbus: check id... +I (147984) modbus: ok +I (147984) modbus: add: 0, length: 10 +I (147984) modbus: Read Holding Registers +I (148954) example: expect speed: 2.000000 real_pulses:0 +I (148954) example: new speed:399.000000 +I (149954) example: expect speed: 2.000000 real_pulses:0 +I (149954) example: new speed:399.000000 +I (150024) modbus tcp: ModBusSlave_recv() +I (150024) modbus: ModbusSlaveProcess()--------------------------- +I (150024) modbus: check id... +I (150024) modbus: ok +I (150024) modbus: add: 0, length: 10 +I (150024) modbus: Read Holding Registers +I (150954) example: expect speed: 2.000000 real_pulses:0 +I (150954) example: new speed:399.000000 +I (151664) modbus tcp: ModBusSlave_recv() +I (151664) modbus: ModbusSlaveProcess()--------------------------- +I (151664) modbus: check id... +I (151664) modbus: ok +I (151664) modbus: add: 0, length: 10 +I (151664) modbus: Read Holding Registers +I (151954) example: expect speed: 2.000000 real_pulses:0 +I (151954) example: new speed:399.000000 +I (152954) example: expect speed: 2.000000 real_pulses:0 +I (152954) example: new speed:399.000000 +I (153814) modbus tcp: ModBusSlave_recv() +I (153814) modbus: ModbusSlaveProcess()--------------------------- +I (153814) modbus: check id... +I (153814) modbus: ok +I (153814) modbus: add: 0, length: 10 +I (153814) modbus: Read Holding Registers +I (153954) example: expect speed: 2.000000 real_pulses:0 +I (153954) example: new speed:399.000000 +I (154954) example: expect speed: 2.000000 real_pulses:0 +I (154954) example: new speed:399.000000 +I (155954) example: expect speed: 2.000000 real_pulses:0 +I (155954) example: new speed:399.000000 +I (156184) modbus tcp: ModBusSlave_recv() +I (156184) modbus: ModbusSlaveProcess()--------------------------- +I (156184) modbus: check id... +I (156184) modbus: ok +I (156184) modbus: add: 0, length: 10 +I (156184) modbus: Read Holding Registers +I (156954) example: expect speed: 2.000000 real_pulses:0 +I (156954) example: new speed:399.000000 +I (157664) modbus tcp: ModBusSlave_recv() +I (157664) modbus: ModbusSlaveProcess()--------------------------- +I (157664) modbus: check id... +I (157664) modbus: ok +I (157664) modbus: add: 0, length: 10 +I (157664) modbus: Read Holding Registers +I (157954) example: expect speed: 2.000000 real_pulses:0 +I (157954) example: new speed:399.000000 +I (158524) modbus tcp: ModBusSlave_recv() +I (158524) modbus: ModbusSlaveProcess()--------------------------- +I (158524) modbus: check id... +I (158524) modbus: ok +I (158524) modbus: add: 0, length: 10 +I (158524) modbus: Read Holding Registers +I (158954) example: expect speed: 2.000000 real_pulses:0 +I (158954) example: new speed:399.000000 +I (159584) modbus tcp: ModBusSlave_recv() +I (159584) modbus: ModbusSlaveProcess()--------------------------- +I (159584) modbus: check id... +I (159584) modbus: ok +I (159584) modbus: add: 0, length: 10 +I (159584) modbus: Read Holding Registers +I (159954) example: expect speed: 2.000000 real_pulses:0 +I (159954) example: new speed:399.000000 +I (160574) modbus tcp: ModBusSlave_recv() +I (160574) modbus: ModbusSlaveProcess()--------------------------- +I (160574) modbus: check id... +I (160574) modbus: ok +I (160574) modbus: add: 0, length: 10 +I (160574) modbus: Read Holding Registers +I (160954) example: expect speed: 2.000000 real_pulses:0 +I (160954) example: new speed:399.000000 +I (161604) modbus tcp: ModBusSlave_recv() +I (161604) modbus: ModbusSlaveProcess()--------------------------- +I (161604) modbus: check id... +I (161604) modbus: ok +I (161604) modbus: add: 0, length: 10 +I (161604) modbus: Read Holding Registers +I (161954) example: expect speed: 2.000000 real_pulses:0 +I (161954) example: new speed:399.000000 +I (162954) example: expect speed: 2.000000 real_pulses:0 +I (162954) example: new speed:399.000000 +I (163034) modbus tcp: ModBusSlave_recv() +I (163034) modbus: ModbusSlaveProcess()--------------------------- +I (163034) modbus: check id... +I (163034) modbus: ok +I (163034) modbus: add: 0, length: 10 +I (163034) modbus: Read Holding Registers +I (163954) example: expect speed: 2.000000 real_pulses:0 +I (163954) example: new speed:399.000000 +I (164784) modbus tcp: ModBusSlave_recv() +I (164784) modbus: ModbusSlaveProcess()--------------------------- +I (164784) modbus: check id... +I (164784) modbus: ok +I (164784) modbus: add: 0, length: 10 +I (164784) modbus: Read Holding Registers +I (164954) example: expect speed: 2.000000 real_pulses:0 +I (164954) example: new speed:399.000000 +I (165794) modbus tcp: ModBusSlave_recv() +I (165794) modbus: ModbusSlaveProcess()--------------------------- +I (165794) modbus: check id... +I (165794) modbus: ok +I (165794) modbus: add: 0, length: 10 +I (165794) modbus: Read Holding Registers +I (165954) example: expect speed: 2.000000 real_pulses:0 +I (165954) example: new speed:399.000000 +I (166954) example: expect speed: 2.000000 real_pulses:0 +I (166954) example: new speed:399.000000 +I (167124) modbus tcp: ModBusSlave_recv() +I (167124) modbus: ModbusSlaveProcess()--------------------------- +I (167124) modbus: check id... +I (167124) modbus: ok +I (167124) modbus: add: 0, length: 10 +I (167124) modbus: Read Holding Registers +I (167954) example: expect speed: 2.000000 real_pulses:0 +I (167954) example: new speed:399.000000 +I (168864) modbus tcp: ModBusSlave_recv() +I (168864) modbus: ModbusSlaveProcess()--------------------------- +I (168864) modbus: check id... +I (168864) modbus: ok +I (168864) modbus: add: 0, length: 10 +I (168864) modbus: Read Holding Registers +I (168954) example: expect speed: 2.000000 real_pulses:0 +I (168954) example: new speed:399.000000 +I (169954) example: expect speed: 2.000000 real_pulses:0 +I (169954) example: new speed:399.000000 +I (170404) modbus tcp: ModBusSlave_recv() +I (170404) modbus: ModbusSlaveProcess()--------------------------- +I (170404) modbus: check id... +I (170404) modbus: ok +I (170404) modbus: add: 0, length: 10 +I (170404) modbus: Read Holding Registers +I (170954) example: expect speed: 2.000000 real_pulses:0 +I (170954) example: new speed:399.000000 +I (171534) modbus tcp: ModBusSlave_recv() +I (171534) modbus: ModbusSlaveProcess()--------------------------- +I (171534) modbus: check id... +I (171534) modbus: ok +I (171534) modbus: add: 0, length: 10 +I (171534) modbus: Read Holding Registers +I (171954) example: expect speed: 2.000000 real_pulses:0 +I (171954) example: new speed:399.000000 +I (172454) modbus tcp: ModBusSlave_recv() +I (172454) modbus: ModbusSlaveProcess()--------------------------- +I (172454) modbus: check id... +I (172454) modbus: ok +I (172454) modbus: add: 0, length: 10 +I (172454) modbus: Read Holding Registers +I (172954) example: expect speed: 2.000000 real_pulses:0 +I (172954) example: new speed:399.000000 +I (173474) modbus tcp: ModBusSlave_recv() +I (173474) modbus: ModbusSlaveProcess()--------------------------- +I (173474) modbus: check id... +I (173474) modbus: ok +I (173474) modbus: add: 0, length: 10 +I (173474) modbus: Read Holding Registers +I (173954) example: expect speed: 2.000000 real_pulses:0 +I (173954) example: new speed:399.000000 +I (174504) modbus tcp: ModBusSlave_recv() +I (174504) modbus: ModbusSlaveProcess()--------------------------- +I (174504) modbus: check id... +I (174504) modbus: ok +I (174504) modbus: add: 0, length: 10 +I (174504) modbus: Read Holding Registers +I (174954) example: expect speed: 2.000000 real_pulses:0 +I (174954) example: new speed:399.000000 +I (175524) modbus tcp: ModBusSlave_recv() +I (175524) modbus: ModbusSlaveProcess()--------------------------- +I (175524) modbus: check id... +I (175524) modbus: ok +I (175524) modbus: add: 0, length: 10 +I (175524) modbus: Read Holding Registers +I (175954) example: expect speed: 2.000000 real_pulses:0 +I (175954) example: new speed:399.000000 +I (176954) example: expect speed: 2.000000 real_pulses:0 +I (176954) example: new speed:399.000000 +I (177684) modbus tcp: ModBusSlave_recv() +I (177684) modbus: ModbusSlaveProcess()--------------------------- +I (177684) modbus: check id... +I (177684) modbus: ok +I (177684) modbus: add: 0, length: 10 +I (177684) modbus: Read Holding Registers +I (177954) example: expect speed: 2.000000 real_pulses:0 +I (177954) example: new speed:399.000000 +I (178954) example: expect speed: 2.000000 real_pulses:0 +I (178954) example: new speed:399.000000 +I (179744) modbus tcp: ModBusSlave_recv() +I (179744) modbus: ModbusSlaveProcess()--------------------------- +I (179744) modbus: check id... +I (179744) modbus: ok +I (179744) modbus: add: 0, length: 10 +I (179744) modbus: Read Holding Registers +I (179954) example: expect speed: 2.000000 real_pulses:0 +I (179954) example: new speed:399.000000 +I (180754) modbus tcp: ModBusSlave_recv() +I (180754) modbus: ModbusSlaveProcess()--------------------------- +I (180754) modbus: check id... +I (180754) modbus: ok +I (180754) modbus: add: 0, length: 10 +I (180754) modbus: Read Holding Registers +I (180954) example: expect speed: 2.000000 real_pulses:0 +I (180954) example: new speed:399.000000 +I (181894) modbus tcp: ModBusSlave_recv() +I (181894) modbus: ModbusSlaveProcess()--------------------------- +I (181894) modbus: check id... +I (181894) modbus: ok +I (181894) modbus: add: 0, length: 10 +I (181894) modbus: Read Holding Registers +I (181954) example: expect speed: 2.000000 real_pulses:0 +I (181954) example: new speed:399.000000 +I (182954) example: expect speed: 2.000000 real_pulses:0 +I (182954) example: new speed:399.000000 +I (183954) example: expect speed: 2.000000 real_pulses:0 +I (183954) example: new speed:399.000000 +I (184434) modbus tcp: ModBusSlave_recv() +I (184434) modbus: ModbusSlaveProcess()--------------------------- +I (184434) modbus: check id... +I (184434) modbus: ok +I (184434) modbus: add: 0, length: 10 +I (184434) modbus: Read Holding Registers +I (184784) modbus tcp: ModBusSlave_recv() +I (184784) modbus: ModbusSlaveProcess()--------------------------- +I (184784) modbus: check id... +I (184784) modbus: ok +I (184784) modbus: add: 0, length: 10 +I (184784) modbus: Read Holding Registers +I (184954) example: expect speed: 2.000000 real_pulses:0 +I (184954) example: new speed:399.000000 +I (185954) example: expect speed: 2.000000 real_pulses:0 +I (185954) example: new speed:399.000000 +I (186894) modbus tcp: ModBusSlave_recv() +I (186894) modbus: ModbusSlaveProcess()--------------------------- +I (186894) modbus: check id... +I (186894) modbus: ok +I (186894) modbus: add: 0, length: 10 +I (186894) modbus: Read Holding Registers +I (186954) example: expect speed: 2.000000 real_pulses:0 +I (186954) example: new speed:399.000000 +I (187914) modbus tcp: ModBusSlave_recv() +I (187914) modbus: ModbusSlaveProcess()--------------------------- +I (187914) modbus: check id... +I (187914) modbus: ok +I (187914) modbus: add: 0, length: 10 +I (187914) modbus: Read Holding Registers +I (187954) example: expect speed: 2.000000 real_pulses:0 +I (187954) example: new speed:399.000000 +I (188934) modbus tcp: ModBusSlave_recv() +I (188934) modbus: ModbusSlaveProcess()--------------------------- +I (188944) modbus: check id... +I (188944) modbus: ok +I (188944) modbus: add: 0, length: 10 +I (188944) modbus: Read Holding Registers +I (188954) example: expect speed: 2.000000 real_pulses:0 +I (188954) example: new speed:399.000000 +I (189954) example: expect speed: 2.000000 real_pulses:0 +I (189954) example: new speed:399.000000 +I (189964) modbus tcp: ModBusSlave_recv() +I (189964) modbus: ModbusSlaveProcess()--------------------------- +I (189964) modbus: check id... +I (189964) modbus: ok +I (189964) modbus: add: 0, length: 10 +I (189964) modbus: Read Holding Registers +I (190954) example: expect speed: 2.000000 real_pulses:0 +I (190954) example: new speed:399.000000 +I (191434) modbus tcp: ModBusSlave_recv() +I (191434) modbus: ModbusSlaveProcess()--------------------------- +I (191434) modbus: check id... +I (191434) modbus: ok +I (191434) modbus: add: 0, length: 10 +I (191434) modbus: Read Holding Registers +I (191954) example: expect speed: 2.000000 real_pulses:0 +I (191954) example: new speed:399.000000 +I (192954) example: expect speed: 2.000000 real_pulses:0 +I (192954) example: new speed:399.000000 +I (193874) modbus tcp: ModBusSlave_recv() +I (193874) modbus: ModbusSlaveProcess()--------------------------- +I (193874) modbus: check id... +I (193874) modbus: ok +I (193874) modbus: add: 0, length: 10 +I (193874) modbus: Read Holding Registers +I (193954) example: expect speed: 2.000000 real_pulses:0 +I (193954) example: new speed:399.000000 +I (194954) example: expect speed: 2.000000 real_pulses:0 +I (194954) example: new speed:399.000000 +I (194984) modbus tcp: ModBusSlave_recv() +I (194984) modbus: ModbusSlaveProcess()--------------------------- +I (194984) modbus: check id... +I (194984) modbus: ok +I (194984) modbus: add: 0, length: 10 +I (194984) modbus: Read Holding Registers +I (195954) example: expect speed: 2.000000 real_pulses:0 +I (195954) example: new speed:399.000000 +I (196014) modbus tcp: ModBusSlave_recv() +I (196014) modbus: ModbusSlaveProcess()--------------------------- +I (196014) modbus: check id... +I (196014) modbus: ok +I (196014) modbus: add: 0, length: 10 +I (196014) modbus: Read Holding Registers +I (196954) example: expect speed: 2.000000 real_pulses:0 +I (196954) example: new speed:399.000000 +I (197954) example: expect speed: 2.000000 real_pulses:0 +I (197954) example: new speed:399.000000 +I (198264) modbus tcp: ModBusSlave_recv() +I (198264) modbus: ModbusSlaveProcess()--------------------------- +I (198264) modbus: check id... +I (198264) modbus: ok +I (198264) modbus: add: 0, length: 10 +I (198264) modbus: Read Holding Registers +I (198954) example: expect speed: 2.000000 real_pulses:0 +I (198954) example: new speed:399.000000 +I (199624) modbus tcp: ModBusSlave_recv() +I (199624) modbus: ModbusSlaveProcess()--------------------------- +I (199624) modbus: check id... +I (199624) modbus: ok +I (199624) modbus: add: 0, length: 10 +I (199624) modbus: Read Holding Registers +I (199954) example: expect speed: 2.000000 real_pulses:0 +I (199954) example: new speed:399.000000 +I (200624) modbus tcp: ModBusSlave_recv() +I (200624) modbus: ModbusSlaveProcess()--------------------------- +I (200624) modbus: check id... +I (200624) modbus: ok +I (200624) modbus: add: 0, length: 10 +I (200624) modbus: Read Holding Registers +I (200954) example: expect speed: 2.000000 real_pulses:0 +I (200954) example: new speed:399.000000 +I (201654) modbus tcp: ModBusSlave_recv() +I (201654) modbus: ModbusSlaveProcess()--------------------------- +I (201654) modbus: check id... +I (201654) modbus: ok +I (201654) modbus: add: 0, length: 10 +I (201654) modbus: Read Holding Registers +I (201954) example: expect speed: 2.000000 real_pulses:0 +I (201954) example: new speed:399.000000 +I (202694) modbus tcp: ModBusSlave_recv() +I (202694) modbus: ModbusSlaveProcess()--------------------------- +I (202694) modbus: check id... +I (202694) modbus: ok +I (202694) modbus: add: 0, length: 10 +I (202694) modbus: Read Holding Registers +I (202954) example: expect speed: 2.000000 real_pulses:0 +I (202954) example: new speed:399.000000 +I (203684) modbus tcp: ModBusSlave_recv() +I (203684) modbus: ModbusSlaveProcess()--------------------------- +I (203684) modbus: check id... +I (203684) modbus: ok +I (203684) modbus: add: 0, length: 10 +I (203684) modbus: Read Holding Registers +I (203954) example: expect speed: 2.000000 real_pulses:0 +I (203954) example: new speed:399.000000 +I (204714) modbus tcp: ModBusSlave_recv() +I (204714) modbus: ModbusSlaveProcess()--------------------------- +I (204714) modbus: check id... +I (204714) modbus: ok +I (204714) modbus: add: 0, length: 10 +I (204714) modbus: Read Holding Registers +I (204954) example: expect speed: 2.000000 real_pulses:0 +I (204954) example: new speed:399.000000 +I (205734) modbus tcp: ModBusSlave_recv() +I (205734) modbus: ModbusSlaveProcess()--------------------------- +I (205734) modbus: check id... +I (205734) modbus: ok +I (205734) modbus: add: 0, length: 10 +I (205734) modbus: Read Holding Registers +I (205954) example: expect speed: 2.000000 real_pulses:0 +I (205954) example: new speed:399.000000 +I (206794) modbus tcp: ModBusSlave_recv() +I (206794) modbus: ModbusSlaveProcess()--------------------------- +I (206794) modbus: check id... +I (206794) modbus: ok +I (206794) modbus: add: 0, length: 10 +I (206794) modbus: Read Holding Registers +I (206954) example: expect speed: 2.000000 real_pulses:0 +I (206954) example: new speed:399.000000 +I (207784) modbus tcp: ModBusSlave_recv() +I (207784) modbus: ModbusSlaveProcess()--------------------------- +I (207784) modbus: check id... +I (207784) modbus: ok +I (207784) modbus: add: 0, length: 10 +I (207784) modbus: Read Holding Registers +I (207954) example: expect speed: 2.000000 real_pulses:0 +I (207954) example: new speed:399.000000 +I (208814) modbus tcp: ModBusSlave_recv() +I (208814) modbus: ModbusSlaveProcess()--------------------------- +I (208814) modbus: check id... +I (208814) modbus: ok +I (208814) modbus: add: 0, length: 10 +I (208814) modbus: Read Holding Registers +I (208954) example: expect speed: 2.000000 real_pulses:0 +I (208954) example: new speed:399.000000 +I (209834) modbus tcp: ModBusSlave_recv() +I (209834) modbus: ModbusSlaveProcess()--------------------------- +I (209834) modbus: check id... +I (209834) modbus: ok +I (209834) modbus: add: 0, length: 10 +I (209834) modbus: Read Holding Registers +I (209954) example: expect speed: 2.000000 real_pulses:0 +I (209954) example: new speed:399.000000 +I (210954) example: expect speed: 2.000000 real_pulses:0 +I (210954) example: new speed:399.000000 +I (211574) modbus tcp: ModBusSlave_recv() +I (211574) modbus: ModbusSlaveProcess()--------------------------- +I (211574) modbus: check id... +I (211574) modbus: ok +I (211574) modbus: add: 0, length: 10 +I (211574) modbus: Read Holding Registers +I (211954) example: expect speed: 2.000000 real_pulses:0 +I (211954) example: new speed:399.000000 +I (212604) modbus tcp: ModBusSlave_recv() +I (212604) modbus: ModbusSlaveProcess()--------------------------- +I (212604) modbus: check id... +I (212604) modbus: ok +I (212604) modbus: add: 0, length: 10 +I (212604) modbus: Read Holding Registers +I (212954) example: expect speed: 2.000000 real_pulses:0 +I (212954) example: new speed:399.000000 +I (213104) modbus tcp: ModBusSlave_recv() +I (213104) modbus: ModbusSlaveProcess()--------------------------- +I (213104) modbus: check id... +I (213104) modbus: ok +I (213104) modbus: add: 0, length: 10 +I (213104) modbus: Read Holding Registers +I (213954) example: expect speed: 2.000000 real_pulses:0 +I (213954) example: new speed:399.000000 +I (214264) modbus tcp: ModBusSlave_recv() +I (214264) modbus: ModbusSlaveProcess()--------------------------- +I (214264) modbus: check id... +I (214264) modbus: ok +I (214264) modbus: add: 0, length: 10 +I (214264) modbus: Read Holding Registers +I (214954) example: expect speed: 2.000000 real_pulses:0 +I (214954) example: new speed:399.000000 +I (215954) example: expect speed: 2.000000 real_pulses:0 +I (215954) example: new speed:399.000000 +I (216694) modbus tcp: ModBusSlave_recv() +I (216694) modbus: ModbusSlaveProcess()--------------------------- +I (216704) modbus: check id... +I (216704) modbus: ok +I (216704) modbus: add: 0, length: 10 +I (216704) modbus: Read Holding Registers +I (216954) example: expect speed: 2.000000 real_pulses:0 +I (216954) example: new speed:399.000000 +I (217954) example: expect speed: 2.000000 real_pulses:0 +I (217954) example: new speed:399.000000 +I (218954) example: expect speed: 2.000000 real_pulses:0 +I (218954) example: new speed:399.000000 +I (219954) example: expect speed: 2.000000 real_pulses:0 +I (219954) example: new speed:399.000000 +I (220954) example: expect speed: 2.000000 real_pulses:0 +I (220954) example: new speed:399.000000 +I (221394) modbus tcp: ModBusSlave_recv() +I (221404) modbus: ModbusSlaveProcess()--------------------------- +I (221404) modbus: check id... +I (221404) modbus: ok +I (221404) modbus: add: 0, length: 10 +I (221404) modbus: Read Holding Registers +I (221954) example: expect speed: 2.000000 real_pulses:0 +I (221954) example: new speed:399.000000 +I (222954) example: expect speed: 2.000000 real_pulses:0 +I (222954) example: new speed:399.000000 +I (223144) modbus tcp: ModBusSlave_recv() +I (223144) modbus: ModbusSlaveProcess()--------------------------- +I (223144) modbus: check id... +I (223144) modbus: ok +I (223144) modbus: add: 0, length: 10 +I (223144) modbus: Read Holding Registers +I (223954) example: expect speed: 2.000000 real_pulses:0 +I (223954) example: new speed:399.000000 +I (224164) modbus tcp: ModBusSlave_recv() +I (224164) modbus: ModbusSlaveProcess()--------------------------- +I (224164) modbus: check id... +I (224164) modbus: ok +I (224164) modbus: add: 0, length: 10 +I (224164) modbus: Read Holding Registers +I (224954) example: expect speed: 2.000000 real_pulses:0 +I (224954) example: new speed:399.000000 +I (225184) modbus tcp: ModBusSlave_recv() +I (225184) modbus: ModbusSlaveProcess()--------------------------- +I (225184) modbus: check id... +I (225184) modbus: ok +I (225184) modbus: add: 0, length: 10 +I (225194) modbus: Read Holding Registers +I (225954) example: expect speed: 2.000000 real_pulses:0 +I (225954) example: new speed:399.000000 +I (226214) modbus tcp: ModBusSlave_recv() +I (226214) modbus: ModbusSlaveProcess()--------------------------- +I (226214) modbus: check id... +I (226214) modbus: ok +I (226214) modbus: add: 0, length: 10 +I (226214) modbus: Read Holding Registers +I (226954) example: expect speed: 2.000000 real_pulses:0 +I (226954) example: new speed:399.000000 +I (227234) modbus tcp: ModBusSlave_recv() +I (227234) modbus: ModbusSlaveProcess()--------------------------- +I (227234) modbus: check id... +I (227234) modbus: ok +I (227234) modbus: add: 0, length: 10 +I (227234) modbus: Read Holding Registers +I (227954) example: expect speed: 2.000000 real_pulses:0 +I (227954) example: new speed:399.000000 +I (228264) modbus tcp: ModBusSlave_recv() +I (228264) modbus: ModbusSlaveProcess()--------------------------- +I (228264) modbus: check id... +I (228264) modbus: ok +I (228264) modbus: add: 0, length: 10 +I (228264) modbus: Read Holding Registers +I (228954) example: expect speed: 2.000000 real_pulses:0 +I (228954) example: new speed:399.000000 +I (229184) modbus tcp: ModBusSlave_recv() +I (229184) modbus: ModbusSlaveProcess()--------------------------- +I (229184) modbus: check id... +I (229184) modbus: ok +I (229184) modbus: add: 0, length: 10 +I (229184) modbus: Read Holding Registers +I (229954) example: expect speed: 2.000000 real_pulses:0 +I (229954) example: new speed:399.000000 +I (230224) modbus tcp: ModBusSlave_recv() +I (230224) modbus: ModbusSlaveProcess()--------------------------- +I (230224) modbus: check id... +I (230224) modbus: ok +I (230224) modbus: add: 0, length: 10 +I (230224) modbus: Read Holding Registers +I (230954) example: expect speed: 2.000000 real_pulses:0 +I (230954) example: new speed:399.000000 +I (231234) modbus tcp: ModBusSlave_recv() +I (231234) modbus: ModbusSlaveProcess()--------------------------- +I (231234) modbus: check id... +I (231234) modbus: ok +I (231234) modbus: add: 0, length: 10 +I (231234) modbus: Read Holding Registers +I (231954) example: expect speed: 2.000000 real_pulses:0 +I (231954) example: new speed:399.000000 +I (232254) modbus tcp: ModBusSlave_recv() +I (232254) modbus: ModbusSlaveProcess()--------------------------- +I (232254) modbus: check id... +I (232254) modbus: ok +I (232254) modbus: add: 0, length: 10 +I (232254) modbus: Read Holding Registers +I (232954) example: expect speed: 2.000000 real_pulses:0 +I (232954) example: new speed:399.000000 +I (233284) modbus tcp: ModBusSlave_recv() +I (233284) modbus: ModbusSlaveProcess()--------------------------- +I (233284) modbus: check id... +I (233284) modbus: ok +I (233284) modbus: add: 0, length: 10 +I (233284) modbus: Read Holding Registers +I (233954) example: expect speed: 2.000000 real_pulses:0 +I (233954) example: new speed:399.000000 +I (234304) modbus tcp: ModBusSlave_recv() +I (234304) modbus: ModbusSlaveProcess()--------------------------- +I (234304) modbus: check id... +I (234304) modbus: ok +I (234304) modbus: add: 0, length: 10 +I (234304) modbus: Read Holding Registers +I (234954) example: expect speed: 2.000000 real_pulses:0 +I (234954) example: new speed:399.000000 +I (235344) modbus tcp: ModBusSlave_recv() +I (235344) modbus: ModbusSlaveProcess()--------------------------- +I (235344) modbus: check id... +I (235344) modbus: ok +I (235344) modbus: add: 0, length: 10 +I (235344) modbus: Read Holding Registers +I (235954) example: expect speed: 2.000000 real_pulses:0 +I (235954) example: new speed:399.000000 +I (236344) modbus tcp: ModBusSlave_recv() +I (236354) modbus: ModbusSlaveProcess()--------------------------- +I (236354) modbus: check id... +I (236354) modbus: ok +I (236354) modbus: add: 0, length: 10 +I (236354) modbus: Read Holding Registers +I (236954) example: expect speed: 2.000000 real_pulses:0 +I (236954) example: new speed:399.000000 +I (237384) modbus tcp: ModBusSlave_recv() +I (237384) modbus: ModbusSlaveProcess()--------------------------- +I (237384) modbus: check id... +I (237384) modbus: ok +I (237384) modbus: add: 0, length: 10 +I (237384) modbus: Read Holding Registers +I (237954) example: expect speed: 2.000000 real_pulses:0 +I (237954) example: new speed:399.000000 +I (238404) modbus tcp: ModBusSlave_recv() +I (238404) modbus: ModbusSlaveProcess()--------------------------- +I (238404) modbus: check id... +I (238404) modbus: ok +I (238404) modbus: add: 0, length: 10 +I (238404) modbus: Read Holding Registers +I (238954) example: expect speed: 2.000000 real_pulses:0 +I (238954) example: new speed:399.000000 +I (239444) modbus tcp: ModBusSlave_recv() +I (239444) modbus: ModbusSlaveProcess()--------------------------- +I (239444) modbus: check id... +I (239444) modbus: ok +I (239444) modbus: add: 0, length: 10 +I (239444) modbus: Read Holding Registers +I (239954) example: expect speed: 2.000000 real_pulses:0 +I (239954) example: new speed:399.000000 +I (240654) modbus tcp: ModBusSlave_recv() +I (240654) modbus: ModbusSlaveProcess()--------------------------- +I (240654) modbus: check id... +I (240654) modbus: ok +I (240654) modbus: add: 0, length: 10 +I (240654) modbus: Read Holding Registers +I (240954) example: expect speed: 2.000000 real_pulses:0 +I (240954) example: new speed:399.000000 +I (241474) modbus tcp: ModBusSlave_recv() +I (241474) modbus: ModbusSlaveProcess()--------------------------- +I (241474) modbus: check id... +I (241474) modbus: ok +I (241474) modbus: add: 0, length: 10 +I (241474) modbus: Read Holding Registers +I (241954) example: expect speed: 2.000000 real_pulses:0 +I (241954) example: new speed:399.000000 +I (242394) modbus tcp: ModBusSlave_recv() +I (242394) modbus: ModbusSlaveProcess()--------------------------- +I (242394) modbus: check id... +I (242394) modbus: ok +I (242394) modbus: add: 0, length: 10 +I (242394) modbus: Read Holding Registers +I (242954) example: expect speed: 2.000000 real_pulses:0 +I (242954) example: new speed:399.000000 +I (243414) modbus tcp: ModBusSlave_recv() +I (243414) modbus: ModbusSlaveProcess()--------------------------- +I (243414) modbus: check id... +I (243414) modbus: ok +I (243414) modbus: add: 0, length: 10 +I (243414) modbus: Read Holding Registers +I (243954) example: expect speed: 2.000000 real_pulses:0 +I (243954) example: new speed:399.000000 +I (244434) modbus tcp: ModBusSlave_recv() +I (244444) modbus: ModbusSlaveProcess()--------------------------- +I (244444) modbus: check id... +I (244444) modbus: ok +I (244444) modbus: add: 0, length: 10 +I (244444) modbus: Read Holding Registers +I (244954) example: expect speed: 2.000000 real_pulses:0 +I (244954) example: new speed:399.000000 +I (245464) modbus tcp: ModBusSlave_recv() +I (245464) modbus: ModbusSlaveProcess()--------------------------- +I (245464) modbus: check id... +I (245464) modbus: ok +I (245464) modbus: add: 0, length: 10 +I (245464) modbus: Read Holding Registers +I (245954) example: expect speed: 2.000000 real_pulses:0 +I (245954) example: new speed:399.000000 +I (246484) modbus tcp: ModBusSlave_recv() +I (246484) modbus: ModbusSlaveProcess()--------------------------- +I (246484) modbus: check id... +I (246484) modbus: ok +I (246484) modbus: add: 0, length: 10 +I (246484) modbus: Read Holding Registers +I (246954) example: expect speed: 2.000000 real_pulses:0 +I (246954) example: new speed:399.000000 +I (247514) modbus tcp: ModBusSlave_recv() +I (247514) modbus: ModbusSlaveProcess()--------------------------- +I (247514) modbus: check id... +I (247514) modbus: ok +I (247514) modbus: add: 0, length: 10 +I (247514) modbus: Read Holding Registers +I (247954) example: expect speed: 2.000000 real_pulses:0 +I (247954) example: new speed:399.000000 +I (248534) modbus tcp: ModBusSlave_recv() +I (248534) modbus: ModbusSlaveProcess()--------------------------- +I (248534) modbus: check id... +I (248534) modbus: ok +I (248534) modbus: add: 0, length: 10 +I (248534) modbus: Read Holding Registers +I (248954) example: expect speed: 2.000000 real_pulses:0 +I (248954) example: new speed:399.000000 +I (249564) modbus tcp: ModBusSlave_recv() +I (249564) modbus: ModbusSlaveProcess()--------------------------- +I (249564) modbus: check id... +I (249564) modbus: ok +I (249564) modbus: add: 0, length: 10 +I (249564) modbus: Read Holding Registers +I (249954) example: expect speed: 2.000000 real_pulses:0 +I (249954) example: new speed:399.000000 +I (250584) modbus tcp: ModBusSlave_recv() +I (250594) modbus: ModbusSlaveProcess()--------------------------- +I (250594) modbus: check id... +I (250594) modbus: ok +I (250594) modbus: add: 0, length: 10 +I (250594) modbus: Read Holding Registers +I (250954) example: expect speed: 2.000000 real_pulses:0 +I (250954) example: new speed:399.000000 +I (251614) modbus tcp: ModBusSlave_recv() +I (251614) modbus: ModbusSlaveProcess()--------------------------- +I (251614) modbus: check id... +I (251614) modbus: ok +I (251614) modbus: add: 0, length: 10 +I (251614) modbus: Read Holding Registers +I (251954) example: expect speed: 2.000000 real_pulses:0 +I (251954) example: new speed:399.000000 +I (252634) modbus tcp: ModBusSlave_recv() +I (252634) modbus: ModbusSlaveProcess()--------------------------- +I (252634) modbus: check id... +I (252634) modbus: ok +I (252634) modbus: add: 0, length: 10 +I (252634) modbus: Read Holding Registers +I (252954) example: expect speed: 2.000000 real_pulses:0 +I (252954) example: new speed:399.000000 +I (253654) modbus tcp: ModBusSlave_recv() +I (253654) modbus: ModbusSlaveProcess()--------------------------- +I (253654) modbus: check id... +I (253654) modbus: ok +I (253654) modbus: add: 0, length: 10 +I (253654) modbus: Read Holding Registers +I (253954) example: expect speed: 2.000000 real_pulses:0 +I (253954) example: new speed:399.000000 +I (254684) modbus tcp: ModBusSlave_recv() +I (254684) modbus: ModbusSlaveProcess()--------------------------- +I (254684) modbus: check id... +I (254684) modbus: ok +I (254684) modbus: add: 0, length: 10 +I (254684) modbus: Read Holding Registers +I (254954) example: expect speed: 2.000000 real_pulses:0 +I (254954) example: new speed:399.000000 +I (255604) modbus tcp: ModBusSlave_recv() +I (255604) modbus: ModbusSlaveProcess()--------------------------- +I (255604) modbus: check id... +I (255604) modbus: ok +I (255604) modbus: add: 0, length: 10 +I (255604) modbus: Read Holding Registers +I (255954) example: expect speed: 2.000000 real_pulses:0 +I (255954) example: new speed:399.000000 +I (256634) modbus tcp: ModBusSlave_recv() +I (256634) modbus: ModbusSlaveProcess()--------------------------- +I (256634) modbus: check id... +I (256634) modbus: ok +I (256634) modbus: add: 0, length: 10 +I (256634) modbus: Read Holding Registers +I (256954) example: expect speed: 2.000000 real_pulses:0 +I (256954) example: new speed:399.000000 +I (257644) modbus tcp: ModBusSlave_recv() +I (257644) modbus: ModbusSlaveProcess()--------------------------- +I (257644) modbus: check id... +I (257644) modbus: ok +I (257644) modbus: add: 0, length: 10 +I (257654) modbus: Read Holding Registers +I (257954) example: expect speed: 2.000000 real_pulses:0 +I (257954) example: new speed:399.000000 +I (258674) modbus tcp: ModBusSlave_recv() +I (258674) modbus: ModbusSlaveProcess()--------------------------- +I (258674) modbus: check id... +I (258674) modbus: ok +I (258674) modbus: add: 0, length: 10 +I (258674) modbus: Read Holding Registers +I (258954) example: expect speed: 2.000000 real_pulses:0 +I (258954) example: new speed:399.000000 +I (259704) modbus tcp: ModBusSlave_recv() +I (259704) modbus: ModbusSlaveProcess()--------------------------- +I (259704) modbus: check id... +I (259704) modbus: ok +I (259714) modbus: add: 0, length: 10 +I (259714) modbus: Read Holding Registers +I (259954) example: expect speed: 2.000000 real_pulses:0 +I (259954) example: new speed:399.000000 +I (260724) modbus tcp: ModBusSlave_recv() +I (260724) modbus: ModbusSlaveProcess()--------------------------- +I (260724) modbus: check id... +I (260724) modbus: ok +I (260724) modbus: add: 0, length: 10 +I (260724) modbus: Read Holding Registers +I (260954) example: expect speed: 2.000000 real_pulses:0 +I (260954) example: new speed:399.000000 +I (261744) modbus tcp: ModBusSlave_recv() +I (261744) modbus: ModbusSlaveProcess()--------------------------- +I (261744) modbus: check id... +I (261744) modbus: ok +I (261744) modbus: add: 0, length: 10 +I (261744) modbus: Read Holding Registers +I (261954) example: expect speed: 2.000000 real_pulses:0 +I (261954) example: new speed:399.000000 +I (262764) modbus tcp: ModBusSlave_recv() +I (262774) modbus: ModbusSlaveProcess()--------------------------- +I (262774) modbus: check id... +I (262774) modbus: ok +I (262774) modbus: add: 0, length: 10 +I (262774) modbus: Read Holding Registers +I (262954) example: expect speed: 2.000000 real_pulses:0 +I (262954) example: new speed:399.000000 +I (263794) modbus tcp: ModBusSlave_recv() +I (263794) modbus: ModbusSlaveProcess()--------------------------- +I (263794) modbus: check id... +I (263794) modbus: ok +I (263794) modbus: add: 0, length: 10 +I (263794) modbus: Read Holding Registers +I (263954) example: expect speed: 2.000000 real_pulses:0 +I (263954) example: new speed:399.000000 +I (264814) modbus tcp: ModBusSlave_recv() +I (264814) modbus: ModbusSlaveProcess()--------------------------- +I (264824) modbus: check id... +I (264824) modbus: ok +I (264824) modbus: add: 0, length: 10 +I (264824) modbus: Read Holding Registers +I (264954) example: expect speed: 2.000000 real_pulses:0 +I (264954) example: new speed:399.000000 +I (265844) modbus tcp: ModBusSlave_recv() +I (265844) modbus: ModbusSlaveProcess()--------------------------- +I (265844) modbus: check id... +I (265844) modbus: ok +I (265844) modbus: add: 0, length: 10 +I (265844) modbus: Read Holding Registers +I (265954) example: expect speed: 2.000000 real_pulses:0 +I (265954) example: new speed:399.000000 +I (266864) modbus tcp: ModBusSlave_recv() +I (266864) modbus: ModbusSlaveProcess()--------------------------- +I (266864) modbus: check id... +I (266864) modbus: ok +I (266864) modbus: add: 0, length: 10 +I (266864) modbus: Read Holding Registers +I (266954) example: expect speed: 2.000000 real_pulses:0 +I (266954) example: new speed:399.000000 +I (267884) modbus tcp: ModBusSlave_recv() +I (267884) modbus: ModbusSlaveProcess()--------------------------- +I (267884) modbus: check id... +I (267884) modbus: ok +I (267884) modbus: add: 0, length: 10 +I (267894) modbus: Read Holding Registers +I (267954) example: expect speed: 2.000000 real_pulses:0 +I (267954) example: new speed:399.000000 +I (268914) modbus tcp: ModBusSlave_recv() +I (268914) modbus: ModbusSlaveProcess()--------------------------- +I (268914) modbus: check id... +I (268914) modbus: ok +I (268914) modbus: add: 0, length: 10 +I (268914) modbus: Read Holding Registers +I (268954) example: expect speed: 2.000000 real_pulses:0 +I (268954) example: new speed:399.000000 +I (269834) modbus tcp: ModBusSlave_recv() +I (269834) modbus: ModbusSlaveProcess()--------------------------- +I (269834) modbus: check id... +I (269834) modbus: ok +I (269834) modbus: add: 0, length: 10 +I (269834) modbus: Read Holding Registers +I (269954) example: expect speed: 2.000000 real_pulses:0 +I (269954) example: new speed:399.000000 +I (270864) modbus tcp: ModBusSlave_recv() +I (270864) modbus: ModbusSlaveProcess()--------------------------- +I (270864) modbus: check id... +I (270864) modbus: ok +I (270864) modbus: add: 0, length: 10 +I (270864) modbus: Read Holding Registers +I (270954) example: expect speed: 2.000000 real_pulses:0 +I (270954) example: new speed:399.000000 +I (271884) modbus tcp: ModBusSlave_recv() +I (271884) modbus: ModbusSlaveProcess()--------------------------- +I (271884) modbus: check id... +I (271884) modbus: ok +I (271884) modbus: add: 0, length: 10 +I (271884) modbus: Read Holding Registers +I (271954) example: expect speed: 2.000000 real_pulses:0 +I (271954) example: new speed:399.000000 +I (272904) modbus tcp: ModBusSlave_recv() +I (272914) modbus: ModbusSlaveProcess()--------------------------- +I (272914) modbus: check id... +I (272914) modbus: ok +I (272914) modbus: add: 0, length: 10 +I (272914) modbus: Read Holding Registers +I (272954) example: expect speed: 2.000000 real_pulses:0 +I (272954) example: new speed:399.000000 +I (273934) modbus tcp: ModBusSlave_recv() +I (273934) modbus: ModbusSlaveProcess()--------------------------- +I (273934) modbus: check id... +I (273934) modbus: ok +I (273934) modbus: add: 0, length: 10 +I (273934) modbus: Read Holding Registers +I (273954) example: expect speed: 2.000000 real_pulses:0 +I (273954) example: new speed:399.000000 +I (274954) example: expect speed: 2.000000 real_pulses:0 +I (274954) example: new speed:399.000000 +I (274954) modbus tcp: ModBusSlave_recv() +I (274954) modbus: ModbusSlaveProcess()--------------------------- +I (274954) modbus: check id... +I (274954) modbus: ok +I (274954) modbus: add: 0, length: 10 +I (274954) modbus: Read Holding Registers +I (275954) example: expect speed: 2.000000 real_pulses:0 +I (275954) example: new speed:399.000000 +I (275974) modbus tcp: ModBusSlave_recv() +I (275974) modbus: ModbusSlaveProcess()--------------------------- +I (275984) modbus: check id... +I (275984) modbus: ok +I (275984) modbus: add: 0, length: 10 +I (275984) modbus: Read Holding Registers +I (276954) example: expect speed: 2.000000 real_pulses:0 +I (276954) example: new speed:399.000000 +I (277004) modbus tcp: ModBusSlave_recv() +I (277004) modbus: ModbusSlaveProcess()--------------------------- +I (277004) modbus: check id... +I (277004) modbus: ok +I (277004) modbus: add: 0, length: 10 +I (277004) modbus: Read Holding Registers +I (277954) example: expect speed: 2.000000 real_pulses:0 +I (277954) example: new speed:399.000000 +I (278034) modbus tcp: ModBusSlave_recv() +I (278034) modbus: ModbusSlaveProcess()--------------------------- +I (278034) modbus: check id... +I (278034) modbus: ok +I (278034) modbus: add: 0, length: 10 +I (278034) modbus: Read Holding Registers +I (278954) example: expect speed: 2.000000 real_pulses:0 +I (278954) example: new speed:399.000000 +I (279054) modbus tcp: ModBusSlave_recv() +I (279054) modbus: ModbusSlaveProcess()--------------------------- +I (279054) modbus: check id... +I (279054) modbus: ok +I (279054) modbus: add: 0, length: 10 +I (279054) modbus: Read Holding Registers +I (279954) example: expect speed: 2.000000 real_pulses:0 +I (279954) example: new speed:399.000000 +I (280074) modbus tcp: ModBusSlave_recv() +I (280074) modbus: ModbusSlaveProcess()--------------------------- +I (280074) modbus: check id... +I (280074) modbus: ok +I (280074) modbus: add: 0, length: 10 +I (280074) modbus: Read Holding Registers +I (280954) example: expect speed: 2.000000 real_pulses:0 +I (280954) example: new speed:399.000000 +I (281094) modbus tcp: ModBusSlave_recv() +I (281104) modbus: ModbusSlaveProcess()--------------------------- +I (281104) modbus: check id... +I (281104) modbus: ok +I (281104) modbus: add: 0, length: 10 +I (281104) modbus: Read Holding Registers +I (281954) example: expect speed: 2.000000 real_pulses:0 +I (281954) example: new speed:399.000000 +I (282134) modbus tcp: ModBusSlave_recv() +I (282134) modbus: ModbusSlaveProcess()--------------------------- +I (282134) modbus: check id... +I (282134) modbus: ok +I (282134) modbus: add: 0, length: 10 +I (282134) modbus: Read Holding Registers +I (282954) example: expect speed: 2.000000 real_pulses:0 +I (282954) example: new speed:399.000000 +I (283044) modbus tcp: ModBusSlave_recv() +I (283044) modbus: ModbusSlaveProcess()--------------------------- +I (283044) modbus: check id... +I (283044) modbus: ok +I (283044) modbus: add: 0, length: 10 +I (283044) modbus: Read Holding Registers +I (283954) example: expect speed: 2.000000 real_pulses:0 +I (283954) example: new speed:399.000000 +I (284064) modbus tcp: ModBusSlave_recv() +I (284064) modbus: ModbusSlaveProcess()--------------------------- +I (284064) modbus: check id... +I (284064) modbus: ok +I (284064) modbus: add: 0, length: 10 +I (284064) modbus: Read Holding Registers +I (284954) example: expect speed: 2.000000 real_pulses:0 +I (284954) example: new speed:399.000000 +I (285094) modbus tcp: ModBusSlave_recv() +I (285094) modbus: ModbusSlaveProcess()--------------------------- +I (285094) modbus: check id... +I (285094) modbus: ok +I (285094) modbus: add: 0, length: 10 +I (285094) modbus: Read Holding Registers +I (285954) example: expect speed: 2.000000 real_pulses:0 +I (285954) example: new speed:399.000000 +I (286114) modbus tcp: ModBusSlave_recv() +I (286114) modbus: ModbusSlaveProcess()--------------------------- +I (286124) modbus: check id... +I (286124) modbus: ok +I (286124) modbus: add: 0, length: 10 +I (286124) modbus: Read Holding Registers +I (286954) example: expect speed: 2.000000 real_pulses:0 +I (286954) example: new speed:399.000000 +I (287144) modbus tcp: ModBusSlave_recv() +I (287144) modbus: ModbusSlaveProcess()--------------------------- +I (287144) modbus: check id... +I (287144) modbus: ok +I (287144) modbus: add: 0, length: 10 +I (287144) modbus: Read Holding Registers +I (287954) example: expect speed: 2.000000 real_pulses:0 +I (287954) example: new speed:399.000000 +I (288164) modbus tcp: ModBusSlave_recv() +I (288164) modbus: ModbusSlaveProcess()--------------------------- +I (288164) modbus: check id... +I (288164) modbus: ok +I (288164) modbus: add: 0, length: 10 +I (288164) modbus: Read Holding Registers +I (288954) example: expect speed: 2.000000 real_pulses:0 +I (288954) example: new speed:399.000000 +I (289214) modbus tcp: ModBusSlave_recv() +I (289214) modbus: ModbusSlaveProcess()--------------------------- +I (289214) modbus: check id... +I (289214) modbus: ok +I (289214) modbus: add: 0, length: 10 +I (289214) modbus: Read Holding Registers +I (289954) example: expect speed: 2.000000 real_pulses:0 +I (289954) example: new speed:399.000000 +I (290214) modbus tcp: ModBusSlave_recv() +I (290214) modbus: ModbusSlaveProcess()--------------------------- +I (290214) modbus: check id... +I (290214) modbus: ok +I (290214) modbus: add: 0, length: 10 +I (290214) modbus: Read Holding Registers +I (290954) example: expect speed: 2.000000 real_pulses:0 +I (290954) example: new speed:399.000000 +I (291234) modbus tcp: ModBusSlave_recv() +I (291234) modbus: ModbusSlaveProcess()--------------------------- +I (291234) modbus: check id... +I (291234) modbus: ok +I (291234) modbus: add: 0, length: 10 +I (291244) modbus: Read Holding Registers +I (291954) example: expect speed: 2.000000 real_pulses:0 +I (291954) example: new speed:399.000000 +I (292264) modbus tcp: ModBusSlave_recv() +I (292264) modbus: ModbusSlaveProcess()--------------------------- +I (292264) modbus: check id... +I (292264) modbus: ok +I (292264) modbus: add: 0, length: 10 +I (292264) modbus: Read Holding Registers +I (292954) example: expect speed: 2.000000 real_pulses:0 +I (292954) example: new speed:399.000000 +I (293284) modbus tcp: ModBusSlave_recv() +I (293284) modbus: ModbusSlaveProcess()--------------------------- +I (293284) modbus: check id... +I (293284) modbus: ok +I (293284) modbus: add: 0, length: 10 +I (293284) modbus: Read Holding Registers +I (293954) example: expect speed: 2.000000 real_pulses:0 +I (293954) example: new speed:399.000000 +I (294314) modbus tcp: ModBusSlave_recv() +I (294314) modbus: ModbusSlaveProcess()--------------------------- +I (294314) modbus: check id... +I (294314) modbus: ok +I (294314) modbus: add: 0, length: 10 +I (294314) modbus: Read Holding Registers +I (294954) example: expect speed: 2.000000 real_pulses:0 +I (294954) example: new speed:399.000000 +I (295224) modbus tcp: ModBusSlave_recv() +I (295234) modbus: ModbusSlaveProcess()--------------------------- +I (295234) modbus: check id... +I (295234) modbus: ok +I (295234) modbus: add: 0, length: 10 +I (295234) modbus: Read Holding Registers +I (295954) example: expect speed: 2.000000 real_pulses:0 +I (295954) example: new speed:399.000000 +I (296254) modbus tcp: ModBusSlave_recv() +I (296254) modbus: ModbusSlaveProcess()--------------------------- +I (296254) modbus: check id... +I (296254) modbus: ok +I (296254) modbus: add: 0, length: 10 +I (296254) modbus: Read Holding Registers +I (296954) example: expect speed: 2.000000 real_pulses:0 +I (296954) example: new speed:399.000000 +I (297274) modbus tcp: ModBusSlave_recv() +I (297274) modbus: ModbusSlaveProcess()--------------------------- +I (297274) modbus: check id... +I (297274) modbus: ok +I (297274) modbus: add: 0, length: 10 +I (297274) modbus: Read Holding Registers +I (297954) example: expect speed: 2.000000 real_pulses:0 +I (297954) example: new speed:399.000000 +I (298304) modbus tcp: ModBusSlave_recv() +I (298304) modbus: ModbusSlaveProcess()--------------------------- +I (298304) modbus: check id... +I (298304) modbus: ok +I (298304) modbus: add: 0, length: 10 +I (298304) modbus: Read Holding Registers +I (298954) example: expect speed: 2.000000 real_pulses:0 +I (298954) example: new speed:399.000000 +I (299324) modbus tcp: ModBusSlave_recv() +I (299324) modbus: ModbusSlaveProcess()--------------------------- +I (299324) modbus: check id... +I (299324) modbus: ok +I (299324) modbus: add: 0, length: 10 +I (299324) modbus: Read Holding Registers +I (299954) example: expect speed: 2.000000 real_pulses:0 +I (299954) example: new speed:399.000000 +I (300404) modbus tcp: ModBusSlave_recv() +I (300404) modbus: ModbusSlaveProcess()--------------------------- +I (300404) modbus: check id... +I (300404) modbus: ok +I (300404) modbus: add: 0, length: 10 +I (300404) modbus: Read Holding Registers +I (300954) example: expect speed: 2.000000 real_pulses:0 +I (300954) example: new speed:399.000000 +I (301404) modbus tcp: ModBusSlave_recv() +I (301404) modbus: ModbusSlaveProcess()--------------------------- +I (301404) modbus: check id... +I (301404) modbus: ok +I (301404) modbus: add: 0, length: 10 +I (301404) modbus: Read Holding Registers +I (301954) example: expect speed: 2.000000 real_pulses:0 +I (301954) example: new speed:399.000000 +I (302394) modbus tcp: ModBusSlave_recv() +I (302394) modbus: ModbusSlaveProcess()--------------------------- +I (302394) modbus: check id... +I (302394) modbus: ok +I (302394) modbus: add: 0, length: 10 +I (302394) modbus: Read Holding Registers +I (302954) example: expect speed: 2.000000 real_pulses:0 +I (302954) example: new speed:399.000000 +I (303424) modbus tcp: ModBusSlave_recv() +I (303424) modbus: ModbusSlaveProcess()--------------------------- +I (303424) modbus: check id... +I (303424) modbus: ok +I (303424) modbus: add: 0, length: 10 +I (303424) modbus: Read Holding Registers +I (303954) example: expect speed: 2.000000 real_pulses:0 +I (303954) example: new speed:399.000000 +I (304444) modbus tcp: ModBusSlave_recv() +I (304444) modbus: ModbusSlaveProcess()--------------------------- +I (304444) modbus: check id... +I (304444) modbus: ok +I (304444) modbus: add: 0, length: 10 +I (304444) modbus: Read Holding Registers +I (304954) example: expect speed: 2.000000 real_pulses:0 +I (304954) example: new speed:399.000000 +I (305524) modbus tcp: ModBusSlave_recv() +I (305534) modbus: ModbusSlaveProcess()--------------------------- +I (305534) modbus: check id... +I (305534) modbus: ok +I (305534) modbus: add: 0, length: 10 +I (305534) modbus: Read Holding Registers +I (305954) example: expect speed: 2.000000 real_pulses:0 +I (305954) example: new speed:399.000000 +I (306494) modbus tcp: ModBusSlave_recv() +I (306494) modbus: ModbusSlaveProcess()--------------------------- +I (306494) modbus: check id... +I (306494) modbus: ok +I (306494) modbus: add: 0, length: 10 +I (306494) modbus: Read Holding Registers +I (306954) example: expect speed: 2.000000 real_pulses:0 +I (306954) example: new speed:399.000000 +I (307524) modbus tcp: ModBusSlave_recv() +I (307524) modbus: ModbusSlaveProcess()--------------------------- +I (307524) modbus: check id... +I (307524) modbus: ok +I (307524) modbus: add: 0, length: 10 +I (307524) modbus: Read Holding Registers +I (307954) example: expect speed: 2.000000 real_pulses:0 +I (307954) example: new speed:399.000000 +I (308434) modbus tcp: ModBusSlave_recv() +I (308434) modbus: ModbusSlaveProcess()--------------------------- +I (308444) modbus: check id... +I (308444) modbus: ok +I (308444) modbus: add: 0, length: 10 +I (308444) modbus: Read Holding Registers +I (308954) example: expect speed: 2.000000 real_pulses:0 +I (308954) example: new speed:399.000000 +I (309464) modbus tcp: ModBusSlave_recv() +I (309474) modbus: ModbusSlaveProcess()--------------------------- +I (309474) modbus: check id... +I (309474) modbus: ok +I (309474) modbus: add: 0, length: 10 +I (309474) modbus: Read Holding Registers +I (309954) example: expect speed: 2.000000 real_pulses:0 +I (309954) example: new speed:399.000000 +I (310694) modbus tcp: ModBusSlave_recv() +I (310694) modbus: ModbusSlaveProcess()--------------------------- +I (310694) modbus: check id... +I (310694) modbus: ok +I (310694) modbus: add: 0, length: 10 +I (310694) modbus: Read Holding Registers +I (310954) example: expect speed: 2.000000 real_pulses:0 +I (310954) example: new speed:399.000000 +I (311514) modbus tcp: ModBusSlave_recv() +I (311514) modbus: ModbusSlaveProcess()--------------------------- +I (311514) modbus: check id... +I (311514) modbus: ok +I (311514) modbus: add: 0, length: 10 +I (311514) modbus: Read Holding Registers +I (311954) example: expect speed: 2.000000 real_pulses:0 +I (311954) example: new speed:399.000000 +I (312534) modbus tcp: ModBusSlave_recv() +I (312544) modbus: ModbusSlaveProcess()--------------------------- +I (312544) modbus: check id... +I (312544) modbus: ok +I (312544) modbus: add: 0, length: 10 +I (312544) modbus: Read Holding Registers +I (312954) example: expect speed: 2.000000 real_pulses:0 +I (312954) example: new speed:399.000000 +I (313594) modbus tcp: ModBusSlave_recv() +I (313594) modbus: ModbusSlaveProcess()--------------------------- +I (313594) modbus: check id... +I (313594) modbus: ok +I (313594) modbus: add: 0, length: 10 +I (313594) modbus: Read Holding Registers +I (313954) example: expect speed: 2.000000 real_pulses:0 +I (313954) example: new speed:399.000000 +I (314584) modbus tcp: ModBusSlave_recv() +I (314584) modbus: ModbusSlaveProcess()--------------------------- +I (314584) modbus: check id... +I (314584) modbus: ok +I (314584) modbus: add: 0, length: 10 +I (314584) modbus: Read Holding Registers +I (314954) example: expect speed: 2.000000 real_pulses:0 +I (314954) example: new speed:399.000000 +I (315604) modbus tcp: ModBusSlave_recv() +I (315604) modbus: ModbusSlaveProcess()--------------------------- +I (315604) modbus: check id... +I (315604) modbus: ok +I (315604) modbus: add: 0, length: 10 +I (315604) modbus: Read Holding Registers +I (315954) example: expect speed: 2.000000 real_pulses:0 +I (315954) example: new speed:399.000000 +I (316654) modbus tcp: ModBusSlave_recv() +I (316654) modbus: ModbusSlaveProcess()--------------------------- +I (316654) modbus: check id... +I (316664) modbus: ok +I (316664) modbus: add: 0, length: 10 +I (316664) modbus: Read Holding Registers +I (316954) example: expect speed: 2.000000 real_pulses:0 +I (316954) example: new speed:399.000000 +I (317654) modbus tcp: ModBusSlave_recv() +I (317654) modbus: ModbusSlaveProcess()--------------------------- +I (317654) modbus: check id... +I (317654) modbus: ok +I (317654) modbus: add: 0, length: 10 +I (317654) modbus: Read Holding Registers +I (317954) example: expect speed: 2.000000 real_pulses:0 +I (317954) example: new speed:399.000000 +I (318954) example: expect speed: 2.000000 real_pulses:0 +I (318954) example: new speed:399.000000 +I (319024) modbus tcp: ModBusSlave_recv() +I (319024) modbus: ModbusSlaveProcess()--------------------------- +I (319024) modbus: check id... +I (319024) modbus: ok +I (319024) modbus: add: 0, length: 10 +I (319024) modbus: Read Holding Registers +I (319954) example: expect speed: 2.000000 real_pulses:0 +I (319954) example: new speed:399.000000 +I (320214) modbus tcp: ModBusSlave_recv() +I (320214) modbus: ModbusSlaveProcess()--------------------------- +I (320214) modbus: check id... +I (320214) modbus: ok +I (320214) modbus: add: 0, length: 10 +I (320214) modbus: Read Holding Registers +I (320954) example: expect speed: 2.000000 real_pulses:0 +I (320954) example: new speed:399.000000 +I (321344) modbus tcp: ModBusSlave_recv() +I (321344) modbus: ModbusSlaveProcess()--------------------------- +I (321344) modbus: check id... +I (321344) modbus: ok +I (321344) modbus: add: 0, length: 10 +I (321344) modbus: Read Holding Registers +I (321954) example: expect speed: 2.000000 real_pulses:0 +I (321954) example: new speed:399.000000 +I (322394) modbus tcp: ModBusSlave_recv() +I (322394) modbus: ModbusSlaveProcess()--------------------------- +I (322394) modbus: check id... +I (322394) modbus: ok +I (322394) modbus: add: 0, length: 10 +I (322394) modbus: Read Holding Registers +I (322954) example: expect speed: 2.000000 real_pulses:0 +I (322954) example: new speed:399.000000 +I (323494) modbus tcp: ModBusSlave_recv() +I (323494) modbus: ModbusSlaveProcess()--------------------------- +I (323504) modbus: check id... +I (323504) modbus: ok +I (323504) modbus: add: 0, length: 10 +I (323504) modbus: Read Holding Registers +I (323954) example: expect speed: 2.000000 real_pulses:0 +I (323954) example: new speed:399.000000 +I (324414) modbus tcp: ModBusSlave_recv() +I (324414) modbus: ModbusSlaveProcess()--------------------------- +I (324414) modbus: check id... +I (324414) modbus: ok +I (324414) modbus: add: 0, length: 10 +I (324414) modbus: Read Holding Registers +I (324954) example: expect speed: 2.000000 real_pulses:0 +I (324954) example: new speed:399.000000 +I (325444) modbus tcp: ModBusSlave_recv() +I (325444) modbus: ModbusSlaveProcess()--------------------------- +I (325444) modbus: check id... +I (325444) modbus: ok +I (325444) modbus: add: 0, length: 10 +I (325444) modbus: Read Holding Registers +I (325954) example: expect speed: 2.000000 real_pulses:0 +I (325954) example: new speed:399.000000 +I (326354) modbus tcp: ModBusSlave_recv() +I (326354) modbus: ModbusSlaveProcess()--------------------------- +I (326364) modbus: check id... +I (326364) modbus: ok +I (326364) modbus: add: 0, length: 10 +I (326364) modbus: Read Holding Registers +I (326954) example: expect speed: 2.000000 real_pulses:0 +I (326954) example: new speed:399.000000 +I (327384) modbus tcp: ModBusSlave_recv() +I (327384) modbus: ModbusSlaveProcess()--------------------------- +I (327384) modbus: check id... +I (327384) modbus: ok +I (327384) modbus: add: 0, length: 10 +I (327384) modbus: Read Holding Registers +I (327954) example: expect speed: 2.000000 real_pulses:0 +I (327954) example: new speed:399.000000 +I (328404) modbus tcp: ModBusSlave_recv() +I (328404) modbus: ModbusSlaveProcess()--------------------------- +I (328404) modbus: check id... +I (328404) modbus: ok +I (328404) modbus: add: 0, length: 10 +I (328404) modbus: Read Holding Registers +I (328954) example: expect speed: 2.000000 real_pulses:0 +I (328954) example: new speed:399.000000 +I (329434) modbus tcp: ModBusSlave_recv() +I (329434) modbus: ModbusSlaveProcess()--------------------------- +I (329434) modbus: check id... +I (329434) modbus: ok +I (329434) modbus: add: 0, length: 10 +I (329434) modbus: Read Holding Registers +I (329954) example: expect speed: 2.000000 real_pulses:0 +I (329954) example: new speed:399.000000 +I (330454) modbus tcp: ModBusSlave_recv() +I (330454) modbus: ModbusSlaveProcess()--------------------------- +I (330454) modbus: check id... +I (330454) modbus: ok +I (330454) modbus: add: 0, length: 10 +I (330454) modbus: Read Holding Registers +I (330954) example: expect speed: 2.000000 real_pulses:0 +I (330954) example: new speed:399.000000 +I (331484) modbus tcp: ModBusSlave_recv() +I (331484) modbus: ModbusSlaveProcess()--------------------------- +I (331484) modbus: check id... +I (331484) modbus: ok +I (331484) modbus: add: 0, length: 10 +I (331484) modbus: Read Holding Registers +I (331954) example: expect speed: 2.000000 real_pulses:0 +I (331954) example: new speed:399.000000 +I (332954) example: expect speed: 2.000000 real_pulses:0 +I (332954) example: new speed:399.000000 +I (333634) modbus tcp: ModBusSlave_recv() +I (333634) modbus: ModbusSlaveProcess()--------------------------- +I (333634) modbus: check id... +I (333634) modbus: ok +I (333634) modbus: add: 0, length: 10 +I (333634) modbus: Read Holding Registers +I (333954) example: expect speed: 2.000000 real_pulses:0 +I (333954) example: new speed:399.000000 diff --git a/build/log/idf_py_stdout_output_19236 b/build/log/idf_py_stdout_output_19236 new file mode 100644 index 0000000..1c17860 --- /dev/null +++ b/build/log/idf_py_stdout_output_19236 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 446.4 kbit/s)... +Hash of data verified. +Compressed 732048 bytes to 462350... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3e... (6 %) +Writing at 0x00026289... (10 %) +Writing at 0x0002b793... (13 %) +Writing at 0x00035c1f... (17 %) +Writing at 0x0003b9c3... (20 %) +Writing at 0x00041524... (24 %) +Writing at 0x0004767d... (27 %) +Writing at 0x0004dcb3... (31 %) +Writing at 0x00053635... (34 %) +Writing at 0x00058c6f... (37 %) +Writing at 0x0005e4bc... (41 %) +Writing at 0x00063ddd... (44 %) +Writing at 0x00069963... (48 %) +Writing at 0x0006f58c... (51 %) +Writing at 0x000743eb... (55 %) +Writing at 0x000794c2... (58 %) +Writing at 0x0007e517... (62 %) +Writing at 0x0008380f... (65 %) +Writing at 0x00088d05... (68 %) +Writing at 0x0008e77b... (72 %) +Writing at 0x00093f0e... (75 %) +Writing at 0x000998b0... (79 %) +Writing at 0x0009f8bf... (82 %) +Writing at 0x000a510a... (86 %) +Writing at 0x000aae76... (89 %) +Writing at 0x000b4bd9... (93 %) +Writing at 0x000bb8ff... (96 %) +Writing at 0x000c11cd... (100 %) +Wrote 732048 bytes (462350 compressed) at 0x00010000 in 7.7 seconds (effective 762.8 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 512.0 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_19280 b/build/log/idf_py_stdout_output_19280 new file mode 100644 index 0000000..bca672f --- /dev/null +++ b/build/log/idf_py_stdout_output_19280 @@ -0,0 +1,988 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21550h (136528) map +I (121) esp_image: segment 1: paddr=00031578 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=00035380 vaddr=40374000 size=0ac98h ( 44184) load +I (136) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae40h (503360) map +I (227) esp_image: segment 4: paddr=000bae68 vaddr=4037ec98 size=07c7ch ( 31868) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 2691260a3c986a7d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (384) wifi station: wifi_init_sta finished. +I (384) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (384) wifi:state: init -> auth (b0) +I (394) wifi:state: auth -> assoc (0) +I (534) wifi:state: assoc -> run (10) +I (674) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (674) wifi:security: WPA2-PSK, phy: bgn, rssi: -77 +I (674) wifi:pm start, type: 1 + +I (674) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (724) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (794) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (794) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (2184) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (2184) wifi station: got ip:192.168.1.107 +I (2184) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (2184) modbus tcp: ModBusTCPSlave_init() +I (2184) example: Create DC motor +I (2184) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (2184) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (2184) example: Init pcnt driver to decode rotary signal +I (2184) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2184) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2184) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2184) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2184) example: Create PID control block +I (2184) example: Create a timer to do PID calculation periodically +I (2184) example: Enable motor +I (2184) example: Forward motor +I (2184) example: Start motor speed loop +I (21564) modbus tcp: accept assess +I (21944) modbus tcp: ModBusSlave_recv() +I (21944) modbus: ModbusSlaveProcess() +I (21944) modbus: check id... +I (21944) modbus: ok +I (21944) modbus: add: 0, length: 10 +I (21944) modbus: Read Holding Registers +I (22854) modbus tcp: ModBusSlave_recv() +I (22854) modbus: ModbusSlaveProcess() +I (22854) modbus: check id... +I (22854) modbus: ok +I (22854) modbus: add: 0, length: 10 +I (22854) modbus: Read Holding Registers +I (24134) modbus tcp: ModBusSlave_recv() +I (24134) modbus: ModbusSlaveProcess() +I (24134) modbus: check id... +I (24134) modbus: ok +I (24134) modbus: add: 0, length: 10 +I (24134) modbus: Read Holding Registers +I (24954) modbus tcp: ModBusSlave_recv() +I (24954) modbus: ModbusSlaveProcess() +I (24954) modbus: check id... +I (24954) modbus: ok +I (24954) modbus: add: 0, length: 10 +I (24954) modbus: Read Holding Registers +I (25844) modbus tcp: ModBusSlave_recv() +I (25844) modbus: ModbusSlaveProcess() +I (25844) modbus: check id... +I (25844) modbus: ok +I (25844) modbus: add: 0, length: 10 +I (25844) modbus: Read Holding Registers +I (26964) modbus tcp: ModBusSlave_recv() +I (26964) modbus: ModbusSlaveProcess() +I (26964) modbus: check id... +I (26964) modbus: ok +I (26964) modbus: add: 0, length: 10 +I (26964) modbus: Read Holding Registers +I (27864) modbus tcp: ModBusSlave_recv() +I (27864) modbus: ModbusSlaveProcess() +I (27864) modbus: check id... +I (27864) modbus: ok +I (27864) modbus: add: 0, length: 10 +I (27864) modbus: Read Holding Registers +I (28894) modbus tcp: ModBusSlave_recv() +I (28894) modbus: ModbusSlaveProcess() +I (28894) modbus: check id... +I (28894) modbus: ok +I (28894) modbus: add: 0, length: 10 +I (28894) modbus: Read Holding Registers +I (29924) modbus tcp: ModBusSlave_recv() +I (29924) modbus: ModbusSlaveProcess() +I (29924) modbus: check id... +I (29924) modbus: ok +I (29924) modbus: add: 0, length: 10 +I (29924) modbus: Read Holding Registers +I (30944) modbus tcp: ModBusSlave_recv() +I (30944) modbus: ModbusSlaveProcess() +I (30944) modbus: check id... +I (30944) modbus: ok +I (30944) modbus: add: 0, length: 10 +I (30944) modbus: Read Holding Registers +I (31964) modbus tcp: ModBusSlave_recv() +I (31964) modbus: ModbusSlaveProcess() +I (31964) modbus: check id... +I (31964) modbus: ok +I (31964) modbus: add: 0, length: 10 +I (31964) modbus: Read Holding Registers +I (32994) modbus tcp: ModBusSlave_recv() +I (32994) modbus: ModbusSlaveProcess() +I (32994) modbus: check id... +I (32994) modbus: ok +I (32994) modbus: add: 0, length: 10 +I (32994) modbus: Read Holding Registers +I (34014) modbus tcp: ModBusSlave_recv() +I (34014) modbus: ModbusSlaveProcess() +I (34014) modbus: check id... +I (34014) modbus: ok +I (34014) modbus: add: 0, length: 10 +I (34014) modbus: Read Holding Registers +I (35034) modbus tcp: ModBusSlave_recv() +I (35034) modbus: ModbusSlaveProcess() +I (35034) modbus: check id... +I (35034) modbus: ok +I (35034) modbus: add: 0, length: 10 +I (35034) modbus: Read Holding Registers +I (36064) modbus tcp: ModBusSlave_recv() +I (36064) modbus: ModbusSlaveProcess() +I (36064) modbus: check id... +I (36064) modbus: ok +I (36064) modbus: add: 0, length: 10 +I (36064) modbus: Read Holding Registers +I (37084) modbus tcp: ModBusSlave_recv() +I (37084) modbus: ModbusSlaveProcess() +I (37084) modbus: check id... +I (37084) modbus: ok +I (37084) modbus: add: 0, length: 10 +I (37084) modbus: Read Holding Registers +I (38114) modbus tcp: ModBusSlave_recv() +I (38114) modbus: ModbusSlaveProcess() +I (38114) modbus: check id... +I (38114) modbus: ok +I (38114) modbus: add: 0, length: 10 +I (38114) modbus: Read Holding Registers +I (39034) modbus tcp: ModBusSlave_recv() +I (39034) modbus: ModbusSlaveProcess() +I (39034) modbus: check id... +I (39034) modbus: ok +I (39034) modbus: add: 0, length: 10 +I (39034) modbus: Read Holding Registers +I (40054) modbus tcp: ModBusSlave_recv() +I (40054) modbus: ModbusSlaveProcess() +I (40054) modbus: check id... +I (40054) modbus: ok +I (40054) modbus: add: 0, length: 10 +I (40054) modbus: Read Holding Registers +I (41134) modbus tcp: ModBusSlave_recv() +I (41134) modbus: ModbusSlaveProcess() +I (41134) modbus: check id... +I (41134) modbus: ok +I (41134) modbus: add: 0, length: 10 +I (41134) modbus: Read Holding Registers +I (42104) modbus tcp: ModBusSlave_recv() +I (42104) modbus: ModbusSlaveProcess() +I (42104) modbus: check id... +I (42104) modbus: ok +I (42104) modbus: add: 0, length: 10 +I (42104) modbus: Read Holding Registers +I (43124) modbus tcp: ModBusSlave_recv() +I (43124) modbus: ModbusSlaveProcess() +I (43124) modbus: check id... +I (43124) modbus: ok +I (43124) modbus: add: 0, length: 10 +I (43124) modbus: Read Holding Registers +I (44174) modbus tcp: ModBusSlave_recv() +I (44174) modbus: ModbusSlaveProcess() +I (44174) modbus: check id... +I (44174) modbus: ok +I (44174) modbus: add: 0, length: 10 +I (44174) modbus: Read Holding Registers +I (45174) modbus tcp: ModBusSlave_recv() +I (45174) modbus: ModbusSlaveProcess() +I (45174) modbus: check id... +I (45174) modbus: ok +I (45174) modbus: add: 0, length: 10 +I (45174) modbus: Read Holding Registers +I (46194) modbus tcp: ModBusSlave_recv() +I (46194) modbus: ModbusSlaveProcess() +I (46194) modbus: check id... +I (46194) modbus: ok +I (46194) modbus: add: 0, length: 10 +I (46194) modbus: Read Holding Registers +I (47224) modbus tcp: ModBusSlave_recv() +I (47224) modbus: ModbusSlaveProcess() +I (47224) modbus: check id... +I (47224) modbus: ok +I (47224) modbus: add: 0, length: 10 +I (47224) modbus: Read Holding Registers +I (48244) modbus tcp: ModBusSlave_recv() +I (48244) modbus: ModbusSlaveProcess() +I (48244) modbus: check id... +I (48244) modbus: ok +I (48244) modbus: add: 0, length: 10 +I (48244) modbus: Read Holding Registers +I (49274) modbus tcp: ModBusSlave_recv() +I (49274) modbus: ModbusSlaveProcess() +I (49274) modbus: check id... +I (49274) modbus: ok +I (49274) modbus: add: 0, length: 10 +I (49274) modbus: Read Holding Registers +I (50294) modbus tcp: ModBusSlave_recv() +I (50294) modbus: ModbusSlaveProcess() +I (50294) modbus: check id... +I (50294) modbus: ok +I (50294) modbus: add: 0, length: 10 +I (50294) modbus: Read Holding Registers +I (51384) modbus tcp: ModBusSlave_recv() +I (51384) modbus: ModbusSlaveProcess() +I (51384) modbus: check id... +I (51384) modbus: ok +I (51384) modbus: add: 0, length: 10 +I (51384) modbus: Read Holding Registers +I (52234) modbus tcp: ModBusSlave_recv() +I (52234) modbus: ModbusSlaveProcess() +I (52234) modbus: check id... +I (52244) modbus: ok +I (52244) modbus: add: 0, length: 10 +I (52244) modbus: Read Holding Registers +I (53264) modbus tcp: ModBusSlave_recv() +I (53264) modbus: ModbusSlaveProcess() +I (53264) modbus: check id... +I (53264) modbus: ok +I (53264) modbus: add: 0, length: 10 +I (53264) modbus: Read Holding Registers +I (54284) modbus tcp: ModBusSlave_recv() +I (54284) modbus: ModbusSlaveProcess() +I (54284) modbus: check id... +I (54284) modbus: ok +I (54284) modbus: add: 0, length: 10 +I (54284) modbus: Read Holding Registers +I (55314) modbus tcp: ModBusSlave_recv() +I (55314) modbus: ModbusSlaveProcess() +I (55314) modbus: check id... +I (55314) modbus: ok +I (55314) modbus: add: 0, length: 10 +I (55314) modbus: Read Holding Registers +I (56404) modbus tcp: ModBusSlave_recv() +I (56404) modbus: ModbusSlaveProcess() +I (56404) modbus: check id... +I (56404) modbus: ok +I (56404) modbus: add: 0, length: 10 +I (56404) modbus: Read Holding Registers +I (57364) modbus tcp: ModBusSlave_recv() +I (57364) modbus: ModbusSlaveProcess() +I (57364) modbus: check id... +I (57364) modbus: ok +I (57364) modbus: add: 0, length: 10 +I (57364) modbus: Read Holding Registers +I (58384) modbus tcp: ModBusSlave_recv() +I (58384) modbus: ModbusSlaveProcess() +I (58384) modbus: check id... +I (58384) modbus: ok +I (58384) modbus: add: 0, length: 10 +I (58384) modbus: Read Holding Registers +I (59404) modbus tcp: ModBusSlave_recv() +I (59404) modbus: ModbusSlaveProcess() +I (59404) modbus: check id... +I (59404) modbus: ok +I (59404) modbus: add: 0, length: 10 +I (59404) modbus: Read Holding Registers +I (60384) modbus tcp: ModBusSlave_recv() +I (60384) modbus: ModbusSlaveProcess() +I (60384) modbus: check id... +I (60384) modbus: ok +I (60384) modbus: add: 0, length: 10 +I (60384) modbus: Read Holding Registers +I (61774) modbus tcp: ModBusSlave_recv() +I (61774) modbus: ModbusSlaveProcess() +I (61774) modbus: check id... +I (61774) modbus: ok +I (61774) modbus: add: 0, length: 10 +I (61774) modbus: Read Holding Registers +I (62474) modbus tcp: ModBusSlave_recv() +I (62474) modbus: ModbusSlaveProcess() +I (62474) modbus: check id... +I (62474) modbus: ok +I (62474) modbus: add: 0, length: 10 +I (62474) modbus: Read Holding Registers +I (63404) modbus tcp: ModBusSlave_recv() +I (63404) modbus: ModbusSlaveProcess() +I (63404) modbus: check id... +I (63404) modbus: ok +I (63404) modbus: add: 0, length: 10 +I (63404) modbus: Read Holding Registers +I (64424) modbus tcp: ModBusSlave_recv() +I (64424) modbus: ModbusSlaveProcess() +I (64424) modbus: check id... +I (64424) modbus: ok +I (64424) modbus: add: 0, length: 10 +I (64424) modbus: Read Holding Registers +I (65454) modbus tcp: ModBusSlave_recv() +I (65454) modbus: ModbusSlaveProcess() +I (65454) modbus: check id... +I (65454) modbus: ok +I (65454) modbus: add: 0, length: 10 +I (65454) modbus: Read Holding Registers +I (66474) modbus tcp: ModBusSlave_recv() +I (66474) modbus: ModbusSlaveProcess() +I (66474) modbus: check id... +I (66474) modbus: ok +I (66474) modbus: add: 0, length: 10 +I (66474) modbus: Read Holding Registers +I (67524) modbus tcp: ModBusSlave_recv() +I (67524) modbus: ModbusSlaveProcess() +I (67524) modbus: check id... +I (67524) modbus: ok +I (67524) modbus: add: 0, length: 10 +I (67524) modbus: Read Holding Registers +I (68534) modbus tcp: ModBusSlave_recv() +I (68534) modbus: ModbusSlaveProcess() +I (68534) modbus: check id... +I (68534) modbus: ok +I (68534) modbus: add: 0, length: 10 +I (68534) modbus: Read Holding Registers +I (69554) modbus tcp: ModBusSlave_recv() +I (69554) modbus: ModbusSlaveProcess() +I (69554) modbus: check id... +I (69554) modbus: ok +I (69554) modbus: add: 0, length: 10 +I (69554) modbus: Read Holding Registers +I (70574) modbus tcp: ModBusSlave_recv() +I (70574) modbus: ModbusSlaveProcess() +I (70574) modbus: check id... +I (70574) modbus: ok +I (70574) modbus: add: 0, length: 10 +I (70574) modbus: Read Holding Registers +I (71594) modbus tcp: ModBusSlave_recv() +I (71594) modbus: ModbusSlaveProcess() +I (71594) modbus: check id... +I (71594) modbus: ok +I (71594) modbus: add: 0, length: 10 +I (71594) modbus: Read Holding Registers +I (72614) modbus tcp: ModBusSlave_recv() +I (72614) modbus: ModbusSlaveProcess() +I (72614) modbus: check id... +I (72614) modbus: ok +I (72614) modbus: add: 0, length: 10 +I (72614) modbus: Read Holding Registers +I (73644) modbus tcp: ModBusSlave_recv() +I (73644) modbus: ModbusSlaveProcess() +I (73644) modbus: check id... +I (73644) modbus: ok +I (73644) modbus: add: 0, length: 10 +I (73644) modbus: Read Holding Registers +I (74674) modbus tcp: ModBusSlave_recv() +I (74674) modbus: ModbusSlaveProcess() +I (74674) modbus: check id... +I (74674) modbus: ok +I (74674) modbus: add: 0, length: 10 +I (74674) modbus: Read Holding Registers +I (75684) modbus tcp: ModBusSlave_recv() +I (75684) modbus: ModbusSlaveProcess() +I (75684) modbus: check id... +I (75684) modbus: ok +I (75684) modbus: add: 0, length: 10 +I (75684) modbus: Read Holding Registers +I (76614) modbus tcp: ModBusSlave_recv() +I (76614) modbus: ModbusSlaveProcess() +I (76614) modbus: check id... +I (76614) modbus: ok +I (76614) modbus: add: 0, length: 10 +I (76614) modbus: Read Holding Registers +I (77634) modbus tcp: ModBusSlave_recv() +I (77634) modbus: ModbusSlaveProcess() +I (77634) modbus: check id... +I (77634) modbus: ok +I (77634) modbus: add: 0, length: 10 +I (77634) modbus: Read Holding Registers +I (78664) modbus tcp: ModBusSlave_recv() +I (78664) modbus: ModbusSlaveProcess() +I (78664) modbus: check id... +I (78664) modbus: ok +I (78664) modbus: add: 0, length: 10 +I (78664) modbus: Read Holding Registers +I (78764) modbus tcp: ModBusSlave_recv() +I (78764) modbus: ModbusSlaveProcess() +I (78764) modbus: check id... +I (78764) modbus: ok +I (78764) modbus: add: 0, length: 2 +I (78764) modbus: Write Single Register +I (78764) modbus: gwordvar[0]=2 +I (79694) modbus tcp: ModBusSlave_recv() +I (79694) modbus: ModbusSlaveProcess() +I (79694) modbus: check id... +I (79694) modbus: ok +I (79694) modbus: add: 0, length: 10 +I (79694) modbus: Read Holding Registers +I (80704) modbus tcp: ModBusSlave_recv() +I (80704) modbus: ModbusSlaveProcess() +I (80704) modbus: check id... +I (80704) modbus: ok +I (80704) modbus: add: 0, length: 10 +I (80704) modbus: Read Holding Registers +I (81734) modbus tcp: ModBusSlave_recv() +I (81734) modbus: ModbusSlaveProcess() +I (81734) modbus: check id... +I (81734) modbus: ok +I (81734) modbus: add: 0, length: 10 +I (81734) modbus: Read Holding Registers +I (82754) modbus tcp: ModBusSlave_recv() +I (82754) modbus: ModbusSlaveProcess() +I (82754) modbus: check id... +I (82754) modbus: ok +I (82754) modbus: add: 0, length: 10 +I (82754) modbus: Read Holding Registers +I (83774) modbus tcp: ModBusSlave_recv() +I (83774) modbus: ModbusSlaveProcess() +I (83774) modbus: check id... +I (83774) modbus: ok +I (83774) modbus: add: 0, length: 10 +I (83774) modbus: Read Holding Registers +I (84804) modbus tcp: ModBusSlave_recv() +I (84804) modbus: ModbusSlaveProcess() +I (84804) modbus: check id... +I (84804) modbus: ok +I (84804) modbus: add: 0, length: 10 +I (84804) modbus: Read Holding Registers +I (85824) modbus tcp: ModBusSlave_recv() +I (85824) modbus: ModbusSlaveProcess() +I (85824) modbus: check id... +I (85824) modbus: ok +I (85824) modbus: add: 0, length: 10 +I (85824) modbus: Read Holding Registers +I (85914) modbus tcp: ModBusSlave_recv() +I (85914) modbus: ModbusSlaveProcess() +I (85914) modbus: check id... +I (85914) modbus: ok +I (85914) modbus: add: 0, length: 2 +I (85914) modbus: Write Single Register +I (85914) modbus: gwordvar[0]=2 +I (86854) modbus tcp: ModBusSlave_recv() +I (86854) modbus: ModbusSlaveProcess() +I (86854) modbus: check id... +I (86854) modbus: ok +I (86854) modbus: add: 0, length: 10 +I (86854) modbus: Read Holding Registers +I (87874) modbus tcp: ModBusSlave_recv() +I (87874) modbus: ModbusSlaveProcess() +I (87874) modbus: check id... +I (87874) modbus: ok +I (87874) modbus: add: 0, length: 10 +I (87874) modbus: Read Holding Registers +I (88904) modbus tcp: ModBusSlave_recv() +I (88904) modbus: ModbusSlaveProcess() +I (88904) modbus: check id... +I (88904) modbus: ok +I (88904) modbus: add: 0, length: 10 +I (88904) modbus: Read Holding Registers +I (89924) modbus tcp: ModBusSlave_recv() +I (89924) modbus: ModbusSlaveProcess() +I (89924) modbus: check id... +I (89924) modbus: ok +I (89924) modbus: add: 0, length: 10 +I (89924) modbus: Read Holding Registers +I (90944) modbus tcp: ModBusSlave_recv() +I (90944) modbus: ModbusSlaveProcess() +I (90944) modbus: check id... +I (90944) modbus: ok +I (90944) modbus: add: 0, length: 10 +I (90944) modbus: Read Holding Registers +I (91874) modbus tcp: ModBusSlave_recv() +I (91874) modbus: ModbusSlaveProcess() +I (91874) modbus: check id... +I (91874) modbus: ok +I (91874) modbus: add: 0, length: 10 +I (91874) modbus: Read Holding Registers +I (92894) modbus tcp: ModBusSlave_recv() +I (92894) modbus: ModbusSlaveProcess() +I (92894) modbus: check id... +I (92894) modbus: ok +I (92894) modbus: add: 0, length: 10 +I (92894) modbus: Read Holding Registers +I (93914) modbus tcp: ModBusSlave_recv() +I (93914) modbus: ModbusSlaveProcess() +I (93914) modbus: check id... +I (93914) modbus: ok +I (93914) modbus: add: 0, length: 10 +I (93914) modbus: Read Holding Registers +I (94944) modbus tcp: ModBusSlave_recv() +I (94944) modbus: ModbusSlaveProcess() +I (94944) modbus: check id... +I (94944) modbus: ok +I (94944) modbus: add: 0, length: 10 +I (94944) modbus: Read Holding Registers +I (95974) modbus tcp: ModBusSlave_recv() +I (95974) modbus: ModbusSlaveProcess() +I (95974) modbus: check id... +I (95974) modbus: ok +I (95974) modbus: add: 0, length: 10 +I (95974) modbus: Read Holding Registers +I (96984) modbus tcp: ModBusSlave_recv() +I (96984) modbus: ModbusSlaveProcess() +I (96984) modbus: check id... +I (96984) modbus: ok +I (96984) modbus: add: 0, length: 10 +I (96984) modbus: Read Holding Registers +I (98014) modbus tcp: ModBusSlave_recv() +I (98014) modbus: ModbusSlaveProcess() +I (98014) modbus: check id... +I (98014) modbus: ok +I (98014) modbus: add: 0, length: 10 +I (98014) modbus: Read Holding Registers +I (99034) modbus tcp: ModBusSlave_recv() +I (99034) modbus: ModbusSlaveProcess() +I (99034) modbus: check id... +I (99034) modbus: ok +I (99034) modbus: add: 0, length: 10 +I (99034) modbus: Read Holding Registers +I (100064) modbus tcp: ModBusSlave_recv() +I (100064) modbus: ModbusSlaveProcess() +I (100064) modbus: check id... +I (100064) modbus: ok +I (100064) modbus: add: 0, length: 10 +I (100064) modbus: Read Holding Registers +I (101234) modbus tcp: ModBusSlave_recv() +I (101234) modbus: ModbusSlaveProcess() +I (101234) modbus: check id... +I (101234) modbus: ok +I (101234) modbus: add: 0, length: 10 +I (101234) modbus: Read Holding Registers +I (102104) modbus tcp: ModBusSlave_recv() +I (102104) modbus: ModbusSlaveProcess() +I (102104) modbus: check id... +I (102104) modbus: ok +I (102104) modbus: add: 0, length: 10 +I (102104) modbus: Read Holding Registers +I (103134) modbus tcp: ModBusSlave_recv() +I (103134) modbus: ModbusSlaveProcess() +I (103134) modbus: check id... +I (103134) modbus: ok +I (103134) modbus: add: 0, length: 10 +I (103134) modbus: Read Holding Registers +I (104154) modbus tcp: ModBusSlave_recv() +I (104154) modbus: ModbusSlaveProcess() +I (104154) modbus: check id... +I (104154) modbus: ok +I (104154) modbus: add: 0, length: 10 +I (104154) modbus: Read Holding Registers +I (105184) modbus tcp: ModBusSlave_recv() +I (105184) modbus: ModbusSlaveProcess() +I (105184) modbus: check id... +I (105184) modbus: ok +I (105184) modbus: add: 0, length: 10 +I (105184) modbus: Read Holding Registers +I (106204) modbus tcp: ModBusSlave_recv() +I (106204) modbus: ModbusSlaveProcess() +I (106204) modbus: check id... +I (106204) modbus: ok +I (106204) modbus: add: 0, length: 10 +I (106204) modbus: Read Holding Registers +I (107124) modbus tcp: ModBusSlave_recv() +I (107124) modbus: ModbusSlaveProcess() +I (107124) modbus: check id... +I (107124) modbus: ok +I (107124) modbus: add: 0, length: 10 +I (107124) modbus: Read Holding Registers +I (108144) modbus tcp: ModBusSlave_recv() +I (108144) modbus: ModbusSlaveProcess() +I (108144) modbus: check id... +I (108144) modbus: ok +I (108144) modbus: add: 0, length: 10 +I (108144) modbus: Read Holding Registers +I (109174) modbus tcp: ModBusSlave_recv() +I (109174) modbus: ModbusSlaveProcess() +I (109174) modbus: check id... +I (109174) modbus: ok +I (109174) modbus: add: 0, length: 10 +I (109174) modbus: Read Holding Registers +I (110204) modbus tcp: ModBusSlave_recv() +I (110204) modbus: ModbusSlaveProcess() +I (110204) modbus: check id... +I (110204) modbus: ok +I (110204) modbus: add: 0, length: 10 +I (110204) modbus: Read Holding Registers +I (111224) modbus tcp: ModBusSlave_recv() +I (111224) modbus: ModbusSlaveProcess() +I (111224) modbus: check id... +I (111224) modbus: ok +I (111224) modbus: add: 0, length: 10 +I (111224) modbus: Read Holding Registers +I (112244) modbus tcp: ModBusSlave_recv() +I (112244) modbus: ModbusSlaveProcess() +I (112244) modbus: check id... +I (112244) modbus: ok +I (112244) modbus: add: 0, length: 10 +I (112244) modbus: Read Holding Registers +I (113264) modbus tcp: ModBusSlave_recv() +I (113264) modbus: ModbusSlaveProcess() +I (113264) modbus: check id... +I (113264) modbus: ok +I (113264) modbus: add: 0, length: 10 +I (113264) modbus: Read Holding Registers +I (114294) modbus tcp: ModBusSlave_recv() +I (114294) modbus: ModbusSlaveProcess() +I (114294) modbus: check id... +I (114294) modbus: ok +I (114294) modbus: add: 0, length: 10 +I (114294) modbus: Read Holding Registers +I (115324) modbus tcp: ModBusSlave_recv() +I (115324) modbus: ModbusSlaveProcess() +I (115324) modbus: check id... +I (115324) modbus: ok +I (115324) modbus: add: 0, length: 10 +I (115324) modbus: Read Holding Registers +I (116344) modbus tcp: ModBusSlave_recv() +I (116344) modbus: ModbusSlaveProcess() +I (116344) modbus: check id... +I (116344) modbus: ok +I (116344) modbus: add: 0, length: 10 +I (116344) modbus: Read Holding Registers +I (117364) modbus tcp: ModBusSlave_recv() +I (117364) modbus: ModbusSlaveProcess() +I (117364) modbus: check id... +I (117364) modbus: ok +I (117364) modbus: add: 0, length: 10 +I (117364) modbus: Read Holding Registers +I (118284) modbus tcp: ModBusSlave_recv() +I (118284) modbus: ModbusSlaveProcess() +I (118284) modbus: check id... +I (118284) modbus: ok +I (118284) modbus: add: 0, length: 10 +I (118284) modbus: Read Holding Registers +I (119314) modbus tcp: ModBusSlave_recv() +I (119314) modbus: ModbusSlaveProcess() +I (119314) modbus: check id... +I (119314) modbus: ok +I (119314) modbus: add: 0, length: 10 +I (119314) modbus: Read Holding Registers +I (120334) modbus tcp: ModBusSlave_recv() +I (120334) modbus: ModbusSlaveProcess() +I (120334) modbus: check id... +I (120334) modbus: ok +I (120334) modbus: add: 0, length: 10 +I (120334) modbus: Read Holding Registers +I (121354) modbus tcp: ModBusSlave_recv() +I (121354) modbus: ModbusSlaveProcess() +I (121354) modbus: check id... +I (121354) modbus: ok +I (121354) modbus: add: 0, length: 10 +I (121354) modbus: Read Holding Registers +I (122384) modbus tcp: ModBusSlave_recv() +I (122384) modbus: ModbusSlaveProcess() +I (122384) modbus: check id... +I (122384) modbus: ok +I (122384) modbus: add: 0, length: 10 +I (122384) modbus: Read Holding Registers +I (123404) modbus tcp: ModBusSlave_recv() +I (123404) modbus: ModbusSlaveProcess() +I (123404) modbus: check id... +I (123404) modbus: ok +I (123404) modbus: add: 0, length: 10 +I (123404) modbus: Read Holding Registers +I (124434) modbus tcp: ModBusSlave_recv() +I (124434) modbus: ModbusSlaveProcess() +I (124434) modbus: check id... +I (124434) modbus: ok +I (124434) modbus: add: 0, length: 10 +I (124434) modbus: Read Holding Registers +I (125464) modbus tcp: ModBusSlave_recv() +I (125464) modbus: ModbusSlaveProcess() +I (125464) modbus: check id... +I (125464) modbus: ok +I (125464) modbus: add: 0, length: 10 +I (125464) modbus: Read Holding Registers +I (126494) modbus tcp: ModBusSlave_recv() +I (126494) modbus: ModbusSlaveProcess() +I (126494) modbus: check id... +I (126494) modbus: ok +I (126494) modbus: add: 0, length: 10 +I (126494) modbus: Read Holding Registers +I (127524) modbus tcp: ModBusSlave_recv() +I (127524) modbus: ModbusSlaveProcess() +I (127524) modbus: check id... +I (127524) modbus: ok +I (127534) modbus: add: 0, length: 10 +I (127534) modbus: Read Holding Registers +I (128524) modbus tcp: ModBusSlave_recv() +I (128524) modbus: ModbusSlaveProcess() +I (128524) modbus: check id... +I (128534) modbus: ok +I (128534) modbus: add: 0, length: 10 +I (128534) modbus: Read Holding Registers +I (129584) modbus tcp: ModBusSlave_recv() +I (129584) modbus: ModbusSlaveProcess() +I (129584) modbus: check id... +I (129584) modbus: ok +I (129584) modbus: add: 0, length: 10 +I (129584) modbus: Read Holding Registers +I (130574) modbus tcp: ModBusSlave_recv() +I (130574) modbus: ModbusSlaveProcess() +I (130574) modbus: check id... +I (130574) modbus: ok +I (130574) modbus: add: 0, length: 10 +I (130574) modbus: Read Holding Registers +I (131604) modbus tcp: ModBusSlave_recv() +I (131604) modbus: ModbusSlaveProcess() +I (131604) modbus: check id... +I (131604) modbus: ok +I (131604) modbus: add: 0, length: 10 +I (131604) modbus: Read Holding Registers +I (132524) modbus tcp: ModBusSlave_recv() +I (132524) modbus: ModbusSlaveProcess() +I (132524) modbus: check id... +I (132524) modbus: ok +I (132524) modbus: add: 0, length: 10 +I (132524) modbus: Read Holding Registers +I (133544) modbus tcp: ModBusSlave_recv() +I (133544) modbus: ModbusSlaveProcess() +I (133544) modbus: check id... +I (133544) modbus: ok +I (133544) modbus: add: 0, length: 10 +I (133544) modbus: Read Holding Registers +I (134584) modbus tcp: ModBusSlave_recv() +I (134584) modbus: ModbusSlaveProcess() +I (134584) modbus: check id... +I (134584) modbus: ok +I (134584) modbus: add: 0, length: 10 +I (134584) modbus: Read Holding Registers +I (135614) modbus tcp: ModBusSlave_recv() +I (135614) modbus: ModbusSlaveProcess() +I (135614) modbus: check id... +I (135614) modbus: ok +I (135614) modbus: add: 0, length: 10 +I (135614) modbus: Read Holding Registers +I (136614) modbus tcp: ModBusSlave_recv() +I (136614) modbus: ModbusSlaveProcess() +I (136614) modbus: check id... +I (136614) modbus: ok +I (136614) modbus: add: 0, length: 10 +I (136614) modbus: Read Holding Registers +I (137644) modbus tcp: ModBusSlave_recv() +I (137644) modbus: ModbusSlaveProcess() +I (137644) modbus: check id... +I (137644) modbus: ok +I (137644) modbus: add: 0, length: 10 +I (137644) modbus: Read Holding Registers +I (138664) modbus tcp: ModBusSlave_recv() +I (138664) modbus: ModbusSlaveProcess() +I (138664) modbus: check id... +I (138664) modbus: ok +I (138664) modbus: add: 0, length: 10 +I (138674) modbus: Read Holding Registers +I (139694) modbus tcp: ModBusSlave_recv() +I (139694) modbus: ModbusSlaveProcess() +I (139694) modbus: check id... +I (139694) modbus: ok +I (139694) modbus: add: 0, length: 10 +I (139694) modbus: Read Holding Registers +I (140724) modbus tcp: ModBusSlave_recv() +I (140724) modbus: ModbusSlaveProcess() +I (140724) modbus: check id... +I (140724) modbus: ok +I (140724) modbus: add: 0, length: 10 +I (140724) modbus: Read Holding Registers +I (142044) modbus tcp: ModBusSlave_recv() +I (142044) modbus: ModbusSlaveProcess() +I (142044) modbus: check id... +I (142044) modbus: ok +I (142044) modbus: add: 0, length: 10 +I (142044) modbus: Read Holding Registers +I (143064) modbus tcp: ModBusSlave_recv() +I (143064) modbus: ModbusSlaveProcess() +I (143064) modbus: check id... +I (143064) modbus: ok +I (143064) modbus: add: 0, length: 10 +I (143064) modbus: Read Holding Registers +I (144714) modbus tcp: ModBusSlave_recv() +I (144724) modbus: ModbusSlaveProcess() +I (144724) modbus: check id... +I (144724) modbus: ok +I (144724) modbus: add: 0, length: 10 +I (144724) modbus: Read Holding Registers +I (145734) modbus tcp: ModBusSlave_recv() +I (145734) modbus: ModbusSlaveProcess() +I (145734) modbus: check id... +I (145734) modbus: ok +I (145734) modbus: add: 0, length: 10 +I (145734) modbus: Read Holding Registers +I (146754) modbus tcp: ModBusSlave_recv() +I (146754) modbus: ModbusSlaveProcess() +I (146754) modbus: check id... +I (146754) modbus: ok +I (146754) modbus: add: 0, length: 10 +I (146754) modbus: Read Holding Registers +I (147674) modbus tcp: ModBusSlave_recv() +I (147674) modbus: ModbusSlaveProcess() +I (147674) modbus: check id... +I (147674) modbus: ok +I (147674) modbus: add: 0, length: 10 +I (147674) modbus: Read Holding Registers +I (148704) modbus tcp: ModBusSlave_recv() +I (148704) modbus: ModbusSlaveProcess() +I (148704) modbus: check id... +I (148704) modbus: ok +I (148704) modbus: add: 0, length: 10 +I (148704) modbus: Read Holding Registers +I (149724) modbus tcp: ModBusSlave_recv() +I (149724) modbus: ModbusSlaveProcess() +I (149724) modbus: check id... +I (149724) modbus: ok +I (149724) modbus: add: 0, length: 10 +I (149724) modbus: Read Holding Registers +I (150744) modbus tcp: ModBusSlave_recv() +I (150744) modbus: ModbusSlaveProcess() +I (150744) modbus: check id... +I (150744) modbus: ok +I (150744) modbus: add: 0, length: 10 +I (150744) modbus: Read Holding Registers +I (151774) modbus tcp: ModBusSlave_recv() +I (151774) modbus: ModbusSlaveProcess() +I (151774) modbus: check id... +I (151774) modbus: ok +I (151774) modbus: add: 0, length: 10 +I (151774) modbus: Read Holding Registers +I (152794) modbus tcp: ModBusSlave_recv() +I (152794) modbus: ModbusSlaveProcess() +I (152794) modbus: check id... +I (152794) modbus: ok +I (152794) modbus: add: 0, length: 10 +I (152794) modbus: Read Holding Registers +I (153814) modbus tcp: ModBusSlave_recv() +I (153814) modbus: ModbusSlaveProcess() +I (153814) modbus: check id... +I (153814) modbus: ok +I (153814) modbus: add: 0, length: 10 +I (153814) modbus: Read Holding Registers +I (154844) modbus tcp: ModBusSlave_recv() +I (154844) modbus: ModbusSlaveProcess() +I (154844) modbus: check id... +I (154844) modbus: ok +I (154844) modbus: add: 0, length: 10 +I (154854) modbus: Read Holding Registers +I (155864) modbus tcp: ModBusSlave_recv() +I (155864) modbus: ModbusSlaveProcess() +I (155864) modbus: check id... +I (155864) modbus: ok +I (155864) modbus: add: 0, length: 10 +I (155864) modbus: Read Holding Registers +I (157054) modbus tcp: ModBusSlave_recv() +I (157054) modbus: ModbusSlaveProcess() +I (157054) modbus: check id... +I (157054) modbus: ok +I (157054) modbus: add: 0, length: 10 +I (157054) modbus: Read Holding Registers +I (157814) modbus tcp: ModBusSlave_recv() +I (157814) modbus: ModbusSlaveProcess() +I (157814) modbus: check id... +I (157814) modbus: ok +I (157814) modbus: add: 0, length: 10 +I (157814) modbus: Read Holding Registers +I (158864) modbus tcp: ModBusSlave_recv() +I (158864) modbus: ModbusSlaveProcess() +I (158864) modbus: check id... +I (158864) modbus: ok +I (158864) modbus: add: 0, length: 10 +I (158864) modbus: Read Holding Registers +I (159864) modbus tcp: ModBusSlave_recv() +I (159864) modbus: ModbusSlaveProcess() +I (159864) modbus: check id... +I (159864) modbus: ok +I (159864) modbus: add: 0, length: 10 +I (159864) modbus: Read Holding Registers +I (160894) modbus tcp: ModBusSlave_recv() +I (160894) modbus: ModbusSlaveProcess() +I (160894) modbus: check id... +I (160894) modbus: ok +I (160894) modbus: add: 0, length: 10 +I (160894) modbus: Read Holding Registers +I (161904) modbus tcp: ModBusSlave_recv() +I (161904) modbus: ModbusSlaveProcess() +I (161904) modbus: check id... +I (161904) modbus: ok +I (161904) modbus: add: 0, length: 10 +I (161904) modbus: Read Holding Registers +I (162934) modbus tcp: ModBusSlave_recv() +I (162934) modbus: ModbusSlaveProcess() +I (162934) modbus: check id... +I (162934) modbus: ok +I (162934) modbus: add: 0, length: 10 +I (162934) modbus: Read Holding Registers +I (163974) modbus tcp: ModBusSlave_recv() +I (163974) modbus: ModbusSlaveProcess() +I (163974) modbus: check id... +I (163974) modbus: ok +I (163974) modbus: add: 0, length: 10 +I (163974) modbus: Read Holding Registers +I (164974) modbus tcp: ModBusSlave_recv() +I (164984) modbus: ModbusSlaveProcess() +I (164984) modbus: check id... +I (164984) modbus: ok +I (164984) modbus: add: 0, length: 10 +I (164984) modbus: Read Holding Registers +I (166004) modbus tcp: ModBusSlave_recv() +I (166004) modbus: ModbusSlaveProcess() +I (166004) modbus: check id... +I (166004) modbus: ok +I (166004) modbus: add: 0, length: 10 +I (166004) modbus: Read Holding Registers +I (167024) modbus tcp: ModBusSlave_recv() +I (167024) modbus: ModbusSlaveProcess() +I (167024) modbus: check id... \ No newline at end of file diff --git a/build/log/idf_py_stdout_output_19568 b/build/log/idf_py_stdout_output_19568 new file mode 100644 index 0000000..30cea49 --- /dev/null +++ b/build/log/idf_py_stdout_output_19568 @@ -0,0 +1,21 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2c00 bytes. Smallest app partition is 0x100000 bytes. 0x4d400 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_19688 b/build/log/idf_py_stdout_output_19688 new file mode 100644 index 0000000..36e721c --- /dev/null +++ b/build/log/idf_py_stdout_output_19688 @@ -0,0 +1,1476 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21550h (136528) map +I (121) esp_image: segment 1: paddr=00031578 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=00035380 vaddr=40374000 size=0ac98h ( 44184) load +I (136) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae40h (503360) map +I (227) esp_image: segment 4: paddr=000bae68 vaddr=4037ec98 size=07c7ch ( 31868) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (268) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 2691260a3c986a7d... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (270) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (384) wifi station: wifi_init_sta finished. +I (384) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (394) wifi:state: init -> auth (b0) +I (394) wifi:state: auth -> assoc (0) +I (414) wifi:state: assoc -> run (10) +I (1494) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (1494) wifi:security: WPA2-PSK, phy: bgn, rssi: -76 +I (1494) wifi:pm start, type: 1 + +I (1494) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (1504) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (1504) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1584) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (2494) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (2494) wifi station: got ip:192.168.1.107 +I (2494) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (2494) modbus tcp: ModBusTCPSlave_init() +I (2494) example: Create DC motor +I (2494) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (2494) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (2494) example: Init pcnt driver to decode rotary signal +I (2494) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2494) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2494) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2494) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (2494) example: Create PID control block +I (2494) example: Create a timer to do PID calculation periodically +I (2494) example: Enable motor +I (2494) example: Forward motor +I (2494) example: Start motor speed loop +I (6354) modbus tcp: accept assess +I (7014) modbus tcp: ModBusSlave_recv() +I (7014) modbus: ModbusSlaveProcess() +I (7014) modbus: check id... +I (7014) modbus: ok +I (7014) modbus: add: 0, length: 10 +I (7014) modbus: Read Holding Registers +I (8104) modbus tcp: ModBusSlave_recv() +I (8104) modbus: ModbusSlaveProcess() +I (8104) modbus: check id... +I (8104) modbus: ok +I (8104) modbus: add: 0, length: 10 +I (8104) modbus: Read Holding Registers +I (9054) modbus tcp: ModBusSlave_recv() +I (9054) modbus: ModbusSlaveProcess() +I (9054) modbus: check id... +I (9054) modbus: ok +I (9054) modbus: add: 0, length: 10 +I (9054) modbus: Read Holding Registers +I (9974) modbus tcp: ModBusSlave_recv() +I (9974) modbus: ModbusSlaveProcess() +I (9974) modbus: check id... +I (9974) modbus: ok +I (9974) modbus: add: 0, length: 10 +I (9974) modbus: Read Holding Registers +I (11004) modbus tcp: ModBusSlave_recv() +I (11004) modbus: ModbusSlaveProcess() +I (11004) modbus: check id... +I (11004) modbus: ok +I (11004) modbus: add: 0, length: 10 +I (11004) modbus: Read Holding Registers +I (12034) modbus tcp: ModBusSlave_recv() +I (12034) modbus: ModbusSlaveProcess() +I (12034) modbus: check id... +I (12034) modbus: ok +I (12034) modbus: add: 0, length: 10 +I (12034) modbus: Read Holding Registers +I (13084) modbus tcp: ModBusSlave_recv() +I (13084) modbus: ModbusSlaveProcess() +I (13084) modbus: check id... +I (13084) modbus: ok +I (13084) modbus: add: 0, length: 10 +I (13084) modbus: Read Holding Registers +I (14074) modbus tcp: ModBusSlave_recv() +I (14074) modbus: ModbusSlaveProcess() +I (14074) modbus: check id... +I (14074) modbus: ok +I (14074) modbus: add: 0, length: 10 +I (14074) modbus: Read Holding Registers +I (15094) modbus tcp: ModBusSlave_recv() +I (15104) modbus: ModbusSlaveProcess() +I (15104) modbus: check id... +I (15104) modbus: ok +I (15104) modbus: add: 0, length: 10 +I (15104) modbus: Read Holding Registers +I (16154) modbus tcp: ModBusSlave_recv() +I (16154) modbus: ModbusSlaveProcess() +I (16154) modbus: check id... +I (16154) modbus: ok +I (16154) modbus: add: 0, length: 10 +I (16154) modbus: Read Holding Registers +I (17144) modbus tcp: ModBusSlave_recv() +I (17144) modbus: ModbusSlaveProcess() +I (17144) modbus: check id... +I (17144) modbus: ok +I (17144) modbus: add: 0, length: 10 +I (17144) modbus: Read Holding Registers +I (18234) modbus tcp: ModBusSlave_recv() +I (18234) modbus: ModbusSlaveProcess() +I (18234) modbus: check id... +I (18234) modbus: ok +I (18234) modbus: add: 0, length: 10 +I (18234) modbus: Read Holding Registers +I (19194) modbus tcp: ModBusSlave_recv() +I (19194) modbus: ModbusSlaveProcess() +I (19194) modbus: check id... +I (19194) modbus: ok +I (19194) modbus: add: 0, length: 10 +I (19194) modbus: Read Holding Registers +I (20214) modbus tcp: ModBusSlave_recv() +I (20214) modbus: ModbusSlaveProcess() +I (20214) modbus: check id... +I (20214) modbus: ok +I (20214) modbus: add: 0, length: 10 +I (20214) modbus: Read Holding Registers +I (21264) modbus tcp: ModBusSlave_recv() +I (21274) modbus: ModbusSlaveProcess() +I (21274) modbus: check id... +I (21274) modbus: ok +I (21274) modbus: add: 0, length: 10 +I (21274) modbus: Read Holding Registers +I (22264) modbus tcp: ModBusSlave_recv() +I (22264) modbus: ModbusSlaveProcess() +I (22264) modbus: check id... +I (22264) modbus: ok +I (22264) modbus: add: 0, length: 10 +I (22264) modbus: Read Holding Registers +I (23044) modbus tcp: ModBusSlave_recv() +I (23044) modbus: ModbusSlaveProcess() +I (23044) modbus: check id... +I (23044) modbus: ok +I (23044) modbus: add: 0, length: 2 +I (23044) modbus: Write Single Register +I (23044) modbus: gwordvar[0]=2 +I (23304) modbus tcp: ModBusSlave_recv() +I (23304) modbus: ModbusSlaveProcess() +I (23304) modbus: check id... +I (23304) modbus: ok +I (23304) modbus: add: 0, length: 10 +I (23304) modbus: Read Holding Registers +I (24314) modbus tcp: ModBusSlave_recv() +I (24314) modbus: ModbusSlaveProcess() +I (24314) modbus: check id... +I (24314) modbus: ok +I (24314) modbus: add: 0, length: 10 +I (24314) modbus: Read Holding Registers +I (25234) modbus tcp: ModBusSlave_recv() +I (25234) modbus: ModbusSlaveProcess() +I (25234) modbus: check id... +I (25234) modbus: ok +I (25234) modbus: add: 0, length: 10 +I (25234) modbus: Read Holding Registers +I (26254) modbus tcp: ModBusSlave_recv() +I (26264) modbus: ModbusSlaveProcess() +I (26264) modbus: check id... +I (26264) modbus: ok +I (26264) modbus: add: 0, length: 10 +I (26264) modbus: Read Holding Registers +I (27284) modbus tcp: ModBusSlave_recv() +I (27284) modbus: ModbusSlaveProcess() +I (27284) modbus: check id... +I (27284) modbus: ok +I (27284) modbus: add: 0, length: 10 +I (27284) modbus: Read Holding Registers +I (28304) modbus tcp: ModBusSlave_recv() +I (28304) modbus: ModbusSlaveProcess() +I (28314) modbus: check id... +I (28314) modbus: ok +I (28314) modbus: add: 0, length: 10 +I (28314) modbus: Read Holding Registers +I (29334) modbus tcp: ModBusSlave_recv() +I (29334) modbus: ModbusSlaveProcess() +I (29334) modbus: check id... +I (29334) modbus: ok +I (29334) modbus: add: 0, length: 10 +I (29334) modbus: Read Holding Registers +I (30364) modbus tcp: ModBusSlave_recv() +I (30364) modbus: ModbusSlaveProcess() +I (30364) modbus: check id... +I (30364) modbus: ok +I (30364) modbus: add: 0, length: 10 +I (30364) modbus: Read Holding Registers +I (31384) modbus tcp: ModBusSlave_recv() +I (31384) modbus: ModbusSlaveProcess() +I (31384) modbus: check id... +I (31384) modbus: ok +I (31384) modbus: add: 0, length: 10 +I (31384) modbus: Read Holding Registers +I (32404) modbus tcp: ModBusSlave_recv() +I (32404) modbus: ModbusSlaveProcess() +I (32404) modbus: check id... +I (32404) modbus: ok +I (32404) modbus: add: 0, length: 10 +I (32404) modbus: Read Holding Registers +I (33434) modbus tcp: ModBusSlave_recv() +I (33444) modbus: ModbusSlaveProcess() +I (33444) modbus: check id... +I (33444) modbus: ok +I (33444) modbus: add: 0, length: 10 +I (33444) modbus: Read Holding Registers +I (34374) modbus tcp: ModBusSlave_recv() +I (34374) modbus: ModbusSlaveProcess() +I (34374) modbus: check id... +I (34374) modbus: ok +I (34374) modbus: add: 0, length: 10 +I (34374) modbus: Read Holding Registers +I (35474) modbus tcp: ModBusSlave_recv() +I (35474) modbus: ModbusSlaveProcess() +I (35474) modbus: check id... +I (35474) modbus: ok +I (35474) modbus: add: 0, length: 10 +I (35474) modbus: Read Holding Registers +I (36504) modbus tcp: ModBusSlave_recv() +I (36504) modbus: ModbusSlaveProcess() +I (36504) modbus: check id... +I (36504) modbus: ok +I (36504) modbus: add: 0, length: 10 +I (36504) modbus: Read Holding Registers +I (37524) modbus tcp: ModBusSlave_recv() +I (37524) modbus: ModbusSlaveProcess() +I (37524) modbus: check id... +I (37524) modbus: ok +I (37524) modbus: add: 0, length: 10 +I (37524) modbus: Read Holding Registers +I (38444) modbus tcp: ModBusSlave_recv() +I (38454) modbus: ModbusSlaveProcess() +I (38454) modbus: check id... +I (38454) modbus: ok +I (38454) modbus: add: 0, length: 10 +I (38454) modbus: Read Holding Registers +I (39484) modbus tcp: ModBusSlave_recv() +I (39484) modbus: ModbusSlaveProcess() +I (39484) modbus: check id... +I (39484) modbus: ok +I (39484) modbus: add: 0, length: 10 +I (39484) modbus: Read Holding Registers +I (40494) modbus tcp: ModBusSlave_recv() +I (40494) modbus: ModbusSlaveProcess() +I (40494) modbus: check id... +I (40494) modbus: ok +I (40494) modbus: add: 0, length: 10 +I (40494) modbus: Read Holding Registers +I (41514) modbus tcp: ModBusSlave_recv() +I (41514) modbus: ModbusSlaveProcess() +I (41514) modbus: check id... +I (41514) modbus: ok +I (41514) modbus: add: 0, length: 10 +I (41514) modbus: Read Holding Registers +I (42544) modbus tcp: ModBusSlave_recv() +I (42544) modbus: ModbusSlaveProcess() +I (42544) modbus: check id... +I (42544) modbus: ok +I (42544) modbus: add: 0, length: 10 +I (42544) modbus: Read Holding Registers +I (43664) modbus tcp: ModBusSlave_recv() +I (43674) modbus: ModbusSlaveProcess() +I (43674) modbus: check id... +I (43674) modbus: ok +I (43674) modbus: add: 0, length: 10 +I (43674) modbus: Read Holding Registers +I (44584) modbus tcp: ModBusSlave_recv() +I (44584) modbus: ModbusSlaveProcess() +I (44584) modbus: check id... +I (44584) modbus: ok +I (44584) modbus: add: 0, length: 10 +I (44584) modbus: Read Holding Registers +I (45614) modbus tcp: ModBusSlave_recv() +I (45614) modbus: ModbusSlaveProcess() +I (45614) modbus: check id... +I (45614) modbus: ok +I (45614) modbus: add: 0, length: 10 +I (45614) modbus: Read Holding Registers +I (46704) modbus tcp: ModBusSlave_recv() +I (46704) modbus: ModbusSlaveProcess() +I (46704) modbus: check id... +I (46704) modbus: ok +I (46704) modbus: add: 0, length: 10 +I (46704) modbus: Read Holding Registers +I (47664) modbus tcp: ModBusSlave_recv() +I (47664) modbus: ModbusSlaveProcess() +I (47664) modbus: check id... +I (47664) modbus: ok +I (47664) modbus: add: 0, length: 10 +I (47664) modbus: Read Holding Registers +I (48684) modbus tcp: ModBusSlave_recv() +I (48684) modbus: ModbusSlaveProcess() +I (48684) modbus: check id... +I (48684) modbus: ok +I (48684) modbus: add: 0, length: 10 +I (48684) modbus: Read Holding Registers +I (49704) modbus tcp: ModBusSlave_recv() +I (49704) modbus: ModbusSlaveProcess() +I (49704) modbus: check id... +I (49704) modbus: ok +I (49704) modbus: add: 0, length: 10 +I (49704) modbus: Read Holding Registers +I (50734) modbus tcp: ModBusSlave_recv() +I (50734) modbus: ModbusSlaveProcess() +I (50734) modbus: check id... +I (50734) modbus: ok +I (50734) modbus: add: 0, length: 10 +I (50734) modbus: Read Holding Registers +I (52254) modbus tcp: ModBusSlave_recv() +I (52254) modbus: ModbusSlaveProcess() +I (52254) modbus: check id... +I (52254) modbus: ok +I (52254) modbus: add: 0, length: 10 +I (52254) modbus: Read Holding Registers +I (53594) modbus tcp: ModBusSlave_recv() +I (53604) modbus: ModbusSlaveProcess() +I (53604) modbus: check id... +I (53604) modbus: ok +I (53604) modbus: add: 0, length: 10 +I (53604) modbus: Read Holding Registers +I (54824) modbus tcp: ModBusSlave_recv() +I (54824) modbus: ModbusSlaveProcess() +I (54824) modbus: check id... +I (54824) modbus: ok +I (54824) modbus: add: 0, length: 10 +I (54824) modbus: Read Holding Registers +I (56064) modbus tcp: ModBusSlave_recv() +I (56064) modbus: ModbusSlaveProcess() +I (56064) modbus: check id... +I (56064) modbus: ok +I (56064) modbus: add: 0, length: 10 +I (56064) modbus: Read Holding Registers +I (56904) modbus tcp: ModBusSlave_recv() +I (56904) modbus: ModbusSlaveProcess() +I (56904) modbus: check id... +I (56904) modbus: ok +I (56904) modbus: add: 0, length: 10 +I (56904) modbus: Read Holding Registers +I (57924) modbus tcp: ModBusSlave_recv() +I (57924) modbus: ModbusSlaveProcess() +I (57934) modbus: check id... +I (57934) modbus: ok +I (57934) modbus: add: 0, length: 10 +I (57934) modbus: Read Holding Registers +I (58934) modbus tcp: ModBusSlave_recv() +I (58934) modbus: ModbusSlaveProcess() +I (58934) modbus: check id... +I (58934) modbus: ok +I (58934) modbus: add: 0, length: 10 +I (58934) modbus: Read Holding Registers +I (59944) modbus tcp: ModBusSlave_recv() +I (59944) modbus: ModbusSlaveProcess() +I (59944) modbus: check id... +I (59944) modbus: ok +I (59944) modbus: add: 0, length: 10 +I (59944) modbus: Read Holding Registers +I (61004) modbus tcp: ModBusSlave_recv() +I (61004) modbus: ModbusSlaveProcess() +I (61004) modbus: check id... +I (61004) modbus: ok +I (61004) modbus: add: 0, length: 10 +I (61004) modbus: Read Holding Registers +I (61994) modbus tcp: ModBusSlave_recv() +I (61994) modbus: ModbusSlaveProcess() +I (61994) modbus: check id... +I (61994) modbus: ok +I (61994) modbus: add: 0, length: 10 +I (61994) modbus: Read Holding Registers +I (63054) modbus tcp: ModBusSlave_recv() +I (63054) modbus: ModbusSlaveProcess() +I (63054) modbus: check id... +I (63054) modbus: ok +I (63054) modbus: add: 0, length: 10 +I (63054) modbus: Read Holding Registers +I (64204) modbus tcp: ModBusSlave_recv() +I (64204) modbus: ModbusSlaveProcess() +I (64204) modbus: check id... +I (64204) modbus: ok +I (64204) modbus: add: 0, length: 10 +I (64204) modbus: Read Holding Registers +I (65484) modbus tcp: ModBusSlave_recv() +I (65484) modbus: ModbusSlaveProcess() +I (65484) modbus: check id... +I (65484) modbus: ok +I (65484) modbus: add: 0, length: 10 +I (65484) modbus: Read Holding Registers +I (67994) modbus tcp: ModBusSlave_recv() +I (67994) modbus: ModbusSlaveProcess() +I (67994) modbus: check id... +I (67994) modbus: ok +I (67994) modbus: add: 0, length: 10 +I (67994) modbus: Read Holding Registers +I (68884) modbus tcp: ModBusSlave_recv() +I (68884) modbus: ModbusSlaveProcess() +I (68884) modbus: check id... +I (68884) modbus: ok +I (68884) modbus: add: 0, length: 10 +I (68884) modbus: Read Holding Registers +I (70084) modbus tcp: ModBusSlave_recv() +I (70084) modbus: ModbusSlaveProcess() +I (70084) modbus: check id... +I (70084) modbus: ok +I (70084) modbus: add: 0, length: 10 +I (70084) modbus: Read Holding Registers +I (71104) modbus tcp: ModBusSlave_recv() +I (71114) modbus: ModbusSlaveProcess() +I (71114) modbus: check id... +I (71114) modbus: ok +I (71114) modbus: add: 0, length: 10 +I (71114) modbus: Read Holding Registers +I (72134) modbus tcp: ModBusSlave_recv() +I (72134) modbus: ModbusSlaveProcess() +I (72134) modbus: check id... +I (72134) modbus: ok +I (72144) modbus: add: 0, length: 10 +I (72144) modbus: Read Holding Registers +I (73174) modbus tcp: ModBusSlave_recv() +I (73174) modbus: ModbusSlaveProcess() +I (73174) modbus: check id... +I (73174) modbus: ok +I (73174) modbus: add: 0, length: 10 +I (73174) modbus: Read Holding Registers +I (74194) modbus tcp: ModBusSlave_recv() +I (74194) modbus: ModbusSlaveProcess() +I (74194) modbus: check id... +I (74194) modbus: ok +I (74194) modbus: add: 0, length: 10 +I (74194) modbus: Read Holding Registers +I (75234) modbus tcp: ModBusSlave_recv() +I (75234) modbus: ModbusSlaveProcess() +I (75234) modbus: check id... +I (75234) modbus: ok +I (75234) modbus: add: 0, length: 10 +I (75234) modbus: Read Holding Registers +I (76364) modbus tcp: ModBusSlave_recv() +I (76364) modbus: ModbusSlaveProcess() +I (76364) modbus: check id... +I (76364) modbus: ok +I (76364) modbus: add: 0, length: 10 +I (76364) modbus: Read Holding Registers +I (77264) modbus tcp: ModBusSlave_recv() +I (77264) modbus: ModbusSlaveProcess() +I (77264) modbus: check id... +I (77264) modbus: ok +I (77264) modbus: add: 0, length: 10 +I (77264) modbus: Read Holding Registers +I (78384) modbus tcp: ModBusSlave_recv() +I (78384) modbus: ModbusSlaveProcess() +I (78384) modbus: check id... +I (78384) modbus: ok +I (78384) modbus: add: 0, length: 10 +I (78384) modbus: Read Holding Registers +I (79334) modbus tcp: ModBusSlave_recv() +I (79334) modbus: ModbusSlaveProcess() +I (79334) modbus: check id... +I (79334) modbus: ok +I (79334) modbus: add: 0, length: 10 +I (79334) modbus: Read Holding Registers +I (80324) modbus tcp: ModBusSlave_recv() +I (80324) modbus: ModbusSlaveProcess() +I (80324) modbus: check id... +I (80324) modbus: ok +I (80324) modbus: add: 0, length: 10 +I (80324) modbus: Read Holding Registers +I (81254) modbus tcp: ModBusSlave_recv() +I (81254) modbus: ModbusSlaveProcess() +I (81254) modbus: check id... +I (81254) modbus: ok +I (81254) modbus: add: 0, length: 10 +I (81254) modbus: Read Holding Registers +I (82274) modbus tcp: ModBusSlave_recv() +I (82274) modbus: ModbusSlaveProcess() +I (82274) modbus: check id... +I (82274) modbus: ok +I (82274) modbus: add: 0, length: 10 +I (82274) modbus: Read Holding Registers +I (83294) modbus tcp: ModBusSlave_recv() +I (83294) modbus: ModbusSlaveProcess() +I (83294) modbus: check id... +I (83294) modbus: ok +I (83294) modbus: add: 0, length: 10 +I (83294) modbus: Read Holding Registers +I (84314) modbus tcp: ModBusSlave_recv() +I (84324) modbus: ModbusSlaveProcess() +I (84324) modbus: check id... +I (84324) modbus: ok +I (84324) modbus: add: 0, length: 10 +I (84324) modbus: Read Holding Registers +I (85344) modbus tcp: ModBusSlave_recv() +I (85344) modbus: ModbusSlaveProcess() +I (85344) modbus: check id... +I (85344) modbus: ok +I (85344) modbus: add: 0, length: 10 +I (85344) modbus: Read Holding Registers +I (86364) modbus tcp: ModBusSlave_recv() +I (86364) modbus: ModbusSlaveProcess() +I (86364) modbus: check id... +I (86364) modbus: ok +I (86364) modbus: add: 0, length: 10 +I (86364) modbus: Read Holding Registers +I (87454) modbus tcp: ModBusSlave_recv() +I (87454) modbus: ModbusSlaveProcess() +I (87454) modbus: check id... +I (87454) modbus: ok +I (87454) modbus: add: 0, length: 10 +I (87454) modbus: Read Holding Registers +I (88414) modbus tcp: ModBusSlave_recv() +I (88414) modbus: ModbusSlaveProcess() +I (88414) modbus: check id... +I (88414) modbus: ok +I (88414) modbus: add: 0, length: 10 +I (88414) modbus: Read Holding Registers +I (89444) modbus tcp: ModBusSlave_recv() +I (89444) modbus: ModbusSlaveProcess() +I (89444) modbus: check id... +I (89444) modbus: ok +I (89444) modbus: add: 0, length: 10 +I (89444) modbus: Read Holding Registers +I (90474) modbus tcp: ModBusSlave_recv() +I (90474) modbus: ModbusSlaveProcess() +I (90474) modbus: check id... +I (90474) modbus: ok +I (90474) modbus: add: 0, length: 10 +I (90474) modbus: Read Holding Registers +I (91484) modbus tcp: ModBusSlave_recv() +I (91484) modbus: ModbusSlaveProcess() +I (91494) modbus: check id... +I (91494) modbus: ok +I (91494) modbus: add: 0, length: 10 +I (91494) modbus: Read Holding Registers +I (92514) modbus tcp: ModBusSlave_recv() +I (92514) modbus: ModbusSlaveProcess() +I (92514) modbus: check id... +I (92514) modbus: ok +I (92514) modbus: add: 0, length: 10 +I (92514) modbus: Read Holding Registers +I (93534) modbus tcp: ModBusSlave_recv() +I (93534) modbus: ModbusSlaveProcess() +I (93534) modbus: check id... +I (93534) modbus: ok +I (93534) modbus: add: 0, length: 10 +I (93534) modbus: Read Holding Registers +I (94464) modbus tcp: ModBusSlave_recv() +I (94464) modbus: ModbusSlaveProcess() +I (94464) modbus: check id... +I (94464) modbus: ok +I (94464) modbus: add: 0, length: 10 +I (94464) modbus: Read Holding Registers +I (95484) modbus tcp: ModBusSlave_recv() +I (95484) modbus: ModbusSlaveProcess() +I (95484) modbus: check id... +I (95484) modbus: ok +I (95484) modbus: add: 0, length: 10 +I (95484) modbus: Read Holding Registers +I (96504) modbus tcp: ModBusSlave_recv() +I (96504) modbus: ModbusSlaveProcess() +I (96504) modbus: check id... +I (96504) modbus: ok +I (96504) modbus: add: 0, length: 10 +I (96504) modbus: Read Holding Registers +I (97534) modbus tcp: ModBusSlave_recv() +I (97534) modbus: ModbusSlaveProcess() +I (97534) modbus: check id... +I (97534) modbus: ok +I (97534) modbus: add: 0, length: 10 +I (97534) modbus: Read Holding Registers +I (98554) modbus tcp: ModBusSlave_recv() +I (98554) modbus: ModbusSlaveProcess() +I (98554) modbus: check id... +I (98554) modbus: ok +I (98554) modbus: add: 0, length: 10 +I (98554) modbus: Read Holding Registers +I (99604) modbus tcp: ModBusSlave_recv() +I (99604) modbus: ModbusSlaveProcess() +I (99604) modbus: check id... +I (99604) modbus: ok +I (99604) modbus: add: 0, length: 10 +I (99604) modbus: Read Holding Registers +I (100604) modbus tcp: ModBusSlave_recv() +I (100604) modbus: ModbusSlaveProcess() +I (100604) modbus: check id... +I (100604) modbus: ok +I (100604) modbus: add: 0, length: 10 +I (100604) modbus: Read Holding Registers +I (101624) modbus tcp: ModBusSlave_recv() +I (101624) modbus: ModbusSlaveProcess() +I (101624) modbus: check id... +I (101624) modbus: ok +I (101624) modbus: add: 0, length: 10 +I (101624) modbus: Read Holding Registers +I (102654) modbus tcp: ModBusSlave_recv() +I (102654) modbus: ModbusSlaveProcess() +I (102654) modbus: check id... +I (102654) modbus: ok +I (102654) modbus: add: 0, length: 10 +I (102654) modbus: Read Holding Registers +I (103674) modbus tcp: ModBusSlave_recv() +I (103674) modbus: ModbusSlaveProcess() +I (103674) modbus: check id... +I (103674) modbus: ok +I (103674) modbus: add: 0, length: 10 +I (103674) modbus: Read Holding Registers +I (104694) modbus tcp: ModBusSlave_recv() +I (104694) modbus: ModbusSlaveProcess() +I (104694) modbus: check id... +I (104694) modbus: ok +I (104694) modbus: add: 0, length: 10 +I (104694) modbus: Read Holding Registers +I (105724) modbus tcp: ModBusSlave_recv() +I (105724) modbus: ModbusSlaveProcess() +I (105724) modbus: check id... +I (105724) modbus: ok +I (105724) modbus: add: 0, length: 10 +I (105724) modbus: Read Holding Registers +I (106644) modbus tcp: ModBusSlave_recv() +I (106644) modbus: ModbusSlaveProcess() +I (106644) modbus: check id... +I (106644) modbus: ok +I (106644) modbus: add: 0, length: 10 +I (106644) modbus: Read Holding Registers +I (107664) modbus tcp: ModBusSlave_recv() +I (107664) modbus: ModbusSlaveProcess() +I (107664) modbus: check id... +I (107664) modbus: ok +I (107664) modbus: add: 0, length: 10 +I (107664) modbus: Read Holding Registers +I (108704) modbus tcp: ModBusSlave_recv() +I (108704) modbus: ModbusSlaveProcess() +I (108704) modbus: check id... +I (108704) modbus: ok +I (108704) modbus: add: 0, length: 10 +I (108704) modbus: Read Holding Registers +I (109714) modbus tcp: ModBusSlave_recv() +I (109714) modbus: ModbusSlaveProcess() +I (109714) modbus: check id... +I (109714) modbus: ok +I (109714) modbus: add: 0, length: 10 +I (109714) modbus: Read Holding Registers +I (110734) modbus tcp: ModBusSlave_recv() +I (110734) modbus: ModbusSlaveProcess() +I (110734) modbus: check id... +I (110734) modbus: ok +I (110734) modbus: add: 0, length: 10 +I (110734) modbus: Read Holding Registers +I (111764) modbus tcp: ModBusSlave_recv() +I (111764) modbus: ModbusSlaveProcess() +I (111764) modbus: check id... +I (111764) modbus: ok +I (111764) modbus: add: 0, length: 10 +I (111764) modbus: Read Holding Registers +I (112784) modbus tcp: ModBusSlave_recv() +I (112794) modbus: ModbusSlaveProcess() +I (112794) modbus: check id... +I (112794) modbus: ok +I (112794) modbus: add: 0, length: 10 +I (112794) modbus: Read Holding Registers +I (113814) modbus tcp: ModBusSlave_recv() +I (113814) modbus: ModbusSlaveProcess() +I (113814) modbus: check id... +I (113814) modbus: ok +I (113814) modbus: add: 0, length: 10 +I (113814) modbus: Read Holding Registers +I (114834) modbus tcp: ModBusSlave_recv() +I (114834) modbus: ModbusSlaveProcess() +I (114834) modbus: check id... +I (114834) modbus: ok +I (114834) modbus: add: 0, length: 10 +I (114834) modbus: Read Holding Registers +I (115854) modbus tcp: ModBusSlave_recv() +I (115864) modbus: ModbusSlaveProcess() +I (115864) modbus: check id... +I (115864) modbus: ok +I (115864) modbus: add: 0, length: 10 +I (115864) modbus: Read Holding Registers +I (116924) modbus tcp: ModBusSlave_recv() +I (116924) modbus: ModbusSlaveProcess() +I (116924) modbus: check id... +I (116924) modbus: ok +I (116924) modbus: add: 0, length: 10 +I (116924) modbus: Read Holding Registers +I (117904) modbus tcp: ModBusSlave_recv() +I (117904) modbus: ModbusSlaveProcess() +I (117904) modbus: check id... +I (117904) modbus: ok +I (117904) modbus: add: 0, length: 10 +I (117904) modbus: Read Holding Registers +I (118934) modbus tcp: ModBusSlave_recv() +I (118934) modbus: ModbusSlaveProcess() +I (118934) modbus: check id... +I (118934) modbus: ok +I (118934) modbus: add: 0, length: 10 +I (118934) modbus: Read Holding Registers +I (119854) modbus tcp: ModBusSlave_recv() +I (119854) modbus: ModbusSlaveProcess() +I (119854) modbus: check id... +I (119854) modbus: ok +I (119854) modbus: add: 0, length: 10 +I (119854) modbus: Read Holding Registers +I (120884) modbus tcp: ModBusSlave_recv() +I (120884) modbus: ModbusSlaveProcess() +I (120884) modbus: check id... +I (120884) modbus: ok +I (120884) modbus: add: 0, length: 10 +I (120884) modbus: Read Holding Registers +I (121904) modbus tcp: ModBusSlave_recv() +I (121904) modbus: ModbusSlaveProcess() +I (121904) modbus: check id... +I (121904) modbus: ok +I (121904) modbus: add: 0, length: 10 +I (121904) modbus: Read Holding Registers +I (122924) modbus tcp: ModBusSlave_recv() +I (122924) modbus: ModbusSlaveProcess() +I (122924) modbus: check id... +I (122924) modbus: ok +I (122924) modbus: add: 0, length: 10 +I (122924) modbus: Read Holding Registers +I (123944) modbus tcp: ModBusSlave_recv() +I (123944) modbus: ModbusSlaveProcess() +I (123944) modbus: check id... +I (123944) modbus: ok +I (123944) modbus: add: 0, length: 10 +I (123944) modbus: Read Holding Registers +I (124974) modbus tcp: ModBusSlave_recv() +I (124974) modbus: ModbusSlaveProcess() +I (124974) modbus: check id... +I (124974) modbus: ok +I (124974) modbus: add: 0, length: 10 +I (124974) modbus: Read Holding Registers +I (126024) modbus tcp: ModBusSlave_recv() +I (126024) modbus: ModbusSlaveProcess() +I (126024) modbus: check id... +I (126024) modbus: ok +I (126024) modbus: add: 0, length: 10 +I (126024) modbus: Read Holding Registers +I (127024) modbus tcp: ModBusSlave_recv() +I (127024) modbus: ModbusSlaveProcess() +I (127024) modbus: check id... +I (127024) modbus: ok +I (127024) modbus: add: 0, length: 10 +I (127024) modbus: Read Holding Registers +I (128044) modbus tcp: ModBusSlave_recv() +I (128044) modbus: ModbusSlaveProcess() +I (128044) modbus: check id... +I (128044) modbus: ok +I (128044) modbus: add: 0, length: 10 +I (128044) modbus: Read Holding Registers +I (129074) modbus tcp: ModBusSlave_recv() +I (129074) modbus: ModbusSlaveProcess() +I (129074) modbus: check id... +I (129074) modbus: ok +I (129074) modbus: add: 0, length: 10 +I (129074) modbus: Read Holding Registers +I (130094) modbus tcp: ModBusSlave_recv() +I (130094) modbus: ModbusSlaveProcess() +I (130094) modbus: check id... +I (130094) modbus: ok +I (130094) modbus: add: 0, length: 10 +I (130094) modbus: Read Holding Registers +I (131124) modbus tcp: ModBusSlave_recv() +I (131124) modbus: ModbusSlaveProcess() +I (131124) modbus: check id... +I (131124) modbus: ok +I (131124) modbus: add: 0, length: 10 +I (131124) modbus: Read Holding Registers +I (132144) modbus tcp: ModBusSlave_recv() +I (132144) modbus: ModbusSlaveProcess() +I (132144) modbus: check id... +I (132144) modbus: ok +I (132144) modbus: add: 0, length: 10 +I (132144) modbus: Read Holding Registers +I (133064) modbus tcp: ModBusSlave_recv() +I (133064) modbus: ModbusSlaveProcess() +I (133064) modbus: check id... +I (133064) modbus: ok +I (133064) modbus: add: 0, length: 10 +I (133064) modbus: Read Holding Registers +I (134084) modbus tcp: ModBusSlave_recv() +I (134084) modbus: ModbusSlaveProcess() +I (134084) modbus: check id... +I (134084) modbus: ok +I (134084) modbus: add: 0, length: 10 +I (134084) modbus: Read Holding Registers +I (135114) modbus tcp: ModBusSlave_recv() +I (135114) modbus: ModbusSlaveProcess() +I (135114) modbus: check id... +I (135114) modbus: ok +I (135114) modbus: add: 0, length: 10 +I (135114) modbus: Read Holding Registers +I (136144) modbus tcp: ModBusSlave_recv() +I (136144) modbus: ModbusSlaveProcess() +I (136144) modbus: check id... +I (136144) modbus: ok +I (136144) modbus: add: 0, length: 10 +I (136144) modbus: Read Holding Registers +I (137164) modbus tcp: ModBusSlave_recv() +I (137164) modbus: ModbusSlaveProcess() +I (137164) modbus: check id... +I (137164) modbus: ok +I (137164) modbus: add: 0, length: 10 +I (137164) modbus: Read Holding Registers +I (138184) modbus tcp: ModBusSlave_recv() +I (138184) modbus: ModbusSlaveProcess() +I (138184) modbus: check id... +I (138184) modbus: ok +I (138184) modbus: add: 0, length: 10 +I (138184) modbus: Read Holding Registers +I (139214) modbus tcp: ModBusSlave_recv() +I (139214) modbus: ModbusSlaveProcess() +I (139214) modbus: check id... +I (139214) modbus: ok +I (139214) modbus: add: 0, length: 10 +I (139214) modbus: Read Holding Registers +I (140234) modbus tcp: ModBusSlave_recv() +I (140234) modbus: ModbusSlaveProcess() +I (140234) modbus: check id... +I (140234) modbus: ok +I (140234) modbus: add: 0, length: 10 +I (140234) modbus: Read Holding Registers +I (141254) modbus tcp: ModBusSlave_recv() +I (141254) modbus: ModbusSlaveProcess() +I (141254) modbus: check id... +I (141254) modbus: ok +I (141254) modbus: add: 0, length: 10 +I (141254) modbus: Read Holding Registers +I (142284) modbus tcp: ModBusSlave_recv() +I (142284) modbus: ModbusSlaveProcess() +I (142284) modbus: check id... +I (142284) modbus: ok +I (142284) modbus: add: 0, length: 10 +I (142284) modbus: Read Holding Registers +I (143304) modbus tcp: ModBusSlave_recv() +I (143304) modbus: ModbusSlaveProcess() +I (143304) modbus: check id... +I (143304) modbus: ok +I (143304) modbus: add: 0, length: 10 +I (143304) modbus: Read Holding Registers +I (144254) modbus tcp: ModBusSlave_recv() +I (144254) modbus: ModbusSlaveProcess() +I (144254) modbus: check id... +I (144254) modbus: ok +I (144254) modbus: add: 0, length: 10 +I (144254) modbus: Read Holding Registers +I (145254) modbus tcp: ModBusSlave_recv() +I (145254) modbus: ModbusSlaveProcess() +I (145254) modbus: check id... +I (145254) modbus: ok +I (145254) modbus: add: 0, length: 10 +I (145254) modbus: Read Holding Registers +I (146284) modbus tcp: ModBusSlave_recv() +I (146284) modbus: ModbusSlaveProcess() +I (146284) modbus: check id... +I (146284) modbus: ok +I (146284) modbus: add: 0, length: 10 +I (146284) modbus: Read Holding Registers +I (147254) modbus tcp: ModBusSlave_recv() +I (147254) modbus: ModbusSlaveProcess() +I (147254) modbus: check id... +I (147254) modbus: ok +I (147254) modbus: add: 0, length: 10 +I (147254) modbus: Read Holding Registers +I (148324) modbus tcp: ModBusSlave_recv() +I (148324) modbus: ModbusSlaveProcess() +I (148324) modbus: check id... +I (148324) modbus: ok +I (148324) modbus: add: 0, length: 10 +I (148324) modbus: Read Holding Registers +I (149354) modbus tcp: ModBusSlave_recv() +I (149354) modbus: ModbusSlaveProcess() +I (149354) modbus: check id... +I (149354) modbus: ok +I (149354) modbus: add: 0, length: 10 +I (149354) modbus: Read Holding Registers +I (150394) modbus tcp: ModBusSlave_recv() +I (150394) modbus: ModbusSlaveProcess() +I (150394) modbus: check id... +I (150394) modbus: ok +I (150394) modbus: add: 0, length: 10 +I (150394) modbus: Read Holding Registers +I (151394) modbus tcp: ModBusSlave_recv() +I (151404) modbus: ModbusSlaveProcess() +I (151404) modbus: check id... +I (151404) modbus: ok +I (151404) modbus: add: 0, length: 10 +I (151404) modbus: Read Holding Registers +I (152414) modbus tcp: ModBusSlave_recv() +I (152414) modbus: ModbusSlaveProcess() +I (152414) modbus: check id... +I (152414) modbus: ok +I (152414) modbus: add: 0, length: 10 +I (152414) modbus: Read Holding Registers +I (153444) modbus tcp: ModBusSlave_recv() +I (153444) modbus: ModbusSlaveProcess() +I (153454) modbus: check id... +I (153454) modbus: ok +I (153454) modbus: add: 0, length: 10 +I (153454) modbus: Read Holding Registers +I (154474) modbus tcp: ModBusSlave_recv() +I (154474) modbus: ModbusSlaveProcess() +I (154474) modbus: check id... +I (154474) modbus: ok +I (154474) modbus: add: 0, length: 10 +I (154474) modbus: Read Holding Registers +I (155494) modbus tcp: ModBusSlave_recv() +I (155494) modbus: ModbusSlaveProcess() +I (155494) modbus: check id... +I (155494) modbus: ok +I (155494) modbus: add: 0, length: 10 +I (155494) modbus: Read Holding Registers +I (156524) modbus tcp: ModBusSlave_recv() +I (156524) modbus: ModbusSlaveProcess() +I (156524) modbus: check id... +I (156524) modbus: ok +I (156524) modbus: add: 0, length: 10 +I (156524) modbus: Read Holding Registers +I (157444) modbus tcp: ModBusSlave_recv() +I (157444) modbus: ModbusSlaveProcess() +I (157444) modbus: check id... +I (157444) modbus: ok +I (157444) modbus: add: 0, length: 10 +I (157444) modbus: Read Holding Registers +I (158464) modbus tcp: ModBusSlave_recv() +I (158464) modbus: ModbusSlaveProcess() +I (158464) modbus: check id... +I (158464) modbus: ok +I (158464) modbus: add: 0, length: 10 +I (158464) modbus: Read Holding Registers +I (159484) modbus tcp: ModBusSlave_recv() +I (159494) modbus: ModbusSlaveProcess() +I (159494) modbus: check id... +I (159494) modbus: ok +I (159494) modbus: add: 0, length: 10 +I (159494) modbus: Read Holding Registers +I (160514) modbus tcp: ModBusSlave_recv() +I (160514) modbus: ModbusSlaveProcess() +I (160514) modbus: check id... +I (160514) modbus: ok +I (160514) modbus: add: 0, length: 10 +I (160514) modbus: Read Holding Registers +I (161524) modbus tcp: ModBusSlave_recv() +I (161534) modbus: ModbusSlaveProcess() +I (161534) modbus: check id... +I (161534) modbus: ok +I (161534) modbus: add: 0, length: 10 +I (161534) modbus: Read Holding Registers +I (162554) modbus tcp: ModBusSlave_recv() +I (162554) modbus: ModbusSlaveProcess() +I (162554) modbus: check id... +I (162554) modbus: ok +I (162554) modbus: add: 0, length: 10 +I (162554) modbus: Read Holding Registers +I (163574) modbus tcp: ModBusSlave_recv() +I (163574) modbus: ModbusSlaveProcess() +I (163574) modbus: check id... +I (163574) modbus: ok +I (163574) modbus: add: 0, length: 10 +I (163574) modbus: Read Holding Registers +I (164604) modbus tcp: ModBusSlave_recv() +I (164604) modbus: ModbusSlaveProcess() +I (164604) modbus: check id... +I (164614) modbus: ok +I (164614) modbus: add: 0, length: 10 +I (164614) modbus: Read Holding Registers +I (165624) modbus tcp: ModBusSlave_recv() +I (165624) modbus: ModbusSlaveProcess() +I (165624) modbus: check id... +I (165624) modbus: ok +I (165624) modbus: add: 0, length: 10 +I (165624) modbus: Read Holding Registers +I (166654) modbus tcp: ModBusSlave_recv() +I (166654) modbus: ModbusSlaveProcess() +I (166654) modbus: check id... +I (166654) modbus: ok +I (166654) modbus: add: 0, length: 10 +I (166654) modbus: Read Holding Registers +I (167674) modbus tcp: ModBusSlave_recv() +I (167674) modbus: ModbusSlaveProcess() +I (167674) modbus: check id... +I (167674) modbus: ok +I (167674) modbus: add: 0, length: 10 +I (167674) modbus: Read Holding Registers +I (168694) modbus tcp: ModBusSlave_recv() +I (168694) modbus: ModbusSlaveProcess() +I (168694) modbus: check id... +I (168694) modbus: ok +I (168694) modbus: add: 0, length: 10 +I (168694) modbus: Read Holding Registers +I (169724) modbus tcp: ModBusSlave_recv() +I (169724) modbus: ModbusSlaveProcess() +I (169724) modbus: check id... +I (169724) modbus: ok +I (169724) modbus: add: 0, length: 10 +I (169724) modbus: Read Holding Registers +I (170644) modbus tcp: ModBusSlave_recv() +I (170644) modbus: ModbusSlaveProcess() +I (170644) modbus: check id... +I (170644) modbus: ok +I (170644) modbus: add: 0, length: 10 +I (170644) modbus: Read Holding Registers +I (171664) modbus tcp: ModBusSlave_recv() +I (171664) modbus: ModbusSlaveProcess() +I (171664) modbus: check id... +I (171664) modbus: ok +I (171664) modbus: add: 0, length: 10 +I (171664) modbus: Read Holding Registers +I (172694) modbus tcp: ModBusSlave_recv() +I (172694) modbus: ModbusSlaveProcess() +I (172694) modbus: check id... +I (172694) modbus: ok +I (172694) modbus: add: 0, length: 10 +I (172694) modbus: Read Holding Registers +I (173714) modbus tcp: ModBusSlave_recv() +I (173714) modbus: ModbusSlaveProcess() +I (173714) modbus: check id... +I (173714) modbus: ok +I (173714) modbus: add: 0, length: 10 +I (173714) modbus: Read Holding Registers +I (174734) modbus tcp: ModBusSlave_recv() +I (174734) modbus: ModbusSlaveProcess() +I (174734) modbus: check id... +I (174734) modbus: ok +I (174734) modbus: add: 0, length: 10 +I (174734) modbus: Read Holding Registers +I (175764) modbus tcp: ModBusSlave_recv() +I (175764) modbus: ModbusSlaveProcess() +I (175764) modbus: check id... +I (175764) modbus: ok +I (175764) modbus: add: 0, length: 10 +I (175764) modbus: Read Holding Registers +I (176794) modbus tcp: ModBusSlave_recv() +I (176794) modbus: ModbusSlaveProcess() +I (176794) modbus: check id... +I (176794) modbus: ok +I (176794) modbus: add: 0, length: 10 +I (176794) modbus: Read Holding Registers +I (177814) modbus tcp: ModBusSlave_recv() +I (177814) modbus: ModbusSlaveProcess() +I (177814) modbus: check id... +I (177814) modbus: ok +I (177814) modbus: add: 0, length: 10 +I (177814) modbus: Read Holding Registers +I (178834) modbus tcp: ModBusSlave_recv() +I (178844) modbus: ModbusSlaveProcess() +I (178844) modbus: check id... +I (178844) modbus: ok +I (178844) modbus: add: 0, length: 10 +I (178844) modbus: Read Holding Registers +I (179894) modbus tcp: ModBusSlave_recv() +I (179894) modbus: ModbusSlaveProcess() +I (179894) modbus: check id... +I (179894) modbus: ok +I (179894) modbus: add: 0, length: 10 +I (179894) modbus: Read Holding Registers +I (180894) modbus tcp: ModBusSlave_recv() +I (180894) modbus: ModbusSlaveProcess() +I (180894) modbus: check id... +I (180894) modbus: ok +I (180894) modbus: add: 0, length: 10 +I (180894) modbus: Read Holding Registers +I (181904) modbus tcp: ModBusSlave_recv() +I (181904) modbus: ModbusSlaveProcess() +I (181904) modbus: check id... +I (181904) modbus: ok +I (181904) modbus: add: 0, length: 10 +I (181904) modbus: Read Holding Registers +I (182834) modbus tcp: ModBusSlave_recv() +I (182834) modbus: ModbusSlaveProcess() +I (182834) modbus: check id... +I (182834) modbus: ok +I (182834) modbus: add: 0, length: 10 +I (182834) modbus: Read Holding Registers +I (183854) modbus tcp: ModBusSlave_recv() +I (183854) modbus: ModbusSlaveProcess() +I (183854) modbus: check id... +I (183854) modbus: ok +I (183854) modbus: add: 0, length: 10 +I (183854) modbus: Read Holding Registers +I (184904) modbus tcp: ModBusSlave_recv() +I (184904) modbus: ModbusSlaveProcess() +I (184904) modbus: check id... +I (184904) modbus: ok +I (184904) modbus: add: 0, length: 10 +I (184914) modbus: Read Holding Registers +I (185904) modbus tcp: ModBusSlave_recv() +I (185904) modbus: ModbusSlaveProcess() +I (185904) modbus: check id... +I (185904) modbus: ok +I (185904) modbus: add: 0, length: 10 +I (185904) modbus: Read Holding Registers +I (186924) modbus tcp: ModBusSlave_recv() +I (186924) modbus: ModbusSlaveProcess() +I (186924) modbus: check id... +I (186924) modbus: ok +I (186924) modbus: add: 0, length: 10 +I (186924) modbus: Read Holding Registers +I (187954) modbus tcp: ModBusSlave_recv() +I (187954) modbus: ModbusSlaveProcess() +I (187954) modbus: check id... +I (187954) modbus: ok +I (187954) modbus: add: 0, length: 10 +I (187954) modbus: Read Holding Registers +I (189014) modbus tcp: ModBusSlave_recv() +I (189014) modbus: ModbusSlaveProcess() +I (189014) modbus: check id... +I (189014) modbus: ok +I (189014) modbus: add: 0, length: 10 +I (189014) modbus: Read Holding Registers +I (190024) modbus tcp: ModBusSlave_recv() +I (190024) modbus: ModbusSlaveProcess() +I (190024) modbus: check id... +I (190024) modbus: ok +I (190024) modbus: add: 0, length: 10 +I (190024) modbus: Read Holding Registers +I (191024) modbus tcp: ModBusSlave_recv() +I (191024) modbus: ModbusSlaveProcess() +I (191024) modbus: check id... +I (191024) modbus: ok +I (191024) modbus: add: 0, length: 10 +I (191024) modbus: Read Holding Registers +I (192044) modbus tcp: ModBusSlave_recv() +I (192044) modbus: ModbusSlaveProcess() +I (192044) modbus: check id... +I (192044) modbus: ok +I (192044) modbus: add: 0, length: 10 +I (192044) modbus: Read Holding Registers +I (193064) modbus tcp: ModBusSlave_recv() +I (193064) modbus: ModbusSlaveProcess() +I (193064) modbus: check id... +I (193064) modbus: ok +I (193064) modbus: add: 0, length: 10 +I (193074) modbus: Read Holding Registers +I (193994) modbus tcp: ModBusSlave_recv() +I (193994) modbus: ModbusSlaveProcess() +I (193994) modbus: check id... +I (193994) modbus: ok +I (193994) modbus: add: 0, length: 10 +I (193994) modbus: Read Holding Registers +I (195014) modbus tcp: ModBusSlave_recv() +I (195014) modbus: ModbusSlaveProcess() +I (195014) modbus: check id... +I (195014) modbus: ok +I (195014) modbus: add: 0, length: 10 +I (195014) modbus: Read Holding Registers +I (196034) modbus tcp: ModBusSlave_recv() +I (196034) modbus: ModbusSlaveProcess() +I (196034) modbus: check id... +I (196034) modbus: ok +I (196034) modbus: add: 0, length: 10 +I (196034) modbus: Read Holding Registers +I (197094) modbus tcp: ModBusSlave_recv() +I (197094) modbus: ModbusSlaveProcess() +I (197094) modbus: check id... +I (197094) modbus: ok +I (197094) modbus: add: 0, length: 10 +I (197094) modbus: Read Holding Registers +I (198134) modbus tcp: ModBusSlave_recv() +I (198134) modbus: ModbusSlaveProcess() +I (198134) modbus: check id... +I (198134) modbus: ok +I (198134) modbus: add: 0, length: 10 +I (198134) modbus: Read Holding Registers +I (199114) modbus tcp: ModBusSlave_recv() +I (199114) modbus: ModbusSlaveProcess() +I (199114) modbus: check id... +I (199114) modbus: ok +I (199114) modbus: add: 0, length: 10 +I (199114) modbus: Read Holding Registers +I (200154) modbus tcp: ModBusSlave_recv() +I (200154) modbus: ModbusSlaveProcess() +I (200154) modbus: check id... +I (200154) modbus: ok +I (200154) modbus: add: 0, length: 10 +I (200154) modbus: Read Holding Registers +I (201154) modbus tcp: ModBusSlave_recv() +I (201154) modbus: ModbusSlaveProcess() +I (201154) modbus: check id... +I (201154) modbus: ok +I (201154) modbus: add: 0, length: 10 +I (201154) modbus: Read Holding Registers +I (202184) modbus tcp: ModBusSlave_recv() +I (202184) modbus: ModbusSlaveProcess() +I (202184) modbus: check id... +I (202184) modbus: ok +I (202184) modbus: add: 0, length: 10 +I (202184) modbus: Read Holding Registers +I (203204) modbus tcp: ModBusSlave_recv() +I (203204) modbus: ModbusSlaveProcess() +I (203204) modbus: check id... +I (203204) modbus: ok +I (203204) modbus: add: 0, length: 10 +I (203204) modbus: Read Holding Registers +I (204254) modbus tcp: ModBusSlave_recv() +I (204254) modbus: ModbusSlaveProcess() +I (204254) modbus: check id... +I (204254) modbus: ok +I (204254) modbus: add: 0, length: 10 +I (204264) modbus: Read Holding Registers +I (205254) modbus tcp: ModBusSlave_recv() +I (205254) modbus: ModbusSlaveProcess() +I (205254) modbus: check id... +I (205254) modbus: ok +I (205254) modbus: add: 0, length: 10 +I (205254) modbus: Read Holding Registers +I (206304) modbus tcp: ModBusSlave_recv() +I (206304) modbus: ModbusSlaveProcess() +I (206304) modbus: check id... +I (206304) modbus: ok +I (206304) modbus: add: 0, length: 10 +I (206304) modbus: Read Holding Registers +I (207304) modbus tcp: ModBusSlave_recv() +I (207304) modbus: ModbusSlaveProcess() +I (207304) modbus: check id... +I (207304) modbus: ok +I (207304) modbus: add: 0, length: 10 +I (207304) modbus: Read Holding Registers +I (208234) modbus tcp: ModBusSlave_recv() +I (208234) modbus: ModbusSlaveProcess() +I (208234) modbus: check id... +I (208234) modbus: ok +I (208234) modbus: add: 0, length: 10 +I (208234) modbus: Read Holding Registers +I (209254) modbus tcp: ModBusSlave_recv() +I (209254) modbus: ModbusSlaveProcess() +I (209254) modbus: check id... +I (209254) modbus: ok +I (209254) modbus: add: 0, length: 10 +I (209254) modbus: Read Holding Registers +I (210314) modbus tcp: ModBusSlave_recv() +I (210314) modbus: ModbusSlaveProcess() +I (210314) modbus: check id... +I (210314) modbus: ok +I (210314) modbus: add: 0, length: 10 +I (210314) modbus: Read Holding Registers +I (211324) modbus tcp: ModBusSlave_recv() +I (211324) modbus: ModbusSlaveProcess() +I (211324) modbus: check id... +I (211324) modbus: ok +I (211324) modbus: add: 0, length: 10 +I (211324) modbus: Read Holding Registers +I (212314) modbus tcp: ModBusSlave_recv() +I (212324) modbus: ModbusSlaveProcess() +I (212324) modbus: check id... +I (212324) modbus: ok +I (212324) modbus: add: 0, length: 10 +I (212324) modbus: Read Holding Registers +I (213344) modbus tcp: ModBusSlave_recv() +I (213344) modbus: ModbusSlaveProcess() +I (213344) modbus: check id... +I (213344) modbus: ok +I (213344) modbus: add: 0, length: 10 +I (213344) modbus: Read Holding Registers +I (214364) modbus tcp: ModBusSlave_recv() +I (214364) modbus: ModbusSlaveProcess() +I (214364) modbus: check id... +I (214364) modbus: ok +I (214364) modbus: add: 0, length: 10 +I (214364) modbus: Read Holding Registers +I (215424) modbus tcp: ModBusSlave_recv() +I (215424) modbus: ModbusSlaveProcess() +I (215424) modbus: check id... +I (215424) modbus: ok +I (215424) modbus: add: 0, length: 10 +I (215424) modbus: Read Holding Registers +I (216424) modbus tcp: ModBusSlave_recv() +I (216424) modbus: ModbusSlaveProcess() +I (216424) modbus: check id... +I (216424) modbus: ok +I (216424) modbus: add: 0, length: 10 +I (216424) modbus: Read Holding Registers +I (217444) modbus tcp: ModBusSlave_recv() +I (217444) modbus: ModbusSlaveProcess() +I (217444) modbus: check id... +I (217444) modbus: ok +I (217444) modbus: add: 0, length: 10 +I (217444) modbus: Read Holding Registers +I (218514) modbus tcp: ModBusSlave_recv() +I (218514) modbus: ModbusSlaveProcess() +I (218514) modbus: check id... +I (218514) modbus: ok +I (218514) modbus: add: 0, length: 10 +I (218514) modbus: Read Holding Registers +I (219594) modbus tcp: ModBusSlave_recv() +I (219594) modbus: ModbusSlaveProcess() +I (219594) modbus: check id... +I (219594) modbus: ok +I (219594) modbus: add: 0, length: 10 +I (219594) modbus: Read Holding Registers +I (220824) modbus tcp: ModBusSlave_recv() +I (220824) modbus: ModbusSlaveProcess() +I (220824) modbus: check id... +I (220824) modbus: ok +I (220824) modbus: add: 0, length: 10 +I (220824) modbus: Read Holding Registers +I (223284) modbus tcp: ModBusSlave_recv() +I (223284) modbus: ModbusSlaveProcess() +I (223284) modbus: check id... +I (223284) modbus: ok +I (223284) modbus: add: 0, length: 10 +I (223284) modbus: Read Holding Registers +I (224504) modbus tcp: ModBusSlave_recv() +I (224504) modbus: ModbusSlaveProcess() +I (224504) modbus: check id... +I (224504) modbus: ok +I (224504) modbus: add: 0, length: 10 +I (224504) modbus: Read Holding Registers +I (225554) modbus tcp: ModBusSlave_recv() +I (225554) modbus: ModbusSlaveProcess() +I (225554) modbus: check id... +I (225554) modbus: ok +I (225554) modbus: add: 0, length: 10 +I (225554) modbus: Read Holding Registers +I (226564) modbus tcp: ModBusSlave_recv() +I (226564) modbus: ModbusSlaveProcess() +I (226564) modbus: check id... +I (226564) modbus: ok +I (226564) modbus: add: 0, length: 10 +I (226564) modbus: Read Holding Registers +I (227584) modbus tcp: ModBusSlave_recv() +I (227584) modbus: ModbusSlaveProcess() +I (227584) modbus: check id... +I (227584) modbus: ok +I (227584) modbus: add: 0, length: 10 +I (227584) modbus: Read Holding Registers +I (228604) modbus tcp: ModBusSlave_recv() +I (228604) modbus: ModbusSlaveProcess() +I (228604) modbus: check id... +I (228604) modbus: ok +I (228604) modbus: add: 0, length: 10 +I (228604) modbus: Read Holding Registers +I (229634) modbus tcp: ModBusSlave_recv() +I (229634) modbus: ModbusSlaveProcess() +I (229634) modbus: check id... +I (229634) modbus: ok +I (229634) modbus: add: 0, length: 10 +I (229634) modbus: Read Holding Registers +I (230684) modbus tcp: ModBusSlave_recv() +I (230684) modbus: ModbusSlaveProcess() +I (230684) modbus: check id... +I (230684) modbus: ok +I (230684) modbus: add: 0, length: 10 +I (230684) modbus: Read Holding Registers +I (231584) modbus tcp: ModBusSlave_recv() +I (231584) modbus: ModbusSlaveProcess() +I (231584) modbus: check id... +I (231584) modbus: ok +I (231584) modbus: add: 0, length: 10 +I (231584) modbus: Read Holding Registers +I (232594) modbus tcp: ModBusSlave_recv() +I (232594) modbus: ModbusSlaveProcess() +I (232594) modbus: check id... +I (232594) modbus: ok +I (232594) modbus: add: 0, length: 10 +I (232594) modbus: Read Holding Registers +I (233614) modbus tcp: ModBusSlave_recv() +I (233614) modbus: ModbusSlaveProcess() +I (233614) modbus: check id... +I (233614) modbus: ok +I (233614) modbus: add: 0, length: 10 +I (233614) modbus: Read Holding Registers +I (234644) modbus tcp: ModBusSlave_recv() +I (234644) modbus: ModbusSlaveProcess() +I (234644) modbus: check id... +I (234644) modbus: ok +I (234644) modbus: add: 0, length: 10 +I (234644) modbus: Read Holding Registers +I (235684) modbus tcp: ModBusSlave_recv() +I (235684) modbus: ModbusSlaveProcess() +I (235684) modbus: check id... +I (235684) modbus: ok +I (235684) modbus: add: 0, length: 10 +I (235684) modbus: Read Holding Registers +I (236694) modbus tcp: ModBusSlave_recv() +I (236694) modbus: ModbusSlaveProcess() +I (236694) modbus: check id... +I (236694) modbus: ok +I (236694) modbus: add: 0, length: 10 +I (236694) modbus: Read Holding Registers +I (237724) modbus tcp: ModBusSlave_recv() +I (237724) modbus: ModbusSlaveProcess() +I (237724) modbus: check id... +I (237724) modbus: ok +I (237724) modbus: add: 0, length: 10 +I (237724) modbus: Read Holding Registers +I (238754) modbus tcp: ModBusSlave_recv() +I (238754) modbus: ModbusSlaveProcess() +I (238754) modbus: check id... +I (238754) modbus: ok +I (238754) modbus: add: 0, length: 10 +I (238754) modbus: Read Holding Registers +I (239764) modbus tcp: ModBusSlave_recv() +I (239764) modbus: ModbusSlaveProcess() +I (239764) modbus: check id... +I (239764) modbus: ok +I (239764) modbus: add: 0, length: 10 +I (239764) modbus: Read Holding Registers diff --git a/build/log/idf_py_stdout_output_20056 b/build/log/idf_py_stdout_output_20056 new file mode 100644 index 0000000..446feeb --- /dev/null +++ b/build/log/idf_py_stdout_output_20056 @@ -0,0 +1,21 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b80 bytes. Smallest app partition is 0x100000 bytes. 0x4d480 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_20076 b/build/log/idf_py_stdout_output_20076 new file mode 100644 index 0000000..878c1b9 --- /dev/null +++ b/build/log/idf_py_stdout_output_20076 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2c00 bytes. Smallest app partition is 0x100000 bytes. 0x4d400 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 434.5 kbit/s)... +Hash of data verified. +Compressed 732160 bytes to 462396... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd41... (6 %) +Writing at 0x000262a8... (10 %) +Writing at 0x0002b7af... (13 %) +Writing at 0x00035c21... (17 %) +Writing at 0x0003b9d9... (20 %) +Writing at 0x0004153e... (24 %) +Writing at 0x0004769e... (27 %) +Writing at 0x0004dcea... (31 %) +Writing at 0x00053660... (34 %) +Writing at 0x00058ca7... (37 %) +Writing at 0x0005e4de... (41 %) +Writing at 0x00063df4... (44 %) +Writing at 0x00069981... (48 %) +Writing at 0x0006f593... (51 %) +Writing at 0x000743fb... (55 %) +Writing at 0x000794d4... (58 %) +Writing at 0x0007e520... (62 %) +Writing at 0x00083826... (65 %) +Writing at 0x00088d23... (68 %) +Writing at 0x0008e7a0... (72 %) +Writing at 0x00093f2f... (75 %) +Writing at 0x000998d5... (79 %) +Writing at 0x0009f8e2... (82 %) +Writing at 0x000a5130... (86 %) +Writing at 0x000aae8a... (89 %) +Writing at 0x000b4be5... (93 %) +Writing at 0x000bb91b... (96 %) +Writing at 0x000c120c... (100 %) +Wrote 732160 bytes (462396 compressed) at 0x00010000 in 7.8 seconds (effective 753.7 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 484.7 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_20080 b/build/log/idf_py_stdout_output_20080 new file mode 100644 index 0000000..b939d4a --- /dev/null +++ b/build/log/idf_py_stdout_output_20080 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a76 +waiting for download diff --git a/build/log/idf_py_stdout_output_20192 b/build/log/idf_py_stdout_output_20192 new file mode 100644 index 0000000..65f15ae --- /dev/null +++ b/build/log/idf_py_stdout_output_20192 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2bb0 bytes. Smallest app partition is 0x100000 bytes. 0x4d450 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 442.7 kbit/s)... +Hash of data verified. +Compressed 732080 bytes to 462371... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd35... (6 %) +Writing at 0x0002628a... (10 %) +Writing at 0x0002b7b7... (13 %) +Writing at 0x00035bf2... (17 %) +Writing at 0x0003b99c... (20 %) +Writing at 0x00041504... (24 %) +Writing at 0x00047677... (27 %) +Writing at 0x0004dca9... (31 %) +Writing at 0x00053616... (34 %) +Writing at 0x00058c63... (37 %) +Writing at 0x0005e4a6... (41 %) +Writing at 0x00063db4... (44 %) +Writing at 0x0006993e... (48 %) +Writing at 0x0006f565... (51 %) +Writing at 0x000743d6... (55 %) +Writing at 0x000794a4... (58 %) +Writing at 0x0007e4f0... (62 %) +Writing at 0x00083800... (65 %) +Writing at 0x00088cfa... (68 %) +Writing at 0x0008e76d... (72 %) +Writing at 0x00093f03... (75 %) +Writing at 0x000998a8... (79 %) +Writing at 0x0009f8b5... (82 %) +Writing at 0x000a50fe... (86 %) +Writing at 0x000aae26... (89 %) +Writing at 0x000b4bb8... (93 %) +Writing at 0x000bb8f8... (96 %) +Writing at 0x000c11d7... (100 %) +Wrote 732080 bytes (462371 compressed) at 0x00010000 in 7.7 seconds (effective 762.8 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 501.4 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_20236 b/build/log/idf_py_stdout_output_20236 new file mode 100644 index 0000000..f2af10d --- /dev/null +++ b/build/log/idf_py_stdout_output_20236 @@ -0,0 +1,1097 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21590h (136592) map +I (121) esp_image: segment 1: paddr=000315b8 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353c0 vaddr=40374000 size=0ac58h ( 44120) load +I (136) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae6ch (503404) map +I (227) esp_image: segment 4: paddr=000bae94 vaddr=4037ec58 size=07cbch ( 31932) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (266) cpu_start: Pro cpu start user code +I (266) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (267) cpu_start: ELF file SHA256: 4397a0fa38d159d6... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (268) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (269) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (271) spi_flash: flash io: dio +W (271) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (273) app_start: Starting scheduler on CPU1 +I (273) main_task: Started on CPU0 +I (283) main_task: Calling app_main() +I (303) wifi station: ESP_WIFI_MODE_STA +I (303) pp: pp rom version: e7ae62f +I (303) net80211: net80211 rom version: e7ae62f +I (313) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (313) system_api: Base MAC address is not set +I (313) system_api: read default base MAC address from EFUSE +I (323) wifi:wifi firmware version: e2d0ad8 +I (323) wifi:wifi certification version: v7.0 +I (323) wifi:config NVS flash: enabled +I (323) wifi:config nano formating: disabled +I (323) wifi:Init data frame dynamic rx buffer num: 32 +I (323) wifi:Init management frame dynamic rx buffer num: 32 +I (323) wifi:Init management short buffer num: 32 +I (323) wifi:Init dynamic tx buffer num: 32 +I (323) wifi:Init static tx FG buffer num: 2 +I (323) wifi:Init static rx buffer size: 1600 +I (323) wifi:Init static rx buffer num: 10 +I (323) wifi:Init dynamic rx buffer num: 32 +I (323) wifi_init: rx ba win: 6 +I (323) wifi_init: tcpip mbox: 32 +I (323) wifi_init: udp mbox: 6 +I (323) wifi_init: tcp mbox: 6 +I (323) wifi_init: tcp tx win: 5744 +I (323) wifi_init: tcp rx win: 5744 +I (323) wifi_init: tcp mss: 1440 +I (323) wifi_init: WiFi IRAM OP enabled +I (323) wifi_init: WiFi RX IRAM OP enabled +I (333) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (363) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (363) wifi:enable tsf +I (373) wifi station: wifi_init_sta finished. +I (373) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (383) wifi:state: init -> auth (b0) +I (383) wifi:state: auth -> assoc (0) +I (383) wifi:state: assoc -> run (10) +I (473) wifi:connected with CMCC-xRSZ, aid = 134, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (473) wifi:security: WPA2-PSK, phy: bgn, rssi: -49 +I (483) wifi:pm start, type: 1 + +I (483) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (483) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (483) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (493) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1483) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1483) wifi station: got ip:192.168.1.156 +I (1483) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1483) modbus tcp: ModBusTCPSlave_init() +I (1483) example: Create DC motor +I (1483) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1483) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1483) example: Init pcnt driver to decode rotary signal +I (1483) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1483) gpio: GPIO[35]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1483) gpio: GPIO[35]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1483) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1483) example: Create PID control block +I (1483) example: Create a timer to do PID calculation periodically +I (1483) example: Enable motor +I (1483) example: Forward motor +I (1483) example: Start motor speed loop +I (2483) example: cur_pulse_count:0 +I (3463) modbus tcp: accept assess +I (3483) example: cur_pulse_count:0 +I (4483) example: cur_pulse_count:0 +I (4513) modbus tcp: ModBusSlave_recv() +I (4513) modbus: ModbusSlaveProcess()--------------------------- +I (4513) modbus: check id... +I (4513) modbus: ok +I (4513) modbus: add: 0, length: 10 +I (4513) modbus: Read Holding Registers +I (5483) example: cur_pulse_count:0 +I (5553) modbus tcp: ModBusSlave_recv() +I (5553) modbus: ModbusSlaveProcess()--------------------------- +I (5553) modbus: check id... +I (5563) modbus: ok +I (5563) modbus: add: 0, length: 10 +I (5563) modbus: Read Holding Registers +I (6483) example: cur_pulse_count:0 +I (6533) modbus tcp: ModBusSlave_recv() +I (6533) modbus: ModbusSlaveProcess()--------------------------- +I (6533) modbus: check id... +I (6533) modbus: ok +I (6533) modbus: add: 0, length: 10 +I (6533) modbus: Read Holding Registers +I (7483) example: cur_pulse_count:0 +I (7563) modbus tcp: ModBusSlave_recv() +I (7563) modbus: ModbusSlaveProcess()--------------------------- +I (7563) modbus: check id... +I (7563) modbus: ok +I (7563) modbus: add: 0, length: 10 +I (7563) modbus: Read Holding Registers +I (8483) example: cur_pulse_count:0 +I (8583) modbus tcp: ModBusSlave_recv() +I (8583) modbus: ModbusSlaveProcess()--------------------------- +I (8583) modbus: check id... +I (8583) modbus: ok +I (8583) modbus: add: 0, length: 10 +I (8583) modbus: Read Holding Registers +I (9483) example: cur_pulse_count:0 +I (9603) modbus tcp: ModBusSlave_recv() +I (9603) modbus: ModbusSlaveProcess()--------------------------- +I (9603) modbus: check id... +I (9603) modbus: ok +I (9603) modbus: add: 0, length: 10 +I (9603) modbus: Read Holding Registers +I (10483) example: cur_pulse_count:0 +I (10693) modbus tcp: ModBusSlave_recv() +I (10693) modbus: ModbusSlaveProcess()--------------------------- +I (10693) modbus: check id... +I (10693) modbus: ok +I (10693) modbus: add: 0, length: 10 +I (10693) modbus: Read Holding Registers +I (11483) example: cur_pulse_count:0 +I (11653) modbus tcp: ModBusSlave_recv() +I (11653) modbus: ModbusSlaveProcess()--------------------------- +I (11653) modbus: check id... +I (11653) modbus: ok +I (11653) modbus: add: 0, length: 10 +I (11653) modbus: Read Holding Registers +I (12483) example: cur_pulse_count:0 +I (12683) modbus tcp: ModBusSlave_recv() +I (12683) modbus: ModbusSlaveProcess()--------------------------- +I (12683) modbus: check id... +I (12683) modbus: ok +I (12683) modbus: add: 0, length: 10 +I (12683) modbus: Read Holding Registers +I (13483) example: cur_pulse_count:0 +I (13743) modbus tcp: ModBusSlave_recv() +I (13743) modbus: ModbusSlaveProcess()--------------------------- +I (13743) modbus: check id... +I (13743) modbus: ok +I (13743) modbus: add: 0, length: 10 +I (13743) modbus: Read Holding Registers +I (14483) example: cur_pulse_count:0 +I (14623) modbus tcp: ModBusSlave_recv() +I (14623) modbus: ModbusSlaveProcess()--------------------------- +I (14623) modbus: check id... +I (14623) modbus: ok +I (14623) modbus: add: 0, length: 10 +I (14623) modbus: Read Holding Registers +I (15483) example: cur_pulse_count:0 +I (15673) modbus tcp: ModBusSlave_recv() +I (15673) modbus: ModbusSlaveProcess()--------------------------- +I (15673) modbus: check id... +I (15673) modbus: ok +I (15673) modbus: add: 0, length: 10 +I (15673) modbus: Read Holding Registers +I (16483) example: cur_pulse_count:0 +I (16683) modbus tcp: ModBusSlave_recv() +I (16683) modbus: ModbusSlaveProcess()--------------------------- +I (16683) modbus: check id... +I (16683) modbus: ok +I (16683) modbus: add: 0, length: 10 +I (16683) modbus: Read Holding Registers +I (17483) example: cur_pulse_count:0 +I (17693) modbus tcp: ModBusSlave_recv() +I (17693) modbus: ModbusSlaveProcess()--------------------------- +I (17693) modbus: check id... +I (17693) modbus: ok +I (17693) modbus: add: 0, length: 10 +I (17703) modbus: Read Holding Registers +I (18483) example: cur_pulse_count:0 +I (18723) modbus tcp: ModBusSlave_recv() +I (18723) modbus: ModbusSlaveProcess()--------------------------- +I (18723) modbus: check id... +I (18723) modbus: ok +I (18723) modbus: add: 0, length: 10 +I (18723) modbus: Read Holding Registers +I (19483) example: cur_pulse_count:0 +I (19743) modbus tcp: ModBusSlave_recv() +I (19743) modbus: ModbusSlaveProcess()--------------------------- +I (19743) modbus: check id... +I (19743) modbus: ok +I (19743) modbus: add: 0, length: 10 +I (19743) modbus: Read Holding Registers +I (20483) example: cur_pulse_count:0 +I (20763) modbus tcp: ModBusSlave_recv() +I (20773) modbus: ModbusSlaveProcess()--------------------------- +I (20773) modbus: check id... +I (20773) modbus: ok +I (20773) modbus: add: 0, length: 10 +I (20773) modbus: Read Holding Registers +I (21483) example: cur_pulse_count:0 +I (21793) modbus tcp: ModBusSlave_recv() +I (21793) modbus: ModbusSlaveProcess()--------------------------- +I (21793) modbus: check id... +I (21793) modbus: ok +I (21793) modbus: add: 0, length: 10 +I (21793) modbus: Read Holding Registers +I (22483) example: cur_pulse_count:0 +I (22813) modbus tcp: ModBusSlave_recv() +I (22813) modbus: ModbusSlaveProcess()--------------------------- +I (22813) modbus: check id... +I (22813) modbus: ok +I (22813) modbus: add: 0, length: 10 +I (22813) modbus: Read Holding Registers +I (23483) example: cur_pulse_count:0 +I (23843) modbus tcp: ModBusSlave_recv() +I (23843) modbus: ModbusSlaveProcess()--------------------------- +I (23843) modbus: check id... +I (23843) modbus: ok +I (23843) modbus: add: 0, length: 10 +I (23843) modbus: Read Holding Registers +I (24483) example: cur_pulse_count:0 +I (24863) modbus tcp: ModBusSlave_recv() +I (24863) modbus: ModbusSlaveProcess()--------------------------- +I (24863) modbus: check id... +I (24863) modbus: ok +I (24863) modbus: add: 0, length: 10 +I (24863) modbus: Read Holding Registers +I (25483) example: cur_pulse_count:0 +I (25893) modbus tcp: ModBusSlave_recv() +I (25893) modbus: ModbusSlaveProcess()--------------------------- +I (25893) modbus: check id... +I (25893) modbus: ok +I (25893) modbus: add: 0, length: 10 +I (25893) modbus: Read Holding Registers +I (26483) example: cur_pulse_count:0 +I (26813) modbus tcp: ModBusSlave_recv() +I (26813) modbus: ModbusSlaveProcess()--------------------------- +I (26813) modbus: check id... +I (26813) modbus: ok +I (26813) modbus: add: 0, length: 10 +I (26813) modbus: Read Holding Registers +I (27483) example: cur_pulse_count:0 +I (27943) modbus tcp: ModBusSlave_recv() +I (27943) modbus: ModbusSlaveProcess()--------------------------- +I (27943) modbus: check id... +I (27943) modbus: ok +I (27943) modbus: add: 0, length: 10 +I (27943) modbus: Read Holding Registers +I (28483) example: cur_pulse_count:0 +I (28853) modbus tcp: ModBusSlave_recv() +I (28853) modbus: ModbusSlaveProcess()--------------------------- +I (28863) modbus: check id... +I (28863) modbus: ok +I (28863) modbus: add: 0, length: 10 +I (28863) modbus: Read Holding Registers +I (29483) example: cur_pulse_count:0 +I (29883) modbus tcp: ModBusSlave_recv() +I (29883) modbus: ModbusSlaveProcess()--------------------------- +I (29883) modbus: check id... +I (29883) modbus: ok +I (29883) modbus: add: 0, length: 10 +I (29883) modbus: Read Holding Registers +I (30483) example: cur_pulse_count:0 +I (30933) modbus tcp: ModBusSlave_recv() +I (30933) modbus: ModbusSlaveProcess()--------------------------- +I (30933) modbus: check id... +I (30933) modbus: ok +I (30933) modbus: add: 0, length: 10 +I (30933) modbus: Read Holding Registers +I (31483) example: cur_pulse_count:0 +I (31973) modbus tcp: ModBusSlave_recv() +I (31983) modbus: ModbusSlaveProcess()--------------------------- +I (31983) modbus: check id... +I (31983) modbus: ok +I (31983) modbus: add: 0, length: 10 +I (31983) modbus: Read Holding Registers +I (32483) example: cur_pulse_count:0 +I (32953) modbus tcp: ModBusSlave_recv() +I (32953) modbus: ModbusSlaveProcess()--------------------------- +I (32953) modbus: check id... +I (32953) modbus: ok +I (32953) modbus: add: 0, length: 10 +I (32953) modbus: Read Holding Registers +I (33483) example: cur_pulse_count:0 +I (33983) modbus tcp: ModBusSlave_recv() +I (33983) modbus: ModbusSlaveProcess()--------------------------- +I (33983) modbus: check id... +I (33983) modbus: ok +I (33983) modbus: add: 0, length: 10 +I (33983) modbus: Read Holding Registers +I (34483) example: cur_pulse_count:0 +I (35003) modbus tcp: ModBusSlave_recv() +I (35003) modbus: ModbusSlaveProcess()--------------------------- +I (35003) modbus: check id... +I (35003) modbus: ok +I (35003) modbus: add: 0, length: 10 +I (35003) modbus: Read Holding Registers +I (35483) example: cur_pulse_count:0 +I (36023) modbus tcp: ModBusSlave_recv() +I (36023) modbus: ModbusSlaveProcess()--------------------------- +I (36023) modbus: check id... +I (36023) modbus: ok +I (36023) modbus: add: 0, length: 10 +I (36023) modbus: Read Holding Registers +I (36483) example: cur_pulse_count:0 +I (37053) modbus tcp: ModBusSlave_recv() +I (37053) modbus: ModbusSlaveProcess()--------------------------- +I (37053) modbus: check id... +I (37053) modbus: ok +I (37053) modbus: add: 0, length: 10 +I (37053) modbus: Read Holding Registers +I (37483) example: cur_pulse_count:0 +I (38073) modbus tcp: ModBusSlave_recv() +I (38073) modbus: ModbusSlaveProcess()--------------------------- +I (38073) modbus: check id... +I (38073) modbus: ok +I (38083) modbus: add: 0, length: 10 +I (38083) modbus: Read Holding Registers +I (38483) example: cur_pulse_count:0 +I (39103) modbus tcp: ModBusSlave_recv() +I (39103) modbus: ModbusSlaveProcess()--------------------------- +I (39103) modbus: check id... +I (39103) modbus: ok +I (39103) modbus: add: 0, length: 10 +I (39103) modbus: Read Holding Registers +I (39483) example: cur_pulse_count:0 +I (40133) modbus tcp: ModBusSlave_recv() +I (40133) modbus: ModbusSlaveProcess()--------------------------- +I (40133) modbus: check id... +I (40133) modbus: ok +I (40133) modbus: add: 0, length: 10 +I (40133) modbus: Read Holding Registers +I (40483) example: cur_pulse_count:0 +I (41143) modbus tcp: ModBusSlave_recv() +I (41143) modbus: ModbusSlaveProcess()--------------------------- +I (41143) modbus: check id... +I (41143) modbus: ok +I (41143) modbus: add: 0, length: 10 +I (41143) modbus: Read Holding Registers +I (41483) example: cur_pulse_count:0 +I (42073) modbus tcp: ModBusSlave_recv() +I (42073) modbus: ModbusSlaveProcess()--------------------------- +I (42073) modbus: check id... +I (42073) modbus: ok +I (42073) modbus: add: 0, length: 10 +I (42073) modbus: Read Holding Registers +I (42483) example: cur_pulse_count:0 +I (43093) modbus tcp: ModBusSlave_recv() +I (43093) modbus: ModbusSlaveProcess()--------------------------- +I (43093) modbus: check id... +I (43093) modbus: ok +I (43093) modbus: add: 0, length: 10 +I (43093) modbus: Read Holding Registers +I (43483) example: cur_pulse_count:0 +I (44143) modbus tcp: ModBusSlave_recv() +I (44143) modbus: ModbusSlaveProcess()--------------------------- +I (44143) modbus: check id... +I (44143) modbus: ok +I (44143) modbus: add: 0, length: 10 +I (44143) modbus: Read Holding Registers +I (44483) example: cur_pulse_count:0 +I (45193) modbus tcp: ModBusSlave_recv() +I (45193) modbus: ModbusSlaveProcess()--------------------------- +I (45193) modbus: check id... +I (45193) modbus: ok +I (45193) modbus: add: 0, length: 10 +I (45193) modbus: Read Holding Registers +I (45483) example: cur_pulse_count:-89 +I (46163) modbus tcp: ModBusSlave_recv() +I (46163) modbus: ModbusSlaveProcess()--------------------------- +I (46163) modbus: check id... +I (46163) modbus: ok +I (46163) modbus: add: 0, length: 10 +I (46163) modbus: Read Holding Registers +I (46483) example: cur_pulse_count:-179 +I (47183) modbus tcp: ModBusSlave_recv() +I (47193) modbus: ModbusSlaveProcess()--------------------------- +I (47193) modbus: check id... +I (47193) modbus: ok +I (47193) modbus: add: 0, length: 10 +I (47193) modbus: Read Holding Registers +I (47483) example: cur_pulse_count:-277 +I (48213) modbus tcp: ModBusSlave_recv() +I (48213) modbus: ModbusSlaveProcess()--------------------------- +I (48213) modbus: check id... +I (48213) modbus: ok +I (48213) modbus: add: 0, length: 10 +I (48213) modbus: Read Holding Registers +I (48483) example: cur_pulse_count:-372 +I (49233) modbus tcp: ModBusSlave_recv() +I (49233) modbus: ModbusSlaveProcess()--------------------------- +I (49233) modbus: check id... +I (49233) modbus: ok +I (49233) modbus: add: 0, length: 10 +I (49233) modbus: Read Holding Registers +I (49483) example: cur_pulse_count:-412 +I (50263) modbus tcp: ModBusSlave_recv() +I (50263) modbus: ModbusSlaveProcess()--------------------------- +I (50263) modbus: check id... +I (50263) modbus: ok +I (50263) modbus: add: 0, length: 10 +I (50263) modbus: Read Holding Registers +I (50483) example: cur_pulse_count:-354 +I (51293) modbus tcp: ModBusSlave_recv() +I (51293) modbus: ModbusSlaveProcess()--------------------------- +I (51293) modbus: check id... +I (51293) modbus: ok +I (51293) modbus: add: 0, length: 10 +I (51293) modbus: Read Holding Registers +I (51483) example: cur_pulse_count:-280 +I (52313) modbus tcp: ModBusSlave_recv() +I (52313) modbus: ModbusSlaveProcess()--------------------------- +I (52313) modbus: check id... +I (52313) modbus: ok +I (52313) modbus: add: 0, length: 10 +I (52313) modbus: Read Holding Registers +I (52483) example: cur_pulse_count:-210 +I (53333) modbus tcp: ModBusSlave_recv() +I (53333) modbus: ModbusSlaveProcess()--------------------------- +I (53333) modbus: check id... +I (53333) modbus: ok +I (53333) modbus: add: 0, length: 10 +I (53333) modbus: Read Holding Registers +I (53483) example: cur_pulse_count:-140 +I (54403) modbus tcp: ModBusSlave_recv() +I (54403) modbus: ModbusSlaveProcess()--------------------------- +I (54403) modbus: check id... +I (54403) modbus: ok +I (54403) modbus: add: 0, length: 10 +I (54403) modbus: Read Holding Registers +I (54483) example: cur_pulse_count:-98 +I (55383) modbus tcp: ModBusSlave_recv() +I (55383) modbus: ModbusSlaveProcess()--------------------------- +I (55383) modbus: check id... +I (55383) modbus: ok +I (55383) modbus: add: 0, length: 10 +I (55383) modbus: Read Holding Registers +I (55483) example: cur_pulse_count:-98 +I (56413) modbus tcp: ModBusSlave_recv() +I (56413) modbus: ModbusSlaveProcess()--------------------------- +I (56413) modbus: check id... +I (56413) modbus: ok +I (56413) modbus: add: 0, length: 10 +I (56413) modbus: Read Holding Registers +I (56483) example: cur_pulse_count:-98 +I (57343) modbus tcp: ModBusSlave_recv() +I (57343) modbus: ModbusSlaveProcess()--------------------------- +I (57343) modbus: check id... +I (57343) modbus: ok +I (57343) modbus: add: 0, length: 10 +I (57343) modbus: Read Holding Registers +I (57483) example: cur_pulse_count:-98 +I (58383) modbus tcp: ModBusSlave_recv() +I (58383) modbus: ModbusSlaveProcess()--------------------------- +I (58383) modbus: check id... +I (58383) modbus: ok +I (58383) modbus: add: 0, length: 10 +I (58383) modbus: Read Holding Registers +I (58483) example: cur_pulse_count:-98 +I (59383) modbus tcp: ModBusSlave_recv() +I (59383) modbus: ModbusSlaveProcess()--------------------------- +I (59383) modbus: check id... +I (59383) modbus: ok +I (59383) modbus: add: 0, length: 10 +I (59383) modbus: Read Holding Registers +I (59483) example: cur_pulse_count:-133 +I (60393) modbus tcp: ModBusSlave_recv() +I (60393) modbus: ModbusSlaveProcess()--------------------------- +I (60393) modbus: check id... +I (60393) modbus: ok +I (60393) modbus: add: 0, length: 10 +I (60393) modbus: Read Holding Registers +I (60483) example: cur_pulse_count:-210 +I (61433) modbus tcp: ModBusSlave_recv() +I (61433) modbus: ModbusSlaveProcess()--------------------------- +I (61433) modbus: check id... +I (61433) modbus: ok +I (61433) modbus: add: 0, length: 10 +I (61433) modbus: Read Holding Registers +I (61483) example: cur_pulse_count:-279 +I (62443) modbus tcp: ModBusSlave_recv() +I (62443) modbus: ModbusSlaveProcess()--------------------------- +I (62443) modbus: check id... +I (62443) modbus: ok +I (62443) modbus: add: 0, length: 10 +I (62443) modbus: Read Holding Registers +I (62483) example: cur_pulse_count:-348 +I (63483) modbus tcp: ModBusSlave_recv() +I (63483) modbus: ModbusSlaveProcess()--------------------------- +I (63483) modbus: check id... +I (63483) modbus: ok +I (63483) modbus: add: 0, length: 10 +I (63483) modbus: Read Holding Registers +I (63483) example: cur_pulse_count:-272 +I (64483) example: cur_pulse_count:-162 +I (64503) modbus tcp: ModBusSlave_recv() +I (64503) modbus: ModbusSlaveProcess()--------------------------- +I (64503) modbus: check id... +I (64503) modbus: ok +I (64503) modbus: add: 0, length: 10 +I (64503) modbus: Read Holding Registers +I (65483) example: cur_pulse_count:-87 +I (65523) modbus tcp: ModBusSlave_recv() +I (65523) modbus: ModbusSlaveProcess()--------------------------- +I (65523) modbus: check id... +I (65523) modbus: ok +I (65523) modbus: add: 0, length: 10 +I (65523) modbus: Read Holding Registers +I (66483) example: cur_pulse_count:-89 +I (66553) modbus tcp: ModBusSlave_recv() +I (66553) modbus: ModbusSlaveProcess()--------------------------- +I (66553) modbus: check id... +I (66553) modbus: ok +I (66553) modbus: add: 0, length: 10 +I (66553) modbus: Read Holding Registers +I (67483) example: cur_pulse_count:-203 +I (67573) modbus tcp: ModBusSlave_recv() +I (67573) modbus: ModbusSlaveProcess()--------------------------- +I (67573) modbus: check id... +I (67573) modbus: ok +I (67573) modbus: add: 0, length: 10 +I (67573) modbus: Read Holding Registers +I (68483) example: cur_pulse_count:-339 +I (68593) modbus tcp: ModBusSlave_recv() +I (68593) modbus: ModbusSlaveProcess()--------------------------- +I (68593) modbus: check id... +I (68593) modbus: ok +I (68593) modbus: add: 0, length: 10 +I (68593) modbus: Read Holding Registers +I (69483) example: cur_pulse_count:-258 +I (69513) modbus tcp: ModBusSlave_recv() +I (69513) modbus: ModbusSlaveProcess()--------------------------- +I (69513) modbus: check id... +I (69513) modbus: ok +I (69513) modbus: add: 0, length: 10 +I (69513) modbus: Read Holding Registers +I (70483) example: cur_pulse_count:-203 +I (70533) modbus tcp: ModBusSlave_recv() +I (70533) modbus: ModbusSlaveProcess()--------------------------- +I (70533) modbus: check id... +I (70533) modbus: ok +I (70533) modbus: add: 0, length: 10 +I (70533) modbus: Read Holding Registers +I (71483) example: cur_pulse_count:-203 +I (71603) modbus tcp: ModBusSlave_recv() +I (71603) modbus: ModbusSlaveProcess()--------------------------- +I (71603) modbus: check id... +I (71613) modbus: ok +I (71613) modbus: add: 0, length: 10 +I (71613) modbus: Read Holding Registers +I (72483) example: cur_pulse_count:-203 +I (72623) modbus tcp: ModBusSlave_recv() +I (72623) modbus: ModbusSlaveProcess()--------------------------- +I (72633) modbus: check id... +I (72633) modbus: ok +I (72633) modbus: add: 0, length: 10 +I (72633) modbus: Read Holding Registers +I (73483) example: cur_pulse_count:-203 +I (73633) modbus tcp: ModBusSlave_recv() +I (73633) modbus: ModbusSlaveProcess()--------------------------- +I (73633) modbus: check id... +I (73633) modbus: ok +I (73633) modbus: add: 0, length: 10 +I (73633) modbus: Read Holding Registers +I (74483) example: cur_pulse_count:-203 +I (74633) modbus tcp: ModBusSlave_recv() +I (74633) modbus: ModbusSlaveProcess()--------------------------- +I (74633) modbus: check id... +I (74643) modbus: ok +I (74643) modbus: add: 0, length: 10 +I (74643) modbus: Read Holding Registers +I (75483) example: cur_pulse_count:-203 +I (75673) modbus tcp: ModBusSlave_recv() +I (75673) modbus: ModbusSlaveProcess()--------------------------- +I (75673) modbus: check id... +I (75673) modbus: ok +I (75673) modbus: add: 0, length: 10 +I (75673) modbus: Read Holding Registers +I (76483) example: cur_pulse_count:-203 +I (76703) modbus tcp: ModBusSlave_recv() +I (76703) modbus: ModbusSlaveProcess()--------------------------- +I (76703) modbus: check id... +I (76703) modbus: ok +I (76703) modbus: add: 0, length: 10 +I (76703) modbus: Read Holding Registers +I (77483) example: cur_pulse_count:-203 +I (77703) modbus tcp: ModBusSlave_recv() +I (77703) modbus: ModbusSlaveProcess()--------------------------- +I (77703) modbus: check id... +I (77703) modbus: ok +I (77703) modbus: add: 0, length: 10 +I (77703) modbus: Read Holding Registers +I (78483) example: cur_pulse_count:-203 +I (78733) modbus tcp: ModBusSlave_recv() +I (78733) modbus: ModbusSlaveProcess()--------------------------- +I (78733) modbus: check id... +I (78733) modbus: ok +I (78733) modbus: add: 0, length: 10 +I (78743) modbus: Read Holding Registers +I (79483) example: cur_pulse_count:-203 +I (79753) modbus tcp: ModBusSlave_recv() +I (79753) modbus: ModbusSlaveProcess()--------------------------- +I (79753) modbus: check id... +I (79753) modbus: ok +I (79753) modbus: add: 0, length: 10 +I (79753) modbus: Read Holding Registers +I (80483) example: cur_pulse_count:-203 +I (80773) modbus tcp: ModBusSlave_recv() +I (80773) modbus: ModbusSlaveProcess()--------------------------- +I (80773) modbus: check id... +I (80773) modbus: ok +I (80773) modbus: add: 0, length: 10 +I (80773) modbus: Read Holding Registers +I (81483) example: cur_pulse_count:-203 +I (81803) modbus tcp: ModBusSlave_recv() +I (81803) modbus: ModbusSlaveProcess()--------------------------- +I (81803) modbus: check id... +I (81803) modbus: ok +I (81803) modbus: add: 0, length: 10 +I (81803) modbus: Read Holding Registers +I (82483) example: cur_pulse_count:-203 +I (82853) modbus tcp: ModBusSlave_recv() +I (82853) modbus: ModbusSlaveProcess()--------------------------- +I (82853) modbus: check id... +I (82853) modbus: ok +I (82853) modbus: add: 0, length: 10 +I (82853) modbus: Read Holding Registers +I (83483) example: cur_pulse_count:-203 +I (83743) modbus tcp: ModBusSlave_recv() +I (83743) modbus: ModbusSlaveProcess()--------------------------- +I (83743) modbus: check id... +I (83743) modbus: ok +I (83743) modbus: add: 0, length: 10 +I (83743) modbus: Read Holding Registers +I (84483) example: cur_pulse_count:-203 +I (84773) modbus tcp: ModBusSlave_recv() +I (84773) modbus: ModbusSlaveProcess()--------------------------- +I (84773) modbus: check id... +I (84773) modbus: ok +I (84773) modbus: add: 0, length: 10 +I (84773) modbus: Read Holding Registers +I (85483) example: cur_pulse_count:-203 +I (85793) modbus tcp: ModBusSlave_recv() +I (85793) modbus: ModbusSlaveProcess()--------------------------- +I (85793) modbus: check id... +I (85793) modbus: ok +I (85793) modbus: add: 0, length: 10 +I (85793) modbus: Read Holding Registers +I (86483) example: cur_pulse_count:-203 +I (86813) modbus tcp: ModBusSlave_recv() +I (86813) modbus: ModbusSlaveProcess()--------------------------- +I (86813) modbus: check id... +I (86813) modbus: ok +I (86813) modbus: add: 0, length: 10 +I (86813) modbus: Read Holding Registers +I (87483) example: cur_pulse_count:-203 +I (87843) modbus tcp: ModBusSlave_recv() +I (87843) modbus: ModbusSlaveProcess()--------------------------- +I (87843) modbus: check id... +I (87843) modbus: ok +I (87843) modbus: add: 0, length: 10 +I (87843) modbus: Read Holding Registers +I (88483) example: cur_pulse_count:-203 +I (88913) modbus tcp: ModBusSlave_recv() +I (88913) modbus: ModbusSlaveProcess()--------------------------- +I (88913) modbus: check id... +I (88913) modbus: ok +I (88913) modbus: add: 0, length: 10 +I (88913) modbus: Read Holding Registers +I (89483) example: cur_pulse_count:-203 +I (89893) modbus tcp: ModBusSlave_recv() +I (89893) modbus: ModbusSlaveProcess()--------------------------- +I (89893) modbus: check id... +I (89893) modbus: ok +I (89893) modbus: add: 0, length: 10 +I (89893) modbus: Read Holding Registers +I (90483) example: cur_pulse_count:-203 +I (90913) modbus tcp: ModBusSlave_recv() +I (90913) modbus: ModbusSlaveProcess()--------------------------- +I (90913) modbus: check id... +I (90913) modbus: ok +I (90913) modbus: add: 0, length: 10 +I (90913) modbus: Read Holding Registers +I (91483) example: cur_pulse_count:-203 +I (91993) modbus tcp: ModBusSlave_recv() +I (91993) modbus: ModbusSlaveProcess()--------------------------- +I (91993) modbus: check id... +I (92003) modbus: ok +I (92003) modbus: add: 0, length: 10 +I (92003) modbus: Read Holding Registers +I (92483) example: cur_pulse_count:-203 +I (92963) modbus tcp: ModBusSlave_recv() +I (92963) modbus: ModbusSlaveProcess()--------------------------- +I (92963) modbus: check id... +I (92963) modbus: ok +I (92963) modbus: add: 0, length: 10 +I (92963) modbus: Read Holding Registers +I (93483) example: cur_pulse_count:-203 +I (93983) modbus tcp: ModBusSlave_recv() +I (93983) modbus: ModbusSlaveProcess()--------------------------- +I (93983) modbus: check id... +I (93983) modbus: ok +I (93983) modbus: add: 0, length: 10 +I (93983) modbus: Read Holding Registers +I (94483) example: cur_pulse_count:-203 +I (94903) modbus tcp: ModBusSlave_recv() +I (94903) modbus: ModbusSlaveProcess()--------------------------- +I (94903) modbus: check id... +I (94903) modbus: ok +I (94903) modbus: add: 0, length: 10 +I (94903) modbus: Read Holding Registers +I (95483) example: cur_pulse_count:-203 +I (95933) modbus tcp: ModBusSlave_recv() +I (95933) modbus: ModbusSlaveProcess()--------------------------- +I (95933) modbus: check id... +I (95933) modbus: ok +I (95933) modbus: add: 0, length: 10 +I (95933) modbus: Read Holding Registers +I (96483) example: cur_pulse_count:-203 +I (96953) modbus tcp: ModBusSlave_recv() +I (96953) modbus: ModbusSlaveProcess()--------------------------- +I (96953) modbus: check id... +I (96953) modbus: ok +I (96953) modbus: add: 0, length: 10 +I (96953) modbus: Read Holding Registers +I (97483) example: cur_pulse_count:-203 +I (97983) modbus tcp: ModBusSlave_recv() +I (97983) modbus: ModbusSlaveProcess()--------------------------- +I (97983) modbus: check id... +I (97983) modbus: ok +I (97983) modbus: add: 0, length: 10 +I (97983) modbus: Read Holding Registers +I (98483) example: cur_pulse_count:-203 +I (99003) modbus tcp: ModBusSlave_recv() +I (99003) modbus: ModbusSlaveProcess()--------------------------- +I (99003) modbus: check id... +I (99003) modbus: ok +I (99003) modbus: add: 0, length: 10 +I (99003) modbus: Read Holding Registers +I (99483) example: cur_pulse_count:-203 +I (100033) modbus tcp: ModBusSlave_recv() +I (100033) modbus: ModbusSlaveProcess()--------------------------- +I (100033) modbus: check id... +I (100033) modbus: ok +I (100033) modbus: add: 0, length: 10 +I (100033) modbus: Read Holding Registers +I (100483) example: cur_pulse_count:-203 +I (101053) modbus tcp: ModBusSlave_recv() +I (101053) modbus: ModbusSlaveProcess()--------------------------- +I (101053) modbus: check id... +I (101053) modbus: ok +I (101053) modbus: add: 0, length: 10 +I (101053) modbus: Read Holding Registers +I (101483) example: cur_pulse_count:-203 +I (102083) modbus tcp: ModBusSlave_recv() +I (102083) modbus: ModbusSlaveProcess()--------------------------- +I (102083) modbus: check id... +I (102083) modbus: ok +I (102083) modbus: add: 0, length: 10 +I (102083) modbus: Read Holding Registers +I (102483) example: cur_pulse_count:-203 +I (103103) modbus tcp: ModBusSlave_recv() +I (103103) modbus: ModbusSlaveProcess()--------------------------- +I (103103) modbus: check id... +I (103103) modbus: ok +I (103103) modbus: add: 0, length: 10 +I (103103) modbus: Read Holding Registers +I (103483) example: cur_pulse_count:-203 +I (104133) modbus tcp: ModBusSlave_recv() +I (104133) modbus: ModbusSlaveProcess()--------------------------- +I (104133) modbus: check id... +I (104133) modbus: ok +I (104133) modbus: add: 0, length: 10 +I (104133) modbus: Read Holding Registers +I (104483) example: cur_pulse_count:-203 +I (105173) modbus tcp: ModBusSlave_recv() +I (105173) modbus: ModbusSlaveProcess()--------------------------- +I (105173) modbus: check id... +I (105173) modbus: ok +I (105173) modbus: add: 0, length: 10 +I (105173) modbus: Read Holding Registers +I (105483) example: cur_pulse_count:-203 +I (106173) modbus tcp: ModBusSlave_recv() +I (106173) modbus: ModbusSlaveProcess()--------------------------- +I (106173) modbus: check id... +I (106173) modbus: ok +I (106173) modbus: add: 0, length: 10 +I (106173) modbus: Read Holding Registers +I (106483) example: cur_pulse_count:-203 +I (107193) modbus tcp: ModBusSlave_recv() +I (107193) modbus: ModbusSlaveProcess()--------------------------- +I (107193) modbus: check id... +I (107193) modbus: ok +I (107193) modbus: add: 0, length: 10 +I (107193) modbus: Read Holding Registers +I (107483) example: cur_pulse_count:-203 +I (108233) modbus tcp: ModBusSlave_recv() +I (108233) modbus: ModbusSlaveProcess()--------------------------- +I (108233) modbus: check id... +I (108233) modbus: ok +I (108233) modbus: add: 0, length: 10 +I (108233) modbus: Read Holding Registers +I (108483) example: cur_pulse_count:-203 +I (109153) modbus tcp: ModBusSlave_recv() +I (109153) modbus: ModbusSlaveProcess()--------------------------- +I (109153) modbus: check id... +I (109153) modbus: ok +I (109153) modbus: add: 0, length: 10 +I (109153) modbus: Read Holding Registers +I (109483) example: cur_pulse_count:-203 +I (110163) modbus tcp: ModBusSlave_recv() +I (110163) modbus: ModbusSlaveProcess()--------------------------- +I (110163) modbus: check id... +I (110163) modbus: ok +I (110163) modbus: add: 0, length: 10 +I (110163) modbus: Read Holding Registers +I (110483) example: cur_pulse_count:-203 +I (111323) modbus tcp: ModBusSlave_recv() +I (111323) modbus: ModbusSlaveProcess()--------------------------- +I (111323) modbus: check id... +I (111323) modbus: ok +I (111323) modbus: add: 0, length: 10 +I (111323) modbus: Read Holding Registers +I (111483) example: cur_pulse_count:-203 +I (112243) modbus tcp: ModBusSlave_recv() +I (112243) modbus: ModbusSlaveProcess()--------------------------- +I (112243) modbus: check id... +I (112243) modbus: ok +I (112243) modbus: add: 0, length: 10 +I (112243) modbus: Read Holding Registers +I (112483) example: cur_pulse_count:-203 +I (113233) modbus tcp: ModBusSlave_recv() +I (113243) modbus: ModbusSlaveProcess()--------------------------- +I (113243) modbus: check id... +I (113243) modbus: ok +I (113243) modbus: add: 0, length: 10 +I (113243) modbus: Read Holding Registers +I (113483) example: cur_pulse_count:-203 +I (114273) modbus tcp: ModBusSlave_recv() +I (114273) modbus: ModbusSlaveProcess()--------------------------- +I (114273) modbus: check id... +I (114273) modbus: ok +I (114273) modbus: add: 0, length: 10 +I (114273) modbus: Read Holding Registers +I (114483) example: cur_pulse_count:-203 +I (115293) modbus tcp: ModBusSlave_recv() +I (115293) modbus: ModbusSlaveProcess()--------------------------- +I (115293) modbus: check id... +I (115293) modbus: ok +I (115293) modbus: add: 0, length: 10 +I (115293) modbus: Read Holding Registers +I (115483) example: cur_pulse_count:-203 +I (116313) modbus tcp: ModBusSlave_recv() +I (116313) modbus: ModbusSlaveProcess()--------------------------- +I (116313) modbus: check id... +I (116313) modbus: ok +I (116313) modbus: add: 0, length: 10 +I (116313) modbus: Read Holding Registers +I (116483) example: cur_pulse_count:-203 +I (117333) modbus tcp: ModBusSlave_recv() +I (117333) modbus: ModbusSlaveProcess()--------------------------- +I (117333) modbus: check id... +I (117333) modbus: ok +I (117333) modbus: add: 0, length: 10 +I (117333) modbus: Read Holding Registers +I (117483) example: cur_pulse_count:-203 +I (118353) modbus tcp: ModBusSlave_recv() +I (118353) modbus: ModbusSlaveProcess()--------------------------- +I (118363) modbus: check id... +I (118363) modbus: ok +I (118363) modbus: add: 0, length: 10 +I (118363) modbus: Read Holding Registers +I (118483) example: cur_pulse_count:-203 +I (119283) modbus tcp: ModBusSlave_recv() +I (119283) modbus: ModbusSlaveProcess()--------------------------- +I (119283) modbus: check id... +I (119283) modbus: ok +I (119283) modbus: add: 0, length: 10 +I (119283) modbus: Read Holding Registers +I (119483) example: cur_pulse_count:-203 +I (120303) modbus tcp: ModBusSlave_recv() +I (120303) modbus: ModbusSlaveProcess()--------------------------- +I (120303) modbus: check id... +I (120303) modbus: ok +I (120303) modbus: add: 0, length: 10 +I (120303) modbus: Read Holding Registers +I (120483) example: cur_pulse_count:-203 +I (121333) modbus tcp: ModBusSlave_recv() +I (121333) modbus: ModbusSlaveProcess()--------------------------- +I (121333) modbus: check id... +I (121333) modbus: ok +I (121333) modbus: add: 0, length: 10 +I (121333) modbus: Read Holding Registers +I (121483) example: cur_pulse_count:-203 +I (122353) modbus tcp: ModBusSlave_recv() +I (122353) modbus: ModbusSlaveProcess()--------------------------- +I (122353) modbus: check id... +I (122353) modbus: ok +I (122353) modbus: add: 0, length: 10 +I (122353) modbus: Read Holding Registers +I (122483) example: cur_pulse_count:-203 +I (123373) modbus tcp: ModBusSlave_recv() +I (123373) modbus: ModbusSlaveProcess()--------------------------- +I (123373) modbus: check id... +I (123373) modbus: ok +I (123373) modbus: add: 0, length: 10 +I (123373) modbus: Read Holding Registers +I (123483) example: cur_pulse_count:-203 +I (124403) modbus tcp: ModBusSlave_recv() +I (124403) modbus: ModbusSlaveProcess()--------------------------- +I (124403) modbus: check id... +I (124403) modbus: ok +I (124403) modbus: add: 0, length: 10 +I (124403) modbus: Read Holding Registers +I (124483) example: cur_pulse_count:-203 +I (125423) modbus tcp: ModBusSlave_recv() +I (125423) modbus: ModbusSlaveProcess()--------------------------- +I (125423) modbus: check id... +I (125423) modbus: ok +I (125423) modbus: add: 0, length: 10 +I (125423) modbus: Read Holding Registers +I (125483) example: cur_pulse_count:-203 +I (126443) modbus tcp: ModBusSlave_recv() +I (126443) modbus: ModbusSlaveProcess()--------------------------- +I (126443) modbus: check id... +I (126443) modbus: ok +I (126443) modbus: add: 0, length: 10 +I (126443) modbus: Read Holding Registers +I (126483) example: cur_pulse_count:-203 +I (127473) modbus tcp: ModBusSlave_recv() +I (127473) modbus: ModbusSlaveProcess()--------------------------- +I (127473) modbus: check id... +I (127473) modbus: ok +I (127473) modbus: add: 0, length: 10 +I (127473) modbus: Read Holding Registers +I (127483) example: cur_pulse_count:-203 +I (128483) example: cur_pulse_count:-203 +I (128493) modbus tcp: ModBusSlave_recv() +I (128493) modbus: ModbusSlaveProcess()--------------------------- +I (128493) modbus: check id... +I (128493) modbus: ok +I (128493) modbus: add: 0, length: 10 +I (128493) modbus: Read Holding Registers +I (129483) example: cur_pulse_count:-203 +I (129513) modbus tcp: ModBusSlave_recv() +I (129513) modbus: ModbusSlaveProcess()--------------------------- +I (129523) modbus: check id... +I (129523) modbus: ok +I (129523) modbus: add: 0, length: 10 +I (129523) modbus: Read Holding Registers +I (130483) example: cur_pulse_count:-203 +I (130543) modbus tcp: ModBusSlave_recv() +I (130543) modbus: ModbusSlaveProcess()--------------------------- +I (130543) modbus: check id... +I (130543) modbus: ok +I (130543) modbus: add: 0, length: 10 +I (130543) modbus: Read Holding Registers +I (131483) example: cur_pulse_count:-203 +I (131563) modbus tcp: ModBusSlave_recv() +I (131563) modbus: ModbusSlaveProcess()--------------------------- +I (131563) modbus: check id... +I (131573) modbus: ok +I (131573) modbus: add: 0, length: 10 +I (131573) modbus: Read Holding Registers +I (132483) example: cur_pulse_count:-203 +I (132593) modbus tcp: ModBusSlave_recv() +I (132593) modbus: ModbusSlaveProcess()--------------------------- +I (132593) modbus: check id... +I (132593) modbus: ok +I (132593) modbus: add: 0, length: 10 +I (132593) modbus: Read Holding Registers +I (133483) example: cur_pulse_count:-203 +I (133613) modbus tcp: ModBusSlave_recv() +I (133613) modbus: ModbusSlaveProcess()--------------------------- +I (133613) modbus: check id... +I (133613) modbus: ok +I (133613) modbus: add: 0, length: 10 +I (133613) modbus: Read Holding Registers +I (134483) example: cur_pulse_count:-203 +I (134533) modbus tcp: ModBusSlave_recv() +I (134533) modbus: ModbusSlaveProcess()--------------------------- +I (134533) modbus: check id... +I (134533) modbus: ok +I (134533) modbus: add: 0, length: 10 +I (134533) modbus: Read Holding Registers +I (135483) example: cur_pulse_count:-203 +I (135563) modbus tcp: ModBusSlave_recv() +I (135563) modbus: ModbusSlaveProcess()--------------------------- +I (135563) modbus: check id... +I (135563) modbus: ok +I (135563) modbus: add: 0, length: 10 +I (135563) modbus: Read Holding Registers +I (136483) example: cur_pulse_count:-203 +I (136593) modbus tcp: ModBusSlave_recv() +I (136593) modbus: ModbusSlaveProcess()--------------------------- +I (136593) modbus: check id... +I (136593) modbus: ok +I (136593) modbus: add: 0, length: 10 +I (136593) modbus: Read Holding Registers +I (137483) example: cur_pulse_count:-203 +I (137663) modbus tcp: ModBusSlave_recv() +I (137663) modbus: ModbusSlaveProcess()--------------------------- +I (137663) modbus: check id... +I (137673) modbus: ok +I (137673) modbus: add: 0, length: 10 +I (137673) modbus: Read Holding Registers +I (138483) example: cur_pulse_count:-203 +I (138633) modbus tcp: ModBusSlave_recv() +I (138633) modbus: ModbusSlaveProcess()--------------------------- +I (138633) modbus: check id... +I (138633) modbus: ok +I (138633) modbus: add: 0, length: 10 +I (138633) modbus: Read Holding Registers +I (139483) example: cur_pulse_count:-203 +I (139653) modbus tcp: ModBusSlave_recv() +I (139653) modbus: ModbusSlaveProcess()--------------------------- +I (139653) modbus: check id... +I (139653) modbus: ok +I (139653) modbus: add: 0, length: 10 +I (139653) modbus: Read Holding Registers +I (140483) example: cur_pulse_count:-203 +I (140743) modbus tcp: ModBusSlave_recv() +I (140743) modbus: ModbusSlaveProcess()--------------------------- +I (140743) modbus: check id... +I (140743) modbus: ok +I (140743) modbus: add: 0, length: 10 +I (140743) modbus: Read Holding Registers +I (141483) example: cur_pulse_count:-203 +I (141713) modbus tcp: ModBusSlave_recv() +I (141713) modbus: ModbusSlaveProcess()--------------------------- +I (141713) modbus: check id... +I (141713) modbus: ok +I (141713) modbus: add: 0, length: 10 +I (141713) modbus: Read Holding Registers +I (142483) example: cur_pulse_count:-203 +I (142723) modbus tcp: ModBusSlave_recv() +I (142723) modbus: ModbusSlaveProcess()--------------------------- +I (142723) modbus: check id... +I (142723) modbus: ok +I (142723) modbus: add: 0, length: 10 +I (142733) modbus: Read Holding Registers +I (143483) example: cur_pulse_count:-203 +I (143753) modbus tcp: ModBusSlave_recv() +I (143753) modbus: ModbusSlaveProcess()--------------------------- +I (143753) modbus: check id... +I (143753) modbus: ok +I (143753) modbus: add: 0, length: 10 +I (143753) modbus: Read Holding Registers +I (144483) example: cur_pulse_count:-203 +I (144783) modbus tcp: ModBusSlave_recv() +I (144783) modbus: ModbusSlaveProcess()--------------------------- +I (144783) modbus: check id... +I (144783) modbus: ok +I (144783) modbus: add: 0, length: 10 +I (144783) modbus: Read Holding Registers +I (145483) example: cur_pulse_count:-203 diff --git a/build/log/idf_py_stdout_output_20560 b/build/log/idf_py_stdout_output_20560 new file mode 100644 index 0000000..e4f5024 --- /dev/null +++ b/build/log/idf_py_stdout_output_20560 @@ -0,0 +1,5 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x4005035c +waiting for download diff --git a/build/log/idf_py_stdout_output_20756 b/build/log/idf_py_stdout_output_20756 new file mode 100644 index 0000000..540af61 --- /dev/null +++ b/build/log/idf_py_stdout_output_20756 @@ -0,0 +1,15 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_20792 b/build/log/idf_py_stdout_output_20792 new file mode 100644 index 0000000..a632186 --- /dev/null +++ b/build/log/idf_py_stdout_output_20792 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 438.5 kbit/s)... +Hash of data verified. +Compressed 732048 bytes to 462350... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3e... (6 %) +Writing at 0x00026289... (10 %) +Writing at 0x0002b793... (13 %) +Writing at 0x00035c1f... (17 %) +Writing at 0x0003b9c3... (20 %) +Writing at 0x00041524... (24 %) +Writing at 0x0004767d... (27 %) +Writing at 0x0004dcb3... (31 %) +Writing at 0x00053635... (34 %) +Writing at 0x00058c6f... (37 %) +Writing at 0x0005e4bc... (41 %) +Writing at 0x00063ddd... (44 %) +Writing at 0x00069963... (48 %) +Writing at 0x0006f58c... (51 %) +Writing at 0x000743eb... (55 %) +Writing at 0x000794c2... (58 %) +Writing at 0x0007e517... (62 %) +Writing at 0x0008380f... (65 %) +Writing at 0x00088d05... (68 %) +Writing at 0x0008e77b... (72 %) +Writing at 0x00093f0e... (75 %) +Writing at 0x000998b0... (79 %) +Writing at 0x0009f8bf... (82 %) +Writing at 0x000a510a... (86 %) +Writing at 0x000aae76... (89 %) +Writing at 0x000b4bd9... (93 %) +Writing at 0x000bb8ff... (96 %) +Writing at 0x000c11cd... (100 %) +Wrote 732048 bytes (462350 compressed) at 0x00010000 in 7.8 seconds (effective 753.3 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 481.8 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_21068 b/build/log/idf_py_stdout_output_21068 new file mode 100644 index 0000000..b040e9b --- /dev/null +++ b/build/log/idf_py_stdout_output_21068 @@ -0,0 +1,868 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=215a8h (136616) map +I (121) esp_image: segment 1: paddr=000315d0 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353d8 vaddr=40374000 size=0ac40h ( 44096) load +I (137) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae8ch (503436) map +I (227) esp_image: segment 4: paddr=000baeb4 vaddr=4037ec40 size=07cd4h ( 31956) load +I (243) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (251) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (267) cpu_start: Pro cpu start user code +I (267) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (268) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 2ee456f1409b5663... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (269) cpu_start: Max chip rev: v0.99  +I (269) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (270) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (272) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (274) app_start: Starting scheduler on CPU0 +I (274) app_start: Starting scheduler on CPU1 +I (274) main_task: Started on CPU0 +I (284) main_task: Calling app_main() +I (304) wifi station: ESP_WIFI_MODE_STA +I (304) pp: pp rom version: e7ae62f +I (314) net80211: net80211 rom version: e7ae62f +I (324) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (324) system_api: Base MAC address is not set +I (324) system_api: read default base MAC address from EFUSE +I (334) wifi:wifi firmware version: e2d0ad8 +I (334) wifi:wifi certification version: v7.0 +I (334) wifi:config NVS flash: enabled +I (334) wifi:config nano formating: disabled +I (334) wifi:Init data frame dynamic rx buffer num: 32 +I (334) wifi:Init management frame dynamic rx buffer num: 32 +I (334) wifi:Init management short buffer num: 32 +I (334) wifi:Init dynamic tx buffer num: 32 +I (334) wifi:Init static tx FG buffer num: 2 +I (334) wifi:Init static rx buffer size: 1600 +I (334) wifi:Init static rx buffer num: 10 +I (334) wifi:Init dynamic rx buffer num: 32 +I (334) wifi_init: rx ba win: 6 +I (334) wifi_init: tcpip mbox: 32 +I (334) wifi_init: udp mbox: 6 +I (334) wifi_init: tcp mbox: 6 +I (334) wifi_init: tcp tx win: 5744 +I (334) wifi_init: tcp rx win: 5744 +I (334) wifi_init: tcp mss: 1440 +I (334) wifi_init: WiFi IRAM OP enabled +I (334) wifi_init: WiFi RX IRAM OP enabled +I (334) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (374) wifi:mode : sta (f4:12:fa:58:62:0c) +I (374) wifi:enable tsf +I (374) wifi station: wifi_init_sta finished. +I (384) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (384) wifi:state: init -> auth (b0) +I (394) wifi:state: auth -> assoc (0) +I (404) wifi:state: assoc -> run (10) +I (444) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (444) wifi:security: WPA2-PSK, phy: bgn, rssi: -83 +I (454) wifi:pm start, type: 1 + +I (454) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (474) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (484) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (524) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (834) wifi:idx +I (834) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (1454) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (1454) wifi station: got ip:192.168.1.107 +I (1454) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1454) modbus tcp: ModBusTCPSlave_init() +I (1454) example: Create DC motor +I (1454) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1454) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1454) example: Init pcnt driver to decode rotary signal +I (1454) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1454) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1454) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1454) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1454) example: Create PID control block +I (1454) example: Create a timer to do PID calculation periodically +I (1454) example: Enable motor +I (1454) example: Forward motor +I (1454) example: Start motor speed loop +I (2454) example: expect speed: 0.000000 real_pulses:0 --0 +I (2884) modbus tcp: accept assess +I (2904) modbus tcp: ModBusSlave_recv() +I (2904) modbus: ModbusSlaveProcess()--------------------------- +I (2904) modbus: check id... +I (2904) modbus: ok +I (2904) modbus: add: 0, length: 10 +I (2904) modbus: Read Holding Registers +I (3454) example: expect speed: 0.000000 real_pulses:0 --0 +I (3924) modbus tcp: ModBusSlave_recv() +I (3934) modbus: ModbusSlaveProcess()--------------------------- +I (3934) modbus: check id... +I (3934) modbus: ok +I (3934) modbus: add: 0, length: 10 +I (3934) modbus: Read Holding Registers +I (4454) example: expect speed: 0.000000 real_pulses:0 --0 +I (5034) modbus tcp: ModBusSlave_recv() +I (5034) modbus: ModbusSlaveProcess()--------------------------- +I (5034) modbus: check id... +I (5034) modbus: ok +I (5034) modbus: add: 0, length: 10 +I (5034) modbus: Read Holding Registers +I (5454) example: expect speed: 0.000000 real_pulses:0 --0 +I (6054) modbus tcp: ModBusSlave_recv() +I (6054) modbus: ModbusSlaveProcess()--------------------------- +I (6054) modbus: check id... +I (6054) modbus: ok +I (6054) modbus: add: 0, length: 10 +I (6054) modbus: Read Holding Registers +I (6454) example: expect speed: 0.000000 real_pulses:0 --0 +I (6974) modbus tcp: ModBusSlave_recv() +I (6974) modbus: ModbusSlaveProcess()--------------------------- +I (6974) modbus: check id... +I (6974) modbus: ok +I (6974) modbus: add: 0, length: 10 +I (6974) modbus: Read Holding Registers +I (7454) example: expect speed: 0.000000 real_pulses:0 --0 +I (7994) modbus tcp: ModBusSlave_recv() +I (7994) modbus: ModbusSlaveProcess()--------------------------- +I (7994) modbus: check id... +I (7994) modbus: ok +I (7994) modbus: add: 0, length: 10 +I (8004) modbus: Read Holding Registers +I (8454) example: expect speed: 0.000000 real_pulses:0 --0 +I (9024) modbus tcp: ModBusSlave_recv() +I (9024) modbus: ModbusSlaveProcess()--------------------------- +I (9024) modbus: check id... +I (9024) modbus: ok +I (9024) modbus: add: 0, length: 10 +I (9024) modbus: Read Holding Registers +I (9454) example: expect speed: 0.000000 real_pulses:0 --0 +I (10074) modbus tcp: ModBusSlave_recv() +I (10074) modbus: ModbusSlaveProcess()--------------------------- +I (10074) modbus: check id... +I (10074) modbus: ok +I (10074) modbus: add: 0, length: 10 +I (10074) modbus: Read Holding Registers +I (10454) example: expect speed: 0.000000 real_pulses:0 --0 +I (11074) modbus tcp: ModBusSlave_recv() +I (11074) modbus: ModbusSlaveProcess()--------------------------- +I (11074) modbus: check id... +I (11074) modbus: ok +I (11074) modbus: add: 0, length: 10 +I (11074) modbus: Read Holding Registers +I (11454) example: expect speed: 0.000000 real_pulses:0 --0 +I (12094) modbus tcp: ModBusSlave_recv() +I (12094) modbus: ModbusSlaveProcess()--------------------------- +I (12094) modbus: check id... +I (12094) modbus: ok +I (12094) modbus: add: 0, length: 10 +I (12094) modbus: Read Holding Registers +I (12454) example: expect speed: 0.000000 real_pulses:0 --0 +I (13154) modbus tcp: ModBusSlave_recv() +I (13154) modbus: ModbusSlaveProcess()--------------------------- +I (13154) modbus: check id... +I (13154) modbus: ok +I (13154) modbus: add: 0, length: 10 +I (13154) modbus: Read Holding Registers +I (13454) example: expect speed: 0.000000 real_pulses:0 --0 +I (14144) modbus tcp: ModBusSlave_recv() +I (14144) modbus: ModbusSlaveProcess()--------------------------- +I (14144) modbus: check id... +I (14144) modbus: ok +I (14144) modbus: add: 0, length: 10 +I (14144) modbus: Read Holding Registers +I (14454) example: expect speed: 0.000000 real_pulses:0 --0 +I (15214) modbus tcp: ModBusSlave_recv() +I (15214) modbus: ModbusSlaveProcess()--------------------------- +I (15214) modbus: check id... +I (15214) modbus: ok +I (15214) modbus: add: 0, length: 10 +I (15214) modbus: Read Holding Registers +I (15454) example: expect speed: 0.000000 real_pulses:0 --0 +I (16194) modbus tcp: ModBusSlave_recv() +I (16194) modbus: ModbusSlaveProcess()--------------------------- +I (16194) modbus: check id... +I (16194) modbus: ok +I (16194) modbus: add: 0, length: 10 +I (16194) modbus: Read Holding Registers +I (16454) example: expect speed: 0.000000 real_pulses:0 --0 +I (17214) modbus tcp: ModBusSlave_recv() +I (17214) modbus: ModbusSlaveProcess()--------------------------- +I (17224) modbus: check id... +I (17224) modbus: ok +I (17224) modbus: add: 0, length: 10 +I (17224) modbus: Read Holding Registers +I (17454) example: expect speed: 0.000000 real_pulses:0 --0 +I (18244) modbus tcp: ModBusSlave_recv() +I (18244) modbus: ModbusSlaveProcess()--------------------------- +I (18244) modbus: check id... +I (18244) modbus: ok +I (18244) modbus: add: 0, length: 10 +I (18244) modbus: Read Holding Registers +I (18454) example: expect speed: 0.000000 real_pulses:0 --0 +I (19264) modbus tcp: ModBusSlave_recv() +I (19264) modbus: ModbusSlaveProcess()--------------------------- +I (19264) modbus: check id... +I (19264) modbus: ok +I (19264) modbus: add: 0, length: 10 +I (19264) modbus: Read Holding Registers +I (19454) example: expect speed: 0.000000 real_pulses:0 --0 +I (20204) modbus tcp: ModBusSlave_recv() +I (20204) modbus: ModbusSlaveProcess()--------------------------- +I (20204) modbus: check id... +I (20204) modbus: ok +I (20204) modbus: add: 0, length: 10 +I (20204) modbus: Read Holding Registers +I (20454) example: expect speed: 0.000000 real_pulses:0 --0 +I (21224) modbus tcp: ModBusSlave_recv() +I (21224) modbus: ModbusSlaveProcess()--------------------------- +I (21224) modbus: check id... +I (21224) modbus: ok +I (21224) modbus: add: 0, length: 10 +I (21224) modbus: Read Holding Registers +I (21454) example: expect speed: 0.000000 real_pulses:0 --0 +I (22244) modbus tcp: ModBusSlave_recv() +I (22244) modbus: ModbusSlaveProcess()--------------------------- +I (22244) modbus: check id... +I (22244) modbus: ok +I (22244) modbus: add: 0, length: 10 +I (22244) modbus: Read Holding Registers +I (22454) example: expect speed: 0.000000 real_pulses:0 --0 +I (23264) modbus tcp: ModBusSlave_recv() +I (23264) modbus: ModbusSlaveProcess()--------------------------- +I (23264) modbus: check id... +I (23264) modbus: ok +I (23264) modbus: add: 0, length: 10 +I (23264) modbus: Read Holding Registers +I (23454) example: expect speed: 0.000000 real_pulses:0 --0 +I (24274) modbus tcp: ModBusSlave_recv() +I (24284) modbus: ModbusSlaveProcess()--------------------------- +I (24284) modbus: check id... +I (24284) modbus: ok +I (24284) modbus: add: 0, length: 10 +I (24284) modbus: Read Holding Registers +I (24454) example: expect speed: 0.000000 real_pulses:0 --0 +I (25304) modbus tcp: ModBusSlave_recv() +I (25304) modbus: ModbusSlaveProcess()--------------------------- +I (25304) modbus: check id... +I (25304) modbus: ok +I (25304) modbus: add: 0, length: 10 +I (25304) modbus: Read Holding Registers +I (25454) example: expect speed: 0.000000 real_pulses:0 --0 +I (26324) modbus tcp: ModBusSlave_recv() +I (26324) modbus: ModbusSlaveProcess()--------------------------- +I (26324) modbus: check id... +I (26324) modbus: ok +I (26324) modbus: add: 0, length: 10 +I (26324) modbus: Read Holding Registers +I (26454) example: expect speed: 0.000000 real_pulses:0 --0 +I (27074) modbus tcp: ModBusSlave_recv() +I (27074) modbus: ModbusSlaveProcess()--------------------------- +I (27074) modbus: check id... +I (27074) modbus: ok +I (27074) modbus: add: 0, length: 2 +I (27074) modbus: Write Single Register +I (27074) modbus: gwordvar[0]=2 +I (27354) modbus tcp: ModBusSlave_recv() +I (27354) modbus: ModbusSlaveProcess()--------------------------- +I (27354) modbus: check id... +I (27354) modbus: ok +I (27354) modbus: add: 0, length: 10 +I (27354) modbus: Read Holding Registers +I (27454) example: expect speed: 0.000000 real_pulses:0 --2 +I (28324) modbus tcp: ModBusSlave_recv() +I (28324) modbus: ModbusSlaveProcess()--------------------------- +I (28324) modbus: check id... +I (28324) modbus: ok +I (28324) modbus: add: 0, length: 10 +I (28324) modbus: Read Holding Registers +I (28454) example: expect speed: 0.000000 real_pulses:0 --2 +I (29394) modbus tcp: ModBusSlave_recv() +I (29394) modbus: ModbusSlaveProcess()--------------------------- +I (29404) modbus: check id... +I (29404) modbus: ok +I (29404) modbus: add: 0, length: 10 +I (29404) modbus: Read Holding Registers +I (29454) example: expect speed: 0.000000 real_pulses:0 --2 +I (30434) modbus tcp: ModBusSlave_recv() +I (30434) modbus: ModbusSlaveProcess()--------------------------- +I (30434) modbus: check id... +I (30434) modbus: ok +I (30434) modbus: add: 0, length: 10 +I (30434) modbus: Read Holding Registers +I (30454) example: expect speed: 0.000000 real_pulses:0 --2 +I (31444) modbus tcp: ModBusSlave_recv() +I (31454) modbus: ModbusSlaveProcess()--------------------------- +I (31454) modbus: check id... +I (31454) modbus: ok +I (31454) modbus: add: 0, length: 10 +I (31454) modbus: Read Holding Registers +I (31454) example: expect speed: 0.000000 real_pulses:0 --2 +I (32454) example: expect speed: 0.000000 real_pulses:0 --2 +I (32474) modbus tcp: ModBusSlave_recv() +I (32474) modbus: ModbusSlaveProcess()--------------------------- +I (32474) modbus: check id... +I (32474) modbus: ok +I (32474) modbus: add: 0, length: 10 +I (32474) modbus: Read Holding Registers +I (33454) example: expect speed: 0.000000 real_pulses:0 --2 +I (33514) modbus tcp: ModBusSlave_recv() +I (33514) modbus: ModbusSlaveProcess()--------------------------- +I (33514) modbus: check id... +I (33514) modbus: ok +I (33514) modbus: add: 0, length: 10 +I (33514) modbus: Read Holding Registers +I (34424) modbus tcp: ModBusSlave_recv() +I (34424) modbus: ModbusSlaveProcess()--------------------------- +I (34424) modbus: check id... +I (34424) modbus: ok +I (34424) modbus: add: 0, length: 10 +I (34424) modbus: Read Holding Registers +I (34454) example: expect speed: 0.000000 real_pulses:0 --2 +I (35444) modbus tcp: ModBusSlave_recv() +I (35444) modbus: ModbusSlaveProcess()--------------------------- +I (35444) modbus: check id... +I (35444) modbus: ok +I (35444) modbus: add: 0, length: 10 +I (35444) modbus: Read Holding Registers +I (35454) example: expect speed: 0.000000 real_pulses:0 --2 +I (36454) example: expect speed: 0.000000 real_pulses:0 --2 +I (36464) modbus tcp: ModBusSlave_recv() +I (36464) modbus: ModbusSlaveProcess()--------------------------- +I (36464) modbus: check id... +I (36464) modbus: ok +I (36464) modbus: add: 0, length: 10 +I (36464) modbus: Read Holding Registers +I (37454) example: expect speed: 0.000000 real_pulses:0 --2 +I (37494) modbus tcp: ModBusSlave_recv() +I (37494) modbus: ModbusSlaveProcess()--------------------------- +I (37494) modbus: check id... +I (37494) modbus: ok +I (37494) modbus: add: 0, length: 10 +I (37494) modbus: Read Holding Registers +I (38454) example: expect speed: 0.000000 real_pulses:0 --2 +I (38534) modbus tcp: ModBusSlave_recv() +I (38534) modbus: ModbusSlaveProcess()--------------------------- +I (38534) modbus: check id... +I (38534) modbus: ok +I (38534) modbus: add: 0, length: 10 +I (38534) modbus: Read Holding Registers +I (39454) example: expect speed: 0.000000 real_pulses:0 --2 +I (39534) modbus tcp: ModBusSlave_recv() +I (39534) modbus: ModbusSlaveProcess()--------------------------- +I (39534) modbus: check id... +I (39534) modbus: ok +I (39534) modbus: add: 0, length: 10 +I (39534) modbus: Read Holding Registers +I (40454) example: expect speed: 0.000000 real_pulses:0 --2 +I (40564) modbus tcp: ModBusSlave_recv() +I (40564) modbus: ModbusSlaveProcess()--------------------------- +I (40564) modbus: check id... +I (40564) modbus: ok +I (40564) modbus: add: 0, length: 10 +I (40564) modbus: Read Holding Registers +I (41454) example: expect speed: 0.000000 real_pulses:0 --2 +I (41584) modbus tcp: ModBusSlave_recv() +I (41584) modbus: ModbusSlaveProcess()--------------------------- +I (41584) modbus: check id... +I (41584) modbus: ok +I (41584) modbus: add: 0, length: 10 +I (41584) modbus: Read Holding Registers +I (42454) example: expect speed: 0.000000 real_pulses:0 --2 +I (42604) modbus tcp: ModBusSlave_recv() +I (42604) modbus: ModbusSlaveProcess()--------------------------- +I (42604) modbus: check id... +I (42604) modbus: ok +I (42604) modbus: add: 0, length: 10 +I (42604) modbus: Read Holding Registers +I (43454) example: expect speed: 0.000000 real_pulses:0 --2 +I (43634) modbus tcp: ModBusSlave_recv() +I (43634) modbus: ModbusSlaveProcess()--------------------------- +I (43634) modbus: check id... +I (43634) modbus: ok +I (43634) modbus: add: 0, length: 10 +I (43634) modbus: Read Holding Registers +I (44454) example: expect speed: 0.000000 real_pulses:0 --2 +I (44654) modbus tcp: ModBusSlave_recv() +I (44654) modbus: ModbusSlaveProcess()--------------------------- +I (44654) modbus: check id... +I (44654) modbus: ok +I (44654) modbus: add: 0, length: 10 +I (44654) modbus: Read Holding Registers +I (45454) example: expect speed: 0.000000 real_pulses:0 --2 +I (45684) modbus tcp: ModBusSlave_recv() +I (45684) modbus: ModbusSlaveProcess()--------------------------- +I (45684) modbus: check id... +I (45684) modbus: ok +I (45684) modbus: add: 0, length: 10 +I (45684) modbus: Read Holding Registers +I (46454) example: expect speed: 0.000000 real_pulses:0 --2 +I (46714) modbus tcp: ModBusSlave_recv() +I (46714) modbus: ModbusSlaveProcess()--------------------------- +I (46714) modbus: check id... +I (46714) modbus: ok +I (46714) modbus: add: 0, length: 10 +I (46714) modbus: Read Holding Registers +I (47454) example: expect speed: 0.000000 real_pulses:0 --2 +I (47734) modbus tcp: ModBusSlave_recv() +I (47734) modbus: ModbusSlaveProcess()--------------------------- +I (47734) modbus: check id... +I (47734) modbus: ok +I (47734) modbus: add: 0, length: 10 +I (47734) modbus: Read Holding Registers +I (48454) example: expect speed: 0.000000 real_pulses:0 --2 +I (48654) modbus tcp: ModBusSlave_recv() +I (48654) modbus: ModbusSlaveProcess()--------------------------- +I (48654) modbus: check id... +I (48654) modbus: ok +I (48654) modbus: add: 0, length: 10 +I (48654) modbus: Read Holding Registers +I (49454) example: expect speed: 0.000000 real_pulses:0 --2 +I (49674) modbus tcp: ModBusSlave_recv() +I (49674) modbus: ModbusSlaveProcess()--------------------------- +I (49674) modbus: check id... +I (49674) modbus: ok +I (49674) modbus: add: 0, length: 10 +I (49674) modbus: Read Holding Registers +I (50454) example: expect speed: 0.000000 real_pulses:0 --2 +I (50694) modbus tcp: ModBusSlave_recv() +I (50694) modbus: ModbusSlaveProcess()--------------------------- +I (50694) modbus: check id... +I (50694) modbus: ok +I (50694) modbus: add: 0, length: 10 +I (50704) modbus: Read Holding Registers +I (51454) example: expect speed: 0.000000 real_pulses:0 --2 +I (51744) modbus tcp: ModBusSlave_recv() +I (51744) modbus: ModbusSlaveProcess()--------------------------- +I (51744) modbus: check id... +I (51754) modbus: ok +I (51754) modbus: add: 0, length: 10 +I (51754) modbus: Read Holding Registers +I (52454) example: expect speed: 0.000000 real_pulses:0 --2 +I (52754) modbus tcp: ModBusSlave_recv() +I (52754) modbus: ModbusSlaveProcess()--------------------------- +I (52754) modbus: check id... +I (52754) modbus: ok +I (52754) modbus: add: 0, length: 10 +I (52754) modbus: Read Holding Registers +I (53454) example: expect speed: 0.000000 real_pulses:0 --2 +I (53794) modbus tcp: ModBusSlave_recv() +I (53794) modbus: ModbusSlaveProcess()--------------------------- +I (53794) modbus: check id... +I (53794) modbus: ok +I (53794) modbus: add: 0, length: 10 +I (53804) modbus: Read Holding Registers +I (54454) example: expect speed: 0.000000 real_pulses:0 --2 +I (54864) modbus tcp: ModBusSlave_recv() +I (54864) modbus: ModbusSlaveProcess()--------------------------- +I (54864) modbus: check id... +I (54864) modbus: ok +I (54864) modbus: add: 0, length: 10 +I (54864) modbus: Read Holding Registers +I (55454) example: expect speed: 0.000000 real_pulses:0 --2 +I (56024) modbus tcp: ModBusSlave_recv() +I (56024) modbus: ModbusSlaveProcess()--------------------------- +I (56024) modbus: check id... +I (56024) modbus: ok +I (56024) modbus: add: 0, length: 10 +I (56024) modbus: Read Holding Registers +I (56454) example: expect speed: 0.000000 real_pulses:0 --2 +I (57144) modbus tcp: ModBusSlave_recv() +I (57154) modbus: ModbusSlaveProcess()--------------------------- +I (57154) modbus: check id... +I (57154) modbus: ok +I (57154) modbus: add: 0, length: 10 +I (57154) modbus: Read Holding Registers +I (57454) example: expect speed: 0.000000 real_pulses:0 --2 +I (58274) modbus tcp: ModBusSlave_recv() +I (58274) modbus: ModbusSlaveProcess()--------------------------- +I (58274) modbus: check id... +I (58274) modbus: ok +I (58274) modbus: add: 0, length: 10 +I (58274) modbus: Read Holding Registers +I (58454) example: expect speed: 0.000000 real_pulses:0 --2 +I (59404) modbus tcp: ModBusSlave_recv() +I (59404) modbus: ModbusSlaveProcess()--------------------------- +I (59404) modbus: check id... +I (59404) modbus: ok +I (59404) modbus: add: 0, length: 10 +I (59404) modbus: Read Holding Registers +I (59454) example: expect speed: 0.000000 real_pulses:0 --2 +I (60384) modbus tcp: ModBusSlave_recv() +I (60384) modbus: ModbusSlaveProcess()--------------------------- +I (60384) modbus: check id... +I (60384) modbus: ok +I (60384) modbus: add: 0, length: 10 +I (60384) modbus: Read Holding Registers +I (60454) example: expect speed: 0.000000 real_pulses:0 --2 +I (61354) modbus tcp: ModBusSlave_recv() +I (61354) modbus: ModbusSlaveProcess()--------------------------- +I (61354) modbus: check id... +I (61354) modbus: ok +I (61354) modbus: add: 0, length: 10 +I (61354) modbus: Read Holding Registers +I (61454) example: expect speed: 0.000000 real_pulses:0 --2 +I (62384) modbus tcp: ModBusSlave_recv() +I (62384) modbus: ModbusSlaveProcess()--------------------------- +I (62384) modbus: check id... +I (62384) modbus: ok +I (62384) modbus: add: 0, length: 10 +I (62384) modbus: Read Holding Registers +I (62454) example: expect speed: 0.000000 real_pulses:0 --2 +I (63394) modbus tcp: ModBusSlave_recv() +I (63394) modbus: ModbusSlaveProcess()--------------------------- +I (63394) modbus: check id... +I (63394) modbus: ok +I (63394) modbus: add: 0, length: 10 +I (63394) modbus: Read Holding Registers +I (63454) example: expect speed: 0.000000 real_pulses:0 --2 +I (64424) modbus tcp: ModBusSlave_recv() +I (64424) modbus: ModbusSlaveProcess()--------------------------- +I (64424) modbus: check id... +I (64424) modbus: ok +I (64424) modbus: add: 0, length: 10 +I (64424) modbus: Read Holding Registers +I (64454) example: expect speed: 0.000000 real_pulses:0 --2 +I (65444) modbus tcp: ModBusSlave_recv() +I (65444) modbus: ModbusSlaveProcess()--------------------------- +I (65444) modbus: check id... +I (65444) modbus: ok +I (65444) modbus: add: 0, length: 10 +I (65444) modbus: Read Holding Registers +I (65454) example: expect speed: 0.000000 real_pulses:0 --2 +I (66454) example: expect speed: 0.000000 real_pulses:0 --2 +I (66464) modbus tcp: ModBusSlave_recv() +I (66464) modbus: ModbusSlaveProcess()--------------------------- +I (66464) modbus: check id... +I (66464) modbus: ok +I (66464) modbus: add: 0, length: 10 +I (66464) modbus: Read Holding Registers +I (67454) example: expect speed: 0.000000 real_pulses:0 --2 +I (67514) modbus tcp: ModBusSlave_recv() +I (67514) modbus: ModbusSlaveProcess()--------------------------- +I (67524) modbus: check id... +I (67524) modbus: ok +I (67524) modbus: add: 0, length: 10 +I (67524) modbus: Read Holding Registers +I (68454) example: expect speed: 0.000000 real_pulses:0 --2 +I (68514) modbus tcp: ModBusSlave_recv() +I (68514) modbus: ModbusSlaveProcess()--------------------------- +I (68514) modbus: check id... +I (68514) modbus: ok +I (68514) modbus: add: 0, length: 10 +I (68514) modbus: Read Holding Registers +I (69454) example: expect speed: 0.000000 real_pulses:0 --2 +I (69544) modbus tcp: ModBusSlave_recv() +I (69544) modbus: ModbusSlaveProcess()--------------------------- +I (69544) modbus: check id... +I (69544) modbus: ok +I (69544) modbus: add: 0, length: 10 +I (69544) modbus: Read Holding Registers +I (70454) example: expect speed: 0.000000 real_pulses:0 --2 +I (70564) modbus tcp: ModBusSlave_recv() +I (70564) modbus: ModbusSlaveProcess()--------------------------- +I (70564) modbus: check id... +I (70564) modbus: ok +I (70564) modbus: add: 0, length: 10 +I (70564) modbus: Read Holding Registers +I (71454) example: expect speed: 0.000000 real_pulses:0 --2 +I (71594) modbus tcp: ModBusSlave_recv() +I (71594) modbus: ModbusSlaveProcess()--------------------------- +I (71594) modbus: check id... +I (71594) modbus: ok +I (71594) modbus: add: 0, length: 10 +I (71594) modbus: Read Holding Registers +I (72454) example: expect speed: 0.000000 real_pulses:0 --2 +I (72614) modbus tcp: ModBusSlave_recv() +I (72614) modbus: ModbusSlaveProcess()--------------------------- +I (72614) modbus: check id... +I (72614) modbus: ok +I (72614) modbus: add: 0, length: 10 +I (72614) modbus: Read Holding Registers +I (73454) example: expect speed: 0.000000 real_pulses:0 --2 +I (73634) modbus tcp: ModBusSlave_recv() +I (73634) modbus: ModbusSlaveProcess()--------------------------- +I (73634) modbus: check id... +I (73634) modbus: ok +I (73634) modbus: add: 0, length: 10 +I (73634) modbus: Read Holding Registers +I (74454) example: expect speed: 0.000000 real_pulses:0 --2 +I (74554) modbus tcp: ModBusSlave_recv() +I (74554) modbus: ModbusSlaveProcess()--------------------------- +I (74564) modbus: check id... +I (74564) modbus: ok +I (74564) modbus: add: 0, length: 10 +I (74564) modbus: Read Holding Registers +I (75454) example: expect speed: 0.000000 real_pulses:0 --2 +I (75584) modbus tcp: ModBusSlave_recv() +I (75584) modbus: ModbusSlaveProcess()--------------------------- +I (75584) modbus: check id... +I (75584) modbus: ok +I (75584) modbus: add: 0, length: 10 +I (75584) modbus: Read Holding Registers +I (76454) example: expect speed: 0.000000 real_pulses:0 --2 +I (76644) modbus tcp: ModBusSlave_recv() +I (76644) modbus: ModbusSlaveProcess()--------------------------- +I (76644) modbus: check id... +I (76644) modbus: ok +I (76644) modbus: add: 0, length: 10 +I (76644) modbus: Read Holding Registers +I (77354) modbus tcp: ModBusSlave_recv() +I (77354) modbus: ModbusSlaveProcess()--------------------------- +I (77354) modbus: check id... +I (77354) modbus: ok +I (77354) modbus: add: 1, length: 1 +I (77354) modbus: Write Single Register +I (77354) modbus: gwordvar[1]=1 +I (77454) example: expect speed: 2.000000 real_pulses:0 --2 +I (77624) modbus tcp: ModBusSlave_recv() +I (77624) modbus: ModbusSlaveProcess()--------------------------- +I (77634) modbus: check id... +I (77634) modbus: ok +I (77634) modbus: add: 0, length: 10 +I (77634) modbus: Read Holding Registers +I (78454) example: expect speed: 2.000000 real_pulses:0 --2 +I (78654) modbus tcp: ModBusSlave_recv() +I (78654) modbus: ModbusSlaveProcess()--------------------------- +I (78654) modbus: check id... +I (78654) modbus: ok +I (78654) modbus: add: 0, length: 10 +I (78654) modbus: Read Holding Registers +I (79454) example: expect speed: 2.000000 real_pulses:0 --2 +I (79674) modbus tcp: ModBusSlave_recv() +I (79674) modbus: ModbusSlaveProcess()--------------------------- +I (79674) modbus: check id... +I (79674) modbus: ok +I (79674) modbus: add: 0, length: 10 +I (79674) modbus: Read Holding Registers +I (80454) example: expect speed: 2.000000 real_pulses:0 --2 +I (80704) modbus tcp: ModBusSlave_recv() +I (80704) modbus: ModbusSlaveProcess()--------------------------- +I (80704) modbus: check id... +I (80704) modbus: ok +I (80704) modbus: add: 0, length: 10 +I (80704) modbus: Read Holding Registers +I (81454) example: expect speed: 2.000000 real_pulses:0 --2 +I (81764) modbus tcp: ModBusSlave_recv() +I (81764) modbus: ModbusSlaveProcess()--------------------------- +I (81764) modbus: check id... +I (81764) modbus: ok +I (81764) modbus: add: 0, length: 10 +I (81764) modbus: Read Holding Registers +I (82454) example: expect speed: 2.000000 real_pulses:0 --2 +I (82754) modbus tcp: ModBusSlave_recv() +I (82754) modbus: ModbusSlaveProcess()--------------------------- +I (82754) modbus: check id... +I (82754) modbus: ok +I (82754) modbus: add: 0, length: 10 +I (82754) modbus: Read Holding Registers +I (83454) example: expect speed: 2.000000 real_pulses:0 --2 +I (83784) modbus tcp: ModBusSlave_recv() +I (83784) modbus: ModbusSlaveProcess()--------------------------- +I (83784) modbus: check id... +I (83784) modbus: ok +I (83784) modbus: add: 0, length: 10 +I (83784) modbus: Read Holding Registers +I (84454) example: expect speed: 2.000000 real_pulses:0 --2 +I (84834) modbus tcp: ModBusSlave_recv() +I (84834) modbus: ModbusSlaveProcess()--------------------------- +I (84834) modbus: check id... +I (84844) modbus: ok +I (84844) modbus: add: 0, length: 10 +I (84844) modbus: Read Holding Registers +I (85454) example: expect speed: 2.000000 real_pulses:0 --2 +I (85824) modbus tcp: ModBusSlave_recv() +I (85824) modbus: ModbusSlaveProcess()--------------------------- +I (85824) modbus: check id... +I (85824) modbus: ok +I (85824) modbus: add: 0, length: 10 +I (85824) modbus: Read Holding Registers +I (86454) example: expect speed: 2.000000 real_pulses:0 --2 +I (86844) modbus tcp: ModBusSlave_recv() +I (86844) modbus: ModbusSlaveProcess()--------------------------- +I (86844) modbus: check id... +I (86844) modbus: ok +I (86844) modbus: add: 0, length: 10 +I (86844) modbus: Read Holding Registers +I (87454) example: expect speed: 2.000000 real_pulses:0 --2 +I (87764) modbus tcp: ModBusSlave_recv() +I (87764) modbus: ModbusSlaveProcess()--------------------------- +I (87764) modbus: check id... +I (87764) modbus: ok +I (87764) modbus: add: 0, length: 10 +I (87764) modbus: Read Holding Registers +I (88454) example: expect speed: 2.000000 real_pulses:0 --2 +I (88794) modbus tcp: ModBusSlave_recv() +I (88794) modbus: ModbusSlaveProcess()--------------------------- +I (88794) modbus: check id... +I (88794) modbus: ok +I (88794) modbus: add: 0, length: 10 +I (88794) modbus: Read Holding Registers +I (89454) example: expect speed: 2.000000 real_pulses:0 --2 +I (89824) modbus tcp: ModBusSlave_recv() +I (89824) modbus: ModbusSlaveProcess()--------------------------- +I (89824) modbus: check id... +I (89824) modbus: ok +I (89824) modbus: add: 0, length: 10 +I (89824) modbus: Read Holding Registers +I (90454) example: expect speed: 2.000000 real_pulses:0 --2 +I (90874) modbus tcp: ModBusSlave_recv() +I (90884) modbus: ModbusSlaveProcess()--------------------------- +I (90884) modbus: check id... +I (90884) modbus: ok +I (90884) modbus: add: 0, length: 10 +I (90884) modbus: Read Holding Registers +I (91454) example: expect speed: 2.000000 real_pulses:0 --2 +I (91864) modbus tcp: ModBusSlave_recv() +I (91864) modbus: ModbusSlaveProcess()--------------------------- +I (91864) modbus: check id... +I (91864) modbus: ok +I (91864) modbus: add: 0, length: 10 +I (91864) modbus: Read Holding Registers +I (92454) example: expect speed: 2.000000 real_pulses:0 --2 +I (92894) modbus tcp: ModBusSlave_recv() +I (92894) modbus: ModbusSlaveProcess()--------------------------- +I (92894) modbus: check id... +I (92894) modbus: ok +I (92894) modbus: add: 0, length: 10 +I (92894) modbus: Read Holding Registers +I (93454) example: expect speed: 2.000000 real_pulses:0 --2 +I (93914) modbus tcp: ModBusSlave_recv() +I (93914) modbus: ModbusSlaveProcess()--------------------------- +I (93914) modbus: check id... +I (93914) modbus: ok +I (93914) modbus: add: 0, length: 10 +I (93914) modbus: Read Holding Registers +I (94454) example: expect speed: 2.000000 real_pulses:0 --2 +I (94934) modbus tcp: ModBusSlave_recv() +I (94934) modbus: ModbusSlaveProcess()--------------------------- +I (94934) modbus: check id... +I (94934) modbus: ok +I (94934) modbus: add: 0, length: 10 +I (94934) modbus: Read Holding Registers +I (95454) example: expect speed: 2.000000 real_pulses:0 --2 +I (95954) modbus tcp: ModBusSlave_recv() +I (95954) modbus: ModbusSlaveProcess()--------------------------- +I (95954) modbus: check id... +I (95964) modbus: ok +I (95964) modbus: add: 0, length: 10 +I (95964) modbus: Read Holding Registers +I (96454) example: expect speed: 2.000000 real_pulses:0 --2 +I (97014) modbus tcp: ModBusSlave_recv() +I (97014) modbus: ModbusSlaveProcess()--------------------------- +I (97014) modbus: check id... +I (97014) modbus: ok +I (97014) modbus: add: 0, length: 10 +I (97014) modbus: Read Holding Registers +I (97454) example: expect speed: 2.000000 real_pulses:0 --2 +I (98004) modbus tcp: ModBusSlave_recv() +I (98004) modbus: ModbusSlaveProcess()--------------------------- +I (98004) modbus: check id... +I (98004) modbus: ok +I (98004) modbus: add: 0, length: 10 +I (98004) modbus: Read Holding Registers +I (98454) example: expect speed: 2.000000 real_pulses:0 --2 +I (99034) modbus tcp: ModBusSlave_recv() +I (99034) modbus: ModbusSlaveProcess()--------------------------- +I (99034) modbus: check id... +I (99034) modbus: ok +I (99034) modbus: add: 0, length: 10 +I (99034) modbus: Read Holding Registers +I (99454) example: expect speed: 2.000000 real_pulses:0 --2 +I (100054) modbus tcp: ModBusSlave_recv() +I (100054) modbus: ModbusSlaveProcess()--------------------------- +I (100054) modbus: check id... +I (100054) modbus: ok +I (100054) modbus: add: 0, length: 10 +I (100054) modbus: Read Holding Registers +I (100454) example: expect speed: 2.000000 real_pulses:0 --2 +I (100974) modbus tcp: ModBusSlave_recv() +I (100974) modbus: ModbusSlaveProcess()--------------------------- +I (100974) modbus: check id... +I (100974) modbus: ok +I (100974) modbus: add: 0, length: 10 +I (100974) modbus: Read Holding Registers +I (101454) example: expect speed: 2.000000 real_pulses:0 --2 +I (102004) modbus tcp: ModBusSlave_recv() +I (102004) modbus: ModbusSlaveProcess()--------------------------- +I (102004) modbus: check id... +I (102004) modbus: ok +I (102004) modbus: add: 0, length: 10 +I (102004) modbus: Read Holding Registers +I (102454) example: expect speed: 2.000000 real_pulses:0 --2 +I (103024) modbus tcp: ModBusSlave_recv() +I (103034) modbus: ModbusSlaveProcess()--------------------------- +I (103034) modbus: check id... +I (103034) modbus: ok +I (103034) modbus: add: 0, length: 10 +I (103034) modbus: Read Holding Registers +I (103454) example: expect speed: 2.000000 real_pulses:0 --2 +I (104054) modbus tcp: ModBusSlave_recv() +I (104054) modbus: ModbusSlaveProcess()--------------------------- +I (104054) modbus: check id... +I (104054) modbus: ok +I (104054) modbus: add: 0, length: 10 +I (104054) modbus: Read Holding Registers +I (104454) example: expect speed: 2.000000 real_pulses:0 --2 +I (105074) modbus tcp: ModBusSlave_recv() +I (105074) modbus: ModbusSlaveProcess()--------------------------- +I (105074) modbus: check id... +I (105074) modbus: ok +I (105074) modbus: add: 0, length: 10 +I (105074) modbus: Read Holding Registers +I (105454) example: expect speed: 2.000000 real_pulses:0 --2 +I (106094) modbus tcp: ModBusSlave_recv() +I (106094) modbus: ModbusSlaveProcess()--------------------------- +I (106094) modbus: check id... +I (106094) modbus: ok +I (106094) modbus: add: 0, length: 10 +I (106094) modbus: Read Holding Registers +I (106454) example: expect speed: 2.000000 real_pulses:0 --2 +I (107124) modbus tcp: ModBusSlave_recv() +I (107124) modbus: ModbusSlaveProcess()--------------------------- +I (107124) modbus: check id... +I (107124) modbus: ok +I (107124) modbus: add: 0, length: 10 +I (107124) modbus: Read Holding Registers +I (107454) example: expect speed: 2.000000 real_pulses:0 --2 +I (108144) modbus tcp: ModBusSlave_recv() +I (108144) modbus: ModbusSlaveProcess()--------------------------- +I (108144) modbus: check id... +I (108144) modbus: ok +I (108144) modbus: add: 0, length: 10 +I (108144) modbus: Read Holding Registers +I (108454) example: expect speed: 2.000000 real_pulses:0 --2 +I (109164) modbus tcp: ModBusSlave_recv() +I (109164) modbus: ModbusSlaveProcess()----------------- \ No newline at end of file diff --git a/build/log/idf_py_stdout_output_21176 b/build/log/idf_py_stdout_output_21176 new file mode 100644 index 0000000..7d4b84e --- /dev/null +++ b/build/log/idf_py_stdout_output_21176 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 428.1 kbit/s)... +Hash of data verified. +Compressed 732048 bytes to 462350... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3e... (6 %) +Writing at 0x00026289... (10 %) +Writing at 0x0002b793... (13 %) +Writing at 0x00035c1f... (17 %) +Writing at 0x0003b9c3... (20 %) +Writing at 0x00041524... (24 %) +Writing at 0x0004767d... (27 %) +Writing at 0x0004dcb3... (31 %) +Writing at 0x00053635... (34 %) +Writing at 0x00058c6f... (37 %) +Writing at 0x0005e4bc... (41 %) +Writing at 0x00063ddd... (44 %) +Writing at 0x00069963... (48 %) +Writing at 0x0006f58c... (51 %) +Writing at 0x000743eb... (55 %) +Writing at 0x000794c2... (58 %) +Writing at 0x0007e517... (62 %) +Writing at 0x0008380f... (65 %) +Writing at 0x00088d05... (68 %) +Writing at 0x0008e77b... (72 %) +Writing at 0x00093f0e... (75 %) +Writing at 0x000998b0... (79 %) +Writing at 0x0009f8bf... (82 %) +Writing at 0x000a510a... (86 %) +Writing at 0x000aae76... (89 %) +Writing at 0x000b4bd9... (93 %) +Writing at 0x000bb8ff... (96 %) +Writing at 0x000c11cd... (100 %) +Wrote 732048 bytes (462350 compressed) at 0x00010000 in 7.8 seconds (effective 753.7 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 494.5 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_2336 b/build/log/idf_py_stdout_output_2336 new file mode 100644 index 0000000..2cc79f2 --- /dev/null +++ b/build/log/idf_py_stdout_output_2336 @@ -0,0 +1,34 @@ +[1/13] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj +[2/13] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[3/11] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c: In function 'ModbusSlaveProcess': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:144:11: warning: unused variable 'tlv_len' [-Wunused-variable] + 144 | uint8_t tlv_len = 0; + | ^~~~~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:142:12: warning: unused variable 'pVar' [-Wunused-variable] + 142 | uint8_t *pVar; + | ^~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:138:12: warning: unused variable 'temp_cnt' [-Wunused-variable] + 138 | uint16_t temp_cnt; + | ^~~~~~~~ +[4/11] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[5/11] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj +[6/11] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[7/11] Linking C static library esp-idf\main\libmain.a +[8/11] Generating ld/sections.ld +[9/11] Linking CXX executable wifi_station.elf +FAILED: wifi_station.elf +cmd.exe /C "cd . && E:\Espressif\tools\xtensa-esp32s3-elf\esp-2022r1-11.2.0\xtensa-esp32s3-elf\bin\xtensa-esp32s3-elf-g++.exe -mlongcalls @CMakeFiles\wifi_station.elf.rsp -o wifi_station.elf && cd ." +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ld.exe: esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj):(.literal.bdc_control_main+0x94): undefined reference to `bdc_motor_new_mcpwm_device' +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/bin/ld.exe: esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj): in function `bdc_control_main': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:144: undefined reference to `bdc_motor_new_mcpwm_device' +collect2.exe: error: ld returned 1 exit status +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_2416 b/build/log/idf_py_stdout_output_2416 new file mode 100644 index 0000000..4e3ed60 --- /dev/null +++ b/build/log/idf_py_stdout_output_2416 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b80 bytes. Smallest app partition is 0x100000 bytes. 0x4d480 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:57:c4:a4 +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 421.3 kbit/s)... +Hash of data verified. +Compressed 732032 bytes to 462367... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd42... (6 %) +Writing at 0x0002627e... (10 %) +Writing at 0x0002b7ac... (13 %) +Writing at 0x00035bf1... (17 %) +Writing at 0x0003b99c... (20 %) +Writing at 0x00041505... (24 %) +Writing at 0x00047656... (27 %) +Writing at 0x0004dc94... (31 %) +Writing at 0x0005361d... (34 %) +Writing at 0x00058c53... (37 %) +Writing at 0x0005e49e... (41 %) +Writing at 0x00063daa... (44 %) +Writing at 0x0006993b... (48 %) +Writing at 0x0006f553... (51 %) +Writing at 0x000743c0... (55 %) +Writing at 0x0007948e... (58 %) +Writing at 0x0007e4eb... (62 %) +Writing at 0x000837e6... (65 %) +Writing at 0x00088cd4... (68 %) +Writing at 0x0008e751... (72 %) +Writing at 0x00093edc... (75 %) +Writing at 0x00099884... (79 %) +Writing at 0x0009f88f... (82 %) +Writing at 0x000a50d3... (86 %) +Writing at 0x000aae5a... (89 %) +Writing at 0x000b4b1b... (93 %) +Writing at 0x000bb8ca... (96 %) +Writing at 0x000c11a5... (100 %) +Wrote 732032 bytes (462367 compressed) at 0x00010000 in 7.8 seconds (effective 753.1 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 491.5 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_288 b/build/log/idf_py_stdout_output_288 new file mode 100644 index 0000000..6c5385a --- /dev/null +++ b/build/log/idf_py_stdout_output_288 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2ba0 bytes. Smallest app partition is 0x100000 bytes. 0x4d460 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.4 seconds (effective 438.0 kbit/s)... +Hash of data verified. +Compressed 732064 bytes to 462367... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd42... (6 %) +Writing at 0x0002628b... (10 %) +Writing at 0x0002b791... (13 %) +Writing at 0x00035bfc... (17 %) +Writing at 0x0003b9a9... (20 %) +Writing at 0x00041509... (24 %) +Writing at 0x00047679... (27 %) +Writing at 0x0004dcaa... (31 %) +Writing at 0x00053615... (34 %) +Writing at 0x00058c56... (37 %) +Writing at 0x0005e498... (41 %) +Writing at 0x00063da9... (44 %) +Writing at 0x00069947... (48 %) +Writing at 0x0006f56d... (51 %) +Writing at 0x000743da... (55 %) +Writing at 0x000794a6... (58 %) +Writing at 0x0007e509... (62 %) +Writing at 0x00083805... (65 %) +Writing at 0x00088cf8... (68 %) +Writing at 0x0008e768... (72 %) +Writing at 0x00093ef5... (75 %) +Writing at 0x0009989d... (79 %) +Writing at 0x0009f8ad... (82 %) +Writing at 0x000a50f6... (86 %) +Writing at 0x000aae37... (89 %) +Writing at 0x000b4bb0... (93 %) +Writing at 0x000bb8f4... (96 %) +Writing at 0x000c11ce... (100 %) +Wrote 732064 bytes (462367 compressed) at 0x00010000 in 7.7 seconds (effective 762.9 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 491.3 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_5032 b/build/log/idf_py_stdout_output_5032 new file mode 100644 index 0000000..383f11a --- /dev/null +++ b/build/log/idf_py_stdout_output_5032 @@ -0,0 +1,5460 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x0 (DOWNLOAD(USB/UART0)) +Saved PC:0x40041a76 +waiting for download +I (2856) wifi station: retry to connect to the AP +I (2856) wifi station: connect to the AP fail +I (4156) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (5196) wifi:state: init -> auth (b0) +I (5206) wifi:state: auth -> assoc (0) +I (5216) wifi:state: assoc -> run (10) +I (5246) wifi:connected with CMCC-xRSZ, aid = 129, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (5246) wifi:security: WPA2-PSK, phy: bgn, rssi: -89 +I (5256) wifi:pm start, type: 1 + +I (5256) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (5266) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (5276) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (5286) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (11266) esp_netif_handlers: sta ip: 192.168.1.107, mask: 255.255.255.0, gw: 192.168.1.1 +I (11266) wifi station: got ip:192.168.1.107 +I (11266) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (11266) modbus tcp: ModBusTCPSlave_init() +I (11266) example: Create DC motor +I (11266) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (11266) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (11266) example: Init pcnt driver to decode rotary signal +I (11266) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (11266) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (11266) gpio: GPIO[38]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (11266) gpio: GPIO[39]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (11266) example: Create PID control block +I (11266) example: Create a timer to do PID calculation periodically +I (11266) example: Enable motor +I (11266) example: Forward motor +I (11276) example: Start motor speed loop +I (11286) example: expect speed: 0.000000 real_pulses:0 +I (11286) example: new speed:399.000000 +I (11296) example: expect speed: 0.000000 real_pulses:0 +I (11296) example: new speed:399.000000 +I (11306) example: expect speed: 0.000000 real_pulses:0 +I (11306) example: new speed:399.000000 +I (11316) example: expect speed: 0.000000 real_pulses:0 +I (11316) example: new speed:399.000000 +I (11326) example: expect speed: 0.000000 real_pulses:0 +I (11326) example: new speed:399.000000 +I (11336) example: expect speed: 0.000000 real_pulses:0 +I (11336) example: new speed:399.000000 +I (11346) example: expect speed: 0.000000 real_pulses:0 +I (11346) example: new speed:399.000000 +I (11356) example: expect speed: 0.000000 real_pulses:0 +I (11356) example: new speed:399.000000 +I (11366) example: expect speed: 0.000000 real_pulses:0 +I (11366) example: new speed:399.000000 +I (11376) example: expect speed: 0.000000 real_pulses:0 +I (11376) example: new speed:399.000000 +I (11386) example: expect speed: 0.000000 real_pulses:0 +I (11386) example: new speed:399.000000 +I (11396) example: expect speed: 0.000000 real_pulses:0 +I (11396) example: new speed:399.000000 +I (11406) example: expect speed: 0.000000 real_pulses:0 +I (11406) example: new speed:399.000000 +I (11416) example: expect speed: 0.000000 real_pulses:0 +I (11416) example: new speed:399.000000 +I (11426) example: expect speed: 0.000000 real_pulses:0 +I (11426) example: new speed:399.000000 +I (11436) example: expect speed: 0.000000 real_pulses:0 +I (11436) example: new speed:399.000000 +I (11446) example: expect speed: 0.000000 real_pulses:0 +I (11446) example: new speed:399.000000 +I (11456) example: expect speed: 0.000000 real_pulses:0 +I (11456) example: new speed:399.000000 +I (11466) example: expect speed: 0.000000 real_pulses:0 +I (11466) example: new speed:399.000000 +I (11476) example: expect speed: 0.000000 real_pulses:0 +I (11476) example: new speed:399.000000 +I (11486) example: expect speed: 0.000000 real_pulses:0 +I (11486) example: new speed:399.000000 +I (11496) example: expect speed: 0.000000 real_pulses:0 +I (11496) example: new speed:399.000000 +I (11506) example: expect speed: 0.000000 real_pulses:0 +I (11506) example: new speed:399.000000 +I (11516) example: expect speed: 0.000000 real_pulses:0 +I (11516) example: new speed:399.000000 +I (11526) example: expect speed: 0.000000 real_pulses:0 +I (11526) example: new speed:399.000000 +I (11536) example: expect speed: 0.000000 real_pulses:0 +I (11536) example: new speed:399.000000 +I (11546) example: expect speed: 0.000000 real_pulses:0 +I (11546) example: new speed:399.000000 +I (11556) example: expect speed: 0.000000 real_pulses:0 +I (11556) example: new speed:399.000000 +I (11566) example: expect speed: 0.000000 real_pulses:0 +I (11566) example: new speed:399.000000 +I (11576) example: expect speed: 0.000000 real_pulses:0 +I (11576) example: new speed:399.000000 +I (11586) example: expect speed: 0.000000 real_pulses:0 +I (11586) example: new speed:399.000000 +I (11596) example: expect speed: 0.000000 real_pulses:0 +I (11596) example: new speed:399.000000 +I (11606) example: expect speed: 0.000000 real_pulses:0 +I (11606) example: new speed:399.000000 +I (11616) example: expect speed: 0.000000 real_pulses:0 +I (11616) example: new speed:399.000000 +I (11626) example: expect speed: 0.000000 real_pulses:0 +I (11626) example: new speed:399.000000 +I (11636) example: expect speed: 0.000000 real_pulses:0 +I (11636) example: new speed:399.000000 +I (11646) example: expect speed: 0.000000 real_pulses:0 +I (11646) example: new speed:399.000000 +I (11656) example: expect speed: 0.000000 real_pulses:0 +I (11656) example: new speed:399.000000 +I (11666) example: expect speed: 0.000000 real_pulses:0 +I (11666) example: new speed:399.000000 +I (11676) example: expect speed: 0.000000 real_pulses:0 +I (11676) example: new speed:399.000000 +I (11686) example: expect speed: 0.000000 real_pulses:0 +I (11686) example: new speed:399.000000 +I (11696) example: expect speed: 0.000000 real_pulses:0 +I (11696) example: new speed:399.000000 +I (11706) example: expect speed: 0.000000 real_pulses:0 +I (11706) example: new speed:399.000000 +I (11716) example: expect speed: 0.000000 real_pulses:0 +I (11716) example: new speed:399.000000 +I (11726) example: expect speed: 0.000000 real_pulses:0 +I (11726) example: new speed:399.000000 +I (11736) example: expect speed: 0.000000 real_pulses:0 +I (11736) example: new speed:399.000000 +I (11746) example: expect speed: 0.000000 real_pulses:0 +I (11746) example: new speed:399.000000 +I (11756) example: expect speed: 0.000000 real_pulses:0 +I (11756) example: new speed:399.000000 +I (11766) example: expect speed: 0.000000 real_pulses:0 +I (11766) example: new speed:399.000000 +I (11776) example: expect speed: 0.000000 real_pulses:0 +I (11776) example: new speed:399.000000 +I (11786) example: expect speed: 0.000000 real_pulses:0 +I (11786) example: new speed:399.000000 +I (11796) example: expect speed: 0.000000 real_pulses:0 +I (11796) example: new speed:399.000000 +I (11806) example: expect speed: 0.000000 real_pulses:0 +I (11806) example: new speed:399.000000 +I (11816) example: expect speed: 0.000000 real_pulses:0 +I (11816) example: new speed:399.000000 +I (11826) example: expect speed: 0.000000 real_pulses:0 +I (11826) example: new speed:399.000000 +I (11836) example: expect speed: 0.000000 real_pulses:0 +I (11836) example: new speed:399.000000 +I (11846) example: expect speed: 0.000000 real_pulses:0 +I (11846) example: new speed:399.000000 +I (11856) example: expect speed: 0.000000 real_pulses:0 +I (11856) example: new speed:399.000000 +I (11866) example: expect speed: 0.000000 real_pulses:0 +I (11866) example: new speed:399.000000 +I (11876) example: expect speed: 0.000000 real_pulses:0 +I (11876) example: new speed:399.000000 +I (11886) example: expect speed: 0.000000 real_pulses:0 +I (11886) example: new speed:399.000000 +I (11896) example: expect speed: 0.000000 real_pulses:0 +I (11896) example: new speed:399.000000 +I (11906) example: expect speed: 0.000000 real_pulses:0 +I (11906) example: new speed:399.000000 +I (11916) example: expect speed: 0.000000 real_pulses:0 +I (11916) example: new speed:399.000000 +I (11926) example: expect speed: 0.000000 real_pulses:0 +I (11926) example: new speed:399.000000 +I (11936) example: expect speed: 0.000000 real_pulses:0 +I (11936) example: new speed:399.000000 +I (11946) example: expect speed: 0.000000 real_pulses:0 +I (11946) example: new speed:399.000000 +I (11956) example: expect speed: 0.000000 real_pulses:0 +I (11956) example: new speed:399.000000 +I (11966) example: expect speed: 0.000000 real_pulses:0 +I (11966) example: new speed:399.000000 +I (11976) example: expect speed: 0.000000 real_pulses:0 +I (11976) example: new speed:399.000000 +I (11986) example: expect speed: 0.000000 real_pulses:0 +I (11986) example: new speed:399.000000 +I (11996) example: expect speed: 0.000000 real_pulses:0 +I (11996) example: new speed:399.000000 +I (12006) example: expect speed: 0.000000 real_pulses:0 +I (12006) example: new speed:399.000000 +I (12016) example: expect speed: 0.000000 real_pulses:0 +I (12016) example: new speed:399.000000 +I (12026) example: expect speed: 0.000000 real_pulses:0 +I (12026) example: new speed:399.000000 +I (12036) example: expect speed: 0.000000 real_pulses:0 +I (12036) example: new speed:399.000000 +I (12046) example: expect speed: 0.000000 real_pulses:0 +I (12046) example: new speed:399.000000 +I (12056) example: expect speed: 0.000000 real_pulses:0 +I (12056) example: new speed:399.000000 +I (12066) example: expect speed: 0.000000 real_pulses:0 +I (12066) example: new speed:399.000000 +I (12076) example: expect speed: 0.000000 real_pulses:0 +I (12076) example: new speed:399.000000 +I (12086) example: expect speed: 0.000000 real_pulses:0 +I (12086) example: new speed:399.000000 +I (12096) example: expect speed: 0.000000 real_pulses:0 +I (12096) example: new speed:399.000000 +I (12106) example: expect speed: 0.000000 real_pulses:0 +I (12106) example: new speed:399.000000 +I (12116) example: expect speed: 0.000000 real_pulses:0 +I (12116) example: new speed:399.000000 +I (12126) example: expect speed: 0.000000 real_pulses:0 +I (12126) example: new speed:399.000000 +I (12136) example: expect speed: 0.000000 real_pulses:0 +I (12136) example: new speed:399.000000 +I (12146) example: expect speed: 0.000000 real_pulses:0 +I (12146) example: new speed:399.000000 +I (12156) example: expect speed: 0.000000 real_pulses:0 +I (12156) example: new speed:399.000000 +I (12166) example: expect speed: 0.000000 real_pulses:0 +I (12166) example: new speed:399.000000 +I (12176) example: expect speed: 0.000000 real_pulses:0 +I (12176) example: new speed:399.000000 +I (12186) example: expect speed: 0.000000 real_pulses:0 +I (12186) example: new speed:399.000000 +I (12196) example: expect speed: 0.000000 real_pulses:0 +I (12196) example: new speed:399.000000 +I (12206) example: expect speed: 0.000000 real_pulses:0 +I (12206) example: new speed:399.000000 +I (12216) example: expect speed: 0.000000 real_pulses:0 +I (12216) example: new speed:399.000000 +I (12226) example: expect speed: 0.000000 real_pulses:0 +I (12226) example: new speed:399.000000 +I (12236) example: expect speed: 0.000000 real_pulses:0 +I (12236) example: new speed:399.000000 +I (12246) example: expect speed: 0.000000 real_pulses:0 +I (12246) example: new speed:399.000000 +I (12256) example: expect speed: 0.000000 real_pulses:0 +I (12256) example: new speed:399.000000 +I (12266) example: expect speed: 0.000000 real_pulses:0 +I (12266) example: new speed:399.000000 +I (12276) example: expect speed: 0.000000 real_pulses:0 +I (12276) example: new speed:399.000000 +I (12286) example: expect speed: 0.000000 real_pulses:0 +I (12286) example: new speed:399.000000 +I (12296) example: expect speed: 0.000000 real_pulses:0 +I (12296) example: new speed:399.000000 +I (12306) example: expect speed: 0.000000 real_pulses:0 +I (12306) example: new speed:399.000000 +I (12316) example: expect speed: 0.000000 real_pulses:0 +I (12316) example: new speed:399.000000 +I (12326) example: expect speed: 0.000000 real_pulses:0 +I (12326) example: new speed:399.000000 +I (12336) example: expect speed: 0.000000 real_pulses:0 +I (12336) example: new speed:399.000000 +I (12346) example: expect speed: 0.000000 real_pulses:0 +I (12346) example: new speed:399.000000 +I (12356) example: expect speed: 0.000000 real_pulses:0 +I (12356) example: new speed:399.000000 +I (12366) example: expect speed: 0.000000 real_pulses:0 +I (12366) example: new speed:399.000000 +I (12376) example: expect speed: 0.000000 real_pulses:0 +I (12376) example: new speed:399.000000 +I (12386) example: expect speed: 0.000000 real_pulses:0 +I (12386) example: new speed:399.000000 +I (12396) example: expect speed: 0.000000 real_pulses:0 +I (12396) example: new speed:399.000000 +I (12406) example: expect speed: 0.000000 real_pulses:0 +I (12406) example: new speed:399.000000 +I (12416) example: expect speed: 0.000000 real_pulses:0 +I (12416) example: new speed:399.000000 +I (12426) example: expect speed: 0.000000 real_pulses:0 +I (12426) example: new speed:399.000000 +I (12436) example: expect speed: 0.000000 real_pulses:0 +I (12436) example: new speed:399.000000 +I (12446) example: expect speed: 0.000000 real_pulses:0 +I (12446) example: new speed:399.000000 +I (12456) example: expect speed: 0.000000 real_pulses:0 +I (12456) example: new speed:399.000000 +I (12466) example: expect speed: 0.000000 real_pulses:0 +I (12466) example: new speed:399.000000 +I (12476) example: expect speed: 0.000000 real_pulses:0 +I (12476) example: new speed:399.000000 +I (12486) example: expect speed: 0.000000 real_pulses:0 +I (12486) example: new speed:399.000000 +I (12496) example: expect speed: 0.000000 real_pulses:0 +I (12496) example: new speed:399.000000 +I (12506) example: expect speed: 0.000000 real_pulses:0 +I (12506) example: new speed:399.000000 +I (12516) example: expect speed: 0.000000 real_pulses:0 +I (12516) example: new speed:399.000000 +I (12526) example: expect speed: 0.000000 real_pulses:0 +I (12526) example: new speed:399.000000 +I (12536) example: expect speed: 0.000000 real_pulses:0 +I (12536) example: new speed:399.000000 +I (12546) example: expect speed: 0.000000 real_pulses:0 +I (12546) example: new speed:399.000000 +I (12556) example: expect speed: 0.000000 real_pulses:0 +I (12556) example: new speed:399.000000 +I (12566) example: expect speed: 0.000000 real_pulses:0 +I (12566) example: new speed:399.000000 +I (12576) example: expect speed: 0.000000 real_pulses:0 +I (12576) example: new speed:399.000000 +I (12586) example: expect speed: 0.000000 real_pulses:0 +I (12586) example: new speed:399.000000 +I (12596) example: expect speed: 0.000000 real_pulses:0 +I (12596) example: new speed:399.000000 +I (12606) example: expect speed: 0.000000 real_pulses:0 +I (12606) example: new speed:399.000000 +I (12616) example: expect speed: 0.000000 real_pulses:0 +I (12616) example: new speed:399.000000 +I (12626) example: expect speed: 0.000000 real_pulses:0 +I (12626) example: new speed:399.000000 +I (12636) example: expect speed: 0.000000 real_pulses:0 +I (12636) example: new speed:399.000000 +I (12646) example: expect speed: 0.000000 real_pulses:0 +I (12646) example: new speed:399.000000 +I (12656) example: expect speed: 0.000000 real_pulses:0 +I (12656) example: new speed:399.000000 +I (12666) example: expect speed: 0.000000 real_pulses:0 +I (12666) example: new speed:399.000000 +I (12676) example: expect speed: 0.000000 real_pulses:0 +I (12676) example: new speed:399.000000 +I (12686) example: expect speed: 0.000000 real_pulses:0 +I (12686) example: new speed:399.000000 +I (12696) example: expect speed: 0.000000 real_pulses:0 +I (12696) example: new speed:399.000000 +I (12706) example: expect speed: 0.000000 real_pulses:0 +I (12706) example: new speed:399.000000 +I (12716) example: expect speed: 0.000000 real_pulses:0 +I (12716) example: new speed:399.000000 +I (12726) example: expect speed: 0.000000 real_pulses:0 +I (12726) example: new speed:399.000000 +I (12736) example: expect speed: 0.000000 real_pulses:0 +I (12736) example: new speed:399.000000 +I (12746) example: expect speed: 0.000000 real_pulses:0 +I (12746) example: new speed:399.000000 +I (12756) example: expect speed: 0.000000 real_pulses:0 +I (12756) example: new speed:399.000000 +I (12766) example: expect speed: 0.000000 real_pulses:0 +I (12766) example: new speed:399.000000 +I (12776) example: expect speed: 0.000000 real_pulses:0 +I (12776) example: new speed:399.000000 +I (12786) example: expect speed: 0.000000 real_pulses:0 +I (12786) example: new speed:399.000000 +I (12796) example: expect speed: 0.000000 real_pulses:0 +I (12796) example: new speed:399.000000 +I (12806) example: expect speed: 0.000000 real_pulses:0 +I (12806) example: new speed:399.000000 +I (12816) example: expect speed: 0.000000 real_pulses:0 +I (12816) example: new speed:399.000000 +I (12826) example: expect speed: 0.000000 real_pulses:0 +I (12826) example: new speed:399.000000 +I (12836) example: expect speed: 0.000000 real_pulses:0 +I (12836) example: new speed:399.000000 +I (12846) example: expect speed: 0.000000 real_pulses:0 +I (12846) example: new speed:399.000000 +I (12856) example: expect speed: 0.000000 real_pulses:0 +I (12856) example: new speed:399.000000 +I (12866) example: expect speed: 0.000000 real_pulses:0 +I (12866) example: new speed:399.000000 +I (12876) example: expect speed: 0.000000 real_pulses:0 +I (12876) example: new speed:399.000000 +I (12886) example: expect speed: 0.000000 real_pulses:0 +I (12886) example: new speed:399.000000 +I (12896) example: expect speed: 0.000000 real_pulses:0 +I (12896) example: new speed:399.000000 +I (12906) example: expect speed: 0.000000 real_pulses:0 +I (12906) example: new speed:399.000000 +I (12916) example: expect speed: 0.000000 real_pulses:0 +I (12916) example: new speed:399.000000 +I (12926) example: expect speed: 0.000000 real_pulses:0 +I (12926) example: new speed:399.000000 +I (12936) example: expect speed: 0.000000 real_pulses:0 +I (12936) example: new speed:399.000000 +I (12946) example: expect speed: 0.000000 real_pulses:0 +I (12946) example: new speed:399.000000 +I (12956) example: expect speed: 0.000000 real_pulses:0 +I (12956) example: new speed:399.000000 +I (12966) example: expect speed: 0.000000 real_pulses:0 +I (12966) example: new speed:399.000000 +I (12976) example: expect speed: 0.000000 real_pulses:0 +I (12976) example: new speed:399.000000 +I (12986) example: expect speed: 0.000000 real_pulses:0 +I (12986) example: new speed:399.000000 +I (12996) example: expect speed: 0.000000 real_pulses:0 +I (12996) example: new speed:399.000000 +I (13006) example: expect speed: 0.000000 real_pulses:0 +I (13006) example: new speed:399.000000 +I (13016) example: expect speed: 0.000000 real_pulses:0 +I (13016) example: new speed:399.000000 +I (13026) example: expect speed: 0.000000 real_pulses:0 +I (13026) example: new speed:399.000000 +I (13036) example: expect speed: 0.000000 real_pulses:0 +I (13036) example: new speed:399.000000 +I (13046) example: expect speed: 0.000000 real_pulses:0 +I (13046) example: new speed:399.000000 +I (13056) example: expect speed: 0.000000 real_pulses:0 +I (13056) example: new speed:399.000000 +I (13066) example: expect speed: 0.000000 real_pulses:0 +I (13066) example: new speed:399.000000 +I (13076) example: expect speed: 0.000000 real_pulses:0 +I (13076) example: new speed:399.000000 +I (13086) example: expect speed: 0.000000 real_pulses:0 +I (13086) example: new speed:399.000000 +I (13096) example: expect speed: 0.000000 real_pulses:0 +I (13096) example: new speed:399.000000 +I (13106) example: expect speed: 0.000000 real_pulses:0 +I (13106) example: new speed:399.000000 +I (13116) example: expect speed: 0.000000 real_pulses:0 +I (13116) example: new speed:399.000000 +I (13126) example: expect speed: 0.000000 real_pulses:0 +I (13126) example: new speed:399.000000 +I (13136) example: expect speed: 0.000000 real_pulses:0 +I (13136) example: new speed:399.000000 +I (13146) example: expect speed: 0.000000 real_pulses:0 +I (13146) example: new speed:399.000000 +I (13156) example: expect speed: 0.000000 real_pulses:0 +I (13156) example: new speed:399.000000 +I (13166) example: expect speed: 0.000000 real_pulses:0 +I (13166) example: new speed:399.000000 +I (13176) example: expect speed: 0.000000 real_pulses:0 +I (13176) example: new speed:399.000000 +I (13186) example: expect speed: 0.000000 real_pulses:0 +I (13186) example: new speed:399.000000 +I (13196) example: expect speed: 0.000000 real_pulses:0 +I (13196) example: new speed:399.000000 +I (13206) example: expect speed: 0.000000 real_pulses:0 +I (13206) example: new speed:399.000000 +I (13216) example: expect speed: 0.000000 real_pulses:0 +I (13216) example: new speed:399.000000 +I (13226) example: expect speed: 0.000000 real_pulses:0 +I (13226) example: new speed:399.000000 +I (13236) example: expect speed: 0.000000 real_pulses:0 +I (13236) example: new speed:399.000000 +I (13246) example: expect speed: 0.000000 real_pulses:0 +I (13246) example: new speed:399.000000 +I (13256) example: expect speed: 0.000000 real_pulses:0 +I (13256) example: new speed:399.000000 +I (13266) example: expect speed: 0.000000 real_pulses:0 +I (13266) example: new speed:399.000000 +I (13276) example: expect speed: 0.000000 real_pulses:0 +I (13276) example: new speed:399.000000 +I (13286) example: expect speed: 0.000000 real_pulses:0 +I (13286) example: new speed:399.000000 +I (13296) example: expect speed: 0.000000 real_pulses:0 +I (13296) example: new speed:399.000000 +I (13306) example: expect speed: 0.000000 real_pulses:0 +I (13306) example: new speed:399.000000 +I (13316) example: expect speed: 0.000000 real_pulses:0 +I (13316) example: new speed:399.000000 +I (13326) example: expect speed: 0.000000 real_pulses:0 +I (13326) example: new speed:399.000000 +I (13336) example: expect speed: 0.000000 real_pulses:0 +I (13336) example: new speed:399.000000 +I (13346) example: expect speed: 0.000000 real_pulses:0 +I (13346) example: new speed:399.000000 +I (13356) example: expect speed: 0.000000 real_pulses:0 +I (13356) example: new speed:399.000000 +I (13366) example: expect speed: 0.000000 real_pulses:0 +I (13366) example: new speed:399.000000 +I (13376) example: expect speed: 0.000000 real_pulses:0 +I (13376) example: new speed:399.000000 +I (13386) example: expect speed: 0.000000 real_pulses:0 +I (13386) example: new speed:399.000000 +I (13396) example: expect speed: 0.000000 real_pulses:0 +I (13396) example: new speed:399.000000 +I (13406) example: expect speed: 0.000000 real_pulses:0 +I (13406) example: new speed:399.000000 +I (13416) example: expect speed: 0.000000 real_pulses:0 +I (13416) example: new speed:399.000000 +I (13426) example: expect speed: 0.000000 real_pulses:0 +I (13426) example: new speed:399.000000 +I (13436) example: expect speed: 0.000000 real_pulses:0 +I (13436) example: new speed:399.000000 +I (13446) example: expect speed: 0.000000 real_pulses:0 +I (13446) example: new speed:399.000000 +I (13456) example: expect speed: 0.000000 real_pulses:0 +I (13456) example: new speed:399.000000 +I (13466) example: expect speed: 0.000000 real_pulses:0 +I (13466) example: new speed:399.000000 +I (13476) example: expect speed: 0.000000 real_pulses:0 +I (13476) example: new speed:399.000000 +I (13486) example: expect speed: 0.000000 real_pulses:0 +I (13486) example: new speed:399.000000 +I (13496) example: expect speed: 0.000000 real_pulses:0 +I (13496) example: new speed:399.000000 +I (13506) example: expect speed: 0.000000 real_pulses:0 +I (13506) example: new speed:399.000000 +I (13516) example: expect speed: 0.000000 real_pulses:0 +I (13516) example: new speed:399.000000 +I (13526) example: expect speed: 0.000000 real_pulses:0 +I (13526) example: new speed:399.000000 +I (13536) example: expect speed: 0.000000 real_pulses:0 +I (13536) example: new speed:399.000000 +I (13546) example: expect speed: 0.000000 real_pulses:0 +I (13546) example: new speed:399.000000 +I (13556) example: expect speed: 0.000000 real_pulses:0 +I (13556) example: new speed:399.000000 +I (13566) example: expect speed: 0.000000 real_pulses:0 +I (13566) example: new speed:399.000000 +I (13576) example: expect speed: 0.000000 real_pulses:0 +I (13576) example: new speed:399.000000 +I (13586) example: expect speed: 0.000000 real_pulses:0 +I (13586) example: new speed:399.000000 +I (13596) example: expect speed: 0.000000 real_pulses:0 +I (13596) example: new speed:399.000000 +I (13606) example: expect speed: 0.000000 real_pulses:0 +I (13606) example: new speed:399.000000 +I (13616) example: expect speed: 0.000000 real_pulses:0 +I (13616) example: new speed:399.000000 +I (13626) example: expect speed: 0.000000 real_pulses:0 +I (13626) example: new speed:399.000000 +I (13636) example: expect speed: 0.000000 real_pulses:0 +I (13636) example: new speed:399.000000 +I (13646) example: expect speed: 0.000000 real_pulses:0 +I (13646) example: new speed:399.000000 +I (13656) example: expect speed: 0.000000 real_pulses:0 +I (13656) example: new speed:399.000000 +I (13666) example: expect speed: 0.000000 real_pulses:0 +I (13666) example: new speed:399.000000 +I (13676) example: expect speed: 0.000000 real_pulses:0 +I (13676) example: new speed:399.000000 +I (13686) example: expect speed: 0.000000 real_pulses:0 +I (13686) example: new speed:399.000000 +I (13696) example: expect speed: 0.000000 real_pulses:0 +I (13696) example: new speed:399.000000 +I (13706) example: expect speed: 0.000000 real_pulses:0 +I (13706) example: new speed:399.000000 +I (13716) example: expect speed: 0.000000 real_pulses:0 +I (13716) example: new speed:399.000000 +I (13726) example: expect speed: 0.000000 real_pulses:0 +I (13726) example: new speed:399.000000 +I (13736) example: expect speed: 0.000000 real_pulses:0 +I (13736) example: new speed:399.000000 +I (13746) example: expect speed: 0.000000 real_pulses:0 +I (13746) example: new speed:399.000000 +I (13756) example: expect speed: 0.000000 real_pulses:0 +I (13756) example: new speed:399.000000 +I (13766) example: expect speed: 0.000000 real_pulses:0 +I (13766) example: new speed:399.000000 +I (13776) example: expect speed: 0.000000 real_pulses:0 +I (13776) example: new speed:399.000000 +I (13786) example: expect speed: 0.000000 real_pulses:0 +I (13786) example: new speed:399.000000 +I (13796) example: expect speed: 0.000000 real_pulses:0 +I (13796) example: new speed:399.000000 +I (13806) example: expect speed: 0.000000 real_pulses:0 +I (13806) example: new speed:399.000000 +I (13816) example: expect speed: 0.000000 real_pulses:0 +I (13816) example: new speed:399.000000 +I (13826) example: expect speed: 0.000000 real_pulses:0 +I (13826) example: new speed:399.000000 +I (13836) example: expect speed: 0.000000 real_pulses:0 +I (13836) example: new speed:399.000000 +I (13846) example: expect speed: 0.000000 real_pulses:0 +I (13846) example: new speed:399.000000 +I (13856) example: expect speed: 0.000000 real_pulses:0 +I (13856) example: new speed:399.000000 +I (13866) example: expect speed: 0.000000 real_pulses:0 +I (13866) example: new speed:399.000000 +I (13876) example: expect speed: 0.000000 real_pulses:0 +I (13876) example: new speed:399.000000 +I (13886) example: expect speed: 0.000000 real_pulses:0 +I (13886) example: new speed:399.000000 +I (13896) example: expect speed: 0.000000 real_pulses:0 +I (13896) example: new speed:399.000000 +I (13906) example: expect speed: 0.000000 real_pulses:0 +I (13906) example: new speed:399.000000 +I (13916) example: expect speed: 0.000000 real_pulses:0 +I (13916) example: new speed:399.000000 +I (13926) example: expect speed: 0.000000 real_pulses:0 +I (13926) example: new speed:399.000000 +I (13936) example: expect speed: 0.000000 real_pulses:0 +I (13936) example: new speed:399.000000 +I (13946) example: expect speed: 0.000000 real_pulses:0 +I (13946) example: new speed:399.000000 +I (13956) example: expect speed: 0.000000 real_pulses:0 +I (13956) example: new speed:399.000000 +I (13966) example: expect speed: 0.000000 real_pulses:0 +I (13966) example: new speed:399.000000 +I (13976) example: expect speed: 0.000000 real_pulses:0 +I (13976) example: new speed:399.000000 +I (13986) example: expect speed: 0.000000 real_pulses:0 +I (13986) example: new speed:399.000000 +I (13996) example: expect speed: 0.000000 real_pulses:0 +I (13996) example: new speed:399.000000 +I (14006) example: expect speed: 0.000000 real_pulses:0 +I (14006) example: new speed:399.000000 +I (14016) example: expect speed: 0.000000 real_pulses:0 +I (14016) example: new speed:399.000000 +I (14026) example: expect speed: 0.000000 real_pulses:0 +I (14026) example: new speed:399.000000 +I (14036) example: expect speed: 0.000000 real_pulses:0 +I (14036) example: new speed:399.000000 +I (14046) example: expect speed: 0.000000 real_pulses:0 +I (14046) example: new speed:399.000000 +I (14056) example: expect speed: 0.000000 real_pulses:0 +I (14056) example: new speed:399.000000 +I (14066) example: expect speed: 0.000000 real_pulses:0 +I (14066) example: new speed:399.000000 +I (14076) example: expect speed: 0.000000 real_pulses:0 +I (14076) example: new speed:399.000000 +I (14086) example: expect speed: 0.000000 real_pulses:0 +I (14086) example: new speed:399.000000 +I (14096) example: expect speed: 0.000000 real_pulses:0 +I (14096) example: new speed:399.000000 +I (14106) example: expect speed: 0.000000 real_pulses:0 +I (14106) example: new speed:399.000000 +I (14116) example: expect speed: 0.000000 real_pulses:0 +I (14116) example: new speed:399.000000 +I (14126) example: expect speed: 0.000000 real_pulses:0 +I (14126) example: new speed:399.000000 +I (14136) example: expect speed: 0.000000 real_pulses:0 +I (14136) example: new speed:399.000000 +I (14146) example: expect speed: 0.000000 real_pulses:0 +I (14146) example: new speed:399.000000 +I (14156) example: expect speed: 0.000000 real_pulses:0 +I (14156) example: new speed:399.000000 +I (14166) example: expect speed: 0.000000 real_pulses:0 +I (14166) example: new speed:399.000000 +I (14176) example: expect speed: 0.000000 real_pulses:0 +I (14176) example: new speed:399.000000 +I (14186) example: expect speed: 0.000000 real_pulses:0 +I (14186) example: new speed:399.000000 +I (14196) example: expect speed: 0.000000 real_pulses:0 +I (14196) example: new speed:399.000000 +I (14206) example: expect speed: 0.000000 real_pulses:0 +I (14206) example: new speed:399.000000 +I (14216) example: expect speed: 0.000000 real_pulses:0 +I (14216) example: new speed:399.000000 +I (14226) example: expect speed: 0.000000 real_pulses:0 +I (14226) example: new speed:399.000000 +I (14236) example: expect speed: 0.000000 real_pulses:0 +I (14236) example: new speed:399.000000 +I (14246) example: expect speed: 0.000000 real_pulses:0 +I (14246) example: new speed:399.000000 +I (14256) example: expect speed: 0.000000 real_pulses:0 +I (14256) example: new speed:399.000000 +I (14266) example: expect speed: 0.000000 real_pulses:0 +I (14266) example: new speed:399.000000 +I (14276) example: expect speed: 0.000000 real_pulses:0 +I (14276) example: new speed:399.000000 +I (14286) example: expect speed: 0.000000 real_pulses:0 +I (14286) example: new speed:399.000000 +I (14296) example: expect speed: 0.000000 real_pulses:0 +I (14296) example: new speed:399.000000 +I (14306) example: expect speed: 0.000000 real_pulses:0 +I (14306) example: new speed:399.000000 +I (14316) example: expect speed: 0.000000 real_pulses:0 +I (14316) example: new speed:399.000000 +I (14326) example: expect speed: 0.000000 real_pulses:0 +I (14326) example: new speed:399.000000 +I (14336) example: expect speed: 0.000000 real_pulses:0 +I (14336) example: new speed:399.000000 +I (14346) example: expect speed: 0.000000 real_pulses:0 +I (14346) example: new speed:399.000000 +I (14356) example: expect speed: 0.000000 real_pulses:0 +I (14356) example: new speed:399.000000 +I (14366) example: expect speed: 0.000000 real_pulses:0 +I (14366) example: new speed:399.000000 +I (14376) example: expect speed: 0.000000 real_pulses:0 +I (14376) example: new speed:399.000000 +I (14386) example: expect speed: 0.000000 real_pulses:0 +I (14386) example: new speed:399.000000 +I (14396) example: expect speed: 0.000000 real_pulses:0 +I (14396) example: new speed:399.000000 +I (14406) example: expect speed: 0.000000 real_pulses:0 +I (14406) example: new speed:399.000000 +I (14416) example: expect speed: 0.000000 real_pulses:0 +I (14416) example: new speed:399.000000 +I (14426) example: expect speed: 0.000000 real_pulses:0 +I (14426) example: new speed:399.000000 +I (14436) example: expect speed: 0.000000 real_pulses:0 +I (14436) example: new speed:399.000000 +I (14446) example: expect speed: 0.000000 real_pulses:0 +I (14446) example: new speed:399.000000 +I (14456) example: expect speed: 0.000000 real_pulses:0 +I (14456) example: new speed:399.000000 +I (14466) example: expect speed: 0.000000 real_pulses:0 +I (14466) example: new speed:399.000000 +I (14476) example: expect speed: 0.000000 real_pulses:0 +I (14476) example: new speed:399.000000 +I (14486) example: expect speed: 0.000000 real_pulses:0 +I (14486) example: new speed:399.000000 +I (14496) example: expect speed: 0.000000 real_pulses:0 +I (14496) example: new speed:399.000000 +I (14506) example: expect speed: 0.000000 real_pulses:0 +I (14506) example: new speed:399.000000 +I (14516) example: expect speed: 0.000000 real_pulses:0 +I (14516) example: new speed:399.000000 +I (14526) example: expect speed: 0.000000 real_pulses:0 +I (14526) example: new speed:399.000000 +I (14536) example: expect speed: 0.000000 real_pulses:0 +I (14536) example: new speed:399.000000 +I (14546) example: expect speed: 0.000000 real_pulses:0 +I (14546) example: new speed:399.000000 +I (14556) example: expect speed: 0.000000 real_pulses:0 +I (14556) example: new speed:399.000000 +I (14566) example: expect speed: 0.000000 real_pulses:0 +I (14566) example: new speed:399.000000 +I (14576) example: expect speed: 0.000000 real_pulses:0 +I (14576) example: new speed:399.000000 +I (14586) example: expect speed: 0.000000 real_pulses:0 +I (14586) example: new speed:399.000000 +I (14596) example: expect speed: 0.000000 real_pulses:0 +I (14596) example: new speed:399.000000 +I (14606) example: expect speed: 0.000000 real_pulses:0 +I (14606) example: new speed:399.000000 +I (14616) example: expect speed: 0.000000 real_pulses:0 +I (14616) example: new speed:399.000000 +I (14626) example: expect speed: 0.000000 real_pulses:0 +I (14626) example: new speed:399.000000 +I (14636) example: expect speed: 0.000000 real_pulses:0 +I (14636) example: new speed:399.000000 +I (14646) example: expect speed: 0.000000 real_pulses:0 +I (14646) example: new speed:399.000000 +I (14656) example: expect speed: 0.000000 real_pulses:0 +I (14656) example: new speed:399.000000 +I (14666) example: expect speed: 0.000000 real_pulses:0 +I (14666) example: new speed:399.000000 +I (14676) example: expect speed: 0.000000 real_pulses:0 +I (14676) example: new speed:399.000000 +I (14686) example: expect speed: 0.000000 real_pulses:0 +I (14686) example: new speed:399.000000 +I (14696) example: expect speed: 0.000000 real_pulses:0 +I (14696) example: new speed:399.000000 +I (14706) example: expect speed: 0.000000 real_pulses:0 +I (14706) example: new speed:399.000000 +I (14716) example: expect speed: 0.000000 real_pulses:0 +I (14716) example: new speed:399.000000 +I (14726) example: expect speed: 0.000000 real_pulses:0 +I (14726) example: new speed:399.000000 +I (14736) example: expect speed: 0.000000 real_pulses:0 +I (14736) example: new speed:399.000000 +I (14746) example: expect speed: 0.000000 real_pulses:0 +I (14746) example: new speed:399.000000 +I (14756) example: expect speed: 0.000000 real_pulses:0 +I (14756) example: new speed:399.000000 +I (14766) example: expect speed: 0.000000 real_pulses:0 +I (14766) example: new speed:399.000000 +I (14776) example: expect speed: 0.000000 real_pulses:0 +I (14776) example: new speed:399.000000 +I (14786) example: expect speed: 0.000000 real_pulses:0 +I (14786) example: new speed:399.000000 +I (14796) example: expect speed: 0.000000 real_pulses:0 +I (14796) example: new speed:399.000000 +I (14806) example: expect speed: 0.000000 real_pulses:0 +I (14806) example: new speed:399.000000 +I (14816) example: expect speed: 0.000000 real_pulses:0 +I (14816) example: new speed:399.000000 +I (14826) example: expect speed: 0.000000 real_pulses:0 +I (14826) example: new speed:399.000000 +I (14836) example: expect speed: 0.000000 real_pulses:0 +I (14836) example: new speed:399.000000 +I (14846) example: expect speed: 0.000000 real_pulses:0 +I (14846) example: new speed:399.000000 +I (14856) example: expect speed: 0.000000 real_pulses:0 +I (14856) example: new speed:399.000000 +I (14866) example: expect speed: 0.000000 real_pulses:0 +I (14866) example: new speed:399.000000 +I (14876) example: expect speed: 0.000000 real_pulses:0 +I (14876) example: new speed:399.000000 +I (14886) example: expect speed: 0.000000 real_pulses:0 +I (14886) example: new speed:399.000000 +I (14896) example: expect speed: 0.000000 real_pulses:0 +I (14896) example: new speed:399.000000 +I (14906) example: expect speed: 0.000000 real_pulses:0 +I (14906) example: new speed:399.000000 +I (14916) example: expect speed: 0.000000 real_pulses:0 +I (14916) example: new speed:399.000000 +I (14926) example: expect speed: 0.000000 real_pulses:0 +I (14926) example: new speed:399.000000 +I (14936) example: expect speed: 0.000000 real_pulses:0 +I (14936) example: new speed:399.000000 +I (14946) example: expect speed: 0.000000 real_pulses:0 +I (14946) example: new speed:399.000000 +I (14956) example: expect speed: 0.000000 real_pulses:0 +I (14956) example: new speed:399.000000 +I (14966) example: expect speed: 0.000000 real_pulses:0 +I (14966) example: new speed:399.000000 +I (14976) example: expect speed: 0.000000 real_pulses:0 +I (14976) example: new speed:399.000000 +I (14986) example: expect speed: 0.000000 real_pulses:0 +I (14986) example: new speed:399.000000 +I (14996) example: expect speed: 0.000000 real_pulses:0 +I (14996) example: new speed:399.000000 +I (15006) example: expect speed: 0.000000 real_pulses:0 +I (15006) example: new speed:399.000000 +I (15016) example: expect speed: 0.000000 real_pulses:0 +I (15016) example: new speed:399.000000 +I (15026) example: expect speed: 0.000000 real_pulses:0 +I (15026) example: new speed:399.000000 +I (15036) example: expect speed: 0.000000 real_pulses:0 +I (15036) example: new speed:399.000000 +I (15046) example: expect speed: 0.000000 real_pulses:0 +I (15046) example: new speed:399.000000 +I (15056) example: expect speed: 0.000000 real_pulses:0 +I (15056) example: new speed:399.000000 +I (15066) example: expect speed: 0.000000 real_pulses:0 +I (15066) example: new speed:399.000000 +I (15076) example: expect speed: 0.000000 real_pulses:0 +I (15076) example: new speed:399.000000 +I (15086) example: expect speed: 0.000000 real_pulses:0 +I (15086) example: new speed:399.000000 +I (15096) example: expect speed: 0.000000 real_pulses:0 +I (15096) example: new speed:399.000000 +I (15106) example: expect speed: 0.000000 real_pulses:0 +I (15106) example: new speed:399.000000 +I (15116) example: expect speed: 0.000000 real_pulses:0 +I (15116) example: new speed:399.000000 +I (15126) example: expect speed: 0.000000 real_pulses:0 +I (15126) example: new speed:399.000000 +I (15136) example: expect speed: 0.000000 real_pulses:0 +I (15136) example: new speed:399.000000 +I (15146) example: expect speed: 0.000000 real_pulses:0 +I (15146) example: new speed:399.000000 +I (15156) example: expect speed: 0.000000 real_pulses:0 +I (15156) example: new speed:399.000000 +I (15166) example: expect speed: 0.000000 real_pulses:0 +I (15166) example: new speed:399.000000 +I (15176) example: expect speed: 0.000000 real_pulses:0 +I (15176) example: new speed:399.000000 +I (15186) example: expect speed: 0.000000 real_pulses:0 +I (15186) example: new speed:399.000000 +I (15196) example: expect speed: 0.000000 real_pulses:0 +I (15196) example: new speed:399.000000 +I (15206) example: expect speed: 0.000000 real_pulses:0 +I (15206) example: new speed:399.000000 +I (15216) example: expect speed: 0.000000 real_pulses:0 +I (15216) example: new speed:399.000000 +I (15226) example: expect speed: 0.000000 real_pulses:0 +I (15226) example: new speed:399.000000 +I (15236) example: expect speed: 0.000000 real_pulses:0 +I (15236) example: new speed:399.000000 +I (15246) example: expect speed: 0.000000 real_pulses:0 +I (15246) example: new speed:399.000000 +I (15256) example: expect speed: 0.000000 real_pulses:0 +I (15256) example: new speed:399.000000 +I (15266) example: expect speed: 0.000000 real_pulses:0 +I (15266) example: new speed:399.000000 +I (15276) example: expect speed: 0.000000 real_pulses:0 +I (15276) example: new speed:399.000000 +I (15286) example: expect speed: 0.000000 real_pulses:0 +I (15286) example: new speed:399.000000 +I (15296) example: expect speed: 0.000000 real_pulses:0 +I (15296) example: new speed:399.000000 +I (15306) example: expect speed: 0.000000 real_pulses:0 +I (15306) example: new speed:399.000000 +I (15316) example: expect speed: 0.000000 real_pulses:0 +I (15316) example: new speed:399.000000 +I (15326) example: expect speed: 0.000000 real_pulses:0 +I (15326) example: new speed:399.000000 +I (15336) example: expect speed: 0.000000 real_pulses:0 +I (15336) example: new speed:399.000000 +I (15346) example: expect speed: 0.000000 real_pulses:0 +I (15346) example: new speed:399.000000 +I (15356) example: expect speed: 0.000000 real_pulses:0 +I (15356) example: new speed:399.000000 +I (15366) example: expect speed: 0.000000 real_pulses:0 +I (15366) example: new speed:399.000000 +I (15376) example: expect speed: 0.000000 real_pulses:0 +I (15376) example: new speed:399.000000 +I (15386) example: expect speed: 0.000000 real_pulses:0 +I (15386) example: new speed:399.000000 +I (15396) example: expect speed: 0.000000 real_pulses:0 +I (15396) example: new speed:399.000000 +I (15406) example: expect speed: 0.000000 real_pulses:0 +I (15406) example: new speed:399.000000 +I (15416) example: expect speed: 0.000000 real_pulses:0 +I (15416) example: new speed:399.000000 +I (15426) example: expect speed: 0.000000 real_pulses:0 +I (15426) example: new speed:399.000000 +I (15436) example: expect speed: 0.000000 real_pulses:0 +I (15436) example: new speed:399.000000 +I (15446) example: expect speed: 0.000000 real_pulses:0 +I (15446) example: new speed:399.000000 +I (15456) example: expect speed: 0.000000 real_pulses:0 +I (15456) example: new speed:399.000000 +I (15466) example: expect speed: 0.000000 real_pulses:0 +I (15466) example: new speed:399.000000 +I (15476) example: expect speed: 0.000000 real_pulses:0 +I (15476) example: new speed:399.000000 +I (15486) example: expect speed: 0.000000 real_pulses:0 +I (15486) example: new speed:399.000000 +I (15496) example: expect speed: 0.000000 real_pulses:0 +I (15496) example: new speed:399.000000 +I (15506) example: expect speed: 0.000000 real_pulses:0 +I (15506) example: new speed:399.000000 +I (15516) example: expect speed: 0.000000 real_pulses:0 +I (15516) example: new speed:399.000000 +I (15526) example: expect speed: 0.000000 real_pulses:0 +I (15526) example: new speed:399.000000 +I (15536) example: expect speed: 0.000000 real_pulses:0 +I (15536) example: new speed:399.000000 +I (15546) example: expect speed: 0.000000 real_pulses:0 +I (15546) example: new speed:399.000000 +I (15556) example: expect speed: 0.000000 real_pulses:0 +I (15556) example: new speed:399.000000 +I (15566) example: expect speed: 0.000000 real_pulses:0 +I (15566) example: new speed:399.000000 +I (15576) example: expect speed: 0.000000 real_pulses:0 +I (15576) example: new speed:399.000000 +I (15586) example: expect speed: 0.000000 real_pulses:0 +I (15586) example: new speed:399.000000 +I (15596) example: expect speed: 0.000000 real_pulses:0 +I (15596) example: new speed:399.000000 +I (15606) example: expect speed: 0.000000 real_pulses:0 +I (15606) example: new speed:399.000000 +I (15616) example: expect speed: 0.000000 real_pulses:0 +I (15616) example: new speed:399.000000 +I (15626) example: expect speed: 0.000000 real_pulses:0 +I (15626) example: new speed:399.000000 +I (15636) example: expect speed: 0.000000 real_pulses:0 +I (15636) example: new speed:399.000000 +I (15646) example: expect speed: 0.000000 real_pulses:0 +I (15646) example: new speed:399.000000 +I (15656) example: expect speed: 0.000000 real_pulses:0 +I (15656) example: new speed:399.000000 +I (15666) example: expect speed: 0.000000 real_pulses:0 +I (15666) example: new speed:399.000000 +I (15676) example: expect speed: 0.000000 real_pulses:0 +I (15676) example: new speed:399.000000 +I (15686) example: expect speed: 0.000000 real_pulses:0 +I (15686) example: new speed:399.000000 +I (15696) example: expect speed: 0.000000 real_pulses:0 +I (15696) example: new speed:399.000000 +I (15706) example: expect speed: 0.000000 real_pulses:0 +I (15706) example: new speed:399.000000 +I (15716) example: expect speed: 0.000000 real_pulses:0 +I (15716) example: new speed:399.000000 +I (15726) example: expect speed: 0.000000 real_pulses:0 +I (15726) example: new speed:399.000000 +I (15736) example: expect speed: 0.000000 real_pulses:0 +I (15736) example: new speed:399.000000 +I (15746) example: expect speed: 0.000000 real_pulses:0 +I (15746) example: new speed:399.000000 +I (15756) example: expect speed: 0.000000 real_pulses:0 +I (15756) example: new speed:399.000000 +I (15766) example: expect speed: 0.000000 real_pulses:0 +I (15766) example: new speed:399.000000 +I (15776) example: expect speed: 0.000000 real_pulses:0 +I (15776) example: new speed:399.000000 +I (15786) example: expect speed: 0.000000 real_pulses:0 +I (15786) example: new speed:399.000000 +I (15796) example: expect speed: 0.000000 real_pulses:0 +I (15796) example: new speed:399.000000 +I (15806) example: expect speed: 0.000000 real_pulses:0 +I (15806) example: new speed:399.000000 +I (15816) example: expect speed: 0.000000 real_pulses:0 +I (15816) example: new speed:399.000000 +I (15826) example: expect speed: 0.000000 real_pulses:0 +I (15826) example: new speed:399.000000 +I (15836) example: expect speed: 0.000000 real_pulses:0 +I (15836) example: new speed:399.000000 +I (15846) example: expect speed: 0.000000 real_pulses:0 +I (15846) example: new speed:399.000000 +I (15856) example: expect speed: 0.000000 real_pulses:0 +I (15856) example: new speed:399.000000 +I (15866) example: expect speed: 0.000000 real_pulses:0 +I (15866) example: new speed:399.000000 +I (15876) example: expect speed: 0.000000 real_pulses:0 +I (15876) example: new speed:399.000000 +I (15886) example: expect speed: 0.000000 real_pulses:0 +I (15886) example: new speed:399.000000 +I (15896) example: expect speed: 0.000000 real_pulses:0 +I (15896) example: new speed:399.000000 +I (15906) example: expect speed: 0.000000 real_pulses:0 +I (15906) example: new speed:399.000000 +I (15916) example: expect speed: 0.000000 real_pulses:0 +I (15916) example: new speed:399.000000 +I (15926) example: expect speed: 0.000000 real_pulses:0 +I (15926) example: new speed:399.000000 +I (15936) example: expect speed: 0.000000 real_pulses:0 +I (15936) example: new speed:399.000000 +I (15946) example: expect speed: 0.000000 real_pulses:0 +I (15946) example: new speed:399.000000 +I (15956) example: expect speed: 0.000000 real_pulses:0 +I (15956) example: new speed:399.000000 +I (15966) example: expect speed: 0.000000 real_pulses:0 +I (15966) example: new speed:399.000000 +I (15976) example: expect speed: 0.000000 real_pulses:0 +I (15976) example: new speed:399.000000 +I (15986) example: expect speed: 0.000000 real_pulses:0 +I (15986) example: new speed:399.000000 +I (15996) example: expect speed: 0.000000 real_pulses:0 +I (15996) example: new speed:399.000000 +I (16006) example: expect speed: 0.000000 real_pulses:0 +I (16006) example: new speed:399.000000 +I (16016) example: expect speed: 0.000000 real_pulses:0 +I (16016) example: new speed:399.000000 +I (16026) example: expect speed: 0.000000 real_pulses:0 +I (16026) example: new speed:399.000000 +I (16036) example: expect speed: 0.000000 real_pulses:0 +I (16036) example: new speed:399.000000 +I (16046) example: expect speed: 0.000000 real_pulses:0 +I (16046) example: new speed:399.000000 +I (16056) example: expect speed: 0.000000 real_pulses:0 +I (16056) example: new speed:399.000000 +I (16066) example: expect speed: 0.000000 real_pulses:0 +I (16066) example: new speed:399.000000 +I (16076) example: expect speed: 0.000000 real_pulses:0 +I (16076) example: new speed:399.000000 +I (16086) example: expect speed: 0.000000 real_pulses:0 +I (16086) example: new speed:399.000000 +I (16096) example: expect speed: 0.000000 real_pulses:0 +I (16096) example: new speed:399.000000 +I (16106) example: expect speed: 0.000000 real_pulses:0 +I (16106) example: new speed:399.000000 +I (16116) example: expect speed: 0.000000 real_pulses:0 +I (16116) example: new speed:399.000000 +I (16126) example: expect speed: 0.000000 real_pulses:0 +I (16126) example: new speed:399.000000 +I (16136) example: expect speed: 0.000000 real_pulses:0 +I (16136) example: new speed:399.000000 +I (16146) example: expect speed: 0.000000 real_pulses:0 +I (16146) example: new speed:399.000000 +I (16156) example: expect speed: 0.000000 real_pulses:0 +I (16156) example: new speed:399.000000 +I (16166) example: expect speed: 0.000000 real_pulses:0 +I (16166) example: new speed:399.000000 +I (16176) example: expect speed: 0.000000 real_pulses:0 +I (16176) example: new speed:399.000000 +I (16186) example: expect speed: 0.000000 real_pulses:0 +I (16186) example: new speed:399.000000 +I (16196) example: expect speed: 0.000000 real_pulses:0 +I (16196) example: new speed:399.000000 +I (16206) example: expect speed: 0.000000 real_pulses:0 +I (16206) example: new speed:399.000000 +I (16216) example: expect speed: 0.000000 real_pulses:0 +I (16216) example: new speed:399.000000 +I (16226) example: expect speed: 0.000000 real_pulses:0 +I (16226) example: new speed:399.000000 +I (16236) example: expect speed: 0.000000 real_pulses:0 +I (16236) example: new speed:399.000000 +I (16246) example: expect speed: 0.000000 real_pulses:0 +I (16246) example: new speed:399.000000 +I (16256) example: expect speed: 0.000000 real_pulses:0 +I (16256) example: new speed:399.000000 +I (16266) example: expect speed: 0.000000 real_pulses:0 +I (16266) example: new speed:399.000000 +I (16276) example: expect speed: 0.000000 real_pulses:0 +I (16276) example: new speed:399.000000 +I (16286) example: expect speed: 0.000000 real_pulses:0 +I (16286) example: new speed:399.000000 +I (16296) example: expect speed: 0.000000 real_pulses:0 +I (16296) example: new speed:399.000000 +I (16306) example: expect speed: 0.000000 real_pulses:0 +I (16306) example: new speed:399.000000 +I (16316) example: expect speed: 0.000000 real_pulses:0 +I (16316) example: new speed:399.000000 +I (16326) example: expect speed: 0.000000 real_pulses:0 +I (16326) example: new speed:399.000000 +I (16336) example: expect speed: 0.000000 real_pulses:0 +I (16336) example: new speed:399.000000 +I (16346) example: expect speed: 0.000000 real_pulses:0 +I (16346) example: new speed:399.000000 +I (16356) example: expect speed: 0.000000 real_pulses:0 +I (16356) example: new speed:399.000000 +I (16366) example: expect speed: 0.000000 real_pulses:0 +I (16366) example: new speed:399.000000 +I (16376) example: expect speed: 0.000000 real_pulses:0 +I (16376) example: new speed:399.000000 +I (16386) example: expect speed: 0.000000 real_pulses:0 +I (16386) example: new speed:399.000000 +I (16396) example: expect speed: 0.000000 real_pulses:0 +I (16396) example: new speed:399.000000 +I (16406) example: expect speed: 0.000000 real_pulses:0 +I (16406) example: new speed:399.000000 +I (16416) example: expect speed: 0.000000 real_pulses:0 +I (16416) example: new speed:399.000000 +I (16426) example: expect speed: 0.000000 real_pulses:0 +I (16426) example: new speed:399.000000 +I (16436) example: expect speed: 0.000000 real_pulses:0 +I (16436) example: new speed:399.000000 +I (16446) example: expect speed: 0.000000 real_pulses:0 +I (16446) example: new speed:399.000000 +I (16456) example: expect speed: 0.000000 real_pulses:0 +I (16456) example: new speed:399.000000 +I (16466) example: expect speed: 0.000000 real_pulses:0 +I (16466) example: new speed:399.000000 +I (16476) example: expect speed: 0.000000 real_pulses:0 +I (16476) example: new speed:399.000000 +I (16486) example: expect speed: 0.000000 real_pulses:0 +I (16486) example: new speed:399.000000 +I (16496) example: expect speed: 0.000000 real_pulses:0 +I (16496) example: new speed:399.000000 +I (16506) example: expect speed: 0.000000 real_pulses:0 +I (16506) example: new speed:399.000000 +I (16516) example: expect speed: 0.000000 real_pulses:0 +I (16516) example: new speed:399.000000 +I (16526) example: expect speed: 0.000000 real_pulses:0 +I (16526) example: new speed:399.000000 +I (16536) example: expect speed: 0.000000 real_pulses:0 +I (16536) example: new speed:399.000000 +I (16546) example: expect speed: 0.000000 real_pulses:0 +I (16546) example: new speed:399.000000 +I (16556) example: expect speed: 0.000000 real_pulses:0 +I (16556) example: new speed:399.000000 +I (16566) example: expect speed: 0.000000 real_pulses:0 +I (16566) example: new speed:399.000000 +I (16576) example: expect speed: 0.000000 real_pulses:0 +I (16576) example: new speed:399.000000 +I (16586) example: expect speed: 0.000000 real_pulses:0 +I (16586) example: new speed:399.000000 +I (16596) example: expect speed: 0.000000 real_pulses:0 +I (16596) example: new speed:399.000000 +I (16606) example: expect speed: 0.000000 real_pulses:0 +I (16606) example: new speed:399.000000 +I (16616) example: expect speed: 0.000000 real_pulses:0 +I (16616) example: new speed:399.000000 +I (16626) example: expect speed: 0.000000 real_pulses:0 +I (16626) example: new speed:399.000000 +I (16636) example: expect speed: 0.000000 real_pulses:0 +I (16636) example: new speed:399.000000 +I (16646) example: expect speed: 0.000000 real_pulses:0 +I (16646) example: new speed:399.000000 +I (16656) example: expect speed: 0.000000 real_pulses:0 +I (16656) example: new speed:399.000000 +I (16666) example: expect speed: 0.000000 real_pulses:0 +I (16666) example: new speed:399.000000 +I (16676) example: expect speed: 0.000000 real_pulses:0 +I (16676) example: new speed:399.000000 +I (16686) example: expect speed: 0.000000 real_pulses:0 +I (16686) example: new speed:399.000000 +I (16696) example: expect speed: 0.000000 real_pulses:0 +I (16696) example: new speed:399.000000 +I (16706) example: expect speed: 0.000000 real_pulses:0 +I (16706) example: new speed:399.000000 +I (16716) example: expect speed: 0.000000 real_pulses:0 +I (16716) example: new speed:399.000000 +I (16726) example: expect speed: 0.000000 real_pulses:0 +I (16726) example: new speed:399.000000 +I (16736) example: expect speed: 0.000000 real_pulses:0 +I (16736) example: new speed:399.000000 +I (16746) example: expect speed: 0.000000 real_pulses:0 +I (16746) example: new speed:399.000000 +I (16756) example: expect speed: 0.000000 real_pulses:0 +I (16756) example: new speed:399.000000 +I (16766) example: expect speed: 0.000000 real_pulses:0 +I (16766) example: new speed:399.000000 +I (16776) example: expect speed: 0.000000 real_pulses:0 +I (16776) example: new speed:399.000000 +I (16786) example: expect speed: 0.000000 real_pulses:0 +I (16786) example: new speed:399.000000 +I (16796) example: expect speed: 0.000000 real_pulses:0 +I (16796) example: new speed:399.000000 +I (16806) example: expect speed: 0.000000 real_pulses:0 +I (16806) example: new speed:399.000000 +I (16816) example: expect speed: 0.000000 real_pulses:0 +I (16816) example: new speed:399.000000 +I (16826) example: expect speed: 0.000000 real_pulses:0 +I (16826) example: new speed:399.000000 +I (16836) example: expect speed: 0.000000 real_pulses:0 +I (16836) example: new speed:399.000000 +I (16846) example: expect speed: 0.000000 real_pulses:0 +I (16846) example: new speed:399.000000 +I (16856) example: expect speed: 0.000000 real_pulses:0 +I (16856) example: new speed:399.000000 +I (16866) example: expect speed: 0.000000 real_pulses:0 +I (16866) example: new speed:399.000000 +I (16876) example: expect speed: 0.000000 real_pulses:0 +I (16876) example: new speed:399.000000 +I (16886) example: expect speed: 0.000000 real_pulses:0 +I (16886) example: new speed:399.000000 +I (16896) example: expect speed: 0.000000 real_pulses:0 +I (16896) example: new speed:399.000000 +I (16906) example: expect speed: 0.000000 real_pulses:0 +I (16906) example: new speed:399.000000 +I (16916) example: expect speed: 0.000000 real_pulses:0 +I (16916) example: new speed:399.000000 +I (16926) example: expect speed: 0.000000 real_pulses:0 +I (16926) example: new speed:399.000000 +I (16936) example: expect speed: 0.000000 real_pulses:0 +I (16936) example: new speed:399.000000 +I (16946) example: expect speed: 0.000000 real_pulses:0 +I (16946) example: new speed:399.000000 +I (16956) example: expect speed: 0.000000 real_pulses:0 +I (16956) example: new speed:399.000000 +I (16966) example: expect speed: 0.000000 real_pulses:0 +I (16966) example: new speed:399.000000 +I (16976) example: expect speed: 0.000000 real_pulses:0 +I (16976) example: new speed:399.000000 +I (16986) example: expect speed: 0.000000 real_pulses:0 +I (16986) example: new speed:399.000000 +I (16996) example: expect speed: 0.000000 real_pulses:0 +I (16996) example: new speed:399.000000 +I (17006) example: expect speed: 0.000000 real_pulses:0 +I (17006) example: new speed:399.000000 +I (17016) example: expect speed: 0.000000 real_pulses:0 +I (17016) example: new speed:399.000000 +I (17026) example: expect speed: 0.000000 real_pulses:0 +I (17026) example: new speed:399.000000 +I (17036) example: expect speed: 0.000000 real_pulses:0 +I (17036) example: new speed:399.000000 +I (17046) example: expect speed: 0.000000 real_pulses:0 +I (17046) example: new speed:399.000000 +I (17056) example: expect speed: 0.000000 real_pulses:0 +I (17056) example: new speed:399.000000 +I (17066) example: expect speed: 0.000000 real_pulses:0 +I (17066) example: new speed:399.000000 +I (17076) example: expect speed: 0.000000 real_pulses:0 +I (17076) example: new speed:399.000000 +I (17086) example: expect speed: 0.000000 real_pulses:0 +I (17086) example: new speed:399.000000 +I (17096) example: expect speed: 0.000000 real_pulses:0 +I (17096) example: new speed:399.000000 +I (17106) example: expect speed: 0.000000 real_pulses:0 +I (17106) example: new speed:399.000000 +I (17116) example: expect speed: 0.000000 real_pulses:0 +I (17116) example: new speed:399.000000 +I (17126) example: expect speed: 0.000000 real_pulses:0 +I (17126) example: new speed:399.000000 +I (17136) example: expect speed: 0.000000 real_pulses:0 +I (17136) example: new speed:399.000000 +I (17146) example: expect speed: 0.000000 real_pulses:0 +I (17146) example: new speed:399.000000 +I (17156) example: expect speed: 0.000000 real_pulses:0 +I (17156) example: new speed:399.000000 +I (17166) example: expect speed: 0.000000 real_pulses:0 +I (17166) example: new speed:399.000000 +I (17176) example: expect speed: 0.000000 real_pulses:0 +I (17176) example: new speed:399.000000 +I (17186) example: expect speed: 0.000000 real_pulses:0 +I (17186) example: new speed:399.000000 +I (17196) example: expect speed: 0.000000 real_pulses:0 +I (17196) example: new speed:399.000000 +I (17206) example: expect speed: 0.000000 real_pulses:0 +I (17206) example: new speed:399.000000 +I (17216) example: expect speed: 0.000000 real_pulses:0 +I (17216) example: new speed:399.000000 +I (17226) example: expect speed: 0.000000 real_pulses:0 +I (17226) example: new speed:399.000000 +I (17236) example: expect speed: 0.000000 real_pulses:0 +I (17236) example: new speed:399.000000 +I (17246) example: expect speed: 0.000000 real_pulses:0 +I (17246) example: new speed:399.000000 +I (17256) example: expect speed: 0.000000 real_pulses:0 +I (17256) example: new speed:399.000000 +I (17266) example: expect speed: 0.000000 real_pulses:0 +I (17266) example: new speed:399.000000 +I (17276) example: expect speed: 0.000000 real_pulses:0 +I (17276) example: new speed:399.000000 +I (17286) example: expect speed: 0.000000 real_pulses:0 +I (17286) example: new speed:399.000000 +I (17296) example: expect speed: 0.000000 real_pulses:0 +I (17296) example: new speed:399.000000 +I (17306) example: expect speed: 0.000000 real_pulses:0 +I (17306) example: new speed:399.000000 +I (17316) example: expect speed: 0.000000 real_pulses:0 +I (17316) example: new speed:399.000000 +I (17326) example: expect speed: 0.000000 real_pulses:0 +I (17326) example: new speed:399.000000 +I (17336) example: expect speed: 0.000000 real_pulses:0 +I (17336) example: new speed:399.000000 +I (17346) example: expect speed: 0.000000 real_pulses:0 +I (17346) example: new speed:399.000000 +I (17356) example: expect speed: 0.000000 real_pulses:0 +I (17356) example: new speed:399.000000 +I (17366) example: expect speed: 0.000000 real_pulses:0 +I (17366) example: new speed:399.000000 +I (17376) example: expect speed: 0.000000 real_pulses:0 +I (17376) example: new speed:399.000000 +I (17386) example: expect speed: 0.000000 real_pulses:0 +I (17386) example: new speed:399.000000 +I (17396) example: expect speed: 0.000000 real_pulses:0 +I (17396) example: new speed:399.000000 +I (17406) example: expect speed: 0.000000 real_pulses:0 +I (17406) example: new speed:399.000000 +I (17416) example: expect speed: 0.000000 real_pulses:0 +I (17416) example: new speed:399.000000 +I (17426) example: expect speed: 0.000000 real_pulses:0 +I (17426) example: new speed:399.000000 +I (17436) example: expect speed: 0.000000 real_pulses:0 +I (17436) example: new speed:399.000000 +I (17446) example: expect speed: 0.000000 real_pulses:0 +I (17446) example: new speed:399.000000 +I (17456) example: expect speed: 0.000000 real_pulses:0 +I (17456) example: new speed:399.000000 +I (17466) example: expect speed: 0.000000 real_pulses:0 +I (17466) example: new speed:399.000000 +I (17476) example: expect speed: 0.000000 real_pulses:0 +I (17476) example: new speed:399.000000 +I (17486) example: expect speed: 0.000000 real_pulses:0 +I (17486) example: new speed:399.000000 +I (17496) example: expect speed: 0.000000 real_pulses:0 +I (17496) example: new speed:399.000000 +I (17506) example: expect speed: 0.000000 real_pulses:0 +I (17506) example: new speed:399.000000 +I (17516) example: expect speed: 0.000000 real_pulses:0 +I (17516) example: new speed:399.000000 +I (17526) example: expect speed: 0.000000 real_pulses:0 +I (17526) example: new speed:399.000000 +I (17536) example: expect speed: 0.000000 real_pulses:0 +I (17536) example: new speed:399.000000 +I (17546) example: expect speed: 0.000000 real_pulses:0 +I (17546) example: new speed:399.000000 +I (17556) example: expect speed: 0.000000 real_pulses:0 +I (17556) example: new speed:399.000000 +I (17566) example: expect speed: 0.000000 real_pulses:0 +I (17566) example: new speed:399.000000 +I (17576) example: expect speed: 0.000000 real_pulses:0 +I (17576) example: new speed:399.000000 +I (17586) example: expect speed: 0.000000 real_pulses:0 +I (17586) example: new speed:399.000000 +I (17596) example: expect speed: 0.000000 real_pulses:0 +I (17596) example: new speed:399.000000 +I (17606) example: expect speed: 0.000000 real_pulses:0 +I (17606) example: new speed:399.000000 +I (17616) example: expect speed: 0.000000 real_pulses:0 +I (17616) example: new speed:399.000000 +I (17626) example: expect speed: 0.000000 real_pulses:0 +I (17626) example: new speed:399.000000 +I (17636) example: expect speed: 0.000000 real_pulses:0 +I (17636) example: new speed:399.000000 +I (17646) example: expect speed: 0.000000 real_pulses:0 +I (17646) example: new speed:399.000000 +I (17656) example: expect speed: 0.000000 real_pulses:0 +I (17656) example: new speed:399.000000 +I (17666) example: expect speed: 0.000000 real_pulses:0 +I (17666) example: new speed:399.000000 +I (17676) example: expect speed: 0.000000 real_pulses:0 +I (17676) example: new speed:399.000000 +I (17686) example: expect speed: 0.000000 real_pulses:0 +I (17686) example: new speed:399.000000 +I (17696) example: expect speed: 0.000000 real_pulses:0 +I (17696) example: new speed:399.000000 +I (17706) example: expect speed: 0.000000 real_pulses:0 +I (17706) example: new speed:399.000000 +I (17716) example: expect speed: 0.000000 real_pulses:0 +I (17716) example: new speed:399.000000 +I (17726) example: expect speed: 0.000000 real_pulses:0 +I (17726) example: new speed:399.000000 +I (17736) example: expect speed: 0.000000 real_pulses:0 +I (17736) example: new speed:399.000000 +I (17746) example: expect speed: 0.000000 real_pulses:0 +I (17746) example: new speed:399.000000 +I (17756) example: expect speed: 0.000000 real_pulses:0 +I (17756) example: new speed:399.000000 +I (17766) example: expect speed: 0.000000 real_pulses:0 +I (17766) example: new speed:399.000000 +I (17776) example: expect speed: 0.000000 real_pulses:0 +I (17776) example: new speed:399.000000 +I (17786) example: expect speed: 0.000000 real_pulses:0 +I (17786) example: new speed:399.000000 +I (17796) example: expect speed: 0.000000 real_pulses:0 +I (17796) example: new speed:399.000000 +I (17806) example: expect speed: 0.000000 real_pulses:0 +I (17806) example: new speed:399.000000 +I (17816) example: expect speed: 0.000000 real_pulses:0 +I (17816) example: new speed:399.000000 +I (17826) example: expect speed: 0.000000 real_pulses:0 +I (17826) example: new speed:399.000000 +I (17836) example: expect speed: 0.000000 real_pulses:0 +I (17836) example: new speed:399.000000 +I (17846) example: expect speed: 0.000000 real_pulses:0 +I (17846) example: new speed:399.000000 +I (17856) example: expect speed: 0.000000 real_pulses:0 +I (17856) example: new speed:399.000000 +I (17866) example: expect speed: 0.000000 real_pulses:0 +I (17866) example: new speed:399.000000 +I (17876) example: expect speed: 0.000000 real_pulses:0 +I (17876) example: new speed:399.000000 +I (17886) example: expect speed: 0.000000 real_pulses:0 +I (17886) example: new speed:399.000000 +I (17896) example: expect speed: 0.000000 real_pulses:0 +I (17896) example: new speed:399.000000 +I (17906) example: expect speed: 0.000000 real_pulses:0 +I (17906) example: new speed:399.000000 +I (17916) example: expect speed: 0.000000 real_pulses:0 +I (17916) example: new speed:399.000000 +I (17926) example: expect speed: 0.000000 real_pulses:0 +I (17926) example: new speed:399.000000 +I (17936) example: expect speed: 0.000000 real_pulses:0 +I (17936) example: new speed:399.000000 +I (17946) example: expect speed: 0.000000 real_pulses:0 +I (17946) example: new speed:399.000000 +I (17956) example: expect speed: 0.000000 real_pulses:0 +I (17956) example: new speed:399.000000 +I (17966) example: expect speed: 0.000000 real_pulses:0 +I (17966) example: new speed:399.000000 +I (17976) example: expect speed: 0.000000 real_pulses:0 +I (17976) example: new speed:399.000000 +I (17986) example: expect speed: 0.000000 real_pulses:0 +I (17986) example: new speed:399.000000 +I (17996) example: expect speed: 0.000000 real_pulses:0 +I (17996) example: new speed:399.000000 +I (18006) example: expect speed: 0.000000 real_pulses:0 +I (18006) example: new speed:399.000000 +I (18016) example: expect speed: 0.000000 real_pulses:0 +I (18016) example: new speed:399.000000 +I (18026) example: expect speed: 0.000000 real_pulses:0 +I (18026) example: new speed:399.000000 +I (18036) example: expect speed: 0.000000 real_pulses:0 +I (18036) example: new speed:399.000000 +I (18046) example: expect speed: 0.000000 real_pulses:0 +I (18046) example: new speed:399.000000 +I (18056) example: expect speed: 0.000000 real_pulses:0 +I (18056) example: new speed:399.000000 +I (18066) example: expect speed: 0.000000 real_pulses:0 +I (18066) example: new speed:399.000000 +I (18076) example: expect speed: 0.000000 real_pulses:0 +I (18076) example: new speed:399.000000 +I (18086) example: expect speed: 0.000000 real_pulses:0 +I (18086) example: new speed:399.000000 +I (18096) example: expect speed: 0.000000 real_pulses:0 +I (18096) example: new speed:399.000000 +I (18106) example: expect speed: 0.000000 real_pulses:0 +I (18106) example: new speed:399.000000 +I (18116) example: expect speed: 0.000000 real_pulses:0 +I (18116) example: new speed:399.000000 +I (18126) example: expect speed: 0.000000 real_pulses:0 +I (18126) example: new speed:399.000000 +I (18136) example: expect speed: 0.000000 real_pulses:0 +I (18136) example: new speed:399.000000 +I (18146) example: expect speed: 0.000000 real_pulses:0 +I (18146) example: new speed:399.000000 +I (18156) example: expect speed: 0.000000 real_pulses:0 +I (18156) example: new speed:399.000000 +I (18166) example: expect speed: 0.000000 real_pulses:0 +I (18166) example: new speed:399.000000 +I (18176) example: expect speed: 0.000000 real_pulses:0 +I (18176) example: new speed:399.000000 +I (18186) example: expect speed: 0.000000 real_pulses:0 +I (18186) example: new speed:399.000000 +I (18196) example: expect speed: 0.000000 real_pulses:0 +I (18196) example: new speed:399.000000 +I (18206) example: expect speed: 0.000000 real_pulses:0 +I (18206) example: new speed:399.000000 +I (18216) example: expect speed: 0.000000 real_pulses:0 +I (18216) example: new speed:399.000000 +I (18226) example: expect speed: 0.000000 real_pulses:0 +I (18226) example: new speed:399.000000 +I (18236) example: expect speed: 0.000000 real_pulses:0 +I (18236) example: new speed:399.000000 +I (18246) example: expect speed: 0.000000 real_pulses:0 +I (18246) example: new speed:399.000000 +I (18256) example: expect speed: 0.000000 real_pulses:0 +I (18256) example: new speed:399.000000 +I (18266) example: expect speed: 0.000000 real_pulses:0 +I (18266) example: new speed:399.000000 +I (18276) example: expect speed: 0.000000 real_pulses:0 +I (18276) example: new speed:399.000000 +I (18286) example: expect speed: 0.000000 real_pulses:0 +I (18286) example: new speed:399.000000 +I (18296) example: expect speed: 0.000000 real_pulses:0 +I (18296) example: new speed:399.000000 +I (18306) example: expect speed: 0.000000 real_pulses:0 +I (18306) example: new speed:399.000000 +I (18316) example: expect speed: 0.000000 real_pulses:0 +I (18316) example: new speed:399.000000 +I (18326) example: expect speed: 0.000000 real_pulses:0 +I (18326) example: new speed:399.000000 +I (18336) example: expect speed: 0.000000 real_pulses:0 +I (18336) example: new speed:399.000000 +I (18346) example: expect speed: 0.000000 real_pulses:0 +I (18346) example: new speed:399.000000 +I (18356) example: expect speed: 0.000000 real_pulses:0 +I (18356) example: new speed:399.000000 +I (18366) example: expect speed: 0.000000 real_pulses:0 +I (18366) example: new speed:399.000000 +I (18376) example: expect speed: 0.000000 real_pulses:0 +I (18376) example: new speed:399.000000 +I (18386) example: expect speed: 0.000000 real_pulses:0 +I (18386) example: new speed:399.000000 +I (18396) example: expect speed: 0.000000 real_pulses:0 +I (18396) example: new speed:399.000000 +I (18406) example: expect speed: 0.000000 real_pulses:0 +I (18406) example: new speed:399.000000 +I (18416) example: expect speed: 0.000000 real_pulses:0 +I (18416) example: new speed:399.000000 +I (18426) example: expect speed: 0.000000 real_pulses:0 +I (18426) example: new speed:399.000000 +I (18436) example: expect speed: 0.000000 real_pulses:0 +I (18436) example: new speed:399.000000 +I (18446) example: expect speed: 0.000000 real_pulses:0 +I (18446) example: new speed:399.000000 +I (18456) example: expect speed: 0.000000 real_pulses:0 +I (18456) example: new speed:399.000000 +I (18466) example: expect speed: 0.000000 real_pulses:0 +I (18466) example: new speed:399.000000 +I (18476) example: expect speed: 0.000000 real_pulses:0 +I (18476) example: new speed:399.000000 +I (18486) example: expect speed: 0.000000 real_pulses:0 +I (18486) example: new speed:399.000000 +I (18496) example: expect speed: 0.000000 real_pulses:0 +I (18496) example: new speed:399.000000 +I (18506) example: expect speed: 0.000000 real_pulses:0 +I (18506) example: new speed:399.000000 +I (18516) example: expect speed: 0.000000 real_pulses:0 +I (18516) example: new speed:399.000000 +I (18526) example: expect speed: 0.000000 real_pulses:0 +I (18526) example: new speed:399.000000 +I (18536) example: expect speed: 0.000000 real_pulses:0 +I (18536) example: new speed:399.000000 +I (18546) example: expect speed: 0.000000 real_pulses:0 +I (18546) example: new speed:399.000000 +I (18556) example: expect speed: 0.000000 real_pulses:0 +I (18556) example: new speed:399.000000 +I (18566) example: expect speed: 0.000000 real_pulses:0 +I (18566) example: new speed:399.000000 +I (18576) example: expect speed: 0.000000 real_pulses:0 +I (18576) example: new speed:399.000000 +I (18586) example: expect speed: 0.000000 real_pulses:0 +I (18586) example: new speed:399.000000 +I (18596) example: expect speed: 0.000000 real_pulses:0 +I (18596) example: new speed:399.000000 +I (18606) example: expect speed: 0.000000 real_pulses:0 +I (18606) example: new speed:399.000000 +I (18616) example: expect speed: 0.000000 real_pulses:0 +I (18616) example: new speed:399.000000 +I (18626) example: expect speed: 0.000000 real_pulses:0 +I (18626) example: new speed:399.000000 +I (18636) example: expect speed: 0.000000 real_pulses:0 +I (18636) example: new speed:399.000000 +I (18646) example: expect speed: 0.000000 real_pulses:0 +I (18646) example: new speed:399.000000 +I (18656) example: expect speed: 0.000000 real_pulses:0 +I (18656) example: new speed:399.000000 +I (18666) example: expect speed: 0.000000 real_pulses:0 +I (18666) example: new speed:399.000000 +I (18676) example: expect speed: 0.000000 real_pulses:0 +I (18676) example: new speed:399.000000 +I (18686) example: expect speed: 0.000000 real_pulses:0 +I (18686) example: new speed:399.000000 +I (18696) example: expect speed: 0.000000 real_pulses:0 +I (18696) example: new speed:399.000000 +I (18706) example: expect speed: 0.000000 real_pulses:0 +I (18706) example: new speed:399.000000 +I (18716) example: expect speed: 0.000000 real_pulses:0 +I (18716) example: new speed:399.000000 +I (18726) example: expect speed: 0.000000 real_pulses:0 +I (18726) example: new speed:399.000000 +I (18736) example: expect speed: 0.000000 real_pulses:0 +I (18736) example: new speed:399.000000 +I (18746) example: expect speed: 0.000000 real_pulses:0 +I (18746) example: new speed:399.000000 +I (18756) example: expect speed: 0.000000 real_pulses:0 +I (18756) example: new speed:399.000000 +I (18766) example: expect speed: 0.000000 real_pulses:0 +I (18766) example: new speed:399.000000 +I (18776) example: expect speed: 0.000000 real_pulses:0 +I (18776) example: new speed:399.000000 +I (18786) example: expect speed: 0.000000 real_pulses:0 +I (18786) example: new speed:399.000000 +I (18796) example: expect speed: 0.000000 real_pulses:0 +I (18796) example: new speed:399.000000 +I (18806) example: expect speed: 0.000000 real_pulses:0 +I (18806) example: new speed:399.000000 +I (18816) example: expect speed: 0.000000 real_pulses:0 +I (18816) example: new speed:399.000000 +I (18826) example: expect speed: 0.000000 real_pulses:0 +I (18826) example: new speed:399.000000 +I (18836) example: expect speed: 0.000000 real_pulses:0 +I (18836) example: new speed:399.000000 +I (18846) example: expect speed: 0.000000 real_pulses:0 +I (18846) example: new speed:399.000000 +I (18856) example: expect speed: 0.000000 real_pulses:0 +I (18856) example: new speed:399.000000 +I (18866) example: expect speed: 0.000000 real_pulses:0 +I (18866) example: new speed:399.000000 +I (18876) example: expect speed: 0.000000 real_pulses:0 +I (18876) example: new speed:399.000000 +I (18886) example: expect speed: 0.000000 real_pulses:0 +I (18886) example: new speed:399.000000 +I (18896) example: expect speed: 0.000000 real_pulses:0 +I (18896) example: new speed:399.000000 +I (18906) example: expect speed: 0.000000 real_pulses:0 +I (18906) example: new speed:399.000000 +I (18916) example: expect speed: 0.000000 real_pulses:0 +I (18916) example: new speed:399.000000 +I (18926) example: expect speed: 0.000000 real_pulses:0 +I (18926) example: new speed:399.000000 +I (18936) example: expect speed: 0.000000 real_pulses:0 +I (18936) example: new speed:399.000000 +I (18946) example: expect speed: 0.000000 real_pulses:0 +I (18946) example: new speed:399.000000 +I (18956) example: expect speed: 0.000000 real_pulses:0 +I (18956) example: new speed:399.000000 +I (18966) example: expect speed: 0.000000 real_pulses:0 +I (18966) example: new speed:399.000000 +I (18976) example: expect speed: 0.000000 real_pulses:0 +I (18976) example: new speed:399.000000 +I (18986) example: expect speed: 0.000000 real_pulses:0 +I (18986) example: new speed:399.000000 +I (18996) example: expect speed: 0.000000 real_pulses:0 +I (18996) example: new speed:399.000000 +I (19006) example: expect speed: 0.000000 real_pulses:0 +I (19006) example: new speed:399.000000 +I (19016) example: expect speed: 0.000000 real_pulses:0 +I (19016) example: new speed:399.000000 +I (19026) example: expect speed: 0.000000 real_pulses:0 +I (19026) example: new speed:399.000000 +I (19036) example: expect speed: 0.000000 real_pulses:0 +I (19036) example: new speed:399.000000 +I (19046) example: expect speed: 0.000000 real_pulses:0 +I (19046) example: new speed:399.000000 +I (19056) example: expect speed: 0.000000 real_pulses:0 +I (19056) example: new speed:399.000000 +I (19066) example: expect speed: 0.000000 real_pulses:0 +I (19066) example: new speed:399.000000 +I (19076) example: expect speed: 0.000000 real_pulses:0 +I (19076) example: new speed:399.000000 +I (19086) example: expect speed: 0.000000 real_pulses:0 +I (19086) example: new speed:399.000000 +I (19096) example: expect speed: 0.000000 real_pulses:0 +I (19096) example: new speed:399.000000 +I (19106) example: expect speed: 0.000000 real_pulses:0 +I (19106) example: new speed:399.000000 +I (19116) example: expect speed: 0.000000 real_pulses:0 +I (19116) example: new speed:399.000000 +I (19126) example: expect speed: 0.000000 real_pulses:0 +I (19126) example: new speed:399.000000 +I (19136) example: expect speed: 0.000000 real_pulses:0 +I (19136) example: new speed:399.000000 +I (19146) example: expect speed: 0.000000 real_pulses:0 +I (19146) example: new speed:399.000000 +I (19156) example: expect speed: 0.000000 real_pulses:0 +I (19156) example: new speed:399.000000 +I (19166) example: expect speed: 0.000000 real_pulses:0 +I (19166) example: new speed:399.000000 +I (19176) example: expect speed: 0.000000 real_pulses:0 +I (19176) example: new speed:399.000000 +I (19186) example: expect speed: 0.000000 real_pulses:0 +I (19186) example: new speed:399.000000 +I (19196) example: expect speed: 0.000000 real_pulses:0 +I (19196) example: new speed:399.000000 +I (19206) example: expect speed: 0.000000 real_pulses:0 +I (19206) example: new speed:399.000000 +I (19216) example: expect speed: 0.000000 real_pulses:0 +I (19216) example: new speed:399.000000 +I (19226) example: expect speed: 0.000000 real_pulses:0 +I (19226) example: new speed:399.000000 +I (19236) example: expect speed: 0.000000 real_pulses:0 +I (19236) example: new speed:399.000000 +I (19246) example: expect speed: 0.000000 real_pulses:0 +I (19246) example: new speed:399.000000 +I (19256) example: expect speed: 0.000000 real_pulses:0 +I (19256) example: new speed:399.000000 +I (19266) example: expect speed: 0.000000 real_pulses:0 +I (19266) example: new speed:399.000000 +I (19276) example: expect speed: 0.000000 real_pulses:0 +I (19276) example: new speed:399.000000 +I (19286) example: expect speed: 0.000000 real_pulses:0 +I (19286) example: new speed:399.000000 +I (19296) example: expect speed: 0.000000 real_pulses:0 +I (19296) example: new speed:399.000000 +I (19306) example: expect speed: 0.000000 real_pulses:0 +I (19306) example: new speed:399.000000 +I (19316) example: expect speed: 0.000000 real_pulses:0 +I (19316) example: new speed:399.000000 +I (19326) example: expect speed: 0.000000 real_pulses:0 +I (19326) example: new speed:399.000000 +I (19336) example: expect speed: 0.000000 real_pulses:0 +I (19336) example: new speed:399.000000 +I (19346) example: expect speed: 0.000000 real_pulses:0 +I (19346) example: new speed:399.000000 +I (19356) example: expect speed: 0.000000 real_pulses:0 +I (19356) example: new speed:399.000000 +I (19366) example: expect speed: 0.000000 real_pulses:0 +I (19366) example: new speed:399.000000 +I (19376) example: expect speed: 0.000000 real_pulses:0 +I (19376) example: new speed:399.000000 +I (19386) example: expect speed: 0.000000 real_pulses:0 +I (19386) example: new speed:399.000000 +I (19396) example: expect speed: 0.000000 real_pulses:0 +I (19396) example: new speed:399.000000 +I (19406) example: expect speed: 0.000000 real_pulses:0 +I (19406) example: new speed:399.000000 +I (19416) example: expect speed: 0.000000 real_pulses:0 +I (19416) example: new speed:399.000000 +I (19426) example: expect speed: 0.000000 real_pulses:0 +I (19426) example: new speed:399.000000 +I (19436) example: expect speed: 0.000000 real_pulses:0 +I (19436) example: new speed:399.000000 +I (19446) example: expect speed: 0.000000 real_pulses:0 +I (19446) example: new speed:399.000000 +I (19456) example: expect speed: 0.000000 real_pulses:0 +I (19456) example: new speed:399.000000 +I (19466) example: expect speed: 0.000000 real_pulses:0 +I (19466) example: new speed:399.000000 +I (19476) example: expect speed: 0.000000 real_pulses:0 +I (19476) example: new speed:399.000000 +I (19486) example: expect speed: 0.000000 real_pulses:0 +I (19486) example: new speed:399.000000 +I (19496) example: expect speed: 0.000000 real_pulses:0 +I (19496) example: new speed:399.000000 +I (19506) example: expect speed: 0.000000 real_pulses:0 +I (19506) example: new speed:399.000000 +I (19516) example: expect speed: 0.000000 real_pulses:0 +I (19516) example: new speed:399.000000 +I (19526) example: expect speed: 0.000000 real_pulses:0 +I (19526) example: new speed:399.000000 +I (19536) example: expect speed: 0.000000 real_pulses:0 +I (19536) example: new speed:399.000000 +I (19546) example: expect speed: 0.000000 real_pulses:0 +I (19546) example: new speed:399.000000 +I (19556) example: expect speed: 0.000000 real_pulses:0 +I (19556) example: new speed:399.000000 +I (19566) example: expect speed: 0.000000 real_pulses:0 +I (19566) example: new speed:399.000000 +I (19576) example: expect speed: 0.000000 real_pulses:0 +I (19576) example: new speed:399.000000 +I (19586) example: expect speed: 0.000000 real_pulses:0 +I (19586) example: new speed:399.000000 +I (19596) example: expect speed: 0.000000 real_pulses:0 +I (19596) example: new speed:399.000000 +I (19606) example: expect speed: 0.000000 real_pulses:0 +I (19606) example: new speed:399.000000 +I (19616) example: expect speed: 0.000000 real_pulses:0 +I (19616) example: new speed:399.000000 +I (19626) example: expect speed: 0.000000 real_pulses:0 +I (19626) example: new speed:399.000000 +I (19636) example: expect speed: 0.000000 real_pulses:0 +I (19636) example: new speed:399.000000 +I (19646) example: expect speed: 0.000000 real_pulses:0 +I (19646) example: new speed:399.000000 +I (19656) example: expect speed: 0.000000 real_pulses:0 +I (19656) example: new speed:399.000000 +I (19666) example: expect speed: 0.000000 real_pulses:0 +I (19666) example: new speed:399.000000 +I (19676) example: expect speed: 0.000000 real_pulses:0 +I (19676) example: new speed:399.000000 +I (19686) example: expect speed: 0.000000 real_pulses:0 +I (19686) example: new speed:399.000000 +I (19696) example: expect speed: 0.000000 real_pulses:0 +I (19696) example: new speed:399.000000 +I (19706) example: expect speed: 0.000000 real_pulses:0 +I (19706) example: new speed:399.000000 +I (19716) example: expect speed: 0.000000 real_pulses:0 +I (19716) example: new speed:399.000000 +I (19726) example: expect speed: 0.000000 real_pulses:0 +I (19726) example: new speed:399.000000 +I (19736) example: expect speed: 0.000000 real_pulses:0 +I (19736) example: new speed:399.000000 +I (19746) example: expect speed: 0.000000 real_pulses:0 +I (19746) example: new speed:399.000000 +I (19756) example: expect speed: 0.000000 real_pulses:0 +I (19756) example: new speed:399.000000 +I (19766) example: expect speed: 0.000000 real_pulses:0 +I (19766) example: new speed:399.000000 +I (19776) example: expect speed: 0.000000 real_pulses:0 +I (19776) example: new speed:399.000000 +I (19786) example: expect speed: 0.000000 real_pulses:0 +I (19786) example: new speed:399.000000 +I (19796) example: expect speed: 0.000000 real_pulses:0 +I (19796) example: new speed:399.000000 +I (19806) example: expect speed: 0.000000 real_pulses:0 +I (19806) example: new speed:399.000000 +I (19816) example: expect speed: 0.000000 real_pulses:0 +I (19816) example: new speed:399.000000 +I (19826) example: expect speed: 0.000000 real_pulses:0 +I (19826) example: new speed:399.000000 +I (19836) example: expect speed: 0.000000 real_pulses:0 +I (19836) example: new speed:399.000000 +I (19846) example: expect speed: 0.000000 real_pulses:0 +I (19846) example: new speed:399.000000 +I (19856) example: expect speed: 0.000000 real_pulses:0 +I (19856) example: new speed:399.000000 +I (19866) example: expect speed: 0.000000 real_pulses:0 +I (19866) example: new speed:399.000000 +I (19876) example: expect speed: 0.000000 real_pulses:0 +I (19876) example: new speed:399.000000 +I (19886) example: expect speed: 0.000000 real_pulses:0 +I (19886) example: new speed:399.000000 +I (19896) example: expect speed: 0.000000 real_pulses:0 +I (19896) example: new speed:399.000000 +I (19906) example: expect speed: 0.000000 real_pulses:0 +I (19906) example: new speed:399.000000 +I (19916) example: expect speed: 0.000000 real_pulses:0 +I (19916) example: new speed:399.000000 +I (19926) example: expect speed: 0.000000 real_pulses:0 +I (19926) example: new speed:399.000000 +I (19936) example: expect speed: 0.000000 real_pulses:0 +I (19936) example: new speed:399.000000 +I (19946) example: expect speed: 0.000000 real_pulses:0 +I (19946) example: new speed:399.000000 +I (19956) example: expect speed: 0.000000 real_pulses:0 +I (19956) example: new speed:399.000000 +I (19966) example: expect speed: 0.000000 real_pulses:0 +I (19966) example: new speed:399.000000 +I (19976) example: expect speed: 0.000000 real_pulses:0 +I (19976) example: new speed:399.000000 +I (19986) example: expect speed: 0.000000 real_pulses:0 +I (19986) example: new speed:399.000000 +I (19996) example: expect speed: 0.000000 real_pulses:0 +I (19996) example: new speed:399.000000 +I (20006) example: expect speed: 0.000000 real_pulses:0 +I (20006) example: new speed:399.000000 +I (20016) example: expect speed: 0.000000 real_pulses:0 +I (20016) example: new speed:399.000000 +I (20026) example: expect speed: 0.000000 real_pulses:0 +I (20026) example: new speed:399.000000 +I (20036) example: expect speed: 0.000000 real_pulses:0 +I (20036) example: new speed:399.000000 +I (20046) example: expect speed: 0.000000 real_pulses:0 +I (20046) example: new speed:399.000000 +I (20056) example: expect speed: 0.000000 real_pulses:0 +I (20056) example: new speed:399.000000 +I (20066) example: expect speed: 0.000000 real_pulses:0 +I (20066) example: new speed:399.000000 +I (20076) example: expect speed: 0.000000 real_pulses:0 +I (20076) example: new speed:399.000000 +I (20086) example: expect speed: 0.000000 real_pulses:0 +I (20086) example: new speed:399.000000 +I (20096) example: expect speed: 0.000000 real_pulses:0 +I (20096) example: new speed:399.000000 +I (20106) example: expect speed: 0.000000 real_pulses:0 +I (20106) example: new speed:399.000000 +I (20116) example: expect speed: 0.000000 real_pulses:0 +I (20116) example: new speed:399.000000 +I (20126) example: expect speed: 0.000000 real_pulses:0 +I (20126) example: new speed:399.000000 +I (20136) example: expect speed: 0.000000 real_pulses:0 +I (20136) example: new speed:399.000000 +I (20146) example: expect speed: 0.000000 real_pulses:0 +I (20146) example: new speed:399.000000 +I (20156) example: expect speed: 0.000000 real_pulses:0 +I (20156) example: new speed:399.000000 +I (20166) example: expect speed: 0.000000 real_pulses:0 +I (20166) example: new speed:399.000000 +I (20176) example: expect speed: 0.000000 real_pulses:0 +I (20176) example: new speed:399.000000 +I (20186) example: expect speed: 0.000000 real_pulses:0 +I (20186) example: new speed:399.000000 +I (20196) example: expect speed: 0.000000 real_pulses:0 +I (20196) example: new speed:399.000000 +I (20206) example: expect speed: 0.000000 real_pulses:0 +I (20206) example: new speed:399.000000 +I (20216) example: expect speed: 0.000000 real_pulses:0 +I (20216) example: new speed:399.000000 +I (20226) example: expect speed: 0.000000 real_pulses:0 +I (20226) example: new speed:399.000000 +I (20236) example: expect speed: 0.000000 real_pulses:0 +I (20236) example: new speed:399.000000 +I (20246) example: expect speed: 0.000000 real_pulses:0 +I (20246) example: new speed:399.000000 +I (20256) example: expect speed: 0.000000 real_pulses:0 +I (20256) example: new speed:399.000000 +I (20266) example: expect speed: 0.000000 real_pulses:0 +I (20266) example: new speed:399.000000 +I (20276) example: expect speed: 0.000000 real_pulses:0 +I (20276) example: new speed:399.000000 +I (20286) example: expect speed: 0.000000 real_pulses:0 +I (20286) example: new speed:399.000000 +I (20296) example: expect speed: 0.000000 real_pulses:0 +I (20296) example: new speed:399.000000 +I (20306) example: expect speed: 0.000000 real_pulses:0 +I (20306) example: new speed:399.000000 +I (20316) example: expect speed: 0.000000 real_pulses:0 +I (20316) example: new speed:399.000000 +I (20326) example: expect speed: 0.000000 real_pulses:0 +I (20326) example: new speed:399.000000 +I (20336) example: expect speed: 0.000000 real_pulses:0 +I (20336) example: new speed:399.000000 +I (20346) example: expect speed: 0.000000 real_pulses:0 +I (20346) example: new speed:399.000000 +I (20356) example: expect speed: 0.000000 real_pulses:0 +I (20356) example: new speed:399.000000 +I (20366) example: expect speed: 0.000000 real_pulses:0 +I (20366) example: new speed:399.000000 +I (20376) example: expect speed: 0.000000 real_pulses:0 +I (20376) example: new speed:399.000000 +I (20386) example: expect speed: 0.000000 real_pulses:0 +I (20386) example: new speed:399.000000 +I (20396) example: expect speed: 0.000000 real_pulses:0 +I (20396) example: new speed:399.000000 +I (20406) example: expect speed: 0.000000 real_pulses:0 +I (20406) example: new speed:399.000000 +I (20416) example: expect speed: 0.000000 real_pulses:0 +I (20416) example: new speed:399.000000 +I (20426) example: expect speed: 0.000000 real_pulses:0 +I (20426) example: new speed:399.000000 +I (20436) example: expect speed: 0.000000 real_pulses:0 +I (20436) example: new speed:399.000000 +I (20446) example: expect speed: 0.000000 real_pulses:0 +I (20446) example: new speed:399.000000 +I (20456) example: expect speed: 0.000000 real_pulses:0 +I (20456) example: new speed:399.000000 +I (20466) example: expect speed: 0.000000 real_pulses:0 +I (20466) example: new speed:399.000000 +I (20476) example: expect speed: 0.000000 real_pulses:0 +I (20476) example: new speed:399.000000 +I (20486) example: expect speed: 0.000000 real_pulses:0 +I (20486) example: new speed:399.000000 +I (20496) example: expect speed: 0.000000 real_pulses:0 +I (20496) example: new speed:399.000000 +I (20506) example: expect speed: 0.000000 real_pulses:0 +I (20506) example: new speed:399.000000 +I (20516) example: expect speed: 0.000000 real_pulses:0 +I (20516) example: new speed:399.000000 +I (20526) example: expect speed: 0.000000 real_pulses:0 +I (20526) example: new speed:399.000000 +I (20536) example: expect speed: 0.000000 real_pulses:0 +I (20536) example: new speed:399.000000 +I (20546) example: expect speed: 0.000000 real_pulses:0 +I (20546) example: new speed:399.000000 +I (20556) example: expect speed: 0.000000 real_pulses:0 +I (20556) example: new speed:399.000000 +I (20566) example: expect speed: 0.000000 real_pulses:0 +I (20566) example: new speed:399.000000 +I (20576) example: expect speed: 0.000000 real_pulses:0 +I (20576) example: new speed:399.000000 +I (20586) example: expect speed: 0.000000 real_pulses:0 +I (20586) example: new speed:399.000000 +I (20596) example: expect speed: 0.000000 real_pulses:0 +I (20596) example: new speed:399.000000 +I (20606) example: expect speed: 0.000000 real_pulses:0 +I (20606) example: new speed:399.000000 +I (20616) example: expect speed: 0.000000 real_pulses:0 +I (20616) example: new speed:399.000000 +I (20626) example: expect speed: 0.000000 real_pulses:0 +I (20626) example: new speed:399.000000 +I (20636) example: expect speed: 0.000000 real_pulses:0 +I (20636) example: new speed:399.000000 +I (20646) example: expect speed: 0.000000 real_pulses:0 +I (20646) example: new speed:399.000000 +I (20656) example: expect speed: 0.000000 real_pulses:0 +I (20656) example: new speed:399.000000 +I (20666) example: expect speed: 0.000000 real_pulses:0 +I (20666) example: new speed:399.000000 +I (20676) example: expect speed: 0.000000 real_pulses:0 +I (20676) example: new speed:399.000000 +I (20686) example: expect speed: 0.000000 real_pulses:0 +I (20686) example: new speed:399.000000 +I (20696) example: expect speed: 0.000000 real_pulses:0 +I (20696) example: new speed:399.000000 +I (20706) example: expect speed: 0.000000 real_pulses:0 +I (20706) example: new speed:399.000000 +I (20716) example: expect speed: 0.000000 real_pulses:0 +I (20716) example: new speed:399.000000 +I (20726) example: expect speed: 0.000000 real_pulses:0 +I (20726) example: new speed:399.000000 +I (20736) example: expect speed: 0.000000 real_pulses:0 +I (20736) example: new speed:399.000000 +I (20746) example: expect speed: 0.000000 real_pulses:0 +I (20746) example: new speed:399.000000 +I (20756) example: expect speed: 0.000000 real_pulses:0 +I (20756) example: new speed:399.000000 +I (20766) example: expect speed: 0.000000 real_pulses:0 +I (20766) example: new speed:399.000000 +I (20776) example: expect speed: 0.000000 real_pulses:0 +I (20776) example: new speed:399.000000 +I (20786) example: expect speed: 0.000000 real_pulses:0 +I (20786) example: new speed:399.000000 +I (20796) example: expect speed: 0.000000 real_pulses:0 +I (20796) example: new speed:399.000000 +I (20806) example: expect speed: 0.000000 real_pulses:0 +I (20806) example: new speed:399.000000 +I (20816) example: expect speed: 0.000000 real_pulses:0 +I (20816) example: new speed:399.000000 +I (20826) example: expect speed: 0.000000 real_pulses:0 +I (20826) example: new speed:399.000000 +I (20836) example: expect speed: 0.000000 real_pulses:0 +I (20836) example: new speed:399.000000 +I (20846) example: expect speed: 0.000000 real_pulses:0 +I (20846) example: new speed:399.000000 +I (20856) example: expect speed: 0.000000 real_pulses:0 +I (20856) example: new speed:399.000000 +I (20866) example: expect speed: 0.000000 real_pulses:0 +I (20866) example: new speed:399.000000 +I (20876) example: expect speed: 0.000000 real_pulses:0 +I (20876) example: new speed:399.000000 +I (20886) example: expect speed: 0.000000 real_pulses:0 +I (20886) example: new speed:399.000000 +I (20896) example: expect speed: 0.000000 real_pulses:0 +I (20896) example: new speed:399.000000 +I (20906) example: expect speed: 0.000000 real_pulses:0 +I (20906) example: new speed:399.000000 +I (20916) example: expect speed: 0.000000 real_pulses:0 +I (20916) example: new speed:399.000000 +I (20926) example: expect speed: 0.000000 real_pulses:0 +I (20926) example: new speed:399.000000 +I (20936) example: expect speed: 0.000000 real_pulses:0 +I (20936) example: new speed:399.000000 +I (20946) example: expect speed: 0.000000 real_pulses:0 +I (20946) example: new speed:399.000000 +I (20956) example: expect speed: 0.000000 real_pulses:0 +I (20956) example: new speed:399.000000 +I (20966) example: expect speed: 0.000000 real_pulses:0 +I (20966) example: new speed:399.000000 +I (20976) example: expect speed: 0.000000 real_pulses:0 +I (20976) example: new speed:399.000000 +I (20986) example: expect speed: 0.000000 real_pulses:0 +I (20986) example: new speed:399.000000 +I (20996) example: expect speed: 0.000000 real_pulses:0 +I (20996) example: new speed:399.000000 +I (21006) example: expect speed: 0.000000 real_pulses:0 +I (21006) example: new speed:399.000000 +I (21016) example: expect speed: 0.000000 real_pulses:0 +I (21016) example: new speed:399.000000 +I (21026) example: expect speed: 0.000000 real_pulses:0 +I (21026) example: new speed:399.000000 +I (21036) example: expect speed: 0.000000 real_pulses:0 +I (21036) example: new speed:399.000000 +I (21046) example: expect speed: 0.000000 real_pulses:0 +I (21046) example: new speed:399.000000 +I (21056) example: expect speed: 0.000000 real_pulses:0 +I (21056) example: new speed:399.000000 +I (21066) example: expect speed: 0.000000 real_pulses:0 +I (21066) example: new speed:399.000000 +I (21076) example: expect speed: 0.000000 real_pulses:0 +I (21076) example: new speed:399.000000 +I (21086) example: expect speed: 0.000000 real_pulses:0 +I (21086) example: new speed:399.000000 +I (21096) example: expect speed: 0.000000 real_pulses:0 +I (21096) example: new speed:399.000000 +I (21106) example: expect speed: 0.000000 real_pulses:0 +I (21106) example: new speed:399.000000 +I (21116) example: expect speed: 0.000000 real_pulses:0 +I (21116) example: new speed:399.000000 +I (21126) example: expect speed: 0.000000 real_pulses:0 +I (21126) example: new speed:399.000000 +I (21136) example: expect speed: 0.000000 real_pulses:0 +I (21136) example: new speed:399.000000 +I (21146) example: expect speed: 0.000000 real_pulses:0 +I (21146) example: new speed:399.000000 +I (21156) example: expect speed: 0.000000 real_pulses:0 +I (21156) example: new speed:399.000000 +I (21166) example: expect speed: 0.000000 real_pulses:0 +I (21166) example: new speed:399.000000 +I (21176) example: expect speed: 0.000000 real_pulses:0 +I (21176) example: new speed:399.000000 +I (21186) example: expect speed: 0.000000 real_pulses:0 +I (21186) example: new speed:399.000000 +I (21196) example: expect speed: 0.000000 real_pulses:0 +I (21196) example: new speed:399.000000 +I (21206) example: expect speed: 0.000000 real_pulses:0 +I (21206) example: new speed:399.000000 +I (21216) example: expect speed: 0.000000 real_pulses:0 +I (21216) example: new speed:399.000000 +I (21226) example: expect speed: 0.000000 real_pulses:0 +I (21226) example: new speed:399.000000 +I (21236) example: expect speed: 0.000000 real_pulses:0 +I (21236) example: new speed:399.000000 +I (21246) example: expect speed: 0.000000 real_pulses:0 +I (21246) example: new speed:399.000000 +I (21256) example: expect speed: 0.000000 real_pulses:0 +I (21256) example: new speed:399.000000 +I (21266) example: expect speed: 0.000000 real_pulses:0 +I (21266) example: new speed:399.000000 +I (21276) example: expect speed: 0.000000 real_pulses:0 +I (21276) example: new speed:399.000000 +I (21286) example: expect speed: 0.000000 real_pulses:0 +I (21286) example: new speed:399.000000 +I (21296) example: expect speed: 0.000000 real_pulses:0 +I (21296) example: new speed:399.000000 +I (21306) example: expect speed: 0.000000 real_pulses:0 +I (21306) example: new speed:399.000000 +I (21316) example: expect speed: 0.000000 real_pulses:0 +I (21316) example: new speed:399.000000 +I (21326) example: expect speed: 0.000000 real_pulses:0 +I (21326) example: new speed:399.000000 +I (21336) example: expect speed: 0.000000 real_pulses:0 +I (21336) example: new speed:399.000000 +I (21346) example: expect speed: 0.000000 real_pulses:0 +I (21346) example: new speed:399.000000 +I (21356) example: expect speed: 0.000000 real_pulses:0 +I (21356) example: new speed:399.000000 +I (21366) example: expect speed: 0.000000 real_pulses:0 +I (21366) example: new speed:399.000000 +I (21376) example: expect speed: 0.000000 real_pulses:0 +I (21376) example: new speed:399.000000 +I (21386) example: expect speed: 0.000000 real_pulses:0 +I (21386) example: new speed:399.000000 +I (21396) example: expect speed: 0.000000 real_pulses:0 +I (21396) example: new speed:399.000000 +I (21406) example: expect speed: 0.000000 real_pulses:0 +I (21406) example: new speed:399.000000 +I (21416) example: expect speed: 0.000000 real_pulses:0 +I (21416) example: new speed:399.000000 +I (21426) example: expect speed: 0.000000 real_pulses:0 +I (21426) example: new speed:399.000000 +I (21436) example: expect speed: 0.000000 real_pulses:0 +I (21436) example: new speed:399.000000 +I (21446) example: expect speed: 0.000000 real_pulses:0 +I (21446) example: new speed:399.000000 +I (21456) example: expect speed: 0.000000 real_pulses:0 +I (21456) example: new speed:399.000000 +I (21466) example: expect speed: 0.000000 real_pulses:0 +I (21466) example: new speed:399.000000 +I (21476) example: expect speed: 0.000000 real_pulses:0 +I (21476) example: new speed:399.000000 +I (21486) example: expect speed: 0.000000 real_pulses:0 +I (21486) example: new speed:399.000000 +I (21496) example: expect speed: 0.000000 real_pulses:0 +I (21496) example: new speed:399.000000 +I (21506) example: expect speed: 0.000000 real_pulses:0 +I (21506) example: new speed:399.000000 +I (21516) example: expect speed: 0.000000 real_pulses:0 +I (21516) example: new speed:399.000000 +I (21526) example: expect speed: 0.000000 real_pulses:0 +I (21526) example: new speed:399.000000 +I (21536) example: expect speed: 0.000000 real_pulses:0 +I (21536) example: new speed:399.000000 +I (21546) example: expect speed: 0.000000 real_pulses:0 +I (21546) example: new speed:399.000000 +I (21556) example: expect speed: 0.000000 real_pulses:0 +I (21556) example: new speed:399.000000 +I (21566) example: expect speed: 0.000000 real_pulses:0 +I (21566) example: new speed:399.000000 +I (21576) example: expect speed: 0.000000 real_pulses:0 +I (21576) example: new speed:399.000000 +I (21586) example: expect speed: 0.000000 real_pulses:0 +I (21586) example: new speed:399.000000 +I (21596) example: expect speed: 0.000000 real_pulses:0 +I (21596) example: new speed:399.000000 +I (21606) example: expect speed: 0.000000 real_pulses:0 +I (21606) example: new speed:399.000000 +I (21616) example: expect speed: 0.000000 real_pulses:0 +I (21616) example: new speed:399.000000 +I (21626) example: expect speed: 0.000000 real_pulses:0 +I (21626) example: new speed:399.000000 +I (21636) example: expect speed: 0.000000 real_pulses:0 +I (21636) example: new speed:399.000000 +I (21646) example: expect speed: 0.000000 real_pulses:0 +I (21646) example: new speed:399.000000 +I (21656) example: expect speed: 0.000000 real_pulses:0 +I (21656) example: new speed:399.000000 +I (21666) example: expect speed: 0.000000 real_pulses:0 +I (21666) example: new speed:399.000000 +I (21676) example: expect speed: 0.000000 real_pulses:0 +I (21676) example: new speed:399.000000 +I (21686) example: expect speed: 0.000000 real_pulses:0 +I (21686) example: new speed:399.000000 +I (21696) example: expect speed: 0.000000 real_pulses:0 +I (21696) example: new speed:399.000000 +I (21706) example: expect speed: 0.000000 real_pulses:0 +I (21706) example: new speed:399.000000 +I (21716) example: expect speed: 0.000000 real_pulses:0 +I (21716) example: new speed:399.000000 +I (21726) example: expect speed: 0.000000 real_pulses:0 +I (21726) example: new speed:399.000000 +I (21736) example: expect speed: 0.000000 real_pulses:0 +I (21736) example: new speed:399.000000 +I (21746) example: expect speed: 0.000000 real_pulses:0 +I (21746) example: new speed:399.000000 +I (21756) example: expect speed: 0.000000 real_pulses:0 +I (21756) example: new speed:399.000000 +I (21766) example: expect speed: 0.000000 real_pulses:0 +I (21766) example: new speed:399.000000 +I (21776) example: expect speed: 0.000000 real_pulses:0 +I (21776) example: new speed:399.000000 +I (21786) example: expect speed: 0.000000 real_pulses:0 +I (21786) example: new speed:399.000000 +I (21796) example: expect speed: 0.000000 real_pulses:0 +I (21796) example: new speed:399.000000 +I (21806) example: expect speed: 0.000000 real_pulses:0 +I (21806) example: new speed:399.000000 +I (21816) example: expect speed: 0.000000 real_pulses:0 +I (21816) example: new speed:399.000000 +I (21826) example: expect speed: 0.000000 real_pulses:0 +I (21826) example: new speed:399.000000 +I (21836) example: expect speed: 0.000000 real_pulses:0 +I (21836) example: new speed:399.000000 +I (21846) example: expect speed: 0.000000 real_pulses:0 +I (21846) example: new speed:399.000000 +I (21856) example: expect speed: 0.000000 real_pulses:0 +I (21856) example: new speed:399.000000 +I (21866) example: expect speed: 0.000000 real_pulses:0 +I (21866) example: new speed:399.000000 +I (21876) example: expect speed: 0.000000 real_pulses:0 +I (21876) example: new speed:399.000000 +I (21886) example: expect speed: 0.000000 real_pulses:0 +I (21886) example: new speed:399.000000 +I (21896) example: expect speed: 0.000000 real_pulses:0 +I (21896) example: new speed:399.000000 +I (21906) example: expect speed: 0.000000 real_pulses:0 +I (21906) example: new speed:399.000000 +I (21916) example: expect speed: 0.000000 real_pulses:0 +I (21916) example: new speed:399.000000 +I (21926) example: expect speed: 0.000000 real_pulses:0 +I (21926) example: new speed:399.000000 +I (21936) example: expect speed: 0.000000 real_pulses:0 +I (21936) example: new speed:399.000000 +I (21946) example: expect speed: 0.000000 real_pulses:0 +I (21946) example: new speed:399.000000 +I (21956) example: expect speed: 0.000000 real_pulses:0 +I (21956) example: new speed:399.000000 +I (21966) example: expect speed: 0.000000 real_pulses:0 +I (21966) example: new speed:399.000000 +I (21976) example: expect speed: 0.000000 real_pulses:0 +I (21976) example: new speed:399.000000 +I (21986) example: expect speed: 0.000000 real_pulses:0 +I (21986) example: new speed:399.000000 +I (21996) example: expect speed: 0.000000 real_pulses:0 +I (21996) example: new speed:399.000000 +I (22006) example: expect speed: 0.000000 real_pulses:0 +I (22006) example: new speed:399.000000 +I (22016) example: expect speed: 0.000000 real_pulses:0 +I (22016) example: new speed:399.000000 +I (22026) example: expect speed: 0.000000 real_pulses:0 +I (22026) example: new speed:399.000000 +I (22036) example: expect speed: 0.000000 real_pulses:0 +I (22036) example: new speed:399.000000 +I (22046) example: expect speed: 0.000000 real_pulses:0 +I (22046) example: new speed:399.000000 +I (22056) example: expect speed: 0.000000 real_pulses:0 +I (22056) example: new speed:399.000000 +I (22066) example: expect speed: 0.000000 real_pulses:0 +I (22066) example: new speed:399.000000 +I (22076) example: expect speed: 0.000000 real_pulses:0 +I (22076) example: new speed:399.000000 +I (22086) example: expect speed: 0.000000 real_pulses:0 +I (22086) example: new speed:399.000000 +I (22096) example: expect speed: 0.000000 real_pulses:0 +I (22096) example: new speed:399.000000 +I (22106) example: expect speed: 0.000000 real_pulses:0 +I (22106) example: new speed:399.000000 +I (22116) example: expect speed: 0.000000 real_pulses:0 +I (22116) example: new speed:399.000000 +I (22126) example: expect speed: 0.000000 real_pulses:0 +I (22126) example: new speed:399.000000 +I (22136) example: expect speed: 0.000000 real_pulses:0 +I (22136) example: new speed:399.000000 +I (22146) example: expect speed: 0.000000 real_pulses:0 +I (22146) example: new speed:399.000000 +I (22156) example: expect speed: 0.000000 real_pulses:0 +I (22156) example: new speed:399.000000 +I (22166) example: expect speed: 0.000000 real_pulses:0 +I (22166) example: new speed:399.000000 +I (22176) example: expect speed: 0.000000 real_pulses:0 +I (22176) example: new speed:399.000000 +I (22186) example: expect speed: 0.000000 real_pulses:0 +I (22186) example: new speed:399.000000 +I (22196) example: expect speed: 0.000000 real_pulses:0 +I (22196) example: new speed:399.000000 +I (22206) example: expect speed: 0.000000 real_pulses:0 +I (22206) example: new speed:399.000000 +I (22216) example: expect speed: 0.000000 real_pulses:0 +I (22216) example: new speed:399.000000 +I (22226) example: expect speed: 0.000000 real_pulses:0 +I (22226) example: new speed:399.000000 +I (22236) example: expect speed: 0.000000 real_pulses:0 +I (22236) example: new speed:399.000000 +I (22246) example: expect speed: 0.000000 real_pulses:0 +I (22246) example: new speed:399.000000 +I (22256) example: expect speed: 0.000000 real_pulses:0 +I (22256) example: new speed:399.000000 +I (22266) example: expect speed: 0.000000 real_pulses:0 +I (22266) example: new speed:399.000000 +I (22276) example: expect speed: 0.000000 real_pulses:0 +I (22276) example: new speed:399.000000 +I (22286) example: expect speed: 0.000000 real_pulses:0 +I (22286) example: new speed:399.000000 +I (22296) example: expect speed: 0.000000 real_pulses:0 +I (22296) example: new speed:399.000000 +I (22306) example: expect speed: 0.000000 real_pulses:0 +I (22306) example: new speed:399.000000 +I (22316) example: expect speed: 0.000000 real_pulses:0 +I (22316) example: new speed:399.000000 +I (22326) example: expect speed: 0.000000 real_pulses:0 +I (22326) example: new speed:399.000000 +I (22336) example: expect speed: 0.000000 real_pulses:0 +I (22336) example: new speed:399.000000 +I (22346) example: expect speed: 0.000000 real_pulses:0 +I (22346) example: new speed:399.000000 +I (22356) example: expect speed: 0.000000 real_pulses:0 +I (22356) example: new speed:399.000000 +I (22366) example: expect speed: 0.000000 real_pulses:0 +I (22366) example: new speed:399.000000 +I (22376) example: expect speed: 0.000000 real_pulses:0 +I (22376) example: new speed:399.000000 +I (22386) example: expect speed: 0.000000 real_pulses:0 +I (22386) example: new speed:399.000000 +I (22396) example: expect speed: 0.000000 real_pulses:0 +I (22396) example: new speed:399.000000 +I (22406) example: expect speed: 0.000000 real_pulses:0 +I (22406) example: new speed:399.000000 +I (22416) example: expect speed: 0.000000 real_pulses:0 +I (22416) example: new speed:399.000000 +I (22426) example: expect speed: 0.000000 real_pulses:0 +I (22426) example: new speed:399.000000 +I (22436) example: expect speed: 0.000000 real_pulses:0 +I (22436) example: new speed:399.000000 +I (22446) example: expect speed: 0.000000 real_pulses:0 +I (22446) example: new speed:399.000000 +I (22456) example: expect speed: 0.000000 real_pulses:0 +I (22456) example: new speed:399.000000 +I (22466) example: expect speed: 0.000000 real_pulses:0 +I (22466) example: new speed:399.000000 +I (22476) example: expect speed: 0.000000 real_pulses:0 +I (22476) example: new speed:399.000000 +I (22486) example: expect speed: 0.000000 real_pulses:0 +I (22486) example: new speed:399.000000 +I (22496) example: expect speed: 0.000000 real_pulses:0 +I (22496) example: new speed:399.000000 +I (22506) example: expect speed: 0.000000 real_pulses:0 +I (22506) example: new speed:399.000000 +I (22516) example: expect speed: 0.000000 real_pulses:0 +I (22516) example: new speed:399.000000 +I (22526) example: expect speed: 0.000000 real_pulses:0 +I (22526) example: new speed:399.000000 +I (22536) example: expect speed: 0.000000 real_pulses:0 +I (22536) example: new speed:399.000000 +I (22546) example: expect speed: 0.000000 real_pulses:0 +I (22546) example: new speed:399.000000 +I (22556) example: expect speed: 0.000000 real_pulses:0 +I (22556) example: new speed:399.000000 +I (22566) example: expect speed: 0.000000 real_pulses:0 +I (22566) example: new speed:399.000000 +I (22576) example: expect speed: 0.000000 real_pulses:0 +I (22576) example: new speed:399.000000 +I (22586) example: expect speed: 0.000000 real_pulses:0 +I (22586) example: new speed:399.000000 +I (22596) example: expect speed: 0.000000 real_pulses:0 +I (22596) example: new speed:399.000000 +I (22606) example: expect speed: 0.000000 real_pulses:0 +I (22606) example: new speed:399.000000 +I (22616) example: expect speed: 0.000000 real_pulses:0 +I (22616) example: new speed:399.000000 +I (22626) example: expect speed: 0.000000 real_pulses:0 +I (22626) example: new speed:399.000000 +I (22636) example: expect speed: 0.000000 real_pulses:0 +I (22636) example: new speed:399.000000 +I (22646) example: expect speed: 0.000000 real_pulses:0 +I (22646) example: new speed:399.000000 +I (22656) example: expect speed: 0.000000 real_pulses:0 +I (22656) example: new speed:399.000000 +I (22666) example: expect speed: 0.000000 real_pulses:0 +I (22666) example: new speed:399.000000 +I (22676) example: expect speed: 0.000000 real_pulses:0 +I (22676) example: new speed:399.000000 +I (22686) example: expect speed: 0.000000 real_pulses:0 +I (22686) example: new speed:399.000000 +I (22696) example: expect speed: 0.000000 real_pulses:0 +I (22696) example: new speed:399.000000 +I (22706) example: expect speed: 0.000000 real_pulses:0 +I (22706) example: new speed:399.000000 +I (22716) example: expect speed: 0.000000 real_pulses:0 +I (22716) example: new speed:399.000000 +I (22726) example: expect speed: 0.000000 real_pulses:0 +I (22726) example: new speed:399.000000 +I (22736) example: expect speed: 0.000000 real_pulses:0 +I (22736) example: new speed:399.000000 +I (22746) example: expect speed: 0.000000 real_pulses:0 +I (22746) example: new speed:399.000000 +I (22756) example: expect speed: 0.000000 real_pulses:0 +I (22756) example: new speed:399.000000 +I (22766) example: expect speed: 0.000000 real_pulses:0 +I (22766) example: new speed:399.000000 +I (22776) example: expect speed: 0.000000 real_pulses:0 +I (22776) example: new speed:399.000000 +I (22786) example: expect speed: 0.000000 real_pulses:0 +I (22786) example: new speed:399.000000 +I (22796) example: expect speed: 0.000000 real_pulses:0 +I (22796) example: new speed:399.000000 +I (22806) example: expect speed: 0.000000 real_pulses:0 +I (22806) example: new speed:399.000000 +I (22816) example: expect speed: 0.000000 real_pulses:0 +I (22816) example: new speed:399.000000 +I (22826) example: expect speed: 0.000000 real_pulses:0 +I (22826) example: new speed:399.000000 +I (22836) example: expect speed: 0.000000 real_pulses:0 +I (22836) example: new speed:399.000000 +I (22846) example: expect speed: 0.000000 real_pulses:0 +I (22846) example: new speed:399.000000 +I (22856) example: expect speed: 0.000000 real_pulses:0 +I (22856) example: new speed:399.000000 +I (22866) example: expect speed: 0.000000 real_pulses:0 +I (22866) example: new speed:399.000000 +I (22876) example: expect speed: 0.000000 real_pulses:0 +I (22876) example: new speed:399.000000 +I (22886) example: expect speed: 0.000000 real_pulses:0 +I (22886) example: new speed:399.000000 +I (22896) example: expect speed: 0.000000 real_pulses:0 +I (22896) example: new speed:399.000000 +I (22906) example: expect speed: 0.000000 real_pulses:0 +I (22906) example: new speed:399.000000 +I (22916) example: expect speed: 0.000000 real_pulses:0 +I (22916) example: new speed:399.000000 +I (22926) example: expect speed: 0.000000 real_pulses:0 +I (22926) example: new speed:399.000000 +I (22936) example: expect speed: 0.000000 real_pulses:0 +I (22936) example: new speed:399.000000 +I (22946) example: expect speed: 0.000000 real_pulses:0 +I (22946) example: new speed:399.000000 +I (22956) example: expect speed: 0.000000 real_pulses:0 +I (22956) example: new speed:399.000000 +I (22966) example: expect speed: 0.000000 real_pulses:0 +I (22966) example: new speed:399.000000 +I (22976) example: expect speed: 0.000000 real_pulses:0 +I (22976) example: new speed:399.000000 +I (22986) example: expect speed: 0.000000 real_pulses:0 +I (22986) example: new speed:399.000000 +I (22996) example: expect speed: 0.000000 real_pulses:0 +I (22996) example: new speed:399.000000 +I (23006) example: expect speed: 0.000000 real_pulses:0 +I (23006) example: new speed:399.000000 +I (23016) example: expect speed: 0.000000 real_pulses:0 +I (23016) example: new speed:399.000000 +I (23026) example: expect speed: 0.000000 real_pulses:0 +I (23026) example: new speed:399.000000 +I (23036) example: expect speed: 0.000000 real_pulses:0 +I (23036) example: new speed:399.000000 +I (23046) example: expect speed: 0.000000 real_pulses:0 +I (23046) example: new speed:399.000000 +I (23056) example: expect speed: 0.000000 real_pulses:0 +I (23056) example: new speed:399.000000 +I (23066) example: expect speed: 0.000000 real_pulses:0 +I (23066) example: new speed:399.000000 +I (23076) example: expect speed: 0.000000 real_pulses:0 +I (23076) example: new speed:399.000000 +I (23086) example: expect speed: 0.000000 real_pulses:0 +I (23086) example: new speed:399.000000 +I (23096) example: expect speed: 0.000000 real_pulses:0 +I (23096) example: new speed:399.000000 +I (23106) example: expect speed: 0.000000 real_pulses:0 +I (23106) example: new speed:399.000000 +I (23116) example: expect speed: 0.000000 real_pulses:0 +I (23116) example: new speed:399.000000 +I (23126) example: expect speed: 0.000000 real_pulses:0 +I (23126) example: new speed:399.000000 +I (23136) example: expect speed: 0.000000 real_pulses:0 +I (23136) example: new speed:399.000000 +I (23146) example: expect speed: 0.000000 real_pulses:0 +I (23146) example: new speed:399.000000 +I (23156) example: expect speed: 0.000000 real_pulses:0 +I (23156) example: new speed:399.000000 +I (23166) example: expect speed: 0.000000 real_pulses:0 +I (23166) example: new speed:399.000000 +I (23176) example: expect speed: 0.000000 real_pulses:0 +I (23176) example: new speed:399.000000 +I (23186) example: expect speed: 0.000000 real_pulses:0 +I (23186) example: new speed:399.000000 +I (23196) example: expect speed: 0.000000 real_pulses:0 +I (23196) example: new speed:399.000000 +I (23206) example: expect speed: 0.000000 real_pulses:0 +I (23206) example: new speed:399.000000 +I (23216) example: expect speed: 0.000000 real_pulses:0 +I (23216) example: new speed:399.000000 +I (23226) example: expect speed: 0.000000 real_pulses:0 +I (23226) example: new speed:399.000000 +I (23236) example: expect speed: 0.000000 real_pulses:0 +I (23236) example: new speed:399.000000 +I (23246) example: expect speed: 0.000000 real_pulses:0 +I (23246) example: new speed:399.000000 +I (23256) example: expect speed: 0.000000 real_pulses:0 +I (23256) example: new speed:399.000000 +I (23266) example: expect speed: 0.000000 real_pulses:0 +I (23266) example: new speed:399.000000 +I (23276) example: expect speed: 0.000000 real_pulses:0 +I (23276) example: new speed:399.000000 +I (23286) example: expect speed: 0.000000 real_pulses:0 +I (23286) example: new speed:399.000000 +I (23296) example: expect speed: 0.000000 real_pulses:0 +I (23296) example: new speed:399.000000 +I (23306) example: expect speed: 0.000000 real_pulses:0 +I (23306) example: new speed:399.000000 +I (23316) example: expect speed: 0.000000 real_pulses:0 +I (23316) example: new speed:399.000000 +I (23326) example: expect speed: 0.000000 real_pulses:0 +I (23326) example: new speed:399.000000 +I (23336) example: expect speed: 0.000000 real_pulses:0 +I (23336) example: new speed:399.000000 +I (23346) example: expect speed: 0.000000 real_pulses:0 +I (23346) example: new speed:399.000000 +I (23356) example: expect speed: 0.000000 real_pulses:0 +I (23356) example: new speed:399.000000 +I (23366) example: expect speed: 0.000000 real_pulses:0 +I (23366) example: new speed:399.000000 +I (23376) example: expect speed: 0.000000 real_pulses:0 +I (23376) example: new speed:399.000000 +I (23386) example: expect speed: 0.000000 real_pulses:0 +I (23386) example: new speed:399.000000 +I (23396) example: expect speed: 0.000000 real_pulses:0 +I (23396) example: new speed:399.000000 +I (23406) example: expect speed: 0.000000 real_pulses:0 +I (23406) example: new speed:399.000000 +I (23416) example: expect speed: 0.000000 real_pulses:0 +I (23416) example: new speed:399.000000 +I (23426) example: expect speed: 0.000000 real_pulses:0 +I (23426) example: new speed:399.000000 +I (23436) example: expect speed: 0.000000 real_pulses:0 +I (23436) example: new speed:399.000000 +I (23446) example: expect speed: 0.000000 real_pulses:0 +I (23446) example: new speed:399.000000 +I (23456) example: expect speed: 0.000000 real_pulses:0 +I (23456) example: new speed:399.000000 +I (23466) example: expect speed: 0.000000 real_pulses:0 +I (23466) example: new speed:399.000000 +I (23476) example: expect speed: 0.000000 real_pulses:0 +I (23476) example: new speed:399.000000 +I (23486) example: expect speed: 0.000000 real_pulses:0 +I (23486) example: new speed:399.000000 +I (23496) example: expect speed: 0.000000 real_pulses:0 +I (23496) example: new speed:399.000000 +I (23506) example: expect speed: 0.000000 real_pulses:0 +I (23506) example: new speed:399.000000 +I (23516) example: expect speed: 0.000000 real_pulses:0 +I (23516) example: new speed:399.000000 +I (23526) example: expect speed: 0.000000 real_pulses:0 +I (23526) example: new speed:399.000000 +I (23536) example: expect speed: 0.000000 real_pulses:0 +I (23536) example: new speed:399.000000 +I (23546) example: expect speed: 0.000000 real_pulses:0 +I (23546) example: new speed:399.000000 +I (23556) example: expect speed: 0.000000 real_pulses:0 +I (23556) example: new speed:399.000000 +I (23566) example: expect speed: 0.000000 real_pulses:0 +I (23566) example: new speed:399.000000 +I (23576) example: expect speed: 0.000000 real_pulses:0 +I (23576) example: new speed:399.000000 +I (23586) example: expect speed: 0.000000 real_pulses:0 +I (23586) example: new speed:399.000000 +I (23596) example: expect speed: 0.000000 real_pulses:0 +I (23596) example: new speed:399.000000 +I (23606) example: expect speed: 0.000000 real_pulses:0 +I (23606) example: new speed:399.000000 +I (23616) example: expect speed: 0.000000 real_pulses:0 +I (23616) example: new speed:399.000000 +I (23626) example: expect speed: 0.000000 real_pulses:0 +I (23626) example: new speed:399.000000 +I (23636) example: expect speed: 0.000000 real_pulses:0 +I (23636) example: new speed:399.000000 +I (23646) example: expect speed: 0.000000 real_pulses:0 +I (23646) example: new speed:399.000000 +I (23656) example: expect speed: 0.000000 real_pulses:0 +I (23656) example: new speed:399.000000 +I (23666) example: expect speed: 0.000000 real_pulses:0 +I (23666) example: new speed:399.000000 +I (23676) example: expect speed: 0.000000 real_pulses:0 +I (23676) example: new speed:399.000000 +I (23686) example: expect speed: 0.000000 real_pulses:0 +I (23686) example: new speed:399.000000 +I (23696) example: expect speed: 0.000000 real_pulses:0 +I (23696) example: new speed:399.000000 +I (23706) example: expect speed: 0.000000 real_pulses:0 +I (23706) example: new speed:399.000000 +I (23716) example: expect speed: 0.000000 real_pulses:0 +I (23716) example: new speed:399.000000 +I (23726) example: expect speed: 0.000000 real_pulses:0 +I (23726) example: new speed:399.000000 +I (23736) example: expect speed: 0.000000 real_pulses:0 +I (23736) example: new speed:399.000000 +I (23746) example: expect speed: 0.000000 real_pulses:0 +I (23746) example: new speed:399.000000 +I (23756) example: expect speed: 0.000000 real_pulses:0 +I (23756) example: new speed:399.000000 +I (23766) example: expect speed: 0.000000 real_pulses:0 +I (23766) example: new speed:399.000000 +I (23776) example: expect speed: 0.000000 real_pulses:0 +I (23776) example: new speed:399.000000 +I (23786) example: expect speed: 0.000000 real_pulses:0 +I (23786) example: new speed:399.000000 +I (23796) example: expect speed: 0.000000 real_pulses:0 +I (23796) example: new speed:399.000000 +I (23806) example: expect speed: 0.000000 real_pulses:0 +I (23806) example: new speed:399.000000 +I (23816) example: expect speed: 0.000000 real_pulses:0 +I (23816) example: new speed:399.000000 +I (23826) example: expect speed: 0.000000 real_pulses:0 +I (23826) example: new speed:399.000000 +I (23836) example: expect speed: 0.000000 real_pulses:0 +I (23836) example: new speed:399.000000 +I (23846) example: expect speed: 0.000000 real_pulses:0 +I (23846) example: new speed:399.000000 +I (23856) example: expect speed: 0.000000 real_pulses:0 +I (23856) example: new speed:399.000000 +I (23866) example: expect speed: 0.000000 real_pulses:0 +I (23866) example: new speed:399.000000 +I (23876) example: expect speed: 0.000000 real_pulses:0 +I (23876) example: new speed:399.000000 +I (23886) example: expect speed: 0.000000 real_pulses:0 +I (23886) example: new speed:399.000000 +I (23896) example: expect speed: 0.000000 real_pulses:0 +I (23896) example: new speed:399.000000 +I (23906) example: expect speed: 0.000000 real_pulses:0 +I (23906) example: new speed:399.000000 +I (23916) example: expect speed: 0.000000 real_pulses:0 +I (23916) example: new speed:399.000000 +I (23926) example: expect speed: 0.000000 real_pulses:0 +I (23926) example: new speed:399.000000 +I (23936) example: expect speed: 0.000000 real_pulses:0 +I (23936) example: new speed:399.000000 +I (23946) example: expect speed: 0.000000 real_pulses:0 +I (23946) example: new speed:399.000000 +I (23956) example: expect speed: 0.000000 real_pulses:0 +I (23956) example: new speed:399.000000 +I (23966) example: expect speed: 0.000000 real_pulses:0 +I (23966) example: new speed:399.000000 +I (23976) example: expect speed: 0.000000 real_pulses:0 +I (23976) example: new speed:399.000000 +I (23986) example: expect speed: 0.000000 real_pulses:0 +I (23986) example: new speed:399.000000 +I (23996) example: expect speed: 0.000000 real_pulses:0 +I (23996) example: new speed:399.000000 +I (24006) example: expect speed: 0.000000 real_pulses:0 +I (24006) example: new speed:399.000000 +I (24016) example: expect speed: 0.000000 real_pulses:0 +I (24016) example: new speed:399.000000 +I (24026) example: expect speed: 0.000000 real_pulses:0 +I (24026) example: new speed:399.000000 +I (24036) example: expect speed: 0.000000 real_pulses:0 +I (24036) example: new speed:399.000000 +I (24046) example: expect speed: 0.000000 real_pulses:0 +I (24046) example: new speed:399.000000 +I (24056) example: expect speed: 0.000000 real_pulses:0 +I (24056) example: new speed:399.000000 +I (24066) example: expect speed: 0.000000 real_pulses:0 +I (24066) example: new speed:399.000000 +I (24076) example: expect speed: 0.000000 real_pulses:0 +I (24076) example: new speed:399.000000 +I (24086) example: expect speed: 0.000000 real_pulses:0 +I (24086) example: new speed:399.000000 +I (24096) example: expect speed: 0.000000 real_pulses:0 +I (24096) example: new speed:399.000000 +I (24106) example: expect speed: 0.000000 real_pulses:0 +I (24106) example: new speed:399.000000 +I (24116) example: expect speed: 0.000000 real_pulses:0 +I (24116) example: new speed:399.000000 +I (24126) example: expect speed: 0.000000 real_pulses:0 +I (24126) example: new speed:399.000000 +I (24136) example: expect speed: 0.000000 real_pulses:0 +I (24136) example: new speed:399.000000 +I (24146) example: expect speed: 0.000000 real_pulses:0 +I (24146) example: new speed:399.000000 +I (24156) example: expect speed: 0.000000 real_pulses:0 +I (24156) example: new speed:399.000000 +I (24166) example: expect speed: 0.000000 real_pulses:0 +I (24166) example: new speed:399.000000 +I (24176) example: expect speed: 0.000000 real_pulses:0 +I (24176) example: new speed:399.000000 +I (24186) example: expect speed: 0.000000 real_pulses:0 +I (24186) example: new speed:399.000000 +I (24196) example: expect speed: 0.000000 real_pulses:0 +I (24196) example: new speed:399.000000 +I (24206) example: expect speed: 0.000000 real_pulses:0 +I (24206) example: new speed:399.000000 +I (24216) example: expect speed: 0.000000 real_pulses:0 +I (24216) example: new speed:399.000000 +I (24226) example: expect speed: 0.000000 real_pulses:0 +I (24226) example: new speed:399.000000 +I (24236) example: expect speed: 0.000000 real_pulses:0 +I (24236) example: new speed:399.000000 +I (24246) example: expect speed: 0.000000 real_pulses:0 +I (24246) example: new speed:399.000000 +I (24256) example: expect speed: 0.000000 real_pulses:0 +I (24256) example: new speed:399.000000 +I (24266) example: expect speed: 0.000000 real_pulses:0 +I (24266) example: new speed:399.000000 +I (24276) example: expect speed: 0.000000 real_pulses:0 +I (24276) example: new speed:399.000000 +I (24286) example: expect speed: 0.000000 real_pulses:0 +I (24286) example: new speed:399.000000 +I (24296) example: expect speed: 0.000000 real_pulses:0 +I (24296) example: new speed:399.000000 +I (24306) example: expect speed: 0.000000 real_pulses:0 +I (24306) example: new speed:399.000000 +I (24316) example: expect speed: 0.000000 real_pulses:0 +I (24316) example: new speed:399.000000 +I (24326) example: expect speed: 0.000000 real_pulses:0 +I (24326) example: new speed:399.000000 +I (24336) example: expect speed: 0.000000 real_pulses:0 +I (24336) example: new speed:399.000000 +I (24346) example: expect speed: 0.000000 real_pulses:0 +I (24346) example: new speed:399.000000 +I (24356) example: expect speed: 0.000000 real_pulses:0 +I (24356) example: new speed:399.000000 +I (24366) example: expect speed: 0.000000 real_pulses:0 +I (24366) example: new speed:399.000000 +I (24376) example: expect speed: 0.000000 real_pulses:0 +I (24376) example: new speed:399.000000 +I (24386) example: expect speed: 0.000000 real_pulses:0 +I (24386) example: new speed:399.000000 +I (24396) example: expect speed: 0.000000 real_pulses:0 +I (24396) example: new speed:399.000000 +I (24406) example: expect speed: 0.000000 real_pulses:0 +I (24406) example: new speed:399.000000 +I (24416) example: expect speed: 0.000000 real_pulses:0 +I (24416) example: new speed:399.000000 +I (24426) example: expect speed: 0.000000 real_pulses:0 +I (24426) example: new speed:399.000000 +I (24436) example: expect speed: 0.000000 real_pulses:0 +I (24436) example: new speed:399.000000 +I (24446) example: expect speed: 0.000000 real_pulses:0 +I (24446) example: new speed:399.000000 +I (24456) example: expect speed: 0.000000 real_pulses:0 +I (24456) example: new speed:399.000000 +I (24466) example: expect speed: 0.000000 real_pulses:0 +I (24466) example: new speed:399.000000 +I (24476) example: expect speed: 0.000000 real_pulses:0 +I (24476) example: new speed:399.000000 +I (24486) example: expect speed: 0.000000 real_pulses:0 +I (24486) example: new speed:399.000000 +I (24496) example: expect speed: 0.000000 real_pulses:0 +I (24496) example: new speed:399.000000 +I (24506) example: expect speed: 0.000000 real_pulses:0 +I (24506) example: new speed:399.000000 +I (24516) example: expect speed: 0.000000 real_pulses:0 +I (24516) example: new speed:399.000000 +I (24526) example: expect speed: 0.000000 real_pulses:0 +I (24526) example: new speed:399.000000 +I (24536) example: expect speed: 0.000000 real_pulses:0 +I (24536) example: new speed:399.000000 +I (24546) example: expect speed: 0.000000 real_pulses:0 +I (24546) example: new speed:399.000000 +I (24556) example: expect speed: 0.000000 real_pulses:0 +I (24556) example: new speed:399.000000 +I (24566) example: expect speed: 0.000000 real_pulses:0 +I (24566) example: new speed:399.000000 +I (24576) example: expect speed: 0.000000 real_pulses:0 +I (24576) example: new speed:399.000000 +I (24586) example: expect speed: 0.000000 real_pulses:0 +I (24586) example: new speed:399.000000 +I (24596) example: expect speed: 0.000000 real_pulses:0 +I (24596) example: new speed:399.000000 +I (24606) example: expect speed: 0.000000 real_pulses:0 +I (24606) example: new speed:399.000000 +I (24616) example: expect speed: 0.000000 real_pulses:0 +I (24616) example: new speed:399.000000 +I (24626) example: expect speed: 0.000000 real_pulses:0 +I (24626) example: new speed:399.000000 +I (24636) example: expect speed: 0.000000 real_pulses:0 +I (24636) example: new speed:399.000000 +I (24646) example: expect speed: 0.000000 real_pulses:0 +I (24646) example: new speed:399.000000 +I (24656) example: expect speed: 0.000000 real_pulses:0 +I (24656) example: new speed:399.000000 +I (24666) example: expect speed: 0.000000 real_pulses:0 +I (24666) example: new speed:399.000000 +I (24676) example: expect speed: 0.000000 real_pulses:0 +I (24676) example: new speed:399.000000 +I (24686) example: expect speed: 0.000000 real_pulses:0 +I (24686) example: new speed:399.000000 +I (24696) example: expect speed: 0.000000 real_pulses:0 +I (24696) example: new speed:399.000000 +I (24706) example: expect speed: 0.000000 real_pulses:0 +I (24706) example: new speed:399.000000 +I (24716) example: expect speed: 0.000000 real_pulses:0 +I (24716) example: new speed:399.000000 +I (24726) example: expect speed: 0.000000 real_pulses:0 +I (24726) example: new speed:399.000000 +I (24736) example: expect speed: 0.000000 real_pulses:0 +I (24736) example: new speed:399.000000 +I (24746) example: expect speed: 0.000000 real_pulses:0 +I (24746) example: new speed:399.000000 +I (24756) example: expect speed: 0.000000 real_pulses:0 +I (24756) example: new speed:399.000000 +I (24766) example: expect speed: 0.000000 real_pulses:0 +I (24766) example: new speed:399.000000 +I (24776) example: expect speed: 0.000000 real_pulses:0 +I (24776) example: new speed:399.000000 +I (24786) example: expect speed: 0.000000 real_pulses:0 +I (24786) example: new speed:399.000000 +I (24796) example: expect speed: 0.000000 real_pulses:0 +I (24796) example: new speed:399.000000 +I (24806) example: expect speed: 0.000000 real_pulses:0 +I (24806) example: new speed:399.000000 +I (24816) example: expect speed: 0.000000 real_pulses:0 +I (24816) example: new speed:399.000000 +I (24826) example: expect speed: 0.000000 real_pulses:0 +I (24826) example: new speed:399.000000 +I (24836) example: expect speed: 0.000000 real_pulses:0 +I (24836) example: new speed:399.000000 +I (24846) example: expect speed: 0.000000 real_pulses:0 +I (24846) example: new speed:399.000000 +I (24856) example: expect speed: 0.000000 real_pulses:0 +I (24856) example: new speed:399.000000 +I (24866) example: expect speed: 0.000000 real_pulses:0 +I (24866) example: new speed:399.000000 +I (24876) example: expect speed: 0.000000 real_pulses:0 +I (24876) example: new speed:399.000000 +I (24886) example: expect speed: 0.000000 real_pulses:0 +I (24886) example: new speed:399.000000 +I (24896) example: expect speed: 0.000000 real_pulses:0 +I (24896) example: new speed:399.000000 +I (24906) example: expect speed: 0.000000 real_pulses:0 +I (24906) example: new speed:399.000000 +I (24916) example: expect speed: 0.000000 real_pulses:0 +I (24916) example: new speed:399.000000 +I (24926) example: expect speed: 0.000000 real_pulses:0 +I (24926) example: new speed:399.000000 +I (24936) example: expect speed: 0.000000 real_pulses:0 +I (24936) example: new speed:399.000000 +I (24946) example: expect speed: 0.000000 real_pulses:0 +I (24946) example: new speed:399.000000 +I (24956) example: expect speed: 0.000000 real_pulses:0 +I (24956) example: new speed:399.000000 +I (24966) example: expect speed: 0.000000 real_pulses:0 +I (24966) example: new speed:399.000000 +I (24976) example: expect speed: 0.000000 real_pulses:0 +I (24976) example: new speed:399.000000 +I (24986) example: expect speed: 0.000000 real_pulses:0 +I (24986) example: new speed:399.000000 +I (24996) example: expect speed: 0.000000 real_pulses:0 +I (24996) example: new speed:399.000000 +I (25006) example: expect speed: 0.000000 real_pulses:0 +I (25006) example: new speed:399.000000 +I (25016) example: expect speed: 0.000000 real_pulses:0 +I (25016) example: new speed:399.000000 +I (25026) example: expect speed: 0.000000 real_pulses:0 +I (25026) example: new speed:399.000000 +I (25036) example: expect speed: 0.000000 real_pulses:0 +I (25036) example: new speed:399.000000 +I (25046) example: expect speed: 0.000000 real_pulses:0 +I (25046) example: new speed:399.000000 +I (25056) example: expect speed: 0.000000 real_pulses:0 +I (25056) example: new speed:399.000000 +I (25066) example: expect speed: 0.000000 real_pulses:0 +I (25066) example: new speed:399.000000 +I (25076) example: expect speed: 0.000000 real_pulses:0 +I (25076) example: new speed:399.000000 +I (25086) example: expect speed: 0.000000 real_pulses:0 +I (25086) example: new speed:399.000000 +I (25096) example: expect speed: 0.000000 real_pulses:0 +I (25096) example: new speed:399.000000 +I (25106) example: expect speed: 0.000000 real_pulses:0 +I (25106) example: new speed:399.000000 +I (25116) example: expect speed: 0.000000 real_pulses:0 +I (25116) example: new speed:399.000000 +I (25126) example: expect speed: 0.000000 real_pulses:0 +I (25126) example: new speed:399.000000 +I (25136) example: expect speed: 0.000000 real_pulses:0 +I (25136) example: new speed:399.000000 +I (25146) example: expect speed: 0.000000 real_pulses:0 +I (25146) example: new speed:399.000000 +I (25156) example: expect speed: 0.000000 real_pulses:0 +I (25156) example: new speed:399.000000 +I (25166) example: expect speed: 0.000000 real_pulses:0 +I (25166) example: new speed:399.000000 +I (25176) example: expect speed: 0.000000 real_pulses:0 +I (25176) example: new speed:399.000000 +I (25186) example: expect speed: 0.000000 real_pulses:0 +I (25186) example: new speed:399.000000 +I (25196) example: expect speed: 0.000000 real_pulses:0 +I (25196) example: new speed:399.000000 +I (25206) example: expect speed: 0.000000 real_pulses:0 +I (25206) example: new speed:399.000000 +I (25216) example: expect speed: 0.000000 real_pulses:0 +I (25216) example: new speed:399.000000 +I (25226) example: expect speed: 0.000000 real_pulses:0 +I (25226) example: new speed:399.000000 +I (25236) example: expect speed: 0.000000 real_pulses:0 +I (25236) example: new speed:399.000000 +I (25246) example: expect speed: 0.000000 real_pulses:0 +I (25246) example: new speed:399.000000 +I (25256) example: expect speed: 0.000000 real_pulses:0 +I (25256) example: new speed:399.000000 +I (25266) example: expect speed: 0.000000 real_pulses:0 +I (25266) example: new speed:399.000000 +I (25276) example: expect speed: 0.000000 real_pulses:0 +I (25276) example: new speed:399.000000 +I (25286) example: expect speed: 0.000000 real_pulses:0 +I (25286) example: new speed:399.000000 +I (25296) example: expect speed: 0.000000 real_pulses:0 +I (25296) example: new speed:399.000000 +I (25306) example: expect speed: 0.000000 real_pulses:0 +I (25306) example: new speed:399.000000 +I (25316) example: expect speed: 0.000000 real_pulses:0 +I (25316) example: new speed:399.000000 +I (25326) example: expect speed: 0.000000 real_pulses:0 +I (25326) example: new speed:399.000000 +I (25336) example: expect speed: 0.000000 real_pulses:0 +I (25336) example: new speed:399.000000 +I (25346) example: expect speed: 0.000000 real_pulses:0 +I (25346) example: new speed:399.000000 +I (25356) example: expect speed: 0.000000 real_pulses:0 +I (25356) example: new speed:399.000000 +I (25366) example: expect speed: 0.000000 real_pulses:0 +I (25366) example: new speed:399.000000 +I (25376) example: expect speed: 0.000000 real_pulses:0 +I (25376) example: new speed:399.000000 +I (25386) example: expect speed: 0.000000 real_pulses:0 +I (25386) example: new speed:399.000000 +I (25396) example: expect speed: 0.000000 real_pulses:0 +I (25396) example: new speed:399.000000 +I (25406) example: expect speed: 0.000000 real_pulses:0 +I (25406) example: new speed:399.000000 +I (25416) example: expect speed: 0.000000 real_pulses:0 +I (25416) example: new speed:399.000000 +I (25426) example: expect speed: 0.000000 real_pulses:0 +I (25426) example: new speed:399.000000 +I (25436) example: expect speed: 0.000000 real_pulses:0 +I (25436) example: new speed:399.000000 +I (25446) example: expect speed: 0.000000 real_pulses:0 +I (25446) example: new speed:399.000000 +I (25456) example: expect speed: 0.000000 real_pulses:0 +I (25456) example: new speed:399.000000 +I (25466) example: expect speed: 0.000000 real_pulses:0 +I (25466) example: new speed:399.000000 +I (25476) example: expect speed: 0.000000 real_pulses:0 +I (25476) example: new speed:399.000000 +I (25486) example: expect speed: 0.000000 real_pulses:0 +I (25486) example: new speed:399.000000 +I (25496) example: expect speed: 0.000000 real_pulses:0 +I (25496) example: new speed:399.000000 +I (25506) example: expect speed: 0.000000 real_pulses:0 +I (25506) example: new speed:399.000000 +I (25516) example: expect speed: 0.000000 real_pulses:0 +I (25516) example: new speed:399.000000 +I (25526) example: expect speed: 0.000000 real_pulses:0 +I (25526) example: new speed:399.000000 +I (25536) example: expect speed: 0.000000 real_pulses:0 +I (25536) example: new speed:399.000000 +I (25546) example: expect speed: 0.000000 real_pulses:0 +I (25546) example: new speed:399.000000 +I (25556) example: expect speed: 0.000000 real_pulses:0 +I (25556) example: new speed:399.000000 +I (25566) example: expect speed: 0.000000 real_pulses:0 +I (25566) example: new speed:399.000000 +I (25576) example: expect speed: 0.000000 real_pulses:0 +I (25576) example: new speed:399.000000 +I (25586) example: expect speed: 0.000000 real_pulses:0 +I (25586) example: new speed:399.000000 +I (25596) example: expect speed: 0.000000 real_pulses:0 +I (25596) example: new speed:399.000000 +I (25606) example: expect speed: 0.000000 real_pulses:0 +I (25606) example: new speed:399.000000 +I (25616) example: expect speed: 0.000000 real_pulses:0 +I (25616) example: new speed:399.000000 +I (25626) example: expect speed: 0.000000 real_pulses:0 +I (25626) example: new speed:399.000000 +I (25636) example: expect speed: 0.000000 real_pulses:0 +I (25636) example: new speed:399.000000 +I (25646) example: expect speed: 0.000000 real_pulses:0 +I (25646) example: new speed:399.000000 +I (25656) example: expect speed: 0.000000 real_pulses:0 +I (25656) example: new speed:399.000000 +I (25666) example: expect speed: 0.000000 real_pulses:0 +I (25666) example: new speed:399.000000 +I (25676) example: expect speed: 0.000000 real_pulses:0 +I (25676) example: new speed:399.000000 +I (25686) example: expect speed: 0.000000 real_pulses:0 +I (25686) example: new speed:399.000000 +I (25696) example: expect speed: 0.000000 real_pulses:0 +I (25696) example: new speed:399.000000 +I (25706) example: expect speed: 0.000000 real_pulses:0 +I (25706) example: new speed:399.000000 +I (25716) example: expect speed: 0.000000 real_pulses:0 +I (25716) example: new speed:399.000000 +I (25726) example: expect speed: 0.000000 real_pulses:0 +I (25726) example: new speed:399.000000 +I (25736) example: expect speed: 0.000000 real_pulses:0 +I (25736) example: new speed:399.000000 +I (25746) example: expect speed: 0.000000 real_pulses:0 +I (25746) example: new speed:399.000000 +I (25756) example: expect speed: 0.000000 real_pulses:0 +I (25756) example: new speed:399.000000 +I (25766) example: expect speed: 0.000000 real_pulses:0 +I (25766) example: new speed:399.000000 +I (25776) example: expect speed: 0.000000 real_pulses:0 +I (25776) example: new speed:399.000000 +I (25786) example: expect speed: 0.000000 real_pulses:0 +I (25786) example: new speed:399.000000 +I (25796) example: expect speed: 0.000000 real_pulses:0 +I (25796) example: new speed:399.000000 +I (25806) example: expect speed: 0.000000 real_pulses:0 +I (25806) example: new speed:399.000000 +I (25816) example: expect speed: 0.000000 real_pulses:0 +I (25816) example: new speed:399.000000 +I (25826) example: expect speed: 0.000000 real_pulses:0 +I (25826) example: new speed:399.000000 +I (25836) example: expect speed: 0.000000 real_pulses:0 +I (25836) example: new speed:399.000000 +I (25846) example: expect speed: 0.000000 real_pulses:0 +I (25846) example: new speed:399.000000 +I (25856) example: expect speed: 0.000000 real_pulses:0 +I (25856) example: new speed:399.000000 +I (25866) example: expect speed: 0.000000 real_pulses:0 +I (25866) example: new speed:399.000000 +I (25876) example: expect speed: 0.000000 real_pulses:0 +I (25876) example: new speed:399.000000 +I (25886) example: expect speed: 0.000000 real_pulses:0 +I (25886) example: new speed:399.000000 +I (25896) example: expect speed: 0.000000 real_pulses:0 +I (25896) example: new speed:399.000000 +I (25906) example: expect speed: 0.000000 real_pulses:0 +I (25906) example: new speed:399.000000 +I (25916) example: expect speed: 0.000000 real_pulses:0 +I (25916) example: new speed:399.000000 +I (25926) example: expect speed: 0.000000 real_pulses:0 +I (25926) example: new speed:399.000000 +I (25936) example: expect speed: 0.000000 real_pulses:0 +I (25936) example: new speed:399.000000 +I (25946) example: expect speed: 0.000000 real_pulses:0 +I (25946) example: new speed:399.000000 +I (25956) example: expect speed: 0.000000 real_pulses:0 +I (25956) example: new speed:399.000000 +I (25966) example: expect speed: 0.000000 real_pulses:0 +I (25966) example: new speed:399.000000 +I (25976) example: expect speed: 0.000000 real_pulses:0 +I (25976) example: new speed:399.000000 +I (25986) example: expect speed: 0.000000 real_pulses:0 +I (25986) example: new speed:399.000000 +I (25996) example: expect speed: 0.000000 real_pulses:0 +I (25996) example: new speed:399.000000 +I (26006) example: expect speed: 0.000000 real_pulses:0 +I (26006) example: new speed:399.000000 +I (26016) example: expect speed: 0.000000 real_pulses:0 +I (26016) example: new speed:399.000000 +I (26026) example: expect speed: 0.000000 real_pulses:0 +I (26026) example: new speed:399.000000 +I (26036) example: expect speed: 0.000000 real_pulses:0 +I (26036) example: new speed:399.000000 +I (26046) example: expect speed: 0.000000 real_pulses:0 +I (26046) example: new speed:399.000000 +I (26056) example: expect speed: 0.000000 real_pulses:0 +I (26056) example: new speed:399.000000 +I (26066) example: expect speed: 0.000000 real_pulses:0 +I (26066) example: new speed:399.000000 +I (26076) example: expect speed: 0.000000 real_pulses:0 +I (26076) example: new speed:399.000000 +I (26086) example: expect speed: 0.000000 real_pulses:0 +I (26086) example: new speed:399.000000 +I (26096) example: expect speed: 0.000000 real_pulses:0 +I (26096) example: new speed:399.000000 +I (26106) example: expect speed: 0.000000 real_pulses:0 +I (26106) example: new speed:399.000000 +I (26116) example: expect speed: 0.000000 real_pulses:0 +I (26116) example: new speed:399.000000 +I (26126) example: expect speed: 0.000000 real_pulses:0 +I (26126) example: new speed:399.000000 +I (26136) example: expect speed: 0.000000 real_pulses:0 +I (26136) example: new speed:399.000000 +I (26146) example: expect speed: 0.000000 real_pulses:0 +I (26146) example: new speed:399.000000 +I (26156) example: expect speed: 0.000000 real_pulses:0 +I (26156) example: new speed:399.000000 +I (26166) example: expect speed: 0.000000 real_pulses:0 +I (26166) example: new speed:399.000000 +I (26176) example: expect speed: 0.000000 real_pulses:0 +I (26176) example: new speed:399.000000 +I (26186) example: expect speed: 0.000000 real_pulses:0 +I (26186) example: new speed:399.000000 +I (26196) example: expect speed: 0.000000 real_pulses:0 +I (26196) example: new speed:399.000000 +I (26206) example: expect speed: 0.000000 real_pulses:0 +I (26206) example: new speed:399.000000 +I (26216) example: expect speed: 0.000000 real_pulses:0 +I (26216) example: new speed:399.000000 +I (26226) example: expect speed: 0.000000 real_pulses:0 +I (26226) example: new speed:399.000000 +I (26236) example: expect speed: 0.000000 real_pulses:0 +I (26236) example: new speed:399.000000 +I (26246) example: expect speed: 0.000000 real_pulses:0 +I (26246) example: new speed:399.000000 +I (26256) example: expect speed: 0.000000 real_pulses:0 +I (26256) example: new speed:399.000000 +I (26266) example: expect speed: 0.000000 real_pulses:0 +I (26266) example: new speed:399.000000 +I (26276) example: expect speed: 0.000000 real_pulses:0 +I (26276) example: new speed:399.000000 +I (26286) example: expect speed: 0.000000 real_pulses:0 +I (26286) example: new speed:399.000000 +I (26296) example: expect speed: 0.000000 real_pulses:0 +I (26296) example: new speed:399.000000 +I (26306) example: expect speed: 0.000000 real_pulses:0 +I (26306) example: new speed:399.000000 +I (26316) example: expect speed: 0.000000 real_pulses:0 +I (26316) example: new speed:399.000000 +I (26326) example: expect speed: 0.000000 real_pulses:0 +I (26326) example: new speed:399.000000 +I (26336) example: expect speed: 0.000000 real_pulses:0 +I (26336) example: new speed:399.000000 +I (26346) example: expect speed: 0.000000 real_pulses:0 +I (26346) example: new speed:399.000000 +I (26356) example: expect speed: 0.000000 real_pulses:0 +I (26356) example: new speed:399.000000 +I (26366) example: expect speed: 0.000000 real_pulses:0 +I (26366) example: new speed:399.000000 +I (26376) example: expect speed: 0.000000 real_pulses:0 +I (26376) example: new speed:399.000000 +I (26386) example: expect speed: 0.000000 real_pulses:0 +I (26386) example: new speed:399.000000 +I (26396) example: expect speed: 0.000000 real_pulses:0 +I (26396) example: new speed:399.000000 +I (26406) example: expect speed: 0.000000 real_pulses:0 +I (26406) example: new speed:399.000000 +I (26416) example: expect speed: 0.000000 real_pulses:0 +I (26416) example: new speed:399.000000 +I (26426) example: expect speed: 0.000000 real_pulses:0 +I (26426) example: new speed:399.000000 +I (26436) example: expect speed: 0.000000 real_pulses:0 +I (26436) example: new speed:399.000000 +I (26446) example: expect speed: 0.000000 real_pulses:0 +I (26446) example: new speed:399.000000 +I (26456) example: expect speed: 0.000000 real_pulses:0 +I (26456) example: new speed:399.000000 +I (26466) example: expect speed: 0.000000 real_pulses:0 +I (26466) example: new speed:399.000000 +I (26476) example: expect speed: 0.000000 real_pulses:0 +I (26476) example: new speed:399.000000 +I (26486) example: expect speed: 0.000000 real_pulses:0 +I (26486) example: new speed:399.000000 +I (26496) example: expect speed: 0.000000 real_pulses:0 +I (26496) example: new speed:399.000000 +I (26506) example: expect speed: 0.000000 real_pulses:0 +I (26506) example: new speed:399.000000 +I (26516) example: expect speed: 0.000000 real_pulses:0 +I (26516) example: new speed:399.000000 +I (26526) example: expect speed: 0.000000 real_pulses:0 +I (26526) example: new speed:399.000000 +I (26536) example: expect speed: 0.000000 real_pulses:0 +I (26536) example: new speed:399.000000 +I (26546) example: expect speed: 0.000000 real_pulses:0 +I (26546) example: new speed:399.000000 +I (26556) example: expect speed: 0.000000 real_pulses:0 +I (26556) example: new speed:399.000000 +I (26566) example: expect speed: 0.000000 real_pulses:0 +I (26566) example: new speed:399.000000 +I (26576) example: expect speed: 0.000000 real_pulses:0 +I (26576) example: new speed:399.000000 +I (26586) example: expect speed: 0.000000 real_pulses:0 +I (26586) example: new speed:399.000000 +I (26596) example: expect speed: 0.000000 real_pulses:0 +I (26596) example: new speed:399.000000 +I (26606) example: expect speed: 0.000000 real_pulses:0 +I (26606) example: new speed:399.000000 +I (26616) example: expect speed: 0.000000 real_pulses:0 +I (26616) example: new speed:399.000000 +I (26626) example: expect speed: 0.000000 real_pulses:0 +I (26626) example: new speed:399.000000 +I (26636) example: expect speed: 0.000000 real_pulses:0 +I (26636) example: new speed:399.000000 +I (26646) example: expect speed: 0.000000 real_pulses:0 +I (26646) example: new speed:399.000000 +I (26656) example: expect speed: 0.000000 real_pulses:0 +I (26656) example: new speed:399.000000 +I (26666) example: expect speed: 0.000000 real_pulses:0 +I (26666) example: new speed:399.000000 +I (26676) example: expect speed: 0.000000 real_pulses:0 +I (26676) example: new speed:399.000000 +I (26686) example: expect speed: 0.000000 real_pulses:0 +I (26686) example: new speed:399.000000 +I (26696) example: expect speed: 0.000000 real_pulses:0 +I (26696) example: new speed:399.000000 +I (26706) example: expect speed: 0.000000 real_pulses:0 +I (26706) example: new speed:399.000000 +I (26716) example: expect speed: 0.000000 real_pulses:0 +I (26716) example: new speed:399.000000 +I (26726) example: expect speed: 0.000000 real_pulses:0 +I (26726) example: new speed:399.000000 +I (26736) example: expect speed: 0.000000 real_pulses:0 +I (26736) example: new speed:399.000000 +I (26746) example: expect speed: 0.000000 real_pulses:0 +I (26746) example: new speed:399.000000 +I (26756) example: expect speed: 0.000000 real_pulses:0 +I (26756) example: new speed:399.000000 +I (26766) example: expect speed: 0.000000 real_pulses:0 +I (26766) example: new speed:399.000000 +I (26776) example: expect speed: 0.000000 real_pulses:0 +I (26776) example: new speed:399.000000 +I (26786) example: expect speed: 0.000000 real_pulses:0 +I (26786) example: new speed:399.000000 +I (26796) example: expect speed: 0.000000 real_pulses:0 +I (26796) example: new speed:399.000000 +I (26806) example: expect speed: 0.000000 real_pulses:0 +I (26806) example: new speed:399.000000 +I (26816) example: expect speed: 0.000000 real_pulses:0 +I (26816) example: new speed:399.000000 +I (26826) example: expect speed: 0.000000 real_pulses:0 +I (26826) example: new speed:399.000000 +I (26836) example: expect speed: 0.000000 real_pulses:0 +I (26836) example: new speed:399.000000 +I (26846) example: expect speed: 0.000000 real_pulses:0 +I (26846) example: new speed:399.000000 +I (26856) example: expect speed: 0.000000 real_pulses:0 +I (26856) example: new speed:399.000000 +I (26866) example: expect speed: 0.000000 real_pulses:0 +I (26866) example: new speed:399.000000 +I (26876) example: expect speed: 0.000000 real_pulses:0 +I (26876) example: new speed:399.000000 +I (26886) example: expect speed: 0.000000 real_pulses:0 +I (26886) example: new speed:399.000000 +I (26896) example: expect speed: 0.000000 real_pulses:0 +I (26896) example: new speed:399.000000 +I (26906) example: expect speed: 0.000000 real_pulses:0 +I (26906) example: new speed:399.000000 +I (26916) example: expect speed: 0.000000 real_pulses:0 +I (26916) example: new speed:399.000000 +I (26926) example: expect speed: 0.000000 real_pulses:0 +I (26926) example: new speed:399.000000 +I (26936) example: expect speed: 0.000000 real_pulses:0 +I (26936) example: new speed:399.000000 +I (26946) example: expect speed: 0.000000 real_pulses:0 +I (26946) example: new speed:399.000000 +I (26956) example: expect speed: 0.000000 real_pulses:0 +I (26956) example: new speed:399.000000 +I (26966) example: expect speed: 0.000000 real_pulses:0 +I (26966) example: new speed:399.000000 +I (26976) example: expect speed: 0.000000 real_pulses:0 +I (26976) example: new speed:399.000000 +I (26986) example: expect speed: 0.000000 real_pulses:0 +I (26986) example: new speed:399.000000 +I (26996) example: expect speed: 0.000000 real_pulses:0 +I (26996) example: new speed:399.000000 +I (27006) example: expect speed: 0.000000 real_pulses:0 +I (27006) example: new speed:399.000000 +I (27016) example: expect speed: 0.000000 real_pulses:0 +I (27016) example: new speed:399.000000 +I (27026) example: expect speed: 0.000000 real_pulses:0 +I (27026) example: new speed:399.000000 +I (27036) example: expect speed: 0.000000 real_pulses:0 +I (27036) example: new speed:399.000000 +I (27046) example: expect speed: 0.000000 real_pulses:0 +I (27046) example: new speed:399.000000 +I (27056) example: expect speed: 0.000000 real_pulses:0 +I (27056) example: new speed:399.000000 +I (27066) example: expect speed: 0.000000 real_pulses:0 +I (27066) example: new speed:399.000000 +I (27076) example: expect speed: 0.000000 real_pulses:0 +I (27076) example: new speed:399.000000 +I (27086) example: expect speed: 0.000000 real_pulses:0 +I (27086) example: new speed:399.000000 +I (27096) example: expect speed: 0.000000 real_pulses:0 +I (27096) example: new speed:399.000000 +I (27106) example: expect speed: 0.000000 real_pulses:0 +I (27106) example: new speed:399.000000 +I (27116) example: expect speed: 0.000000 real_pulses:0 +I (27116) example: new speed:399.000000 +I (27126) example: expect speed: 0.000000 real_pulses:0 +I (27126) example: new speed:399.000000 +I (27136) example: expect speed: 0.000000 real_pulses:0 +I (27136) example: new speed:399.000000 +I (27146) example: expect speed: 0.000000 real_pulses:0 +I (27146) example: new speed:399.000000 +I (27156) example: expect speed: 0.000000 real_pulses:0 +I (27156) example: new speed:399.000000 +I (27166) example: expect speed: 0.000000 real_pulses:0 +I (27166) example: new speed:399.000000 +I (27176) example: expect speed: 0.000000 real_pulses:0 +I (27176) example: new speed:399.000000 +I (27186) example: expect speed: 0.000000 real_pulses:0 +I (27186) example: new speed:399.000000 +I (27196) example: expect speed: 0.000000 real_pulses:0 +I (27196) example: new speed:399.000000 +I (27206) example: expect speed: 0.000000 real_pulses:0 +I (27206) example: new speed:399.000000 +I (27216) example: expect speed: 0.000000 real_pulses:0 +I (27216) example: new speed:399.000000 +I (27226) example: expect speed: 0.000000 real_pulses:0 +I (27226) example: new speed:399.000000 +I (27236) example: expect speed: 0.000000 real_pulses:0 +I (27236) example: new speed:399.000000 +I (27246) example: expect speed: 0.000000 real_pulses:0 +I (27246) example: new speed:399.000000 +I (27256) example: expect speed: 0.000000 real_pulses:0 +I (27256) example: new speed:399.000000 +I (27266) example: expect speed: 0.000000 real_pulses:0 +I (27266) example: new speed:399.000000 +I (27276) example: expect speed: 0.000000 real_pulses:0 +I (27276) example: new speed:399.000000 +I (27286) example: expect speed: 0.000000 real_pulses:0 +I (27286) example: new speed:399.000000 +I (27296) example: expect speed: 0.000000 real_pulses:0 +I (27296) example: new speed:399.000000 +I (27306) example: expect speed: 0.000000 real_pulses:0 +I (27306) example: new speed:399.000000 +I (27316) example: expect speed: 0.000000 real_pulses:0 +I (27316) example: new speed:399.000000 +I (27326) example: expect speed: 0.000000 real_pulses:0 +I (27326) example: new speed:399.000000 +I (27336) example: expect speed: 0.000000 real_pulses:0 +I (27336) example: new speed:399.000000 +I (27346) example: expect speed: 0.000000 real_pulses:0 +I (27346) example: new speed:399.000000 +I (27356) example: expect speed: 0.000000 real_pulses:0 +I (27356) example: new speed:399.000000 +I (27366) example: expect speed: 0.000000 real_pulses:0 +I (27366) example: new speed:399.000000 +I (27376) example: expect speed: 0.000000 real_pulses:0 +I (27376) example: new speed:399.000000 +I (27386) example: expect speed: 0.000000 real_pulses:0 +I (27386) example: new speed:399.000000 +I (27396) example: expect speed: 0.000000 real_pulses:0 +I (27396) example: new speed:399.000000 +I (27406) example: expect speed: 0.000000 real_pulses:0 +I (27406) example: new speed:399.000000 +I (27416) example: expect speed: 0.000000 real_pulses:0 +I (27416) example: new speed:399.000000 +I (27426) example: expect speed: 0.000000 real_pulses:0 +I (27426) example: new speed:399.000000 +I (27436) example: expect speed: 0.000000 real_pulses:0 +I (27436) example: new speed:399.000000 +I (27446) example: expect speed: 0.000000 real_pulses:0 +I (27446) example: new speed:399.000000 +I (27456) example: expect speed: 0.000000 real_pulses:0 +I (27456) example: new speed:399.000000 +I (27466) example: expect speed: 0.000000 real_pulses:0 +I (27466) example: new speed:399.000000 +I (27476) example: expect speed: 0.000000 real_pulses:0 +I (27476) example: new speed:399.000000 +I (27486) example: expect speed: 0.000000 real_pulses:0 +I (27486) example: new speed:399.000000 +I (27496) example: expect speed: 0.000000 real_pulses:0 +I (27496) example: new speed:399.000000 +I (27506) example: expect speed: 0.000000 real_pulses:0 +I (27506) example: new speed:399.000000 +I (27516) example: expect speed: 0.000000 real_pulses:0 +I (27516) example: new speed:399.000000 +I (27526) example: expect speed: 0.000000 real_pulses:0 +I (27526) example: new speed:399.000000 +I (27536) example: expect speed: 0.000000 real_pulses:0 +I (27536) example: new speed:399.000000 +I (27546) example: expect speed: 0.000000 real_pulses:0 +I (27546) example: new speed:399.000000 +I (27556) example: expect speed: 0.000000 real_pulses:0 +I (27556) example: new speed:399.000000 +I (27566) example: expect speed: 0.000000 real_pulses:0 +I (27566) example: new speed:399.000000 +I (27576) example: expect speed: 0.000000 real_pulses:0 +I (27576) example: new speed:399.000000 +I (27586) example: expect speed: 0.000000 real_pulses:0 +I (27586) example: new speed:399.000000 +I (27596) example: expect speed: 0.000000 real_pulses:0 +I (27596) example: new speed:399.000000 +I (27606) example: expect speed: 0.000000 real_pulses:0 +I (27606) example: new speed:399.000000 +I (27616) example: expect speed: 0.000000 real_pulses:0 +I (27616) example: new speed:399.000000 +I (27626) example: expect speed: 0.000000 real_pulses:0 +I (27626) example: new speed:399.000000 +I (27636) example: expect speed: 0.000000 real_pulses:0 +I (27636) example: new speed:399.000000 +I (27646) example: expect speed: 0.000000 real_pulses:0 +I (27646) example: new speed:399.000000 +I (27656) example: expect speed: 0.000000 real_pulses:0 +I (27656) example: new speed:399.000000 +I (27666) example: expect speed: 0.000000 real_pulses:0 +I (27666) example: new speed:399.000000 +I (27676) example: expect speed: 0.000000 real_pulses:0 +I (27676) example: new speed:399.000000 +I (27686) example: expect speed: 0.000000 real_pulses:0 +I (27686) example: new speed:399.000000 +I (27696) example: expect speed: 0.000000 real_pulses:0 +I (27696) example: new speed:399.000000 +I (27706) example: expect speed: 0.000000 real_pulses:0 +I (27706) example: new speed:399.000000 +I (27716) example: expect speed: 0.000000 real_pulses:0 +I (27716) example: new speed:399.000000 +I (27726) example: expect speed: 0.000000 real_pulses:0 +I (27726) example: new speed:399.000000 +I (27736) example: expect speed: 0.000000 real_pulses:0 +I (27736) example: new speed:399.000000 +I (27746) example: expect speed: 0.000000 real_pulses:0 +I (27746) example: new speed:399.000000 +I (27756) example: expect speed: 0.000000 real_pulses:0 +I (27756) example: new speed:399.000000 +I (27766) example: expect speed: 0.000000 real_pulses:0 +I (27766) example: new speed:399.000000 +I (27776) example: expect speed: 0.000000 real_pulses:0 +I (27776) example: new speed:399.000000 +I (27786) example: expect speed: 0.000000 real_pulses:0 +I (27786) example: new speed:399.000000 +I (27796) example: expect speed: 0.000000 real_pulses:0 +I (27796) example: new speed:399.000000 +I (27806) example: expect speed: 0.000000 real_pulses:0 +I (27806) example: new speed:399.000000 +I (27816) example: expect speed: 0.000000 real_pulses:0 +I (27816) example: new speed:399.000000 +I (27826) example: expect speed: 0.000000 real_pulses:0 +I (27826) example: new speed:399.000000 +I (27836) example: expect speed: 0.000000 real_pulses:0 +I (27836) example: new speed:399.000000 +I (27846) example: expect speed: 0.000000 real_pulses:0 +I (27846) example: new speed:399.000000 +I (27856) example: expect speed: 0.000000 real_pulses:0 +I (27856) example: new speed:399.000000 +I (27866) example: expect speed: 0.000000 real_pulses:0 +I (27866) example: new speed:399.000000 +I (27876) example: expect speed: 0.000000 real_pulses:0 +I (27876) example: new speed:399.000000 +I (27886) example: expect speed: 0.000000 real_pulses:0 +I (27886) example: new speed:399.000000 +I (27896) example: expect speed: 0.000000 real_pulses:0 +I (27896) example: new speed:399.000000 +I (27906) example: expect speed: 0.000000 real_pulses:0 +I (27906) example: new speed:399.000000 +I (27916) example: expect speed: 0.000000 real_pulses:0 +I (27916) example: new speed:399.000000 +I (27926) example: expect speed: 0.000000 real_pulses:0 +I (27926) example: new speed:399.000000 +I (27936) example: expect speed: 0.000000 real_pulses:0 +I (27936) example: new speed:399.000000 +I (27946) example: expect speed: 0.000000 real_pulses:0 +I (27946) example: new speed:399.000000 +I (27956) example: expect speed: 0.000000 real_pulses:0 +I (27956) example: new speed:399.000000 +I (27966) example: expect speed: 0.000000 real_pulses:0 +I (27966) example: new speed:399.000000 +I (27976) example: expect speed: 0.000000 real_pulses:0 +I (27976) example: new speed:399.000000 +I (27986) example: expect speed: 0.000000 real_pulses:0 +I (27986) example: new speed:399.000000 +I (27996) example: expect speed: 0.000000 real_pulses:0 +I (27996) example: new speed:399.000000 +I (28006) example: expect speed: 0.000000 real_pulses:0 +I (28006) example: new speed:399.000000 +I (28016) example: expect speed: 0.000000 real_pulses:0 +I (28016) example: new speed:399.000000 +I (28026) example: expect speed: 0.000000 real_pulses:0 +I (28026) example: new speed:399.000000 +I (28036) example: expect speed: 0.000000 real_pulses:0 +I (28036) example: new speed:399.000000 +I (28046) example: expect speed: 0.000000 real_pulses:0 +I (28046) example: new speed:399.000000 +I (28056) example: expect speed: 0.000000 real_pulses:0 +I (28056) example: new speed:399.000000 +I (28066) example: expect speed: 0.000000 real_pulses:0 +I (28066) example: new speed:399.000000 +I (28076) example: expect speed: 0.000000 real_pulses:0 +I (28076) example: new speed:399.000000 +I (28086) example: expect speed: 0.000000 real_pulses:0 +I (28086) example: new speed:399.000000 +I (28096) example: expect speed: 0.000000 real_pulses:0 +I (28096) example: new speed:399.000000 +I (28106) example: expect speed: 0.000000 real_pulses:0 +I (28106) example: new speed:399.000000 +I (28116) example: expect speed: 0.000000 real_pulses:0 +I (28116) example: new speed:399.000000 +I (28126) example: expect speed: 0.000000 real_pulses:0 +I (28126) example: new speed:399.000000 +I (28136) example: expect speed: 0.000000 real_pulses:0 +I (28136) example: new speed:399.000000 +I (28146) example: expect speed: 0.000000 real_pulses:0 +I (28146) example: new speed:399.000000 +I (28156) example: expect speed: 0.000000 real_pulses:0 +I (28156) example: new speed:399.000000 +I (28166) example: expect speed: 0.000000 real_pulses:0 +I (28166) example: new speed:399.000000 +I (28176) example: expect speed: 0.000000 real_pulses:0 +I (28176) example: new speed:399.000000 +I (28186) example: expect speed: 0.000000 real_pulses:0 +I (28186) example: new speed:399.000000 +I (28196) example: expect speed: 0.000000 real_pulses:0 +I (28196) example: new speed:399.000000 +I (28206) example: expect speed: 0.000000 real_pulses:0 +I (28206) example: new speed:399.000000 +I (28216) example: expect speed: 0.000000 real_pulses:0 +I (28216) example: new speed:399.000000 +I (28226) example: expect speed: 0.000000 real_pulses:0 +I (28226) example: new speed:399.000000 +I (28236) example: expect speed: 0.000000 real_pulses:0 +I (28236) example: new speed:399.000000 +I (28246) example: expect speed: 0.000000 real_pulses:0 +I (28246) example: new speed:399.000000 +I (28256) example: expect speed: 0.000000 real_pulses:0 +I (28256) example: new speed:399.000000 +I (28266) example: expect speed: 0.000000 real_pulses:0 +I (28266) example: new speed:399.000000 +I (28276) example: expect speed: 0.000000 real_pulses:0 +I (28276) example: new speed:399.000000 +I (28286) example: expect speed: 0.000000 real_pulses:0 +I (28286) example: new speed:399.000000 +I (28296) example: expect speed: 0.000000 real_pulses:0 +I (28296) example: new speed:399.000000 +I (28306) example: expect speed: 0.000000 real_pulses:0 +I (28306) example: new speed:399.000000 +I (28316) example: expect speed: 0.000000 real_pulses:0 +I (28316) example: new speed:399.000000 +I (28326) example: expect speed: 0.000000 real_pulses:0 +I (28326) example: new speed:399.000000 +I (28336) example: expect speed: 0.000000 real_pulses:0 +I (28336) example: new speed:399.000000 +I (28346) example: expect speed: 0.000000 real_pulses:0 +I (28346) example: new speed:399.000000 +I (28356) example: expect speed: 0.000000 real_pulses:0 +I (28356) example: new speed:399.000000 +I (28366) example: expect speed: 0.000000 real_pulses:0 +I (28366) example: new speed:399.000000 +I (28376) example: expect speed: 0.000000 real_pulses:0 +I (28376) example: new speed:399.000000 +I (28386) example: expect speed: 0.000000 real_pulses:0 +I (28386) example: new speed:399.000000 +I (28396) example: expect speed: 0.000000 real_pulses:0 +I (28396) example: new speed:399.000000 +I (28406) example: expect speed: 0.000000 real_pulses:0 +I (28406) example: new speed:399.000000 +I (28416) example: expect speed: 0.000000 real_pulses:0 +I (28416) example: new speed:399.000000 +I (28426) example: expect speed: 0.000000 real_pulses:0 +I (28426) example: new speed:399.000000 +I (28436) example: expect speed: 0.000000 real_pulses:0 +I (28436) example: new speed:399.000000 +I (28446) example: expect speed: 0.000000 real_pulses:0 +I (28446) example: new speed:399.000000 +I (28456) example: expect speed: 0.000000 real_pulses:0 +I (28456) example: new speed:399.000000 +I (28466) example: expect speed: 0.000000 real_pulses:0 +I (28466) example: new speed:399.000000 +I (28476) example: expect speed: 0.000000 real_pulses:0 +I (28476) example: new speed:399.000000 +I (28486) example: expect speed: 0.000000 real_pulses:0 +I (28486) example: new speed:399.000000 +I (28496) example: expect speed: 0.000000 real_pulses:0 +I (28496) example: new speed:399.000000 +I (28506) example: expect speed: 0.000000 real_pulses:0 +I (28506) example: new speed:399.000000 +I (28516) example: expect speed: 0.000000 real_pulses:0 +I (28516) example: new speed:399.000000 +I (28526) example: expect speed: 0.000000 real_pulses:0 +I (28526) example: new speed:399.000000 +I (28536) example: expect speed: 0.000000 real_pulses:0 +I (28536) example: new speed:399.000000 +I (28546) example: expect speed: 0.000000 real_pulses:0 +I (28546) example: new speed:399.000000 +I (28556) example: expect speed: 0.000000 real_pulses:0 +I (28556) example: new speed:399.000000 +I (28566) example: expect speed: 0.000000 real_pulses:0 +I (28566) example: new speed:399.000000 +I (28576) example: expect speed: 0.000000 real_pulses:0 +I (28576) example: new speed:399.000000 +I (28586) example: expect speed: 0.000000 real_pulses:0 +I (28586) example: new speed:399.000000 +I (28596) example: expect speed: 0.000000 real_pulses:0 +I (28596) example: new speed:399.000000 +I (28606) example: expect speed: 0.000000 real_pulses:0 +I (28606) example: new speed:399.000000 +I (28616) example: expect speed: 0.000000 real_pulses:0 +I (28616) example: new speed:399.000000 +I (28626) example: expect speed: 0.000000 real_pulses:0 +I (28626) example: new speed:399.000000 +I (28636) example: expect speed: 0.000000 real_pulses:0 +I (28636) example: new speed:399.000000 +I (28646) example: expect speed: 0.000000 real_pulses:0 +I (28646) example: new speed:399.000000 +I (28656) example: expect speed: 0.000000 real_pulses:0 +I (28656) example: new speed:399.000000 +I (28666) example: expect speed: 0.000000 real_pulses:0 +I (28666) example: new speed:399.000000 +I (28676) example: expect speed: 0.000000 real_pulses:0 +I (28676) example: new speed:399.000000 +I (28686) example: expect speed: 0.000000 real_pulses:0 +I (28686) example: new speed:399.000000 +I (28696) example: expect speed: 0.000000 real_pulses:0 +I (28696) example: new speed:399.000000 +I (28706) example: expect speed: 0.000000 real_pulses:0 +I (28706) example: new speed:399.000000 +I (28716) example: expect speed: 0.000000 real_pulses:0 +I (28716) example: new speed:399.000000 +I (28726) example: expect speed: 0.000000 real_pulses:0 +I (28726) example: new speed:399.000000 +I (28736) example: expect speed: 0.000000 real_pulses:0 +I (28736) example: new speed:399.000000 +I (28746) example: expect speed: 0.000000 real_pulses:0 +I (28746) example: new speed:399.000000 +I (28756) example: expect speed: 0.000000 real_pulses:0 +I (28756) example: new speed:399.000000 +I (28766) example: expect speed: 0.000000 real_pulses:0 +I (28766) example: new speed:399.000000 +I (28776) example: expect speed: 0.000000 real_pulses:0 +I (28776) example: new speed:399.000000 +I (28786) example: expect speed: 0.000000 real_pulses:0 +I (28786) example: new speed:399.000000 +I (28796) example: expect speed: 0.000000 real_pulses:0 +I (28796) example: new speed:399.000000 +I (28806) example: expect speed: 0.000000 real_pulses:0 +I (28806) example: new speed:399.000000 +I (28816) example: expect speed: 0.000000 real_pulses:0 +I (28816) example: new speed:399.000000 +I (28826) example: expect speed: 0.000000 real_pulses:0 +I (28826) example: new speed:399.000000 +I (28836) example: expect speed: 0.000000 real_pulses:0 +I (28836) example: new speed:399.000000 +I (28846) example: expect speed: 0.000000 real_pulses:0 +I (28846) example: new speed:399.000000 +I (28856) example: expect speed: 0.000000 real_pulses:0 +I (28856) example: new speed:399.000000 +I (28866) example: expect speed: 0.000000 real_pulses:0 +I (28866) example: new speed:399.000000 +I (28876) example: expect speed: 0.000000 real_pulses:0 +I (28876) example: new speed:399.000000 +I (28886) example: expect speed: 0.000000 real_pulses:0 +I (28886) example: new speed:399.000000 +I (28896) example: expect speed: 0.000000 real_pulses:0 +I (28896) example: new speed:399.000000 +I (28906) example: expect speed: 0.000000 real_pulses:0 +I (28906) example: new speed:399.000000 +I (28916) example: expect speed: 0.000000 real_pulses:0 +I (28916) example: new speed:399.000000 +I (28926) example: expect speed: 0.000000 real_pulses:0 +I (28926) example: new speed:399.000000 +I (28936) example: expect speed: 0.000000 real_pulses:0 +I (28936) example: new speed:399.000000 +I (28946) example: expect speed: 0.000000 real_pulses:0 +I (28946) example: new speed:399.000000 +I (28956) example: expect speed: 0.000000 real_pulses:0 +I (28956) example: new speed:399.000000 +I (28966) example: expect speed: 0.000000 real_pulses:0 +I (28966) example: new speed:399.000000 +I (28976) example: expect speed: 0.000000 real_pulses:0 +I (28976) example: new speed:399.000000 +I (28986) example: expect speed: 0.000000 real_pulses:0 +I (28986) example: new speed:399.000000 +I (28996) example: expect speed: 0.000000 real_pulses:0 +I (28996) example: new speed:399.000000 +I (29006) example: expect speed: 0.000000 real_pulses:0 +I (29006) example: new speed:399.000000 +I (29016) example: expect speed: 0.000000 real_pulses:0 +I (29016) example: new speed:399.000000 +I (29026) example: expect speed: 0.000000 real_pulses:0 +I (29026) example: new speed:399.000000 +I (29036) example: expect speed: 0.000000 real_pulses:0 +I (29036) example: new speed:399.000000 +I (29046) example: expect speed: 0.000000 real_pulses:0 +I (29046) example: new speed:399.000000 +I (29056) example: expect speed: 0.000000 real_pulses:0 +I (29056) example: new speed:399.000000 +I (29066) example: expect speed: 0.000000 real_pulses:0 +I (29066) example: new speed:399.000000 +I (29076) example: expect speed: 0.000000 real_pulses:0 +I (29076) example: new speed:399.000000 +I (29086) example: expect speed: 0.000000 real_pulses:0 +I (29086) example: new speed:399.000000 +I (29096) example: expect speed: 0.000000 real_pulses:0 +I (29096) example: new speed:399.000000 +I (29106) example: expect speed: 0.000000 real_pulses:0 +I (29106) example: new speed:399.000000 +I (29116) example: expect speed: 0.000000 real_pulses:0 +I (29116) example: new speed:399.000000 +I (29126) example: expect speed: 0.000000 real_pulses:0 +I (29126) example: new speed:399.000000 +I (29136) example: expect speed: 0.000000 real_pulses:0 +I (29136) example: new speed:399.000000 +I (29146) example: expect speed: 0.000000 real_pulses:0 +I (29146) example: new speed:399.000000 +I (29156) example: expect speed: 0.000000 real_pulses:0 +I (29156) example: new speed:399.000000 +I (29166) example: expect speed: 0.000000 real_pulses:0 +I (29166) example: new speed:399.000000 +I (29176) example: expect speed: 0.000000 real_pulses:0 +I (29176) example: new speed:399.000000 +I (29186) example: expect speed: 0.000000 real_pulses:0 +I (29186) example: new speed:399.000000 +I (29196) example: expect speed: 0.000000 real_pulses:0 +I (29196) example: new speed:399.000000 +I (29206) example: expect speed: 0.000000 real_pulses:0 +I (29206) example: new speed:399.000000 +I (29216) example: expect speed: 0.000000 real_pulses:0 +I (29216) example: new speed:399.000000 +I (29226) example: expect speed: 0.000000 real_pulses:0 +I (29226) example: new speed:399.000000 +I (29236) example: expect speed: 0.000000 real_pulses:0 +I (29236) example: new speed:399.000000 +I (29246) example: expect speed: 0.000000 real_pulses:0 +I (29246) example: new speed:399.000000 +I (29256) example: expect speed: 0.000000 real_pulses:0 +I (29256) example: new speed:399.000000 +I (29266) example: expect speed: 0.000000 real_pulses:0 +I (29266) example: new speed:399.000000 +I (29276) example: expect speed: 0.000000 real_pulses:0 +I (29276) example: new speed:399.000000 +I (29286) example: expect speed: 0.000000 real_pulses:0 +I (29286) example: new speed:399.000000 +I (29296) example: expect speed: 0.000000 real_pulses:0 +I (29296) example: new speed:399.000000 +I (29306) example: expect speed: 0.000000 real_pulses:0 +I (29306) example: new speed:399.000000 +I (29316) example: expect speed: 0.000000 real_pulses:0 +I (29316) example: new speed:399.000000 +I (29326) example: expect speed: 0.000000 real_pulses:0 +I (29326) example: new speed:399.000000 +I (29336) example: expect speed: 0.000000 real_pulses:0 +I (29336) example: new speed:399.000000 +I (29346) example: expect speed: 0.000000 real_pulses:0 +I (29346) example: new speed:399.000000 +I (29356) example: expect speed: 0.000000 real_pulses:0 +I (29356) example: new speed:399.000000 +I (29366) example: expect speed: 0.000000 real_pulses:0 +I (29366) example: new speed:399.000000 +I (29376) example: expect speed: 0.000000 real_pulses:0 +I (29376) example: new speed:399.000000 +I (29386) example: expect speed: 0.000000 real_pulses:0 +I (29386) example: new speed:399.000000 +I (29396) example: expect speed: 0.000000 real_pulses:0 +I (29396) example: new speed:399.000000 +I (29406) example: expect speed: 0.000000 real_pulses:0 +I (29406) example: new speed:399.000000 +I (29416) example: expect speed: 0.000000 real_pulses:0 +I (29416) example: new speed:399.000000 +I (29426) example: expect speed: 0.000000 real_pulses:0 +I (29426) example: new speed:399.000000 +I (29436) example: expect speed: 0.000000 real_pulses:0 +I (29436) example: new speed:399.000000 +I (29446) example: expect speed: 0.000000 real_pulses:0 +I (29446) example: new speed:399.000000 +I (29456) example: expect speed: 0.000000 real_pulses:0 +I (29456) example: new speed:399.000000 +I (29466) example: expect speed: 0.000000 real_pulses:0 +I (29466) example: new speed:399.000000 +I (29476) example: expect speed: 0.000000 real_pulses:0 +I (29476) example: new speed:399.000000 +I (29486) example: expect speed: 0.000000 real_pulses:0 +I (29486) example: new speed:399.000000 +I (29496) example: expect speed: 0.000000 real_pulses:0 +I (29496) example: new speed:399.000000 +I (29506) example: expect speed: 0.000000 real_pulses:0 +I (29506) example: new speed:399.000000 +I (29516) example: expect speed: 0.000000 real_pulses:0 +I (29516) example: new speed:399.000000 +I (29526) example: expect speed: 0.000000 real_pulses:0 +I (29526) example: new speed:399.000000 +I (29536) example: expect speed: 0.000000 real_pulses:0 +I (29536) example: new speed:399.000000 +I (29546) example: expect speed: 0.000000 real_pulses:0 +I (29546) example: new speed:399.000000 +I (29556) example: expect speed: 0.000000 real_pulses:0 +I (29556) example: new speed:399.000000 +I (29566) example: expect speed: 0.000000 real_pulses:0 +I (29566) example: new speed:399.000000 +I (29576) example: expect speed: 0.000000 real_pulses:0 +I (29576) example: new speed:399.000000 +I (29586) example: expect speed: 0.000000 real_pulses:0 +I (29586) example: new speed:399.000000 +I (29596) example: expect speed: 0.000000 real_pulses:0 +I (29596) example: new speed:399.000000 +I (29606) example: expect speed: 0.000000 real_pulses:0 +I (29606) example: new speed:399.000000 +I (29616) example: expect speed: 0.000000 real_pulses:0 +I (29616) example: new speed:399.000000 +I (29626) example: expect speed: 0.000000 real_pulses:0 +I (29626) example: new speed:399.000000 +I (29636) example: expect speed: 0.000000 real_pulses:0 +I (29636) example: new speed:399.000000 +I (29646) example: expect speed: 0.000000 real_pulses:0 +I (29646) example: new speed:399.000000 +I (29656) example: expect speed: 0.000000 real_pulses:0 +I (29656) example: new speed:399.000000 +I (29666) example: expect speed: 0.000000 real_pulses:0 +I (29666) example: new speed:399.000000 +I (29676) example: expect speed: 0.000000 real_pulses:0 +I (29676) example: new speed:399.000000 +I (29686) example: expect speed: 0.000000 real_pulses:0 +I (29686) example: new speed:399.000000 +I (29696) example: expect speed: 0.000000 real_pulses:0 +I (29696) example: new speed:399.000000 +I (29706) example: expect speed: 0.000000 real_pulses:0 +I (29706) example: new speed:399.000000 +I (29716) example: expect speed: 0.000000 real_pulses:0 +I (29716) example: new speed:399.000000 +I (29726) example: expect speed: 0.000000 real_pulses:0 +I (29726) example: new speed:399.000000 +I (29736) example: expect speed: 0.000000 real_pulses:0 +I (29736) example: new speed:399.000000 +I (29746) example: expect speed: 0.000000 real_pulses:0 +I (29746) example: new speed:399.000000 +I (29756) example: expect speed: 0.000000 real_pulses:0 +I (29756) example: new speed:399.000000 +I (29766) example: expect speed: 0.000000 real_pulses:0 +I (29766) example: new speed:399.000000 +I (29776) example: expect speed: 0.000000 real_pulses:0 +I (29776) example: new speed:399.000000 +I (29786) example: expect speed: 0.000000 real_pulses:0 +I (29786) example: new speed:399.000000 +I (29796) example: expect speed: 0.000000 real_pulses:0 +I (29796) example: new speed:399.000000 +I (29806) example: expect speed: 0.000000 real_pulses:0 +I (29806) example: new speed:399.000000 +I (29816) example: expect speed: 0.000000 real_pulses:0 +I (29816) example: new speed:399.000000 +I (29826) example: expect speed: 0.000000 real_pulses:0 +I (29826) example: new speed:399.000000 +I (29836) example: expect speed: 0.000000 real_pulses:0 +I (29836) example: new speed:399.000000 +I (29846) example: expect speed: 0.000000 real_pulses:0 +I (29846) example: new speed:399.000000 +I (29856) example: expect speed: 0.000000 real_pulses:0 +I (29856) example: new speed:399.000000 +I (29866) example: expect speed: 0.000000 real_pulses:0 +I (29866) example: new speed:399.000000 +I (29876) example: expect speed: 0.000000 real_pulses:0 +I (29876) example: new speed:399.000000 +I (29886) example: expect speed: 0.000000 real_pulses:0 +I (29886) example: new speed:399.000000 +I (29896) example: expect speed: 0.000000 real_pulses:0 +I (29896) example: new speed:399.000000 +I (29906) example: expect speed: 0.000000 real_pulses:0 +I (29906) example: new speed:399.000000 +I (29916) example: expect speed: 0.000000 real_pulses:0 +I (29916) example: new speed:399.000000 +I (29926) example: expect speed: 0.000000 real_pulses:0 +I (29926) example: new speed:399.000000 +I (29936) example: expect speed: 0.000000 real_pulses:0 +I (29936) example: new speed:399.000000 +I (29946) example: expect speed: 0.000000 real_pulses:0 +I (29946) example: new speed:399.000000 +I (29956) example: expect speed: 0.000000 real_pulses:0 +I (29956) example: new speed:399.000000 +I (29966) example: expect speed: 0.000000 real_pulses:0 +I (29966) example: new speed:399.000000 +I (29976) example: expect speed: 0.000000 real_pulses:0 +I (29976) example: new speed:399.000000 +I (29986) example: expect speed: 0.000000 real_pulses:0 +I (29986) example: new speed:399.000000 +I (29996) example: expect speed: 0.000000 real_pulses:0 +I (29996) example: new speed:399.000000 +I (30006) example: expect speed: 0.000000 real_pulses:0 +I (30006) example: new speed:399.000000 +I (30016) example: expect speed: 0.000000 real_pulses:0 +I (30016) example: new speed:399.000000 +I (30026) example: expect speed: 0.000000 real_pulses:0 +I (30026) example: new speed:399.000000 +I (30036) example: expect speed: 0.000000 real_pulses:0 +I (30036) example: new speed:399.000000 +I (30046) example: expect speed: 0.000000 real_pulses:0 +I (30046) example: new speed:399.000000 +I (30056) example: expect speed: 0.000000 real_pulses:0 +I (30056) example: new speed:399.000000 +I (30066) example: expect speed: 0.000000 real_pulses:0 +I (30066) example: new speed:399.000000 +I (30076) example: expect speed: 0.000000 real_pulses:0 +I (30076) example: new speed:399.000000 +I (30086) example: expect speed: 0.000000 real_pulses:0 +I (30086) example: new speed:399.000000 +I (30096) example: expect speed: 0.000000 real_pulses:0 +I (30096) example: new speed:399.000000 +I (30106) example: expect speed: 0.000000 real_pulses:0 +I (30106) example: new speed:399.000000 +I (30116) example: expect speed: 0.000000 real_pulses:0 +I (30116) example: new speed:399.000000 +I (30126) example: expect speed: 0.000000 real_pulses:0 +I (30126) example: new speed:399.000000 +I (30136) example: expect speed: 0.000000 real_pulses:0 +I (30136) example: new speed:399.000000 +I (30146) example: expect speed: 0.000000 real_pulses:0 +I (30146) example: new speed:399.000000 +I (30156) example: expect speed: 0.000000 real_pulses:0 +I (30156) example: new speed:399.000000 +I (30166) example: expect speed: 0.000000 real_pulses:0 +I (30166) example: new speed:399.000000 +I (30176) example: expect speed: 0.000000 real_pulses:0 +I (30176) example: new speed:399.000000 +I (30186) example: expect speed: 0.000000 real_pulses:0 +I (30186) example: new speed:399.000000 +I (30196) example: expect speed: 0.000000 real_pulses:0 +I (30196) example: new speed:399.000000 +I (30206) example: expect speed: 0.000000 real_pulses:0 +I (30206) example: new speed:399.000000 +I (30216) example: expect speed: 0.000000 real_pulses:0 +I (30216) example: new speed:399.000000 +I (30226) example: expect speed: 0.000000 real_pulses:0 +I (30226) example: new speed:399.000000 +I (30236) example: expect speed: 0.000000 real_pulses:0 +I (30236) example: new speed:399.000000 +I (30246) example: expect speed: 0.000000 real_pulses:0 +I (30246) example: new speed:399.000000 +I (30256) example: expect speed: 0.000000 real_pulses:0 +I (30256) example: new speed:399.000000 +I (30266) example: expect speed: 0.000000 real_pulses:0 +I (30266) example: new speed:399.000000 +I (30276) example: expect speed: 0.000000 real_pulses:0 +I (30276) example: new speed:399.000000 +I (30286) example: expect speed: 0.000000 real_pulses:0 +I (30286) example: new speed:399.000000 +I (30296) example: expect speed: 0.000000 real_pulses:0 +I (30296) example: new speed:399.000000 +I (30306) example: expect speed: 0.000000 real_pulses:0 +I (30306) example: new speed:399.000000 +I (30316) example: expect speed: 0.000000 real_pulses:0 +I (30316) example: new speed:399.000000 +I (30326) example: expect speed: 0.000000 real_pulses:0 +I (30326) example: new speed:399.000000 +I (30336) example: expect speed: 0.000000 real_pulses:0 +I (30336) example: new speed:399.000000 +I (30346) example: expect speed: 0.000000 real_pulses:0 +I (30346) example: new speed:399.000000 +I (30356) example: expect speed: 0.000000 real_pulses:0 +I (30356) example: new speed:399.000000 +I (30366) example: expect speed: 0.000000 real_pulses:0 +I (30366) example: new speed:399.000000 +I (30376) example: expect speed: 0.000000 real_pulses:0 +I (30376) example: new speed:399.000000 +I (30386) example: expect speed: 0.000000 real_pulses:0 +I (30386) example: new speed:399.000000 +I (30396) example: expect speed: 0.000000 real_pulses:0 +I (30396) example: new speed:399.000000 +I (30406) example: expect speed: 0.000000 real_pulses:0 +I (30406) example: new speed:399.000000 +I (30416) example: expect speed: 0.000000 real_pulses:0 +I (30416) example: new speed:399.000000 +I (30426) example: expect speed: 0.000000 real_pulses:0 +I (30426) example: new speed:399.000000 +I (30436) example: expect speed: 0.000000 real_pulses:0 +I (30436) example: new speed:399.000000 +I (30446) example: expect speed: 0.000000 real_pulses:0 +I (30446) example: new speed:399.000000 +I (30456) example: expect speed: 0.000000 real_pulses:0 +I (30456) example: new speed:399.000000 +I (30466) example: expect speed: 0.000000 real_pulses:0 +I (30466) example: new speed:399.000000 +I (30476) example: expect speed: 0.000000 real_pulses:0 +I (30476) example: new speed:399.000000 +I (30486) example: expect speed: 0.000000 real_pulses:0 +I (30486) example: new speed:399.000000 +I (30496) example: expect speed: 0.000000 real_pulses:0 +I (30496) example: new speed:399.000000 +I (30506) example: expect speed: 0.000000 real_pulses:0 +I (30506) example: new speed:399.000000 +I (30516) example: expect speed: 0.000000 real_pulses:0 +I (30516) example: new speed:399.000000 +I (30526) example: expect speed: 0.000000 real_pulses:0 +I (30526) example: new speed:399.000000 +I (30536) example: expect speed: 0.000000 real_pulses:0 +I (30536) example: new speed:399.000000 +I (30546) example: expect speed: 0.000000 real_pulses:0 +I (30546) example: new speed:399.000000 +I (30556) example: expect speed: 0.000000 real_pulses:0 +I (30556) example: new speed:399.000000 +I (30566) example: expect speed: 0.000000 real_pulses:0 +I (30566) example: new speed:399.000000 +I (30576) example: expect speed: 0.000000 real_pulses:0 +I (30576) example: new speed:399.000000 +I (30586) example: expect speed: 0.000000 real_pulses:0 +I (30586) example: new speed:399.000000 +I (30596) example: expect speed: 0.000000 real_pulses:0 +I (30596) example: new speed:399.000000 +I (30606) example: expect speed: 0.000000 real_pulses:0 +I (30606) example: new speed:399.000000 +I (30616) example: expect speed: 0.000000 real_pulses:0 +I (30616) example: new speed:399.000000 +I (30626) example: expect speed: 0.000000 real_pulses:0 +I (30626) example: new speed:399.000000 +I (30636) example: expect speed: 0.000000 real_pulses:0 +I (30636) example: new speed:399.000000 +I (30646) example: expect speed: 0.000000 real_pulses:0 +I (30646) example: new speed:399.000000 +I (30656) example: expect speed: 0.000000 real_pulses:0 +I (30656) example: new speed:399.000000 +I (30666) example: expect speed: 0.000000 real_pulses:0 +I (30666) example: new speed:399.000000 +I (30676) example: expect speed: 0.000000 real_pulses:0 +I (30676) example: new speed:399.000000 +I (30686) example: expect speed: 0.000000 real_pulses:0 +I (30686) example: new speed:399.000000 +I (30696) example: expect speed: 0.000000 real_pulses:0 +I (30696) example: new speed:399.000000 +I (30706) example: expect speed: 0.000000 real_pulses:0 +I (30706) example: new speed:399.000000 +I (30716) example: expect speed: 0.000000 real_pulses:0 +I (30716) example: new speed:399.000000 +I (30726) example: expect speed: 0.000000 real_pulses:0 +I (30726) example: new speed:399.000000 +I (30736) example: expect speed: 0.000000 real_pulses:0 +I (30736) example: new speed:399.000000 +I (30746) example: expect speed: 0.000000 real_pulses:0 +I (30746) example: new speed:399.000000 +I (30756) example: expect speed: 0.000000 real_pulses:0 +I (30756) example: new speed:399.000000 +I (30766) example: expect speed: 0.000000 real_pulses:0 +I (30766) example: new speed:399.000000 +I (30776) example: expect speed: 0.000000 real_pulses:0 +I (30776) example: new speed:399.000000 +I (30786) example: expect speed: 0.000000 real_pulses:0 +I (30786) example: new speed:399.000000 +I (30796) example: expect speed: 0.000000 real_pulses:0 +I (30796) example: new speed:399.000000 +I (30806) example: expect speed: 0.000000 real_pulses:0 +I (30806) example: new speed:399.000000 +I (30816) example: expect speed: 0.000000 real_pulses:0 +I (30816) example: new speed:399.000000 +I (30826) example: expect speed: 0.000000 real_pulses:0 +I (30826) example: new speed:399.000000 +I (30836) example: expect speed: 0.000000 real_pulses:0 +I (30836) example: new speed:399.000000 +I (30846) example: expect speed: 0.000000 real_pulses:0 +I (30846) example: new speed:399.000000 +I (30856) example: expect speed: 0.000000 real_pulses:0 +I (30856) example: new speed:399.000000 +I (30866) example: expect speed: 0.000000 real_pulses:0 +I (30866) example: new speed:399.000000 +I (30876) example: expect speed: 0.000000 real_pulses:0 +I (30876) example: new speed:399.000000 +I (30886) example: expect speed: 0.000000 real_pulses:0 +I (30886) example: new speed:399.000000 +I (30896) example: expect speed: 0.000000 real_pulses:0 +I (30896) example: new speed:399.000000 +I (30906) example: expect speed: 0.000000 real_pulses:0 +I (30906) example: new speed:399.000000 +I (30916) example: expect speed: 0.000000 real_pulses:0 +I (30916) example: new speed:399.000000 +I (30926) example: expect speed: 0.000000 real_pulses:0 +I (30926) example: new speed:399.000000 +I (30936) example: expect speed: 0.000000 real_pulses:0 +I (30936) example: new speed:399.000000 +I (30946) example: expect speed: 0.000000 real_pulses:0 +I (30946) example: new speed:399.000000 +I (30956) example: expect speed: 0.000000 real_pulses:0 +I (30956) example: new speed:399.000000 +I (30966) example: expect speed: 0.000000 real_pulses:0 +I (30966) example: new speed:399.000000 +I (30976) example: expect speed: 0.000000 real_pulses:0 +I (30976) example: new speed:399.000000 +I (30986) example: expect speed: 0.000000 real_pulses:0 +I (30986) example: new speed:399.000000 +I (30996) example: expect speed: 0.000000 real_pulses:0 +I (30996) example: new speed:399.000000 +I (31006) example: expect speed: 0.000000 real_pulses:0 +I (31006) example: new speed:399.000000 +I (31016) example: expect speed: 0.000000 real_pulses:0 +I (31016) example: new speed:399.000000 +I (31026) example: expect speed: 0.000000 real_pulses:0 +I (31026) example: new speed:399.000000 +I (31036) example: expect speed: 0.000000 real_pulses:0 +I (31036) example: new speed:399.000000 +I (31046) example: expect speed: 0.000000 real_pulses:0 +I (31046) example: new speed:399.000000 +I (31056) example: expect speed: 0.000000 real_pulses:0 +I (31056) example: new speed:399.000000 +I (31066) example: expect speed: 0.000000 real_pulses:0 +I (31066) example: new speed:399.000000 +I (31076) example: expect speed: 0.000000 real_pulses:0 +I (31076) example: new speed:399.000000 +I (31086) example: expect speed: 0.000000 real_pulses:0 +I (31086) example: new speed:399.000000 +I (31096) example: expect speed: 0.000000 real_pulses:0 +I (31096) example: new speed:399.000000 +I (31106) example: expect speed: 0.000000 real_pulses:0 +I (31106) example: new speed:399.000000 +I (31116) example: expect speed: 0.000000 real_pulses:0 +I (31116) example: new speed:399.000000 +I (31126) example: expect speed: 0.000000 real_pulses:0 +I (31126) example: new speed:399.000000 +I (31136) example: expect speed: 0.000000 real_pulses:0 +I (31136) example: new speed:399.000000 +I (31146) example: expect speed: 0.000000 real_pulses:0 +I (31146) example: new speed:399.000000 +I (31156) example: expect speed: 0.000000 real_pulses:0 +I (31156) example: new speed:399.000000 +I (31166) example: expect speed: 0.000000 real_pulses:0 +I (31166) example: new speed:399.000000 +I (31176) example: expect speed: 0.000000 real_pulses:0 +I (31176) example: new speed:399.000000 +I (31186) example: expect speed: 0.000000 real_pulses:0 +I (31186) example: new speed:399.000000 +I (31196) example: expect speed: 0.000000 real_pulses:0 +I (31196) example: new speed:399.000000 +I (31206) example: expect speed: 0.000000 real_pulses:0 +I (31206) example: new speed:399.000000 +I (31216) example: expect speed: 0.000000 real_pulses:0 +I (31216) example: new speed:399.000000 +I (31226) example: expect speed: 0.000000 real_pulses:0 +I (31226) example: new speed:399.000000 +I (31236) example: expect speed: 0.000000 real_pulses:0 +I (31236) example: new speed:399.000000 +I (31246) example: expect speed: 0.000000 real_pulses:0 +I (31246) example: new speed:399.000000 +I (31256) example: expect speed: 0.000000 real_pulses:0 +I (31256) example: new speed:399.000000 +I (31266) example: expect speed: 0.000000 real_pulses:0 +I (31266) example: new speed:399.000000 +I (31276) example: expect speed: 0.000000 real_pulses:0 +I (31276) example: new speed:399.000000 +I (31286) example: expect speed: 0.000000 real_pulses:0 +I (31286) example: new speed:399.000000 +I (31296) example: expect speed: 0.000000 real_pulses:0 +I (31296) example: new speed:399.000000 +I (31306) example: expect speed: 0.000000 real_pulses:0 +I (31306) example: new speed:399.000000 +I (31316) example: expect speed: 0.000000 real_pulses:0 +I (31316) example: new speed:399.000000 +I (31326) example: expect speed: 0.000000 real_pulses:0 +I (31326) example: new speed:399.000000 +I (31336) example: expect speed: 0.000000 real_pulses:0 +I (31336) example: new speed:399.000000 +I (31346) example: expect speed: 0.000000 real_pulses:0 +I (31346) example: new speed:399.000000 +I (31356) example: expect speed: 0.000000 real_pulses:0 +I (31356) example: new speed:399.000000 +I (31366) example: expect speed: 0.000000 real_pulses:0 +I (31366) example: new speed:399.000000 +I (31376) example: expect speed: 0.000000 real_pulses:0 +I (31376) example: new speed:399.000000 +I (31386) example: expect speed: 0.000000 real_pulses:0 +I (31386) example: new speed:399.000000 +I (31396) example: expect speed: 0.000000 real_pulses:0 +I (31396) example: new speed:399.000000 +I (31406) example: expect speed: 0.000000 real_pulses:0 +I (31406) example: new speed:399.000000 +I (31416) example: expect speed: 0.000000 real_pulses:0 +I (31416) example: new speed:399.000000 +I (31426) example: expect speed: 0.000000 real_pulses:0 +I (31426) example: new speed:399.000000 +I (31436) example: expect speed: 0.000000 real_pulses:0 +I (31436) example: new speed:399.000000 +I (31446) example: expect speed: 0.000000 real_pulses:0 +I (31446) example: new speed:399.000000 +I (31456) example: expect speed: 0.000000 real_pulses:0 +I (31456) example: new speed:399.000000 +I (31466) example: expect speed: 0.000000 real_pulses:0 +I (31466) example: new speed:399.000000 +I (31476) example: expect speed: 0.000000 real_pulses:0 +I (31476) example: new speed:399.000000 +I (31486) example: expect speed: 0.000000 real_pulses:0 +I (31486) example: new speed:399.000000 +I (31496) example: expect speed: 0.000000 real_pulses:0 +I (31496) example: new speed:399.000000 +I (31506) example: expect speed: 0.000000 real_pulses:0 +I (31506) example: new speed:399.000000 +I (31516) example: expect speed: 0.000000 real_pulses:0 +I (31516) example: new speed:399.000000 +I (31526) example: expect speed: 0.000000 real_pulses:0 +I (31526) example: new speed:399.000000 +I (31536) example: expect speed: 0.000000 real_pulses:0 +I (31536) example: new speed:399.000000 +I (31546) example: expect speed: 0.000000 real_pulses:0 +I (31546) example: new speed:399.000000 +I (31556) example: expect speed: 0.000000 real_pulses:0 +I (31556) example: new speed:399.000000 +I (31566) example: expect speed: 0.000000 real_pulses:0 +I (31566) example: new speed:399.000000 +I (31576) example: expect speed: 0.000000 real_pulses:0 +I (31576) example: new speed:399.000000 +I (31586) example: expect speed: 0.000000 real_pulses:0 +I (31586) example: new speed:399.000000 +I (31596) example: expect speed: 0.000000 real_pulses:0 +I (31596) example: new speed:399.000000 +I (31606) example: expect speed: 0.000000 real_pulses:0 +I (31606) example: new speed:399.000000 +I (31616) example: expect speed: 0.000000 real_pulses:0 +I (31616) example: new speed:399.000000 +I (31626) example: expect speed: 0.000000 real_pulses:0 +I (31626) example: new speed:399.000000 +I (31636) example: expect speed: 0.000000 real_pulses:0 +I (31636) example: new speed:399.000000 +I (31646) example: expect speed: 0.000000 real_pulses:0 +I (31646) example: new speed:399.000000 +I (31656) example: expect speed: 0.000000 real_pulses:0 +I (31656) example: new speed:399.000000 +I (31666) example: expect speed: 0.000000 real_pulses:0 +I (31666) example: new speed:399.000000 +I (31676) example: expect speed: 0.000000 real_pulses:0 +I (31676) example: new speed:399.000000 +I (31686) example: expect speed: 0.000000 real_pulses:0 +I (31686) example: new speed:399.000000 +I (31696) example: expect speed: 0.000000 real_pulses:0 +I (31696) example: new speed:399.000000 +I (31706) example: expect speed: 0.000000 real_pulses:0 +I (31706) example: new speed:399.000000 +I (31716) example: expect speed: 0.000000 real_pulses:0 +I (31716) example: new speed:399.000000 +I (31726) example: expect speed: 0.000000 real_pulses:0 +I (31726) example: new speed:399.000000 +I (31736) example: expect speed: 0.000000 real_pulses:0 +I (31736) example: new speed:399.000000 +I (31746) example: expect speed: 0.000000 real_pulses:0 +I (31746) example: new speed:399.000000 +I (31756) example: expect speed: 0.000000 real_pulses:0 +I (31756) example: new speed:399.000000 +I (31766) example: expect speed: 0.000000 real_pulses:0 +I (31766) example: new speed:399.000000 +I (31776) example: expect speed: 0.000000 real_pulses:0 +I (31776) example: new speed:399.000000 +I (31786) example: expect speed: 0.000000 real_pulses:0 +I (31786) example: new speed:399.000000 +I (31796) example: expect speed: 0.000000 real_pulses:0 +I (31796) example: new speed:399.000000 +I (31806) example: expect speed: 0.000000 real_pulses:0 +I (31806) example: new speed:399.000000 +I (31816) example: expect speed: 0.000000 real_pulses:0 +I (31816) example: new speed:399.000000 +I (31826) example: expect speed: 0.000000 real_pulses:0 +I (31826) example: new speed:399.000000 +I (31836) example: expect speed: 0.000000 real_pulses:0 +I (31836) example: new speed:399.000000 +I (31846) example: expect speed: 0.000000 real_pulses:0 +I (31846) example: new speed:399.000000 +I (31856) example: expect speed: 0.000000 real_pulses:0 +I (31856) example: new speed:399.000000 +I (31866) example: expect speed: 0.000000 real_pulses:0 +I (31866) example: new speed:399.000000 +I (31876) example: expect speed: 0.000000 real_pulses:0 +I (31876) example: new speed:399.000000 +I (31886) example: expect speed: 0.000000 real_pulses:0 +I (31886) example: new speed:399.000000 +I (31896) example: expect speed: 0.000000 real_pulses:0 +I (31896) example: new speed:399.000000 +I (31906) example: expect speed: 0.000000 real_pulses:0 +I (31906) example: new speed:399.000000 +I (31916) example: expect speed: 0.000000 real_pulses:0 +I (31916) example: new speed:399.000000 +I (31926) example: expect speed: 0.000000 real_pulses:0 +I (31926) example: new speed:399.000000 +I (31936) example: expect speed: 0.000000 real_pulses:0 +I (31936) example: new speed:399.000000 +I (31946) example: expect speed: 0.000000 real_pulses:0 +I (31946) example: new speed:399.000000 +I (31956) example: expect speed: 0.000000 real_pulses:0 +I (31956) example: new speed:399.000000 +I (31966) example: expect speed: 0.000000 real_pulses:0 +I (31966) example: new speed:399.000000 +I (31976) example: expect speed: 0.000000 real_pulses:0 +I (31976) example: new speed:399.000000 +I (31986) example: expect speed: 0.000000 real_pulses:0 +I (31986) example: new speed:399.000000 +I (31996) example: expect speed: 0.000000 real_pulses:0 +I (31996) example: new speed:399.000000 +I (32006) example: expect speed: 0.000000 real_pulses:0 +I (32006) example: new speed:399.000000 +I (32016) example: expect speed: 0.000000 real_pulses:0 +I (32016) example: new speed:399.000000 +I (32026) example: expect speed: 0.000000 real_pulses:0 +I (32026) example: new speed:399.000000 +I (32036) example: expect speed: 0.000000 real_pulses:0 +I (32036) example: new speed:399.000000 +I (32046) example: expect speed: 0.000000 real_pulses:0 +I (32046) example: new speed:399.000000 +I (32056) example: expect speed: 0.000000 real_pulses:0 +I (32056) example: new speed:399.000000 +I (32066) example: expect speed: 0.000000 real_pulses:0 +I (32066) example: new speed:399.000000 +I (32076) example: expect speed: 0.000000 real_pulses:0 +I (32076) example: new speed:399.000000 +I (32086) example: expect speed: 0.000000 real_pulses:0 +I (32086) example: new speed:399.000000 +I (32096) example: expect speed: 0.000000 real_pulses:0 +I (32096) example: new speed:399.000000 +I (32106) example: expect speed: 0.000000 real_pulses:0 +I (32106) example: new speed:399.000000 +I (32116) example: expect speed: 0.000000 real_pulses:0 +I (32116) example: new speed:399.000000 +I (32126) example: expect speed: 0.000000 real_pulses:0 +I (32126) example: new speed:399.000000 +I (32136) example: expect speed: 0.000000 real_pulses:0 +I (32136) example: new speed:399.000000 +I (32146) example: expect speed: 0.000000 real_pulses:0 +I (32146) example: new speed:399.000000 +I (32156) example: expect speed: 0.000000 real_pulses:0 +I (32156) example: new speed:399.000000 +I (32166) example: expect speed: 0.000000 real_pulses:0 +I (32166) example: new speed:399.000000 +I (32176) example: expect speed: 0.000000 real_pulses:0 +I (32176) example: new speed:399.000000 +I (32186) example: expect speed: 0.000000 real_pulses:0 +I (32186) example: new speed:399.000000 +I (32196) example: expect speed: 0.000000 real_pulses:0 +I (32196) example: new speed:399.000000 +I (32206) example: expect speed: 0.000000 real_pulses:0 +I (32206) example: new speed:399.000000 +I (32216) example: expect speed: 0.000000 real_pulses:0 +I (32216) example: new speed:399.000000 +I (32226) example: expect speed: 0.000000 real_pulses:0 +I (32226) example: new speed:399.000000 +I (32236) example: expect speed: 0.000000 real_pulses:0 +I (32236) example: new speed:399.000000 +I (32246) example: expect speed: 0.000000 real_pulses:0 +I (32246) example: new speed:399.000000 +I (32256) example: expect speed: 0.000000 real_pulses:0 +I (32256) example: new speed:399.000000 +I (32266) example: expect speed: 0.000000 real_pulses:0 +I (32266) example: new speed:399.000000 +I (32276) example: expect speed: 0.000000 real_pulses:0 +I (32276) example: new speed:399.000000 +I (32286) example: expect speed: 0.000000 real_pulses:0 +I (32286) example: new speed:399.000000 +I (32296) example: expect speed: 0.000000 real_pulses:0 +I (32296) example: new speed:399.000000 +I (32306) example: expect speed: 0.000000 real_pulses:0 +I (32306) example: new speed:399.000000 +I (32316) example: expect speed: 0.000000 real_pulses:0 +I (32316) example: new speed:399.000000 +I (32326) example: expect speed: 0.000000 real_pulses:0 +I (32326) example: new speed:399.000000 +I (32336) example: expect speed: 0.000000 real_pulses:0 +I (32336) example: new speed:399.000000 +I (32346) example: expect speed: 0.000000 real_pulses:0 +I (32346) example: new speed:399.000000 +I (32356) example: expect speed: 0.000000 real_pulses:0 +I (32356) example: new speed:399.000000 +I (32366) example: expect speed: 0.000000 real_pulses:0 +I (32366) example: new speed:399.000000 +I (32376) example: expect speed: 0.000000 real_pulses:0 +I (32376) example: new speed:399.000000 +I (32386) example: expect speed: 0.000000 real_pulses:0 +I (32386) example: new speed:399.000000 +I (32396) example: expect speed: 0.000000 real_pulses:0 +I (32396) example: new speed:399.000000 +I (32406) example: expect speed: 0.000000 real_pulses:0 +I (32406) example: new speed:399.000000 +I (32416) example: expect speed: 0.000000 real_pulses:0 +I (32416) example: new speed:399.000000 +I (32426) example: expect speed: 0.000000 real_pulses:0 +I (32426) example: new speed:399.000000 +I (32436) example: expect speed: 0.000000 real_pulses:0 +I (32436) example: new speed:399.000000 +I (32446) example: expect speed: 0.000000 real_pulses:0 +I (32446) example: new speed:399.000000 +I (32456) example: expect speed: 0.000000 real_pulses:0 +I (32456) example: new speed:399.000000 +I (32466) example: expect speed: 0.000000 real_pulses:0 +I (32466) example: new speed:399.000000 +I (32476) example: expect speed: 0.000000 real_pulses:0 +I (32476) example: new speed:399.000000 +I (32486) example: expect speed: 0.000000 real_pulses:0 +I (32486) example: new speed:399.000000 +I (32496) example: expect speed: 0.000000 real_pulses:0 +I (32496) example: new speed:399.000000 +I (32506) example: expect speed: 0.000000 real_pulses:0 +I (32506) example: new speed:399.000000 +I (32516) example: expect speed: 0.000000 real_pulses:0 +I (32516) example: new speed:399.000000 +I (32526) example: expect speed: 0.000000 real_pulses:0 +I (32526) example: new speed:399.000000 +I (32536) example: expect speed: 0.000000 real_pulses:0 +I (32536) example: new speed:399.000000 +I (32546) example: expect speed: 0.000000 real_pulses:0 +I (32546) example: new speed:399.000000 +I (32556) example: expect speed: 0.000000 real_pulses:0 +I (32556) example: new speed:399.000000 +I (32566) example: expect speed: 0.000000 real_pulses:0 +I (32566) example: new speed:399.000000 +I (32576) example: expect speed: 0.000000 real_pulses:0 +I (32576) example: new speed:399.000000 +I (32586) example: expect speed: 0.000000 real_pulses:0 +I (32586) example: new speed:399.000000 +I (32596) example: expect speed: 0.000000 real_pulses:0 +I (32596) example: new speed:399.000000 +I (32606) example: expect speed: 0.000000 real_pulses:0 +I (32606) example: new speed:399.000000 +I (32616) example: expect speed: 0.000000 real_pulses:0 +I (32616) example: new speed:399.000000 +I (32626) example: expect speed: 0.000000 real_pulses:0 +I (32626) example: new speed:399.000000 +I (32636) example: expect speed: 0.000000 real_pulses:0 +I (32636) example: new speed:399.000000 +I (32646) example: expect speed: 0.000000 real_pulses:0 +I (32646) example: new speed:399.000000 +I (32656) example: expect speed: 0.000000 real_pulses:0 +I (32656) example: new speed:399.000000 +I (32666) example: expect speed: 0.000000 real_pulses:0 +I (32666) example: new speed:399.000000 +I (32676) example: expect speed: 0.000000 real_pulses:0 +I (32676) example: new speed:399.000000 +I (32686) example: expect speed: 0.000000 real_pulses:0 +I (32686) example: new speed:399.000000 +I (32696) example: expect speed: 0.000000 real_pulses:0 +I (32696) example: new speed:399.000000 +I (32706) example: expect speed: 0.000000 real_pulses:0 +I (32706) example: new speed:399.000000 +I (32716) example: expect speed: 0.000000 real_pulses:0 +I (32716) example: new speed:399.000000 +I (32726) example: expect speed: 0.000000 real_pulses:0 +I (32726) example: new speed:399.000000 +I (32736) example: expect speed: 0.000000 real_pulses:0 +I (32736) example: new speed:399.000000 +I (32746) example: expect speed: 0.000000 real_pulses:0 +I (32746) example: new speed:399.000000 +I (32756) example: expect speed: 0.000000 real_pulses:0 +I (32756) example: new speed:399.000000 +I (32766) example: expect speed: 0.000000 real_pulses:0 +I (32766) example: new speed:399.000000 +I (32776) example: expect speed: 0.000000 real_pulses:0 +I (32776) example: new speed:399.000000 +I (32786) example: expect speed: 0.000000 real_pulses:0 +I (32786) example: new speed:399.000000 +I (32796) example: expect speed: 0.000000 real_pulses:0 +I (32796) example: new speed:399.000000 +I (32806) example: expect speed: 0.000000 real_pulses:0 +I (32806) example: new speed:399.000000 +I (32816) example: expect speed: 0.000000 real_pulses:0 +I (32816) example: new speed:399.000000 +I (32826) example: expect speed: 0.000000 real_pulses:0 +I (32826) example: new speed:399.000000 +I (32836) example: expect speed: 0.000000 real_pulses:0 +I (32836) example: new speed:399.000000 +I (32846) example: expect speed: 0.000000 real_pulses:0 +I (32846) example: new speed:399.000000 +I (32856) example: expect speed: 0.000000 real_pulses:0 +I (32856) example: new speed:399.000000 +I (32866) example: expect speed: 0.000000 real_pulses:0 +I (32866) example: new speed:399.000000 +I (32876) example: expect speed: 0.000000 real_pulses:0 +I (32876) example: new speed:399.000000 +I (32886) example: expect speed: 0.000000 real_pulses:0 +I (32886) example: new speed:399.000000 +I (32896) example: expect speed: 0.000000 real_pulses:0 +I (32896) example: new speed:399.000000 +I (32906) example: expect speed: 0.000000 real_pulses:0 +I (32906) example: new speed:399.000000 +I (32916) example: expect speed: 0.000000 real_pulses:0 +I (32916) example: new speed:399.000000 +I (32926) example: expect speed: 0.000000 real_pulses:0 +I (32926) example: new speed:399.000000 +I (32936) example: expect speed: 0.000000 real_pulses:0 +I (32936) example: new speed:399.000000 +I (32946) example: expect speed: 0.000000 real_pulses:0 +I (32946) example: new speed:399.000000 +I (32956) example: expect speed: 0.000000 real_pulses:0 +I (32956) example: new speed:399.000000 +I (32966) example: expect speed: 0.000000 real_pulses:0 +I (32966) example: new speed:399.000000 +I (32976) example: expect speed: 0.000000 real_pulses:0 +I (32976) example: new speed:399.000000 +I (32986) example: expect speed: 0.000000 real_pulses:0 +I (32986) example: new speed:399.000000 +I (32996) example: expect speed: 0.000000 real_pulses:0 +I (32996) example: new speed:399.000000 +I (33006) example: expect speed: 0.000000 real_pulses:0 +I (33006) example: new speed:399.000000 +I (33016) example: expect speed: 0.000000 real_pulses:0 +I (33016) example: new speed:399.000000 +I (33026) example: expect speed: 0.000000 real_pulses:0 +I (33026) example: new speed:399.000000 +I (33036) example: expect speed: 0.000000 real_pulses:0 +I (33036) example: new speed:399.000000 +I (33046) example: expect speed: 0.000000 real_pulses:0 +I (33046) example: new speed:399.000000 +I (33056) example: expect speed: 0.000000 real_pulses:0 +I (33056) example: new speed:399.000000 +I (33066) example: expect speed: 0.000000 real_pulses:0 +I (33066) example: new speed:399.000000 +I (33076) example: expect speed: 0.000000 real_pulses:0 +I (33076) example: new speed:399.000000 +I (33086) example: expect speed: 0.000000 real_pulses:0 +I (33086) example: new speed:399.000000 +I (33096) example: expect speed: 0.000000 real_pulses:0 +I (33096) example: new speed:399.000000 +I (33106) example: expect speed: 0.000000 real_pulses:0 +I (33106) example: new speed:399.000000 +I (33116) example: expect speed: 0.000000 real_pulses:0 +I (33116) example: new speed:399.000000 +I (33126) example: expect speed: 0.000000 real_pulses:0 +I (33126) example: new speed:399.000000 +I (33136) example: expect speed: 0.000000 real_pulses:0 +I (33136) example: new speed:399.000000 +I (33146) example: expect speed: 0.000000 real_pulses:0 +I (33146) example: new speed:399.000000 +I (33156) example: expect speed: 0.000000 real_pulses:0 +I (33156) example: new speed:399.000000 +I (33166) example: expect speed: 0.000000 real_pulses:0 +I (33166) example: new speed:399.000000 +I (33176) example: expect speed: 0.000000 real_pulses:0 +I (33176) example: new speed:399.000000 +I (33186) example: expect speed: 0.000000 real_pulses:0 +I (33186) example: new speed:399.000000 +I (33196) example: expect speed: 0.000000 real_pulses:0 +I (33196) example: new speed:399.000000 +I (33206) example: expect speed: 0.000000 real_pulses:0 +I (33206) example: new speed:399.000000 +I (33216) example: expect speed: 0.000000 real_pulses:0 +I (33216) example: new speed:399.000000 +I (33226) example: expect speed: 0.000000 real_pulses:0 +I (33226) example: new speed:399.000000 +I (33236) example: expect speed: 0.000000 real_pulses:0 +I (33236) example: new speed:399.000000 +I (33246) example: expect speed: 0.000000 real_pulses:0 +I (33246) example: new speed:399.000000 +I (33256) example: expect speed: 0.000000 real_pulses:0 +I (33256) example: new speed:399.000000 +I (33266) example: expect speed: 0.000000 real_pulses:0 +I (33266) example: new speed:399.000000 +I (33276) example: expect speed: 0.000000 real_pulses:0 +I (33276) example: new speed:399.000000 +I (33286) example: expect speed: 0.000000 real_pulses:0 +I (33286) example: new speed:399.000000 +I (33296) example: expect speed: 0.000000 real_pulses:0 +I (33296) example: new speed:399.000000 +I (33306) example: expect speed: 0.000000 real_pulses:0 +I (33306) example: new speed:399.000000 +I (33316) example: expect speed: 0.000000 real_pulses:0 +I (33316) example: new speed:399.000000 +I (33326) example: expect speed: 0.000000 real_pulses:0 +I (33326) example: new speed:399.000000 +I (33336) example: expect speed: 0.000000 real_pulses:0 +I (33336) example: new speed:399.000000 +I (33346) example: expect speed: 0.000000 real_pulses:0 +I (33346) example: new speed:399.000000 +I (33356) example: expect speed: 0.000000 real_pulses:0 +I (33356) example: new speed:399.000000 +I (33366) example: expect speed: 0.000000 real_pulses:0 +I (33366) example: new speed:399.000000 +I (33376) example: expect speed: 0.000000 real_pulses:0 +I (33376) example: new speed:399.000000 +I (33386) example: expect speed: 0.000000 real_pulses:0 +I (33386) example: new speed:399.000000 +I (33396) example: expect speed: 0.000000 real_pulses:0 +I (33396) example: new speed:399.000000 +I (33406) example: expect speed: 0.000000 real_pulses:0 +I (33406) example: new speed:399.000000 +I (33416) example: expect speed: 0.000000 real_pulses:0 +I (33416) example: new speed:399.000000 +I (33426) example: expect speed: 0.000000 real_pulses:0 +I (33426) example: new speed:399.000000 +I (33436) example: expect speed: 0.000000 real_pulses:0 +I (33436) example: new speed:399.000000 +I (33446) example: expect speed: 0.000000 real_pulses:0 +I (33446) example: new speed:399.000000 +I (33456) example: expect speed: 0.000000 real_pulses:0 +I (33456) example: new speed:399.000000 +I (33466) example: expect speed: 0.000000 real_pulses:0 +I (33466) example: new speed:399.000000 +I (33476) example: expect speed: 0.000000 real_pulses:0 +I (33476) example: new speed:399.000000 +I (33486) example: expect speed: 0.000000 real_pulses:0 +I (33486) example: new speed:399.000000 +I (33496) example: expect speed: 0.000000 real_pulses:0 +I (33496) example: new speed:399.000000 +I (33506) example: expect speed: 0.000000 real_pulses:0 +I (33506) example: new speed:399.000000 +I (33516) example: expect speed: 0.000000 real_pulses:0 +I (33516) example: new speed:399.000000 +I (33526) example: expect speed: 0.000000 real_pulses:0 +I (33526) example: new speed:399.000000 +I (33536) example: expect speed: 0.000000 real_pulses:0 +I (33536) example: new speed:399.000000 +I (33546) example: expect speed: 0.000000 real_pulses:0 +I (33546) example: new speed:399.000000 +I (33556) example: expect speed: 0.000000 real_pulses:0 +I (33556) example: new speed:399.000000 +I (33566) example: expect speed: 0.000000 real_pulses:0 +I (33566) example: new speed:399.000000 +I (33576) example: expect speed: 0.000000 real_pulses:0 +I (33576) example: new speed:399.000000 +I (33586) example: expect speed: 0.000000 real_pulses:0 +I (33586) example: new speed:399.000000 +I (33596) example: expect speed: 0.000000 real_pulses:0 +I (33596) example: new speed:399.000000 +I (33606) example: expect speed: 0.000000 real_pulses:0 +I (33606) example: new speed:399.000000 +I (33616) example: expect speed: 0.000000 real_pulses:0 +I (33616) example: new speed:399.000000 +I (33626) example: expect speed: 0.000000 real_pulses:0 +I (33626) example: new speed:399.000000 +I (33636) example: expect speed: 0.000000 real_pulses:0 +I (33636) example: new speed:399.000000 +I (33646) example: expect speed: 0.000000 real_pulses:0 +I (33646) example: new speed:399.000000 +I (33656) example: expect speed: 0.000000 real_pulses:0 +I (33656) example: new speed:399.000000 +I (33666) example: expect speed: 0.000000 real_pulses:0 +I (33666) example: new speed:399.000000 +I (33676) example: expect speed: 0.000000 real_pulses:0 +I (33676) example: new speed:399.000000 +I (33686) example: expect speed: 0.000000 real_pulses:0 +I (33686) example: new speed:399.000000 +I (33696) example: expect speed: 0.000000 real_pulses:0 +I (33696) example: new speed:399.000000 +I (33706) example: expect speed: 0.000000 real_pulses:0 +I (33706) example: new speed:399.000000 +I (33716) example: expect speed: 0.000000 real_pulses:0 +I (33716) example: new speed:399.000000 +I (33726) example: expect speed: 0.000000 real_pulses:0 +I (33726) example: new speed:399.000000 +I (33736) example: expect speed: 0.000000 real_pulses:0 +I (33736) example: new speed:399.000000 +I (33746) example: expect speed: 0.000000 real_pulses:0 +I (33746) example: new speed:399.000000 +I (33756) example: expect speed: 0.000000 real_pulses:0 +I (33756) example: new speed:399.000000 +I (33766) example: expect speed: 0.000000 real_pulses:0 +I (33766) example: new speed:399.000000 +I (33776) example: expect speed: 0.000000 real_pulses:0 +I (33776) example: new speed:399.000000 +I (33786) example: expect speed: 0.000000 real_pulses:0 +I (33786) example: new speed:399.000000 +I (33796) example: expect speed: 0.000000 real_pulses:0 +I (33796) example: new speed:399.000000 +I (33806) example: expect speed: 0.000000 real_pulses:0 +I (33806) example: new speed:399.000000 +I (33816) example: expect speed: 0.000000 real_pulses:0 +I (33816) example: new speed:399.000000 +I (33826) example: expect speed: 0.000000 real_pulses:0 +I (33826) example: new speed:399.000000 +I (33836) example: expect speed: 0.000000 real_pulses:0 +I (33836) example: new speed:399.000000 +I (33846) example: expect speed: 0.000000 real_pulses:0 +I (33846) example: new speed:399.000000 +I (33856) example: expect speed: 0.000000 real_pulses:0 +I (33856) example: new speed:399.000000 +I (33866) example: expect speed: 0.000000 real_pulses:0 +I (33866) example: new speed:399.000000 +I (33876) example: expect speed: 0.000000 real_pulses:0 +I (33876) example: new speed:399.000000 +I (33886) example: expect speed: 0.000000 real_pulses:0 +I (33886) example: new speed:399.000000 +I (33896) example: expect speed: 0.000000 real_pulses:0 +I (33896) example: new speed:399.000000 +I (33906) example: expect speed: 0.000000 real_pulses:0 +I (33906) example: new speed:399.000000 +I (33916) example: expect speed: 0.000000 real_pulses:0 +I (33916) example: new speed:399.000000 +I (33926) example: expect speed: 0.000000 real_pulses:0 +I (33926) example: new speed:399.000000 +I (33936) example: expect speed: 0.000000 real_pulses:0 +I (33936) example: new speed:399.000000 +I (33946) example: expect speed: 0.000000 real_pulses:0 +I (33946) example: new speed:399.000000 +I (33956) example: expect speed: 0.000000 real_pulses:0 +I (33956) example: new speed:399.000000 +I (33966) example: expect speed: 0.000000 real_pulses:0 +I (33966) example: new speed:399.000000 +I (33976) example: expect speed: 0.000000 real_pulses:0 +I (33976) example: new speed:399.000000 +I (33986) example: expect speed: 0.000000 real_pulses:0 +I (33986) example: new speed:399.000000 +I (33996) example: expect speed: 0.000000 real_pulses:0 +I (33996) example: new speed:399.000000 +I (34006) example: expect speed: 0.000000 real_pulses:0 +I (34006) example: new speed:399.000000 +I (34016) example: expect speed: 0.000000 real_pulses:0 +I (34016) example: new speed:399.000000 +I (34026) example: expect speed: 0.000000 real_pulses:0 +I (34026) example: new speed:399.000000 +I (34036) example: expect speed: 0.000000 real_pulses:0 +I (34036) example: new speed:399.000000 +I (34046) example: expect speed: 0.000000 real_pulses:0 +I (34046) example: new speed:399.000000 +I (34056) example: expect speed: 0.000000 real_pulses:0 +I (34056) example: new speed:399.000000 +I (34066) example: expect speed: 0.000000 real_pulses:0 +I (34066) example: new speed:399.000000 +I (34076) example: expect speed: 0.000000 real_pulses:0 +I (34076) example: new speed:399.000000 +I (34086) example: expect speed: 0.000000 real_pulses:0 +I (34086) example: new speed:399.000000 +I (34096) example: expect speed: 0.000000 real_pulses:0 +I (34096) example: new speed:399.000000 +I (34106) example: expect speed: 0.000000 real_pulses:0 +I (34106) example: new speed:399.000000 +I (34116) example: expect speed: 0.000000 real_pulses:0 +I (34116) example: new speed:399.000000 +I (34126) example: expect speed: 0.000000 real_pulses:0 +I (34126) example: new speed:399.000000 +I (34136) example: expect speed: 0.000000 real_pulses:0 +I (34136) example: new speed:399.000000 +I (34146) example: expect speed: 0.000000 real_pulses:0 +I (34146) example: new speed:399.000000 +I (34156) example: expect speed: 0.000000 real_pulses:0 +I (34156) example: new speed:399.000000 +I (34166) example: expect speed: 0.000000 real_pulses:0 +I (34166) example: new speed:399.000000 +I (34176) example: expect speed: 0.000000 real_pulses:0 +I (34176) example: new speed:399.000000 +I (34186) example: expect speed: 0.000000 real_pulses:0 +I (34186) example: new speed:399.000000 +I (34196) example: expect speed: 0.000000 real_pulses:0 +I (34196) example: new speed:399.000000 +I (34206) example: expect speed: 0.000000 real_pulses:0 +I (34206) example: new speed:399.000000 +I (34216) example: expect speed: 0.000000 real_pulses:0 +I (34216) example: new speed:399.000000 +I (34226) example: expect speed: 0.000000 real_pulses:0 +I (34226) example: new speed:399.000000 +I (34236) example: expect speed: 0.000000 real_pulses:0 +I (34236) example: new speed:399.000000 +I (34246) example: expect speed: 0.000000 real_pulses:0 +I (34246) example: new speed:399.000000 +I (34256) example: expect speed: 0.000000 real_pulses:0 +I (34256) example: new speed:399.000000 +I (34266) example: expect speed: 0.000000 real_pulses:0 +I (34266) example: new speed:399.000000 +I (34276) example: expect speed: 0.000000 real_pulses:0 +I (34276) example: new speed:399.000000 +I (34286) example: expect speed: 0.000000 real_pulses:0 +I (34286) example: new speed:399.000000 +I (34296) example: expect speed: 0.000000 real_pulses:0 +I (34296) example: new speed:399.000000 +I (34306) example: expect speed: 0.000000 real_pulses:0 +I (34306) example: new speed:399.000000 +I (34316) example: expect speed: 0.000000 real_pulses:0 +I (34316) example: new speed:399.000000 +I (34326) example: expect speed: 0.000000 real_pulses:0 +I (34326) example: new speed:399.000000 +I (34336) example: expect speed: 0.000000 real_pulses:0 +I (34336) example: new speed:399.000000 +I (34346) example: expect speed: 0.000000 real_pulses:0 +I (34346) example: new speed:399.000000 +I (34356) example: expect speed: 0.000000 real_pulses:0 +I (34356) example: new speed:399.000000 +I (34366) example: expect speed: 0.000000 real_pulses:0 +I (34366) example: new speed:399.000000 +I (34376) example: expect speed: 0.000000 real_pulses:0 +I (34376) example: new speed:399.000000 +I (34386) example: expect speed: 0.000000 real_pulses:0 +I (34386) example: new speed:399.000000 +I (34396) example: expect speed: 0.000000 real_pulses:0 +I (34396) example: new speed:399.000000 +I (34406) example: expect speed: 0.000000 real_pulses:0 +I (34406) example: new speed:399.000000 +I (34416) example: expect speed: 0.000000 real_pulses:0 +I (34416) example: new speed:399.000000 +I (34426) example: expect speed: 0.000000 real_pulses:0 +I (34426) example: new speed:399.000000 +I (34436) example: expect speed: 0.000000 real_pulses:0 +I (34436) example: new speed:399.000000 +I (34446) example: expect speed: 0.000000 real_pulses:0 +I (34446) example: new speed:399.000000 +I (34456) example: expect speed: 0.000000 real_pulses:0 +I (34456) example: new speed:399.000000 +I (34466) example: expect speed: 0.000000 real_pulses:0 +I (34466) example: new speed:399.000000 +I (34476) example: expect speed: 0.000000 real_pulses:0 +I (34476) example: new speed:399.000000 +I (34486) example: expect speed: 0.000000 real_pulses:0 +I (34486) example: new speed:399.000000 +I (34496) example: expect speed: 0.000000 real_pulses:0 +I (34496) example: new speed:399.000000 +I (34506) example: expect speed: 0.000000 real_pulses:0 +I (34506) example: new speed:399.000000 +I (34516) example: expect speed: 0.000000 real_pulses:0 +I (34516) example: new speed:399.000000 +I (34526) example: expect speed: 0.000000 real_pulses:0 +I (34526) example: new speed:399.000000 +I (34536) example: expect speed: 0.000000 real_pulses:0 +I (34536) example: new speed:399.000000 +I (34546) example: expect speed: 0.000000 real_pulses:0 +I (34546) example: new speed:399.000000 +I (34556) example: expect speed: 0.000000 real_pulses:0 +I (34556) example: new speed:399.000000 +I (34566) example: expect speed: 0.000000 real_pulses:0 +I (34566) example: new speed:399.000000 +I (34576) example: expect speed: 0.000000 real_pulses:0 +I (34576) example: new speed:399.000000 +I (34586) example: expect speed: 0.000000 real_pulses:0 +I (34586) example: new speed:399.000000 +I (34596) example: expect speed: 0.000000 real_pulses:0 +I (34596) example: new speed:399.000000 +I (34606) example: expect speed: 0.000000 real_pulses:0 +I (34606) example: new speed:399.000000 +I (34616) example: expect speed: 0.000000 real_pulses:0 +I (34616) example: new speed:399.000000 +I (34626) example: expect speed: 0.000000 real_pulses:0 +I (34626) example: new speed:399.000000 +I (34636) example: expect speed: 0.000000 real_pulses:0 +I (34636) example: new speed:399.000000 +I (34646) example: expect speed: 0.000000 real_pulses:0 +I (34646) example: new speed:399.000000 +I (34656) example: expect speed: 0.000000 real_pulses:0 +I (34656) example: new speed:399.000000 +I (34666) example: expect speed: 0.000000 real_pulses:0 +I (34666) example: new speed:399.000000 +I (34676) example: expect speed: 0.000000 real_pulses:0 +I (34676) example: new speed:399.000000 +I (34686) example: expect speed: 0.000000 real_pulses:0 +I (34686) example: new speed:399.000000 +I (34696) example: expect speed: 0.000000 real_pulses:0 +I (34696) example: new speed:399.000000 +I (34706) example: expect speed: 0.000000 real_pulses:0 +I (34706) example: new speed:399.000000 +I (34716) example: expect speed: 0.000000 real_pulses:0 +I (34716) example: new speed:399.000000 +I (34726) example: expect speed: 0.000000 real_pulses:0 +I (34726) example: new speed:399.000000 +I (34736) example: expect speed: 0.000000 real_pulses:0 +I (34736) example: new speed:399.000000 +I (34746) example: expect speed: 0.000000 real_pulses:0 +I (34746) example: new speed:399.000000 +I (34756) example: expect speed: 0.000000 real_pulses:0 +I (34756) example: new speed:399.000000 +I (34766) example: expect speed: 0.000000 real_pulses:0 +I (34766) example: new speed:399.000000 +I (34776) example: expect speed: 0.000000 real_pulses:0 +I (34776) example: new speed:399.000000 +I (34786) example: expect speed: 0.000000 real_pulses:0 +I (34786) example: new speed:399.000000 +I (34796) example: expect speed: 0.000000 real_pulses:0 +I (34796) example: new speed:399.000000 +I (34806) example: expect speed: 0.000000 real_pulses:0 +I (34806) example: new speed:399.000000 +I (34816) example: expect speed: 0.000000 real_pulses:0 +I (34816) example: new speed:399.000000 +I (34826) example: expect speed: 0.000000 real_pulses:0 +I (34826) example: new speed:399.000000 +I (34836) example: expect speed: 0.000000 real_pulses:0 +I (34836) example: new speed:399.000000 +I (34846) example: expect speed: 0.000000 real_pulses:0 +I (34846) example: new speed:399.000000 +I (34856) example: expect speed: 0.000000 real_pulses:0 +I (34856) example: new speed:399.000000 +I (34866) example: expect speed: 0.000000 real_pulses:0 +I (34866) example: new speed:399.000000 +I (34876) example: expect speed: 0.000000 real_pulses:0 +I (34876) example: new speed:399.000000 +I (34886) example: expect speed: 0.000000 real_pulses:0 +I (34886) example: new speed:399.000000 +I (34896) example: expect speed: 0.000000 real_pulses:0 +I (34896) example: new speed:399.000000 +I (34906) example: expect speed: 0.000000 real_pulses:0 +I (34906) example: new speed:399.000000 +I (34916) example: expect speed: 0.000000 real_pulses:0 +I (34916) example: new speed:399.000000 +I (34926) example: expect speed: 0.000000 real_pulses:0 +I (34926) example: new speed:399.000000 +I (34936) example: expect speed: 0.000000 real_pulses:0 +I (34936) example: new speed:399.000000 +I (34946) example: expect speed: 0.000000 real_pulses:0 +I (34946) example: new speed:399.000000 +I (34956) example: expect speed: 0.000000 real_pulses:0 +I (34956) example: new speed:399.000000 +I (34966) example: expect speed: 0.000000 real_pulses:0 +I (34966) example: new speed:399.000000 +I (34976) example: expect speed: 0.000000 real_pulses:0 +I (34976) example: new speed:399.000000 +I (34986) example: expect speed: 0.000000 real_pulses:0 +I (34986) example: new speed:399.000000 +I (34996) example: expect speed: 0.000000 real_pulses:0 +I (34996) example: new speed:399.000000 +I (35006) example: expect speed: 0.000000 real_pulses:0 +I (35006) example: new speed:399.000000 +I (35016) example: expect speed: 0.000000 real_pulses:0 +I (35016) example: new speed:399.000000 +I (35026) example: expect speed: 0.000000 real_pulses:0 +I (35026) example: new speed:399.000000 +I (35036) example: expect speed: 0.000000 real_pulses:0 +I (35036) example: new speed:399.000000 +I (35046) example: expect speed: 0.000000 real_pulses:0 +I (35046) example: new speed:399.000000 +I (35056) example: expect speed: 0.000000 real_pulses:0 +I (35056) example: new speed:399.000000 +I (35066) example: expect speed: 0.000000 real_pulses:0 +I (35066) example: new speed:399.000000 +I (35076) example: expect speed: 0.000000 real_pulses:0 +I (35076) example: new speed:399.000000 +I (35086) example: expect speed: 0.000000 real_pulses:0 +I (35086) example: new speed:399.000000 +I (35096) example: expect speed: 0.000000 real_pulses:0 +I (35096) example: new speed:399.000000 +I (35106) example: expect speed: 0.000000 real_pulses:0 +I (35106) example: new speed:399.000000 +I (35116) example: expect speed: 0.000000 real_pulses:0 +I (35116) example: new speed:399.000000 +I (35126) example: expect speed: 0.000000 real_pulses:0 +I (35126) example: new speed:399.000000 +I (35136) example: expect speed: 0.000000 real_pulses:0 +I (35136) example: new speed:399.000000 +I (35146) example: expect speed: 0.000000 real_pulses:0 +I (35146) example: new speed:399.000000 +I (35156) example: expect speed: 0.000000 real_pulses:0 +I (35156) example: new speed:399.000000 +I (35166) example: expect speed: 0.000000 real_pulses:0 +I (35166) example: new speed:399.000000 +I (35176) example: expect speed: 0.000000 real_pulses:0 +I (35176) example: new speed:399.000000 +I (35186) example: expect speed: 0.000000 real_pulses:0 +I (35186) example: new speed:399.000000 +I (35196) example: expect speed: 0.000000 real_pulses:0 +I (35196) example: new speed:399.000000 +I (35206) example: expect speed: 0.000000 real_pulses:0 +I (35206) example: new speed:399.000000 +I (35216) example: expect speed: 0.000000 real_pulses:0 +I (35216) example: new speed:399.000000 +I (35226) example: expect speed: 0.000000 real_pulses:0 +I (35226) example: new speed:399.000000 +I (35236) example: expect speed: 0.000000 real_pulses:0 +I (35236) example: new speed:399.000000 +I (35246) example: expect speed: 0.000000 real_pulses:0 +I (35246) example: new speed:399.000000 +I (35256) example: expect speed: 0.000000 real_pulses:0 +I (35256) example: new speed:399.000000 +I (35266) example: expect speed: 0.000000 real_pulses:0 +I (35266) example: new speed:399.000000 +I (35276) example: expect speed: 0.000000 real_pulses:0 +I (35276) example: new speed:399.000000 +I (35286) example: expect speed: 0.000000 real_pulses:0 +I (35286) example: new speed:399.000000 +I (35296) example: expect speed: 0.000000 real_pulses:0 +I (35296) example: new speed:399.000000 +I (35306) example: expect speed: 0.000000 real_pulses:0 +I (35306) example: new speed:399.000000 +I (35316) example: expect speed: 0.000000 real_pulses:0 +I (35316) example: new speed:399.000000 +I (35326) example: expect speed: 0.000000 real_pulses:0 +I (35326) example: new speed:399.000000 +I (35336) example: expect speed: 0.000000 real_pulses:0 +I (35336) example: new speed:399.000000 +I (35346) example: expect speed: 0.000000 real_pulses:0 +I (35346) example: new speed:399.000000 +I (35356) example: expect speed: 0.000000 real_pulses:0 +I (35356) example: new speed:399.000000 +I (35366) example: expect speed: 0.000000 real_pulses:0 +I (35366) example: new speed:399.000000 +I (35376) example: expect speed: 0.000000 real_pulses:0 +I (35376) example: new speed:399.000000 +I (35386) example: expect speed: 0.000000 real_pulses:0 +I (35386) example: new speed:399.000000 +I (35396) example: expect speed: 0.000000 real_pulses:0 +I (35396) example: new speed:399.000000 +I (35406) example: expect speed: 0.000000 real_pulses:0 +I (35406) example: new speed:399.000000 +I (35416) example: expect speed: 0.000000 real_pulses:0 +I (35416) example: new speed:399.000000 +I (35426) example: expect speed: 0.000000 real_pulses:0 +I (35426) example: new speed:399.000000 +I (35436) example: expect speed: 0.000000 real_pulses:0 +I (35436) example: new speed:399.000000 +I (35446) example: expect speed: 0.000000 real_pulses:0 +I (35446) example: new speed:399.000000 +I (35456) example: expect speed: 0.000000 real_pulses:0 +I (35456) example: new speed:399.000000 +I (35466) example: expect speed: 0.000000 real_pulses:0 +I (35466) example: new speed:399.000000 +I (35476) example: expect speed: 0.000000 real_pulses:0 +I (35476) example: new speed:399.000000 +I (35486) example: expect speed: 0.000000 real_pulses:0 +I (35486) example: new speed:399.000000 +I (35496) example: expect speed: 0.000000 real_pulses:0 +I (35496) example: new speed:399.000000 +I (35506) example: expect speed: 0.000000 real_pulses:0 +I (35506) example: new speed:399.000000 +I (35516) example: expect speed: 0.000000 real_pulses:0 +I (35516) example: new speed:399.000000 +I (35526) example: expect speed: 0.000000 real_pulses:0 +I (35526) example: new speed:399.000000 +I (35536) example: expect speed: 0.000000 real_pulses:0 +I (35536) example: new speed:399.000000 +I (35546) example: expect speed: 0.000000 real_pulses:0 +I (35546) example: new speed:399.000000 +I (35556) example: expect speed: 0.000000 real_pulses:0 +I (35556) example: new speed:399.000000 +I (35566) example: expect speed: 0.000000 real_pulses:0 +I (35566) example: new speed:399.000000 +I (35576) example: expect speed: 0.000000 real_pulses:0 +I (35576) example: new speed:399.000000 +I (35586) example: expect speed: 0.000000 real_pulses:0 +I (35586) example: new speed:399.000000 +I (35596) example: expect speed: 0.000000 real_pulses:0 +I (35596) example: new speed:399.000000 +I (35606) example: expect speed: 0.000000 real_pulses:0 +I (35606) example: new speed:399.000000 +I (35616) example: expect speed: 0.000000 real_pulses:0 +I (35616) example: new speed:399.000000 +I (35626) example: expect speed: 0.000000 real_pulses:0 +I (35626) example: new speed:399.000000 +I (35636) example: expect speed: 0.000000 real_pulses:0 +I (35636) example: new speed:399.000000 +I (35646) example: expect speed: 0.000000 real_pulses:0 +I (35646) example: new speed:399.000000 +I (35656) example: expect speed: 0.000000 real_pulses:0 +I (35656) example: new speed:399.000000 +I (35666) example: expect speed: 0.000000 real_pulses:0 +I (35666) example: new speed:399.000000 +I (35676) example: expect speed: 0.000000 real_pulses:0 +I (35676) example: new speed:399.000000 +I (35686) example: expect speed: 0.000000 real_pulses:0 +I (35686) example: new speed:399.000000 +I (35696) example: expect speed: 0.000000 real_pulses:0 +I (35696) example: new speed:399.000000 +I (35706) example: expect speed: 0.000000 real_pulses:0 +I (35706) example: new speed:399.000000 +I (35716) example: expect speed: 0.000000 real_pulses:0 +I (35716) example: new speed:399.000000 +I (35726) example: expect speed: 0.000000 real_pulses:0 +I (35726) example: new speed:399.000000 +I (35736) example: expect speed: 0.000000 real_pulses:0 +I (35736) example: new speed:399.000000 +I (35746) example: expect speed: 0.000000 real_pulses:0 +I (35746) example: new speed:399.000000 +I (35756) example: expect speed: 0.000000 real_pulses:0 +I (35756) example: new speed:399.000000 +I (35766) example: expect speed: 0.000000 real_pulses:0 +I (35766) example: new speed:399.000000 +I (35776) example: expect speed: 0.000000 real_pulses:0 +I (35776) example: new speed:399.000000 +I (35786) example: expect speed: 0.000000 real_pulses:0 +I (35786) example: new speed:399.000000 +I (35796) example: expect speed: 0.000000 real_pulses:0 +I (35796) example: new speed:399.000000 +I (35806) example: expect speed: 0.000000 real_pulses:0 +I (35806) example: new speed:399.000000 +I (35816) example: expect speed: 0.000000 real_pulses:0 +I (35816) example: new speed:399.000000 +I (35826) example: expect speed: 0.000000 real_pulses:0 +I (35826) example: new speed:399.000000 +I (35836) example: expect speed: 0.000000 real_pulses:0 +I (35836) example: new speed:399.000000 +I (35846) example: expect speed: 0.000000 real_pulses:0 +I (35846) example: new speed:399.000000 +I (35856) example: expect speed: 0.000000 real_pulses:0 +I (35856) example: new speed:399.000000 +I (35866) example: expect speed: 0.000000 real_pulses:0 +I (35866) example: new speed:399.000000 +I (35876) example: expect speed: 0.000000 real_pulses:0 +I (35876) example: new speed:399.000000 +I (35886) example: expect speed: 0.000000 real_pulses:0 +I (35886) example: new speed:399.000000 +I (35896) example: expect speed: 0.000000 real_pulses:0 +I (35896) example: new speed:399.000000 +I (35906) example: expect speed: 0.000000 real_pulses:0 +I (35906) example: new speed:399.000000 +I (35916) example: expect speed: 0.000000 real_pulses:0 +I (35916) example: new speed:399.000000 +I (35926) example: expect speed: 0.000000 real_pulses:0 +I (35926) example: new speed:399.000000 +I (35936) example: expect speed: 0.000000 real_pulses:0 +I (35936) example: new speed:399.000000 +I (35946) example: expect speed: 0.000000 real_pulses:0 +I (35946) example: new speed:399.000000 +I (35956) example: expect speed: 0.000000 real_pulses:0 +I (35956) example: new speed:399.000000 +I (35966) example: expect speed: 0.000000 real_pulses:0 +I (35966) example: new speed:399.000000 +I (35976) example: expect speed: 0.000000 real_pulses:0 +I (35976) example: new speed:399.000000 +I (35986) example: expect speed: 0.000000 real_pulses:0 +I (35986) example: new speed:399.000000 +I (35996) example: expect speed: 0.000000 real_pulses:0 +I (35996) example: new speed:399.000000 +I (36006) example: expect speed: 0.000000 real_pulses:0 +I (36006) example: new speed:399.000000 +I (36016) example: expect speed: 0.000000 real_pulses:0 +I (36016) example: new speed:399.000000 +I (36026) example: expect speed: 0.000000 real_pulses:0 +I (36026) example: new speed:399.000000 +I (36036) example: expect speed: 0.000000 real_pulses:0 +I (36036) example: new speed:399.000000 +I (36046) example: expect speed: 0.000000 real_pulses:0 +I (36046) example: new speed:399.000000 +I (36056) example: expect speed: 0.000000 real_pulses:0 +I (36056) example: new speed:399.000000 +I (36066) example: expect speed: 0.000000 real_pulses:0 +I (36066) example: new speed:399.000000 +I (36076) example: expect speed: 0.000000 real_pulses:0 +I (36076) example: new speed:399.000000 +I (36086) example: expect speed: 0.000000 real_pulses:0 +I (36086) example: new speed:399.000000 +I (36096) example: expect speed: 0.000000 real_pulses:0 +I (36096) example: new speed:399.000000 +I (36106) example: expect speed: 0.000000 real_pulses:0 +I (36106) example: new speed:399.000000 +I (36116) example: expect speed: 0.000000 real_pulses:0 +I (36116) example: new speed:399.000000 +I (36126) example: expect speed: 0.000000 real_pulses:0 +I (36126) example: new speed:399.000000 +I (36136) example: expect speed: 0.000000 real_pulses:0 +I (36136) example: new speed:399.000000 +I (36146) example: expect speed: 0.000000 real_pulses:0 +I (36146) example: new speed:399.000000 +I (36156) example: expect speed: 0.000000 real_pulses:0 +I (36156) example: new speed:399.000000 +I (36166) example: expect speed: 0.000000 real_pulses:0 +I (36166) example: new speed:399.000000 +I (36176) example: expect speed: 0.000000 real_pulses:0 +I (36176) example: new speed:399.000000 +I (36186) example: expect speed: 0.000000 real_pulses:0 +I (36186) example: new speed:399.000000 +I (36196) example: expect speed: 0.000000 real_pulses:0 +I (36196) example: new speed:399.000000 +I (36206) example: expect speed: 0.000000 real_pulses:0 +I (36206) example: new speed:399.000000 +I (36216) example: expect speed: 0.000000 real_pulses:0 +I (36216) example: new speed:399.000000 +I (36226) example: expect speed: 0.000000 real_pulses:0 +I (36226) example: new speed:399.000000 +I (36236) example: expect speed: 0.000000 real_pulses:0 +I (36236) example: new speed:399.000000 +I (36246) example: expect speed: 0.000000 real_pulses:0 +I (36246) example: new speed:399.000000 +I (36256) example: expect speed: 0.000000 real_pulses:0 +I (36256) example: new speed:399.000000 +I (36266) example: expect speed: 0.000000 real_pulses:0 +I (36266) example: new speed:399.000000 +I (36276) example: expect speed: 0.000000 real_pulses:0 +I (36276) example: new speed:399.000000 +I (36286) example: expect speed: 0.000000 real_pulses:0 +I (36286) example: new speed:399.000000 +I (36296) example: expect speed: 0.000000 real_pulses:0 +I (36296) example: new speed:399.000000 +I (36306) example: expect speed: 0.000000 real_pulses:0 +I (36306) example: new speed:399.000000 +I (36316) example: expect speed: 0.000000 real_pulses:0 +I (36316) example: new speed:399.000000 +I (36326) example: expect speed: 0.000000 real_pulses:0 +I (36326) example: new speed:399.000000 +I (36336) example: expect speed: 0.000000 real_pulses:0 +I (36336) example: new speed:399.000000 +I (36346) example: expect speed: 0.000000 real_pulses:0 +I (36346) example: new speed:399.000000 +I (36356) example: expect speed: 0.000000 real_pulses:0 +I (36356) example: new speed:399.000000 +I (36366) example: expect speed: 0.000000 real_pulses:0 +I (36366) example: new speed:399.000000 +I (36376) example: expect speed: 0.000000 real_pulses:0 +I (36376) example: new speed:399.000000 +I (36386) example: expect speed: 0.000000 real_pulses:0 +I (36386) example: new speed:399.000000 +I (36396) example: expect speed: 0.000000 real_pulses:0 +I (36396) example: new speed:399.000000 +I (36406) example: expect speed: 0.000000 real_pulses:0 +I (36406) example: new speed:399.000000 +I (36416) example: expect speed: 0.000000 real_pulses:0 +I (36416) example: new speed:399.000000 +I (36426) example: expect speed: 0.000000 real_pulses:0 +I (36426) example: new speed:399.000000 +I (36436) example: expect speed: 0.000000 real_pulses:0 +I (36436) example: new speed:399.000000 +I (36446) example: expect speed: 0.000000 real_pulses:0 +I (36446) example: new speed:399.000000 +I (36456) example: expect speed: 0.000000 real_pulses:0 +I (36456) example: new speed:399.000000 +I (36466) example: expect speed: 0.000000 real_pulses:0 +I (36466) example: new speed:399.000000 +I (36476) example: expect speed: 0.000000 real_pulses:0 +I (36476) example: new speed:399.000000 +I (36486) example: expect speed: 0.000000 real_pulses:0 +I (36486) example: new speed:399.000000 +I (36496) example: expect speed: 0.000000 real_pulses:0 +I (36496) example: new speed:399.000000 +I (36506) example: expect speed: 0.000000 real_pulses:0 +I (36506) example: new speed:399.000000 +I (36516) example: expect speed: 0.000000 real_pulses:0 +I (36516) example: new speed:399.000000 +I (36526) example: expect speed: 0.000000 real_pulses:0 +I (36526) example: new speed:399.000000 +I (36536) example: expect speed: 0.000000 real_pulses:0 +I (36536) example: new speed:399.000000 +I (36546) example: expect speed: 0.000000 real_pulses:0 +I (36546) example: new speed:399.000000 +I (36556) example: expect speed: 0.000000 real_pulses:0 +I (36556) example: new speed:399.000000 +I (36566) example: expect speed: 0.000000 real_pulses:0 +I (36566) example: new speed:399.000000 +I (36576) example: expect speed: 0.000000 real_pulses:0 +I (36576) example: new speed:399.000000 +I (36586) example: expect speed: 0.000000 real_pulses:0 +I (36586) example: new speed:399.000000 +I (36596) example: expect speed: 0.000000 real_pulses:0 +I (36596) example: new speed:399.000000 +I (36606) example: expect speed: 0.000000 real_pulses:0 +I (36606) example: new speed:399.000000 +I (36616) example: expect speed: 0.000000 real_pulses:0 +I (36616) example: new speed:399.000000 +I (36626) example: expect speed: 0.000000 real_pulses:0 +I (36626) example: new speed:399.000000 +I (36636) example: expect speed: 0.000000 real_pulses:0 +I (36636) example: new speed:399.000000 +I (36646) example: expect speed: 0.000000 real_pulses:0 +I (36646) example: new speed:399.000000 +I (36656) example: expect speed: 0.000000 real_pulses:0 +I (36656) example: new speed:399.000000 +I (36666) example: expect speed: 0.000000 real_pulses:0 +I (36666) example: new speed:399.000000 +I (36676) example: expect speed: 0.000000 real_pulses:0 +I (36676) example: new speed:399.000000 +I (36686) example: expect speed: 0.000000 real_pulses:0 +I (36686) example: new speed:399.000000 +I (36696) example: expect speed: 0.000000 real_pulses:0 +I (36696) example: new speed:399.000000 +I (36706) example: expect speed: 0.000000 real_pulses:0 +I (36706) example: new speed:399.000000 +I (36716) example: expect speed: 0.000000 real_pulses:0 +I (36716) example: new speed:399.000000 +I (36726) example: expect speed: 0.000000 real_pulses:0 +I (36726) example: new speed:399.000000 +I (36736) example: expect speed: 0.000000 real_pulses:0 +I (36736) example: new speed:399.000000 +I (36746) example: expect speed: 0.000000 real_pulses:0 +I (36746) example: new speed:399.000000 +I (36756) example: expect speed: 0.000000 real_pulses:0 +I (36756) example: new speed:399.000000 +I (36766) example: expect speed: 0.000000 real_pulses:0 +I (36766) example: new speed:399.000000 +I (36776) example: expect speed: 0.000000 real_pulses:0 +I (36776) example: new speed:399.000000 +I (36786) example: expect speed: 0.000000 real_pulses:0 +I (36786) example: new speed:399.000000 +I (36796) example: expect speed: 0.000000 real_pulses:0 +I (36796) example: new speed:399.000000 +I (36806) example: expect speed: 0.000000 real_pulses:0 +I (36806) example: new speed:399.000000 +I (36816) example: expect speed: 0.000000 real_pulses:0 +I (36816) example: new speed:399.000000 +I (36826) example: expect speed: 0.000000 real_pulses:0 +I (36826) example: new speed:399.000000 +I (36836) example: expect speed: 0.000000 real_pulses:0 +I (36836) example: new speed:399.000000 +I (36846) example: expect speed: 0.000000 real_pulses:0 +I (36846) example: new speed:399.000000 +I (36856) example: expect speed: 0.000000 real_pulses:0 +I (36856) example: new speed:399.000000 +I (36866) example: expect speed: 0.000000 real_pulses:0 +I (36866) example: new speed:399.000000 +I (36876) example: expect speed: 0.000000 real_pulses:0 +I (36876) example: new speed:399.000000 +I (36886) example: expect speed: 0.000000 real_pulses:0 +I (36886) example: new speed:399.000000 +I (36896) example: expect speed: 0.000000 real_pulses:0 +I (36896) example: new speed:399.000000 +I (36906) example: expect speed: 0.000000 real_pulses:0 +I (36906) example: new speed:399.000000 +I (36916) example: expect speed: 0.000000 real_pulses:0 +I (36916) example: new speed:399.000000 +I (36926) example: expect speed: 0.000000 real_pulses:0 +I (36926) example: new speed:399.000000 +I (36936) example: expect speed: 0.000000 real_pulses:0 +I (36936) example: new speed:399.000000 +I (36946) example: expect speed: 0.000000 real_pulses:0 +I (36946) example: new speed:399.000000 +I (36956) example: expect speed: 0.000000 real_pulses:0 +I (36956) example: new speed:399.000000 +I (36966) example: expect speed: 0.000000 real_pulses:0 +I (36966) example: new speed:399.000000 +I (36976) example: expect speed: 0.000000 real_pulses:0 +I (36976) example: new speed:399.000000 +I (36986) example: expect speed: 0.000000 real_pulses:0 +I (36986) example: new speed:399.000000 +I (36996) example: expect speed: 0.000000 real_pulses:0 +I (36996) example: new speed:399.000000 +I (37006) example: expect speed: 0.000000 real_pulses:0 +I (37006) example: new speed:399.000000 +I (37016) example: expect speed: 0.000000 real_pulses:0 +I (37016) example: new speed:399.000000 +I (37026) example: expect speed: 0.000000 real_pulses:0 +I (37026) example: new speed:399.000000 +I (37036) example: expect speed: 0.000000 real_pulses:0 +I (37036) example: new speed:399.000000 +I (37046) example: expect speed: 0.000000 real_pulses:0 +I (37046) example: new speed:399.000000 +I (37056) example: expect speed: 0.000000 real_pulses:0 +I (37056) example: new speed:399.000000 +I (37066) example: expect speed: 0.000000 real_pulses:0 +I (37066) example: new speed:399.000000 +I (37076) example: expect speed: 0.000000 real_pulses:0 +I (37076) example: new speed:399.000000 +I (37086) example: expect speed: 0.000000 real_pulses:0 +I (37086) example: new speed:399.000000 +I (37096) example: expect speed: 0.000000 real_pulses:0 +I (37096) example: new speed:399.000000 +I (37106) example: expect speed: 0.000000 real_pulses:0 +I (37106) example: new speed:399.000000 +I (37116) example: expect speed: 0.000000 real_pulses:0 +I (37116) example: new speed:399.000000 +I (37126) example: expect speed: 0.000000 real_pulses:0 +I (37126) example: new speed:399.000000 +I (37136) example: expect speed: 0.000000 real_pulses:0 +I (37136) example: new speed:399.000000 +I (37146) example: expect speed: 0.000000 real_pulses:0 +I (37146) example: new speed:399.000000 +I (37156) example: expect speed: 0.000000 real_pulses:0 +I (37156) example: new speed:399.000000 +I (37166) example: expect speed: 0.000000 real_pulses:0 +I (37166) example: new speed:399.000000 +I (37176) example: expect speed: 0.000000 real_pulses:0 +I (37176) example: new speed:399.000000 +I (37186) example: expect speed: 0.000000 real_pulses:0 +I (37186) example: new speed:399.000000 +I (37196) example: expect speed: 0.000000 real_pulses:0 +I (37196) example: new speed:399.000000 +I (37206) example: expect speed: 0.000000 real_pulses:0 +I (37206) example: new speed:399.000000 +I (37216) example: expect speed: 0.000000 real_pulses:0 +I (37216) example: new speed:399.000000 +I (37226) example: expect speed: 0.000000 real_pulses:0 +I (37226) example: new speed:399.000000 +I (37236) example: expect speed: 0.000000 real_pulses:0 +I (37236) example: new speed:399.000000 +I (37246) example: expect speed: 0.000000 real_pulses:0 +I (37246) example: new speed:399.000000 +I (37256) example: expect speed: 0.000000 real_pulses:0 +I (37256) example: new speed:399.000000 +I (37266) example: expect speed: 0.000000 real_pulses:0 +I (37266) example: new speed:399.000000 +I (37276) example: expect speed: 0.000000 real_pulses:0 +I (37276) example: new speed:399.000000 +I (37286) example: expect speed: 0.000000 real_pulses:0 +I (37286) example: new speed:399.000000 +I (37296) example: expect speed: 0.000000 real_pulses:0 +I (37296) example: new speed:399.000000 +I (37306) example: expect speed: 0.000000 real_pulses:0 +I (37306) example: new speed:399.000000 +I (37316) example: expect speed: 0.000000 real_pulses:0 +I (37316) example: new speed:399.000000 +I (37326) example: expect speed: 0.000000 real_pulses:0 +I (37326) example: new speed:399.000000 +I (37336) example: expect speed: 0.000000 real_pulses:0 +I (37336) example: new speed:399.000000 +I (37346) example: expect speed: 0.000000 real_pulses:0 +I (37346) example: new speed:399.000000 +I (37356) example: expect speed: 0.000000 real_pulses:0 +I (37356) example: new speed:399.000000 +I (37366) example: expect speed: 0.000000 real_pulses:0 +I (37366) example: new speed:399.000000 +I (37376) example: expect speed: 0.000000 real_pulses:0 +I (37376) example: new speed:399.000000 +I (37386) example: expect speed: 0.000000 real_pulses:0 +I (37386) example: new speed:399.000000 +I (37396) example: expect speed: 0.000000 real_pulses:0 +I (37396) example: new speed:399.000000 +I (37406) example: expect speed: 0.000000 real_pulses:0 +I (37406) example: new speed:399.000000 +I (37416) example: expect speed: 0.000000 real_pulses:0 +I (37416) example: new speed:399.000000 +I (37426) example: expect speed: 0.000000 real_pulses:0 +I (37426) example: new speed:399.000000 +I (37436) example: expect speed: 0.000000 real_pulses:0 +I (37436) example: new speed:399.000000 +I (37446) example: expect speed: 0.000000 real_pulses:0 +I (37446) example: new speed:399.000000 +I (37456) example: expect speed: 0.000000 real_pulses:0 +I (37456) example: new speed:399.000000 +I (37466) example: expect speed: 0.000000 real_pulses:0 +I (37466) example: new speed:399.000000 +I (37476) example: expect speed: 0.000000 real_pulses:0 +I (37476) example: new speed:399.000000 +I (37486) example: expect speed: 0.000000 real_pulses:0 +I (37486) example: new speed:399.000000 +I (37496) example: expect speed: 0.000000 real_pulses:0 +I (37496) example: new speed:399.000000 +I (37506) example: expect speed: 0.000000 real_pulses:0 +I (37506) example: new speed:399.000000 +I (37516) example: expect speed: 0.000000 real_pulses:0 +I (37516) example: new speed:399.000000 +I (37526) example: expect speed: 0.000000 real_pulses:0 +I (37526) example: new speed:399.000000 +I (37536) example: expect speed: 0.000000 real_pulses:0 +I (37536) example: new speed:399.000000 +I (37546) example: expect speed: 0.000000 real_pulses:0 +I (37546) example: new speed:399.000000 +I (37556) example: expect speed: 0.000000 real_pulses:0 +I (37556) example: new speed:399.000000 +I (37566) example: expect speed: 0.000000 real_pulses:0 +I (37566) example: new speed:399.000000 +I (37576) example: expect speed: 0.000000 real_pulses:0 +I (37576) example: new speed:399.000000 +I (37586) example: expect speed: 0.000000 real_pulses:0 +I (37586) example: new speed:399.000000 +I (37596) example: expect speed: 0.000000 real_pulses:0 +I (37596) example: new speed:399.000000 +I (37606) example: expect speed: 0.000000 real_pulses:0 +I (37606) example: new speed:399.000000 +I (37616) example: expect speed: 0.000000 real_pulses:0 +I (37616) example: new speed:399.000000 +I (37626) example: expect speed: 0.000000 real_pulses:0 +I (37626) example: new speed:399.000000 +I (37636) example: expect speed: 0.000000 real_pulses:0 +I (37636) example: new speed:399.000000 +I (37646) example: expect speed: 0.000000 real_pulses:0 +I (37646) example: new speed:399.000000 +I (37656) example: expect speed: 0.000000 real_pulses:0 +I (37656) example: new speed:399.000000 +I (37666) example: expect speed: 0.000000 real_pulses:0 +I (37666) example: new speed:399.000000 +I (37676) example: expect speed: 0.000000 real_pulses:0 +I (37676) example: new speed:399.000000 +I (37686) example: expect speed: 0.000000 real_pulses:0 +I (37686) example: new speed:399.000000 +I (37696) example: expect speed: 0.000000 real_pulses:0 +I (37696) example: new speed:399.000000 +I (37706) example: expect speed: 0.000000 real_pulses:0 +I (37706) example: new speed:399.000000 +I (37716) example: expect speed: 0.000000 real_pulses:0 +I (37716) example: new speed:399.000000 +I (37726) example: expect speed: 0.000000 real_pulses:0 +I (37726) example: new speed:399.000000 +I (37736) example: expect speed: 0.000000 real_pulses:0 +I (37736) example: new speed:399.000000 +I (37746) example: expect speed: 0.000000 real_pulses:0 +I (37746) example: new speed:399.000000 +I (37756) example: expect speed: 0.000000 real_pulses:0 +I (37756) example: new speed:399.000000 +I (37766) example: expect speed: 0.000000 real_pulses:0 +I (37766) example: new speed:399.000000 +I (37776) example: expect speed: 0.000000 real_pulses:0 +I (37776) example: new speed:399.000000 +I (37786) example: expect speed: 0.000000 real_pulses:0 +I (37786) example: new speed:399.000000 +I (37796) example: expect speed: 0.000000 real_pulses:0 +I (37796) example: new speed:399.000000 +I (37806) example: expect speed: 0.000000 real_pulses:0 +I (37806) example: new speed:399.000000 +I (37816) example: expect speed: 0.000000 real_pulses:0 +I (37816) example: new speed:399.000000 +I (37826) example: expect speed: 0.000000 real_pulses:0 +I (37826) example: new speed:399.000000 +I (37836) example: expect speed: 0.000000 real_pulses:0 +I (37836) example: new speed:399.000000 +I (37846) example: expect speed: 0.000000 real_pulses:0 +I (37846) example: new speed:399.000000 +I (37856) example: expect speed: 0.000000 real_pulses:0 +I (37856) example: new speed:399.000000 +I (37866) example: expect speed: 0.000000 real_pulses:0 +I (37866) example: new speed:399.000000 +I (37876) example: expect speed: 0.000000 real_pulses:0 +I (37876) example: new speed:399.000000 +I (37886) example: expect speed: 0.000000 real_pulses:0 +I (37886) example: new speed:399.000000 +I (37896) example: expect speed: 0.000000 real_pulses:0 +I (37896) example: new speed:399.000000 +I (37906) example: expect speed: 0.000000 real_pulses:0 +I (37906) example: new speed:399.000000 +I (37916) example: expect speed: 0.000000 real_pulses:0 +I (37916) example: new speed:399.000000 +I (37926) example: expect speed: 0.000000 real_pulses:0 +I (37926) example: new speed:399.000000 +I (37936) example: expect speed: 0.000000 real_pulses:0 +I (37936) example: new speed:399.000000 +I (37946) example: expect speed: 0.000000 real_pulses:0 +I (37946) example: new speed:399.000000 +I (37956) example: expect speed: 0.000000 real_pulses:0 +I (37956) example: new speed:399.000000 +I (37966) example: expect speed: 0.000000 real_pulses:0 +I (37966) example: new speed:399.000000 +I (37976) example: expect speed: 0.000000 real_pulses:0 +I (37976) example: new speed:399.000000 +I (37986) example: expect speed: 0.000000 real_pulses:0 +I (37986) example: new speed:399.000000 +I (37996) example: expect speed: 0.000000 real_pulses:0 +I (37996) example: new speed:399.000000 +I (38006) example: expect speed: 0.000000 real_pulses:0 +I (38006) example: new speed:399.000000 +I (38016) example: expect speed: 0.000000 real_pulses:0 +I (38016) example: new speed:399.000000 +I (38026) example: expect speed: 0.000000 real_pulses:0 +I (38026) example: new speed:399.000000 +I (38036) example: expect speed: 0.000000 real_pulses:0 +I (38036) example: new speed:399.000000 +I (38046) example: expect speed: 0.000000 real_pulses:0 +I (38046) example: new speed:399.000000 +I (38056) example: expect speed: 0.000000 real_pulses:0 +I (38056) example: new speed:399.000000 +I (38066) example: expect speed: 0.000000 real_pulses:0 +I (38066) example: new speed:399.000000 +I (38076) example: expect speed: 0.000000 real_pulses:0 +I (38076) example: new speed:399.000000 +I (38086) example: expect speed: 0.000000 real_pulses:0 +I (38086) example: new speed:399.000000 +I (38096) example: expect speed: 0.000000 real_pulses:0 +I (38096) example: new speed:399.000000 +I (38106) example: expect speed: 0.000000 real_pulses:0 +I (38106) example: new speed:399.000000 +I (38116) example: expect speed: 0.000000 real_pulses:0 +I (38116) example: new speed:399.000000 +I (38126) example: expect speed: 0.000000 real_pulses:0 +I (38126) example: new speed:399.000000 +I (38136) example: expect speed: 0.000000 real_pulses:0 +I (38136) example: new speed:399.000000 +I (38146) example: expect speed: 0.000000 real_pulses:0 +I (38146) example: new speed:399.000000 +I (38156) example: expect speed: 0.000000 real_pulses:0 +I (38156) example: new speed:399.000000 +I (38166) example: expect speed: 0.000000 real_pulses:0 +I (38166) example: new speed:399.000000 +I (38176) example: expect speed: 0.000000 real_pulses:0 +I (38176) example: new speed:399.000000 +I (38186) example: expect speed: 0.000000 real_pulses:0 +I (38186) example: new speed:399.000000 +I (38196) example: expect speed: 0.000000 real_pulses:0 +I (38196) example: new speed:399.000000 +I (38206) example: expect speed: 0.000000 real_pulses:0 +I (38206) example: new speed:399.000000 +I (38216) example: expect speed: 0.000000 real_pulses:0 +I (38216) example: new speed:399.000000 +I (38226) example: expect speed: 0.000000 real_pulses:0 +I (38226) example: new speed:399.000000 +I (38236) example: expect speed: 0.000000 real_pulses:0 +I (38236) example: new speed:399.000000 +I (38246) example: expect speed: 0.000000 real_pulses:0 +I (38246) example: new speed:399.000000 +I (38256) example: expect speed: 0.000000 real_pulses:0 +I (38256) example: new speed:399.000000 +I (38266) example: expect speed: 0.000000 real_pulses:0 +I (38266) example: new speed:399.000000 +I (38276) example: expect speed: 0.000000 real_pulses:0 +I (38276) example: new speed:399.000000 +I (38286) example: expect speed: 0.000000 real_pulses:0 +I (38286) example: new speed:399.000000 +I (38296) example: expect speed: 0.000000 real_pulses:0 +I (38296) example: new speed:399.000000 +I (38306) example: expect speed: 0.000000 real_pulses:0 +I (38306) example: new speed:399.000000 +I (38316) example: expect speed: 0.000000 real_pulses:0 +I (38316) example: new speed:399.000000 +I (38326) example: expect speed: 0.000000 real_pulses:0 +I (38326) example: new speed:399.000000 +I (38336) example: expect speed: 0.000000 real_pulses:0 +I (38336) example: new speed:399.000000 +I (38346) example: expect speed: 0.000000 real_pulses:0 +I (38346) example: new speed:399.000000 +I (38356) example: expect speed: 0.000000 real_pulses:0 +I (38356) example: new speed:399.000000 +I (38366) example: expect speed: 0.000000 real_pulses:0 +I (38366) example: new speed:399.000000 +I (38376) example: expect speed: 0.000000 real_pulses:0 +I (38376) example: new speed:399.000000 +I (38386) example: expect speed: 0.000000 real_pulses:0 +I (38386) example: new speed:399.000000 +I (38396) example: expect speed: 0.000000 real_pulses:0 +I (38396) example: new speed:399.0000 \ No newline at end of file diff --git a/build/log/idf_py_stdout_output_6156 b/build/log/idf_py_stdout_output_6156 new file mode 100644 index 0000000..cfe0ef4 --- /dev/null +++ b/build/log/idf_py_stdout_output_6156 @@ -0,0 +1,66 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b90 bytes. Smallest app partition is 0x100000 bytes. 0x4d470 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 +Connecting... +Chip is ESP32-S3 (revision v0.1) +Features: WiFi, BLE +Crystal is 40MHz +MAC: f4:12:fa:58:62:0c +Uploading stub... +Running stub... +Stub running... +Changing baud rate to 460800 +Changed. +Configuring flash size... +Flash will be erased from 0x00000000 to 0x00004fff... +Flash will be erased from 0x00010000 to 0x000c2fff... +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 20368 bytes to 12917... +Writing at 0x00000000... (100 %) +Wrote 20368 bytes (12917 compressed) at 0x00000000 in 0.3 seconds (effective 484.7 kbit/s)... +Hash of data verified. +Compressed 732048 bytes to 462350... +Writing at 0x00010000... (3 %) +Writing at 0x0001cd3e... (6 %) +Writing at 0x00026289... (10 %) +Writing at 0x0002b793... (13 %) +Writing at 0x00035c1f... (17 %) +Writing at 0x0003b9c3... (20 %) +Writing at 0x00041524... (24 %) +Writing at 0x0004767d... (27 %) +Writing at 0x0004dcb3... (31 %) +Writing at 0x00053635... (34 %) +Writing at 0x00058c6f... (37 %) +Writing at 0x0005e4bc... (41 %) +Writing at 0x00063ddd... (44 %) +Writing at 0x00069963... (48 %) +Writing at 0x0006f58c... (51 %) +Writing at 0x000743eb... (55 %) +Writing at 0x000794c2... (58 %) +Writing at 0x0007e517... (62 %) +Writing at 0x0008380f... (65 %) +Writing at 0x00088d05... (68 %) +Writing at 0x0008e77b... (72 %) +Writing at 0x00093f0e... (75 %) +Writing at 0x000998b0... (79 %) +Writing at 0x0009f8bf... (82 %) +Writing at 0x000a510a... (86 %) +Writing at 0x000aae76... (89 %) +Writing at 0x000b4bd9... (93 %) +Writing at 0x000bb8ff... (96 %) +Writing at 0x000c11cd... (100 %) +Wrote 732048 bytes (462350 compressed) at 0x00010000 in 7.6 seconds (effective 766.9 kbit/s)... +Hash of data verified. +Compressed 3072 bytes to 103... +Writing at 0x00008000... (100 %) +Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 481.9 kbit/s)... +Hash of data verified. + +Leaving... +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_6300 b/build/log/idf_py_stdout_output_6300 new file mode 100644 index 0000000..30cea49 --- /dev/null +++ b/build/log/idf_py_stdout_output_6300 @@ -0,0 +1,21 @@ +[1/9] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/7] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[3/7] Linking C static library esp-idf\main\libmain.a +[4/7] Generating ld/sections.ld +[5/7] Linking CXX executable wifi_station.elf +[6/7] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[7/7] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2c00 bytes. Smallest app partition is 0x100000 bytes. 0x4d400 bytes (30%) free. diff --git a/build/log/idf_py_stdout_output_6732 b/build/log/idf_py_stdout_output_6732 new file mode 100644 index 0000000..7c28787 --- /dev/null +++ b/build/log/idf_py_stdout_output_6732 @@ -0,0 +1,713 @@ +[0/1] Re-running CMake... +-- ccache will be used for faster recompilation +-- Building ESP-IDF components for target esp32s3 +-- Project sdkconfig file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig +-- App "wifi_station" version: v5.0.4-dirty +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ld/esp32s3/sections.ld.in +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_common esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_netif esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_system esp_timer esp_wifi espcoredump esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lwip main mbedtls mqtt newlib nvs_flash openthread partition_table perfmon protobuf-c protocomm pthread sdmmc soc spi_flash spiffs tcp_transport touch_element ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock E:/Espressif/frameworks/esp-idf-v5.0.4/components/console E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/json E:/Espressif/frameworks/esp-idf-v5.0.4/components/log E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build +[1/520] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj +[2/520] Building C object esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj +[3/520] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj +[4/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj +[5/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj +[6/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj +[7/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj +[8/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj +[9/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj +[10/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj +[11/520] Building CXX object esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj +[12/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj +[13/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj +[14/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj +[15/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj +[16/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj +[17/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj +[18/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj +[19/520] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj +[20/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj +[21/520] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj +[22/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj +[23/520] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj +[24/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj +[25/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj +[26/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj +[27/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj +[28/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj +[29/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_usb_serial_jtag.c.obj +[30/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj +[31/520] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj +[32/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj +[33/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj +[34/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj +[35/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj +[36/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj +[37/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj +[38/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj +[39/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj +[40/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj +[41/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj +[42/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj +[43/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj +[44/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj +[45/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj +[46/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj +[47/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj +[48/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj +[49/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj +[50/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj +[51/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj +[52/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj +[53/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj +[54/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj +[55/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj +[56/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj +[57/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj +[58/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj +[59/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj +[60/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj +[61/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj +[62/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj +[63/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj +[64/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj +[65/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj +[66/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj +[67/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj +[68/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj +[69/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj +[70/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj +[71/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj +[72/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj +[73/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj +[74/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj +[75/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj +[76/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj +[77/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj +[78/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj +[79/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj +[80/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj +[81/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj +[82/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj +[83/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj +[84/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj +[85/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj +[86/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj +[87/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj +[88/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj +[89/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj +[90/520] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj +[91/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj +[92/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj +[93/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj +[94/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj +[95/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj +[96/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj +[97/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj +[98/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj +[99/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/tcp_isn_default.c.obj +[100/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj +[101/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj +[102/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj +[103/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/hooks/lwip_default_hooks.c.obj +[104/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj +[105/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj +[106/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj +[107/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj +[108/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/sockets_ext.c.obj +[109/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj +[110/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj +[111/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj +[112/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj +[113/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj +[114/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj +[115/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj +[116/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj +[117/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj +[118/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj +[119/520] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj +[120/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj +[121/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj +[122/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj +[123/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj +[124/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj +[125/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj +[126/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj +[127/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj +[128/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj +[129/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj +[130/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj +[131/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj +[132/520] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj +[133/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj +[134/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj +[135/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj +[136/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj +[137/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj +[138/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj +[139/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj +[140/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj +[141/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj +[142/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj +[143/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj +[144/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj +[145/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj +[146/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj +[147/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj +[148/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj +[149/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj +[150/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj +[151/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj +[152/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj +[153/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj +[154/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj +[155/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj +[156/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj +[157/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj +[158/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj +[159/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj +[160/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj +[161/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj +[162/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj +[163/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj +[164/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj +[165/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj +[166/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj +[167/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj +[168/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj +[169/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj +[170/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj +[171/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj +[172/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj +[173/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj +[174/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj +[175/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj +[176/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj +[177/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj +[178/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2.c.obj +[179/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj +[180/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj +[181/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj +[182/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj +[183/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj +[184/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj +[185/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj +[186/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj +[187/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj +[188/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj +[189/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj +[190/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj +[191/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj +[192/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj +[193/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj +[194/520] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj +[195/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj +[196/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj +[197/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj +[198/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj +[199/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj +[200/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj +[201/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj +[202/520] Building C object esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj +[203/520] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj +[204/520] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32s3/esp_adapter.c.obj +[205/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj +[206/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj +[207/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj +[208/520] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj +[209/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj +[210/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj +[211/520] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj +[212/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj +[213/520] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj +[214/520] Building ASM object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub-entry.S.obj +[215/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj +[216/520] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj +[217/520] Building ASM object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/xt_debugexception.S.obj +[218/520] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj +[219/520] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj +[220/520] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj +[221/520] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj +[222/520] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj +[223/520] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj +[224/520] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj +[225/520] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj +[226/520] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj +[227/520] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp_common/gdbstub_common.c.obj +[228/520] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj +[229/520] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj +[230/520] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj +[231/520] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj +[232/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj +[233/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj +[234/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj +[235/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj +[236/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj +[237/520] Performing configure step for 'bootloader' +-- Found Git: E:/Espressif/tools/idf-git/2.39.2/cmd/git.exe (found version "2.39.2.windows.1") +-- The C compiler identification is GNU 11.2.0 +-- The CXX compiler identification is GNU 11.2.0 +-- The ASM compiler identification is GNU +-- Found assembler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-g++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Building ESP-IDF components for target esp32s3 +-- Project sdkconfig file E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig +-- Looking for sys/types.h +-- Looking for sys/types.h - found +-- Looking for stdint.h +-- Looking for stdint.h - found +-- Looking for stddef.h +-- Looking for stddef.h - found +-- Check size of time_t +-- Check size of time_t - done +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ld/esp32s3.peripherals.ld +-- App "bootloader" version: v5.0.4-dirty +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/ld/esp32s3/bootloader.ld +-- Adding linker script E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main/ld/esp32s3/bootloader.rom.ld +-- Components: bootloader bootloader_support efuse esp_app_format esp_common esp_hw_support esp_rom esp_system esptool_py freertos hal log main micro-ecc newlib partition_table soc spi_flash xtensa +-- Component paths: E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal E:/Espressif/frameworks/esp-idf-v5.0.4/components/log E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/main E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/subproject/components/micro-ecc E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader +[238/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj +[239/520] Building C object esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_common/ulp_common.c.obj +[240/520] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj +[241/520] Building C object esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj +[242/520] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj +[243/520] Linking C static library esp-idf\ulp\libulp.a +[244/520] Linking C static library esp-idf\esp_https_ota\libesp_https_ota.a +[245/520] Linking C static library esp-idf\esp_http_server\libesp_http_server.a +[246/520] Linking C static library esp-idf\esp_http_client\libesp_http_client.a +[247/520] Linking C static library esp-idf\tcp_transport\libtcp_transport.a +[248/520] Linking C static library esp-idf\esp_gdbstub\libesp_gdbstub.a +[249/520] Linking C static library esp-idf\esp_eth\libesp_eth.a +[250/520] Linking C static library esp-idf\esp_adc\libesp_adc.a +[251/520] Linking C static library esp-idf\esp-tls\libesp-tls.a +[252/520] Linking C static library esp-idf\http_parser\libhttp_parser.a +[253/520] Linking C static library esp-idf\esp_wifi\libesp_wifi.a +[254/520] Linking C static library esp-idf\wpa_supplicant\libwpa_supplicant.a +[255/520] Linking C static library esp-idf\esp_netif\libesp_netif.a +[256/520] Linking C static library esp-idf\lwip\liblwip.a +[257/520] Linking C static library esp-idf\vfs\libvfs.a +[258/520] Linking C static library esp-idf\esp_phy\libesp_phy.a +[259/520] Linking C static library esp-idf\nvs_flash\libnvs_flash.a +[260/520] Linking C static library esp-idf\esp_event\libesp_event.a +[261/520] Linking C static library esp-idf\esp_timer\libesp_timer.a +[262/520] Linking C static library esp-idf\esp_common\libesp_common.a +[263/520] Linking C static library esp-idf\cxx\libcxx.a +[264/520] Linking C static library esp-idf\newlib\libnewlib.a +[265/520] Linking C static library esp-idf\freertos\libfreertos.a +[266/520] Linking C static library esp-idf\esp_hw_support\libesp_hw_support.a +[267/520] Linking C static library esp-idf\soc\libsoc.a +[268/520] Linking C static library esp-idf\heap\libheap.a +[269/520] Linking C static library esp-idf\log\liblog.a +[270/520] Linking C static library esp-idf\hal\libhal.a +[271/520] Linking C static library esp-idf\esp_rom\libesp_rom.a +[272/520] Linking C static library esp-idf\esp_system\libesp_system.a +[273/520] Performing build step for 'bootloader' +[1/109] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj +[2/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj +[3/109] Generating project_elf_src_esp32s3.c +[4/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj +[5/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj +[6/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj +[7/109] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj +[8/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj +[9/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj +[10/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj +[11/109] Building C object CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj +[12/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj +[13/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj +[14/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj +[15/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj +[16/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj +[17/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj +[18/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj +[19/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj +[20/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj +[21/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj +[22/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdio_slave_periph.c.obj +[23/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj +[24/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj +[25/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_periph.c.obj +[26/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj +[27/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_otg_periph.c.obj +[28/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj +[29/109] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj +[30/109] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj +[31/109] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj +[32/109] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj +[33/109] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj +[34/109] Building C object esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj +[35/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj +[36/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj +[37/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj +[38/109] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj +[39/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj +[40/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj +[41/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj +[42/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj +[43/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj +[44/109] Building C object esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj +[45/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_sha.c.obj +[46/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj +[47/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj +[48/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj +[49/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj +[50/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj +[51/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj +[52/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj +[53/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj +[54/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj +[55/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj +[56/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj +[57/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj +[58/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj +[59/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj +[60/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj +[61/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj +[62/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj +[63/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj +[64/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj +[65/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj +[66/109] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj +[67/109] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj +[68/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj +[69/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj +[70/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj +[71/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_pm.c.obj +[72/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj +[73/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj +[74/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj +[75/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj +[76/109] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj +[77/109] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj +[78/109] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj +[79/109] Building C object esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj +[80/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c.c.obj +[81/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj +[82/109] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj +[83/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj +[84/109] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj +[85/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj +[86/109] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj +[87/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj +[88/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj +[89/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj +[90/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_mmap.c.obj +[91/109] Linking C static library esp-idf\log\liblog.a +[92/109] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj +[93/109] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj +[94/109] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj +[95/109] Linking C static library esp-idf\esp_rom\libesp_rom.a +[96/109] Linking C static library esp-idf\esp_common\libesp_common.a +[97/109] Linking C static library esp-idf\esp_hw_support\libesp_hw_support.a +[98/109] Linking C static library esp-idf\esp_system\libesp_system.a +[99/109] Linking C static library esp-idf\efuse\libefuse.a +[100/109] Linking C static library esp-idf\bootloader_support\libbootloader_support.a +[101/109] Linking C static library esp-idf\esp_app_format\libesp_app_format.a +[102/109] Linking C static library esp-idf\hal\libhal.a +[103/109] Linking C static library esp-idf\micro-ecc\libmicro-ecc.a +[104/109] Linking C static library esp-idf\soc\libsoc.a +[105/109] Linking C static library esp-idf\xtensa\libxtensa.a +[106/109] Linking C static library esp-idf\main\libmain.a +[107/109] Linking C executable bootloader.elf +[108/109] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 1 ELF section +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin +[109/109] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[274/520] No install step for 'bootloader' +[275/520] Linking C static library esp-idf\pthread\libpthread.a +[276/520] Completed 'bootloader' +[277/520] Linking C static library esp-idf\spi_flash\libspi_flash.a +[278/520] Linking C static library esp-idf\app_update\libapp_update.a +[279/520] Linking C static library esp-idf\esp_partition\libesp_partition.a +[280/520] Linking C static library esp-idf\bootloader_support\libbootloader_support.a +[281/520] Linking C static library esp-idf\esp_app_format\libesp_app_format.a +[282/520] Linking CXX static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a +[283/520] Linking CXX static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a +[284/520] Linking CXX static library esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a +[285/520] Generating x509_crt_bundle +[286/520] Generating ../../x509_crt_bundle.S +[287/520] Building ASM object esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj +[288/520] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj +[289/520] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj +[290/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave_hd.c.obj +[291/520] Building C object esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj +[292/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj +[293/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj +[294/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_tdm.c.obj +[295/520] Linking C static library esp-idf\mbedtls\libmbedtls.a +[296/520] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj +[297/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/twai.c.obj +[298/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/temperature_sensor.c.obj +[299/520] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj +[300/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/usb_serial_jtag.c.obj +[301/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj +[302/520] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj +[303/520] Building ASM object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj +[304/520] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj +[305/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj +[306/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj +[307/520] Linking C static library esp-idf\esp_pm\libesp_pm.a +[308/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj +[309/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj +[310/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj +[311/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj +[312/520] Building C object esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj +[313/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj +[314/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj +[315/520] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj +[316/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj +[317/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj +[318/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj +[319/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj +[320/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer.c.obj +[321/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj +[322/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj +[323/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj +[324/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_bus_lock.c.obj +[325/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj +[326/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj +[327/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj +[328/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj +[329/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj +[330/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj +[331/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj +[332/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj +[333/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj +[334/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj +[335/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj +[336/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj +[337/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj +[338/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj +[339/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/dedic_gpio.c.obj +[340/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj +[341/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdm.c.obj +[342/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj +[343/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj +[344/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj +[345/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj +[346/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj +[347/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj +[348/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj +[349/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/pulse_cnt.c.obj +[350/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj +[351/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj +[352/520] Building C object esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj +[353/520] Building C object esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj +[354/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj +[355/520] Building C object esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj +[356/520] Building C object esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj +[357/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj +[358/520] Building C object esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj +[359/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj +[360/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj +[361/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj +[362/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj +[363/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj +[364/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj +[365/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj +[366/520] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj +[367/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj +[368/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj +[369/520] Building C object esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj +[370/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32s3/touch_sensor.c.obj +[371/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj +[372/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj +[373/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj +[374/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj +[375/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj +[376/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj +[377/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj +[378/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj +[379/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj +[380/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj +[381/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj +[382/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj +[383/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj +[384/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj +[385/520] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj +[386/520] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj +[387/520] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj +[388/520] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj +[389/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj +[390/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj +[391/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj +[392/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj +[393/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj +[394/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj +[395/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj +[396/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj +[397/520] Building C object esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj +[398/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i80.c.obj +[399/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj +[400/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj +[401/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj +[402/520] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_rgb.c.obj +[403/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj +[404/520] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj +[405/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj +[406/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj +[407/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj +[408/520] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj +[409/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj +[410/520] Linking C static library esp-idf\driver\libdriver.a +[411/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj +[412/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj +[413/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj +[414/520] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj +[415/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj +[416/520] Linking C static library esp-idf\efuse\libefuse.a +[417/520] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj +[418/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj +[419/520] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj +[420/520] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj +[421/520] Linking C static library esp-idf\esp_ringbuf\libesp_ringbuf.a +[422/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj +[423/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj +[424/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj +[425/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj +[426/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj +[427/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj +[428/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj +[429/520] Building C object esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj +[430/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj +[431/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj +[432/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj +[433/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj +[434/520] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj +[435/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj +[436/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj +[437/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj +[438/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj +[439/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj +[440/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj +[441/520] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj +[442/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj +[443/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj +[444/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj +[445/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj +[446/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj +[447/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj +[448/520] Building C object esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj +[449/520] Linking C static library esp-idf\xtensa\libxtensa.a +[450/520] Building C object esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj +[451/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj +[452/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj +[453/520] Linking C static library esp-idf\unity\libunity.a +[454/520] Linking C static library esp-idf\app_trace\libapp_trace.a +[455/520] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj +[456/520] Building C object esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj +[457/520] Building C object esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj +[458/520] Linking C static library esp-idf\cmock\libcmock.a +[459/520] Linking C static library esp-idf\esp_hid\libesp_hid.a +[460/520] Linking C static library esp-idf\esp_lcd\libesp_lcd.a +[461/520] Building C object esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj +[462/520] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj +[463/520] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj +[464/520] Linking C static library esp-idf\protobuf-c\libprotobuf-c.a +[465/520] Linking C static library esp-idf\wear_levelling\libwear_levelling.a +[466/520] Linking C static library esp-idf\espcoredump\libespcoredump.a +[467/520] Linking C static library esp-idf\json\libjson.a +[468/520] Linking C static library esp-idf\sdmmc\libsdmmc.a +[469/520] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj +[470/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj +[471/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj +[472/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj +[473/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj +[474/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj +[475/520] Building C object esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj +[476/520] Linking C static library esp-idf\perfmon\libperfmon.a +[477/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj +[478/520] Linking C static library esp-idf\mqtt\libmqtt.a +[479/520] Building C object esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_button.c.obj +[480/520] Linking C static library esp-idf\console\libconsole.a +[481/520] Building C object esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_slider.c.obj +[482/520] Building C object esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_element.c.obj +[483/520] Building C object esp-idf/touch_element/CMakeFiles/__idf_touch_element.dir/touch_matrix.c.obj +[484/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_helpers.c.obj +[485/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_private.c.obj +[486/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/hub.c.obj +[487/520] Linking C static library esp-idf\protocomm\libprotocomm.a +[488/520] Linking C static library esp-idf\touch_element\libtouch_element.a +[489/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/hcd_dwc.c.obj +[490/520] Linking C static library esp-idf\esp_local_ctrl\libesp_local_ctrl.a +[491/520] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj +[492/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_host.c.obj +[493/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/usbh.c.obj +[494/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj +[495/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj +[496/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj +[497/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj +[498/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj +[499/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj +[500/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj +[501/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj +[502/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/ModbusS.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c: In function 'ModbusSlaveProcess': +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:143:11: warning: unused variable 'tlv_len' [-Wunused-variable] + 143 | uint8_t tlv_len = 0; + | ^~~~~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:141:12: warning: unused variable 'pVar' [-Wunused-variable] + 141 | uint8_t *pVar; + | ^~~~ +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c:137:12: warning: unused variable 'temp_cnt' [-Wunused-variable] + 137 | uint16_t temp_cnt; + | ^~~~~~~~ +[503/520] Building C object esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj +[504/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/can_network.c.obj +[505/520] Linking C static library esp-idf\fatfs\libfatfs.a +[506/520] Building C object esp-idf/usb/CMakeFiles/__idf_usb.dir/usb_phy.c.obj +[507/520] Linking C static library esp-idf\spiffs\libspiffs.a +[508/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/modbus-tcp.c.obj +[509/520] Linking C static library esp-idf\usb\libusb.a +[510/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bdc_motor.c.obj +[511/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/pid_ctrl.c.obj +[512/520] Linking C static library esp-idf\wifi_provisioning\libwifi_provisioning.a +[513/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/mcpwm_bdc_control.c.obj +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:47: warning: "BDC_CH1_AOUT_GPIO" redefined + 47 | #define BDC_CH1_AOUT_GPIO 6 + | +E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c:46: note: this is the location of the previous definition + 46 | #define BDC_CH1_AOUT_GPIO 5 + | +[514/520] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj +[515/520] Linking C static library esp-idf\main\libmain.a +[516/520] Generating ld/sections.ld +[517/520] Building C object CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj +[518/520] Linking CXX executable wifi_station.elf +[519/520] Generating binary image from built executable +esptool.py v4.6.2 +Creating esp32s3 image... +Merged 2 ELF sections +Successfully created esp32s3 image. +Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin +[520/520] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xaabb0 bytes. Smallest app partition is 0x100000 bytes. 0x55450 bytes (33%) free. diff --git a/build/log/idf_py_stdout_output_8900 b/build/log/idf_py_stdout_output_8900 new file mode 100644 index 0000000..7996bf1 --- /dev/null +++ b/build/log/idf_py_stdout_output_8900 @@ -0,0 +1,1228 @@ +ESP-ROM:esp32s3-20210327 +Build:Mar 27 2021 +rst:0x15 (USB_UART_CHIP_RESET),boot:0x8 (SPI_FAST_FLASH_BOOT) +Saved PC:0x4037ba4e +SPIWP:0xee +mode:DIO, clock div:1 +load:0x3fce3810,len:0x168c +load:0x403c9700,len:0xbe0 +load:0x403cc700,len:0x2cd0 +entry 0x403c9908 +I (24) boot: ESP-IDF v5.0.4-dirty 2nd stage bootloader +I (25) boot: compile time 09:48:03 +I (25) boot: Multicore bootloader +I (27) boot: chip revision: v0.1 +I (31) boot.esp32s3: Boot SPI Speed : 80MHz +I (36) boot.esp32s3: SPI Mode : DIO +I (40) boot.esp32s3: SPI Flash Size : 2MB +I (45) boot: Enabling RNG early entropy source... +I (51) boot: Partition Table: +I (54) boot: ## Label Usage Type ST Offset Length +I (61) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (69) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (76) boot: 2 factory factory app 00 00 00010000 00100000 +I (84) boot: End of partition table +I (88) esp_image: segment 0: paddr=00010020 vaddr=3c080020 size=21590h (136592) map +I (121) esp_image: segment 1: paddr=000315b8 vaddr=3fc96a00 size=03e00h ( 15872) load +I (125) esp_image: segment 2: paddr=000353c0 vaddr=40374000 size=0ac58h ( 44120) load +I (136) esp_image: segment 3: paddr=00040020 vaddr=42000020 size=7ae6ch (503404) map +I (227) esp_image: segment 4: paddr=000bae94 vaddr=4037ec58 size=07cbch ( 31932) load +I (242) boot: Loaded app from partition at offset 0x10000 +I (243) boot: Disabling RNG early entropy source... +I (243) cpu_start: Multicore app +I (247) cpu_start: Pro cpu up. +I (250) cpu_start: Starting app cpu, entry point is 0x40375370 +I (0) cpu_start: App cpu up. +I (266) cpu_start: Pro cpu start user code +I (266) cpu_start: cpu freq: 160000000 Hz +I (267) cpu_start: Application information: +I (267) cpu_start: Project name: wifi_station +I (267) cpu_start: App version: v5.0.4-dirty +I (267) cpu_start: Compile time: Jan 20 2024 09:40:37 +I (268) cpu_start: ELF file SHA256: 4397a0fa38d159d6... +I (268) cpu_start: ESP-IDF: v5.0.4-dirty +I (268) cpu_start: Min chip rev: v0.0 +I (268) cpu_start: Max chip rev: v0.99  +I (268) cpu_start: Chip rev: v0.1 +I (269) heap_init: Initializing. RAM available for dynamic allocation: +I (269) heap_init: At 3FCA42E8 len 00045428 (277 KiB): DRAM +I (269) heap_init: At 3FCE9710 len 00005724 (21 KiB): STACK/DRAM +I (270) heap_init: At 3FCF0000 len 00008000 (32 KiB): DRAM +I (270) heap_init: At 600FE010 len 00001FD8 (7 KiB): RTCRAM +I (271) spi_flash: detected chip: gd +I (272) spi_flash: flash io: dio +W (272) spi_flash: Detected size(8192k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (273) app_start: Starting scheduler on CPU0 +I (273) app_start: Starting scheduler on CPU1 +I (273) main_task: Started on CPU0 +I (283) main_task: Calling app_main() +I (303) wifi station: ESP_WIFI_MODE_STA +I (303) pp: pp rom version: e7ae62f +I (303) net80211: net80211 rom version: e7ae62f +I (313) wifi:wifi driver task: 3fcae320, prio:23, stack:6656, core=0 +I (313) system_api: Base MAC address is not set +I (313) system_api: read default base MAC address from EFUSE +I (323) wifi:wifi firmware version: e2d0ad8 +I (323) wifi:wifi certification version: v7.0 +I (323) wifi:config NVS flash: enabled +I (323) wifi:config nano formating: disabled +I (323) wifi:Init data frame dynamic rx buffer num: 32 +I (323) wifi:Init management frame dynamic rx buffer num: 32 +I (323) wifi:Init management short buffer num: 32 +I (323) wifi:Init dynamic tx buffer num: 32 +I (323) wifi:Init static tx FG buffer num: 2 +I (323) wifi:Init static rx buffer size: 1600 +I (323) wifi:Init static rx buffer num: 10 +I (323) wifi:Init dynamic rx buffer num: 32 +I (323) wifi_init: rx ba win: 6 +I (323) wifi_init: tcpip mbox: 32 +I (323) wifi_init: udp mbox: 6 +I (323) wifi_init: tcp mbox: 6 +I (323) wifi_init: tcp tx win: 5744 +I (323) wifi_init: tcp rx win: 5744 +I (323) wifi_init: tcp mss: 1440 +I (323) wifi_init: WiFi IRAM OP enabled +I (323) wifi_init: WiFi RX IRAM OP enabled +I (333) phy_init: phy_version 610,2bff4c8,Jul 27 2023,20:22:14 +I (363) wifi:mode : sta (f4:12:fa:57:c4:a4) +I (363) wifi:enable tsf +I (363) wifi station: wifi_init_sta finished. +I (373) wifi:new:<11,0>, old:<1,0>, ap:<255,255>, sta:<11,0>, prof:1 +I (373) wifi:state: init -> auth (b0) +I (453) wifi:state: auth -> assoc (0) +I (453) wifi:state: assoc -> run (10) +I (613) wifi:connected with CMCC-xRSZ, aid = 134, channel 11, BW20, bssid = 74:6f:88:5a:5f:88 +I (613) wifi:security: WPA2-PSK, phy: bgn, rssi: -48 +I (623) wifi:pm start, type: 1 + +I (623) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000 +I (663) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:0, winSize:64 +I (663) wifi:idx:1 (ifx:0, 74:6f:88:5a:5f:88), tid:1, ssn:0, winSize:64 +I (693) wifi:AP's beacon interval = 102400 us, DTIM period = 1 +I (1133) wifi:idx +I (1133) wifi:idx:0 (ifx:0, 74:6f:88:5a:5f:88), tid:0, ssn:1, winSize:64 +I (1623) esp_netif_handlers: sta ip: 192.168.1.156, mask: 255.255.255.0, gw: 192.168.1.1 +I (1623) wifi station: got ip:192.168.1.156 +I (1623) wifi station: connected to ap SSID:CMCC-xRSZ password:dughk9gm +I (1623) modbus tcp: ModBusTCPSlave_init() +I (1623) example: Create DC motor +I (1623) gpio: GPIO[12]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1623) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0  +I (1623) example: Init pcnt driver to decode rotary signal +I (1623) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1623) gpio: GPIO[35]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1623) gpio: GPIO[35]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1623) gpio: GPIO[34]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0  +I (1623) example: Create PID control block +I (1623) example: Create a timer to do PID calculation periodically +I (1623) example: Enable motor +I (1623) example: Forward motor +I (1623) example: Start motor speed loop +I (2633) example: cur_pulse_count:0 +I (3633) example: cur_pulse_count:0 +I (3673) modbus tcp: accept assess +I (4633) example: cur_pulse_count:0 +I (4693) modbus tcp: ModBusSlave_recv() +I (4693) modbus: ModbusSlaveProcess()--------------------------- +I (4693) modbus: check id... +I (4693) modbus: ok +I (4693) modbus: add: 0, length: 10 +I (4693) modbus: Read Holding Registers +I (5633) example: cur_pulse_count:0 +I (5733) modbus tcp: ModBusSlave_recv() +I (5733) modbus: ModbusSlaveProcess()--------------------------- +I (5733) modbus: check id... +I (5733) modbus: ok +I (5733) modbus: add: 0, length: 10 +I (5733) modbus: Read Holding Registers +I (6633) example: cur_pulse_count:0 +I (6743) modbus tcp: ModBusSlave_recv() +I (6743) modbus: ModbusSlaveProcess()--------------------------- +I (6743) modbus: check id... +I (6743) modbus: ok +I (6743) modbus: add: 0, length: 10 +I (6743) modbus: Read Holding Registers +I (7633) example: cur_pulse_count:0 +I (7803) modbus tcp: ModBusSlave_recv() +I (7803) modbus: ModbusSlaveProcess()--------------------------- +I (7803) modbus: check id... +I (7803) modbus: ok +I (7803) modbus: add: 0, length: 10 +I (7803) modbus: Read Holding Registers +I (8633) example: cur_pulse_count:0 +I (8853) modbus tcp: ModBusSlave_recv() +I (8853) modbus: ModbusSlaveProcess()--------------------------- +I (8853) modbus: check id... +I (8853) modbus: ok +I (8853) modbus: add: 0, length: 10 +I (8853) modbus: Read Holding Registers +I (9633) example: cur_pulse_count:0 +I (9823) modbus tcp: ModBusSlave_recv() +I (9823) modbus: ModbusSlaveProcess()--------------------------- +I (9823) modbus: check id... +I (9823) modbus: ok +I (9823) modbus: add: 0, length: 10 +I (9823) modbus: Read Holding Registers +I (10633) example: cur_pulse_count:16 +I (10733) modbus tcp: ModBusSlave_recv() +I (10733) modbus: ModbusSlaveProcess()--------------------------- +I (10733) modbus: check id... +I (10733) modbus: ok +I (10733) modbus: add: 0, length: 10 +I (10733) modbus: Read Holding Registers +I (11633) example: cur_pulse_count:78 +I (11753) modbus tcp: ModBusSlave_recv() +I (11753) modbus: ModbusSlaveProcess()--------------------------- +I (11753) modbus: check id... +I (11753) modbus: ok +I (11763) modbus: add: 0, length: 10 +I (11763) modbus: Read Holding Registers +I (12633) example: cur_pulse_count:197 +I (12783) modbus tcp: ModBusSlave_recv() +I (12783) modbus: ModbusSlaveProcess()--------------------------- +I (12783) modbus: check id... +I (12783) modbus: ok +I (12783) modbus: add: 0, length: 10 +I (12783) modbus: Read Holding Registers +I (13633) example: cur_pulse_count:280 +I (13803) modbus tcp: ModBusSlave_recv() +I (13803) modbus: ModbusSlaveProcess()--------------------------- +I (13803) modbus: check id... +I (13803) modbus: ok +I (13803) modbus: add: 0, length: 10 +I (13803) modbus: Read Holding Registers +I (14633) example: cur_pulse_count:66 +I (14833) modbus tcp: ModBusSlave_recv() +I (14833) modbus: ModbusSlaveProcess()--------------------------- +I (14833) modbus: check id... +I (14833) modbus: ok +I (14833) modbus: add: 0, length: 10 +I (14833) modbus: Read Holding Registers +I (15633) example: cur_pulse_count:-102 +I (15853) modbus tcp: ModBusSlave_recv() +I (15853) modbus: ModbusSlaveProcess()--------------------------- +I (15853) modbus: check id... +I (15853) modbus: ok +I (15853) modbus: add: 0, length: 10 +I (15853) modbus: Read Holding Registers +I (16633) example: cur_pulse_count:-251 +I (16883) modbus tcp: ModBusSlave_recv() +I (16883) modbus: ModbusSlaveProcess()--------------------------- +I (16883) modbus: check id... +I (16883) modbus: ok +I (16883) modbus: add: 0, length: 10 +I (16883) modbus: Read Holding Registers +I (17633) example: cur_pulse_count:-251 +I (17903) modbus tcp: ModBusSlave_recv() +I (17903) modbus: ModbusSlaveProcess()--------------------------- +I (17903) modbus: check id... +I (17903) modbus: ok +I (17903) modbus: add: 0, length: 10 +I (17903) modbus: Read Holding Registers +I (18633) example: cur_pulse_count:-251 +I (18943) modbus tcp: ModBusSlave_recv() +I (18943) modbus: ModbusSlaveProcess()--------------------------- +I (18943) modbus: check id... +I (18943) modbus: ok +I (18943) modbus: add: 0, length: 10 +I (18943) modbus: Read Holding Registers +I (19633) example: cur_pulse_count:-251 +I (19953) modbus tcp: ModBusSlave_recv() +I (19953) modbus: ModbusSlaveProcess()--------------------------- +I (19953) modbus: check id... +I (19953) modbus: ok +I (19953) modbus: add: 0, length: 10 +I (19953) modbus: Read Holding Registers +I (20633) example: cur_pulse_count:-251 +I (21023) modbus tcp: ModBusSlave_recv() +I (21023) modbus: ModbusSlaveProcess()--------------------------- +I (21023) modbus: check id... +I (21023) modbus: ok +I (21023) modbus: add: 0, length: 10 +I (21023) modbus: Read Holding Registers +I (21633) example: cur_pulse_count:-251 +I (21993) modbus tcp: ModBusSlave_recv() +I (21993) modbus: ModbusSlaveProcess()--------------------------- +I (21993) modbus: check id... +I (22003) modbus: ok +I (22003) modbus: add: 0, length: 10 +I (22003) modbus: Read Holding Registers +I (22633) example: cur_pulse_count:-251 +I (22923) modbus tcp: ModBusSlave_recv() +I (22923) modbus: ModbusSlaveProcess()--------------------------- +I (22923) modbus: check id... +I (22923) modbus: ok +I (22923) modbus: add: 0, length: 10 +I (22923) modbus: Read Holding Registers +I (23633) example: cur_pulse_count:-251 +I (23943) modbus tcp: ModBusSlave_recv() +I (23943) modbus: ModbusSlaveProcess()--------------------------- +I (23943) modbus: check id... +I (23943) modbus: ok +I (23953) modbus: add: 0, length: 10 +I (23953) modbus: Read Holding Registers +I (24633) example: cur_pulse_count:-251 +I (24963) modbus tcp: ModBusSlave_recv() +I (24963) modbus: ModbusSlaveProcess()--------------------------- +I (24963) modbus: check id... +I (24963) modbus: ok +I (24963) modbus: add: 0, length: 10 +I (24973) modbus: Read Holding Registers +I (25633) example: cur_pulse_count:-251 +I (25993) modbus tcp: ModBusSlave_recv() +I (25993) modbus: ModbusSlaveProcess()--------------------------- +I (25993) modbus: check id... +I (25993) modbus: ok +I (25993) modbus: add: 0, length: 10 +I (25993) modbus: Read Holding Registers +I (26633) example: cur_pulse_count:-251 +I (27023) modbus tcp: ModBusSlave_recv() +I (27023) modbus: ModbusSlaveProcess()--------------------------- +I (27023) modbus: check id... +I (27023) modbus: ok +I (27023) modbus: add: 0, length: 10 +I (27023) modbus: Read Holding Registers +I (27633) example: cur_pulse_count:-251 +I (28043) modbus tcp: ModBusSlave_recv() +I (28043) modbus: ModbusSlaveProcess()--------------------------- +I (28043) modbus: check id... +I (28043) modbus: ok +I (28043) modbus: add: 0, length: 10 +I (28043) modbus: Read Holding Registers +I (28633) example: cur_pulse_count:-251 +I (29073) modbus tcp: ModBusSlave_recv() +I (29073) modbus: ModbusSlaveProcess()--------------------------- +I (29073) modbus: check id... +I (29073) modbus: ok +I (29073) modbus: add: 0, length: 10 +I (29073) modbus: Read Holding Registers +I (29633) example: cur_pulse_count:-251 +I (30093) modbus tcp: ModBusSlave_recv() +I (30093) modbus: ModbusSlaveProcess()--------------------------- +I (30093) modbus: check id... +I (30093) modbus: ok +I (30093) modbus: add: 0, length: 10 +I (30093) modbus: Read Holding Registers +I (30633) example: cur_pulse_count:-251 +I (31113) modbus tcp: ModBusSlave_recv() +I (31113) modbus: ModbusSlaveProcess()--------------------------- +I (31113) modbus: check id... +I (31113) modbus: ok +I (31113) modbus: add: 0, length: 10 +I (31123) modbus: Read Holding Registers +I (31633) example: cur_pulse_count:-251 +I (32183) modbus tcp: ModBusSlave_recv() +I (32183) modbus: ModbusSlaveProcess()--------------------------- +I (32183) modbus: check id... +I (32183) modbus: ok +I (32183) modbus: add: 0, length: 10 +I (32183) modbus: Read Holding Registers +I (32633) example: cur_pulse_count:-251 +I (33163) modbus tcp: ModBusSlave_recv() +I (33163) modbus: ModbusSlaveProcess()--------------------------- +I (33163) modbus: check id... +I (33163) modbus: ok +I (33163) modbus: add: 0, length: 10 +I (33163) modbus: Read Holding Registers +I (33633) example: cur_pulse_count:-251 +I (34083) modbus tcp: ModBusSlave_recv() +I (34083) modbus: ModbusSlaveProcess()--------------------------- +I (34083) modbus: check id... +I (34083) modbus: ok +I (34083) modbus: add: 0, length: 10 +I (34083) modbus: Read Holding Registers +I (34633) example: cur_pulse_count:-251 +I (35103) modbus tcp: ModBusSlave_recv() +I (35103) modbus: ModbusSlaveProcess()--------------------------- +I (35103) modbus: check id... +I (35103) modbus: ok +I (35103) modbus: add: 0, length: 10 +I (35103) modbus: Read Holding Registers +I (35633) example: cur_pulse_count:-251 +I (36133) modbus tcp: ModBusSlave_recv() +I (36133) modbus: ModbusSlaveProcess()--------------------------- +I (36133) modbus: check id... +I (36133) modbus: ok +I (36143) modbus: add: 0, length: 10 +I (36143) modbus: Read Holding Registers +I (36633) example: cur_pulse_count:-251 +I (37153) modbus tcp: ModBusSlave_recv() +I (37153) modbus: ModbusSlaveProcess()--------------------------- +I (37153) modbus: check id... +I (37153) modbus: ok +I (37153) modbus: add: 0, length: 10 +I (37153) modbus: Read Holding Registers +I (37633) example: cur_pulse_count:-251 +I (38173) modbus tcp: ModBusSlave_recv() +I (38173) modbus: ModbusSlaveProcess()--------------------------- +I (38173) modbus: check id... +I (38173) modbus: ok +I (38183) modbus: add: 0, length: 10 +I (38183) modbus: Read Holding Registers +I (38633) example: cur_pulse_count:-251 +I (39313) modbus tcp: ModBusSlave_recv() +I (39313) modbus: ModbusSlaveProcess()--------------------------- +I (39313) modbus: check id... +I (39313) modbus: ok +I (39313) modbus: add: 0, length: 10 +I (39313) modbus: Read Holding Registers +I (39633) example: cur_pulse_count:-251 +I (40323) modbus tcp: ModBusSlave_recv() +I (40323) modbus: ModbusSlaveProcess()--------------------------- +I (40323) modbus: check id... +I (40323) modbus: ok +I (40323) modbus: add: 0, length: 10 +I (40323) modbus: Read Holding Registers +I (40633) example: cur_pulse_count:-251 +I (41293) modbus tcp: ModBusSlave_recv() +I (41293) modbus: ModbusSlaveProcess()--------------------------- +I (41293) modbus: check id... +I (41293) modbus: ok +I (41293) modbus: add: 0, length: 10 +I (41293) modbus: Read Holding Registers +I (41633) example: cur_pulse_count:-251 +I (42363) modbus tcp: ModBusSlave_recv() +I (42363) modbus: ModbusSlaveProcess()--------------------------- +I (42363) modbus: check id... +I (42363) modbus: ok +I (42363) modbus: add: 0, length: 10 +I (42363) modbus: Read Holding Registers +I (42633) example: cur_pulse_count:-251 +I (43303) modbus tcp: ModBusSlave_recv() +I (43303) modbus: ModbusSlaveProcess()--------------------------- +I (43303) modbus: check id... +I (43303) modbus: ok +I (43303) modbus: add: 0, length: 10 +I (43303) modbus: Read Holding Registers +I (43633) example: cur_pulse_count:-251 +I (44333) modbus tcp: ModBusSlave_recv() +I (44333) modbus: ModbusSlaveProcess()--------------------------- +I (44333) modbus: check id... +I (44333) modbus: ok +I (44333) modbus: add: 0, length: 10 +I (44333) modbus: Read Holding Registers +I (44633) example: cur_pulse_count:-251 +I (45383) modbus tcp: ModBusSlave_recv() +I (45383) modbus: ModbusSlaveProcess()--------------------------- +I (45383) modbus: check id... +I (45383) modbus: ok +I (45383) modbus: add: 0, length: 10 +I (45383) modbus: Read Holding Registers +I (45633) example: cur_pulse_count:-251 +I (46373) modbus tcp: ModBusSlave_recv() +I (46373) modbus: ModbusSlaveProcess()--------------------------- +I (46373) modbus: check id... +I (46373) modbus: ok +I (46373) modbus: add: 0, length: 10 +I (46373) modbus: Read Holding Registers +I (46633) example: cur_pulse_count:-251 +I (47293) modbus tcp: ModBusSlave_recv() +I (47293) modbus: ModbusSlaveProcess()--------------------------- +I (47293) modbus: check id... +I (47293) modbus: ok +I (47293) modbus: add: 0, length: 10 +I (47293) modbus: Read Holding Registers +I (47633) example: cur_pulse_count:-251 +I (48343) modbus tcp: ModBusSlave_recv() +I (48343) modbus: ModbusSlaveProcess()--------------------------- +I (48343) modbus: check id... +I (48343) modbus: ok +I (48343) modbus: add: 0, length: 10 +I (48343) modbus: Read Holding Registers +I (48633) example: cur_pulse_count:-251 +I (49333) modbus tcp: ModBusSlave_recv() +I (49343) modbus: ModbusSlaveProcess()--------------------------- +I (49343) modbus: check id... +I (49343) modbus: ok +I (49343) modbus: add: 0, length: 10 +I (49343) modbus: Read Holding Registers +I (49633) example: cur_pulse_count:-251 +I (50363) modbus tcp: ModBusSlave_recv() +I (50363) modbus: ModbusSlaveProcess()--------------------------- +I (50363) modbus: check id... +I (50363) modbus: ok +I (50363) modbus: add: 0, length: 10 +I (50363) modbus: Read Holding Registers +I (50633) example: cur_pulse_count:-251 +I (51383) modbus tcp: ModBusSlave_recv() +I (51383) modbus: ModbusSlaveProcess()--------------------------- +I (51383) modbus: check id... +I (51383) modbus: ok +I (51383) modbus: add: 0, length: 10 +I (51383) modbus: Read Holding Registers +I (51633) example: cur_pulse_count:-251 +I (52633) example: cur_pulse_count:-251 +I (52723) modbus tcp: ModBusSlave_recv() +I (52723) modbus: ModbusSlaveProcess()--------------------------- +I (52723) modbus: check id... +I (52723) modbus: ok +I (52723) modbus: add: 0, length: 10 +I (52723) modbus: Read Holding Registers +I (53433) modbus tcp: ModBusSlave_recv() +I (53433) modbus: ModbusSlaveProcess()--------------------------- +I (53433) modbus: check id... +I (53433) modbus: ok +I (53433) modbus: add: 0, length: 10 +I (53433) modbus: Read Holding Registers +I (53633) example: cur_pulse_count:-251 +I (54463) modbus tcp: ModBusSlave_recv() +I (54463) modbus: ModbusSlaveProcess()--------------------------- +I (54463) modbus: check id... +I (54463) modbus: ok +I (54463) modbus: add: 0, length: 10 +I (54463) modbus: Read Holding Registers +I (54633) example: cur_pulse_count:-251 +I (55633) example: cur_pulse_count:-251 +I (55693) modbus tcp: ModBusSlave_recv() +I (55693) modbus: ModbusSlaveProcess()--------------------------- +I (55693) modbus: check id... +I (55693) modbus: ok +I (55693) modbus: add: 0, length: 10 +I (55693) modbus: Read Holding Registers +I (56513) modbus tcp: ModBusSlave_recv() +I (56513) modbus: ModbusSlaveProcess()--------------------------- +I (56513) modbus: check id... +I (56513) modbus: ok +I (56513) modbus: add: 0, length: 10 +I (56513) modbus: Read Holding Registers +I (56633) example: cur_pulse_count:-251 +I (57533) modbus tcp: ModBusSlave_recv() +I (57533) modbus: ModbusSlaveProcess()--------------------------- +I (57533) modbus: check id... +I (57533) modbus: ok +I (57533) modbus: add: 0, length: 10 +I (57533) modbus: Read Holding Registers +I (57633) example: cur_pulse_count:-251 +I (58553) modbus tcp: ModBusSlave_recv() +I (58553) modbus: ModbusSlaveProcess()--------------------------- +I (58553) modbus: check id... +I (58553) modbus: ok +I (58553) modbus: add: 0, length: 10 +I (58553) modbus: Read Holding Registers +I (58633) example: cur_pulse_count:-251 +I (59473) modbus tcp: ModBusSlave_recv() +I (59473) modbus: ModbusSlaveProcess()--------------------------- +I (59473) modbus: check id... +I (59473) modbus: ok +I (59473) modbus: add: 0, length: 10 +I (59473) modbus: Read Holding Registers +I (59633) example: cur_pulse_count:-251 +I (60503) modbus tcp: ModBusSlave_recv() +I (60503) modbus: ModbusSlaveProcess()--------------------------- +I (60503) modbus: check id... +I (60503) modbus: ok +I (60503) modbus: add: 0, length: 10 +I (60503) modbus: Read Holding Registers +I (60633) example: cur_pulse_count:-251 +I (61523) modbus tcp: ModBusSlave_recv() +I (61523) modbus: ModbusSlaveProcess()--------------------------- +I (61523) modbus: check id... +I (61523) modbus: ok +I (61523) modbus: add: 0, length: 10 +I (61523) modbus: Read Holding Registers +I (61633) example: cur_pulse_count:-251 +I (62553) modbus tcp: ModBusSlave_recv() +I (62553) modbus: ModbusSlaveProcess()--------------------------- +I (62553) modbus: check id... +I (62553) modbus: ok +I (62553) modbus: add: 0, length: 10 +I (62553) modbus: Read Holding Registers +I (62633) example: cur_pulse_count:-251 +I (63363) modbus tcp: ModBusSlave_recv() +I (63363) modbus: ModbusSlaveProcess()--------------------------- +I (63363) modbus: check id... +I (63363) modbus: ok +I (63363) modbus: add: 0, length: 10 +I (63373) modbus: Read Holding Registers +I (63443) modbus tcp: ModBusSlave_recv() +I (63443) modbus: ModbusSlaveProcess()--------------------------- +I (63443) modbus: check id... +I (63443) modbus: ok +I (63443) modbus: add: 0, length: 10 +I (63443) modbus: Read Holding Registers +I (63583) modbus tcp: ModBusSlave_recv() +I (63583) modbus: ModbusSlaveProcess()--------------------------- +I (63583) modbus: check id... +I (63583) modbus: ok +I (63583) modbus: add: 0, length: 10 +I (63583) modbus: Read Holding Registers +I (63633) example: cur_pulse_count:-251 +I (63783) modbus tcp: ModBusSlave_recv() +I (63783) modbus: ModbusSlaveProcess()--------------------------- +I (63783) modbus: check id... +I (63783) modbus: ok +I (63783) modbus: add: 0, length: 10 +I (63783) modbus: Read Holding Registers +I (63803) modbus tcp: ModBusSlave_recv() +I (63803) modbus: ModbusSlaveProcess()--------------------------- +I (63803) modbus: check id... +I (63803) modbus: ok +I (63803) modbus: add: 0, length: 10 +I (63803) modbus: Read Holding Registers +I (63923) modbus tcp: ModBusSlave_recv() +I (63923) modbus: ModbusSlaveProcess()--------------------------- +I (63923) modbus: check id... +I (63923) modbus: ok +I (63923) modbus: add: 0, length: 10 +I (63923) modbus: Read Holding Registers +I (64013) modbus tcp: ModBusSlave_recv() +I (64013) modbus: ModbusSlaveProcess()--------------------------- +I (64013) modbus: check id... +I (64013) modbus: ok +I (64013) modbus: add: 0, length: 10 +I (64013) modbus: Read Holding Registers +I (64173) modbus tcp: ModBusSlave_recv() +I (64173) modbus: ModbusSlaveProcess()--------------------------- +I (64173) modbus: check id... +I (64173) modbus: ok +I (64173) modbus: add: 0, length: 10 +I (64173) modbus: Read Holding Registers +I (64263) modbus tcp: ModBusSlave_recv() +I (64263) modbus: ModbusSlaveProcess()--------------------------- +I (64263) modbus: check id... +I (64263) modbus: ok +I (64263) modbus: add: 0, length: 10 +I (64263) modbus: Read Holding Registers +I (64393) modbus tcp: ModBusSlave_recv() +I (64393) modbus: ModbusSlaveProcess()--------------------------- +I (64393) modbus: check id... +I (64393) modbus: ok +I (64393) modbus: add: 0, length: 10 +I (64393) modbus: Read Holding Registers +I (64483) modbus tcp: ModBusSlave_recv() +I (64483) modbus: ModbusSlaveProcess()--------------------------- +I (64483) modbus: check id... +I (64483) modbus: ok +I (64483) modbus: add: 0, length: 10 +I (64483) modbus: Read Holding Registers +I (64603) modbus tcp: ModBusSlave_recv() +I (64613) modbus: ModbusSlaveProcess()--------------------------- +I (64613) modbus: check id... +I (64613) modbus: ok +I (64613) modbus: add: 0, length: 10 +I (64613) modbus: Read Holding Registers +I (64633) example: cur_pulse_count:-251 +I (64703) modbus tcp: ModBusSlave_recv() +I (64703) modbus: ModbusSlaveProcess()--------------------------- +I (64703) modbus: check id... +I (64703) modbus: ok +I (64703) modbus: add: 0, length: 10 +I (64703) modbus: Read Holding Registers +I (64813) modbus tcp: ModBusSlave_recv() +I (64813) modbus: ModbusSlaveProcess()--------------------------- +I (64813) modbus: check id... +I (64813) modbus: ok +I (64813) modbus: add: 0, length: 10 +I (64813) modbus: Read Holding Registers +I (64923) modbus tcp: ModBusSlave_recv() +I (64923) modbus: ModbusSlaveProcess()--------------------------- +I (64923) modbus: check id... +I (64923) modbus: ok +I (64923) modbus: add: 0, length: 10 +I (64923) modbus: Read Holding Registers +I (65243) modbus tcp: ModBusSlave_recv() +I (65243) modbus: ModbusSlaveProcess()--------------------------- +I (65243) modbus: check id... +I (65243) modbus: ok +I (65243) modbus: add: 0, length: 10 +I (65243) modbus: Read Holding Registers +I (65273) modbus tcp: ModBusSlave_recv() +I (65283) modbus: ModbusSlaveProcess()--------------------------- +I (65283) modbus: check id... +I (65283) modbus: ok +I (65283) modbus: add: 0, length: 10 +I (65283) modbus: Read Holding Registers +I (65383) modbus tcp: ModBusSlave_recv() +I (65383) modbus: ModbusSlaveProcess()--------------------------- +I (65383) modbus: check id... +I (65383) modbus: ok +I (65383) modbus: add: 0, length: 10 +I (65383) modbus: Read Holding Registers +I (65543) modbus tcp: ModBusSlave_recv() +I (65543) modbus: ModbusSlaveProcess()--------------------------- +I (65543) modbus: check id... +I (65543) modbus: ok +I (65543) modbus: add: 0, length: 10 +I (65543) modbus: Read Holding Registers +I (65633) example: cur_pulse_count:-251 +I (65653) modbus tcp: ModBusSlave_recv() +I (65653) modbus: ModbusSlaveProcess()--------------------------- +I (65653) modbus: check id... +I (65653) modbus: ok +I (65653) modbus: add: 0, length: 10 +I (65653) modbus: Read Holding Registers +I (65793) modbus tcp: ModBusSlave_recv() +I (65793) modbus: ModbusSlaveProcess()--------------------------- +I (65793) modbus: check id... +I (65793) modbus: ok +I (65793) modbus: add: 0, length: 10 +I (65793) modbus: Read Holding Registers +I (65903) modbus tcp: ModBusSlave_recv() +I (65903) modbus: ModbusSlaveProcess()--------------------------- +I (65903) modbus: check id... +I (65903) modbus: ok +I (65903) modbus: add: 0, length: 10 +I (65903) modbus: Read Holding Registers +I (65993) modbus tcp: ModBusSlave_recv() +I (65993) modbus: ModbusSlaveProcess()--------------------------- +I (65993) modbus: check id... +I (65993) modbus: ok +I (65993) modbus: add: 0, length: 10 +I (65993) modbus: Read Holding Registers +I (66193) modbus tcp: ModBusSlave_recv() +I (66203) modbus: ModbusSlaveProcess()--------------------------- +I (66203) modbus: check id... +I (66203) modbus: ok +I (66203) modbus: add: 0, length: 10 +I (66203) modbus: Read Holding Registers +I (66213) modbus tcp: ModBusSlave_recv() +I (66213) modbus: ModbusSlaveProcess()--------------------------- +I (66213) modbus: check id... +I (66213) modbus: ok +I (66213) modbus: add: 0, length: 10 +I (66213) modbus: Read Holding Registers +I (66343) modbus tcp: ModBusSlave_recv() +I (66343) modbus: ModbusSlaveProcess()--------------------------- +I (66343) modbus: check id... +I (66343) modbus: ok +I (66343) modbus: add: 0, length: 10 +I (66343) modbus: Read Holding Registers +I (66433) modbus tcp: ModBusSlave_recv() +I (66443) modbus: ModbusSlaveProcess()--------------------------- +I (66443) modbus: check id... +I (66443) modbus: ok +I (66443) modbus: add: 0, length: 10 +I (66443) modbus: Read Holding Registers +I (66553) modbus tcp: ModBusSlave_recv() +I (66553) modbus: ModbusSlaveProcess()--------------------------- +I (66553) modbus: check id... +I (66553) modbus: ok +I (66553) modbus: add: 0, length: 10 +I (66553) modbus: Read Holding Registers +I (66633) example: cur_pulse_count:-251 +I (66753) modbus tcp: ModBusSlave_recv() +I (66753) modbus: ModbusSlaveProcess()--------------------------- +I (66753) modbus: check id... +I (66753) modbus: ok +I (66753) modbus: add: 0, length: 10 +I (66753) modbus: Read Holding Registers +I (66793) modbus tcp: ModBusSlave_recv() +I (66793) modbus: ModbusSlaveProcess()--------------------------- +I (66793) modbus: check id... +I (66793) modbus: ok +I (66793) modbus: add: 0, length: 10 +I (66793) modbus: Read Holding Registers +I (66903) modbus tcp: ModBusSlave_recv() +I (66903) modbus: ModbusSlaveProcess()--------------------------- +I (66903) modbus: check id... +I (66903) modbus: ok +I (66903) modbus: add: 0, length: 10 +I (66903) modbus: Read Holding Registers +I (67033) modbus tcp: ModBusSlave_recv() +I (67033) modbus: ModbusSlaveProcess()--------------------------- +I (67033) modbus: check id... +I (67033) modbus: ok +I (67033) modbus: add: 0, length: 10 +I (67033) modbus: Read Holding Registers +I (67143) modbus tcp: ModBusSlave_recv() +I (67143) modbus: ModbusSlaveProcess()--------------------------- +I (67143) modbus: check id... +I (67143) modbus: ok +I (67143) modbus: add: 0, length: 10 +I (67143) modbus: Read Holding Registers +I (67313) modbus tcp: ModBusSlave_recv() +I (67313) modbus: ModbusSlaveProcess()--------------------------- +I (67313) modbus: check id... +I (67313) modbus: ok +I (67313) modbus: add: 0, length: 10 +I (67313) modbus: Read Holding Registers +I (67373) modbus tcp: ModBusSlave_recv() +I (67373) modbus: ModbusSlaveProcess()--------------------------- +I (67373) modbus: check id... +I (67373) modbus: ok +I (67373) modbus: add: 0, length: 10 +I (67373) modbus: Read Holding Registers +I (67473) modbus tcp: ModBusSlave_recv() +I (67473) modbus: ModbusSlaveProcess()--------------------------- +I (67473) modbus: check id... +I (67473) modbus: ok +I (67473) modbus: add: 0, length: 10 +I (67473) modbus: Read Holding Registers +I (67593) modbus tcp: ModBusSlave_recv() +I (67593) modbus: ModbusSlaveProcess()--------------------------- +I (67593) modbus: check id... +I (67593) modbus: ok +I (67593) modbus: add: 0, length: 10 +I (67593) modbus: Read Holding Registers +I (67633) example: cur_pulse_count:-309 +I (67693) modbus tcp: ModBusSlave_recv() +I (67693) modbus: ModbusSlaveProcess()--------------------------- +I (67693) modbus: check id... +I (67693) modbus: ok +I (67693) modbus: add: 0, length: 10 +I (67693) modbus: Read Holding Registers +I (67873) modbus tcp: ModBusSlave_recv() +I (67873) modbus: ModbusSlaveProcess()--------------------------- +I (67873) modbus: check id... +I (67873) modbus: ok +I (67873) modbus: add: 0, length: 10 +I (67873) modbus: Read Holding Registers +I (67933) modbus tcp: ModBusSlave_recv() +I (67933) modbus: ModbusSlaveProcess()--------------------------- +I (67933) modbus: check id... +I (67933) modbus: ok +I (67933) modbus: add: 0, length: 10 +I (67933) modbus: Read Holding Registers +I (68083) modbus tcp: ModBusSlave_recv() +I (68083) modbus: ModbusSlaveProcess()--------------------------- +I (68083) modbus: check id... +I (68083) modbus: ok +I (68083) modbus: add: 0, length: 10 +I (68083) modbus: Read Holding Registers +I (68373) modbus tcp: ModBusSlave_recv() +I (68373) modbus: ModbusSlaveProcess()--------------------------- +I (68383) modbus: check id... +I (68383) modbus: ok +I (68383) modbus: add: 0, length: 10 +I (68383) modbus: Read Holding Registers +I (68393) modbus tcp: ModBusSlave_recv() +I (68393) modbus: ModbusSlaveProcess()--------------------------- +I (68393) modbus: check id... +I (68393) modbus: ok +I (68393) modbus: add: 0, length: 10 +I (68393) modbus: Read Holding Registers +I (68523) modbus tcp: ModBusSlave_recv() +I (68523) modbus: ModbusSlaveProcess()--------------------------- +I (68533) modbus: check id... +I (68533) modbus: ok +I (68533) modbus: add: 0, length: 10 +I (68533) modbus: Read Holding Registers +I (68633) example: cur_pulse_count:-249 +I (68633) modbus tcp: ModBusSlave_recv() +I (68633) modbus: ModbusSlaveProcess()--------------------------- +I (68633) modbus: check id... +I (68633) modbus: ok +I (68633) modbus: add: 0, length: 10 +I (68633) modbus: Read Holding Registers +I (68793) modbus tcp: ModBusSlave_recv() +I (68793) modbus: ModbusSlaveProcess()--------------------------- +I (68793) modbus: check id... +I (68793) modbus: ok +I (68793) modbus: add: 0, length: 10 +I (68793) modbus: Read Holding Registers +I (68843) modbus tcp: ModBusSlave_recv() +I (68843) modbus: ModbusSlaveProcess()--------------------------- +I (68843) modbus: check id... +I (68843) modbus: ok +I (68843) modbus: add: 0, length: 10 +I (68843) modbus: Read Holding Registers +I (68953) modbus tcp: ModBusSlave_recv() +I (68953) modbus: ModbusSlaveProcess()--------------------------- +I (68953) modbus: check id... +I (68953) modbus: ok +I (68953) modbus: add: 0, length: 10 +I (68953) modbus: Read Holding Registers +I (69053) modbus tcp: ModBusSlave_recv() +I (69063) modbus: ModbusSlaveProcess()--------------------------- +I (69063) modbus: check id... +I (69063) modbus: ok +I (69063) modbus: add: 0, length: 10 +I (69063) modbus: Read Holding Registers +I (69263) modbus tcp: ModBusSlave_recv() +I (69263) modbus: ModbusSlaveProcess()--------------------------- +I (69263) modbus: check id... +I (69263) modbus: ok +I (69263) modbus: add: 0, length: 10 +I (69263) modbus: Read Holding Registers +I (69373) modbus tcp: ModBusSlave_recv() +I (69373) modbus: ModbusSlaveProcess()--------------------------- +I (69373) modbus: check id... +I (69373) modbus: ok +I (69373) modbus: add: 0, length: 10 +I (69373) modbus: Read Holding Registers +I (69483) modbus tcp: ModBusSlave_recv() +I (69483) modbus: ModbusSlaveProcess()--------------------------- +I (69483) modbus: check id... +I (69483) modbus: ok +I (69483) modbus: add: 0, length: 10 +I (69483) modbus: Read Holding Registers +I (69593) modbus tcp: ModBusSlave_recv() +I (69593) modbus: ModbusSlaveProcess()--------------------------- +I (69593) modbus: check id... +I (69593) modbus: ok +I (69593) modbus: add: 0, length: 10 +I (69593) modbus: Read Holding Registers +I (69633) example: cur_pulse_count:-359 +I (69703) modbus tcp: ModBusSlave_recv() +I (69703) modbus: ModbusSlaveProcess()--------------------------- +I (69703) modbus: check id... +I (69703) modbus: ok +I (69703) modbus: add: 0, length: 10 +I (69703) modbus: Read Holding Registers +I (69813) modbus tcp: ModBusSlave_recv() +I (69813) modbus: ModbusSlaveProcess()--------------------------- +I (69813) modbus: check id... +I (69813) modbus: ok +I (69813) modbus: add: 0, length: 10 +I (69823) modbus: Read Holding Registers +I (69923) modbus tcp: ModBusSlave_recv() +I (69923) modbus: ModbusSlaveProcess()--------------------------- +I (69923) modbus: check id... +I (69923) modbus: ok +I (69923) modbus: add: 0, length: 10 +I (69923) modbus: Read Holding Registers +I (70033) modbus tcp: ModBusSlave_recv() +I (70033) modbus: ModbusSlaveProcess()--------------------------- +I (70033) modbus: check id... +I (70033) modbus: ok +I (70033) modbus: add: 0, length: 10 +I (70033) modbus: Read Holding Registers +I (70223) modbus tcp: ModBusSlave_recv() +I (70233) modbus: ModbusSlaveProcess()--------------------------- +I (70233) modbus: check id... +I (70233) modbus: ok +I (70233) modbus: add: 0, length: 10 +I (70233) modbus: Read Holding Registers +I (70253) modbus tcp: ModBusSlave_recv() +I (70253) modbus: ModbusSlaveProcess()--------------------------- +I (70253) modbus: check id... +I (70253) modbus: ok +I (70253) modbus: add: 0, length: 10 +I (70253) modbus: Read Holding Registers +I (70453) modbus tcp: ModBusSlave_recv() +I (70453) modbus: ModbusSlaveProcess()--------------------------- +I (70453) modbus: check id... +I (70453) modbus: ok +I (70453) modbus: add: 0, length: 10 +I (70453) modbus: Read Holding Registers +I (70543) modbus tcp: ModBusSlave_recv() +I (70543) modbus: ModbusSlaveProcess()--------------------------- +I (70543) modbus: check id... +I (70543) modbus: ok +I (70543) modbus: add: 0, length: 10 +I (70543) modbus: Read Holding Registers +I (70633) example: cur_pulse_count:-359 +I (70653) modbus tcp: ModBusSlave_recv() +I (70663) modbus: ModbusSlaveProcess()--------------------------- +I (70663) modbus: check id... +I (70663) modbus: ok +I (70663) modbus: add: 0, length: 10 +I (70663) modbus: Read Holding Registers +I (70763) modbus tcp: ModBusSlave_recv() +I (70763) modbus: ModbusSlaveProcess()--------------------------- +I (70763) modbus: check id... +I (70763) modbus: ok +I (70763) modbus: add: 0, length: 10 +I (70763) modbus: Read Holding Registers +I (70943) modbus tcp: ModBusSlave_recv() +I (70943) modbus: ModbusSlaveProcess()--------------------------- +I (70943) modbus: check id... +I (70953) modbus: ok +I (70953) modbus: add: 0, length: 10 +I (70953) modbus: Read Holding Registers +I (70983) modbus tcp: ModBusSlave_recv() +I (70983) modbus: ModbusSlaveProcess()--------------------------- +I (70983) modbus: check id... +I (70983) modbus: ok +I (70983) modbus: add: 0, length: 10 +I (70983) modbus: Read Holding Registers +I (71153) modbus tcp: ModBusSlave_recv() +I (71153) modbus: ModbusSlaveProcess()--------------------------- +I (71153) modbus: check id... +I (71153) modbus: ok +I (71153) modbus: add: 0, length: 10 +I (71153) modbus: Read Holding Registers +I (71283) modbus tcp: ModBusSlave_recv() +I (71283) modbus: ModbusSlaveProcess()--------------------------- +I (71283) modbus: check id... +I (71283) modbus: ok +I (71283) modbus: add: 0, length: 10 +I (71283) modbus: Read Holding Registers +I (71313) modbus tcp: ModBusSlave_recv() +I (71323) modbus: ModbusSlaveProcess()--------------------------- +I (71323) modbus: check id... +I (71323) modbus: ok +I (71323) modbus: add: 0, length: 10 +I (71323) modbus: Read Holding Registers +I (71423) modbus tcp: ModBusSlave_recv() +I (71423) modbus: ModbusSlaveProcess()--------------------------- +I (71423) modbus: check id... +I (71423) modbus: ok +I (71423) modbus: add: 0, length: 10 +I (71423) modbus: Read Holding Registers +I (71573) modbus tcp: ModBusSlave_recv() +I (71573) modbus: ModbusSlaveProcess()--------------------------- +I (71573) modbus: check id... +I (71573) modbus: ok +I (71573) modbus: add: 0, length: 10 +I (71573) modbus: Read Holding Registers +I (71633) example: cur_pulse_count:-359 +I (71643) modbus tcp: ModBusSlave_recv() +I (71643) modbus: ModbusSlaveProcess()--------------------------- +I (71643) modbus: check id... +I (71643) modbus: ok +I (71643) modbus: add: 0, length: 10 +I (71643) modbus: Read Holding Registers +I (71753) modbus tcp: ModBusSlave_recv() +I (71753) modbus: ModbusSlaveProcess()--------------------------- +I (71753) modbus: check id... +I (71753) modbus: ok +I (71753) modbus: add: 0, length: 10 +I (71753) modbus: Read Holding Registers +I (71863) modbus tcp: ModBusSlave_recv() +I (71863) modbus: ModbusSlaveProcess()--------------------------- +I (71863) modbus: check id... +I (71863) modbus: ok +I (71863) modbus: add: 0, length: 10 +I (71863) modbus: Read Holding Registers +I (71983) modbus tcp: ModBusSlave_recv() +I (71983) modbus: ModbusSlaveProcess()--------------------------- +I (71983) modbus: check id... +I (71983) modbus: ok +I (71983) modbus: add: 0, length: 10 +I (71983) modbus: Read Holding Registers +I (72093) modbus tcp: ModBusSlave_recv() +I (72093) modbus: ModbusSlaveProcess()--------------------------- +I (72093) modbus: check id... +I (72093) modbus: ok +I (72093) modbus: add: 0, length: 10 +I (72093) modbus: Read Holding Registers +I (72193) modbus tcp: ModBusSlave_recv() +I (72193) modbus: ModbusSlaveProcess()--------------------------- +I (72203) modbus: check id... +I (72203) modbus: ok +I (72203) modbus: add: 0, length: 10 +I (72203) modbus: Read Holding Registers +I (72503) modbus tcp: ModBusSlave_recv() +I (72503) modbus: ModbusSlaveProcess()--------------------------- +I (72503) modbus: check id... +I (72503) modbus: ok +I (72503) modbus: add: 0, length: 10 +I (72503) modbus: Read Holding Registers +I (72593) modbus tcp: ModBusSlave_recv() +I (72593) modbus: ModbusSlaveProcess()--------------------------- +I (72593) modbus: check id... +I (72593) modbus: ok +I (72593) modbus: add: 0, length: 10 +I (72593) modbus: Read Holding Registers +I (72633) example: cur_pulse_count:-359 +I (72703) modbus tcp: ModBusSlave_recv() +I (72703) modbus: ModbusSlaveProcess()--------------------------- +I (72703) modbus: check id... +I (72703) modbus: ok +I (72703) modbus: add: 0, length: 10 +I (72703) modbus: Read Holding Registers +I (72833) modbus tcp: ModBusSlave_recv() +I (72833) modbus: ModbusSlaveProcess()--------------------------- +I (72833) modbus: check id... +I (72833) modbus: ok +I (72833) modbus: add: 0, length: 10 +I (72833) modbus: Read Holding Registers +I (72943) modbus tcp: ModBusSlave_recv() +I (72943) modbus: ModbusSlaveProcess()--------------------------- +I (72943) modbus: check id... +I (72943) modbus: ok +I (72943) modbus: add: 0, length: 10 +I (72943) modbus: Read Holding Registers +I (73053) modbus tcp: ModBusSlave_recv() +I (73053) modbus: ModbusSlaveProcess()--------------------------- +I (73053) modbus: check id... +I (73053) modbus: ok +I (73053) modbus: add: 0, length: 10 +I (73053) modbus: Read Holding Registers +I (73203) modbus tcp: ModBusSlave_recv() +I (73203) modbus: ModbusSlaveProcess()--------------------------- +I (73203) modbus: check id... +I (73203) modbus: ok +I (73203) modbus: add: 0, length: 10 +I (73203) modbus: Read Holding Registers +I (73283) modbus tcp: ModBusSlave_recv() +I (73283) modbus: ModbusSlaveProcess()--------------------------- +I (73283) modbus: check id... +I (73283) modbus: ok +I (73283) modbus: add: 0, length: 10 +I (73283) modbus: Read Holding Registers +I (73393) modbus tcp: ModBusSlave_recv() +I (73393) modbus: ModbusSlaveProcess()--------------------------- +I (73393) modbus: check id... +I (73393) modbus: ok +I (73393) modbus: add: 0, length: 10 +I (73393) modbus: Read Holding Registers +I (73633) example: cur_pulse_count:-359 +I (73633) modbus tcp: ModBusSlave_recv() +I (73633) modbus: ModbusSlaveProcess()--------------------------- +I (73633) modbus: check id... +I (73633) modbus: ok +I (73633) modbus: add: 0, length: 10 +I (73633) modbus: Read Holding Registers +I (73773) modbus tcp: ModBusSlave_recv() +I (73773) modbus: ModbusSlaveProcess()--------------------------- +I (73773) modbus: check id... +I (73773) modbus: ok +I (73773) modbus: add: 0, length: 10 +I (73773) modbus: Read Holding Registers +I (73903) modbus tcp: ModBusSlave_recv() +I (73903) modbus: ModbusSlaveProcess()--------------------------- +I (73903) modbus: check id... +I (73903) modbus: ok +I (73903) modbus: add: 0, length: 10 +I (73903) modbus: Read Holding Registers +I (74003) modbus tcp: ModBusSlave_recv() +I (74003) modbus: ModbusSlaveProcess()--------------------------- +I (74003) modbus: check id... +I (74003) modbus: ok +I (74003) modbus: add: 0, length: 10 +I (74003) modbus: Read Holding Registers +I (74103) modbus tcp: ModBusSlave_recv() +I (74103) modbus: ModbusSlaveProcess()--------------------------- +I (74113) modbus: check id... +I (74113) modbus: ok +I (74113) modbus: add: 0, length: 10 +I (74113) modbus: Read Holding Registers +I (74323) modbus tcp: ModBusSlave_recv() +I (74323) modbus: ModbusSlaveProcess()--------------------------- +I (74323) modbus: check id... +I (74323) modbus: ok +I (74323) modbus: add: 0, length: 10 +I (74323) modbus: Read Holding Registers +I (74343) modbus tcp: ModBusSlave_recv() +I (74343) modbus: ModbusSlaveProcess()--------------------------- +I (74343) modbus: check id... +I (74343) modbus: ok +I (74343) modbus: add: 0, length: 10 +I (74343) modbus: Read Holding Registers +I (74533) modbus tcp: ModBusSlave_recv() +I (74533) modbus: ModbusSlaveProcess()--------------------------- +I (74533) modbus: check id... +I (74533) modbus: ok +I (74533) modbus: add: 0, length: 10 +I (74533) modbus: Read Holding Registers +I (74563) modbus tcp: ModBusSlave_recv() +I (74563) modbus: ModbusSlaveProcess()--------------------------- +I (74563) modbus: check id... +I (74563) modbus: ok +I (74563) modbus: add: 0, length: 10 +I (74563) modbus: Read Holding Registers +I (74633) example: cur_pulse_count:-359 +I (74673) modbus tcp: ModBusSlave_recv() +I (74673) modbus: ModbusSlaveProcess()--------------------------- +I (74673) modbus: check id... +I (74673) modbus: ok +I (74673) modbus: add: 0, length: 10 +I (74673) modbus: Read Holding Registers +I (74783) modbus tcp: ModBusSlave_recv() +I (74783) modbus: ModbusSlaveProcess()--------------------------- +I (74783) modbus: check id... +I (74783) modbus: ok +I (74783) modbus: add: 0, length: 10 +I (74783) modbus: Read Holding Registers +I (74973) modbus tcp: ModBusSlave_recv() +I (74973) modbus: ModbusSlaveProcess()--------------------------- +I (74973) modbus: check id... +I (74973) modbus: ok +I (74973) modbus: add: 0, length: 10 +I (74973) modbus: Read Holding Registers +I (75003) modbus tcp: ModBusSlave_recv() +I (75003) modbus: ModbusSlaveProcess()--------------------------- +I (75003) modbus: check id... +I (75003) modbus: ok +I (75003) modbus: add: 0, length: 10 +I (75003) modbus: Read Holding Registers +I (75113) modbus tcp: ModBusSlave_recv() +I (75113) modbus: ModbusSlaveProcess()--------------------------- +I (75113) modbus: check id... +I (75123) modbus: ok +I (75123) modbus: add: 0, length: 10 +I (75123) modbus: Read Holding Registers +I (75243) modbus tcp: ModBusSlave_recv() +I (75243) modbus: ModbusSlaveProcess()--------------------------- +I (75243) modbus: check id... +I (75243) modbus: ok +I (75243) modbus: add: 0, length: 10 +I (75243) modbus: Read Holding Registers +I (75343) modbus tcp: ModBusSlave_recv() +I (75353) modbus: ModbusSlaveProcess()--------------------------- +I (75353) modbus: check id... +I (75353) modbus: ok +I (75353) modbus: add: 0, length: 10 +I (75353) modbus: Read Holding Registers +I (75443) modbus tcp: ModBusSlave_recv() +I (75443) modbus: ModbusSlaveProcess()--------------------------- +I (75443) modbus: check id... +I (75443) modbus: ok +I (75443) modbus: add: 0, length: 10 +I (75443) modbus: Read Holding Registers +I (75563) modbus tcp: ModBusSlave_recv() +I (75563) modbus: ModbusSlaveProcess()--------------------------- +I (75563) modbus: check id... +I (75563) modbus: ok +I (75563) modbus: add: 0, length: 10 +I (75563) modbus: Read Holding Registers +I (75633) example: cur_pulse_count:-359 +I (75763) modbus tcp: ModBusSlave_recv() +I (75763) modbus: ModbusSlaveProcess()--------------------------- +I (75763) modbus: check id... +I (75763) modbus: ok +I (75763) modbus: add: 0, length: 10 +I (75763) modbus: Read Holding Registers +I (75793) modbus tcp: ModBusSlave_recv() +I (75793) modbus: ModbusSlaveProcess()--------------------------- +I (75793) modbus: check id... +I (75793) modbus: ok +I (75793) modbus: add: 0, length: 10 +I (75793) modbus: Read Holding Registers +I (75883) modbus tcp: ModBusSlave_recv() +I (75883) modbus: ModbusSlaveProcess()--------------------------- +I (75883) modbus: check id... +I (75883) modbus: ok +I (75883) modbus: add: 0, length: 10 +I (75883) modbus: Read Holding Registers +I (76003) modbus tcp: ModBusSlave_recv() +I (76003) modbus: ModbusSlaveProcess()--------------------------- +I (76003) modbus: check id... +I (76003) modbus: ok +I (76003) modbus: add: 0, length: 10 +I (76003) modbus: Read Holding Registers +I (76153) modbus tcp: ModBusSlave_recv() +I (76153) modbus: ModbusSlaveProcess()--------------------------- +I (76153) modbus: check id... +I (76153) modbus: ok +I (76153) modbus: add: 0, length: 10 +I (76153) modbus: Read Holding Registers +I (76253) modbus tcp: ModBusSlave_recv() +I (76253) modbus: ModbusSlaveProcess()--------------------------- +I (76253) modbus: check id... +I (76253) modbus: ok +I (76253) modbus: add: 0, length: 10 +I (76253) modbus: Read Holding Registers +I (76353) modbus tcp: ModBusSlave_recv() +I (76353) modbus: ModbusSlaveProcess()--------------------------- +I (76353) modbus: check id... +I (76353) modbus: ok +I (76353) modbus: add: 0, length: 10 +I (76363) modbus: Read Holding Registers +I (76493) modbus tcp: ModBusSlave_recv() +I (76493) modbus: ModbusSlaveProcess()--------------------------- +I (76493) modbus: check id... +I (76493) modbus: ok +I (76493) modbus: add: 0, length: 10 +I (76493) modbus: Read Holding Registers +I (76633) example: cur_pulse_count:-359 +I (76703) modbus tcp: ModBusSlave_recv() +I (76703) modbus: ModbusSlaveProcess()--------------------------- +I (76703) modbus: check id... +I (76703) modbus: ok +I (76713) modbus: add: 0, length: 10 +I (76713) modbus: Read Holding Registers +I (76733) modbus tcp: ModBusSlave_recv() +I (76743) modbus: ModbusSlaveProcess()--------------------------- +I (76743) modbus: check id... +I (76743) modbus: ok +I (76743) modbus: add: 0, length: 10 +I (76743) modbus: Read Holding Registers +I (76843) modbus tcp: ModBusSlave_recv() +I (76843) modbus: ModbusSlaveProcess()--------------------------- +I (76843) modbus: check id... +I (76843) modbus: ok +I (76843) modbus: add: 0, length: 10 +I (76843) modbus: Read Holding Registers diff --git a/build/log/idf_py_stdout_output_9128 b/build/log/idf_py_stdout_output_9128 new file mode 100644 index 0000000..239ccd2 --- /dev/null +++ b/build/log/idf_py_stdout_output_9128 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2c00 bytes. Smallest app partition is 0x100000 bytes. 0x4d400 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM6 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM6 + +A fatal error occurred: Could not open COM6, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/log/idf_py_stdout_output_9720 b/build/log/idf_py_stdout_output_9720 new file mode 100644 index 0000000..dde0d46 --- /dev/null +++ b/build/log/idf_py_stdout_output_9720 @@ -0,0 +1,14 @@ +[1/5] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/wifi_station.bin" +wifi_station.bin binary size 0xb2b60 bytes. Smallest app partition is 0x100000 bytes. 0x4d4a0 bytes (30%) free. +[2/5] Performing build step for 'bootloader' +[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\ESP32S3_WHEEL\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.bin" +Bootloader binary size 0x4f90 bytes. 0x3070 bytes (38%) free. +[2/3] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +esptool esp32s3 -p COM5 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 wifi_station.bin 0x8000 partition_table/partition-table.bin +esptool.py v4.6.2 +Serial port COM5 + +A fatal error occurred: Could not open COM5, the port doesn't exist +FAILED: CMakeFiles/flash E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/CMakeFiles/flash +cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake" +ninja: build stopped: subcommand failed. diff --git a/build/partition-table-flash_args b/build/partition-table-flash_args new file mode 100644 index 0000000..703accc --- /dev/null +++ b/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x8000 partition_table/partition-table.bin diff --git a/build/partition_table/partition-table.bin b/build/partition_table/partition-table.bin new file mode 100644 index 0000000..b8fa03b 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..b58c510 --- /dev/null +++ b/build/project_description.json @@ -0,0 +1,1112 @@ +{ + "version": "1", + "project_name": "wifi_station", + "project_version": "v5.0.4-dirty", + "project_path": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL", + "idf_path": "E:/Espressif/frameworks/esp-idf-v5.0.4", + "build_dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build", + "config_file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/sdkconfig", + "config_defaults": "", + "bootloader_elf": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/bootloader/bootloader.elf", + "app_elf": "wifi_station.elf", + "app_bin": "wifi_station.bin", + "git_revision": "v5.0.4-dirty", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "E:/Espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/Kconfig;E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/Kconfig.projbuild;E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/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_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_hid", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_hw_support", "esp_lcd", "esp_local_ctrl", "esp_netif", "esp_partition", "esp_phy", "esp_pm", "esp_psram", "esp_ringbuf", "esp_rom", "esp_system", "esp_timer", "esp_wifi", "espcoredump", "esptool_py", "fatfs", "freertos", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "log", "lwip", "main", "mbedtls", "mqtt", "newlib", "nvs_flash", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "touch_element", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/idf_test", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/json", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa", "" ], + "build_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace", + "type": "LIBRARY", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_trace/libapp_trace.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/app_trace.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/app_trace_util.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/host_file_io.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/gcov/gcov_rtio.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_trace/port/port_uart.c" ], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update", + "type": "LIBRARY", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/app_update/libapp_update.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/esp_ota_ops.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/app_update/esp_ota_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_common_loader.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_clock_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_mem.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_random_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/esp_image_format.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_encrypt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/secure_boot.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/flash_partitions.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/bootloader_efuse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bootloader_support/src/idf/bootloader_sha.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/bt", + "type": "CONFIG_ONLY", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "mbedtls", "driver", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock", + "type": "LIBRARY", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cmock/libcmock.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cmock/CMock/src/cmock.c" ], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console", + "type": "LIBRARY", + "lib": "__idf_console", + "reqs": [ "vfs" ], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/console/libconsole.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/commands.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/esp_console_repl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/split_argv.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/linenoise/linenoise.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_cmd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_date.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_dbl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_dstr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_end.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_file.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_hashtable.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_int.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_lit.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_rem.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_rex.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_str.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/arg_utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/console/argtable3/argtable3.c" ], + "include_dirs": [ "." ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/cxx/libcxx.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/cxx_exception_stubs.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/cxx/cxx_guards.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support" ], + "priv_reqs": [ "efuse", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/driver/libdriver.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/gpio.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/rtc_io.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gptimer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/ledc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_crc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_host.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdspi_transaction.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_master.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_slave.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_bus_lock.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/uart.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/timer_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/adc_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/adc_dma_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_cap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_cmpr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_com.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_fault.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_gen.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_oper.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_sync.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/mcpwm/mcpwm_timer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/mcpwm_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/gpio/dedic_gpio.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/sigma_delta_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_encoder.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_rx.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/rmt/rmt_tx.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/rmt_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/pulse_cnt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/pcnt_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdmmc_transaction.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/sdmmc_host.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_std.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/i2s_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_pdm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/i2s/i2s_tdm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/temperature_sensor.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/deprecated/rtc_temperature_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/twai.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/usb_serial_jtag.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/spi_slave_hd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/touch_sensor_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/driver/esp32s3/touch_sensor.c" ], + "include_dirs": [ "include", "deprecated", "esp32s3/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/efuse/libefuse.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_table.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_fields.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/esp32s3/esp_efuse_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_api.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_fields.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/esp_efuse_utility.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls", + "type": "LIBRARY", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "lwip", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp-tls/libesp-tls.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls_error_capture.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp-tls/esp_tls_mbedtls.c" ], + "include_dirs": [ ".", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_cali.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_cali_curve_fitting.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_oneshot.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/adc_continuous.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_adc/esp32s3/curve_fitting_coefficients.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_app_format/esp_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth", + "type": "LIBRARY", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "driver", "log", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_eth/libesp_eth.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/src/esp_eth.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_eth/src/esp_eth_phy_802_3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event", + "type": "LIBRARY", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_event/libesp_event.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/default_event_loop.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/esp_event.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_event/esp_event_private.c" ], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub", + "type": "LIBRARY", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/src/gdbstub.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/src/packet.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/gdbstub_xtensa.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/gdbstub-entry.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/xtensa/xt_debugexception.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_gdbstub/esp_common/gdbstub_common.c" ], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid", + "type": "LIBRARY", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hid/libesp_hid.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/src/esp_hidd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hid/src/esp_hidh.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client", + "type": "LIBRARY", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_client/libesp_http_client.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/esp_http_client.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/http_auth.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_client/lib/http_header.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server", + "type": "LIBRARY", + "lib": "__idf_esp_http_server", + "reqs": [ "esp_event", "http_parser" ], + "priv_reqs": [ "lwip", "mbedtls", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_http_server/libesp_http_server.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_main.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_parse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_sess.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_txrx.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_uri.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_http_server/src/httpd_ws.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_ota", + "type": "LIBRARY", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_https_ota/libesp_https_ota.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_https_server", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/cpu.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_memory_utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_clk.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/clk_ctrl_os.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/hw_random.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/intr_alloc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/mac_addr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/periph_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/revision.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/rtc_module.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_modes.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_gpio.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_mac_bb.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/regi2c_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sar_periph_ctrl_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/adc_share_hw_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_retention.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/gdma.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/async_memcpy_impl_gdma.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/esp_async_memcpy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/systimer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/sleep_wake_stub.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_pm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/rtc_time.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/chip_info.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_hmac.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_ds.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_crypto_lock.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp32s3/esp_memprot.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_hw_support/port/esp_memprot_conv.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_lcd", + "reqs": [], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_lcd/libesp_lcd.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_i2c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_spi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_nt35510.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_st7789.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_ops.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_io_i80.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_lcd/src/esp_lcd_panel_rgb.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl", + "type": "LIBRARY", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif", + "type": "LIBRARY", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_netif/libesp_netif.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_handlers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_objects.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/esp_netif_defaults.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/esp_netif_lwip.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/wlanif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/ethernetif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_netif/lwip/netif/esp_pbuf_ref.c" ], + "include_dirs": [ "include" ] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "bootloader_support", "spi_flash", "app_update", "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/partition.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_partition/partition_target.c" ], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy", + "type": "LIBRARY", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_phy/libesp_phy.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/phy_override.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/lib_printf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/src/phy_init.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "driver", "esp_timer", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_locks.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_trace.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_pm/pm_impl.c" ], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_psram", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "efuse", "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_ringbuf/ringbuf.c" ], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_crc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_sys.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_uart.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_spiflash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_regi2c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_efuse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_longjmp.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_systimer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_rom/patches/esp_rom_mmap.c" ], + "include_dirs": [ "include", "include/esp32s3", "esp32s3" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "pthread", "bootloader_support", "efuse", "driver", "esp_partition" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_err.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/crosscore_int.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_ipc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/freertos_hooks.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/int_wdt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/panic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/esp_system.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/startup.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/system_time.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/stack_check.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/ubsan.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/xt_wdt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/debug_stubs.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/task_wdt/task_wdt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/cpu_start.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/panic_handler.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/brownout.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/highint_hdl.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/clk.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/reset_reason.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/system_internal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/cache_err_int.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/soc/esp32s3/apb_backup_dma.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/panic_arch.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/panic_handler_asm.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/expression_with_stack.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_helpers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_helpers_asm.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/debug_stubs.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/trax.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [ "esp_common" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/ets_timer_legacy.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/system_time.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer_impl_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_timer/src/esp_timer_impl_systimer.c" ], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi", + "type": "LIBRARY", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/esp_wifi/libesp_wifi.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/coexist.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/mesh_event.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/smartconfig.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/smartconfig_ack.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_default.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_netif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/src/wifi_default_ap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/esp32s3/esp_adapter.c" ], + "include_dirs": [ "include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump", + "type": "LIBRARY", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/espcoredump/libespcoredump.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_checksum.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_flash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_uart.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_elf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/espcoredump/src/core_dump_binary.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs", + "type": "LIBRARY", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc" ], + "priv_reqs": [ "vfs", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/fatfs/libfatfs.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_rawflash.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_sdmmc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/diskio/diskio_wl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src/ff.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/port/freertos/ffsystem.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/src/ffunicode.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat_sdmmc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/fatfs/vfs/vfs_fat_spiflash.c" ], + "include_dirs": [ "diskio", "vfs", "src" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [ "soc", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/freertos/libfreertos.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vector_defaults.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/port_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/portable/port_systick.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/croutine.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/event_groups.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/list.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/queue.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/tasks.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/timers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/app_startup.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-openocd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/esp_additions/freertos_v8_compat.c" ], + "include_dirs": [ "FreeRTOS-Kernel/include", "esp_additions/include/freertos", "FreeRTOS-Kernel/portable/xtensa/include", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/hal/libhal.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mpu_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/efuse_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/efuse_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mmu_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/cache_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/rtc_io_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/timer_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/timer_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ledc_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ledc_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2c_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2c_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/gpio_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/uart_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/uart_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_encrypt_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sha_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_hal_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_oneshot_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/systimer_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/rmt_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/pcnt_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/mcpwm_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/twai_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/twai_hal_iram.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/gdma_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/i2s_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/sdm_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/adc_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/lcd_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/ds_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_flash_hal_gpspi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/spi_slave_hd_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/touch_sensor_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_phy_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/xt_wdt_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/aes_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/brownout_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/hmac_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/touch_sensor_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/esp32s3/rtc_cntl_hal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/hal/usb_dwc_hal.c" ], + "include_dirs": [ "esp32s3/include", "include", "platform_port/include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/heap/libheap.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/heap_caps.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/heap_caps_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/multi_heap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/tlsf/tlsf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/port/memory_layout_utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/heap/port/esp32s3/memory_layout.c" ], + "include_dirs": [ "include" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser", + "type": "LIBRARY", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/http_parser/libhttp_parser.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/http_parser/http_parser.c" ], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ieee802154", + "type": "CONFIG_ONLY", + "lib": "__idf_ieee802154", + "reqs": [ "esp_phy" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/json", + "type": "LIBRARY", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/json/libjson.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/cJSON.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/json/cJSON/cJSON_Utils.c" ], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/log/liblog.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_buffers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/log/log_freertos.c" ], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip", + "type": "LIBRARY", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/lwip/liblwip.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/sntp/sntp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/api_lib.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/api_msg.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/err.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/if_api.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netbuf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netdb.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/netifapi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/sockets.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/api/tcpip.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/apps/sntp/sntp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/def.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/dns.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/inet_chksum.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ip.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/mem.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/memp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/netif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/pbuf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/raw.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/stats.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/sys.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp_in.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/tcp_out.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/timeouts.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/udp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/autoip.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/dhcp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/etharp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/icmp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/igmp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/dhcp6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ethip6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/icmp6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/inet6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/mld6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/core/ipv6/nd6.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ethernet.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/bridgeif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/bridgeif_fdb.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/slipif.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/auth.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ccp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap-md5.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap-new.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/chap_ms.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/demand.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/eap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ecp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/eui64.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/fsm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ipcp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/lcp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/magic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/mppe.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/multilink.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/ppp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppapi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppoe.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/pppos.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/upap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/lwip/src/netif/ppp/vj.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/hooks/tcp_isn_default.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/hooks/lwip_default_hooks.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/debug/lwip_debug.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/freertos/sys_arch.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/sockets_ext.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/port/esp32/vfs_lwip.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/esp_ping.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/ping.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/ping/ping_sock.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/lwip/apps/dhcpserver/dhcpserver.c" ], + "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/esp32/include", "port/esp32/include/arch" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/main/libmain.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/can_network.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/mcpwm_bdc_control.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/station_example_main.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/modbus-tcp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/ModbusS.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/pid_ctrl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/bdc_motor.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/bdc_motor_interface.h", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/main/bdc_motor_mcpwm_impl.c" ], + "include_dirs": [ "." ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls", + "type": "LIBRARY", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt", + "type": "LIBRARY", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mqtt/libmqtt.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/mqtt_client.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/mqtt_msg.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" ], + "include_dirs": [ "esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib", + "type": "LIBRARY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/newlib/libnewlib.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/abort.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/assert.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/heap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/locks.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/poll.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/pthread.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/random.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/reent_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/newlib_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/syscalls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/termios.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/stdatomic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/time.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/sysconf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/realpath.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/newlib/port/esp_time_impl.c" ], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash", + "type": "LIBRARY", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/nvs_flash/libnvs_flash.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_api.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_cxx_api.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_item_hash_list.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_page.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_pagemanager.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_storage.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_handle_simple.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_handle_locked.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition_lookup.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_partition_manager.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/nvs_flash/src/nvs_types.cpp" ], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/openthread", + "type": "CONFIG_ONLY", + "lib": "__idf_openthread", + "reqs": [ "esp_event", "mbedtls", "ieee802154", "console", "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon", + "type": "LIBRARY", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/perfmon/libperfmon.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_access.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_apis.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/perfmon/xtensa_perfmon_masks.c" ], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c", + "type": "LIBRARY", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protobuf-c/libprotobuf-c.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" ], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm", + "type": "LIBRARY", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/protocomm/libprotocomm.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/common/protocomm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/constants.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec0.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec1.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/sec2.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/proto-c/session.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/transports/protocomm_console.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/transports/protocomm_httpd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security0.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security1.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/security/security2.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/esp_srp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c" ], + "include_dirs": [ "include/common", "include/security", "include/transports" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/pthread/libpthread.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_cond_var.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_local_storage.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/pthread/pthread_rwlock.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [ "driver" ], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_cmd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_io.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_mmc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/sdmmc/sdmmc_sd.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/soc/libsoc.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/lldesc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/dport_access_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/adc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/dedic_gpio_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gdma_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/gpio_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdm_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2c_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/i2s_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/interrupts.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/lcd_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/ledc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/mcpwm_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/pcnt_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rmt_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/rtc_io_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdio_slave_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/sdmmc_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/spi_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/timer_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/touch_sensor_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/temperature_sensor_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/uart_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_periph.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/soc/esp32s3/usb_otg_periph.c" ], + "include_dirs": [ "include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_brownout_hook.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp32s3/spi_timing_config.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_timing_tuning.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_hpm_enable.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_drivers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_generic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_issi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_mxic.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_gd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_winbond.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_boya.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_mxic_opi.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_chip_th.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/memspi_host_driver.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/cache_utils.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_mmap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/flash_ops.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp32s3/flash_ops_esp32s3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp_flash_api.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/esp_flash_spi_init.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_os_func_app.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spi_flash/spi_flash_os_func_noos.c" ], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs", + "type": "LIBRARY", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/spiffs/libspiffs.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs_api.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_cache.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_check.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_gc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_hydrogen.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/spiffs/src/spiffs_nucleus.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/spiffs/esp_spiffs.c" ], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport", + "type": "LIBRARY", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/tcp_transport/libtcp_transport.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_ssl.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_internal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/tcp_transport/transport_ws.c" ], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element", + "type": "LIBRARY", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/touch_element/libtouch_element.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_element.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_button.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_slider.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/touch_element/touch_matrix.c" ], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp", + "type": "LIBRARY", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/ulp/libulp.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/ulp/ulp_common/ulp_common.c" ], + "include_dirs": [ "ulp_common/include", "ulp_common/include/esp32s3" ] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity", + "type": "LIBRARY", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/unity/libunity.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity/src/unity.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_runner.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_freertos.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_cache.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_utils_memory.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/unity_port_esp32.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/unity/port/esp/unity_utils_memory_esp.c" ], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb", + "type": "LIBRARY", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/usb/libusb.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/hcd_dwc.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/hub.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_helpers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_host.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_private.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usbh.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/usb/usb_phy.c" ], + "include_dirs": [ "include" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs", + "type": "LIBRARY", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/vfs/libvfs.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_eventfd.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_uart.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_semihost.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_console.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/vfs/vfs_usb_serial_jtag.c" ], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling", + "type": "LIBRARY", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wear_levelling/libwear_levelling.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/Partition.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/SPI_Flash.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Ext_Perf.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Ext_Safe.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/WL_Flash.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/crc32.cpp", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wear_levelling/wear_levelling.cpp" ], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wifi_provisioning/libwifi_provisioning.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/wifi_config.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/wifi_scan.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/manager.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/handlers.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/scheme_console.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wifi_provisioning/src/scheme_softap.c" ], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant", + "type": "LIBRARY", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/os_xtensa.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/port/eloop.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/ap_config.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/ieee802_1x.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/wpa_auth.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/ap/sta_info.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/sae.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/dragonfly.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/wpa_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/bitfield.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-siv.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-kdf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/ccmp.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-gcm.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/crypto_ops.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/dh_group5.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/dh_groups.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/ms_funcs.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha256-prf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-prf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha384-prf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/md4-internal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/sha1-tprf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/common/ieee802_11_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/chap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_peap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_tls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/mschapv2.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_fast.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/wpa.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/base64.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/ext_password.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/uuid.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/wpabuf.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/wpa_debug.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/utils/json.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_build.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_parse.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_attr_process.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_dev_attr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/wps/wps_enrollee.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpa2.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/rc4.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/des-internal.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-omac1.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-wrap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/wpa_supplicant/src/crypto/aes-unwrap.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/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": "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/xtensa/libxtensa.a", + "sources": [ "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/eri.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xt_trax.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xtensa_intr.c", "E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/xtensa_intr_asm.S" ], + "include_dirs": [ "include", "esp32s3/include" ] + } + }, + "debug_prefix_map_gdbinit": "" +} 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/wifi_station.bin b/build/wifi_station.bin new file mode 100644 index 0000000..81b3bf8 Binary files /dev/null and b/build/wifi_station.bin differ diff --git a/build/wifi_station.elf b/build/wifi_station.elf new file mode 100644 index 0000000..30d5d1a Binary files /dev/null and b/build/wifi_station.elf differ diff --git a/build/wifi_station.map b/build/wifi_station.map new file mode 100644 index 0000000..26490e0 --- /dev/null +++ b/build/wifi_station.map @@ -0,0 +1,86504 @@ +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/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_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_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) (pthread_cond_init) +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(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_clk_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_err_int_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(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(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_restart_noos_dig) +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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_brownout_init) +esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (esp_reset_reason_set_hint) +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(apb_backup_dma.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_apb_backup_dma_lock_init) +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_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) (esp_ipc_isr_end_fl) +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(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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_str) +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/esp_system/libesp_system.a(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_disable) +esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (brownout_hal_config) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (esp_cpu_stall) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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(clk.c.obj) (periph_module_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (rtc_isr_register) +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(regi2c_ctrl.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) (regi2c_ctrl_write_reg_mask) +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/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) (xPortInIsrContext) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_dispatch) +esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (xQueueGetMutexHolder) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (pxCurrentTCB) +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(FreeRTOS-openocd.c.obj) + (uxTopUsedPriority) +esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (xt_debugexception) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (xPortCheckValidTCBMem) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (abort) +esp-idf/newlib/libnewlib.a(assert.c.obj) + (__assert_func) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (_lock_init_recursive) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (newlib_include_pthread_impl) +esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_newlib_init) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_kill_r) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_gettimeofday_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/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +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_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_timer_early_init) +esp-idf/esp_timer/libesp_timer.a(system_time.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(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_min_period_us) +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_get_time) +esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + (include_esp_phy_override) +esp-idf/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_console.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_vfs_console_register) +esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) (esp_vfs_usb_serial_jtag_get_vfs) +esp-idf/main/libmain.a(station_example_main.c.obj) + (app_main) +esp-idf/main/libmain.a(modbus-tcp.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (ModBusTCPSlave_init) +esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) (ModbusSlaveProcess) +esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (bdc_motor_init_all) +esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) (pid_compute) +esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) (bdc_motor_enable) +esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) (bdc_motor_new_mcpwm_device) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_int_has_handler) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (_xt_interrupt_table) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (ESP_EFUSE_DIG_DBIAS_HVT) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (gpio_sleep_set_direction) +esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (rtc_gpio_force_hold_en_all) +esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) (mcpwm_new_comparator) +esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) (mcpwm_new_generator) +esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) (mcpwm_new_operator) +esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) (mcpwm_new_timer) +esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) (pcnt_new_unit) +esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) (usb_serial_jtag_read_bytes) +esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) (mcpwm_acquire_group_handle) +esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) (esp_pm_lock_delete) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (bootloader_flash_reset_chip) +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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_encryption_enabled) +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/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (spi_flash_needs_reset_check) +esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (spi_timing_flash_tuning) +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_cache) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_erase_region) +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_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_timing_config.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) (spi_timing_config_get_core_clock) +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_api.c.obj) (esp_flash_registered_chips) +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(port_systick.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_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_ipc_call) +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_xtensa) +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/freertos/libfreertos.a(xtensa_vectors.S.obj) (_xt_panic) +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/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) (Cache_Get_IROM_MMU_End) +esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (mpu_hal_set_region_access) +esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +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(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_hal_init) +esp-idf/hal/libhal.a(pcnt_hal.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) (pcnt_hal_init) +esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) (mcpwm_hal_init) +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/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) (mcpwm_periph_signals) +esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) (pcnt_periph_signals) +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/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/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_ptr_byte_accessible) +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(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/main/libmain.a(station_example_main.c.obj) (xEventGroupCreate) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_event_handler_instance_register) +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/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (nvs_flash_init) +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::get_partition_name() const) +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_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::HashList::~HashList()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char)) +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_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_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (nvs::Item::calculateCrc32() const) +esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) (mem_malloc) +esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) (pbuf_free) +esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) (tcp_active_pcbs) +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/main/libmain.a(modbus-tcp.c.obj) (tcp_write) +esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_timer_needed) +esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) (dhcp_coarse_tmr) +esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) (etharp_tmr) +esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (ip4_route_src) +esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.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(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (ip6_route) +esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (ip6_addr_any) +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(ip6.c.obj) (mld6_lookfor_group) +esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) (nd6_tmr) +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(ip4.c.obj) (ip4_route_src_hook) +esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) (sys_now) +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(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) (lwip_close) +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(tcp_in.c.obj) (lwip_htons) +esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) (dns_setserver) +esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) (ip6_chksum_pseudo) +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(dns.c.obj) (ipaddr_aton) +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(ip4.c.obj) (netif_default) +esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (raw_input) +esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) +esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (icmp_input) +esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) +esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (icmp6_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(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/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (IP_EVENT) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_netif_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (g_wifi_default_wpa_crypto_funcs) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha1_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha1_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (rc4_skip) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_wrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_unwrap) +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(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(station_example_main.c.obj) (esp_wifi_init) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(station_example_main.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(station_example_main.c.obj) (g_wifi_osi_funcs) +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_supported) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.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(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(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_pkcs5_pbkdf2_hmac_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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(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_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/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.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(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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_hardware_words) +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/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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(pkcs5.c.obj) (mbedtls_asn1_get_tag) +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(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) (mbedtls_oid_get_cipher_alg) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (esp_aes_dma_start) +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_crypto_shared_gdma_start) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_write_digest_state) +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) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_wifi_init_internal) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (g_ic) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (wifi_log) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_getmgtframe) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (ftm_is_initiator_supported) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (wifi_softap_cur_max_ap_bss_num) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_ht_attach) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (ieee80211_add_ie_vendor_esp_head) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (ieee80211_decap) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (current_task_is_wifi_task) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (esp_mesh_quick_funcs) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (g_wifi_nvs) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (ieee80211_reg_netstack_buf_cb) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_phy_deinit) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) (ieee80211_get_chan_info) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_get_country) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_scan_attach) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (ieee80211_sta_new_state) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) (wifi_sta_get_prof_password) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) (ieee80211_register_ftm_timer) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (chm_deinit) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (g_cnxMgr) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (offchan_in_progress) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) (ieee80211_send_action_register) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (get_iav_key) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (ccmp) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (gcmp) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (sms4) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (tkip) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) (wep) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (esf_buf_setup_for_mesh) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) (ic_get_addr) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (lmacIsIdle) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (g_pm) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) (fpm_allow_tx) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (pp_register_net80211_tx_cb) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (wifi_gpio_debug) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) (pp_timer_do_process) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (RC_SetBasicRate) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (wDev_ftm_set_t1t4) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (hal_set_rx_beacon_pti) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_crypto_clr_key_entry) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_mac_rx_get_last_dscr) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) (mac_tx_set_plcp1) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (hal_sniffer_enable) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) (hal_enable_sta_tsf) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) (xRingbufferCreate) +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/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) +esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (spi_bus_init_lock) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) (bootloader_read_status_8b_rdsr3) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_find_first) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) (esp_partition_write) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_ota_get_running_partition) +esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_wait_idle) +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/soc/libsoc.a(lldesc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (lldesc_setup_link_constrained) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (esp_random) +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_read_mac) +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_new_channel) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (esp_crypto_sha_aes_lock_acquire) +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_setfn) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) (pp_printf) +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/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_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(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (ap_free_sta) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_clear_data) +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(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) (wpa_parse_wpa_ie_rsn) +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(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (gWpaSm) +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_wpa3.c.obj) (wpabuf_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (wpa2_get_eap_state) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) (wpa_alloc_eapol) +esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) (tls_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (crypto_bignum_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) (eap_peer_get_eap_method) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_msg_alloc) +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(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (pmksa_cache_flush) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (wpa_snprintf_hex) +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/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) (mbedtls_ssl_write) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) (mbedtls_ssl_tls_prf) +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(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_ciphersuite_from_id) +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(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_ecdh_gen_public) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_ecdsa_sign) +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_name) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_entropy_free) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) (mbedtls_hash_info_get_size) +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(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_parse_subpubkey) +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) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) (psa_destroy_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.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_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_init) +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_driver_wrappers.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_driver_wrappers.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_load_representation) +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(pk.c.obj) (psa_status_to_mbedtls) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_rsa_import) +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(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +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) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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_mac.c.obj) (mbedtls_cipher_info_from_psa) +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/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) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) (coex_enable) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) (coex_core_pti_set) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) (coex_hw_timer_set) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) (g_coex_param) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) (coex_schm_env) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) (g_misc_nvs) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (mesh_malloc) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (g_mesh_max_layer) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_nvs_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (mesh_set_io_process) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_delivery_toSelf) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) (esp_mesh_channel_enable_jp) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (g_is_wifi_connected) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_route_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) (esp_mesh_send_block_start) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) (mesh_topo_get_ttl) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_wpa2.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/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_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(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_verify) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(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_random_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_init) +esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_init) +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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) (esp_mesh_send_event_internal) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +E:/Espressif/frameworks/esp-idf-v5.0.4/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) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_save_extra_nw) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (operator delete[](void*, unsigned int)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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&)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) (__cxa_allocate_exception) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) (__cxa_throw) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (__divsf3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (__floatundisf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__subdf3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__muldf3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__divdf3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__fixdfsi) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__floatsidf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) (__extendsfdf2) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (__ffsdi2) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) (__wrap__Unwind_Resume) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_wakeup_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/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) +E:/Espressif/frameworks/esp-idf-v5.0.4/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) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) (get_rf_freq_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) (g_phyFuns) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (set_pbus_mem) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_read_sar2_code) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (rx_11b_opt) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_pll_vol_cal) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) (wr_rx_gain_mem) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (esp_recover_efuse_data) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_txpwr_cal_track) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_temp_to_power) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (txdc_cal_init) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) (ram_get_chan_target_power) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (rc_cal) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_i2c_master_reset) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) (ram_phy_i2c_init1) +E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) (pbus_rx_dco_cal) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (ceil) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (floor) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + esp-idf/lwip/liblwip.a(netif.c.obj) (atoi) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) (_ctype_) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) (__errno) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (fclose) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (ferror) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) (__sflush_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fgets) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (fopen) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fprintf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (fread) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) (_fseek_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) (_fseeko_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) (_ftello_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) (__sfvwrite_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) (_fwalk) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fwrite) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) (gmtime_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (_global_impure_ptr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) (__smakebuf_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) (memchr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (memcmp) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memcpy) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + esp-idf/lwip/liblwip.a(def.c.obj) (memmove) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (mktime) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__month_lengths) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (putchar) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) (__srefill_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (setbuf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) (setvbuf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (sprintf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) (__sread) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strchr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + esp-idf/log/liblog.a(log.c.obj) (strcmp) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (strdup) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) (_strdup_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + esp-idf/log/liblog.a(log.c.obj) (strlen) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strncpy) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) (strnlen) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strrchr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + esp-idf/lwip/liblwip.a(dns.c.obj) (strstr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) (_strtol_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) (_svfprintf_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (gettimeofday) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) (time) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__tz_lock) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (_timezone) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) (__utoa) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) (_vfprintf_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) (vsnprintf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (__swsetup_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) (div) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (_dtoa_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) (__sflags) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (_getenv_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__gettzinfo) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (_localeconv_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) (_Balloc) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) (_putc_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (frexp) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (siscanf) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) (_strerror_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (strtoul) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__chclass) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) (__ssvfiscanf_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) (_user_strerror) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (__submore) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) (__sprint_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) (__swbuf_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) (__env_lock) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (iswspace) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) (iswspace_l) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) (__global_locale_ptr) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_mbrtowc_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) (__ascii_mbtowc) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (__sccl) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_strtoll_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_strtoull_r) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) (__ascii_wctomb) +e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__eqdf2) + +Allocating common symbols +Common symbol size file + +phy_rxbb_dc 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_chan_dc 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rxrf_dc 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_version_str 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +chip7_phy_init_ctrl + 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_bbpll_i2c 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + +Discarded input sections + + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_line_str + 0x0000000000000000 0xda e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0x9c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .ctors 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj + .comment 0x0000000000000000 0x27 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj + .text 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.4.literal + 0x0000000000000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.5.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x0000000000000000 0x51 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x1ad esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x119 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0x82 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x0000000000000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x0000000000000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x0000000000000000 0x5b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x58 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.4 0x0000000000000000 0xfe esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.5 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x0000000000000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x0000000000000000 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x0000000000000000 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x0000000000000000 0x3c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x0000000000000000 0x21 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x0000000000000000 0x64 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x0000000000000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x0000000000000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.4 + 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x0000000000000000 0x84 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_cond_init + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x0000000000000000 0x7 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x0000000000000000 0x4a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x0000000000000000 0x3f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x0000000000000000 0x167 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x0000000000000000 0x4c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_include_pthread_cond_var_impl + 0x0000000000000000 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x0000000000000000 0xae2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x0000000000000000 0x2a0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x0000000000000000 0x496 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x0000000000000000 0x60 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x0000000000000000 0xc6c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x0000000000000000 0x677 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x0000000000000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler.str1.4 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x0000000000000000 0x1a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x17 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_idf_version + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_minimum_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x0000000000000000 0xd esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_idf_version + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_disable + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text.esp_brownout_disable + 0x0000000000000000 0x27 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .literal.esp_reset_reason + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text.esp_reset_reason + 0x0000000000000000 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .iram1.9.literal + 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.2.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.3.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.5.literal + 0x0000000000000000 0x38 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.8.literal + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.9 0x0000000000000000 0x71 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.2 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.3 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x0000000000000000 0x72 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x3f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.5 0x0000000000000000 0x8e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x0000000000000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.8 0x0000000000000000 0x52 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_isr_finish_cmd + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_ipc_isr_mux + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .iram1 0x0000000000000000 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x0000000000000000 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_str 0x0000000000000000 0xb2 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .literal.esp_register_freertos_idle_hook + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x0000000000000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x0000000000000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.1 0x0000000000000000 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.2 0x0000000000000000 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.0.literal + 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0 0x0000000000000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.Cache_Count_Flash_Pages + 0x0000000000000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_WriteBack_Addr + 0x0000000000000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_Count_Flash_Pages + 0x0000000000000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .text.Cache_WriteBack_Addr + 0x0000000000000000 0x9e esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .text 0x0000000000000000 0x56 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_line 0x0000000000000000 0x162 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_info 0x0000000000000000 0x23 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .debug_str 0x0000000000000000 0xb1 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .literal.efuse_hal_get_mac + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x0000000000000000 0x19 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x0000000000000000 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_rs_calculate + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x0000000000000000 0x61 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x0000000000000000 0x52 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x0000000000000000 0xb esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_program.str1.4 + 0x0000000000000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x0000000000000000 0x76 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_rs_calculate + 0x0000000000000000 0xf esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x0000000000000000 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.cache_hal_init + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .text.cache_hal_init + 0x0000000000000000 0x8a esp-idf/hal/libhal.a(cache_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.esp_log_set_vprintf + 0x0000000000000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_get + 0x0000000000000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x0000000000000000 0x1b esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_system_timestamp + 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.4 + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x0000000000000000 0xdb esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$1 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$2 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x0000000000000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x0000000000000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15.literal + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x0000000000000000 0x8b esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x0000000000000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x0000000000000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x3d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.4 + 0x0000000000000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15 0x0000000000000000 0x98 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x0000000000000000 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_check_add_region_allowed + 0x0000000000000000 0x53 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x0000000000000000 0xf6 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x0000000000000000 0x5e esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$3 + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x0000000000000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x0000000000000000 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_owner + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x0000000000000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.4 + 0x0000000000000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x0000000000000000 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x0000000000000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x72 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x0000000000000000 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x0000000000000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x0000000000000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_minimum_free_size_impl + 0x0000000000000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.tlsf_check + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x0000000000000000 0x44 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign_offs + 0x0000000000000000 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x0000000000000000 0x3a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x0000000000000000 0x123 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_align_size + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_block_size_min + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x0000000000000000 0x136 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x0000000000000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x0000000000000000 0x6b esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign_offs + 0x0000000000000000 0x695 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .literal.esp_cpu_set_watchpoint + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x0000000000000000 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x0000000000000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .iram1.3.literal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4.literal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.3.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.8.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.9.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x0000000000000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x0000000000000000 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.3 0x0000000000000000 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.8 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.9 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x0000000000000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x0000000000000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0.literal + 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x0000000000000000 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x0000000000000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x0000000000000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0 0x0000000000000000 0x1cc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.3.literal + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.10.literal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.11.literal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.3 0x0000000000000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.10 0x0000000000000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.11 0x0000000000000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x0000000000000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.9 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.2 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_divider_set + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x0000000000000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_divider_set + 0x0000000000000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_divider_set + 0x0000000000000000 0x57 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x0000000000000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x0000000000000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_sleep_finish + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x0000000000000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_finish + 0x0000000000000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_get_default_config.str1.4 + 0x0000000000000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x0000000000000000 0x1ba esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.rtc_sleep_init.str1.4 + 0x0000000000000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x0000000000000000 0x3c2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x0000000000000000 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x0000000000000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .dram1.0 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_light_slp_time_get + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_deep_slp_time_get + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_light_slp_time_get + 0x0000000000000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_deep_slp_time_get + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x0000000000000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x0000000000000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.esp_mprot_get_split_addr + 0x0000000000000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.0.literal + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.4.literal + 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.5.literal + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.6.literal + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.8.literal + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_dump_configuration + 0x0000000000000000 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_get_split_addr + 0x0000000000000000 0x386 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.0 0x0000000000000000 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.4 0x0000000000000000 0x10c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.5 0x0000000000000000 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.6 0x0000000000000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.7 0x0000000000000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .iram1.8 0x0000000000000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.esp_mprot_dump_configuration.str1.4 + 0x0000000000000000 0x316 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_dump_configuration + 0x0000000000000000 0x65e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_ll_world_to_hl_world + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_mprot_oper_type_to_str + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_mprot_pms_world_to_str + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_ll_world_to_hl_world + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .rodata.esp_mprot_oper_type_to_str.str1.4 + 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_oper_type_to_str + 0x0000000000000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .rodata.esp_mprot_pms_world_to_str.str1.4 + 0x0000000000000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .text.esp_mprot_pms_world_to_str + 0x0000000000000000 0x45 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.vPortEndScheduler + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x0000000000000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.4 + 0x0000000000000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x0000000000000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x0000000000000000 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolderFromISR.str1.4 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x4f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x0000000000000000 0x1af esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x0000000000000000 0xa0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x2b esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x39 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskIsTaskSuspended + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxGetNextTaskList + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestrictedStatic + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestricted + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x0000000000000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskAllocateMPURegions + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskDelayUntil + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskNotifyTake + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyWait + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyWait + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotify + 0x0000000000000000 0x64 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x0000000000000000 0x6c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetNext + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x0000000000000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxGetNextTaskList + 0x0000000000000000 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateRestrictedStatic.str1.4 + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestrictedStatic + 0x0000000000000000 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateRestricted.str1.4 + 0x0000000000000000 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestricted + 0x0000000000000000 0x71 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xea esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x0000000000000000 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0xed esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.4 + 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x0000000000000000 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandle.str1.4 + 0x0000000000000000 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x0000000000000000 0xf6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x5f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x0000000000000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskAllocateMPURegions + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskDelayUntil.str1.4 + 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x0000000000000000 0xb7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x0000000000000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskNotifyTake + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x0000000000000000 0x164 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotify + 0x0000000000000000 0x19e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x0000000000000000 0x1c7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.4 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x0000000000000000 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetNext + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0x63 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$29 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$30 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$31 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$34 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$40 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$41 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .literal.vApplicationGetTimerTaskMemory + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text.vApplicationGetTimerTaskMemory + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.__assert + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert + 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(assert.c.obj) + .literal.memalign + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.posix_memalign + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x0000000000000000 0x29 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x0000000000000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x0000000000000000 0x2f esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.3.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.3 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.4 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .literal.pthread_condattr_setclock + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x0000000000000000 0x43 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_condattr_setclock + 0x0000000000000000 0x22 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x0000000000000000 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x0000000000000000 0xd5 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .literal._write_r_console + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._read_r_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fstat_r_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.system + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.fcntl + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._write_r_console + 0x0000000000000000 0x2f esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fstat_r_console + 0x0000000000000000 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x0000000000000000 0xf5 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x0000000000000000 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0x91 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_time_impl_get_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x0000000000000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x0000000000000000 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0xc1 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.4 + 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0xa3 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0xc2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x0000000000000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.esp_err_to_name_r + 0x0000000000000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x0000000000000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x0000000000000000 0x56 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.print_timer_info + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.2.literal + 0x0000000000000000 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x0000000000000000 0x40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13.literal + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14.literal + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15.literal + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.16.literal + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.17.literal + 0x0000000000000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x0000000000000000 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x0000000000000000 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.2 0x0000000000000000 0xf1 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x45 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x0000000000000000 0xc9 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x0000000000000000 0x3f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14 0x0000000000000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15 0x0000000000000000 0x45 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.16 0x0000000000000000 0x55 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.17 0x0000000000000000 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .literal.esp_timer_impl_lock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x0000000000000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_set + 0x0000000000000000 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x0000000000000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.0 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.4 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_set + 0x0000000000000000 0x7f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x0000000000000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.set_xpd_sar + 0x0000000000000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.set_xpd_sar + 0x0000000000000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_adc_xpd_flag + 0x0000000000000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.set_global_fd_sets + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_with_id + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_with_id + 0x0000000000000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.call_end_selects + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fcntl_r + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ioctl + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fsync + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_opendir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rewinddir + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_closedir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_mkdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rmdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_access + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_truncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ftruncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select + 0x0000000000000000 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select_triggered + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select_triggered_isr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x0000000000000000 0x180 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x0000000000000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x0000000000000000 0x79 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x0000000000000000 0x50 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0x97 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x0000000000000000 0x15 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x0000000000000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.call_end_selects + 0x0000000000000000 0x31 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fcntl_r + 0x0000000000000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x0000000000000000 0x99 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x0000000000000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x0000000000000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x0000000000000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x0000000000000000 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x0000000000000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x0000000000000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x0000000000000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_access + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x0000000000000000 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x0000000000000000 0x5b4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select_triggered + 0x0000000000000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select_triggered_isr + 0x0000000000000000 0x48 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .literal.usbjtag_rx_char_via_driver + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.usbjtag_tx_char_via_driver + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.esp_vfs_dev_usb_serial_jtag_set_tx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.esp_vfs_dev_usb_serial_jtag_set_rx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.esp_vfs_dev_usb_serial_jtag_register + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.esp_vfs_usb_serial_jtag_use_nonblocking + 0x0000000000000000 0x24 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.esp_vfs_usb_serial_jtag_use_driver + 0x0000000000000000 0x24 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usbjtag_rx_char_via_driver + 0x0000000000000000 0x29 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usbjtag_tx_char_via_driver + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.esp_vfs_dev_usb_serial_jtag_set_tx_line_endings + 0x0000000000000000 0xa esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.esp_vfs_dev_usb_serial_jtag_set_rx_line_endings + 0x0000000000000000 0xa esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .rodata.esp_vfs_dev_usb_serial_jtag_register.str1.4 + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.esp_vfs_dev_usb_serial_jtag_register + 0x0000000000000000 0x15 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.esp_vfs_usb_serial_jtag_use_nonblocking + 0x0000000000000000 0x37 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.esp_vfs_usb_serial_jtag_use_driver + 0x0000000000000000 0x37 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .literal.isBitHI + 0x0000000000000000 0x4 esp-idf/main/libmain.a(ModbusS.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(ModbusS.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(ModbusS.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(ModbusS.c.obj) + .text.isBitHI 0x0000000000000000 0x20 esp-idf/main/libmain.a(ModbusS.c.obj) + .text.ModBusBitWriteHook + 0x0000000000000000 0x5 esp-idf/main/libmain.a(ModbusS.c.obj) + .text.ModBusWordWriteHook + 0x0000000000000000 0x5 esp-idf/main/libmain.a(ModbusS.c.obj) + .rodata.local 0x0000000000000000 0x1 esp-idf/main/libmain.a(ModbusS.c.obj) + .literal.bdc_control_main + 0x0000000000000000 0x190 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata.bdc_control_main.str1.4 + 0x0000000000000000 0x124 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata 0x0000000000000000 0x2c esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .text.bdc_control_main + 0x0000000000000000 0x40d esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .bss.motor_ctrl_ctx$0 + 0x0000000000000000 0x18 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x11 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .literal.pid_del_control_block + 0x0000000000000000 0x18 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .text.pid_del_control_block + 0x0000000000000000 0x3a esp-idf/main/libmain.a(pid_ctrl.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x16 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .literal.bdc_motor_disable + 0x0000000000000000 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .literal.bdc_motor_reverse + 0x0000000000000000 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .literal.bdc_motor_coast + 0x0000000000000000 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .literal.bdc_motor_brake + 0x0000000000000000 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .literal.bdc_motor_del + 0x0000000000000000 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text.bdc_motor_disable + 0x0000000000000000 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text.bdc_motor_reverse + 0x0000000000000000 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text.bdc_motor_coast + 0x0000000000000000 0x35 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text.bdc_motor_brake + 0x0000000000000000 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text.bdc_motor_del + 0x0000000000000000 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0xe esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x10 esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x10 esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x12 esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x12 esp-idf/main/libmain.a(bdc_motor.c.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .literal.xt_set_exception_handler + 0x0000000000000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x0000000000000000 0x46 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_INIT_CODE_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_TEMP_CALIB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_CAL_VOL_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK_VERSION_MINOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PKG_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_OTG_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FORCE_SEND_RESUME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_PAGE_SIZE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TYPE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_PIN_POWER_SELECTION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_PRINT_CONTROL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_ECC_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DIRECT_BOOT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_TPUW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_PHY_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_STRAP_JTAG_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_SERIAL_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_PURPOSE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WDT_DELAY_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VDD_SPI_XPD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BTLC_GPIO_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXT_PHY_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_USB_EXCHG_PINS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_HARD_DIS_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SOFT_DIS_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CAN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_USB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_DCACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_DCACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_GROUP_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY5 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY4 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY3 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY2 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY1 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY0 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_INIT_CODE_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.TEMP_CALIB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_CAL_VOL_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MINOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PKG_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BLK_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_WAFER_VERSION_MAJOR + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_OTG_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FORCE_SEND_RESUME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_PAGE_SIZE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TYPE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.PIN_POWER_SELECTION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_PRINT_CONTROL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_ECC_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG_ROM_PRINT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DIRECT_BOOT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_TPUW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_PHY_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.STRAP_JTAG_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_SERIAL_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_PURPOSE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WDT_DELAY_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VDD_SPI_XPD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BTLC_GPIO_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXT_PHY_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.USB_EXCHG_PINS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.HARD_DIS_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SOFT_DIS_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CAN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_USB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_DCACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_DCACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USB_EXCHG_PINS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_GROUP_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_read_field_bit + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x0000000000000000 0x59 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x0000000000000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x0000000000000000 0x9d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x0000000000000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x0000000000000000 0xdd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x0000000000000000 0xa2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_timing + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x0000000000000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.4 + 0x0000000000000000 0x23f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x0000000000000000 0x24e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x93 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x0000000000000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_block_is_empty + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_purpose_field + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_purpose + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_purpose + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_keypurpose_dis_write + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_unused_key_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_count_unused_key_blocks + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x0000000000000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_digest_revoke + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_digest_revoke + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_write_protect_of_digest_revoke + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect_of_digest_revoke + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_secure_boot_read_key_digests + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0x79 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_purpose_field + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x0000000000000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x0000000000000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x0000000000000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_purpose + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x0000000000000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x0000000000000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x0000000000000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_unused_key_block + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x0000000000000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_key.str1.4 + 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x0000000000000000 0x11b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x0000000000000000 0xed esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x0000000000000000 0x11f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.4 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_digest_revoke + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_digest_revoke + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.4 + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_secure_boot_read_key_digests + 0x0000000000000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_revoke_table + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x0000000000000000 0x268 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x0000000000000000 0x15fe esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x0000000000000000 0x33d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x0000000000000000 0xc7b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x0000000000000000 0x138 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x0000000000000000 0x1644 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x0000000000000000 0xffc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.gpio_sleep_input_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_input_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1.literal + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_level + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_direction + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.2.literal + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.3.literal + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x0000000000000000 0x7b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x0000000000000000 0x7b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x0000000000000000 0x7b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x0000000000000000 0x7b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1 0x0000000000000000 0x232 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x0000000000000000 0xe2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0x119 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_direction + 0x0000000000000000 0xad esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x0000000000000000 0x75 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x0000000000000000 0xe5 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xcd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x4e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0x81 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0xbe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x0000000000000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x0000000000000000 0x113 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x0000000000000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x0000000000000000 0x2f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x0000000000000000 0xb9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xbd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.2 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.3 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x93 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x0000000000000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x0000000000000000 0x11d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$8 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$10 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$12 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$13 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$15 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$17 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$19 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$20 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$21 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x0000000000000000 0xcc esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x0000000000000000 0xa1 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x0000000000000000 0x6d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x0000000000000000 0x11a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x0000000000000000 0xe3 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x0000000000000000 0x81 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .literal.mcpwm_comparator_register_event_callbacks + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .iram1.0 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .rodata.mcpwm_comparator_register_event_callbacks.str1.4 + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .text.mcpwm_comparator_register_event_callbacks + 0x0000000000000000 0x10d esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .literal.mcpwm_generator_set_action_on_timer_event + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .literal.mcpwm_generator_set_action_on_compare_event + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .literal.mcpwm_generator_set_action_on_brake_event + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .literal.mcpwm_generator_set_actions_on_brake_event + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .literal.mcpwm_generator_set_dead_time + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text.mcpwm_generator_set_action_on_timer_event + 0x0000000000000000 0x216 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.mcpwm_generator_set_action_on_compare_event.str1.4 + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text.mcpwm_generator_set_action_on_compare_event + 0x0000000000000000 0x12c esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.mcpwm_generator_set_action_on_brake_event.str1.4 + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text.mcpwm_generator_set_action_on_brake_event + 0x0000000000000000 0x184 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text.mcpwm_generator_set_actions_on_brake_event + 0x0000000000000000 0x1b1 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.mcpwm_generator_set_dead_time.str1.4 + 0x0000000000000000 0xda esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .text.mcpwm_generator_set_dead_time + 0x0000000000000000 0x370 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .literal.mcpwm_operator_apply_carrier + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .literal.mcpwm_operator_register_event_callbacks + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .literal.mcpwm_operator_set_brake_on_fault + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .literal.mcpwm_operator_recover_from_fault + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .iram1.0 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_operator_apply_carrier.str1.4 + 0x0000000000000000 0xa5 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .text.mcpwm_operator_apply_carrier + 0x0000000000000000 0x1b9 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_operator_register_event_callbacks.str1.4 + 0x0000000000000000 0x4e esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .text.mcpwm_operator_register_event_callbacks + 0x0000000000000000 0x14b esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_operator_set_brake_on_fault.str1.4 + 0x0000000000000000 0xce esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .text.mcpwm_operator_set_brake_on_fault + 0x0000000000000000 0x27d esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_operator_recover_from_fault.str1.4 + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .text.mcpwm_operator_recover_from_fault + 0x0000000000000000 0x112 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .literal.mcpwm_timer_register_event_callbacks + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .literal.mcpwm_timer_get_phase + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .literal.mcpwm_timer_set_phase_on_sync + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .iram1.0 0x0000000000000000 0x140 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.mcpwm_timer_register_event_callbacks.str1.4 + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .text.mcpwm_timer_register_event_callbacks + 0x0000000000000000 0x1b4 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .text.mcpwm_timer_get_phase + 0x0000000000000000 0x11a esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.mcpwm_timer_set_phase_on_sync.str1.4 + 0x0000000000000000 0x10c esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .text.mcpwm_timer_set_phase_on_sync + 0x0000000000000000 0x26b esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x25 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .literal.pcnt_del_unit + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .literal.pcnt_unit_disable + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .literal.pcnt_unit_stop + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .literal.pcnt_unit_remove_watch_point + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .literal.pcnt_del_channel + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_del_unit + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.pcnt_unit_disable.str1.4 + 0x0000000000000000 0xc1 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_unit_disable + 0x0000000000000000 0xd5 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_unit_stop + 0x0000000000000000 0xc2 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.pcnt_unit_remove_watch_point.str1.4 + 0x0000000000000000 0x3d esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_unit_remove_watch_point + 0x0000000000000000 0x148 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_del_channel + 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$14 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .literal.usb_serial_jtag_write_and_flush + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_isr_handler_default + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_read_bytes + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_write_bytes + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_driver_uninstall + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_driver_install + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_write_and_flush + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_isr_handler_default + 0x0000000000000000 0xd7 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_read_bytes + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_write_bytes.str1.4 + 0x0000000000000000 0xcb esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_write_bytes + 0x0000000000000000 0xab esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_uninstall.str1.4 + 0x0000000000000000 0x25 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_uninstall + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .rodata.usb_serial_jtag_driver_install.str1.4 + 0x0000000000000000 0x16c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text.usb_serial_jtag_driver_install + 0x0000000000000000 0x1fa esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .bss.p_usb_serial_jtag_obj + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_info 0x0000000000000000 0x5822 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_abbrev 0x0000000000000000 0x456 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_loc 0x0000000000000000 0x505 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_line 0x0000000000000000 0x134e esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .debug_str 0x0000000000000000 0x4128 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_wrap_set + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x0000000000000000 0x154 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x0000000000000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_wrap_set + 0x0000000000000000 0x154 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x0000000000000000 0xc9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.11 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.10 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x0000000000000000 0x8c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x0000000000000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x0000000000000000 0xd4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x0000000000000000 0x3ee esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x0000000000000000 0x231 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .iram1.0.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_timing_set_pin_drive_strength + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .rodata 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .text.spi_timing_set_pin_drive_strength + 0x0000000000000000 0x63 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .text.spi_timing_psram_tuning + 0x0000000000000000 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .iram1.5.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.6.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.11.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.12.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.esp_enable_cache_wrap + 0x0000000000000000 0x48 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.5 0x0000000000000000 0x2f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.6 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.11 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.12 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.4 + 0x0000000000000000 0x18b esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x0000000000000000 0x139 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.7.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9.literal + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.10.literal + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.7 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_mmap_dump.str1.4 + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x5b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9 0x0000000000000000 0x72 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.10 0x0000000000000000 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.esp_mspi_get_io + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.5 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.8 0x0000000000000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x0000000000000000 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text.esp_mspi_get_io + 0x0000000000000000 0x87 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x0000000000000000 0xb esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.3 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.8.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5.literal + 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.11.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.12.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.16.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.22.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.23.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x0000000000000000 0x84 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5 0x0000000000000000 0x15e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.11 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.12 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15 0x0000000000000000 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.16 0x0000000000000000 0xa4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x0000000000000000 0xd8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.22 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.23 0x0000000000000000 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x0000000000000000 0x93 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x0000000000000000 0x7a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.acquire_spi_device + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x0000000000000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x0000000000000000 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x0000000000000000 0xe2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x0000000000000000 0x16a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0x187 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0x85 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.6.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.4 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.6 0x0000000000000000 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .dram1.0 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .literal.s_get_cs_setup_enable + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .literal.s_get_cs_hold_enable + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .literal.spi_timing_config_get_cs_timing + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .literal.spi_timing_config_get_flash_clock_reg + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .text.s_get_cs_setup_enable + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .text.s_get_cs_hold_enable + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .text.spi_timing_config_get_cs_timing + 0x0000000000000000 0x4a esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .text.spi_timing_config_get_flash_clock_reg + 0x0000000000000000 0xd esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .literal.spi_flash_hpm_get_dummy + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .literal.spi_flash_hpm_dummy_adjust + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_get_dummy + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text.spi_flash_hpm_dummy_adjust + 0x0000000000000000 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .bss.dummy_conf + 0x0000000000000000 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal._esp_error_check_failed_without_abort + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.delete_entry + 0x0000000000000000 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x0000000000000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x0000000000000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x0000000000000000 0x11a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x0000000000000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x0000000000000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x0000000000000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x0000000000000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x0000000000000000 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0x4a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.4 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x0000000000000000 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x0000000000000000 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x0000000000000000 0xde esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x0000000000000000 0x9b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x0000000000000000 0x6c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x0000000000000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x0000000000000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x0000000000000000 0x51 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.4 + 0x0000000000000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x0000000000000000 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x0000000000000000 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .literal.esp_rom_efuse_get_opiconfig + 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .text.esp_rom_efuse_get_opiconfig + 0x0000000000000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_info 0x0000000000000000 0xed esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_abbrev 0x0000000000000000 0x78 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_loc 0x0000000000000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_line 0x0000000000000000 0x22d esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .debug_str 0x0000000000000000 0x231 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x0000000000000000 0xc esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x0000000000000000 0x25e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x0000000000000000 0xdf esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x160 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x0000000000000000 0x1c78 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x26d esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x0000000000000000 0x69c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x0000000000000000 0xcd4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x0000000000000000 0xf6d esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.systimer_hal_deinit + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .literal.systimer_hal_get_time + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .literal.systimer_hal_get_alarm_value + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_deinit + 0x0000000000000000 0x1b esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x0000000000000000 0x90 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x4736 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x1f2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_line 0x0000000000000000 0x23e esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x3300 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .literal.temp_sensor_sync_tsens_idx + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text.temp_sensor_sync_tsens_idx + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .literal.xEventGroupCreateStatic + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupClearBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupCreateStatic + 0x0000000000000000 0x73 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x0000000000000000 0x106 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.esp_event_isr_post + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x0000000000000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x0000000000000000 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.handler_instances_remove_all + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.base_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.loop_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_loop_delete + 0x0000000000000000 0x38 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x0000000000000000 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.handler_instances_remove_all + 0x0000000000000000 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.loop_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x0000000000000000 0xb8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x0000000000000000 0x9a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x0000000000000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24lookup_storage_from_namePKc + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition_ptr + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition_ptr + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_all + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_str + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_str + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_next + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_info + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIsEimPKcT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i16 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIlEimPKcT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i32 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIxEimPKcT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIyEimPKcT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIsEimPKcPT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i16 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIlEimPKcPT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i32 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIxEimPKcPT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIyEimPKcPT_ + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u64 + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24lookup_storage_from_namePKc + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x0000000000000000 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x0000000000000000 0x9a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x0000000000000000 0x86 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x0000000000000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x0000000000000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x0000000000000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x0000000000000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x0000000000000000 0xbe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x0000000000000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x0000000000000000 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIsEimPKcT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x0000000000000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIlEimPKcT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIxEimPKcT_ + 0x0000000000000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIyEimPKcT_ + 0x0000000000000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x0000000000000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIsEimPKcPT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIlEimPKcPT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIxEimPKcPT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIyEimPKcPT_ + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x0000000000000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x89 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x0000000000000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 + 0x0000000000000000 0xc4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x5d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 + 0x0000000000000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0xdd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 + 0x0000000000000000 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x75 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.pbuf_header + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_put_at + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.4 + 0x0000000000000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x0000000000000000 0x69 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x0000000000000000 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_put_at + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x0000000000000000 0x63 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.tcp_backlog_delayed + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_connect + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_backlog_delayed + 0x0000000000000000 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_connect + 0x0000000000000000 0x370 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new_ip_type + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_timeouts_deinit + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.sys_restart_timeouts + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_timeouts_deinit + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.dhcp_inform + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x0000000000000000 0xa8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.4 + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x0000000000000000 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x0000000000000000 0x51 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_aton + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa_r + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.ip4addr_aton.str1.4 + 0x0000000000000000 0x3f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_aton + 0x0000000000000000 0x1c7 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa_r + 0x0000000000000000 0x92 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$0 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.ip6_output + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x0000000000000000 0x171 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_aton + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa_r + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_aton + 0x0000000000000000 0x198 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.4 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x0000000000000000 0x218 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$0 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .literal.ip4_netif_exist + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text.ip4_netif_exist + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.sys_mutex_free + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_free + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.4 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_set_owner + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.lwip_sockopt_to_ipopt + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_inc_sockets_used + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.alloc_socket + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_register_membership + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_unregister_membership + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_register_mld6_membership + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_unregister_mld6_membership + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.select_check_waiters + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.event_callback + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_impl + 0x0000000000000000 0xcc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt_impl + 0x0000000000000000 0x138 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_accept + 0x0000000000000000 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_bind + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_connect + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_listen + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recv + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x0000000000000000 0x7c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_shutdown + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_pton + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_should_wake + 0x0000000000000000 0x3e esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sockopt_to_ipopt.str1.4 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sockopt_to_ipopt + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_inc_sockets_used + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.alloc_socket.str1.4 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.alloc_socket + 0x0000000000000000 0xbc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x0000000000000000 0x13c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x0000000000000000 0x105 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_register_membership + 0x0000000000000000 0x59 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_unregister_membership + 0x0000000000000000 0x63 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_register_mld6_membership + 0x0000000000000000 0x64 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_unregister_mld6_membership + 0x0000000000000000 0xae esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.select_check_waiters + 0x0000000000000000 0x112 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.event_callback + 0x0000000000000000 0x10c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_impl + 0x0000000000000000 0x59e esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_callback + 0x0000000000000000 0x36 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt_impl + 0x0000000000000000 0x79a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt_callback + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.4 + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_accept + 0x0000000000000000 0x208 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_bind + 0x0000000000000000 0x10e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_connect + 0x0000000000000000 0x122 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_listen + 0x0000000000000000 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recv + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x0000000000000000 0x164 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x0000000000000000 0x25a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket + 0x0000000000000000 0xd8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_poll.str1.4 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x0000000000000000 0x12c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_shutdown + 0x0000000000000000 0xbd esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt + 0x0000000000000000 0xb4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt + 0x0000000000000000 0xa0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x0000000000000000 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_pton + 0x0000000000000000 0x4a esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.pbuf_free_int + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callback + 0x0000000000000000 0x45 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnicmp + 0x0000000000000000 0x56 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x0000000000000000 0x9b esp-idf/lwip/liblwip.a(def.c.obj) + .literal.dns_backupserver_available + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_server_is_set + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_create_txid + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_call_found + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_correct_response + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_send + 0x0000000000000000 0x60 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entry + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entries + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_lookup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_random_port + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_pcb + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_enqueue + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_compare_name + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_skip_name + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_recv + 0x0000000000000000 0x78 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_clear_cache + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_tmr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_timeout_cb + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname_addrtype + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_backupserver_available + 0x0000000000000000 0x89 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_server_is_set + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_create_txid + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_call_found.str1.4 + 0x0000000000000000 0x3d esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_call_found + 0x0000000000000000 0x1a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_correct_response + 0x0000000000000000 0x6a esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_send.str1.4 + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_send + 0x0000000000000000 0x2a5 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.4 + 0x0000000000000000 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entry + 0x0000000000000000 0x292 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entries + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_lookup + 0x0000000000000000 0xe5 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_random_port + 0x0000000000000000 0x57 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_pcb + 0x0000000000000000 0x71 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_enqueue + 0x0000000000000000 0x1e1 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_compare_name + 0x0000000000000000 0xcc esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_skip_name + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_recv + 0x0000000000000000 0x46e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_clear_cache + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_tmr 0x0000000000000000 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_timeout_cb + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.4 + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname_addrtype + 0x0000000000000000 0x158 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v6group + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v4group + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x0000000000000000 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_is_tmr_start + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.4 + 0x0000000000000000 0x3d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x0000000000000000 0xc0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x0000000000000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_aton + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_aton + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.memp_malloc_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x0000000000000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.4 + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_find + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.4 + 0x0000000000000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_find + 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x0000000000000000 0x1d esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.4 + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x0000000000000000 0xf6 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.4 + 0x0000000000000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x0000000000000000 0xd3 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.raw_bind + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_connect + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind + 0x0000000000000000 0x134 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_connect + 0x0000000000000000 0x129 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x0000000000000000 0x96 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_recv + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new_ip_type + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.udp_new_ip_type + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_bind_netif + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_new_ip_type + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.icmp6_send_response_with_addrs + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_packet_too_big + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded_with_addrs + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response_with_addrs.str1.4 + 0x0000000000000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_send_response_with_addrs + 0x0000000000000000 0x4e esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded_with_addrs + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.lwip_getsockopt_impl_ext + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_setsockopt_impl_ext + 0x0000000000000000 0xe1 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .rodata.lwip_getsockopt_impl_ext.str1.4 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_getsockopt_impl_ext + 0x0000000000000000 0xd5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_info 0x0000000000000000 0xf09 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_abbrev 0x0000000000000000 0x1c5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_loc 0x0000000000000000 0x364 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_line 0x0000000000000000 0x9ef esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_str 0x0000000000000000 0x9b4 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .literal.netconn_new_with_proto_and_callback + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind_if + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_connect + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_disconnect + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_listen_with_backlog + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_accept + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_shutdown + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_gethostbyname_addrtype + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_new_with_proto_and_callback + 0x0000000000000000 0x86 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind + 0x0000000000000000 0xb1 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_connect + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_disconnect + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_listen_with_backlog + 0x0000000000000000 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x0000000000000000 0x8d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_accept + 0x0000000000000000 0x124 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.4 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x0000000000000000 0xb5 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_shutdown + 0x0000000000000000 0x2b esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_gethostbyname_addrtype + 0x0000000000000000 0x4a esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.4 + 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.lwip_netconn_do_dns_found + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_udp + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_raw + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.setup_tcp + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.pcb_new + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connected + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_tcp + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_newconn + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.netconn_alloc + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.accept_function + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connect + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_disconnect + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_listen + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_accepted + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_gethostbyname + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_dns_found + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_udp.str1.4 + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_udp + 0x0000000000000000 0x12b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_raw + 0x0000000000000000 0xb5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.setup_tcp + 0x0000000000000000 0x42 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.pcb_new.str1.4 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.pcb_new 0x0000000000000000 0xf2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.4 + 0x0000000000000000 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connected + 0x0000000000000000 0xd4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_tcp.str1.4 + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_tcp + 0x0000000000000000 0xb6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_newconn + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.4 + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.netconn_alloc + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.accept_function.str1.4 + 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.accept_function + 0x0000000000000000 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind + 0x0000000000000000 0x104 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x0000000000000000 0x74 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connect + 0x0000000000000000 0xca esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_disconnect + 0x0000000000000000 0x2f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.4 + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_listen + 0x0000000000000000 0x18f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_accepted + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_gethostbyname + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x0000000000000000 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x0000000000000000 0x39 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.esp_netif_next + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_next + 0x0000000000000000 0x3f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_dhcpc_option_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start_api + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname_api + 0x0000000000000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x0000000000000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name_api + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group_api + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_api + 0x0000000000000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_default_netif + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip4_addr + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_ntoa + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip4 + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip6 + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tcpip_exec + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ip6_get_addr_type + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_ip6 + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.tcpip_exec_api + 0x0000000000000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option_api + 0x0000000000000000 0x90 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x0000000000000000 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop_api + 0x0000000000000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.4 + 0x0000000000000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_hostname_api.str1.4 + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname_api + 0x0000000000000000 0x5d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.4 + 0x0000000000000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x0000000000000000 0x129 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac_api + 0x0000000000000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info_api.str1.4 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x0000000000000000 0x7d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name_api + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_join_ip6_multicast_group_api.str1.4 + 0x0000000000000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group_api + 0x0000000000000000 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_leave_ip6_multicast_group_api.str1.4 + 0x0000000000000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group_api + 0x0000000000000000 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_add_ip6_address_api.str1.4 + 0x0000000000000000 0x7c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_api + 0x0000000000000000 0xe4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address_api + 0x0000000000000000 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_default_netif + 0x0000000000000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x0000000000000000 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_ntoa + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip4 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip6 + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_netif_impl + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x0000000000000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tcpip_exec + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_transmit + 0x0000000000000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x0000000000000000 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x0000000000000000 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x0000000000000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option_api + 0x0000000000000000 0x202 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac + 0x0000000000000000 0x85 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x0000000000000000 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x0000000000000000 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ip6_get_addr_type + 0x0000000000000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x0000000000000000 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_ip6 + 0x0000000000000000 0x118 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x0000000000000000 0x73 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x0000000000000000 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name + 0x0000000000000000 0x68 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_link_speed + 0x0000000000000000 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address + 0x0000000000000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .rodata.g_wifi_default_mesh_crypto_funcs + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .literal.sha384_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha512_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.md5_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_init + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_update + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_finish + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_md5_vector + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_md5 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_ctr_encrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_128_ctr_encrypt + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_mod_exp + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_dh_init + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha384_vector + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha512_vector + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.md5_vector + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_init + 0x0000000000000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_update + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_finish + 0x0000000000000000 0xfe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384_vector + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384 + 0x0000000000000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_md5_vector + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_md5 + 0x0000000000000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_ctr_encrypt + 0x0000000000000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_128_ctr_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_mod_exp + 0x0000000000000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_dh_init + 0x0000000000000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_init + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_deinit + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.ccmp_aad_nonce_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_encrypt_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_aad_nonce_pv1 + 0x0000000000000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x0000000000000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x0000000000000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x0000000000000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.hwaddr_aton2 + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_encode + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_ssid_txt + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.str_clear_free + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_gmtime + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_mktime + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_reltime_expired + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.get_param + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.hwaddr_aton2 + 0x0000000000000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.4 + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x0000000000000000 0xcb esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_ssid_txt + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.__hide_aliasing_typecast + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.has_ctrl_char + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x0000000000000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.str_clear_free + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_gmtime + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_mktime + 0x0000000000000000 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_reltime_expired + 0x0000000000000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.rssi_to_rcpi + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.get_param + 0x0000000000000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss.ssid_txt$0 + 0x0000000000000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.disconnect_and_destroy + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_attach_wifi_ap + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_ap + 0x0000000000000000 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_destroy_default_wifi + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x0000000000000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x84 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.disconnect_and_destroy + 0x0000000000000000 0x2e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_ap_handlers + 0x0000000000000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_attach_wifi_ap + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_ap + 0x0000000000000000 0x6a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_destroy_default_wifi + 0x0000000000000000 0x17 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x0000000000000000 0x79 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 + 0x0000000000000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x140 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x0000000000000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.internal_semphr_delete_wrapper + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.internal_semphr_give_wrapper + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.internal_semphr_create_wrapper + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.internal_semphr_take_wrapper + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.12.literal + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.11.literal + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.33 0x0000000000000000 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.internal_semphr_delete_wrapper + 0x0000000000000000 0x1a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.internal_semphr_give_wrapper + 0x0000000000000000 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.internal_semphr_create_wrapper + 0x0000000000000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.internal_semphr_take_wrapper + 0x0000000000000000 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.12 0x0000000000000000 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.11 0x0000000000000000 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data.g_coex_adapter_funcs + 0x0000000000000000 0x3c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data.memset_func + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mbedtls_mpi_swap + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_binary_le + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_write_hlp + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_get_digit + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_binary_le + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x0000000000000000 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_write_hlp + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.4 + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x0000000000000000 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.4 + 0x0000000000000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x0000000000000000 0x306 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_core_ct_uint_table_lookup + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_read_le + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_add_if + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_montmul + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.exp_mod_precompute_window + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_working_limbs + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_to_mont_rep + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_get_window_size + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_ct_uint_table_lookup + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_read_le + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul_init + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_precompute_window + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x0000000000000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_to_mont_rep + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_cipher_aead_encrypt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_aead_decrypt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_iv + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_reset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_crypt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_encrypt + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_decrypt + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_iv + 0x0000000000000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_reset + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_finish + 0x0000000000000000 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_crypt + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_encrypt_ext + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_decrypt_ext + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .literal.mbedtls_ct_size_mask_lt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_size_mask_ge + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_base64_enc_char + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_base64_dec_value + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_memcpy_if_eq + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_memcpy_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_ct_hmac + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_uchar_mask_of_range + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask_lt + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_mask_ge + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_size_bool_eq + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_base64_enc_char + 0x0000000000000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_base64_dec_value + 0x0000000000000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_if_eq + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_offset + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_hmac + 0x0000000000000000 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.cmac_test_subkeys + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.cmac_test_wth_cipher + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.test_aes128_cmac_prf + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_subkeys.str1.4 + 0x0000000000000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_subkeys + 0x0000000000000000 0x13e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher.str1.4 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_wth_cipher + 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x0000000000000000 0x8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_aes128_cmac_prf.str1.4 + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.test_aes128_cmac_prf + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.4 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x0000000000000000 0x10f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFT 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFM 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFKlen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFK 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_message + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_md_clone + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_list + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_clone + 0x0000000000000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_type + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x0000000000000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_ctx + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x0000000000000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md5_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x0000000000000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.pkcs5_parse_pbkdf2_params + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_pbes2 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.pkcs5_parse_pbkdf2_params + 0x0000000000000000 0xaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_pbes2.str1.4 + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbes2 + 0x0000000000000000 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.4 + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_get_unaligned_uint64 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_put_unaligned_uint64 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint16 + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint16 + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint32 + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint32 + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_get_unaligned_uint64 + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_put_unaligned_uint64 + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .text.mbedtls_xor + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_sha1_self_test + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x0000000000000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256_common_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha224_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_common_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_common_self_test + 0x0000000000000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha224_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha224_test_sum + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x0000000000000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buf + 0x0000000000000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .literal.esp_internal_aes_encrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_encrypt + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_decrypt + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x0000000000000000 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x0000000000000000 0xeb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_sha1_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_internal_sha1_process + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_internal_sha1_process + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha256_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_internal_sha512_process + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.esp_sha512_set_mode + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.esp_sha512_set_t + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_gcm_derive_J0 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_starts + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_update_ad + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag_partial_hw + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_auth_decrypt + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.gcm_gen_table + 0x0000000000000000 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_gcm_derive_J0 + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_starts + 0x0000000000000000 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update_ad.str1.4 + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_update_ad + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_finish + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag_partial_hw + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_auth_decrypt + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_md5_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_process + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.mbedtls_aria_self_test + 0x0000000000000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_aria_self_test.str1.4 + 0x0000000000000000 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text.mbedtls_aria_self_test + 0x0000000000000000 0x4d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_ctr_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cfb_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cbc_ct + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_pt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_ct + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_pt + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.asn1_get_sequence_of_cb + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.asn1_get_tagged_int + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bool + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_int + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_enum + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_traverse_sequence_of + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring_null + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_sequence_free + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_sequence_of + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg_null + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.asn1_get_sequence_of_cb + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.asn1_get_tagged_int + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bool + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_int + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_traverse_sequence_of + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring_null + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_sequence_free + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_sequence_of + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg + 0x0000000000000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg_null + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list_shallow + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_ccm_clear_state + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_calculate_first_block_if_ready + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_starts + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_set_lengths + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_update_ad + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_crypt + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_decrypt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_encrypt_and_tag + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_auth_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_compare_tags + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_clear_state + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_calculate_first_block_if_ready + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_starts + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_set_lengths + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_update_ad + 0x0000000000000000 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_finish + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_crypt + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_decrypt + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_encrypt_and_tag + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_auth_decrypt + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.4 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x0000000000000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res_test_data + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_test_data + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad_test_data + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_test_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key_test_data + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.oid_x520_attr_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_x509_ext_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_certificate_policies_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_sig_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_pk_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_grp_id_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_cipher_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_hmac_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_attr_short_name + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_x509_ext_type + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_certificate_policies + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_pk_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_ec_grp + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_cipher_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_hmac + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x520_attr_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x509_ext_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_certificate_policies_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_sig_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_pk_alg_from_asn1 + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_grp_id_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_cipher_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_alg_from_asn1 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_hmac_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_attr_short_name + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_x509_ext_type + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_certificate_policies + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_sig_alg + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_pk_alg + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_ec_grp + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_cipher_alg + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_alg + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_hmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.4 + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x0000000000000000 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pkcs12_pbe_alg + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ecp_grp + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x0000000000000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_certificate_policies + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x0000000000000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .literal.esp_crypto_shared_gdma_free + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_free + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .literal.esp_wifi_get_config_channel_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_send_deauth_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local$part$4 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_default + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_current_ap_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_deauth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_ready + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_ant_update_empty_func + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_data_ptr_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_softap_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_initiate_session + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_ap_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_11b_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_espnow_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country_code + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country_code + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_mac_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_configure_wake_window + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_is_tsf_active + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .wifislpiram.37.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_update_tsf_tick_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_light_sleep_default_params + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_delay_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_keep_alive_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_monitor_configure + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_issue_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_tsf_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_tx_done_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_spp_amsdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disable_pmf_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_phy_apply_phy_init_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_active_duty_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_active_duty_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_network_duty_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_running_active_duty_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_get_ext_duty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_duty_signaling + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_non_mesh_connections + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_eb_tx_status_success_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0xa5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0xe6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid_local + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode_local + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time_local + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_aid_local + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session_local + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset_local + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time_local + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config_default + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_current_ap_id + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x0000000000000000 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_rssi + 0x0000000000000000 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x0000000000000000 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x0000000000000000 0x166 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_check_chan_param + 0x0000000000000000 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_osi_ready + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.wifi_ant_update_empty_func + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_initiate_session + 0x0000000000000000 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disconnect + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.get_total_scan_time + 0x0000000000000000 0xe2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_start + 0x0000000000000000 0x17c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_stop + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_num + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_records + 0x0000000000000000 0xa6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_ap_list + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_connectionless_module_set_wake_interval + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ps + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ps + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x0000000000000000 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_11b_rate + 0x0000000000000000 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_espnow_rate + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx_rate + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_channel + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country_code + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country_code + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x0000000000000000 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_ap_info + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_storage + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x0000000000000000 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x0000000000000000 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_mac_sleep + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x0000000000000000 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_configure_wake_window + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_is_tsf_active + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .wifislpiram.37 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_update_tsf_tick_interval + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_light_sleep_default_params + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sleep_delay_time + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_keep_alive_time + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_monitor_configure + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_aid + 0x0000000000000000 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_tsf_time + 0x0000000000000000 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_tx_done_cb + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_statis_dump + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_spp_amsdu + 0x0000000000000000 0x6b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disable_pmf_config + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_phy_apply_phy_init_data + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_router_bssid + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_router_bssid + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_beacon_interval + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_beacon_interval + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_sta_disassoc + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0xe1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x174 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_set + 0x0000000000000000 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_get + 0x0000000000000000 0xa4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_set + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x12a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0xf8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x1b6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_candidate + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_roots_found + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_storage + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_switch_channel_internal + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_active_duty_cycle + 0x0000000000000000 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_active_duty_cycle + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_internal + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_cycle + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_network_duty_cycle + 0x0000000000000000 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_get_ext_duty + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_duty_signaling + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_non_mesh_connections + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_eb_tx_status_success_internal + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.token$16182 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.old_scan_id$15273 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.40 + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.39 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.38 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_fetch_num + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_bss + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.33 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.32 + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.31 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.30 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.29 + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.28 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.26 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.25 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.24 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.23 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.22 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.21 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.20 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.19 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.12 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.11 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_freedom_inside_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_resp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_resp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_setup_pmf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_available + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_setkey + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_encrypt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_gmac_decrypt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_encap + 0x0000000000000000 0x85 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.2 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .literal.wifi_log + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_rxtx_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_rxtx_statis_dump + 0x0000000000000000 0x27e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_statis_dump + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.14 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.13 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.12 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.11 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.10 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.9 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.8 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.7 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.6 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.5 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.4 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.3 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.2 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .literal.ieee80211_getmgtframe + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .literal.ftm_get_phy_comp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_request_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_offchan_tx_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_offchan_end + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_session_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_send_msmt_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_request_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_send_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_record_t2t3_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_send_action_ftm_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_measurement_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_initiator_supported + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_responder_supported + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_is_supported + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_map_bw_param_to_phybw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_get_resp_session_for_peer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_add_resp_session + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_free_resp_session + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_record_t1t4_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_set_t1t4_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_get_burst_slot + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_get_burst_inst_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_send_action_ftm_resp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_get_estimated_dist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_post_event + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_new_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_parse_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_recv_action_ftm_resp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_sess_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_tx_ftm_msmt_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_resp_allocate_para + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_create_responder_session + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.public_recv_action_ftm_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_req_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_send_ftmr_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_start_initiator_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_initiator_end_session_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_validate_initiator_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ftm_responder_set_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_ftm_detach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_phy_comp + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_request_txcb + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_offchan_tx_req + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_offchan_end + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_session_timeout + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_send_msmt_pkt + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_request_timeout + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_send_request + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_record_t2t3_cb + 0x0000000000000000 0xc2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_send_action_ftm_req + 0x0000000000000000 0x2d3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_measurement_txcb + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_is_initiator_supported + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_map_bw_param_to_phybw + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_resp_session_for_peer + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_add_resp_session + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_free_resp_session + 0x0000000000000000 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_record_t1t4_cb + 0x0000000000000000 0xf0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_set_t1t4_cb + 0x0000000000000000 0xba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_get_burst_slot + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_get_burst_inst_delay + 0x0000000000000000 0xa5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_send_action_ftm_resp + 0x0000000000000000 0x418 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_get_estimated_dist + 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_post_event + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata.str1.1 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_new_state + 0x0000000000000000 0x598 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_parse_data + 0x0000000000000000 0x316 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_recv_action_ftm_resp + 0x0000000000000000 0x250 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_sess_timeout_process + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_tx_ftm_msmt_process + 0x0000000000000000 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_resp_allocate_para + 0x0000000000000000 0x205 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_create_responder_session + 0x0000000000000000 0x156 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.public_recv_action_ftm_req + 0x0000000000000000 0x1d9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_req_timeout_process + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_send_ftmr_process + 0x0000000000000000 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_start_initiator_local + 0x0000000000000000 0x274 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_initiator_end_session_local + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_validate_initiator_config + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ftm_responder_set_offset + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .text.ieee80211_ftm_attach + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.23 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.22 + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.21 + 0x0000000000000000 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.20 + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.19 + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.18 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.17 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.16 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.15 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.14 + 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.13 + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.12 + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.11 + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.10 + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.9 + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.8 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.7 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.5 + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.4 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .rodata_wlog_error.3 + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_t1_offset_psec + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_ftm_report_num_valid_entries + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.g_ftm_report_data + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftm_resp_ctx + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftm_initiator + 0x0000000000000000 0xad8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftm_initator_state + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.request_f + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftm_req_expiry_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .bss.ftmr_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .literal.ieee80211_hdrsize + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_non_esp_oui + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_esp_manufacturer_oui + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.34.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_free_beacon_eb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_delete_ptk + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_deliver_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_auth_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_ctl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_mgmt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.add_mic_ie_bip + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.ApFreqCalTimer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .literal.addba_stop_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_init_age_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop_age_timer$part$0 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_deinit_age_timer$part$1 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_response_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_dispatch_movement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.29.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.31.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.33.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_start_age_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.37.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_cal_tx_pps + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.27 + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ampdu_dispatch_movement + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.29 + 0x0000000000000000 0x95 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.31 + 0x0000000000000000 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.33 + 0x0000000000000000 0xd9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_start_age_timer + 0x0000000000000000 0x65 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .wifirxiram.37 + 0x0000000000000000 0x220 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.40 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.39 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.38 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.36 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.34 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.32 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.30 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.28 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .literal.wpa_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_deliver_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_support_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_11b_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_lr_only + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_amsdu_negotiate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wapi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rateset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .literal.wifi_wps_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_acquire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_release + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_get_reconnect_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_ap_change_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_set_ap_num_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_max_support_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.25.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_coex_external_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_coex_external_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_to_ant_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_clear_ap_list_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_bw_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_chan_range + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.75.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_tsf_time_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ftm_start_initiator_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_send_mgmt_frame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_register_mgmt_frame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_roc_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_action_tx_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_window_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disable_pmf_config_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_start_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_update_tsf_tick_interval_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_map_deauth_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_act_duty_signaling_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_get + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_set + 0x0000000000000000 0x71 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0xa1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_mode + 0x0000000000000000 0x1f6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x0000000000000000 0x1c7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_sta_scan + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_ap_change_process + 0x0000000000000000 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_mac_process + 0x0000000000000000 0x11a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_filter_process + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_ctrl_filter_process + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_set_ap_num_process + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_auto_connect_process + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_macaddr + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.25 + 0x0000000000000000 0x9d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.27 + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_process + 0x0000000000000000 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.esp_coex_external_set + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.esp_coex_external_stop + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_start_process + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_stop_process + 0x0000000000000000 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_to_ant_type + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_clear_ap_list_process + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_list_process + 0x0000000000000000 0x2a9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_info_process + 0x0000000000000000 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_sta_list_process + 0x0000000000000000 0x14a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_protocol_process + 0x0000000000000000 0xd8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_protocol_process + 0x0000000000000000 0x63 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_process + 0x0000000000000000 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_bw_process + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_channel_process + 0x0000000000000000 0x13e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_home_channel_process + 0x0000000000000000 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_channel_process + 0x0000000000000000 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_chan_range + 0x0000000000000000 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ps_process + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_country + 0x0000000000000000 0x1fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_country + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restart_process + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restore_process + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_process + 0x0000000000000000 0xf8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_cb_process + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_max_tpw + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_event_mask + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_csi + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_csi_set_config + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_config_check + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.75 + 0x0000000000000000 0xa5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant + 0x0000000000000000 0x4f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant_gpio + 0x0000000000000000 0xa9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_fix_rate_process + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_enable_process + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_disable_process + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_log_mod_process + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_type_process + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_status_process + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_cb_process + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_internal_ioctl_process + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_tsf_time_process + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ftm_start_initiator_process + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_send_mgmt_frame + 0x0000000000000000 0xd6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_rssi_threshold + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_roc_process + 0x0000000000000000 0xcc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_action_tx_process + 0x0000000000000000 0xec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_window_process + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_disable_pmf_config_process + 0x0000000000000000 0x140 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_update_tsf_tick_interval_process + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_set_progress + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_get_progress + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_init_progress + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc + 0x0000000000000000 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_act_duty_signaling_process + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$218 + 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.g_mesh_root_conflicts_allowed + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.map_assoc_expire + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.97 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.96 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.95 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.94 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.93 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.92 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.91 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.90 + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.89 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.88 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.87 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.86 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.82 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.81 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.80 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.79 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.78 + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.77 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.76 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.74 + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.73 + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.72 + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.71 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.70 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.69 + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.68 + 0x0000000000000000 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.67 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.66 + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.65 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.64 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.63 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.62 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.61 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.60 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.59 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.58 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.34 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.28 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.26 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.16 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.7 + 0x0000000000000000 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.4 + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_public_action_recv_mesh_awake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_public_action_send_mesh_awake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_recv_mesh_awake + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_init + 0x0000000000000000 0x182 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_deinit + 0x0000000000000000 0x9d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.str1.1 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .rodata 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_send_mesh_awake + 0x0000000000000000 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_ps_duty + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_appie + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .literal.wifi_nvs_cfg_item_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_compare_cfg_diff + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_reset_current_ap_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_restore + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.7 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .literal.add_appie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$7 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_encap_amsdu_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_netstack_buf_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.wifi_is_started + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_tx_buf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_recycle_cache_eb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_post_hmac_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.get_wifi_internal_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_copy_eb_header + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_head + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_last_length + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_length_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_align_eb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_tx_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_classify + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dsparams + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_resp_app_ies + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_beacon_app_ies + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_resp_ies + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_req_ies + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_req_ies + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_csa + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_extcap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_req_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_resp_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_auth_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_deauth_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_disassoc_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_search_node + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_do + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_by_ref + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_send_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_encap_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_amsdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_raw_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_construct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_tx_desc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_reg_encap_amsdu_cb + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.wifi_is_started + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_recycle_cache_eb + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.get_wifi_internal_state + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_output_pending_eb + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_copy_eb_header + 0x0000000000000000 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_align_eb + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_set_tx_pti + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_classify + 0x0000000000000000 0x108 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.27 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_search_node + 0x0000000000000000 0xd2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_by_ref + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_mesh_tx + 0x0000000000000000 0xa6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x1fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x0000000000000000 0x13c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .text.ieee80211_set_tx_desc + 0x0000000000000000 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .wifi0iram.5 0x0000000000000000 0x234 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.44 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.43 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.42 + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.41 + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.40 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.39 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.38 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.37 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.36 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.35 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_phy_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_type_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_psq_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_cleanup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_is_bufferable_mmpdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_proto_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_gettid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_set_shortslottime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_initparams + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_find_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_gettid + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .rodata.rates$10468 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .literal.get_country_chan_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_get_chan_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_is_40mhz_valid_bw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .text.ieee80211_get_chan_info + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .rodata.ieee80211_get_chan_info + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_regdomain_max_tx_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_update_phy_country + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_max_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_min_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_max_tx_power + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_policy + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .data.s_map 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .literal.scan_enter_oper_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_freq_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_home_chan_dwell_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_check_hidden + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid_do + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_fill_wps_scan_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_owe_channel_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_validate_owe_scenarios + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_get_apnum + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_add_bssid + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_home_chan_dwell_time + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_set_scan_id + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .text.scan_get_scan_id + 0x0000000000000000 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.56 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.55 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_hdrsize + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_eapol_txdone_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_eapol_txdone_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_eapol + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_ft + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_shared + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_ctl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_bip_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_sae + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_mgmt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .wifirxiram.41.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .wifirxiram.47.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.sta_get_owe_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_max_sta_conn + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_pmf_config_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_use_h2e_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_config_sae_pwe_h2e_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_wpa2_authmode_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_ap_pmf_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_param_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_param_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wapi_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_rsn_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_spp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_send_mgmt_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_unregister_wapi_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_register_wapi_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_sta_is_connected + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_spp_attrubute_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_eapol_txdonecb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_skip_supp_pmkcaching + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_rm_enabled_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_btm_enabled_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_mbo_enabled_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_ft_enabled_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_mgmt_frame_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_send_mgmt_frm_internal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_action_tx_req + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_remain_on_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.wifi_ap_pmf_enabled + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_key + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_is_running_internal + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_unregister_wapi_cb + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_register_wapi_cb + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_tx_cb_internal + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_rssi_threshold + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_rm_enabled_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_btm_enabled_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_mbo_enabled_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_ft_enabled_internal + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_send_mgmt_frm_internal + 0x0000000000000000 0x83 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_action_tx_req + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_remain_on_channel + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_ampdu_age_handle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ftm_sess_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ftm_req_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_tx_ftm_msmt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_ftmr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_coexist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_try_sa_query + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_sa_query_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_ftm_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_hostap_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_ftm_sess_timeout + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_ftm_req_timeout + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_tx_ftm_msmt + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_send_ftmr + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .text.ieee80211_register_ftm_timer + 0x0000000000000000 0x55 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .literal.chm_end_op_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_phy_change_channel$constprop$3 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .wifi0iram.12 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .literal.cnx_sta_connect_led_timer_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_cal_rc_util + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_coexist_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_coexist_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_validate_owe_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_get_authtype_strength + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_from_blacklist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_age + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.87.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.89.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifislprxiram.112.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_sta_scan_cmd + 0x0000000000000000 0x3ee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_get_authtype_strength + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.87 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .wifi0iram.89 0x0000000000000000 0x69 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .text.cnx_stop_obss_scan + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.90 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.88 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.24 + 0x0000000000000000 0x65 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.23 + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.22 + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.21 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.20 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.19 + 0x0000000000000000 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.18 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.17 + 0x0000000000000000 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .literal.offchan_in_progress + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_recv_action + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_send_action_tx_status + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.roc_op_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.roc_op_end + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_end + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.roc_op_start + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.roc_op_end + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_txop_end + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .text.offchan_txop_start + 0x0000000000000000 0x26a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.3 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.2 + 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .data.s_global_offchan_seq + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .literal.send_inval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.recv_inval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_register + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .literal.get_iav_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_spec + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .rodata.str1.1 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0xd2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x36a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$10687 + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .literal.ccmp_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_decrypt_espnow_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.gcmp_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .literal.gcmp_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .literal.sms4_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.sms4_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.tkip_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.wep_encap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .literal.wep_decap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .literal.esf_buf_alloc_dynamic_default_handler + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_alloc_default_handler + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifislprxiram.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_recycle_default_handler + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifirxiram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup_static + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.esf_buf_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifislpiram.5 + 0x0000000000000000 0x1be E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .wifislprxiram.7 + 0x0000000000000000 0x156 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text.esf_buf_setup_for_mesh + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .text.esf_buf_statis_dump + 0x0000000000000000 0xc3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.20 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.19 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.18 + 0x0000000000000000 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .literal.bb_intr_handl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_obtain_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_pp_tx_done_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_mgmt_hwdecr_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_register_ftm_callbacks + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_ifx_phy_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.12.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_is_sta_tsf_active + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_sta_tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislpiram.13.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_tsf_tick_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_extern_coex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_stop_extern_coex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_update_light_sleep_default_params + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_delay_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_keep_alive_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_beacon_monitor_configure + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_rx_disable_bssid_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_rx_enable_bssid_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_bar_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_def_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_espnow_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_espnow_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_get_default_sched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.ic_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.3 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_alloc + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_recycle_tx + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_ebuf_recycle_rx + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_pp_tx_done_cb + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_promis_filter + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_promis_ctrl_filter + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_register_ftm_callbacks + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_reset_rx_ba + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_random + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_trc + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_tx_is_idle + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_fix_rate + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_csi + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislprxiram.11 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_csi_set_config + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_is_sta_tsf_active + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .wifislpiram.13 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_tsf_tick_interval + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_extern_coex + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_stop_extern_coex + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_update_light_sleep_default_params + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_sleep_delay_time + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_keep_alive_time + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_beacon_monitor_configure + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_rx_disable_bssid_check + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_rx_enable_bssid_check + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_bar_rate + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_trc_update_def_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_espnow_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_espnow_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_get_default_sched + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .text.ic_connectionless_module_set_wake_interval + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_info.9 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .literal.lmacIsIdle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacGetTxFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReachShortLimit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReachLongLimit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacIsLongFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRequestTxopQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacReleaseTxopQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacSetTxFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacInitAc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacInit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.14.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacEndRetryAMPDUFail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.22.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.26.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.28.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.31.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.dbg_cnt_lmac_drop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.47.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.48.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmac_record_txtime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmac_update_tx_statistic + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.52.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDiscardAgedMSDU + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRetryTxFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDiscardFrameExchangeSequence + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.15.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxopQComplete + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.17.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxSuccess + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessLongRetryFail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxseckiderr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxComplete + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacRxDone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.57.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.esp_wifi_set_11b_tx_plcp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacIsIdle + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReachShortLimit + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReachLongLimit + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacIsLongFrame + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacRequestTxopQueue + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacReleaseTxopQueue + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x0000000000000000 0x155 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.14 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.22 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.26 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.27 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .iram1.28 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.31 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.dbg_cnt_lmac_drop + 0x0000000000000000 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.47 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmac_update_tx_statistic + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.52 0x0000000000000000 0xeb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacDiscardAgedMSDU + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.15 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.17 0x0000000000000000 0x2c4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.lmacRxDone + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .wifi0iram.57 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .text.esp_wifi_set_11b_tx_plcp + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10261 + 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9984 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9892 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.53 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.46 + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.21 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.20 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.19 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.18 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.12 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.10 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.9 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .data.txopstart_index + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .literal.hal_clear_sta_tsf_active_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_incr_active_cnt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_incr_coex_active_cnt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disable_active_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_monitor_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_wake_window_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_wake_interval_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_active_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.wifi_apb80m_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.wifi_apb80m_release + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_dream + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_allow_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.16.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.17.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_dream_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.18.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_sleep_delay_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disable_disconnected_sleep_delay_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_disconnected_sleep_delay_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_pend_noise_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_noise_check_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_wakeup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mac_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.20.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.21.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.22.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.25.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_wake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.26.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_wake_up + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_off_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_wake_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_separate_connectionless_window + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.19.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_params + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.28.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_tsf_tick_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_next_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_mesh_set_next_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.29.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_beacon_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_timestamp_statistic + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_misc_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_is_in_wifi_slice_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.30.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.31.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_tbtt_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_dream_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.32.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.34.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.35.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.36.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.33.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.37.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_data_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.38.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.39.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.40.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.41.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_schm_status_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_coex_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_probe_resp_rx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.42.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.43.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_data_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_disconnected_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_deattach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_beacon_monitor_configure + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_update_light_sleep_default_params + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_sleep_delay_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_set_keep_alive_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_scan_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_scan_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_try_scan_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_force_scan_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_get_idle_wait_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_enable_sta_disconnected_power_management + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_register_connectionless_wake_window + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_unregister_connectionless_wake_window + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.pm_connectionless_module_set_wake_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.wifi_apb80m_request + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.wifi_apb80m_release + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.3 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_is_dream + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_is_sleeping + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.4 + 0x0000000000000000 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_allow_tx + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep_init + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep_deinit + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.16 + 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.17 + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.18 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_enable_sleep_delay_timer + 0x0000000000000000 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_wakeup + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_mac_sleep + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.20 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.25 + 0x0000000000000000 0xf5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.27 + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislpiram.28 + 0x0000000000000000 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_update_tsf_tick_interval + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_set_beacon_filter + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_is_in_wifi_slice_threshold + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.30 + 0x0000000000000000 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.31 + 0x0000000000000000 0x163 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.38 + 0x0000000000000000 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifislprxiram.40 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .wifirxiram.43 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_set_sleep_type + 0x0000000000000000 0x10c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_get_sleep_type + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_beacon_monitor_configure + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_update_light_sleep_default_params + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_set_sleep_delay_time + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_set_keep_alive_time + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_scan_lock + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_scan_unlock + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_register_connectionless_wake_window + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_unregister_connectionless_wake_window + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .text.pm_connectionless_module_set_wake_interval + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_error.49 + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.48 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .literal.fpm_allow_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_do_wakeup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_is_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_do_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_open + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_close + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_rf_is_closed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_is_open + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_do_sleep + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_open + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_close + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_rf_is_closed + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .literal.pp_delete_task_manually + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.getle32 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.putle32 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.rotl 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.rotr 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.xswap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.RxNodeNum + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.TxNodeNum + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.SigSpaceFree + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_default_event_handler + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAddTimCount + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterTxDoneUserActionCallback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRecycleRxPkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRecycleTxBuf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxQIdle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckIsConnTraffic + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxConnTrafficIdle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_coex_tx_release + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.17.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppSetInterface + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.19.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.21.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_gettid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAssembleMicHdr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCalTkipMic + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppTxFragmentProc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.23.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppSetBarRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppPauseTxAMPDU + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.28.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxAMPDUlength + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAdd2AMPDUTail + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.31.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppReSendBar + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppTxqUpdateBitmap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppEnqueueTxDone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDequeueTxDone_Locked + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppProcTxDone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.38.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.39.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.25.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.emul_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_create_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_deattach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppGetTxframe + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppInitTxq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppEnableQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.48.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .iram1.50.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_delete_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppMapWaitTxq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppProcessWaitingQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDisableQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppSelectNextQueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.47.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.49.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.52.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppCalTxopDur + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.54.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_attach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAssembleAMPDU + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppAMPDU2Normal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.33.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.20.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.35.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppDirectRecycleAmpdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppClearTxq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRecycleAmpdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppRegressAmpdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .literal.ppMessageInQ + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislpiram.5 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.rotl 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.rotr 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.RxNodeNum + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.TxNodeNum + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.SigSpaceFree + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifirxiram.6 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.7 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.11 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppAddTimCount + 0x0000000000000000 0x18c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRegisterTxDoneUserActionCallback + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppUnregisterTxCallback + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_register_tx_cb + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.pp_unregister_tx_cb + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecycleRxPkt + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecycleTxBuf + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.17 0x0000000000000000 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.19 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.21 + 0x0000000000000000 0xd9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppGetTxQFirstAvail_Locked + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppFetchTxQFirstAvail + 0x0000000000000000 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDequeueTxQ + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRollBackTxQ + 0x0000000000000000 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppSetBarRate + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppPauseTxAMPDU + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.28 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppCheckTxAMPDUlength + 0x0000000000000000 0x81 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppAdd2AMPDUTail + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.31 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecordBarRRC + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppTxqUpdateBitmap + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppEnqueueTxDone + 0x0000000000000000 0x6b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDequeueTxDone_Locked + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.38 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.39 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifislprxiram.25 + 0x0000000000000000 0x115 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.emul_timeout + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppGetTxframe + 0x0000000000000000 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppEnableQueue + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.48 0x0000000000000000 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .iram1.50 0x0000000000000000 0x13e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppMapWaitTxq + 0x0000000000000000 0xe3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppProcessWaitingQueue + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDisableQueue + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppSelectNextQueue + 0x0000000000000000 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.47 0x0000000000000000 0x11e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppDiscardMPDU + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.54 0x0000000000000000 0x5d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.12 0x0000000000000000 0x1dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppAssembleAMPDU + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppAMPDU2Normal + 0x0000000000000000 0xb1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.33 0x0000000000000000 0x2e3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.20 0x0000000000000000 0x17e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .wifi0iram.35 0x0000000000000000 0x3f2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppRecycleAmpdu + 0x0000000000000000 0x83 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .text.ppMessageInQ + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.current_ifidx$10704 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.51 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.37 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.36 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.34 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.32 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.26 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.16 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.15 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.14 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.13 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.CanDoFreqCal + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.DefFreqCalTimer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.SigInMacISR + 0x0000000000000000 0x190 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .data.libpp_reversion_git + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .iram1.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .iram1.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_rxtx_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_hw_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_diag_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_reset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_statis_dump + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_eb_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_event_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_int_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_rx_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_tx_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_ebuf_loc_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_perf_path_show + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_perf_path_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.dbg_lmac_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .iram1.5 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata.str1.1 + 0x0000000000000000 0x1c0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_rxtx_statis_dump + 0x0000000000000000 0x20a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_hw_statis_dump + 0x0000000000000000 0x2c6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_diag_statis_dump + 0x0000000000000000 0x1b6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_ps_statis_dump + 0x0000000000000000 0x18b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_lmac_statis_dump + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.36 + 0x0000000000000000 0x3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss.s_t_old 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .bss.s_total 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.35 + 0x0000000000000000 0x55 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.34 + 0x0000000000000000 0x51 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.33 + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.32 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.31 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.30 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.29 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.28 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.26 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.25 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.24 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.23 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.22 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.21 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.20 + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.19 + 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.18 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.17 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.16 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.15 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.14 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.13 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.12 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.11 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.10 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.9 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.8 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.7 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .rodata_wlog_info.6 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .literal.pp_timer_beacon_monitor_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_window + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_disconnected_sleep_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_coex_schm + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_dream + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .wifislpiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .wifislpiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .literal.RC_GetDuration + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_SetBasicRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetAckTime + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .text.RC_GetBlockAckTime + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .literal.rc11NRate2SchedIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcLoRaRate2SchedIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcBuildIndex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_calc_duration + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trcAmpduSetState + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcSetTxAmpduLimit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetDefaultHigestRateIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcClearCurStat + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcClearCurSched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcClearCurAMPDUSched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcLowerSched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpSched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdateAckSnr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcSetBarRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_default_sched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcGetRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rssi_margin + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_PER_IS_GOOD + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcAmpduLowerRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_UP_THRESHOLD + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcUpdateRate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rcAttach + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onDisconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onScanStart + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onScanDone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_isAmpduOn + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_onPPTxDone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_SetTxAmpduState + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.18.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.19.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_mask + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_disable_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.23.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_update_def_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_update_ifx_phy_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_enable_trc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_get_espnow_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_espnow_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_calc_duration + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trcAmpduSetState + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcSetTxAmpduLimit + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurStat + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurSched + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcClearCurAMPDUSched + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcLowerSched + 0x0000000000000000 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpSched + 0x0000000000000000 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpdateAckSnr + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.9 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onAmpduOp + 0x0000000000000000 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_per_pkt_rate + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcSetBarRate + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_default_sched + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcGetAmpduSched + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rssi_margin + 0x0000000000000000 0x140 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.rssi_margin + 0x0000000000000000 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_PER_IS_GOOD + 0x0000000000000000 0x51 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcAmpduLowerRate + 0x0000000000000000 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.TRC_AMPDU_PER_UP_THRESHOLD + 0x0000000000000000 0x69 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_UP_THRESHOLD + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.10 0x0000000000000000 0x2aa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpdateRate + 0x0000000000000000 0x222 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_NeedRTS + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onDisconnect + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onScanStart + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_onScanDone + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_SetTxAmpduState + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.18 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifi0iram.19 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_mask + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .wifirxiram.23 + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_trc_by_index + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_trc_default + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_update_def_rate + 0x0000000000000000 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc_set_fix_rate + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_get_espnow_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_espnow_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_get_80211_tx_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.trc_set_80211_tx_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$59 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$12119 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.12 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .data.BAROFDMSched + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss.g_80211_tx_rate + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .bss.g_espnow_rate + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .literal.wdev_csi_hw_bug_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_ftm_set_t1t4 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_is_cache_tx_buf_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.14.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .iram1.39.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.16.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.44.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.13.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.15.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_csi_rx_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SnifferRxData + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_IndicateCtrlFrame + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SnifferRxAmpdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.40.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.23.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.19.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifirxiram.22.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifiorslpiram.24.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_SetAuthed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_reset_bcnSendTick + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_mac_sleep_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_mac_sleep_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_buf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_ftm_record_t1t4 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_ftm_record_t2t3 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_ftm_set_callbacks + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_record_ftm_data_local + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.25.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.26.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.28.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_FetchFirstDesc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_is_mgmt_hwdecr_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_data_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.wdev_funcs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_csi_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_rx_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_tx_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_amsdu_tx_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_nvs_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_rx_baw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_static_rx_buffer_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_rx_buffer_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_tx_buffer_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_static_tx_buffer_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_tx_buffer_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_cache_tx_buffer_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_timer_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_wps_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_wpa2_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_coexist_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_pm_task_stack_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_task_core_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_beacon_max_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_mgmt_sbuf_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_feature_capabilities + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_espnow_max_encrypt_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.config_get_wifi_sta_disconnected_pm + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_is_cache_tx_buf_enabled + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.5 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.8 0x0000000000000000 0x9a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.6 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.7 0x0000000000000000 0x9a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.9 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.10 0x0000000000000000 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.14 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.16 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.44 + 0x0000000000000000 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.13 0x0000000000000000 0xa4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifi0iram.15 0x0000000000000000 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.40 + 0x0000000000000000 0x118 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislpiram.23 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.19 + 0x0000000000000000 0x252 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifirxiram.22 + 0x0000000000000000 0x2b2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifiorslpiram.24 + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_Mesh_Enable_Tsf + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_Mesh_Set_TBTT + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_mac_sleep_init + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_mac_sleep_deinit + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_misc_buf + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_filter + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_promis_ctrl_filter + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_ftm_set_callbacks + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.26 + 0x0000000000000000 0x2e7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .wifislprxiram.28 + 0x0000000000000000 0x110 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wDev_is_low_rate_enable + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_csi_enable + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_timer_task_stack_size + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_wps_task_stack_size + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_wpa2_task_stack_size + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_coexist_task_stack_size + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .text.config_get_wifi_pm_task_stack_size + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$11303 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$11261 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$11157 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata.__FUNCTION__$11145 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.43 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.42 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.41 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.30 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.29 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.27 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.20 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.12 + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.11 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .literal.hal_agreement_add_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_agreement_clr_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_agreement_del_rx_ba + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_store + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_agreement_clr_rx_ba + 0x0000000000000000 0x9d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_ba_session_store + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .text.hal_ba_session_restore + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .rodata_wlog_info.3 + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .literal.hal_coex_pti_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_coex_set_wait_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_beacon_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_tx_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_active_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_rx_ack_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_wifi_default_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_extern_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_set_extern_coex_gpio + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_enable_extern_coex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_disable_extern_coex + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text.hal_coex_set_wait_time + 0x0000000000000000 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text.hal_set_extern_pti + 0x0000000000000000 0xae E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text.hal_set_extern_coex_gpio + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text.hal_enable_extern_coex + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .text.hal_disable_extern_coex + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .literal.hal_crypto_clr_key_entry + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_using_key_idx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_set_key_entry + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_is_key_valid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_key_entry + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_mgmt_rx_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.hal_crypto_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .text.hal_crypto_get_using_key_idx + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .literal.mac_tx_set_plcp0 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_tx_set_duration + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_tx_set_pti + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_ppdu + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tx_config_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_txq_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_txq_invalid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_cca + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_disable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_enable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_rxbuf_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_disable_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_mac + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislpiram.8.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.10.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_txrx_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_rxq_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.mac_rxbuf_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.12.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.13.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.14.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_set_policy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_clr_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_get_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.wDev_Mesh_Disable_Tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_get_tsf_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_set_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_reset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_set_csi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.15.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.16.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_rx_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_sta_beacon_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_disable_sta_beacon_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_set_sta_beacon_filter + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_enable_sta_dump_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_beacon_ie_crc_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_beacon_ie_crc_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_rx_disable_bssid_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_rx_enable_bssid_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .literal.hal_mac_ftm_get_t3 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_tx_set_plcp0 + 0x0000000000000000 0xc7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_tx_set_duration + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.5 0x0000000000000000 0x4f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifi0iram.7 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_disable_mac + 0x0000000000000000 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_enable_mac + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislpiram.8 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.9 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.10 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.mac_rxbuf_disable + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.11 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.14 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_clr_bssid + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.wDev_Mesh_Disable_Tsf + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_tsf_set_time + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_set_csi + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .wifislprxiram.15 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_rx_enable + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_mac_rx_disable + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_enable_sta_beacon_filter + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_set_sta_beacon_filter + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_enable_sta_dump_beacon + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_beacon_ie_crc_get + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_beacon_ie_crc_set + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_rx_disable_bssid_check + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .text.hal_rx_enable_bssid_check + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .iram1.2.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.2 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.3 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.4 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .wifirxiram.5 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .iram1.6 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .literal.mac_tx_set_plcp1 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_plcp2 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_htsig + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_fill_hwtxop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_txop_q + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_clr_txq_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_pmd + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_attenna_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_mac_rate_autoack_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .text.mac_tx_set_plcp2 + 0x0000000000000000 0x4f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .wifi0iram.3 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .literal.hal_sniffer_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_set_promis + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_clr_statistics + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_set_promis_misc_pkt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .text.hal_sniffer_rx_clr_statistics + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .literal.hal_enable_sta_tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.2.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .iram1.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_timer_update_by_rtc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_tsf_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_enable_tsf_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_tsf_timer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_enable_sta_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tbtt_ahead_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_get_sta_next_tbtt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.hal_set_sta_tsf_wakeup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.8.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.10.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.12.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.13.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.14.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.15.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.16.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.17.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.18.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.19.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.20.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.21.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.22.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.23.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.24.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.25.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.26.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.27.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.28.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.29.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.30.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.31.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.32.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.33.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_set_tsf_timer + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_enable_tsf_timer + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_disable_tsf_timer + 0x0000000000000000 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .text.hal_get_sta_next_tbtt + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.7 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.8 + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.9 + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.10 + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.11 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.13 + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.15 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.16 + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.17 + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.18 + 0x0000000000000000 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.19 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.20 + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.21 + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.22 + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.23 + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.24 + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.25 + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .wifislpiram.29 + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .literal.prvReturnItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvAcquireItemNoSplit + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetFreeSize + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x0000000000000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGeneric + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x0000000000000000 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x0000000000000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateStatic + 0x0000000000000000 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x0000000000000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSend + 0x0000000000000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceive + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItem + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCanRead + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemAvail + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x0000000000000000 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemByteBuf.str1.4 + 0x0000000000000000 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x0000000000000000 0x4f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemByteBuf.str1.4 + 0x0000000000000000 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x0000000000000000 0x101 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x0000000000000000 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemDefault.str1.4 + 0x0000000000000000 0x165 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x0000000000000000 0x144 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.4 + 0x0000000000000000 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x0000000000000000 0x190 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x0000000000000000 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvAcquireItemNoSplit + 0x0000000000000000 0xb1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x0000000000000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000000000000 0x126 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000000000000 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetFreeSize.str1.4 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x0000000000000000 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x0000000000000000 0xc4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x0000000000000000 0x8d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x0000000000000000 0xfc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000000000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.4 + 0x0000000000000000 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGeneric + 0x0000000000000000 0x14d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x0000000000000000 0xe9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreate.str1.4 + 0x0000000000000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x0000000000000000 0xb6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreateStatic.str1.4 + 0x0000000000000000 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x0000000000000000 0xaf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.4 + 0x0000000000000000 0x95 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x122 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendComplete.str1.4 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0x7c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSend.str1.4 + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSend + 0x0000000000000000 0x114 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x0000000000000000 0xc8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceive + 0x0000000000000000 0x42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x0000000000000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x0000000000000000 0x71 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0x96 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x96 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x60 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItem + 0x0000000000000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x0000000000000000 0x5a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x0000000000000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x77 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCanRead + 0x0000000000000000 0x29 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x77 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0x72 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x47 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$8 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$9 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$11 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$12 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$14 + 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$17 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$18 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$19 + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$21 + 0x0000000000000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$22 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$25 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$29 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$30 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$31 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$32 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$33 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$34 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$35 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x0000000000000000 0x400 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x0000000000000000 0x3c53 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x0000000000000000 0x3c9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x0000000000000000 0x1e9f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x0000000000000000 0x168 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x0000000000000000 0x188 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x0000000000000000 0x392e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_str 0x0000000000000000 0xd42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_enable_rom_secure_download_mode + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x0000000000000000 0x3b4 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x0000000000000000 0x184 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x0000000000000000 0x15 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x0000000000000000 0x452 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x0000000000000000 0x5aa esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.check_iomux_pins_oct + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.check_iomux_pins_quad + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_uses_iomux_pins + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.alloc_dma_chan + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.dma_chan_free + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_oct + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_quad + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x0000000000000000 0x18c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_main_set_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_free + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.check_iomux_pins_oct + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x0000000000000000 0x10a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.dma_chan_free + 0x0000000000000000 0x59 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.bus_iomux_pins_set_oct.str1.4 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set_oct + 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x0000000000000000 0xce esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xb3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x0000000000000000 0x83 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x2c1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0xb45 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x124 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x0000000000000000 0x282 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$2 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$3 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$5 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$7 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.bus_ctx 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.s_mainbus + 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x0000000000000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x0000000000000000 0x280 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x50b0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x53c esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0x123b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0x110 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x380e esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x252f esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_init_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26.literal + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.28.literal + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32.literal + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.35.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.36.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x0000000000000000 0x99 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x0000000000000000 0x46 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.23 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xf2 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26 0x0000000000000000 0xe1 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.28 0x0000000000000000 0x16e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29 0x0000000000000000 0xa esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32 0x0000000000000000 0xbd esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34 0x0000000000000000 0xa7 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.35 0x0000000000000000 0x6a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.36 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.2 0x0000000000000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.0.literal + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.1.literal + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.3.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.7.literal + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.8.literal + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9.literal + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.s_flash_set_qio_pins + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.enable_qio_mode + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.0 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.1 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.3 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.4 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.5 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.7 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.8 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .iram1.9 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.s_flash_set_qio_pins + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x0000000000000000 0x51 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x0000000000000000 0x73 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_flash_qe_support_list + 0x0000000000000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.esp_partition_verify + 0x0000000000000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x0000000000000000 0x3c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x0000000000000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x0000000000000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0x84 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.4 + 0x0000000000000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0x124 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x0000000000000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x0000000000000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x4c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.get_ota_ops_entry + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x0000000000000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x0000000000000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x0000000000000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x0000000000000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x0000000000000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x62 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xde esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xb5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x17a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x0000000000000000 0xc5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x0000000000000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x0000000000000000 0x2d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x0000000000000000 0x8d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x0000000000000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x0000000000000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x0000000000000000 0x96 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x0000000000000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x0000000000000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x0000000000000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x0000000000000000 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x0000000000000000 0xdc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x0000000000000000 0xe6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0x99 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xd2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.aes_hal_transform_block + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_transform_block + 0x0000000000000000 0x81 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .text.lldesc_get_received_len + 0x0000000000000000 0x2a esp-idf/soc/libsoc.a(lldesc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_efuse_mac_get_custom + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x0000000000000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x0000000000000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.gdma_install_tx_interrupt + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_install_rx_interrupt + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .iram1.3.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .iram1.2.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_get_free_m2m_trig_id_mask + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_apply_strategy + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_register_tx_event_callbacks + 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_register_rx_event_callbacks + 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_stop + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_append + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.gdma_reset + 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_tx_interrupt + 0x0000000000000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_install_rx_interrupt + 0x0000000000000000 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .iram1.3 0x0000000000000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .iram1.2 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_get_free_m2m_trig_id_mask + 0x0000000000000000 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_apply_strategy + 0x0000000000000000 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.gdma_register_tx_event_callbacks.str1.4 + 0x0000000000000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_tx_event_callbacks + 0x0000000000000000 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_register_rx_event_callbacks + 0x0000000000000000 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_stop + 0x0000000000000000 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_append + 0x0000000000000000 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_reset + 0x0000000000000000 0xda esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$0 + 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$1 + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$2 + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$4 + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$5 + 0x0000000000000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$6 + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$7 + 0x0000000000000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$8 + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$10 + 0x0000000000000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .literal.esp_crypto_ds_lock_acquire + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_ds_lock_release + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_hmac_lock_acquire + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_hmac_lock_release + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_acquire + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_release + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_acquire + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_release + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .literal.wpa_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa2_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wps_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.sc_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.core_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.coexist_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wapi_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.mesh_printf + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.rtc_printf + 0x0000000000000000 0x7 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa2_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa2_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wps_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wps_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.sc_printf.str1.4 + 0x0000000000000000 0xc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.sc_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.core_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.core_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.coexist_printf.str1.4 + 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.coexist_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wapi_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wapi_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.mesh_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.mesh_printf + 0x0000000000000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .iram1.4.literal + 0x0000000000000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.5.literal + 0x0000000000000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_is_initialized + 0x0000000000000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x40 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.4 0x0000000000000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .iram1.5 0x0000000000000000 0x23 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_is_initialized + 0x0000000000000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x0000000000000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x0000000000000000 0xd2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x9e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.3 0x0000000000000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.dhcp_search_ip_on_mac + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.esp_netif_action_join_ip6_multicast_group + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_leave_ip6_multicast_group + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_add_ip6_address + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_remove_ip6_address + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_join_ip6_multicast_group + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_leave_ip6_multicast_group + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_add_ip6_address + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_remove_ip6_address + 0x0000000000000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ppp_config + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_soft_ap_ip + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_ap + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.wlanif_init_ap + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_ap + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.ethernet_low_level_output + 0x0000000000000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_init + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x0000000000000000 0x81 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_input + 0x0000000000000000 0x5f esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.4 + 0x0000000000000000 0x4e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_init + 0x0000000000000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_info 0x0000000000000000 0xb0d esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_abbrev 0x0000000000000000 0x2be esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_loc 0x0000000000000000 0x262 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_line 0x0000000000000000 0x81d esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_str 0x0000000000000000 0x702 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_rep_request + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_send_bss_transition_mgmt_query + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_mbo_update_non_pref_chan + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.esp_wifi_unregister_wpa3_cb + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wifi_unregister_wpa3_cb + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.crypto_rng_wrapper + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_pubkey_formatted + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_param + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_byname + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_affine_coordinates + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_get_order + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_key_compare + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_debug_print_point + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_public_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_priv_key_der + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_from_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_private_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_publickey_buf + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_write_pubkey_der + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_key + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_curve_id + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdh + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdsa_get_sign + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_edcsa_sign_verify + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_parse_subpub_key + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_is_ec_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_gen_keypair + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.mbedtls_pk_write_pubkey_formatted + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_pk_write_formatted_pubkey_der + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_write_pub_key + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_rng_wrapper + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_pubkey_formatted + 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_param + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_byname + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_affine_coordinates + 0x0000000000000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_get_order + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_key_compare + 0x0000000000000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_point + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_public_key + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_priv_key_der + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_from_key + 0x0000000000000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_private_key + 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_publickey_buf + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_write_pubkey_der + 0x0000000000000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_key + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_mbedtls_to_nist_group_id + 0x0000000000000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_curve_id + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdh + 0x0000000000000000 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdsa_get_sign + 0x0000000000000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_edcsa_sign_verify + 0x0000000000000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_ec_key + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_parse_subpub_key + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_is_ec_key + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_gen_keypair + 0x0000000000000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.mbedtls_pk_write_pubkey_formatted + 0x0000000000000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_pk_write_formatted_pubkey_der + 0x0000000000000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_write_pub_key + 0x0000000000000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.eloop_cancel_timeout_one + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_is_timeout_registered + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_deplete_timeout + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_replenish_timeout + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_cancel_timeout_one + 0x0000000000000000 0xa5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_is_timeout_registered + 0x0000000000000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_deplete_timeout + 0x0000000000000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_replenish_timeout + 0x0000000000000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.hostapd_config_defaults_bss + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_defaults + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x0000000000000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.wpa_auth_sm_event + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_for_each_sta + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x0000000000000000 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_cb + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.hostapd_free_stas + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_cb + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_for_each_sta + 0x0000000000000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.hostapd_free_stas + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.sae_state_txt + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.4 + 0x0000000000000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.dragonfly_get_rand_2_to_r_1 + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.dragonfly_min_pwe_loop_iter + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.dragonfly_generate_scalar + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_get_rand_2_to_r_1 + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_suitable_group + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_min_pwe_loop_iter + 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_generate_scalar + 0x0000000000000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.wpa_insert_pmkid + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_cipher_rsc_len + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_insert_pmkid + 0x0000000000000000 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_rsc_len + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .literal.dh_init + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x0000000000000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x0000000000000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_sm_set_pmk + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x0000000000000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpabuf_resize + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_clear_free + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x0000000000000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_clear_free + 0x0000000000000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x0000000000000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpa2_api_lock + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_api_unlock + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_rxq_init + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_rxq_enqueue + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_rxq_dequeue + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_rxq_deinit + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_set_eap_state + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_start_eapol_internal + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_enable_fn + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_disable + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_post + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_peer_sm_deinit + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_peer_sm_init + 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_disable_fn + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_start_eapol + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_sm_rx_eapol + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_ent_rx_eapol + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_sm_send_eapol + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_sm_process_request + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.eap_sm_rx_eapol_internal + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa2_task + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_enable + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_cert_key + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_cert_key + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_ca_cert + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_ca_cert + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_identity + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_identity + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_username + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_username + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_password + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_password + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_new_password + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_clear_new_password + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_disable_time_check + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wifi_sta_get_enterprise_disable_time_check + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_get_disable_time_check + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_ttls_phase2_method + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_pac_file + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_ent_set_fast_phase1_params + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.esp_wifi_sta_wpa2_use_default_cert_bundle + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_api_lock + 0x0000000000000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_api_unlock + 0x0000000000000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_rxq_init + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_rxq_enqueue + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_rxq_dequeue + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_rxq_deinit + 0x0000000000000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_set_eap_state + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.wpa2_start_eapol_internal.str1.4 + 0x0000000000000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_start_eapol_internal + 0x0000000000000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_enable_fn + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_disable + 0x0000000000000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_post + 0x0000000000000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.eap_peer_sm_deinit.str1.4 + 0x0000000000000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_peer_sm_deinit + 0x0000000000000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.eap_peer_sm_init.str1.4 + 0x0000000000000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_peer_sm_init + 0x0000000000000000 0xfe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_disable_fn + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_start_eapol + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_sm_rx_eapol + 0x0000000000000000 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_ent_rx_eapol + 0x0000000000000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_sm_send_eapol + 0x0000000000000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.eap_sm_process_request.str1.4 + 0x0000000000000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_sm_process_request + 0x0000000000000000 0x1fa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.eap_sm_rx_eapol_internal.str1.4 + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.eap_sm_rx_eapol_internal + 0x0000000000000000 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wpa2_task + 0x0000000000000000 0x107 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_enable + 0x0000000000000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_cert_key + 0x0000000000000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_cert_key + 0x0000000000000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_ca_cert + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_ca_cert + 0x0000000000000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_identity + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_identity + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_username + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_username + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_password + 0x0000000000000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_password + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_new_password + 0x0000000000000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_clear_new_password + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_disable_time_check + 0x0000000000000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.wifi_sta_get_enterprise_disable_time_check + 0x0000000000000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_get_disable_time_check + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.esp_wifi_sta_wpa2_ent_set_ttls_phase2_method.str1.4 + 0x0000000000000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_ttls_phase2_method + 0x0000000000000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_set_suiteb_192bit_certification + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_pac_file + 0x0000000000000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .rodata.esp_wifi_sta_wpa2_ent_set_fast_phase1_params.str1.4 + 0x0000000000000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_ent_set_fast_phase1_params + 0x0000000000000000 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text.esp_wifi_sta_wpa2_use_default_cert_bundle + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wpa2_rxq + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .data.s_disable_time_check + 0x0000000000000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wifi_wpa2_sync_sem + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wpa2_api_lock + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .data.s_wpa2_state + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wpa2_queue + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wpa2_task_hdl + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.s_wpa2_data_lock + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .text.wpa_sm_get_beacon_ie + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.tls_mbedtls_cleanup + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_conn_delete + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_key_derivation + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_read + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_write + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_enable_sha1_config + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_ca_cert + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_pki_context + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_set_ciphersuite + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_client_config + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_create_mbedtls_handle + 0x0000000000000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_prf + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_init + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_deinit + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_init + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_deinit + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_handshake + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_encrypt + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_decrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_version + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_cipher + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_set_params + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_export_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_shutdown + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_get_random + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_cleanup + 0x0000000000000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_conn_delete + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_key_derivation + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_read + 0x0000000000000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_write + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_enable_sha1_config + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_ca_cert + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_pki_context + 0x0000000000000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_set_ciphersuite + 0x0000000000000000 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.set_client_config.str1.4 + 0x0000000000000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_client_config + 0x0000000000000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.tls_create_mbedtls_handle.str1.4 + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_create_mbedtls_handle + 0x0000000000000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_prf + 0x0000000000000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_init + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_deinit + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_init + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_deinit + 0x0000000000000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_errors + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_established + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_verify + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_verify + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_handshake + 0x0000000000000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_server_handshake + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_encrypt + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_decrypt + 0x0000000000000000 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_resumed + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_cipher_list + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_version + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_cipher + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_enable_workaround + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_failed + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_read_alerts + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_write_alerts + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_params + 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_params + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_session_ticket_cb + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_export_key + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_eap_fast_key + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_client_hello_ext + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_shutdown + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_random + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_ciphersuite_preference + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_mbedtls_x509_crt_profile + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data.tls_sig_algs_for_eap + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss.tls_instance_count + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_frame 0x0000000000000000 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_info 0x0000000000000000 0x48c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_abbrev 0x0000000000000000 0x5cd esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_loc 0x0000000000000000 0xe3e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_aranges + 0x0000000000000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_ranges 0x0000000000000000 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_line 0x0000000000000000 0x1e7e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_str 0x0000000000000000 0x350f esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.crypto_bignum_to_string + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_addmod + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_free_buffer + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_to_string + 0x0000000000000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_addmod + 0x0000000000000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_free_buffer + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.eap_copy_buf + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_eap_method + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_methods + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_type + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_type + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_types + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_alloc + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_free + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_register + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_unregister_methods + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_register_methods + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_init + 0x0000000000000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_deinit + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_init + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_get_method_name + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_deinit + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_abort + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_allowed_method + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_allowMethod + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_identity_resp + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_nak + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_identity + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_new_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_buildIdentity + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_identity + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password2 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_new_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_set_config_blob + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_blob + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_config_allowed_method + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_phase2_type + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_set_scard_pin + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_scard_identity + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_copy_buf + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_eap_method + 0x0000000000000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_methods + 0x0000000000000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_type + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_type + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_types + 0x0000000000000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_alloc + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_free + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_register + 0x0000000000000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_unregister_methods + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_register_methods + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_deinit_prev_method + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_config_init.str1.4 + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_init + 0x0000000000000000 0x1c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_deinit + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_blob_init.str1.4 + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_init + 0x0000000000000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_sm_get_method_name.str1.4 + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_method_name + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_deinit + 0x0000000000000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_abort + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_method + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_allowMethod + 0x0000000000000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_identity_resp + 0x0000000000000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_nak + 0x0000000000000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request + 0x0000000000000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_identity + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_password + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_new_password + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_buildIdentity + 0x0000000000000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_identity + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password2 + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_new_password + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_set_config_blob + 0x0000000000000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_blob + 0x0000000000000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.config_methods + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.eap_methods + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.esp_crt_bundle_attach_fn + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_default_cert_bundle + 0x0000000000000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_suiteb_certification + 0x0000000000000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_phase1_options + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ttls_phase2_type + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity_len + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_frame 0x0000000000000000 0x3a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_info 0x0000000000000000 0x27e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_abbrev 0x0000000000000000 0x51f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_loc 0x0000000000000000 0x125d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_aranges + 0x0000000000000000 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_ranges 0x0000000000000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_line 0x0000000000000000 0x2a27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_str 0x0000000000000000 0x131a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_hdr_validate + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_msg_alloc + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_len_valid + 0x0000000000000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_validate + 0x0000000000000000 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_msg_alloc + 0x0000000000000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_update_len + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_id + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_type + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_info 0x0000000000000000 0xa76 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_abbrev 0x0000000000000000 0x285 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_loc 0x0000000000000000 0x8b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_line 0x0000000000000000 0xb1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_str 0x0000000000000000 0x581 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_mschapv2_getKey + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_check_config + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_copy_challenge + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge_reply + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_deinit + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_password_changed + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_success + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure_txt + 0x0000000000000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_change_password + 0x0000000000000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_process + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_init + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peer_mschapv2_register + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_mslen + 0x0000000000000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_isKeyAvailable + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_getKey + 0x0000000000000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_config + 0x0000000000000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_copy_challenge + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge_reply + 0x0000000000000000 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge + 0x0000000000000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_deinit + 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_password_changed + 0x0000000000000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_success + 0x0000000000000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_mschapv2_failure_txt.str1.4 + 0x0000000000000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure_txt + 0x0000000000000000 0x17b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_change_password + 0x0000000000000000 0x1e7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure + 0x0000000000000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_process + 0x0000000000000000 0xf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_init + 0x0000000000000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_peer_mschapv2_register.str1.4 + 0x0000000000000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_peer_mschapv2_register + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_frame 0x0000000000000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_info 0x0000000000000000 0x2756 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_abbrev 0x0000000000000000 0x4d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_loc 0x0000000000000000 0x1010 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_aranges + 0x0000000000000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_ranges 0x0000000000000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_line 0x0000000000000000 0x224b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_str 0x0000000000000000 0x10dc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peap_get_session_id + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init_for_reauth + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit_for_reauth + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_has_reauth_data + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_status + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_getKey + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_isk + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_derive_cmk + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_validate_cryptobinding + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_parse_phase1 + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_nak + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peapv2_tlv_eap_payload + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_add_cryptobinding + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_result + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_process + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_phase2_request + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_decrypt + 0x0000000000000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_process + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peer_peap_register + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_isKeyAvailable + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_session_id + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init_for_reauth + 0x0000000000000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit_for_reauth + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_has_reauth_data + 0x0000000000000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_get_status.str1.4 + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_status + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata 0x0000000000000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_getKey.str1.4 + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_getKey + 0x0000000000000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_isk + 0x0000000000000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_derive_cmk.str1.4 + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_derive_cmk + 0x0000000000000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_validate_cryptobinding + 0x0000000000000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit + 0x0000000000000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_parse_phase1.str1.4 + 0x0000000000000000 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_parse_phase1 + 0x0000000000000000 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_init.str1.4 + 0x0000000000000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init + 0x0000000000000000 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_nak + 0x0000000000000000 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peapv2_tlv_eap_payload + 0x0000000000000000 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_add_cryptobinding + 0x0000000000000000 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_result + 0x0000000000000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_process + 0x0000000000000000 0x15f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_phase2_request + 0x0000000000000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_decrypt + 0x0000000000000000 0x404 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_process.str1.4 + 0x0000000000000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_process + 0x0000000000000000 0x1ba esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peer_peap_register.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peer_peap_register + 0x0000000000000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_frame 0x0000000000000000 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_info 0x0000000000000000 0x3bdf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_abbrev 0x0000000000000000 0x4cd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_loc 0x0000000000000000 0x1e1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_aranges + 0x0000000000000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_line 0x0000000000000000 0x3c18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_str 0x0000000000000000 0x1290 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_prfplus + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text.peap_prfplus + 0x0000000000000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_info 0x0000000000000000 0x35f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_abbrev 0x0000000000000000 0x167 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_loc 0x0000000000000000 0x13b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_line 0x0000000000000000 0x5b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_str 0x0000000000000000 0x28a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .literal.eap_tls_getKey + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_failure + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_success + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_process + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_deinit + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_init + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_peer_tls_register + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_isKeyAvailable + 0x0000000000000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_getKey + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_failure + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_tls_success.str1.4 + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_success + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_process + 0x0000000000000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_deinit + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_init + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_peer_tls_register.str1.4 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_peer_tls_register + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_frame 0x0000000000000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_info 0x0000000000000000 0x12dc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_abbrev 0x0000000000000000 0x2fc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_loc 0x0000000000000000 0x281 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_aranges + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_ranges 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_line 0x0000000000000000 0xa8b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_str 0x0000000000000000 0xbe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_params_flags + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_check_blob + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_init_connection + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_msg_alloc + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_init + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_key + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_session_id + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_build_ack + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_status + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_init + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_input + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reassemble_fragment + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_data_reassemble + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_input + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_output + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_deinit + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_output + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_helper + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reauth_init + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_decrypt + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_encrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_select_phase2_methods + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_phase2_nak + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_params_flags.str1.4 + 0x0000000000000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_flags + 0x0000000000000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf1 + 0x0000000000000000 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_check_blob + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf + 0x0000000000000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_init_connection + 0x0000000000000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_msg_alloc + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_ssl_init.str1.4 + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_init + 0x0000000000000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_key + 0x0000000000000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_session_id + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_build_ack + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_status.str1.4 + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_status + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_init + 0x0000000000000000 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_input + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reassemble_fragment + 0x0000000000000000 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_data_reassemble + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_input + 0x0000000000000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_output + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_deinit + 0x0000000000000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_process_output.str1.4 + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_output + 0x0000000000000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_helper + 0x0000000000000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reauth_init + 0x0000000000000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_decrypt + 0x0000000000000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_encrypt + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_select_phase2_methods + 0x0000000000000000 0x109 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_phase2_nak + 0x0000000000000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_frame 0x0000000000000000 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_info 0x0000000000000000 0x2b19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_abbrev 0x0000000000000000 0x50b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_loc 0x0000000000000000 0x119c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_ranges 0x0000000000000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_line 0x0000000000000000 0x25fb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_str 0x0000000000000000 0x1312 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_ttls_fake_identity_request + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_emsk + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_session_id + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_getKey + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init_for_reauth + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit_for_reauth + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_has_reauth_data + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_status + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_encrypt_response + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap_method + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_encapsulate + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_add + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_pap + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_challenge + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschapv2 + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschap + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_chap + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_identity_request + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_eap + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_start + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_attr_eap + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avp + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avps + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_mschapv2 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_decrypted + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_decrypt + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_v0_derive_key + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_handshake + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_peer_ttls_register + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_deinit + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_select_eap_method + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_check_auth_status + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_isKeyAvailable + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_fake_identity_request + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_emsk + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_session_id + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_getKey + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init_for_reauth + 0x0000000000000000 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit_for_reauth + 0x0000000000000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_has_reauth_data + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_get_status.str1.4 + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_status + 0x0000000000000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_process + 0x0000000000000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_encrypt_response + 0x0000000000000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap_method + 0x0000000000000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_hdr + 0x0000000000000000 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_encapsulate + 0x0000000000000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap + 0x0000000000000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_add + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_pap + 0x0000000000000000 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_implicit_challenge.str1.4 + 0x0000000000000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_challenge + 0x0000000000000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschapv2 + 0x0000000000000000 0x18e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschap + 0x0000000000000000 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_chap + 0x0000000000000000 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_phase2_request.str1.4 + 0x0000000000000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request + 0x0000000000000000 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_identity_request + 0x0000000000000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_eap + 0x0000000000000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_start + 0x0000000000000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_attr_eap + 0x0000000000000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avp + 0x0000000000000000 0x105 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avps + 0x0000000000000000 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_mschapv2 + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_decrypted + 0x0000000000000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_decrypt + 0x0000000000000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_v0_derive_key.str1.4 + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_v0_derive_key + 0x0000000000000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_handshake + 0x0000000000000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process + 0x0000000000000000 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit + 0x0000000000000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_init.str1.4 + 0x0000000000000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init + 0x0000000000000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_peer_ttls_register.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_peer_ttls_register + 0x0000000000000000 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_frame 0x0000000000000000 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_info 0x0000000000000000 0x41fd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_abbrev 0x0000000000000000 0x486 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_loc 0x0000000000000000 0x21a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_aranges + 0x0000000000000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_ranges 0x0000000000000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_line 0x0000000000000000 0x3d07 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_str 0x0000000000000000 0x1499 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.mschapv2_derive_response + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.mschapv2_verify_auth_response + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_remove_domain + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_derive_response + 0x0000000000000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_verify_auth_response + 0x0000000000000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_info 0x0000000000000000 0x5a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_abbrev 0x0000000000000000 0x171 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_loc 0x0000000000000000 0x156 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_line 0x0000000000000000 0x6bd esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_str 0x0000000000000000 0x3c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.pmksa_cache_list + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.4 + 0x0000000000000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x0000000000000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata.wpa_snprintf_hex_uppercase.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata.wpa_snprintf_hex.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x0000000000000000 0x3f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x0000000000000000 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x0000000000000000 0x3c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x0000000000000000 0x541 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_str 0x0000000000000000 0x289 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.utf8_to_ucs2 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.challenge_hash + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.hash_nt_password_hash + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.challenge_response + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response_pwhash + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response_pwhash + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_challenge_response + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_master_key + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_asymetric_start_key + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.encrypt_pw_block_with_password_hash + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.new_password_encrypted_with_old_nt_password_hash + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash_encrypted_with_block + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.utf8_to_ucs2 + 0x0000000000000000 0xc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_hash + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash + 0x0000000000000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.hash_nt_password_hash + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_response + 0x0000000000000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response + 0x0000000000000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response_pwhash + 0x0000000000000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response_pwhash + 0x0000000000000000 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response + 0x0000000000000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_challenge_response + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_master_key + 0x0000000000000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_asymetric_start_key + 0x0000000000000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.encrypt_pw_block_with_password_hash + 0x0000000000000000 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.new_password_encrypted_with_old_nt_password_hash + 0x0000000000000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash_encrypted_with_block + 0x0000000000000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad2$0 + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$1 + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic3$2 + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad1$3 + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$4 + 0x0000000000000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$5 + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$6 + 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_frame 0x0000000000000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_info 0x0000000000000000 0x129e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_abbrev 0x0000000000000000 0x293 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_loc 0x0000000000000000 0x7c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_aranges + 0x0000000000000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_ranges 0x0000000000000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_line 0x0000000000000000 0x103c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_str 0x0000000000000000 0x65c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.MD4Init + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Transform + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Update + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Pad + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Final + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.md4_vector + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Init 0x0000000000000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Transform + 0x0000000000000000 0x45a esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Update + 0x0000000000000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Pad 0x0000000000000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Final + 0x0000000000000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.md4_vector + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .rodata.PADDING + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_info 0x0000000000000000 0x5d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_abbrev 0x0000000000000000 0x1d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_loc 0x0000000000000000 0x430 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_line 0x0000000000000000 0xa9a esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_str 0x0000000000000000 0x31c esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.chap_md5 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text.chap_md5 + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_info 0x0000000000000000 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_abbrev 0x0000000000000000 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_loc 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_line 0x0000000000000000 0x352 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_str 0x0000000000000000 0x23b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .literal.desfunc + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.cookey + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.deskey + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_encrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_key_setup + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_encrypt + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_decrypt + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_key_setup + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_encrypt + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_decrypt + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.desfunc 0x0000000000000000 0x1e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.cookey 0x0000000000000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.deskey 0x0000000000000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_encrypt + 0x0000000000000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_key_setup + 0x0000000000000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_encrypt + 0x0000000000000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_decrypt + 0x0000000000000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_key_setup + 0x0000000000000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_encrypt + 0x0000000000000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_decrypt + 0x0000000000000000 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP8 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP7 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP6 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP5 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP4 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP3 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP2 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP1 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc2 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.totrot + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc1 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bigbyte + 0x0000000000000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bytebit + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_info 0x0000000000000000 0xe3e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_abbrev 0x0000000000000000 0x2f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_loc 0x0000000000000000 0x10bb esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_aranges + 0x0000000000000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_ranges 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_line 0x0000000000000000 0x1cb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_str 0x0000000000000000 0x395 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.ssl_check_record_type + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_build_record_nonce + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_extract_add_data_from_record + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_consume_current_message + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_check_ctr_renegotiate + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_check_record + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_encrypt_buf + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_decrypt_buf + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_prepare_record_content + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_fetch_input + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_start_handshake_msg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_prepare_handshake_record + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_message_type + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_update_out_pointers + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_flush_output + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_reset_in_out_pointers + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_get_record_expansion + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_transform_free + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_record + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_handshake_msg_ext + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_finish_handshake_msg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_change_cipher_spec + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_alert_message + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_fatal_handshake_failure + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_tls12_handle_hs_message_post_handshake + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_handle_hs_message_post_handshake + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_close_notify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_write_real + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_parse_record_header + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_get_next_record + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read_record + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_parse_change_cipher_spec + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_pending_alert + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_transform_aead_dynamic_iv_is_explicit + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_get_hs_total_len + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_record_type + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_record_is_in_progress + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_transform_get_explicit_iv_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_build_record_nonce + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_extract_add_data_from_record + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_consume_current_message + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_ctr_renegotiate + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_timer + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_timer + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_record + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_encrypt_buf + 0x0000000000000000 0x37a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_decrypt_buf + 0x0000000000000000 0x422 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_prepare_record_content + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_fetch_input + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_start_handshake_msg + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_prepare_handshake_record + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_handshake_status + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_message_type + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_out_pointers + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_flush_output + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_in_pointers + 0x0000000000000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_reset_in_out_pointers + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_bytes_avail + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_pending + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_record_expansion + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_transform_free + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_inbound_transform + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_outbound_transform + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_version + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_record + 0x0000000000000000 0x14c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_handshake_msg_ext + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_finish_handshake_msg + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_change_cipher_spec + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_alert_message + 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_fatal_handshake_failure + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_tls12_handle_hs_message_post_handshake + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_handle_hs_message_post_handshake + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_close_notify + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_write_real + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_version + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_parse_record_header + 0x0000000000000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_get_next_record + 0x0000000000000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_record + 0x0000000000000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_parse_change_cipher_spec + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read + 0x0000000000000000 0x186 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_pending_alert + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_pend_fatal_alert + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_frame 0x0000000000000000 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_info 0x0000000000000000 0x49ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_abbrev 0x0000000000000000 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_loc 0x0000000000000000 0x21dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_aranges + 0x0000000000000000 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_ranges 0x0000000000000000 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_line 0x0000000000000000 0x45f9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_str 0x0000000000000000 0x2fc7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_mfl_code_to_length + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_conf_version_check + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_conf_check + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_set_handshake_prfs + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_get_type + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_key_cert_free + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_append_key_cert + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_generic + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha256 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha384 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_compute_master + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha256 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha384 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_start + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_handshake_params_init + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_session_save + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_save + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_srv_check_client_no_crt_notification + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_check_peer_crt_unchanged + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_session_load + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_load + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_clear_peer_cert + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_prepare_handshake_step + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_write_hello_request + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha384 + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha256 + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha256 + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha256 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha384 + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha384 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_parse_certificate_chain + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls_prf + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_extension_mask + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_optimize_checksum + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_add_hs_msg_to_checksum + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_reset_checksum + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_transform_init + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_msg_layer + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_timer_cb + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_own_cert + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_own_cert + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_mode_from_transform + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_mode_from_ciphersuite + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_populate_transform + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hostname + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_alpn_protocols + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_max_frag_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation_period + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ciphersuite + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_version + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_input_max_frag_len + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_output_max_frag_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_out_record_payload + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_in_record_payload + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_save + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_step + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_free + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_free + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_copy + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_session + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_session + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_handshake_init + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_setup + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_start_renegotiation + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_renegotiate + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_int + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_load + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_free + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_defaults + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_sig_from_pk + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_curve + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_cert_usage + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_parse_certificate_verify + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_handshake_transcript + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_sig_alg_ext + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_derive_keys + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_calc_verify_md + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_certificate + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_certificate + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_finished + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_finished + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_sig_alg_ext + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_server_name_ext + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_alpn_ext + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_alpn_ext + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_mfl_code_to_length + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_conf_version_check + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_conf_check + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_base_mode + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_actual_mode + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_set_handshake_prfs + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_coordinate + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_get_type + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_key_cert_free + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_append_key_cert + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_generic + 0x0000000000000000 0x199 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha256 + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha384 + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_compute_master.str1.4 + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_compute_master + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha256 + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha384 + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_start + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_handshake_params_init + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_save + 0x0000000000000000 0x168 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_save + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_srv_check_client_no_crt_notification + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_check_peer_crt_unchanged + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_load + 0x0000000000000000 0x217 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_load + 0x0000000000000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_clear_peer_cert + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_prepare_handshake_step + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_write_hello_request + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha384 + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha256 + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_calc_finished_tls_sha256.str1.4 + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha256 + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha256 + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha384 + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha384 + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_chain + 0x0000000000000000 0x186 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls_prf + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_id + 0x0000000000000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_mask + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_optimize_checksum + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_hdr_to_checksum + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_msg_to_checksum + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_reset_checksum + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_transform_init + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_msg_layer + 0x0000000000000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_endpoint + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_transport + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_badmac_limit + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_authmode + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_verify + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_rng + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dbg + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_bio + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_read_timeout + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_timer_cb + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_cache + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ciphersuites + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_profile + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_own_cert + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ca_chain + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_hs_sni + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_own_cert + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_ca_chain + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_dn_hints + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_authmode + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_verify + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_transform + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_ciphersuite + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_tls12_populate_transform.str1.4 + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_populate_transform + 0x0000000000000000 0x2ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sig_algs + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_groups + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hostname + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sni + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_alpn_protocols + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_alpn_protocol + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_req_ca_list + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_encrypt_then_mac + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_extended_master_secret + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_frag_len + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_legacy_renegotiation + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_enforced + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_period + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets_cb + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_export_keys_cb + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_verify_result + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id_from_ssl + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_version.str1.4 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_version + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_input_max_frag_len + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_output_max_frag_len + 0x0000000000000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_out_record_payload + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_in_record_payload + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_peer_cert + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_save + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_step + 0x0000000000000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_free + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_free + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_copy + 0x0000000000000000 0x9b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_session + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_session + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_handshake_init + 0x0000000000000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_setup + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_start_renegotiation + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_renegotiate + 0x0000000000000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_int + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_load + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_free + 0x0000000000000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_defaults + 0x0000000000000000 0xcd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_free + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk_alg + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_pk_alg_from_sig + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_md_alg_from_hash + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_hash_from_md_alg + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve_tls_id + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage.str1.4 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_cert_usage + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_verify + 0x0000000000000000 0x176 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_handshake_transcript + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_sig_alg_ext + 0x0000000000000000 0x15b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_derive_keys + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_calc_verify_md + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_certificate + 0x0000000000000000 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_certificate + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_finished + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_finished + 0x0000000000000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x0000000000000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_validate_ciphersuite + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_sig_alg_ext + 0x0000000000000000 0x10d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_server_name_ext + 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_alpn_ext + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_alpn_ext + 0x0000000000000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.tls_id_match_table + 0x0000000000000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_suiteb_groups + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_suiteb_sig_algs + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_suiteb_sig_algs + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_default_sig_algs + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_default_sig_algs + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_suiteb_ciphersuites + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_default_groups + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_serialized_session_header + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x0000000000000000 0xd78 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x0000000000000000 0x8c8d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x0000000000000000 0x61c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x0000000000000000 0x59b2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_aranges + 0x0000000000000000 0x490 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x0000000000000000 0x558 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x0000000000000000 0x974e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_str 0x0000000000000000 0x4322 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_write_supported_point_formats_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_max_fragment_length_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_encrypt_then_mac_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_extended_ms_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_renegotiation_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_session_ticket_ext + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_max_fragment_length_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_encrypt_then_mac_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_extended_ms_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_session_ticket_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_supported_point_formats_ext + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_certificate_request + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_hello_done + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_renegotiation_info + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_alpn_ext + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_hello + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_check_server_ecdh_params + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_get_ecdh_params_from_cert + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_ecdh_params + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_key_exchange + 0x0000000000000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_encrypted_pms + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_client_key_exchange + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_new_session_ticket + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_certificate_verify + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_tls12_write_client_hello_exts + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_handshake_client_step + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_supported_point_formats_ext + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_max_fragment_length_ext + 0x0000000000000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_extended_ms_ext + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_renegotiation_ext + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_session_ticket_ext + 0x0000000000000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_encrypt_then_mac_ext + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_extended_ms_ext + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_session_ticket_ext + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_supported_point_formats_ext + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_certificate_request + 0x0000000000000000 0x124 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_hello_done + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_renegotiation_info + 0x0000000000000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_alpn_ext + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_hello + 0x0000000000000000 0x40e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_check_server_ecdh_params + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_get_ecdh_params_from_cert + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_ecdh_params + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_key_exchange + 0x0000000000000000 0x382 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_encrypted_pms + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_client_key_exchange + 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_new_session_ticket + 0x0000000000000000 0x141 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_certificate_verify + 0x0000000000000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_tls12_write_client_hello_exts + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_handshake_client_step + 0x0000000000000000 0x17b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_frame 0x0000000000000000 0x280 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_info 0x0000000000000000 0x4ba2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_abbrev 0x0000000000000000 0x571 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_loc 0x0000000000000000 0x2647 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_aranges + 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_ranges 0x0000000000000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_line 0x0000000000000000 0x4539 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_str 0x0000000000000000 0x3020 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_supported_point_formats + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_max_fragment_length_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_encrypt_then_mac_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_extended_ms_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_extended_ms_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_session_ticket_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_supported_point_formats_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_renegotiation_ext + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_renegotiation_info + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_supported_groups_ext + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_handle_id_based_session_resumption + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_session_ticket_ext + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_check_key_curve + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_pick_cert + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_ciphersuite_match + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_client_hello + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_encrypt_then_mac_ext + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_hello + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_hello_done + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_new_session_ticket + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_prepare_server_key_exchange + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_certificate_request + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_certificate_verify + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_get_ecdh_params_from_cert + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_key_exchange + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_decrypt_encrypted_pms + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_encrypted_pms + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_client_key_exchange + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ssl_handshake_server_step + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_supported_point_formats + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_encrypt_then_mac_ext + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_extended_ms_ext + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_max_fragment_length_ext + 0x0000000000000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_extended_ms_ext + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_session_ticket_ext + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_supported_point_formats_ext + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_renegotiation_ext + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_renegotiation_info + 0x0000000000000000 0x5b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_supported_groups_ext + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_handle_id_based_session_resumption + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_session_ticket_ext + 0x0000000000000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_check_key_curve + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_pick_cert + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_ciphersuite_match + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .rodata 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_client_hello + 0x0000000000000000 0x5cc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_hello + 0x0000000000000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_hello_done + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_new_session_ticket + 0x0000000000000000 0x9d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_prepare_server_key_exchange + 0x0000000000000000 0x1ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_certificate_request + 0x0000000000000000 0x1b2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_certificate_verify + 0x0000000000000000 0x160 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_get_ecdh_params_from_cert + 0x0000000000000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_key_exchange + 0x0000000000000000 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_decrypt_encrypted_pms + 0x0000000000000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_encrypted_pms + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_client_key_exchange + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_handshake_server_step + 0x0000000000000000 0x163 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_conf_preference_order + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_frame 0x0000000000000000 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_info 0x0000000000000000 0x538f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_abbrev 0x0000000000000000 0x572 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_loc 0x0000000000000000 0x2ee1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_aranges + 0x0000000000000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_ranges 0x0000000000000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_line 0x0000000000000000 0x57bf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_str 0x0000000000000000 0x339a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_string + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_list_ciphersuites + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_name + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.ciphersuite_is_removed + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_string + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_id + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_list_ciphersuites + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_name.str1.4 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_name + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_alg + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_uses_ec + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_ciphersuites + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x889 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_definitions + 0x0000000000000000 0x3b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_preference + 0x0000000000000000 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x0000000000000000 0x993 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x0000000000000000 0x229 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x0000000000000000 0x414 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_aranges + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x0000000000000000 0x835 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_str 0x0000000000000000 0x12cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.ssl_generate_random + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_prepare_client_hello + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_client_hello_cipher_suites + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_hostname_ext + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_alpn_ext + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_supported_groups_ext + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_client_hello_body + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.mbedtls_ssl_write_client_hello + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_generate_random + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_prepare_client_hello + 0x0000000000000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_client_hello_cipher_suites + 0x0000000000000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_hostname_ext + 0x0000000000000000 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_alpn_ext + 0x0000000000000000 0xdd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_supported_groups_ext + 0x0000000000000000 0x191 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_client_hello_body + 0x0000000000000000 0x21a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.mbedtls_ssl_write_client_hello + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_frame 0x0000000000000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_info 0x0000000000000000 0x3233 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_abbrev 0x0000000000000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_loc 0x0000000000000000 0x17c4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_aranges + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_line 0x0000000000000000 0x1dde esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_str 0x0000000000000000 0x280d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.asn1_find_named_data + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.asn1_write_tagged_int + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_find_named_data + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_nonce_len + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.4 + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0x1da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_nopr + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_pr + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.ecdh_init_internal + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_setup_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_params_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_public_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_get_params_internal + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_make_params_internal + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_make_public_internal + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_setup + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_params + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_params + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_get_params + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_public + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_public + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_grp_id + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_init_internal + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_setup_internal + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_params_internal + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_public_internal + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_get_params_internal + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_params_internal + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_public_internal + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_setup + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_params + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_params + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_params + 0x0000000000000000 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_public + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_public + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdsa_sign + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_free + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_from_keypair + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_init + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_free + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_from_keypair + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.self_test_rng + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_sw_derive_y + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_list + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_write_binary + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_binary + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_point + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_point + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group_id + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_group + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.self_test_point + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair_base + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_read_key + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x0000000000000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_rng + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_adjust_exponent + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_sw_derive_y + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_list + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_grp_id_list + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_grp_id + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_tls_id + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_write_binary + 0x0000000000000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_binary + 0x0000000000000000 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_point + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_point + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group_id + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_group + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.self_test_point.str1.4 + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_point + 0x0000000000000000 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair_base + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_key + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_read_key + 0x0000000000000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_key + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.4 + 0x0000000000000000 0x38d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x0000000000000000 0x19c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data.state$0 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.init_done$1 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_supported_curves + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_check_bits + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.4 + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x0000000000000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_hash_info_get_block_size + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_hash_info_psa_from_md + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_hash_info_md_from_psa + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_get_block_size + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_psa_from_md + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .text.mbedtls_hash_info_md_from_psa + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.4 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0x1c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_restartable + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_decrypt + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_encrypt + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_check_pair + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_debug + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_ext + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_ext + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_can_do + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_restartable + 0x0000000000000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_restartable + 0x0000000000000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_decrypt + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_encrypt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_check_pair + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_bitlen + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.4 + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_ext + 0x0000000000000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_ext + 0x0000000000000000 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.rsa_alt_sign_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_decrypt_wrap + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_free_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_alloc_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_check_pair + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.mbedtls_pk_psa_rsa_sign_ext + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_can_do + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_get_bitlen + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_sign_wrap + 0x0000000000000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_free_wrap + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_alloc_wrap + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_check_pair + 0x0000000000000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.mbedtls_pk_psa_rsa_sign_ext + 0x0000000000000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.pk_get_ecparams + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_get_pk_alg + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_get_rsapubkey + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_group_from_specified + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_group_id_from_group + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_group_id_from_specified + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_use_ecparams + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_get_ecpubkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.asn1_get_nonzero_mpi + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs1_der + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_sec1_der + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_encrypted_der + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_load_file + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_subpubkey + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_keyfile + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_key + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_ecparams + 0x0000000000000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_pk_alg + 0x0000000000000000 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_rsapubkey + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.pk_group_from_specified.str1.4 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_group_from_specified + 0x0000000000000000 0x212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_group_id_from_group + 0x0000000000000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_group_id_from_specified + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_use_ecparams + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_ecpubkey + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.asn1_get_nonzero_mpi + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs1_der + 0x0000000000000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_sec1_der + 0x0000000000000000 0x1ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_unencrypted_der + 0x0000000000000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.pk_parse_key_pkcs8_encrypted_der.str1.4 + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_encrypted_der + 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_load_file.str1.4 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_load_file + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_subpubkey + 0x0000000000000000 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key.str1.4 + 0x0000000000000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key + 0x0000000000000000 0x366 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_keyfile + 0x0000000000000000 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.4 + 0x0000000000000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_key + 0x0000000000000000 0x1ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x0000000000000000 0x466b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x0000000000000000 0x46c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x0000000000000000 0x1fea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x0000000000000000 0x32ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_str 0x0000000000000000 0x1a3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_write_rsa_pubkey + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_pubkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_param + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_private + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_der + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_der + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_pem + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_rsa_pubkey + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_pubkey + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_param + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_private + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_der + 0x0000000000000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_der + 0x0000000000000000 0x31a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.4 + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_key_pem.str1.4 + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_pem + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x0000000000000000 0x1702 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x0000000000000000 0x398 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x0000000000000000 0xc3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x0000000000000000 0x1555 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_str 0x0000000000000000 0x7ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.key_type_is_raw_bytes + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_key_can_do + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_permits + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_restrict_key_policy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_policy + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_get_base_algorithm + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_tag_length + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_get_kdf_alg + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.is_kdf_alg_supported + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_try_support + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_allows_free_form_secret_input + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_check_input_type + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_seed + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_label + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_other_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_ecjpake_to_pms_input + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_buffer_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_input + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_attributes + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_internal + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_init + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_complete_inputs + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_to_psa_error + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_rsa_public_exponent + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_optional_attributes + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_seed + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_unstructured_key_bit_size + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_type_and_size_for_key_generation + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_remove_key_data_from_memory + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_key_slot + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_fail_key_creation + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_try_support + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_generate_next_block + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_read + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_complete + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_weierstrass_helper + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_montgomery_helper + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_key_internal + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_configure_entropy_sources + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_free + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_init + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_password + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_user + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_peer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_abort + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_password_key + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_user + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_peer + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_role + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_output + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_input + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_pake_get_implicit_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.key_type_is_raw_bytes + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x0000000000000000 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x0000000000000000 0x36e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_permits + 0x0000000000000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_restrict_key_policy + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_policy + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation + 0x0000000000000000 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x0000000000000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_get_base_algorithm + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x0000000000000000 0xcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_tag_length + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_kdf_alg + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.is_kdf_alg_supported + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_try_support + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_allows_free_form_secret_input + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_check_input_type + 0x0000000000000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_seed + 0x0000000000000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x0000000000000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_label + 0x0000000000000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_other_key + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_ecjpake_to_pms_input + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_buffer_internal + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_key + 0x0000000000000000 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_input + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_attributes + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x0000000000000000 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_internal + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort_internal + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort_internal + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x0000000000000000 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_internal + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_free + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_init + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_complete_inputs + 0x0000000000000000 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x0000000000000000 0x632 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_rsa_public_exponent + 0x0000000000000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_optional_attributes + 0x0000000000000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_seed + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_ecc_group_of_psa + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x0000000000000000 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_type_and_size_for_key_generation + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x0000000000000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_remove_key_data_from_memory + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_key_slot + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_fail_key_creation + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x0000000000000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x0000000000000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x0000000000000000 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x0000000000000000 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x0000000000000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_try_support + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x0000000000000000 0x14f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x0000000000000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_generate_next_block + 0x0000000000000000 0x1d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_read + 0x0000000000000000 0x11d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x0000000000000000 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x0000000000000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x0000000000000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x0000000000000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x0000000000000000 0x18a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x0000000000000000 0x16d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x0000000000000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x0000000000000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x0000000000000000 0xef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x0000000000000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x0000000000000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x0000000000000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_internal + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x0000000000000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_weierstrass_helper + 0x0000000000000000 0x14f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_montgomery_helper + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_key_internal + 0x0000000000000000 0x13d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x0000000000000000 0x1a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x0000000000000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x0000000000000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x0000000000000000 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_configure_entropy_sources + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_free + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_init + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_role + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer_len + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_cipher_suite + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_abort + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_setup + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_password_key + 0x0000000000000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_user + 0x0000000000000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_peer + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_role + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_output + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_input + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_pake_get_implicit_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.mbedtls_psa_random_state + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x0000000000000000 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.jpake_client_id + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.jpake_server_id + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_frame 0x0000000000000000 0x10d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_info 0x0000000000000000 0xbde8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x0000000000000000 0x63e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_loc 0x0000000000000000 0x6e4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x0000000000000000 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_ranges 0x0000000000000000 0x600 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_line 0x0000000000000000 0xb4b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_str 0x0000000000000000 0x47ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_reset_key_attributes + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_set_key_domain_parameters + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_get_key_domain_parameters + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_set_key_domain_parameters + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_get_key_domain_parameters + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_info 0x0000000000000000 0x470 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x0000000000000000 0x18c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_loc 0x0000000000000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_line 0x0000000000000000 0x526 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_str 0x0000000000000000 0x457 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_sign_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_message + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_get_num_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_get_num_ops + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_start + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_complete + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_sign_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_start + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_complete + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_verify_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_generate_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_import_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_export_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_set_iv + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_cipher_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_hash_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_set_nonce + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_set_lengths + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_update_ad + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_aead_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_compute + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_sign_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_verify_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_mac_abort + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_asymmetric_encrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_asymmetric_decrypt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.psa_driver_wrapper_key_agreement + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_init + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_free + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_message + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_message + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_get_num_ops + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_get_num_ops + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_start + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_complete + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_sign_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_start + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_complete + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_verify_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size_from_key_data + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_generate_key + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_import_key + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_export_key + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_copy_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_encrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_decrypt + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_encrypt_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_decrypt_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_set_iv + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_update + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_cipher_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_compute + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_clone + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_update + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_hash_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_encrypt + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_decrypt + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_encrypt_setup + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_decrypt_setup + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_set_nonce + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_set_lengths + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_update_ad + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_update + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_finish + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_verify + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_aead_abort + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_compute + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_sign_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_verify_setup + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_update + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_sign_finish + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_verify_finish + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_mac_abort + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_asymmetric_encrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_asymmetric_decrypt + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_key_agreement + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_setup + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_output + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_input + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_get_implicit_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .text.psa_driver_wrapper_pake_abort + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_frame 0x0000000000000000 0x5e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_info 0x0000000000000000 0x473f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_abbrev 0x0000000000000000 0x498 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_loc 0x0000000000000000 0x16e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_aranges + 0x0000000000000000 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_ranges 0x0000000000000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_line 0x0000000000000000 0x2074 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .debug_str 0x0000000000000000 0x2ab7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x0000000000000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x0000000000000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x0000000000000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x0000000000000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x0000000000000000 0x159 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x0000000000000000 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x0000000000000000 0x1de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_frame 0x0000000000000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_info 0x0000000000000000 0x1b35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x0000000000000000 0x3b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_loc 0x0000000000000000 0xa25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_line 0x0000000000000000 0x13b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_str 0x0000000000000000 0xd77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_hash_abort + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x0000000000000000 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x0000000000000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x0000000000000000 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x0000000000000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_info 0x0000000000000000 0xe3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x0000000000000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_loc 0x0000000000000000 0x57c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_line 0x0000000000000000 0xbd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_str 0x0000000000000000 0x756 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.psa_hmac_abort_internal + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mac_init + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.cmac_setup + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_setup_internal + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_update_internal + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_finish_internal + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_finish_internal + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_abort_internal + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mac_init + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.cmac_setup + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_setup_internal + 0x0000000000000000 0x25b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_update_internal + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_finish_internal + 0x0000000000000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup + 0x0000000000000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x0000000000000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x0000000000000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_frame 0x0000000000000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_info 0x0000000000000000 0x1bb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x0000000000000000 0x49b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_loc 0x0000000000000000 0x920 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_line 0x0000000000000000 0x1285 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_str 0x0000000000000000 0x16e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_rsa_read_exponent + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.rsa_pss_expected_salt_len + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_check_rsa_key_byte_aligned + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_read_exponent + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.rsa_pss_expected_salt_len + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_check_rsa_key_byte_aligned + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x0000000000000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x0000000000000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x0000000000000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_info 0x0000000000000000 0x1e87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x0000000000000000 0x3ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_loc 0x0000000000000000 0xaa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_line 0x0000000000000000 0x153c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_str 0x0000000000000000 0xcdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_load_persistent_key_into_slot + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_valid_key_id + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_initialize_key_slots + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_wipe_all_key_slots + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_empty_key_slot + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_open_key + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_close_key + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_load_persistent_key_into_slot + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x0000000000000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_initialize_key_slots + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_wipe_all_key_slots + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_empty_key_slot + 0x0000000000000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x0000000000000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unlock_key_slot + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_location + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_open_key + 0x0000000000000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_close_key + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x0000000000000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss.global_data + 0x0000000000000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x0000000000000000 0xd7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x0000000000000000 0x42d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x0000000000000000 0x8d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x0000000000000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x0000000000000000 0x11b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_str 0x0000000000000000 0x81b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_crypto_storage_get_data_length + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.check_magic_header + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_load + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_is_key_present_in_storage + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_store + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_its_identifier_of_slot + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_get_data_length + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.check_magic_header + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_load + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_store + 0x0000000000000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x0000000000000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x0000000000000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x0000000000000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x0000000000000000 0x1099 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x0000000000000000 0x38c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x0000000000000000 0x8ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x0000000000000000 0xffe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x0000000000000000 0x6b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_its_fill_filename + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_read_file + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get_info + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_set + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_remove + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_fill_filename.str1.4 + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_fill_filename + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_read_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_read_file + 0x0000000000000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get_info + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_set.str1.4 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_set + 0x0000000000000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_remove + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_info 0x0000000000000000 0x1188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_abbrev 0x0000000000000000 0x341 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_loc 0x0000000000000000 0x53b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_line 0x0000000000000000 0xa4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_str 0x0000000000000000 0x7aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x0000000000000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_lms_errors + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_info 0x0000000000000000 0x2b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_abbrev 0x0000000000000000 0x172 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_loc 0x0000000000000000 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_line 0x0000000000000000 0x47e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_str 0x0000000000000000 0x30d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.myrand + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import_raw + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_complete + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x0000000000000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import_raw + 0x0000000000000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_complete + 0x0000000000000000 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x0000000000000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x0000000000000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x0000000000000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x0000000000000000 0x248 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x0000000000000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.4 + 0x0000000000000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x0000000000000000 0x2ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_deduce_primes + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_deduce_private_exponent + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_deduce_crt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .rodata.mbedtls_rsa_deduce_primes.str1.4 + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_primes + 0x0000000000000000 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_private_exponent + 0x0000000000000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_crt + 0x0000000000000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .literal.pem_get_iv + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pem_pbkdf1 + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pem_aes_decrypt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.mbedtls_pem_read_buffer + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.mbedtls_pem_free + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.mbedtls_pem_write_buffer + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.pem_get_iv + 0x0000000000000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.pem_pbkdf1 + 0x0000000000000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.pem_aes_decrypt + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_init + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.4 + 0x0000000000000000 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_read_buffer + 0x0000000000000000 0x2df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_free + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_write_buffer + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x0000000000000000 0x139e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x0000000000000000 0x36c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x0000000000000000 0x9fb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x0000000000000000 0x128e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_str 0x0000000000000000 0xfa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pkcs12_parse_pbe_params + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_fill_buffer + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.calculate_hashes + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_pbe_derive_key_iv + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_pbe + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_parse_pbe_params + 0x0000000000000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_fill_buffer + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.calculate_hashes + 0x0000000000000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_derivation + 0x0000000000000000 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_pbe_derive_key_iv + 0x0000000000000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_pbe + 0x0000000000000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x0000000000000000 0x1634 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x0000000000000000 0x3cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x0000000000000000 0xa02 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x0000000000000000 0xea5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_str 0x0000000000000000 0x12c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.psa_aead_setup + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_unpadded_locate_tag + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup + 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x0000000000000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x0000000000000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x0000000000000000 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x0000000000000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_info 0x0000000000000000 0x1a1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x0000000000000000 0x410 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_loc 0x0000000000000000 0x98c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_line 0x0000000000000000 0xe60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_str 0x0000000000000000 0x16a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.psa_cipher_update_ecb + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_update_ecb + 0x0000000000000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x0000000000000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup + 0x0000000000000000 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x0000000000000000 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x0000000000000000 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_frame 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_info 0x0000000000000000 0x16ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x0000000000000000 0x3ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_loc 0x0000000000000000 0x8a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_line 0x0000000000000000 0x1066 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_str 0x0000000000000000 0x1564 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_base64_encode + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_decode + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_self_test + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_encode + 0x0000000000000000 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_decode + 0x0000000000000000 0x169 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.4 + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x0000000000000000 0x5ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x0000000000000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x0000000000000000 0x73e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x0000000000000000 0xd49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_str 0x0000000000000000 0x306 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.x509_get_uid + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_certificate_policies + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_string_cmp + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_name_cmp + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_ee_locally_trusted + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_version + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_dates + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_basic_constraints + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_ext_key_usage + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_crt_ext + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_ext_key_usage + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_cert_policies + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_profile_check_key + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_check_wildcard + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_cn + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_san + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_name + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_signature + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_info + 0x0000000000000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_info + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_check_key_usage + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_parent + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_find_parent_in + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_find_parent + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_is_revoked + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verifycrl + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_chain + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_restartable_ca_cb + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_with_profile + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_restartable + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_free + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_parse_der_core + 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_internal + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_nocopy + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_with_ext_cb + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_file + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_path + 0x0000000000000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_md_alg + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_pk_alg + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_memcasecmp + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_chain_reset + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_merge_flags_with_cb + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_uid + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_certificate_policies + 0x0000000000000000 0x12d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_string_cmp + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_name_cmp + 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_ee_locally_trusted + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_version + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_dates + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_basic_constraints + 0x0000000000000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_ext_key_usage + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_crt_ext + 0x0000000000000000 0x26e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_ext_key_usage.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_ext_key_usage + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_cert_policies + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_key + 0x0000000000000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_check_wildcard + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_cn + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_san + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_name.str1.4 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_name + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_signature + 0x0000000000000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_info.str1.4 + 0x0000000000000000 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_info + 0x0000000000000000 0x57a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_verify_info.str1.4 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_info + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_key_usage + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_parent + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_find_parent_in + 0x0000000000000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_find_parent + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_extended_key_usage + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_is_revoked + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verifycrl + 0x0000000000000000 0x119 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_chain + 0x0000000000000000 0x15b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_restartable_ca_cb + 0x0000000000000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_with_profile + 0x0000000000000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_restartable + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_free + 0x0000000000000000 0x83 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_parse_der_core + 0x0000000000000000 0x374 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_internal + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_nocopy + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_with_ext_cb + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse.str1.4 + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse + 0x0000000000000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_file + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse_path.str1.4 + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_path + 0x0000000000000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_strings + 0x0000000000000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_none + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_suiteb + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_next + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_default + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x0000000000000000 0x478 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x0000000000000000 0x4eab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x0000000000000000 0x4e6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x0000000000000000 0x377b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_aranges + 0x0000000000000000 0x190 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x0000000000000000 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x0000000000000000 0x524b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_str 0x0000000000000000 0x1772 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_parse_int + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_date_is_valid + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_parse_time + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_attr_type_value + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_hash_alg + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_other_name + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_serial + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg_null + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_name + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_time + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig_alg + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ext + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_dn_gets + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_serial_gets + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_sig_alg_gets + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_key_size_helper + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ns_cert_type + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_key_usage + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_parse_subject_alt_name + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_subject_alt_name + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_subject_alt_name + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_cert_type + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_key_usage + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_parse_int + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_date_is_valid + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_parse_time + 0x0000000000000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_attr_type_value + 0x0000000000000000 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_hash_alg + 0x0000000000000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.x509_get_other_name.str1.4 + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_other_name + 0x0000000000000000 0x117 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_serial + 0x0000000000000000 0x5f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg_null + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_rsassa_pss_params + 0x0000000000000000 0x1da esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_name + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_time + 0x0000000000000000 0x57 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig_alg + 0x0000000000000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ext + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_dn_gets.str1.4 + 0x0000000000000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_dn_gets + 0x0000000000000000 0x16d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_serial_gets.str1.4 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_serial_gets + 0x0000000000000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_sig_alg_gets.str1.4 + 0x0000000000000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_sig_alg_gets + 0x0000000000000000 0x129 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_key_size_helper.str1.4 + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_key_size_helper + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_past + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_future + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ns_cert_type + 0x0000000000000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_key_usage + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_parse_subject_alt_name + 0x0000000000000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_subject_alt_name + 0x0000000000000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_subject_alt_name.str1.4 + 0x0000000000000000 0x109 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_subject_alt_name + 0x0000000000000000 0x301 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_cert_type.str1.4 + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_cert_type + 0x0000000000000000 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_key_usage.str1.4 + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_key_usage + 0x0000000000000000 0x1e9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x0000000000000000 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x0000000000000000 0x3022 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x0000000000000000 0x40f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x0000000000000000 0x2f54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_aranges + 0x0000000000000000 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x0000000000000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x0000000000000000 0x41c4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_str 0x0000000000000000 0xafd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.esp_coex_adapter_register + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_clear + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_event_duration_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_pti_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_pti_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_wifi_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .wifirxiram.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .iram1.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .iram1.8.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_condition_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_pre_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .wifirxiram.9.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_preference_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_version_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_wifi_register_update_lpclk_callback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_update_lpclk_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_register_start_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .rodata.str1.1 + 0x0000000000000000 0x106 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_register + 0x0000000000000000 0x61 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_set + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_clear + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_event_duration_get + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_pti_set + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_pti_get + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_wifi_request + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .wifirxiram.6 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .iram1.7 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .iram1.8 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_condition_set + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_pre_init + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_init + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_deinit + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_enable + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_disable + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .wifirxiram.9 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_preference_set + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_version_get + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_wifi_register_update_lpclk_callback + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_update_lpclk_interval + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .text.coex_register_start_cb + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.5 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.4 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.3 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.2 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.1 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .dram1.0 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .bss.s_set_lpclk_source_cb + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .data.g_coex_adapter_funcs_md5 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .rodata.coex_version_str + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .data.libcoexist_reversion_git + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .literal.coex_core_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_pti_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_timer_idx_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .iram1.6.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .iram1.7.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_event_duration_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_condition_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_condition_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_condition_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_pre_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_disable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .wifirxiram.11.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .literal.coex_core_register_start_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_lock + 0x0000000000000000 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_unlock + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_pti_set + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .wifirxiram.5 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_timer_idx_get + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .iram1.6 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .iram1.7 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_event_duration_get + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_condition_set + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_condition_get + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_condition_check + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_pre_init + 0x0000000000000000 0xa3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_init + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_deinit + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_enable + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_disable + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .wifirxiram.11 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .text.coex_core_register_start_cb + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.10 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.9 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.8 0x0000000000000000 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .bss.coex_enabled_ref + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.4 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.3 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .dram1.2 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .literal.coex_hw_timer_force + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .literal.coex_hw_timer_unforce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .wifirxiram.2 0x0000000000000000 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .wifirxiram.3 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .wifirxiram.4 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .text.coex_hw_timer_force + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .text.coex_hw_timer_unforce + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .literal.coex_rom_data_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .literal.coex_rom_osi_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .literal.coex_rom_osi_funcs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .text.coex_rom_data_init + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .rodata.str1.1 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .text.coex_rom_osi_funcs_init + 0x0000000000000000 0xde E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .text.coex_rom_osi_funcs_deinit + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .dram1.0 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .bss.s_coex_rom_data_init + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .data.g_coex_param + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .literal.coex_schm_status_change + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_clear + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_idx_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_interval_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_period_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_get_phase_by_idx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_register_btdm_callback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_register_wifi_channel_change_callback + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_change + 0x0000000000000000 0x574 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.2 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.3 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_bit_set + 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_bit_clear + 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_get + 0x0000000000000000 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_phase_idx_set + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.4 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_interval_get + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .wifirxiram.5 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_period_get + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_curr_phase_get + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_get_phase_by_idx + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_register_btdm_callback + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_wifi_channel_set + 0x0000000000000000 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_wifi_channel_get + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_register_wifi_channel_change_callback + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_init + 0x0000000000000000 0x55 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .text.coex_schm_deinit + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .rodata.__func__$3972 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .dram1.7 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .dram1.6 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .bss.coex_schm_env + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_conn + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_conn + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_conn + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_conn + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_connecting + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_connecting + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_connecting + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_connecting + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_default_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_default_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_standby_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_traffic_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_mesh_config_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_default_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_sniff_wifi_scan + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_a2dp_paused_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_conn_wifi_scan + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_iscan_wifi_scan + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_bt_idle_wifi_scan + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_default + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_default + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_idle_bt_idle_wifi_default + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .data.coex_schm_all_default + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .literal.misc_nvs_load + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .text.misc_nvs_restore + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .bss.g_log_mod + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .literal.is_zero_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sync_interface_tsf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$14 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$15 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state$part$31 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ps_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_duty_signaling + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._print_roots_count + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_duty_signaling + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_ps_set_new_duty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_post_event + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_master_is_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_entire_rule + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_uplink_rule + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_duration_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_master_identity + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_master_identity + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_remaining + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_remaining + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_allowed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ps_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_recv_mesh_duty_signaling + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_process_remaining + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_root_process_duty_duration_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_zero_addr + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_ext_get_process + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ssid + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ps + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_sync_interface_tsf + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ext_assoc + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free$part$14 + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed$part$15 + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state$part$31 + 0x0000000000000000 0x24c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_my_ie_encrypted + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_coding_ie_key + 0x0000000000000000 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_check_vnd_ie + 0x0000000000000000 0x85 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_ie_crypto_config + 0x0000000000000000 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_set + 0x0000000000000000 0x1d2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_set + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_get + 0x0000000000000000 0x142 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x133 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_reject_connection + 0x0000000000000000 0xc1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x1a8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x0000000000000000 0x342 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0xe6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ps_ie + 0x0000000000000000 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_duty_signaling + 0x0000000000000000 0xde E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_reset_window_open_time + 0x0000000000000000 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_announce + 0x0000000000000000 0x251 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0x9f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0xaa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_vnd_roots_len + 0x0000000000000000 0x85 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_stop_beacon + 0x0000000000000000 0xca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_window_close_expire + 0x0000000000000000 0x186 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_window_open_expire + 0x0000000000000000 0x1b0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_fixed + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_gone + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x0000000000000000 0x282 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_duty_signaling + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_ps_set_new_duty + 0x0000000000000000 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_post_event + 0x0000000000000000 0xce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_master_is_root + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_entire_rule + 0x0000000000000000 0x4af E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_uplink_rule + 0x0000000000000000 0x1f5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_duration_expire + 0x0000000000000000 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_master_identity + 0x0000000000000000 0xc2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_master_identity + 0x0000000000000000 0x11a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_remaining + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_remaining + 0x0000000000000000 0x9b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_allowed + 0x0000000000000000 0x1f6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_set_process + 0x0000000000000000 0x2dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ps_ie + 0x0000000000000000 0x275 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_recv_mesh_duty_signaling + 0x0000000000000000 0x101 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_process_remaining + 0x0000000000000000 0x2fe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_root_process_duty_duration_expire + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_get_process + 0x0000000000000000 0x167 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found + 0x0000000000000000 0x192 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_invalid + 0x0000000000000000 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_ie_ignored + 0x0000000000000000 0x7f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_is_same_router + 0x0000000000000000 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_check_roots_gone + 0x0000000000000000 0xf2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_announce + 0x0000000000000000 0x11c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_conflict_root + 0x0000000000000000 0x130 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_remove_conflict_root + 0x0000000000000000 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield + 0x0000000000000000 0x149 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_conflict_table + 0x0000000000000000 0xe9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_find_conflict_root + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_update_conflict_root + 0x0000000000000000 0xda E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_add_conflict_root + 0x0000000000000000 0x1d6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_is_new_found_conflict_root + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x4f0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_remove_gone + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_gone + 0x0000000000000000 0x172 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_stop + 0x0000000000000000 0x114 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie_ttl + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield + 0x0000000000000000 0x20f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_root_process_roots_ie + 0x0000000000000000 0x332 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie + 0x0000000000000000 0x378 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x428 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x61 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_check_conflict_beacon + 0x0000000000000000 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x488 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_candidate + 0x0000000000000000 0xdc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_clear_parent_candidate + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_switch_candidate + 0x0000000000000000 0x333 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_weak_rssi + 0x0000000000000000 0x1a4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_assoc_ie + 0x0000000000000000 0xdb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x243 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_monitor_config + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_sub_ie + 0x0000000000000000 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text._mesh_set_flag_roots_found + 0x0000000000000000 0xca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x2a6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x426 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_probe_response + 0x0000000000000000 0x10e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_beacon + 0x0000000000000000 0x142 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_set_rssi_threshold + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_get_rssi_threshold + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_init + 0x0000000000000000 0x1aa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_init_cb + 0x0000000000000000 0x9b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .text.mesh_deinit_cb + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.CSWTCH$377 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.rx_bcn_count$10901 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.monitor_count$10772 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.last_parent_layer$10771 + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$10762 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.candidate_rssi$10751 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.monitor_time_start$10682 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$10649 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.post_event_time$10471 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.signaling_token$10290 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$10226 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.max_ie_len$10221 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.roots_found_time$10219 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.is_roots_found$10218 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.post_event_time$10178 + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$9854 + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$9848 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata.__func__$9675 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.36 + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.35 + 0x0000000000000000 0x77 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.34 + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.33 + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.32 + 0x0000000000000000 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.31 + 0x0000000000000000 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.30 + 0x0000000000000000 0xa3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.29 + 0x0000000000000000 0xa2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.28 + 0x0000000000000000 0x89 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.27 + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.26 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.25 + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.24 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.23 + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.22 + 0x0000000000000000 0x51 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.21 + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_info.20 + 0x0000000000000000 0x85 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.19 + 0x0000000000000000 0x61 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.18 + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.17 + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.16 + 0x0000000000000000 0x5f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.15 + 0x0000000000000000 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.14 + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.13 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.12 + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.11 + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.10 + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.9 + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.8 + 0x0000000000000000 0x75 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.7 + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.6 + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_error.5 + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.4 + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .rodata_wlog_error.2 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.esp_mesh_remain_nwk_duty + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty_type + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty_type + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.wifi_vnd_ext_mesh_roots + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_recv_bcn_count + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.iv 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_funcs + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .literal.mesh_pm_tbtt_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tbtt_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_rx_beacon_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_data_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_null_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.mesh_pm_set_null + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_wake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_is_start_pm_now + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.mesh_pm_tbtt_start + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tbtt_timeout_process + 0x0000000000000000 0x1d8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_rx_beacon_process + 0x0000000000000000 0x170 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_data_process + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_null_process + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.mesh_pm_set_null + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_sleep + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_wake + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .text.esp_mesh_is_start_pm_now + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.rx_bcn_count$7542 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.send_null_cnt$7488 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.4 + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_warning.3 + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.2 + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.mesh_ps_keep_cnx + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data.s_mesh_active_duty_cycle + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.s_mesh_next_awake_tbtt + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .bss.s_mesh_is_awake_duty + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .data.g_mesh_dfs_compensation_ms + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .literal.mesh_mutex_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_context + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.dutytype2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_lock + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_unlock + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.str1.1 + 0x0000000000000000 0xdd3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_mbox + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_mbox + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_malloc + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_free + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_context + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_context + 0x0000000000000000 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.wifi_event_id2str + 0x0000000000000000 0x149 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.nwk_event_id2str + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_msg_id2str + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_state_id2str + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.discnx_reason_id2str + 0x0000000000000000 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.mesh_ie_type2str + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.scan_status2str + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.vote_done2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.vote_start2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.txq_opr2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.io_cfg2str + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.opt_type2str + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.reconnect_type2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .text.dutytype2str + 0x0000000000000000 0x9b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$57 + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$55 + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$53 + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$51 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$49 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$47 + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$45 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$40 + 0x0000000000000000 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$38 + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$36 + 0x0000000000000000 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .bss.strid$8812 + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.__func__$8768 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .rodata.__func__$8762 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_get_rx_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_chain_header_add_ttl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_process_topo + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_recv + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_non_mesh_connections + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_non_mesh_connections + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv_release + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_set_topology + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_get_topology + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_device_active + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_enable_ps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_disable_ps + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_is_ps_enabled + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.esp_mesh_ps_get_duties + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.str1.1 + 0x0000000000000000 0xaa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x0000000000000000 0x132 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_ie_init + 0x0000000000000000 0x120 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_wifi_event_init + 0x0000000000000000 0xce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_wifi_event_deinit + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_init + 0x0000000000000000 0x238 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_stop_recv + 0x0000000000000000 0x1d6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_parse_option + 0x0000000000000000 0x110 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_add_option + 0x0000000000000000 0x110 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_chain_header_add_ttl + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_process_topo + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_process_flag + 0x0000000000000000 0x165 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_wait + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_signal + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_mgmt + 0x0000000000000000 0x2c4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send + 0x0000000000000000 0x66c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv_add_option + 0x0000000000000000 0x168 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv_process_flag + 0x0000000000000000 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_recv + 0x0000000000000000 0x3b8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv + 0x0000000000000000 0x162 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x110 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_router + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_id + 0x0000000000000000 0xd8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_id + 0x0000000000000000 0x14e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_id + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_max_layer + 0x0000000000000000 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_password + 0x0000000000000000 0xce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_authmode + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_connections + 0x0000000000000000 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_connections + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_non_mesh_connections + 0x0000000000000000 0x7d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_config + 0x0000000000000000 0x478 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_non_mesh_connections + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_layer + 0x0000000000000000 0x61 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_parent_bssid + 0x0000000000000000 0xa4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_root + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x1f0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x214 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x3a6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0x9f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv_release + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x0000000000000000 0x1d4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x0000000000000000 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_self_organized + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_parent + 0x0000000000000000 0x61b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x0000000000000000 0x15a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_waive_root + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x0000000000000000 0x9e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_send_stop_vote + 0x0000000000000000 0x1a4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_send_stop_vote + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_vote_percentage + 0x0000000000000000 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x0000000000000000 0xaa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x0000000000000000 0xae E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x0000000000000000 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_stop + 0x0000000000000000 0x652 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_start + 0x0000000000000000 0x212 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_xon_qsize + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_my_group + 0x0000000000000000 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x0000000000000000 0x13a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x0000000000000000 0x1a2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x0000000000000000 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x0000000000000000 0x87 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0xff E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_key + 0x0000000000000000 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x198 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0xee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_root_fixed + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_announce_interval + 0x0000000000000000 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0xe6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x12a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x0000000000000000 0x11e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x0000000000000000 0x5d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_set_topology + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_get_topology + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_device_active + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_enable_ps + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_disable_ps + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_is_ps_enabled + 0x0000000000000000 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .text.esp_mesh_ps_get_duties + 0x0000000000000000 0xe0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9273 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9261 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9205 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9146 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9136 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9127 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9051 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$9019 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$8951 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$8932 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.option$8899 + 0x0000000000000000 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.value$8898 + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$8853 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .rodata.__func__$8843 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_group_addr + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_send_mutex + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_stop_mutex + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_stop_event_group + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_ioctl_sem + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_xmit_sem + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_xmit_state_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.mesh_myself_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_mesh_ext_crypto_config + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.s_mesh_ie_crypto_plain_key + 0x0000000000000000 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_mesh_inited + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_extra_toDS_qsize + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_xon_cfg_qsize + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_ann_interval + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_is_root_fixed + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_rt_capacity + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_root_healing_delay + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_passive_scan_time + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_manual_nwk + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_cfg_attemps + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_cfg_vote_percent + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_cfg_switch_parent + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_chain + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_ie + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_ext_cfg + 0x0000000000000000 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_self_map_addr + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.g_mesh_self_sta_addr + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.g_mesh_max_layer + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .literal.nvs_op2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.str1.1 + 0x0000000000000000 0xf5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_operate + 0x0000000000000000 0x340 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_layer + 0x0000000000000000 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_init + 0x0000000000000000 0x55 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_deinit + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .rodata.CSWTCH$12 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss.mesh_nvs_settings + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .data.mesh_nvs_handle + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .literal.esp_mesh_io_sem_wait + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_wait + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_signal + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.str1.1 + 0x0000000000000000 0x20c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_io_process + 0x0000000000000000 0xdb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_router + 0x0000000000000000 0x216 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_self_organized + 0x0000000000000000 0x130 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_set_type + 0x0000000000000000 0x2a6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_csa_set_bssid + 0x0000000000000000 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_switch_channel + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_look_for_network + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .text.mesh_nwk_io_process + 0x0000000000000000 0x1ce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x0000000000000000 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.__func__$8823 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .rodata.__func__$8769 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.csa_bssid + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .literal.mesh_process_mgmt_announce$part$6 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table$part$7 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.optype2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.str1.1 + 0x0000000000000000 0x8bc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce$part$6 + 0x0000000000000000 0x3aa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table$part$7 + 0x0000000000000000 0x396 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.optype2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_get_optlen + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_mcast_cover_node + 0x0000000000000000 0x336 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x10f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toDS + 0x0000000000000000 0x1f0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toSelf + 0x0000000000000000 0x3b4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mcast_cover_node + 0x0000000000000000 0x462 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_mcast + 0x0000000000000000 0x172 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_bcast + 0x0000000000000000 0x370 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_switch + 0x0000000000000000 0x172 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_waive + 0x0000000000000000 0x1d0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_options + 0x0000000000000000 0x21b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_process_ucast + 0x0000000000000000 0x95c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .text.esp_mesh_forward_packet + 0x0000000000000000 0x3b6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.CSWTCH$144 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$8869 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$8855 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$8837 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$8805 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .rodata.__func__$8771 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss.mesh_xseqno + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.str1.1 + 0x0000000000000000 0x69c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.esp_mesh_channel_enable_jp + 0x0000000000000000 0x63 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x746 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_reselect + 0x0000000000000000 0x28e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_look_for_network + 0x0000000000000000 0x31a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_allow_switch + 0x0000000000000000 0x12c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$8838 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$8827 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.look_for_nwk_count$8822 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.scan_times$8802 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .rodata.__func__$8808 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .literal.mesh_set_root_candidate$part$17 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie$part$18 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_sta_auth_expire_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ps_control_check_awake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_awake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_sleep + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_get_min_duty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.is_self_mac_greater + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_child_set_ps_duty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_child_clr_ps_duty + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_type + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_is_better_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.scan_result_print + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.print_rc_info + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_awake + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_ps_get_duties + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.esp_mesh_print_scan_result + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate$part$17 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie$part$18 + 0x0000000000000000 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_sta_auth_expire_time + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_update_rssi + 0x0000000000000000 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie + 0x0000000000000000 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_mesh_last_parent + 0x0000000000000000 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_root_switch + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.str1.1 + 0x0000000000000000 0x2b64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_switch_parent + 0x0000000000000000 0x1ef E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_my_votes + 0x0000000000000000 0x85 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_check_rc_expire + 0x0000000000000000 0x32a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_change_layer + 0x0000000000000000 0x9a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_check_root_conflict + 0x0000000000000000 0xc6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timer_start + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timeout_process + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.route_announce_timer_stop + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_monitor + 0x0000000000000000 0x12c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_stop + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_start + 0x0000000000000000 0x1eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_ps_control_check_awake + 0x0000000000000000 0x9b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_awake + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_sleep + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_get_min_duty + 0x0000000000000000 0x11e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout_process + 0x0000000000000000 0x1c6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0xd4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_self_mac_greater + 0x0000000000000000 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_yield_root + 0x0000000000000000 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x1e6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x1f4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x1a2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_delete_timers + 0x0000000000000000 0xbe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_gone + 0x0000000000000000 0x7b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_fixed + 0x0000000000000000 0xe0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_stop + 0x0000000000000000 0xb7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x18a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x1d4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_scan_allowed + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_rt_change_debug + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_vote_done + 0x0000000000000000 0xbd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_disconnected + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_request + 0x0000000000000000 0xf1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless + 0x0000000000000000 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x96 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_process_connect + 0x0000000000000000 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_child_set_ps_duty + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_child_clr_ps_duty + 0x0000000000000000 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_type + 0x0000000000000000 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_better_parent + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.is_mesh_child + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_flush_scan_result + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_done + 0x0000000000000000 0x1f8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.scan_result_print + 0x0000000000000000 0x286 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_scan_done_process_weak + 0x0000000000000000 0xe6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_init + 0x0000000000000000 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit + 0x0000000000000000 0xb7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_insert_candidate + 0x0000000000000000 0x162 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done_vote + 0x0000000000000000 0x4ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done + 0x0000000000000000 0x712 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_current_parent + 0x0000000000000000 0x120 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate + 0x0000000000000000 0x83 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_ie_rssi + 0x0000000000000000 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie + 0x0000000000000000 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_votes + 0x0000000000000000 0xd6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_root_candidate + 0x0000000000000000 0x22c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_same_root_candidate + 0x0000000000000000 0x55 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_add_invalid_rc + 0x0000000000000000 0x10e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text._mesh_find_root_competitor + 0x0000000000000000 0x65e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_is_last_rc_existing + 0x0000000000000000 0x118 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_update_rcandidate_rssi + 0x0000000000000000 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_init_rcandidate + 0x0000000000000000 0xf4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_check_last_rcandidate + 0x0000000000000000 0x250 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_find_root_competitor + 0x0000000000000000 0x1c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_vote_root_candidate + 0x0000000000000000 0x56e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_router + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x23a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent + 0x0000000000000000 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_set_ignore + 0x0000000000000000 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x23f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_rssi + 0x0000000000000000 0x1e2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x0000000000000000 0x142 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_select_parent + 0x0000000000000000 0x1fe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_num + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_awake + 0x0000000000000000 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_child_event + 0x0000000000000000 0xe0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_child_macconnected + 0x0000000000000000 0x238 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.print_txupQ_pending + 0x0000000000000000 0x273 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx + 0x0000000000000000 0x6b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_insert_child + 0x0000000000000000 0x2db E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_child + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_children + 0x0000000000000000 0x11d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_leaf + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_no_parent + 0x0000000000000000 0xd3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent + 0x0000000000000000 0x148 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_disconnect + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_healing + 0x0000000000000000 0xbb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x122 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_route_announce_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0xbe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_connect + 0x0000000000000000 0x1f9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_router + 0x0000000000000000 0x302 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_candidate + 0x0000000000000000 0x3c4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout_process + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_root_process_disconnect + 0x0000000000000000 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_manual_networking + 0x0000000000000000 0x301 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_disconnect + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x0000000000000000 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x0000000000000000 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_reselect + 0x0000000000000000 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer + 0x0000000000000000 0xea E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_ie_change + 0x0000000000000000 0x398 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_node_process_cycle + 0x0000000000000000 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_wifi_event_cb + 0x0000000000000000 0x430 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb + 0x0000000000000000 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x0000000000000000 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_set_default_rssi_threshold + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_inited + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_running + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_process_parent_organized + 0x0000000000000000 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_deinit + 0x0000000000000000 0xab E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_init + 0x0000000000000000 0x38d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_deinit + 0x0000000000000000 0x95 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_beacon_interval + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_adjust_passive_scan_time + 0x0000000000000000 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_beacon_interval + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_parent_select_done + 0x0000000000000000 0x865 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_select + 0x0000000000000000 0x8d8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout_process + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_main + 0x0000000000000000 0x34a9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.mesh_ps_get_duties + 0x0000000000000000 0x106 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .text.esp_mesh_print_scan_result + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10280 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.last_event_id$10210 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10185 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10177 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10146 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10133 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$10117 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9844 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9840 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9828 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9803 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9784 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9762 + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9755 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9687 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9551 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9546 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9532 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9509 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9498 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9484 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9423 + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9284 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9252 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9244 + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9239 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9227 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9218 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9193 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9187 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$9180 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$9168 + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.max_voter_num$9163 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9165 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9113 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9101 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9057 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .rodata.__func__$9037 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_monitor_timer_interval + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.retry_attemps + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.vote_log_time_start + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_ps_control + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_mesh_beacon_interval + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_monitor_parent_config + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_first_short_time_retries + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_sta_discnx_times + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_chain + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.ann_time_start + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.ps_control_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_root_children_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_print_scan_result_enable + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x0000000000000000 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.mesh_conn_mutex + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_ext_vote_state + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_conn + 0x0000000000000000 0x2c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_mesh_current_parent + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_disconnecting + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connecting + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connected + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .literal.mesh_rt_change_timeout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_fill_rmv_sub_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_malloc_rmv_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_construct_rmv_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_pack_rmv_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_route_init + 0x0000000000000000 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_route_deinit + 0x0000000000000000 0xa2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timer_start + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout_process + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_match_self + 0x0000000000000000 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_total_children_num + 0x0000000000000000 0x7d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_sub_route + 0x0000000000000000 0xbd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.str1.1 + 0x0000000000000000 0xd03 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_route + 0x0000000000000000 0x12a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x0000000000000000 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x0000000000000000 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.routetype2str + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_update_route_table + 0x0000000000000000 0x3d0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_delete_sub_children + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_add_announcement + 0x0000000000000000 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_fill_rmv_sub_child + 0x0000000000000000 0x380 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_malloc_rmv_announcement + 0x0000000000000000 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_construct_rmv_announcement + 0x0000000000000000 0xa6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_pack_rmv_announcement + 0x0000000000000000 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x128 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x49e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_ie_update_capacity + 0x0000000000000000 0x166 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x2dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x1b6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x2ca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x395 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x285 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x2a0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_refresh_routing_table + 0x0000000000000000 0x6be E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table_size + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table + 0x0000000000000000 0x1af E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_num + 0x0000000000000000 0xb9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_list + 0x0000000000000000 0xfa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_request + 0x0000000000000000 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_ack + 0x0000000000000000 0x1ee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .text.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x1a6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.CSWTCH$137 + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9101 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9088 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9059 + 0x0000000000000000 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9054 + 0x0000000000000000 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9029 + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$9014 + 0x0000000000000000 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8925 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8907 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8867 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8794 + 0x0000000000000000 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8777 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .rodata.__func__$8769 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_multi_send_ack + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_multi_recv_ack + 0x0000000000000000 0xf0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.rt_change_timer + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .literal.mesh_print_txQ_waiting + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_forward_check_active + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_check_tid_mbox_full + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ps_tx_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_ps_tx + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.tx_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.xon_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_no_wnd + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_time + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.str1.1 + 0x0000000000000000 0x141a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_print_txQ_waiting + 0x0000000000000000 0x134 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_get_tx_pending + 0x0000000000000000 0x19b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x0000000000000000 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_event + 0x0000000000000000 0x1b9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_start + 0x0000000000000000 0x1a4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_forward_check_active + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_check_tid_mbox_full + 0x0000000000000000 0x1c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.mesh_check_tid_mbox_full + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_cb + 0x0000000000000000 0x108 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_best_effort_tx + 0x0000000000000000 0x304 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0xfa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_operation_rxseqno + 0x0000000000000000 0x398 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending + 0x0000000000000000 0xc06 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x264 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x50d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x140 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num + 0x0000000000000000 0x1cc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_flush_txQ + 0x0000000000000000 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_tid_flush + 0x0000000000000000 0x1da E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_tid_stop + 0x0000000000000000 0x1c4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ps_tx_queue + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_ps_tx + 0x0000000000000000 0x122 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.tx_task_main + 0x0000000000000000 0x225 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_discard_context + 0x0000000000000000 0x15e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_xon + 0x0000000000000000 0x69e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_recv_xon + 0x0000000000000000 0x14e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_main + 0x0000000000000000 0x926 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_deliver_packet + 0x0000000000000000 0x1b0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_flush_packets + 0x0000000000000000 0x225 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_disconnected + 0x0000000000000000 0x2e6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_expired + 0x0000000000000000 0x128 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x0000000000000000 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.xon_task_main + 0x0000000000000000 0x18d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_no_wnd + 0x0000000000000000 0xf0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_xon_task_main + 0x0000000000000000 0xa08 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_deinit + 0x0000000000000000 0x1ce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_init + 0x0000000000000000 0x222 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init + 0x0000000000000000 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_deinit + 0x0000000000000000 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_deinit + 0x0000000000000000 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_deinit + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_main + 0x0000000000000000 0x46c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_init + 0x0000000000000000 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_time + 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9314 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9306 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9269 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9211 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9158 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9140 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9132 + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9124 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_fail_cnt$9099 + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9106 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9088 + 0x0000000000000000 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9040 + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9033 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9022 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$9009 + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8999 + 0x0000000000000000 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8961 + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8945 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8912 + 0x0000000000000000 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8900 + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8877 + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8840 + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .rodata.__func__$8809 + 0x0000000000000000 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_self_xonseq + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data.g_mesh_packet_lifetime + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_xon 0x0000000000000000 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_conn_leave + 0x0000000000000000 0x2c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_xreq_seqno + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x0000000000000000 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.mesh_reassign_xseqno + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .literal.mesh_timer_route_announce + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_ps_control + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_route_announce + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_mie_monitor + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_bcn_change + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_root_connect + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_candidate_monitor + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_rt_change + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_ps_control + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .rodata.str1.1 + 0x0000000000000000 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .text.mesh_timer_do_process + 0x0000000000000000 0xea E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .rodata.__func__$8800 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .data.mesh_timer_info + 0x0000000000000000 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .literal.esp_mesh_push_to_rx_queue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_topo_get_ttl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.str1.1 + 0x0000000000000000 0x2f7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_push_to_rx_queue + 0x0000000000000000 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_topo_get_ttl + 0x0000000000000000 0xba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x700 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_deinit + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_deinit + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_main + 0x0000000000000000 0x216 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_init + 0x0000000000000000 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$8824 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$8811 + 0x0000000000000000 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.parent_last_mac_seqno$8808 + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .rodata.__func__$8784 + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x0000000000000000 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x0000000000000000 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x0000000000000000 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_ap_list_clear + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.str1.1 + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear + 0x0000000000000000 0xc7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0x97 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find + 0x0000000000000000 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_enqueue + 0x0000000000000000 0x1ac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.__func__$8833 + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .rodata.__func__$8761 + 0x0000000000000000 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .comment 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .literal.esp_crt_check_signature + 0x0000000000000000 0x54 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_verify_callback + 0x0000000000000000 0x3c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_init + 0x0000000000000000 0x4c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_attach + 0x0000000000000000 0x34 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_detach + 0x0000000000000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_set + 0x0000000000000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_check_signature.str1.4 + 0x0000000000000000 0xe7 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_check_signature + 0x0000000000000000 0x113 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_verify_callback.str1.4 + 0x0000000000000000 0x99 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_verify_callback + 0x0000000000000000 0xfa esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_init.str1.4 + 0x0000000000000000 0x131 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_init + 0x0000000000000000 0x129 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_attach.str1.4 + 0x0000000000000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_attach + 0x0000000000000000 0x68 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_detach + 0x0000000000000000 0x23 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_set + 0x0000000000000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_crt_bundle + 0x0000000000000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_dummy_crt + 0x0000000000000000 0x158 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_info 0x0000000000000000 0x1ca9 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_abbrev 0x0000000000000000 0x33f esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_loc 0x0000000000000000 0x69b esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_line 0x0000000000000000 0x10c3 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_str 0x0000000000000000 0x1537 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .rodata.embedded + 0x0000000000000000 0x10152 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x0000000000000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0x142 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000000000 0x1939 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x36b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x43a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0xfd6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0xe9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_crc + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x0000000000000000 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0x114 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000000000000000 0x213a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0000000000000000 0x306 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0000000000000000 0x3b8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x0000000000000000 0xa2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0000000000000000 0x1d8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.log_invalid_app_partition + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.read_otadata + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x0000000000000000 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.read_otadata + 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x19f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x0000000000000000 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x0000000000000000 0x227 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x0000000000000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x15b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0x8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0x2198 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x46e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0x12b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x27fa esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0xeca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.should_map + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_flash_size + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x0000000000000000 0x92 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x0000000000000000 0x4b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x0000000000000000 0x69 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x0000000000000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x0000000000000000 0xcc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x0000000000000000 0xd6 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x14a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x0000000000000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x122 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x0000000000000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000000000 0x1ad5 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x37c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0x103b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x0000000000000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x2063 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0xd5f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_partition_table_verify + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x0000000000000000 0x175 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x0000000000000000 0x695 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x211 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x231 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000000000 0x899 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0x47e esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.bootloader_sha256_start + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x0000000000000000 0x59 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000000000000000 0x58a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x19b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x0000000000000000 0x5b8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x40e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_random_enable + 0x0000000000000000 0x9c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .literal.bootloader_random_disable + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x22a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0xb1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_info 0x0000000000000000 0x261 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_abbrev 0x0000000000000000 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_line 0x0000000000000000 0x5d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_str 0x0000000000000000 0x254 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .literal.mmu_hal_init + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_map_region + 0x0000000000000000 0x54 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_init.str1.4 + 0x0000000000000000 0x4d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x0000000000000000 0x79 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_map_region.str1.4 + 0x0000000000000000 0xe4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_map_region + 0x0000000000000000 0xfb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x0000000000000000 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x0000000000000000 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x0000000000000000 0x7e2 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x263 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0000000000000000 0x495 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x0000000000000000 0x6c9 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x0000000000000000 0x3d8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.esp_mesh_send_event_internal + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text.esp_mesh_send_event_internal + 0x0000000000000000 0x1a esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data.MESH_EVENT + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x0000000000000000 0x193 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x0000000000000000 0xde esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x0000000000000000 0x25 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x0000000000000000 0x35c esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x0000000000000000 0x275 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x0000000000000000 0x27 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .text 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .literal._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x1f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x0000000000000000 0xa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x0000000000000000 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt10unexpectedv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt10unexpectedv + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .group 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .group 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x0000000000000000 0x7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .literal._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .text._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .xt.lit._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .xt.prop._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .literal._ZN9__gnu_cxx9__freeresEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .literal.__cxa_allocate_dependent_exception + 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .literal.__cxa_free_dependent_exception + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text.__cxx_eh_arena_size_get + 0x0000000000000000 0xa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text._ZN9__gnu_cxx9__freeresEv + 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text.__cxa_allocate_dependent_exception + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_allocate_dependent_exception + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text.__cxa_free_dependent_exception + 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_free_dependent_exception + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .rodata._ZTSSt9exception + 0x0000000000000000 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .rodata._ZTISt9exception + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .xt.prop._ZTISt9exception + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt9exception4whatEv + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt13bad_exceptionD0Ev + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x0000000000000000 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x0000000000000000 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x0000000000000000 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x0000000000000000 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x0000000000000000 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x0000000000000000 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x0000000000000000 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt9exception + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .literal.__cxa_rethrow + 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .text.__cxa_rethrow + 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .text 0x0000000000000000 0x59 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x0000000000000000 0xf9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .text 0x0000000000000000 0x85 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_line 0x0000000000000000 0x159 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x0000000000000000 0x312 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x0000000000000000 0x6b1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .text 0x0000000000000000 0x1ff e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x0000000000000000 0x478 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .text 0x0000000000000000 0x213 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x0000000000000000 0x4a1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x0000000000000000 0xe7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x3d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x0000000000000000 0xc9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x0000000000000000 0x62 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x0000000000000000 0x117 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x0000000000000000 0x23 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_info 0x0000000000000000 0x185 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_abbrev 0x0000000000000000 0x10b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_loclists + 0x0000000000000000 0x8d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line 0x0000000000000000 0xdb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_str 0x0000000000000000 0x16e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x37 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xce e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x68 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x0000000000000000 0xac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0xf7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x2ae e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x29a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x270 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x25e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .literal._Z12abort_returnIPPvET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIPvET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIP11frame_stateET_v + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void_and_return + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.forward_abort_uw_ctx + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_bases + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table_bases + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Find_FDE + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetGR + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetCFA + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetIP + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetGR + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetIPInfo + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z17__frame_state_forPvP11frame_state + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_ForcedUnwind + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Backtrace + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPPvET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPvET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIP11frame_stateET_v + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void_and_return + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.forward_abort_uw_ctx + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_bases + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table_bases + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Find_FDE + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetGR + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetCFA + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetIP + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetGR + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetIPInfo + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z17__frame_state_forPvP11frame_state + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_ForcedUnwind + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Backtrace + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.RFChannelSel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_change_channel + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_rx_rifs_en + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_bbpll_en_usb + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_bt_power_track + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_rf_cal_version + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_force_rx_gain + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_get_rx_gain + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_rx_band_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.phy_param_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.RFChannelSel + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_rx_rifs_en + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_bt_power_track + 0x0000000000000000 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_force_rx_gain + 0x0000000000000000 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_get_rx_gain + 0x0000000000000000 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_rx_band_set + 0x0000000000000000 0x8b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .text.phy_param_set + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .literal.get_phy_version_str + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_version_print + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_reg_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_i2c_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_iq_value + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_dc_value + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_tx_gain_print + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_cal_print + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.get_bias_ref_code + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.phy_get_vdd33 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .literal.pbus_print + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_version_print + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_reg_check + 0x0000000000000000 0x10b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_i2c_check + 0x0000000000000000 0x20d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.get_iq_value + 0x0000000000000000 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.get_dc_value + 0x0000000000000000 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_tx_gain_print + 0x0000000000000000 0x174 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.phy_cal_print + 0x0000000000000000 0x63b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .text.pbus_print + 0x0000000000000000 0xeb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_most_tpw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_most_tpw + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.get_max_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.esp_tx_state_out + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_adc_rand + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_internal_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_ftm_comp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_11p_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_dft_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_wifitx_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_wifirx_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_bttx_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.ant_btrx_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_chan_dump_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_enable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_disable_low_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_chan_filt_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_rx11blr_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.set_rx_sense + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_set_wifi_mode_only + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txpwr_backoff + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_get_tx_rate + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_dig_ldo_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_init_flag + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txtone_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .literal.phy_txtone_stop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_most_tpw + 0x0000000000000000 0x77 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.get_max_power + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.esp_tx_state_out + 0x0000000000000000 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_adc_rand + 0x0000000000000000 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_internal_delay + 0x0000000000000000 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_ftm_comp + 0x0000000000000000 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.ant_dft_cfg + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.ant_wifitx_cfg + 0x0000000000000000 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.ant_wifirx_cfg + 0x0000000000000000 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.ant_bttx_cfg + 0x0000000000000000 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.ant_btrx_cfg + 0x0000000000000000 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_chan_dump_cfg + 0x0000000000000000 0x8d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_chan_filt_set + 0x0000000000000000 0xa6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_rx11blr_cfg + 0x0000000000000000 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.set_rx_sense + 0x0000000000000000 0x1f0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_set_wifi_mode_only + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txpwr_backoff + 0x0000000000000000 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_get_tx_rate + 0x0000000000000000 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .rodata.str1.1 + 0x0000000000000000 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_dig_ldo_cal + 0x0000000000000000 0x134 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_init_flag + 0x0000000000000000 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txtone_start + 0x0000000000000000 0xce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .text.phy_txtone_stop + 0x0000000000000000 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.wr_rf_freq_mem + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.write_freq_mem_all + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_i2c_write_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.get_rf_freq_cap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.get_rf_freq_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_get_i2c_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.freq_i2c_data_write + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.set_chan_freq_hw_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .literal.set_chan_freq_sw_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text.write_freq_mem_all + 0x0000000000000000 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .text.get_rf_freq_cap + 0x0000000000000000 0x79 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_get_romfunc_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.bb_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.pwr_limit_force + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.register_chipv7_phy_init_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_get_mac_addr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_set_mac_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_rfcal_data_sub + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_cal_data_recovery + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_cal_data_backup + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.phy_rfcal_data_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.get_txcap_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.get_chip_version + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.rf_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .literal.register_chipv7_phy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .text.phy_get_mac_addr + 0x0000000000000000 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.ram_pbus_force_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.txcal_debuge_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.txcal_work_mode + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .literal.set_pbus_mem + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .iram1 0x0000000000000000 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .text.ram_pbus_force_mode + 0x0000000000000000 0xd7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.phy_set_pwdet_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_sar_sig_ref + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.pwdet_tone_start + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_tone_sar_dout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_fm_sar_dout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.txtone_linear_pwr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.get_power_db + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .literal.meas_tone_pwr_db + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text.phy_set_pwdet_power + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .text.meas_tone_pwr_db + 0x0000000000000000 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_bb_reg_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.txiq_set_reg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rxiq_set_reg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.start_tx_tone_step + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.start_tx_tone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.stop_tx_tone + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.read_hw_noisefloor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_check_noise_floor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.ram_set_noise_floor + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.rom_phy_bbpll_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_rx_sense_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.tx_state_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_close_pa + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_freq_correct + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.wifi_rifs_mode_en + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_get_fetx_delay + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.phy_fft_scale_force + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .literal.force_txrx_off + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.ram_bb_reg_init + 0x0000000000000000 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.start_tx_tone + 0x0000000000000000 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.read_hw_noisefloor + 0x0000000000000000 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.ram_check_noise_floor + 0x0000000000000000 0xc2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.rom_phy_bbpll_cal + 0x0000000000000000 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_rx_sense_set + 0x0000000000000000 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.tx_state_set + 0x0000000000000000 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_close_pa + 0x0000000000000000 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.wifi_rifs_mode_en + 0x0000000000000000 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_get_fetx_delay + 0x0000000000000000 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .text.phy_fft_scale_force + 0x0000000000000000 0x5d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.restart_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.write_rfpll_sdm + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.wait_rfpll_cal_end + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.rfpll_set_freq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.rfpll_cap_init_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_rfpll_freq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_rf_freq_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_channel_rfpll_freq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.phy_set_freq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.correct_rfpll_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_misc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.chip_v7_set_chan_ana + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.set_chanfreq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.get_pll_ref_code + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .text.phy_set_freq + 0x0000000000000000 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .text.get_pll_ref_code + 0x0000000000000000 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .literal.gen_rx_gain_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.wr_rx_gain_mem + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.set_rx_gain_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.set_rx_gain_table + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.rx_blocking_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .text.rx_blocking_set + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .literal.esp_recover_efuse_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .literal.ram_tester_wifi_cali + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .literal.ram_tester_bt_cali + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .text.ram_tester_wifi_cali + 0x0000000000000000 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .text.ram_tester_bt_cali + 0x0000000000000000 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .bss.wifi_cali_offset + 0x0000000000000000 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.wait_hw_freq_busy + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.phy_param_track + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.txpwr_offset + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .literal.pocket_sar_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.phy_param_track + 0x0000000000000000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .text.pocket_sar_power + 0x0000000000000000 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.phy_set_tsens_power + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_read_init_new + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_dac_to_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.tsens_dac_cal_new + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.phy_set_tsens_range + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.ram_tsens_temp_read_new + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.phy_get_tsens_value + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.get_temp_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_set_tsens_power + 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.tsens_dac_to_index + 0x0000000000000000 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.tsens_dac_cal_new + 0x0000000000000000 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_set_tsens_range + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.ram_tsens_temp_read_new + 0x0000000000000000 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .text.phy_get_tsens_value + 0x0000000000000000 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .rodata.phy_tsens_attribute + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .literal.txdc_cal_v70 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txdc_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txdc_cal_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_get_mis_pwr + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_cover + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.get_power_atten + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_txiq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txiq_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.txiq_cal_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.pwdet_ref_code + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.pwdet_code_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_txcap + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_cap_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.rfcal_pwrctrl + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_pwctrl_init_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.tx_pwctrl_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_tx_pwctrl_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .literal.bt_txpwr_freq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.rom_txbbgain_to_index + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.rom_index_to_txbbgain + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.bt_chan_pwr_interp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.phy_get_txpwr_param + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.target_power_backoff + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.bt_tx_gain_init + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.tx_gain_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.rom_txbbgain_to_index + 0x0000000000000000 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.rom_index_to_txbbgain + 0x0000000000000000 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.phy_get_txpwr_param + 0x0000000000000000 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .text.target_power_backoff + 0x0000000000000000 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.CSWTCH$55 + 0x0000000000000000 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .literal.get_rc_dout + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .literal.rc_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .literal.phy_analog_delay_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .rodata.str1.1 + 0x0000000000000000 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .rodata 0x0000000000000000 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .text.phy_analog_delay_cal + 0x0000000000000000 0x2c7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.ram_set_chan_cal_interp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.chan14_mic_cfg + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.chan14_mic_enable + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .literal.set_adc_rand + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text.chan14_mic_enable + 0x0000000000000000 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .rodata 0x0000000000000000 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .text.set_adc_rand + 0x0000000000000000 0xf2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .iram1.literal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.phy_i2c_init2 + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.phy_get_i2c_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.i2c_bbpll_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.bias_reg_set + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .literal.rxiq_get_mis + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rxiq_cover_mg_mp + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfcal_rxiq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.get_rfcal_rxiq_data + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.pbus_rx_dco_cal + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rxdc_est_min + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.set_rx_gain_cal_iq + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rx_chan_dc_sort + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.set_rx_gain_cal_dc + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfrx_sat_rst + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.get_rfrx_sat + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rfrx_sat_check + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .literal.rom_noise_check_loop + 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .data 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .bss 0x0000000000000000 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rfrx_sat_rst + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.get_rfrx_sat + 0x0000000000000000 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rfrx_sat_check + 0x0000000000000000 0x3dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .text.rom_noise_check_loop + 0x0000000000000000 0x189 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .text 0x0000000000000000 0x29 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_info 0x0000000000000000 0x8ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_abbrev 0x0000000000000000 0x1eb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_loclists + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_line 0x0000000000000000 0xc6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_str 0x0000000000000000 0x4a5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .debug_line_str + 0x0000000000000000 0x3e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0xf1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0xab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x7c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0xed e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_line_str + 0x0000000000000000 0x36d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .literal 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .text 0x0000000000000000 0x80 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_info 0x0000000000000000 0x9d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_abbrev 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_loclists + 0x0000000000000000 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_line 0x0000000000000000 0x1d0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_str 0x0000000000000000 0x565 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .debug_line_str + 0x0000000000000000 0x3f0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .literal 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .text 0x0000000000000000 0x142 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_info 0x0000000000000000 0xb98 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_abbrev 0x0000000000000000 0x2a5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_loclists + 0x0000000000000000 0x153 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_rnglists + 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_line 0x0000000000000000 0x42e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_str 0x0000000000000000 0x587 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .debug_line_str + 0x0000000000000000 0x3fe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .text 0x0000000000000000 0x5c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_info 0x0000000000000000 0x988 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_abbrev 0x0000000000000000 0x256 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_loclists + 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_line 0x0000000000000000 0x140 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_str 0x0000000000000000 0x4f6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_line_str + 0x0000000000000000 0x3fd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .literal 0x0000000000000000 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .text 0x0000000000000000 0xb0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_info 0x0000000000000000 0xb48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_abbrev 0x0000000000000000 0x29c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_loclists + 0x0000000000000000 0x61 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_line 0x0000000000000000 0x26c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_str 0x0000000000000000 0x5c4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_line_str + 0x0000000000000000 0x400 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .literal 0x0000000000000000 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .text 0x0000000000000000 0x128 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_info 0x0000000000000000 0xb84 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_abbrev 0x0000000000000000 0x300 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_loclists + 0x0000000000000000 0x118 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_rnglists + 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_line 0x0000000000000000 0x3ac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_str 0x0000000000000000 0x597 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .debug_line_str + 0x0000000000000000 0x3fe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .text 0x0000000000000000 0x29 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_info 0x0000000000000000 0x93b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_abbrev 0x0000000000000000 0x251 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_loclists + 0x0000000000000000 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_line 0x0000000000000000 0x119 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_str 0x0000000000000000 0x4b0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .debug_line_str + 0x0000000000000000 0x3e3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .literal 0x0000000000000000 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .text 0x0000000000000000 0x11a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_info 0x0000000000000000 0xa51 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_abbrev 0x0000000000000000 0x27a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_loclists + 0x0000000000000000 0xa2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_line 0x0000000000000000 0x3a2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_str 0x0000000000000000 0x568 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_line_str + 0x0000000000000000 0x3f0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .literal 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .text 0x0000000000000000 0xdc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_info 0x0000000000000000 0xb7e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_abbrev 0x0000000000000000 0x2c8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_loclists + 0x0000000000000000 0xb8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_rnglists + 0x0000000000000000 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_line 0x0000000000000000 0x2d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_str 0x0000000000000000 0x5c3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_line_str + 0x0000000000000000 0x3fa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .literal 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .text 0x0000000000000000 0x3a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .rodata.str1.1 + 0x0000000000000000 0x87 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_info 0x0000000000000000 0x9c7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_abbrev 0x0000000000000000 0x23d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_loclists + 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_rnglists + 0x0000000000000000 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_line 0x0000000000000000 0x110 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_str 0x0000000000000000 0x527 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .debug_line_str + 0x0000000000000000 0x480 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .literal 0x0000000000000000 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x1c0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0x24e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0xf7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_loclists + 0x0000000000000000 0xce e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x588 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x187 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_line_str + 0x0000000000000000 0x3d3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x80e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x173 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x4d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x49a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_line_str + 0x0000000000000000 0x303 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .text 0x0000000000000000 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_info 0x0000000000000000 0x17e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_abbrev 0x0000000000000000 0x119 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_loclists + 0x0000000000000000 0x8d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_line 0x0000000000000000 0x15a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_str 0x0000000000000000 0xf7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_line_str + 0x0000000000000000 0x2d7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .literal 0x0000000000000000 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .text 0x0000000000000000 0x27d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0x390 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x191 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_loclists + 0x0000000000000000 0x117 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x698 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x221 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_line_str + 0x0000000000000000 0x3ec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x1b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x110 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0xb1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_loclists + 0x0000000000000000 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0xd0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0xf0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_line_str + 0x0000000000000000 0x366 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .text 0x0000000000000000 0x52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x12b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x90 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_loclists + 0x0000000000000000 0xdc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x17f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0xe0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_line_str + 0x0000000000000000 0x366 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x135 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x30f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x3f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_info 0x0000000000000000 0x10f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_abbrev 0x0000000000000000 0xac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_loclists + 0x0000000000000000 0x125 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_line 0x0000000000000000 0x133 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_str 0x0000000000000000 0xfa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x146 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .literal 0x0000000000000000 0x54 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x58e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .rodata 0x0000000000000000 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_info 0x0000000000000000 0x4a1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_abbrev 0x0000000000000000 0x20c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_loclists + 0x0000000000000000 0x2e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_rnglists + 0x0000000000000000 0x17 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_line 0x0000000000000000 0xd31 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_str 0x0000000000000000 0x27a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .debug_line_str + 0x0000000000000000 0x3ec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0xad e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x61 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x3f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0xe2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_line_str + 0x0000000000000000 0x27d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .literal 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .text 0x0000000000000000 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_info 0x0000000000000000 0x923 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_abbrev 0x0000000000000000 0x234 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_loclists + 0x0000000000000000 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_line 0x0000000000000000 0x151 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_str 0x0000000000000000 0x4c0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .debug_line_str + 0x0000000000000000 0x3e9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .text 0x0000000000000000 0x360 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x8a1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x273 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_loclists + 0x0000000000000000 0x5c6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0x950 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x13b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_line_str + 0x0000000000000000 0x363 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .literal 0x0000000000000000 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .text 0x0000000000000000 0xcf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .rodata.str1.1 + 0x0000000000000000 0x87 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_info 0x0000000000000000 0x99e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_abbrev 0x0000000000000000 0x24c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_loclists + 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_rnglists + 0x0000000000000000 0x1b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_line 0x0000000000000000 0x2e9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_str 0x0000000000000000 0x4c4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .debug_line_str + 0x0000000000000000 0x3ef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .text 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_info 0x0000000000000000 0x8be e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_abbrev 0x0000000000000000 0x213 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_loclists + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_line 0x0000000000000000 0xd3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_str 0x0000000000000000 0x4b6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .debug_line_str + 0x0000000000000000 0x3ee e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .text 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_info 0x0000000000000000 0x884 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_abbrev 0x0000000000000000 0x1e2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_line 0x0000000000000000 0x98 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_str 0x0000000000000000 0x4a3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .debug_line_str + 0x0000000000000000 0x3e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .text 0x0000000000000000 0x1b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_info 0x0000000000000000 0x89c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_abbrev 0x0000000000000000 0x1b6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_line 0x0000000000000000 0xa3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_str 0x0000000000000000 0x4a2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .debug_line_str + 0x0000000000000000 0x3e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .literal 0x0000000000000000 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .text 0x0000000000000000 0x1bf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_info 0x0000000000000000 0xb83 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_abbrev 0x0000000000000000 0x2a7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_loclists + 0x0000000000000000 0x16c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_rnglists + 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_line 0x0000000000000000 0x575 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_str 0x0000000000000000 0x5ab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .debug_line_str + 0x0000000000000000 0x404 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0x21 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_info 0x0000000000000000 0xe1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_abbrev 0x0000000000000000 0x86 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_loclists + 0x0000000000000000 0x7e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_line 0x0000000000000000 0xda e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_str 0x0000000000000000 0xd9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_line_str + 0x0000000000000000 0x2dd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .text 0x0000000000000000 0x1d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_info 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_abbrev 0x0000000000000000 0x82 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_loclists + 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_line 0x0000000000000000 0xd6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_str 0x0000000000000000 0xd9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .debug_line_str + 0x0000000000000000 0x2dd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .literal 0x0000000000000000 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x123 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x2b5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x90 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x182 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0xe9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x9f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_loclists + 0x0000000000000000 0x43 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x109 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0xe1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .text 0x0000000000000000 0x15 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_info 0x0000000000000000 0x86a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_abbrev 0x0000000000000000 0x1d1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_line 0x0000000000000000 0x96 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_str 0x0000000000000000 0x4a3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .debug_line_str + 0x0000000000000000 0x3ec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .text 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_info 0x0000000000000000 0x913 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_abbrev 0x0000000000000000 0x21c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_loclists + 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_line 0x0000000000000000 0xd3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_str 0x0000000000000000 0x4bf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .debug_line_str + 0x0000000000000000 0x3fb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0x923 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x21a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_loclists + 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0xbf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x4d2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_line_str + 0x0000000000000000 0x3f8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .text 0x0000000000000000 0x52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_info 0x0000000000000000 0x141 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_abbrev 0x0000000000000000 0xdb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_loclists + 0x0000000000000000 0xa3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_line 0x0000000000000000 0x1c7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_str 0x0000000000000000 0xed e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .text 0x0000000000000000 0x4f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x114 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0xa0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_loclists + 0x0000000000000000 0xff e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x151 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0xe1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x122 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_line_str + 0x0000000000000000 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0xa9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0xde e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x79 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_loclists + 0x0000000000000000 0xa6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x107 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0xe1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x2a8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_line_str + 0x0000000000000000 0xf6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0xaa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x1a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_info 0x0000000000000000 0xe1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_abbrev 0x0000000000000000 0x8d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_loclists + 0x0000000000000000 0x3f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_line 0x0000000000000000 0xbd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_str 0x0000000000000000 0xe7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .debug_line_str + 0x0000000000000000 0x369 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x2d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_info 0x0000000000000000 0x112 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_abbrev 0x0000000000000000 0xca e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_loclists + 0x0000000000000000 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_line 0x0000000000000000 0xec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_str 0x0000000000000000 0xe6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .debug_line_str + 0x0000000000000000 0x2e0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x36 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0xef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x9f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_loclists + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x134 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0xe0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_line_str + 0x0000000000000000 0x366 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .literal 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x162 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0xe47 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x323 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_loclists + 0x0000000000000000 0x2e8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_rnglists + 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x58f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x723 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_line_str + 0x0000000000000000 0x496 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .text 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_info 0x0000000000000000 0xa83 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_abbrev 0x0000000000000000 0x1e1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_line 0x0000000000000000 0xb5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_str 0x0000000000000000 0x5ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .debug_line_str + 0x0000000000000000 0x4a1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .text 0x0000000000000000 0x2e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_info 0x0000000000000000 0x8eb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_abbrev 0x0000000000000000 0x1e3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_line 0x0000000000000000 0x101 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_str 0x0000000000000000 0x4ef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .debug_line_str + 0x0000000000000000 0x470 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x188 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0x294 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x137 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_loclists + 0x0000000000000000 0x12f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_rnglists + 0x0000000000000000 0x21 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x48d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x1b2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_line_str + 0x0000000000000000 0x387 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x106 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0xc8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x7e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_line_str + 0x0000000000000000 0x2d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .literal 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x31 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0x889 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1d7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0xac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x4d0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_line_str + 0x0000000000000000 0x3e5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .literal 0x0000000000000000 0x84 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x3ce e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x1a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .rodata.str1.1 + 0x0000000000000000 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x2bd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_loclists + 0x0000000000000000 0x152 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0xa01 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x5ec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_line_str + 0x0000000000000000 0x4a1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0xcb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x5e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x3a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0xee e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_line_str + 0x0000000000000000 0x261 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .literal 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .text 0x0000000000000000 0x78 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .rodata.str1.1 + 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_info 0x0000000000000000 0x1d4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_abbrev 0x0000000000000000 0x113 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_loclists + 0x0000000000000000 0xdb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_line 0x0000000000000000 0x257 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_str 0x0000000000000000 0x112 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_line_str + 0x0000000000000000 0x2e2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .text 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_info 0x0000000000000000 0xfc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_abbrev 0x0000000000000000 0xc1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_loclists + 0x0000000000000000 0x78 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_line 0x0000000000000000 0x113 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_str 0x0000000000000000 0xe3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .debug_line_str + 0x0000000000000000 0x2d4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .literal 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0x94 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0x9a4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x245 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_loclists + 0x0000000000000000 0xac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x231 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x4eb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_line_str + 0x0000000000000000 0x405 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0x170 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0xb7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x162 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_line_str + 0x0000000000000000 0x373 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .literal 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .text 0x0000000000000000 0xb8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_info 0x0000000000000000 0xaf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_abbrev 0x0000000000000000 0x2ca e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_loclists + 0x0000000000000000 0xc9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_line 0x0000000000000000 0x248 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_str 0x0000000000000000 0x584 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .debug_line_str + 0x0000000000000000 0x3ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .literal 0x0000000000000000 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0xc2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xa11 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x25a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_loclists + 0x0000000000000000 0x5a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x2d7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x512 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_line_str + 0x0000000000000000 0x40e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .literal 0x0000000000000000 0x154 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .rodata.str1.1 + 0x0000000000000000 0x697 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0x980 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x22e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_loclists + 0x0000000000000000 0x4a0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xa9a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x4ee e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_line_str + 0x0000000000000000 0x3fc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .text 0x0000000000000000 0x13e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0xdc1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_loclists + 0x0000000000000000 0x267 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x514 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x71f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_line_str + 0x0000000000000000 0x491 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .literal 0x0000000000000000 0xcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x1fe4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .rodata 0x0000000000000000 0x13e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000000000 0x8c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_info 0x0000000000000000 0x2249 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x0000000000000000 0x46c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_loclists + 0x0000000000000000 0x1681 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_rnglists + 0x0000000000000000 0x221 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_line 0x0000000000000000 0x41ca e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_str 0x0000000000000000 0x938 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_line_str + 0x0000000000000000 0x556 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x77 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x68 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_line_str + 0x0000000000000000 0x270 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .literal 0x0000000000000000 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x1dc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xbba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x2db e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_loclists + 0x0000000000000000 0x17e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x6a6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x5a4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_line_str + 0x0000000000000000 0x402 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .literal 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .text 0x0000000000000000 0xbc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_info 0x0000000000000000 0xa28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_abbrev 0x0000000000000000 0x27d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_loclists + 0x0000000000000000 0x9e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_rnglists + 0x0000000000000000 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_line 0x0000000000000000 0x2bb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_str 0x0000000000000000 0x516 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .debug_line_str + 0x0000000000000000 0x3ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .literal 0x0000000000000000 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x88a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1e4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0xaa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x516 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_line_str + 0x0000000000000000 0x3f0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .text 0x0000000000000000 0x11 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_info 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_abbrev 0x0000000000000000 0xb9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_loclists + 0x0000000000000000 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_line 0x0000000000000000 0x8f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_str 0x0000000000000000 0xf0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_line_str + 0x0000000000000000 0x3df e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .text 0x0000000000000000 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_info 0x0000000000000000 0xacf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_abbrev 0x0000000000000000 0x1b1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_loclists + 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_line 0x0000000000000000 0xd0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_str 0x0000000000000000 0x67f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_line_str + 0x0000000000000000 0x48a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .literal 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .text 0x0000000000000000 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .bss 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .literal 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .text 0x0000000000000000 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .rodata.str1.1 + 0x0000000000000000 0x1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_frame 0x0000000000000000 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_info 0x0000000000000000 0xbee e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000000000 0x25f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_loclists + 0x0000000000000000 0x52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_line 0x0000000000000000 0x192 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_str 0x0000000000000000 0x6c7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_line_str + 0x0000000000000000 0x476 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .literal 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .text 0x0000000000000000 0xa0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0x10e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x9a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_loclists + 0x0000000000000000 0xf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x26e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0xe9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_line_str + 0x0000000000000000 0x2d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .literal 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .text 0x0000000000000000 0x1b8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_frame 0x0000000000000000 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_info 0x0000000000000000 0xe09 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_abbrev 0x0000000000000000 0x30b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_loclists + 0x0000000000000000 0x2c1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_line 0x0000000000000000 0x598 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_str 0x0000000000000000 0x733 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_line_str + 0x0000000000000000 0x491 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .literal 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .text 0x0000000000000000 0x1a8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_frame 0x0000000000000000 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_info 0x0000000000000000 0xdfb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_abbrev 0x0000000000000000 0x31b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_loclists + 0x0000000000000000 0x29d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_line 0x0000000000000000 0x578 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_str 0x0000000000000000 0x737 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_line_str + 0x0000000000000000 0x494 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .comment 0x0000000000000000 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .literal 0x0000000000000000 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .text 0x0000000000000000 0x176 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line 0x0000000000000000 0x36f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line_str + 0x0000000000000000 0xea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_info 0x0000000000000000 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0000000000000000 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_aranges + 0x0000000000000000 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_str 0x0000000000000000 0xa1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .ctors 0x0000000000000000 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040374000 0x0000000000058700 xr +iram0_2_seg 0x0000000042000020 0x00000000007fffe0 xr +dram0_0_seg 0x000000003fc88000 0x0000000000054700 rw +drom0_0_seg 0x000000003c000020 0x0000000001ffffe0 r +rtc_iram_seg 0x00000000600fe000 0x0000000000001fe8 xrw +rtc_reserved_seg 0x00000000600fffe8 0x0000000000000018 rw +rtc_slow_seg 0x0000000050000000 0x0000000000002000 rw +extern_ram_seg 0x000000003c000020 0x0000000001ffffe0 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +LOAD CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/console/libconsole.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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_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/sdmmc/libsdmmc.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/touch_element/libtouch_element.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/usb/libusb.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a + 0x0000000000000000 IDF_TARGET_ESP32S3 = 0x0 +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.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/espcoredump/libespcoredump.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/perfmon/libperfmon.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/json/libjson.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/driver/libdriver.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/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.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_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.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/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_wifi/libesp_wifi.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_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.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/ulp/libulp.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a +LOAD esp-idf/newlib/libnewlib.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a +LOAD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libnosys.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o +LOAD e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + 0x0000000000000010 _esp_flash_mmap_prefetch_pad_size = 0x10 + 0x0000000000000010 _esp_memprot_prefetch_pad_size = 0x10 + 0x0000000000000100 _esp_memprot_align_size = 0x100 + 0x0000000000010000 _esp_mmu_block_size = 0x10000 + 0x000000003fca42f0 _heap_start = _heap_low_start + 0x0000000040000000 _heap_end = 0x40000000 + 0x00000000600fe000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x0000000000000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) + 0x0000000040378000 _diram_i_start = 0x40378000 + +.rtc.text 0x00000000600fe000 0x10 + 0x00000000600fe000 . = ALIGN (0x4) + 0x00000000600fe000 _rtc_fast_start = ABSOLUTE (.) + 0x00000000600fe000 _rtc_text_start = ABSOLUTE (.) + *(.rtc.entry.text) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + 0x00000000600fe010 . = (. + _esp_memprot_prefetch_pad_size) + *fill* 0x00000000600fe000 0x10 + 0x00000000600fe010 . = ALIGN (0x4) + 0x00000000600fe010 _rtc_text_end = ABSOLUTE (.) + +.rtc.force_fast + 0x00000000600fe010 0x0 + 0x00000000600fe010 . = ALIGN (0x4) + 0x00000000600fe010 _rtc_force_fast_start = ABSOLUTE (.) + 0x00000000600fe010 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x00000000600fe010 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x00000000600fe010 . = ALIGN (0x4) + 0x00000000600fe010 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + 0x0000000050000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x0000000050000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x0000000050000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x0000000050000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_reserved 0x00000000600fffe8 0x18 + 0x00000000600fffe8 . = ALIGN (0x4) + 0x00000000600fffe8 _rtc_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x00000000600fffe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x0000000060100000 _rtc_reserved_end = ABSOLUTE (.) + 0x0000000000000018 _rtc_reserved_length = (_rtc_reserved_end - _rtc_reserved_start) + 0x0000000000000001 ASSERT ((_rtc_reserved_length <= LENGTH (rtc_reserved_seg)), RTC reserved segment data does not fit.) + 0x0000000000000000 _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) + 0x0000000000000010 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x0000000000000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x0000000000000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x0000000040374000 0x403 + 0x0000000040374000 _iram_start = ABSOLUTE (.) + 0x0000000040374000 _vector_table = ABSOLUTE (.) + 0x0000000000000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x0000000040374000 0x16a esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374000 _WindowOverflow4 + 0x0000000040374040 _WindowUnderflow4 + 0x0000000040374050 _xt_alloca_exc + 0x0000000040374080 _WindowOverflow8 + 0x00000000403740c0 _WindowUnderflow8 + 0x0000000040374100 _WindowOverflow12 + 0x0000000040374140 _WindowUnderflow12 + 0x0000000000000180 . = 0x180 + *fill* 0x000000004037416a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x0000000040374180 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040374180 _Level2Vector + 0x00000000000001c0 . = 0x1c0 + *fill* 0x0000000040374186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x00000000403741c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x00000000403741c0 _Level3Vector + 0x0000000000000200 . = 0x200 + *fill* 0x00000000403741c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x0000000040374200 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040374200 _Level4Vector + 0x0000000000000240 . = 0x240 + *fill* 0x0000000040374206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x0000000040374240 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040374240 _Level5Vector + 0x0000000000000280 . = 0x280 + *fill* 0x0000000040374246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x0000000040374280 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374280 _DebugExceptionVector + 0x00000000000002c0 . = 0x2c0 + *fill* 0x0000000040374286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x00000000403742c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x00000000403742c0 _NMIExceptionVector + 0x0000000000000300 . = 0x300 + *fill* 0x00000000403742c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x0000000040374300 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040374300 _KernelExceptionVector + 0x0000000000000340 . = 0x340 + *fill* 0x0000000040374306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x0000000040374340 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x0000000040374340 _UserExceptionVector + 0x00000000000003c0 . = 0x3c0 + *fill* 0x0000000040374346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x00000000403743c0 0xe esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x00000000403743c0 _DoubleExceptionVector + 0x0000000000000400 . = 0x400 + *fill* 0x00000000403743ce 0x32 + 0x0000000040374400 _invalid_pc_placeholder = ABSOLUTE (.) + *(.*Vector.literal) + .DoubleExceptionVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x0000000040374400 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x0000000040374400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040374400 0x3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + 0x0000000040374400 _init + 0x0000000040374403 _init_end = ABSOLUTE (.) + +.iram0.text 0x0000000040374404 0x1250f + 0x0000000040374404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.1.literal + 0x0000000040374404 0xc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .iram1.2.literal + 0x0000000040374410 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x0000000040374410 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x0000000040374414 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x20 (size before relaxing) + .iram1.0.literal + 0x0000000040374420 0x44 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4c (size before relaxing) + .iram1.1.literal + 0x0000000040374464 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x000000004037446c 0x90 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10c (size before relaxing) + .iram1.literal + 0x00000000403744fc 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x000000004037450c 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .iram1.literal + 0x0000000040374514 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.0.literal + 0x0000000040374534 0x14 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.2.literal + 0x0000000040374548 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x14 (size before relaxing) + .iram1.3.literal + 0x0000000040374550 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x0000000040374554 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x0000000040374560 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040374560 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x0000000040374564 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040374564 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x20 (size before relaxing) + .iram1.0.literal + 0x0000000040374568 0x14 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x1c (size before relaxing) + .iram1.1.literal + 0x000000004037457c 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x000000004037457c 0x1c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x0000000040374598 0x3c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x8c (size before relaxing) + .iram1.1.literal + 0x00000000403745d4 0x4 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x00000000403745d8 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x00000000403745d8 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x00000000403745ec 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x00000000403745ec 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x000000004037461c 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x64 (size before relaxing) + .iram1.4.literal + 0x000000004037462c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x000000004037462c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x000000004037462c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0.literal + 0x0000000040374630 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .iram1.0.literal + 0x0000000040374634 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.1.literal + 0x000000004037463c 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0.literal + 0x0000000040374648 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040374648 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.0.literal + 0x000000004037464c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x000000004037464c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x000000004037464c 0x4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .iram1.1.literal + 0x0000000040374650 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9.literal + 0x0000000040374654 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.0.literal + 0x0000000040374658 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x38 (size before relaxing) + .iram1.2.literal + 0x0000000040374680 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1c (size before relaxing) + .iram1.13.literal + 0x0000000040374684 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x0000000040374684 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x0000000040374688 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.10.literal + 0x000000004037469c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.11.literal + 0x00000000403746a8 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x50 (size before relaxing) + .iram1.12.literal + 0x00000000403746b4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x00000000403746b8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.14.literal + 0x00000000403746bc 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x00000000403746c0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x00000000403746c8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x00000000403746d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.6.literal + 0x00000000403746d4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.7.literal + 0x00000000403746e0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.4.literal + 0x00000000403746e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.5.literal + 0x00000000403746e8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.3.literal + 0x00000000403746f8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .iram1.4.literal + 0x0000000040374708 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .iram1.7.literal + 0x000000004037470c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x000000004037471c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x10 (size before relaxing) + .iram1.9.literal + 0x0000000040374728 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x0000000040374728 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.5.literal + 0x0000000040374730 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x0000000040374734 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.7.literal + 0x0000000040374738 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.8.literal + 0x0000000040374738 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x0000000040374738 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x38 (size before relaxing) + .iram1.2.literal + 0x000000004037475c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x000000004037476c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x0000000040374770 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.literal + 0x0000000040374774 0x44 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x9c (size before relaxing) + .iram1.2.literal + 0x00000000403747b8 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x14 (size before relaxing) + .iram1.literal + 0x00000000403747c0 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x00000000403747c0 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.18.literal + 0x00000000403747c4 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.6.literal + 0x00000000403747d0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.11.literal + 0x00000000403747d8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.5.literal + 0x00000000403747e0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.7.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.17.literal + 0x00000000403747e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.19.literal + 0x00000000403747e8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.20.literal + 0x00000000403747f0 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.21.literal + 0x00000000403747f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.22.literal + 0x00000000403747f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.23.literal + 0x00000000403747f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.24.literal + 0x00000000403747f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x00000000403747f4 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x00000000403747fc 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x0000000040374808 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.9.literal + 0x0000000040374808 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.6.literal + 0x000000004037480c 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.10.literal + 0x000000004037481c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.7.literal + 0x000000004037481c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.11.literal + 0x0000000040374820 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x0000000040374824 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .iram1.4.literal + 0x0000000040374824 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x28 (size before relaxing) + .iram1.5.literal + 0x0000000040374828 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x0000000040374828 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x000000004037482c 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.1.literal + 0x0000000040374834 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x0000000040374834 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x38 (size before relaxing) + .iram1.0.literal + 0x0000000040374848 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x0000000040374848 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040374848 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x000000004037484c 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x000000004037484c 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4c (size before relaxing) + .iram1.2.literal + 0x0000000040374884 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x0000000040374884 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x000000004037488c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xc (size before relaxing) + .iram1.12.literal + 0x0000000040374894 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x000000004037489c 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x000000004037489c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x000000004037489c 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x00000000403748a8 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x00000000403748a8 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + .iram1.15.literal + 0x00000000403748ac 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x00000000403748ac 0x34 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x74 (size before relaxing) + .iram1.4.literal + 0x00000000403748e0 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40 (size before relaxing) + .iram1.7.literal + 0x00000000403748f0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x00000000403748f0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x00000000403748f0 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.2.literal + 0x00000000403748fc 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .iram1.8.literal + 0x0000000040374910 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x0000000040374910 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x10 (size before relaxing) + .iram1.11.literal + 0x0000000040374914 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x20 (size before relaxing) + .iram1.5.literal + 0x0000000040374914 0x2c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x80 (size before relaxing) + .iram1.4.literal + 0x0000000040374940 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x0000000040374944 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x44 (size before relaxing) + .iram1.12.literal + 0x0000000040374954 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.4.literal + 0x0000000040374954 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.7.literal + 0x0000000040374958 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040374958 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.9.literal + 0x000000004037495c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x20 (size before relaxing) + .iram1.7.literal + 0x000000004037496c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.10.literal + 0x0000000040374970 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x0000000040374974 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x58 (size before relaxing) + .iram1.13.literal + 0x0000000040374990 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.18.literal + 0x00000000403749a0 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.19.literal + 0x00000000403749a0 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x2c (size before relaxing) + .iram1.20.literal + 0x00000000403749ac 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x44 (size before relaxing) + .iram1.12.literal + 0x00000000403749c0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x00000000403749c0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.10.literal + 0x00000000403749c4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x00000000403749c4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x00000000403749c4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x00000000403749c4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x1c (size before relaxing) + .iram1.13.literal + 0x00000000403749d8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x00000000403749dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x00000000403749dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x00000000403749dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x00000000403749dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x00000000403749dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x00000000403749dc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x00000000403749e4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x00000000403749e4 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x00000000403749f4 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x0000000040374a04 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040374a04 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040374a04 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x0000000040374a04 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .iram1.literal + 0x0000000040374a28 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.16.literal + 0x0000000040374a28 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.2.literal + 0x0000000040374a2c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x0000000040374a2c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040374a2c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x0000000040374a2c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.24.literal + 0x0000000040374a2c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.27.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.26.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.25.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.21.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.20.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.19.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .iram1.7.literal + 0x0000000040374a30 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x0000000040374a30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040374a30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040374a30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x0000000040374a38 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x0000000040374a40 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x0000000040374a40 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040374a40 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x0000000040374a48 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.3.literal + 0x0000000040374a4c 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.4.literal + 0x0000000040374a64 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x0000000040374a68 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x0000000040374a68 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x0000000040374a68 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x0000000040374a68 0x1c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + .literal.esp_cpu_reset + 0x0000000040374a84 0xc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x14 (size before relaxing) + .literal.esp_cpu_stall + 0x0000000040374a90 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x0000000040374aa0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_ptr_byte_accessible + 0x0000000040374aa4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x0000000040374aa4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x0000000040374aa8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_set_bbpll_always_on + 0x0000000040374aa8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_configure + 0x0000000040374aac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x0000000040374ab4 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x0000000040374ad8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x0000000040374ad8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x0000000040374ae4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x0000000040374ae4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x0000000040374ae4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x0000000040374af0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x0000000040374af8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x0000000040374afc 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 + 0x0000000040374b08 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 + 0x0000000040374b08 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040374b10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040374b14 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x44 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000040374b38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040374b38 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x60 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x0000000040374b48 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x0000000040374b4c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_sleep_pu + 0x0000000040374b4c 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cal_internal + 0x0000000040374b74 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cal + 0x0000000040374b94 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x14 (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x0000000040374b94 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.rtc_time_get + 0x0000000040374b94 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x10 (size before relaxing) + .literal.Cache_Suspend_ICache + 0x0000000040374ba0 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .literal.Cache_Suspend_DCache + 0x0000000040374ba8 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_ICache_Enable + 0x0000000040374bac 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Freeze_DCache_Enable + 0x0000000040374bb0 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.Cache_Get_IROM_MMU_End + 0x0000000040374bb4 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x4 (size before relaxing) + .literal.Cache_Get_DROM_MMU_End + 0x0000000040374bb4 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_error_check_failed_print + 0x0000000040374bb4 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x0000000040374bc4 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_system_abort + 0x0000000040374bcc 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.vPortTaskWrapper + 0x0000000040374bcc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.xPortStartScheduler + 0x0000000040374bd4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x10 (size before relaxing) + .literal.pxPortInitialiseStack + 0x0000000040374bd8 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.xPortInIsrContext + 0x0000000040374bfc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x0000000040374c00 0x34 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x5c (size before relaxing) + .literal.vPortExitCritical + 0x0000000040374c34 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.vPortYieldOtherCore + 0x0000000040374c40 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x0000000040374c40 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortReleaseTaskMPUSettings + 0x0000000040374c4c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal 0x0000000040374c4c 0xc esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x64 (size before relaxing) + .literal 0x0000000040374c58 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x24 (size before relaxing) + .literal.vPortSetupTimer + 0x0000000040374c5c 0x2c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x60 (size before relaxing) + .literal.xPortSysTickHandler + 0x0000000040374c88 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.prvIsQueueEmpty + 0x0000000040374c88 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.prvCopyDataToQueue + 0x0000000040374c88 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x0000000040374c88 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.prvCopyDataFromQueue + 0x0000000040374ca0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvUnlockQueue + 0x0000000040374ca0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGenericReset + 0x0000000040374ca0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + .literal.prvInitialiseNewQueue + 0x0000000040374cb4 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x0000000040374cb4 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGenericCreate + 0x0000000040374ccc 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x0000000040374cd8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x0000000040374cd8 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGenericSend + 0x0000000040374ce4 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x98 (size before relaxing) + .literal.prvInitialiseMutex + 0x0000000040374cf8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x0000000040374cf8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x0000000040374cf8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x0000000040374cf8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x0000000040374d00 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x38 (size before relaxing) + .literal.xQueueGiveFromISR + 0x0000000040374d04 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueReceive + 0x0000000040374d10 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x7c (size before relaxing) + .literal.xQueueSemaphoreTake + 0x0000000040374d1c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x98 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x0000000040374d20 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x0000000040374d24 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x0000000040374d2c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.vQueueDelete + 0x0000000040374d38 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x0000000040374d40 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvDeleteTLS + 0x0000000040374d48 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvInitialiseNewTask + 0x0000000040374d58 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x0000000040374d58 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.taskSelectHighestPriorityTaskSMP + 0x0000000040374d74 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvDeleteTCB + 0x0000000040374d84 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x0000000040374d94 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x0000000040374da8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvIdleTask + 0x0000000040374dac 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.taskYIELD_OTHER_CORE + 0x0000000040374db0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x0000000040374db0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x0000000040374db8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x0000000040374dcc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskSuspendAll + 0x0000000040374dcc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetTickCount + 0x0000000040374dd0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x0000000040374dd0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCPU + 0x0000000040374dd0 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.xTaskIncrementTick + 0x0000000040374de8 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.xTaskResumeAll + 0x0000000040374e08 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x0000000040374e14 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSwitchContext + 0x0000000040374e20 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x0000000040374e2c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x0000000040374e38 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x0000000040374e40 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.vTaskTakeEventListLock + 0x0000000040374e4c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskReleaseEventListLock + 0x0000000040374e4c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskRemoveFromUnorderedEventList + 0x0000000040374e4c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x48 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x0000000040374e54 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x0000000040374e60 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskMissedYield + 0x0000000040374e70 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x0000000040374e70 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x0000000040374e70 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x0000000040374e70 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.vTaskSuspend + 0x0000000040374e78 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.pcTaskGetName + 0x0000000040374e80 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000040374e88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x0000000040374e88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetAffinity + 0x0000000040374e88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCPU + 0x0000000040374e88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x0000000040374e88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x0000000040374e88 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskDelay + 0x0000000040374e90 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskPriorityInherit + 0x0000000040374e94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x0000000040374e94 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x0000000040374ea8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x0000000040374eb8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x0000000040374eb8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x0000000040374eb8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x0000000040374ec4 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.__getreent + 0x0000000040374ee0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskGetSnapshot + 0x0000000040374ee0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.prvTaskPriorityRaise + 0x0000000040374ee0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvTaskPriorityRestore + 0x0000000040374ee8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.vTaskStartScheduler + 0x0000000040374ee8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x0000000040374efc 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x18 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x0000000040374efc 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x18 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x0000000040374efc 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x24 (size before relaxing) + .literal.xEventGroupCreate + 0x0000000040374f0c 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupWaitBits + 0x0000000040374f18 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x60 (size before relaxing) + .literal.xEventGroupClearBits + 0x0000000040374f34 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x24 (size before relaxing) + .literal.xEventGroupSetBits + 0x0000000040374f3c 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x38 (size before relaxing) + .literal.vEventGroupDelete + 0x0000000040374f44 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x2c (size before relaxing) + .literal.cache_hal_disable + 0x0000000040374f4c 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_enable + 0x0000000040374f4c 0xc esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x14 (size before relaxing) + .literal.cache_hal_suspend + 0x0000000040374f58 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_resume + 0x0000000040374f58 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x14 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x0000000040374f58 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .literal.spi_flash_encryption_hal_enable + 0x0000000040374f60 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x0000000040374f68 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x0000000040374f68 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x0000000040374f78 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x0000000040374f80 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_hal_gpspi_device_config + 0x0000000040374f84 0x10 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x0000000040374f94 0x10 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x4c (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x0000000040374fa4 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x0000000040374fb0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x0000000040374fb0 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x50 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x0000000040374fb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_read + 0x0000000040374fb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x0000000040374fb8 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_erase_sector + 0x0000000040374fbc 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x0000000040374fc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.systimer_hal_init + 0x0000000040374fc0 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_get_counter_value + 0x0000000040374fc4 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_set_alarm_target + 0x0000000040374fc8 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_set_alarm_period + 0x0000000040374fc8 0xc esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x18 (size before relaxing) + .literal.systimer_hal_counter_value_advance + 0x0000000040374fd4 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0xc (size before relaxing) + .literal.systimer_hal_select_alarm_mode + 0x0000000040374fd4 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_connect_alarm_counter + 0x0000000040374fd4 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.assert_valid_block + 0x0000000040374fd4 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_free_impl + 0x0000000040374fd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x0000000040374fd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x0000000040374fd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_unlock + 0x0000000040374fd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x0000000040374fd8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x0000000040374fd8 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x0000000040374fe4 0x54 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa0 (size before relaxing) + .literal.tlsf_get_pool + 0x0000000040375038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x0000000040375038 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x94 (size before relaxing) + .literal.tlsf_realloc + 0x0000000040375068 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd4 (size before relaxing) + .literal.esp_log_write + 0x0000000040375074 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_early_timestamp + 0x0000000040375078 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock + 0x0000000040375078 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x000000004037507c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x000000004037507c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x000000004037507c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.abort + 0x0000000040375080 0x14 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x24 (size before relaxing) + .literal.__assert_func + 0x0000000040375094 0x2c esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40 (size before relaxing) + .literal.malloc + 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x00000000403750c0 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x00000000403750c0 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x00000000403750c4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.lldesc_setup_link_constrained + 0x00000000403750c4 0xc esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x00000000403750d0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x00000000403750d4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x00000000403750d8 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x00000000403750d8 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x00000000403750e4 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x00000000403750e4 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_erase_block + 0x00000000403750f0 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_program_page + 0x00000000403750f4 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_init_pointers + 0x00000000403750fc 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_boya_probe + 0x0000000040375108 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x0000000040375108 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x000000004037510c 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 + 0x000000004037510c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x000000004037511c 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 + 0x000000004037511c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x000000004037511c 0x4 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 + 0x0000000040375120 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040375128 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 + 0x0000000040375128 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040375128 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x0000000040375130 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 + 0x0000000040375130 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x000000004037513c 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 + 0x000000004037513c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x0000000040375140 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040375144 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 + 0x0000000040375144 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 + 0x0000000040375144 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 + 0x0000000040375144 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 + 0x0000000040375144 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 + 0x0000000040375144 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x0000000040375144 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 + 0x0000000040375148 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 + 0x0000000040375150 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 + 0x0000000040375150 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 + 0x0000000040375150 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_erase_chip + 0x0000000040375150 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .literal.spi_flash_chip_mxic_opi_erase_sector + 0x0000000040375154 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .literal.spi_flash_chip_mxic_opi_erase_block + 0x0000000040375158 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .literal.spi_flash_chip_mxic_opi_page_program + 0x000000004037515c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .literal.spi_flash_chip_xmic_opi_config_host_io_mode + 0x0000000040375160 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 + 0x0000000040375168 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 + 0x0000000040375174 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_chip_mxic_opi_read_reg + 0x0000000040375180 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_get_io_mode + 0x0000000040375180 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_get_write_protect + 0x0000000040375184 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 + 0x000000004037518c 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 + 0x000000004037518c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x000000004037518c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x000000004037518c 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 + 0x000000004037518c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x000000004037518c 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 + 0x000000004037518c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x000000004037518c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x000000004037518c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hpm_probe_chip_with_cmd + 0x0000000040375194 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hpm_probe_chip_with_dummy + 0x0000000040375198 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hpm_probe_chip_with_write_hpf_bit_5 + 0x00000000403751a4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .literal.spi_flash_high_performance_check_dummy_sr + 0x00000000403751a8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_high_performance_check_hpf_bit_5 + 0x00000000403751a8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_turn_high_performance_write_hpf_bit_5 + 0x00000000403751a8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_turn_high_performance_reconfig_dummy + 0x00000000403751ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_enable_high_performance_send_cmd + 0x00000000403751ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_enable_high_performance_mode + 0x00000000403751ac 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x3c (size before relaxing) + .literal.get_mspi_core_clock + 0x00000000403751c8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.spi_timing_enter_mspi_low_speed_mode + 0x00000000403751c8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x10 (size before relaxing) + .literal.spi_timing_enter_mspi_high_speed_mode + 0x00000000403751c8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x1c (size before relaxing) + .literal.spi_timing_change_speed_mode_cache_safe + 0x00000000403751c8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x18 (size before relaxing) + .literal.spi_timing_get_flash_timing_param + 0x00000000403751d0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x4 (size before relaxing) + .literal.spi_timing_config_set_core_clock + 0x00000000403751d0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x8 (size before relaxing) + .literal.spi_timing_config_set_flash_clock + 0x00000000403751d4 0xc esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x18 (size before relaxing) + .literal.spi_timing_config_set_psram_clock + 0x00000000403751e0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x8 (size before relaxing) + .literal 0x00000000403751e0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .iram1.1 0x00000000403751e0 0xb2 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x00000000403751e0 esp_app_get_elf_sha256 + *fill* 0x0000000040375292 0x2 + .iram1.2 0x0000000040375294 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x00000000403752e8 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000403752e8 pthread_mutex_lock + *fill* 0x000000004037530a 0x2 + .iram1.6 0x000000004037530c 0x61 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x6d (size before relaxing) + 0x000000004037530c pthread_mutex_unlock + *fill* 0x000000004037536d 0x3 + .iram1.0 0x0000000040375370 0x9f esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xa3 (size before relaxing) + 0x0000000040375370 call_start_cpu1 + *fill* 0x000000004037540f 0x1 + .iram1.1 0x0000000040375410 0x8b esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x8f (size before relaxing) + 0x0000000040375410 do_multicore_settings + *fill* 0x000000004037549b 0x1 + .iram1.2 0x000000004037549c 0x247 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x273 (size before relaxing) + 0x000000004037549c call_start_cpu0 + *fill* 0x00000000403756e3 0x1 + .iram1 0x00000000403756e4 0x8f esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x97 (size before relaxing) + 0x00000000403756e4 xt_highint4 + 0x0000000040375773 ld_include_highint_hdl + *fill* 0x0000000040375773 0x1 + .iram1.3 0x0000000040375774 0x2c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x0000000040375774 esp_cache_err_get_cpuid + .iram1 0x00000000403757a0 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x00000000403757a0 esp_ipc_isr_handler + *fill* 0x0000000040375803 0x1 + .iram1.0 0x0000000040375804 0x72 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + *fill* 0x0000000040375876 0x2 + .iram1.2 0x0000000040375878 0x3c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x43 (size before relaxing) + 0x0000000040375878 esp_restart_noos_dig + *fill* 0x00000000403758b4 0x0 + .iram1.3 0x00000000403758b4 0x40 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4f (size before relaxing) + 0x00000000403758b4 esp_restart + *fill* 0x00000000403758f4 0x0 + .iram1.2 0x00000000403758f4 0x2a esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x00000000403758f4 start_cpu_other_cores + *fill* 0x000000004037591e 0x2 + .iram1.0 0x0000000040375920 0x1a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004037593a 0x2 + .iram1.1 0x000000004037593c 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x000000004037593c panicHandler + *fill* 0x000000004037594e 0x2 + .iram1.2 0x0000000040375950 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x0000000040375950 xt_unhandled_exception + *fill* 0x0000000040375962 0x2 + .iram1.0 0x0000000040375964 0x35 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x44 (size before relaxing) + *fill* 0x0000000040375999 0x3 + .iram1.0 0x000000004037599c 0x2e esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x31 (size before relaxing) + 0x000000004037599c esp_reset_reason_set_hint + *fill* 0x00000000403759ca 0x2 + .iram1.1 0x00000000403759cc 0x2e esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x00000000403759cc esp_reset_reason_get_hint + *fill* 0x00000000403759fa 0x2 + .iram1.0 0x00000000403759fc 0x88 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x00000000403759fc esp_system_reset_modules_on_exit + .iram1.1 0x0000000040375a84 0x137 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x15b (size before relaxing) + 0x0000000040375a84 esp_restart_noos + *fill* 0x0000000040375bbb 0x1 + .iram1.1 0x0000000040375bbc 0x1c esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040375bd8 0x0 + .iram1.0 0x0000000040375bd8 0x1f esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040375bf7 0x1 + .iram1.1 0x0000000040375bf8 0x3b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x0000000040375c33 0x1 + .iram1.2 0x0000000040375c34 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x0000000040375c4c 0xc1 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x0000000040375c4c esp_backtrace_get_next_frame + *fill* 0x0000000040375d0d 0x3 + .iram1.3 0x0000000040375d10 0x17d esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x189 (size before relaxing) + 0x0000000040375d10 esp_backtrace_print_from_frame + *fill* 0x0000000040375e8d 0x3 + .iram1.4 0x0000000040375e90 0x25 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x29 (size before relaxing) + 0x0000000040375e90 esp_backtrace_print + *fill* 0x0000000040375eb5 0x3 + .iram1 0x0000000040375eb8 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x0000000040375eb8 esp_backtrace_get_start + *fill* 0x0000000040375ed5 0x3 + .iram1.7 0x0000000040375ed8 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x0000000040375ed8 esp_ipc_isr_stall_abort + *fill* 0x0000000040375ee7 0x1 + .iram1.0 0x0000000040375ee8 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000040375ee8 esp_vApplicationTickHook + *fill* 0x0000000040375f0f 0x1 + .iram1.0 0x0000000040375f10 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040375f10 panic_abort + *fill* 0x0000000040375f2a 0x2 + .iram1.1 0x0000000040375f2c 0x1a esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x0000000040375f2c esp_rom_install_uart_printf + *fill* 0x0000000040375f46 0x2 + .iram1.0 0x0000000040375f48 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x0000000040375f48 efuse_hal_chip_revision + .iram1.1 0x0000000040375f60 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040375f60 efuse_hal_flash_encryption_enabled + .iram1.0 0x0000000040375f88 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040375f88 efuse_hal_get_major_chip_version + .iram1.1 0x0000000040375fe0 0x52 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x0000000040375fe0 efuse_hal_get_minor_chip_version + *fill* 0x0000000040376032 0x2 + .iram1.0 0x0000000040376034 0x1a esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x0000000040376034 brownout_hal_intr_clear + *fill* 0x000000004037604e 0x2 + .iram1.1 0x0000000040376050 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x0000000040376066 0x2 + .iram1.9 0x0000000040376068 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000004037608b 0x1 + .iram1.0 0x000000004037608c 0x83 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x93 (size before relaxing) + *fill* 0x000000004037610f 0x1 + .iram1.2 0x0000000040376110 0xae esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xb6 (size before relaxing) + *fill* 0x00000000403761be 0x2 + .iram1.13 0x00000000403761c0 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + .iram1.3 0x00000000403761f0 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x00000000403761f0 heap_caps_malloc + .iram1.4 0x000000004037621c 0x72 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x7a (size before relaxing) + 0x000000004037621c heap_caps_malloc_default + *fill* 0x000000004037628e 0x2 + .iram1.10 0x0000000040376290 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x0000000040376290 heap_caps_free + *fill* 0x00000000403762c7 0x1 + .iram1.11 0x00000000403762c8 0x106 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x126 (size before relaxing) + *fill* 0x00000000403763ce 0x2 + .iram1.12 0x00000000403763d0 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x00000000403763d0 heap_caps_realloc + .iram1.5 0x00000000403763fc 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x80 (size before relaxing) + 0x00000000403763fc heap_caps_realloc_default + .iram1.14 0x0000000040376478 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x0000000040376478 heap_caps_calloc + .iram1.1 0x00000000403764a4 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000403764a4 esp_clk_cpu_freq + *fill* 0x00000000403764b5 0x3 + .iram1.2 0x00000000403764b8 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000403764b8 esp_clk_apb_freq + *fill* 0x00000000403764e1 0x3 + .iram1.2 0x00000000403764e4 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x000000004037651d 0x3 + .iram1.6 0x0000000040376520 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x0000000040376520 esp_intr_noniram_disable + *fill* 0x0000000040376594 0x0 + .iram1.7 0x0000000040376594 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7f (size before relaxing) + 0x0000000040376594 esp_intr_noniram_enable + *fill* 0x00000000403765f8 0x0 + .iram1.4 0x00000000403765f8 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xce (size before relaxing) + 0x00000000403765f8 esp_intr_enable + *fill* 0x00000000403766b6 0x2 + .iram1.5 0x00000000403766b8 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x10e (size before relaxing) + 0x00000000403766b8 esp_intr_disable + *fill* 0x00000000403767b2 0x2 + .iram1.3 0x00000000403767b4 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x7b (size before relaxing) + 0x00000000403767b4 wifi_bt_common_module_enable + *fill* 0x000000004037681c 0x0 + .iram1.4 0x000000004037681c 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x77 (size before relaxing) + 0x000000004037681c wifi_bt_common_module_disable + *fill* 0x0000000040376880 0x0 + .iram1.7 0x0000000040376880 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.8 0x00000000403768cc 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x00000000403768cc rtc_isr_noniram_disable + .iram1.9 0x0000000040376900 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x0000000040376900 rtc_isr_noniram_enable + *fill* 0x000000004037691f 0x1 + .iram1.4 0x0000000040376920 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x67 (size before relaxing) + 0x0000000040376920 regi2c_ctrl_read_reg_mask + *fill* 0x0000000040376978 0x0 + .iram1.5 0x0000000040376978 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x0000000040376978 regi2c_ctrl_write_reg + *fill* 0x00000000403769c8 0x0 + .iram1.6 0x00000000403769c8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x6b (size before relaxing) + 0x00000000403769c8 regi2c_ctrl_write_reg_mask + *fill* 0x0000000040376a24 0x0 + .iram1.7 0x0000000040376a24 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x2a (size before relaxing) + 0x0000000040376a24 regi2c_enter_critical + *fill* 0x0000000040376a43 0x1 + .iram1.8 0x0000000040376a44 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x23 (size before relaxing) + 0x0000000040376a44 regi2c_exit_critical + *fill* 0x0000000040376a60 0x0 + .iram1.1 0x0000000040376a60 0x1a4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000040376a60 esp_mprot_monitor_clear_intr + .iram1.2 0x0000000040376c04 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000040376c04 esp_mprot_is_conf_locked_any + .iram1.3 0x0000000040376d9c 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000040376d9c esp_mprot_is_intr_ena_any + .iram1.3 0x0000000040376e8c 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040376e8c xPortInterruptedFromISRContext + *fill* 0x0000000040376ea6 0x2 + .iram1 0x0000000040376ea8 0x5a0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x5b0 (size before relaxing) + 0x0000000040376f64 _xt_user_exit + 0x0000000040377384 _xt_medint2_exit + 0x0000000040377434 _xt_medint3_exit + .iram1.2 0x0000000040377448 0x81 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x0000000040377448 SysTickIsrHandler + *fill* 0x00000000403774c9 0x3 + .iram1 0x00000000403774cc 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x32 (size before relaxing) + 0x00000000403774cc xt_debugexception + 0x00000000403774ec xt_highint5 + 0x00000000403774f4 xt_nmi + 0x00000000403774f4 _xt_nmi + *fill* 0x00000000403774fa 0x2 + .iram1.2 0x00000000403774fc 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040377520 0x0 + .iram1.18 0x0000000040377520 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040377537 0x1 + .iram1.6 0x0000000040377538 0xa5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb9 (size before relaxing) + *fill* 0x00000000403775dd 0x3 + .iram1.11 0x00000000403775e0 0x5e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004037763e 0x2 + .iram1.5 0x0000000040377640 0x37 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x47 (size before relaxing) + 0x0000000040377640 _lock_close_recursive + 0x0000000040377640 _lock_close + *fill* 0x0000000040377677 0x1 + .iram1.7 0x0000000040377678 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040377678 _lock_acquire + *fill* 0x0000000040377686 0x2 + .iram1.8 0x0000000040377688 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040377688 _lock_acquire_recursive + *fill* 0x0000000040377696 0x2 + .iram1.9 0x0000000040377698 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040377698 _lock_try_acquire + .iram1.10 0x00000000403776a8 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x00000000403776a8 _lock_try_acquire_recursive + .iram1.12 0x00000000403776b8 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403776b8 _lock_release + *fill* 0x00000000403776c7 0x1 + .iram1.13 0x00000000403776c8 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403776c8 _lock_release_recursive + *fill* 0x00000000403776d7 0x1 + .iram1.14 0x00000000403776d8 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403776d8 __retarget_lock_init + *fill* 0x00000000403776eb 0x1 + .iram1.15 0x00000000403776ec 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403776ec __retarget_lock_init_recursive + *fill* 0x00000000403776ff 0x1 + .iram1.16 0x0000000040377700 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040377700 __retarget_lock_close + *fill* 0x000000004037770f 0x1 + .iram1.17 0x0000000040377710 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040377710 __retarget_lock_close_recursive + *fill* 0x000000004037771f 0x1 + .iram1.19 0x0000000040377720 0x21 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + 0x0000000040377720 __retarget_lock_acquire + *fill* 0x0000000040377741 0x3 + .iram1.20 0x0000000040377744 0x21 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + 0x0000000040377744 __retarget_lock_acquire_recursive + *fill* 0x0000000040377765 0x3 + .iram1.21 0x0000000040377768 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040377768 __retarget_lock_try_acquire + *fill* 0x000000004037778e 0x2 + .iram1.22 0x0000000040377790 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040377790 __retarget_lock_try_acquire_recursive + *fill* 0x00000000403777b6 0x2 + .iram1.23 0x00000000403777b8 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x00000000403777b8 __retarget_lock_release + *fill* 0x00000000403777cb 0x1 + .iram1.24 0x00000000403777cc 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x00000000403777cc __retarget_lock_release_recursive + *fill* 0x00000000403777df 0x1 + .iram1.0 0x00000000403777e0 0x2c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x00000000403777e0 esp_reent_init + .iram1.3 0x000000004037780c 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000004037780c _gettimeofday_r + *fill* 0x0000000040377856 0x2 + .iram1.2 0x0000000040377858 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2c (size before relaxing) + 0x0000000040377858 _times_r + .iram1.9 0x0000000040377880 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2c (size before relaxing) + .iram1.6 0x00000000403778a8 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.10 0x0000000040377940 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004037795f 0x1 + .iram1.7 0x0000000040377960 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x68 (size before relaxing) + .iram1.11 0x00000000403779c4 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000403779e2 0x2 + .iram1.3 0x00000000403779e4 0x65 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x75 (size before relaxing) + 0x00000000403779e4 esp_timer_start_once + *fill* 0x0000000040377a49 0x3 + .iram1.4 0x0000000040377a4c 0x85 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x99 (size before relaxing) + 0x0000000040377a4c esp_timer_start_periodic + *fill* 0x0000000040377ad1 0x3 + .iram1.5 0x0000000040377ad4 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4a (size before relaxing) + 0x0000000040377ad4 esp_timer_stop + *fill* 0x0000000040377b16 0x2 + .iram1.0 0x0000000040377b18 0x1f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x0000000040377b18 esp_system_get_time + *fill* 0x0000000040377b37 0x1 + .iram1.3 0x0000000040377b38 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x0000000040377b5e 0x2 + .iram1.1 0x0000000040377b60 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x1a (size before relaxing) + 0x0000000040377b60 esp_timer_get_time + 0x0000000040377b60 esp_timer_impl_get_time + *fill* 0x0000000040377b76 0x2 + .iram1.2 0x0000000040377b78 0x7d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x90 (size before relaxing) + 0x0000000040377b78 esp_timer_impl_set_alarm_id + *fill* 0x0000000040377bf5 0x3 + .iram1.0 0x0000000040377bf8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xb (size before relaxing) + 0x0000000040377bf8 phy_i2c_enter_critical + *fill* 0x0000000040377c00 0x0 + .iram1.1 0x0000000040377c00 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xb (size before relaxing) + 0x0000000040377c00 phy_i2c_exit_critical + *fill* 0x0000000040377c08 0x0 + .iram1.0 0x0000000040377c08 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000040377c08 xt_unhandled_interrupt + *fill* 0x0000000040377c1e 0x2 + .iram1.0 0x0000000040377c20 0xc3 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0xc7 (size before relaxing) + *fill* 0x0000000040377ce3 0x1 + .iram1.1 0x0000000040377ce4 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040377ce4 bootloader_flash_execute_command_common + .iram1.2 0x0000000040377ecc 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040377ecc bootloader_execute_flash_command + .iram1.3 0x0000000040377eec 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + 0x0000000040377eec bootloader_flash_read_sfdp + .iram1.4 0x0000000040377f24 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x0000000040377f24 bootloader_read_flash_id + *fill* 0x0000000040377f4e 0x2 + .iram1.12 0x0000000040377f50 0x94 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9c (size before relaxing) + 0x0000000040377f50 bootloader_flash_reset_chip + .iram1.0 0x0000000040377fe4 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x0000000040377fe4 esp_flash_encryption_enabled + *fill* 0x0000000040377fee 0x2 + .iram1.9 0x0000000040377ff0 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000040377ffa 0x2 + .iram1.2 0x0000000040377ffc 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x0000000040377ffc spi_flash_op_block_func + *fill* 0x0000000040378042 0x2 + .iram1.8 0x0000000040378044 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004037804e 0x2 + .iram1.14 0x0000000040378050 0x1f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x2a (size before relaxing) + 0x0000000040378050 esp_cache_op_lock + *fill* 0x000000004037806f 0x1 + .iram1.15 0x0000000040378070 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x23 (size before relaxing) + 0x0000000040378070 esp_cache_op_unlock + *fill* 0x000000004037808c 0x0 + .iram1.3 0x000000004037808c 0x102 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x11a (size before relaxing) + 0x000000004037808c spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x000000004037818e 0x2 + .iram1.4 0x0000000040378190 0x95 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa5 (size before relaxing) + 0x0000000040378190 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x0000000040378225 0x3 + .iram1.7 0x0000000040378228 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040378228 spi_flash_enable_cache + *fill* 0x0000000040378237 0x1 + .iram1.10 0x0000000040378238 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x0000000040378238 spi_flash_cache_enabled + .iram1.16 0x0000000040378244 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040378244 esp_cache_op_lock_init + *fill* 0x0000000040378256 0x2 + .iram1.2 0x0000000040378258 0x6c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.8 0x00000000403782c4 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000403782f6 0x2 + .iram1.3 0x00000000403782f8 0x35 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x39 (size before relaxing) + *fill* 0x000000004037832d 0x3 + .iram1.11 0x0000000040378330 0x88 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8c (size before relaxing) + .iram1.5 0x00000000403783b8 0x255 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x275 (size before relaxing) + 0x00000000403783b8 spi_flash_mmap_pages + *fill* 0x000000004037860d 0x3 + .iram1.4 0x0000000040378610 0x75 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x79 (size before relaxing) + 0x0000000040378610 spi_flash_mmap + *fill* 0x0000000040378685 0x3 + .iram1.6 0x0000000040378688 0xb3 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xba (size before relaxing) + 0x0000000040378688 spi_flash_munmap + *fill* 0x000000004037873b 0x1 + .iram1.12 0x000000004037873c 0x58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x000000004037873c spi_flash_check_and_flush_cache + .iram1.4 0x0000000040378794 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040378794 spi_flash_guard_set + *fill* 0x000000004037879e 0x2 + .iram1.7 0x00000000403787a0 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xd (size before relaxing) + 0x00000000403787a0 spi_flash_init_chip_state + *fill* 0x00000000403787aa 0x2 + .iram1.4 0x00000000403787ac 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x00000000403787f2 0x2 + .iram1.9 0x00000000403787f4 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8c (size before relaxing) + .iram1.7 0x000000004037887c 0x6a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x00000000403788e6 0x2 + .iram1.10 0x00000000403788e8 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x00000000403788e8 esp_flash_get_physical_size + .iram1.6 0x0000000040378954 0x160 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x184 (size before relaxing) + 0x0000000040378954 esp_flash_init_main + .iram1.13 0x0000000040378ab4 0x222 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x226 (size before relaxing) + 0x0000000040378ab4 esp_flash_erase_region + *fill* 0x0000000040378cd6 0x2 + .iram1.18 0x0000000040378cd8 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040378cd8 esp_flash_read + *fill* 0x0000000040378e1e 0x2 + .iram1.19 0x0000000040378e20 0x15a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040378e20 esp_flash_write + *fill* 0x0000000040378f7a 0x2 + .iram1.20 0x0000000040378f7c 0x150 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x158 (size before relaxing) + 0x0000000040378f7c esp_flash_write_encrypted + .iram1.12 0x00000000403790cc 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000403790d6 0x2 + .iram1.11 0x00000000403790d8 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000004037911e 0x2 + .iram1.10 0x0000000040379120 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.14 0x0000000040379130 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004037913b 0x1 + .iram1.9 0x000000004037913c 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + .iram1.8 0x0000000040379154 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x56 (size before relaxing) + *fill* 0x00000000403791a6 0x2 + .iram1.13 0x00000000403791a8 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x00000000403791c6 0x2 + .iram1.2 0x00000000403791c8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000403791d0 0x0 + .iram1.7 0x00000000403791d0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.3 0x00000000403791e4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000403791ec 0x0 + .iram1.6 0x00000000403791ec 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.3 0x00000000403791f8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.2 0x0000000040379208 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x0000000040379225 0x3 + .iram1.1 0x0000000040379228 0x13 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x17 (size before relaxing) + *fill* 0x000000004037923b 0x1 + .iram1.1 0x000000004037923c 0x5a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x0000000040379296 0x2 + .iram1.2 0x0000000040379298 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x00000000403792f0 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x00000000403792f0 esp_crosscore_int_send_yield + *fill* 0x00000000403792ff 0x1 + .iram1.6 0x0000000040379300 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x0000000040379300 esp_crosscore_int_send_print_backtrace + *fill* 0x000000004037930f 0x1 + .iram1.7 0x0000000040379310 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x0000000040379310 esp_crosscore_int_send_twdt_abort + *fill* 0x000000004037931f 0x1 + .iram1.5 0x0000000040379320 0xa4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xa8 (size before relaxing) + .iram1 0x00000000403793c4 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x00000000403793c4 _xt_panic + .iram1.16 0x0000000040379404 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040379412 0x2 + .iram1.2 0x0000000040379414 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x0000000040379414 wifi_malloc + .iram1.3 0x0000000040379420 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000040379420 wifi_realloc + *fill* 0x0000000040379431 0x3 + .iram1.4 0x0000000040379434 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000040379434 wifi_calloc + *fill* 0x0000000040379445 0x3 + .iram1.5 0x0000000040379448 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040379459 0x3 + .iram1.24 0x000000004037945c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037946e 0x2 + .iram1.27 0x0000000040379470 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.26 0x0000000040379484 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.25 0x0000000040379498 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.21 0x00000000403794ac 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000403794be 0x2 + .iram1.20 0x00000000403794c0 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000403794ca 0x2 + .iram1.19 0x00000000403794cc 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000403794de 0x2 + .iram1.15 0x00000000403794e0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000403794f5 0x3 + .iram1.14 0x00000000403794f8 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.13 0x0000000040379504 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040379515 0x3 + .iram1.10 0x0000000040379518 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000040379520 0x0 + .iram1.8 0x0000000040379520 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040379537 0x1 + .iram1.7 0x0000000040379538 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004037955a 0x2 + .iram1.0 0x000000004037955c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x000000004037955c esp_mbedtls_mem_calloc + .iram1.1 0x0000000040379570 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x0000000040379570 esp_mbedtls_mem_free + *fill* 0x000000004037957a 0x2 + .iram1.6 0x000000004037957c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004037959e 0x2 + .iram1.2 0x00000000403795a0 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000403795be 0x2 + .iram1.4 0x00000000403795c0 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x00000000403795c4 wifi_gpio_debug + *fill* 0x00000000403795d7 0x1 + .iram1.39 0x00000000403795d8 0xaf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xd7 (size before relaxing) + 0x00000000403795f4 wDev_ProcessFiq + *fill* 0x0000000040379687 0x1 + .iram1.12 0x0000000040379688 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x000000004037968c hal_mac_interrupt_get_event + *fill* 0x0000000040379699 0x3 + .iram1.13 0x000000004037969c 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x00000000403796a0 hal_mac_interrupt_clr_event + *fill* 0x00000000403796ad 0x3 + .iram1.2 0x00000000403796b0 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x00000000403796b4 hal_pwr_interrupt_get_event + *fill* 0x00000000403796c1 0x3 + .iram1.3 0x00000000403796c4 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x00000000403796c8 hal_pwr_interrupt_clr_event + *fill* 0x00000000403796d5 0x3 + .iram1.2 0x00000000403796d8 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000403796d8 bootloader_read_status_8b_rdsr3 + *fill* 0x00000000403796ed 0x3 + .iram1.6 0x00000000403796f0 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x00000000403796f0 bootloader_write_status_8b_wrsr3 + *fill* 0x0000000040379703 0x1 + .iram1.0 0x0000000040379704 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x4c (size before relaxing) + 0x0000000040379704 esp_random + .iram1.2 0x000000004037974c 0x13 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000004037975f 0x1 + .iram1.3 0x0000000040379760 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x0000000040379760 ets_timer_arm_us + 0x0000000040379760 os_timer_arm_us + *fill* 0x00000000403797ba 0x2 + .iram1.4 0x00000000403797bc 0x62 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x76 (size before relaxing) + 0x00000000403797bc os_timer_arm + 0x00000000403797bc ets_timer_arm + *fill* 0x000000004037981e 0x2 + .iram1.5 0x0000000040379820 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x0000000040379820 os_timer_disarm + 0x0000000040379820 ets_timer_disarm + .iram1.6 0x0000000040379834 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x0000000040379834 esp_phy_common_clock_enable + *fill* 0x000000004037983c 0x0 + .iram1.7 0x000000004037983c 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x000000004037983c esp_phy_common_clock_disable + *fill* 0x0000000040379844 0x0 + .iram1.8 0x0000000040379844 0x69 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + 0x0000000040379844 esp_wifi_power_domain_on + 0x0000000040379844 esp_wifi_bt_power_domain_on + *fill* 0x00000000403798ad 0x3 + .iram1 0x00000000403798b0 0x81 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x9d (size before relaxing) + 0x00000000403798bc phy_wakeup_init + 0x00000000403798f0 tx_pwctrl_background + 0x0000000040379900 noise_check_loop + 0x0000000040379908 phy_close_rf + 0x0000000040379914 phy_xpd_tsens + *fill* 0x0000000040379931 0x3 + .iram1 0x0000000040379934 0x1d2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x1da (size before relaxing) + 0x0000000040379938 phy_freq_mem_backup + 0x000000004037994c phy_dig_reg_backup + 0x0000000040379964 phy_set_rate + *fill* 0x0000000040379b06 0x2 + .iram1 0x0000000040379b08 0xcc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0xdc (size before relaxing) + 0x0000000040379b18 pll_cap_mem_update + 0x0000000040379b98 ram_phy_en_hw_set_freq + 0x0000000040379bb4 ram_phy_dis_hw_set_freq + .iram1 0x0000000040379bd4 0x29f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x2d7 (size before relaxing) + 0x0000000040379cf4 ram_phy_wakeup_init + 0x0000000040379e34 ram_phy_close_rf + *fill* 0x0000000040379e73 0x1 + .iram1 0x0000000040379e74 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x21 (size before relaxing) + 0x0000000040379e74 ram_read_sar2_code + *fill* 0x0000000040379e91 0x3 + .iram1 0x0000000040379e94 0xa73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0xad7 (size before relaxing) + 0x0000000040379ec8 rx_11b_opt + 0x000000004037a01c ram_agc_reg_init + 0x000000004037a108 ram_set_pbus_reg + 0x000000004037a430 ram_wifi_tx_dig_gain_reg + 0x000000004037a7d4 ram_disable_wifi_agc + 0x000000004037a818 ram_enable_wifi_agc + 0x000000004037a87c ram_fe_i2c_reg_renew + *fill* 0x000000004037a907 0x1 + .iram1 0x000000004037a908 0xe3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xf3 (size before relaxing) + 0x000000004037a908 ram_pll_vol_cal + 0x000000004037a910 ram_write_pll_cap + 0x000000004037a944 read_pll_cap + 0x000000004037a984 rfpll_cap_correct + *fill* 0x000000004037a9eb 0x1 + .iram1 0x000000004037a9ec 0x360 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x3bc (size before relaxing) + 0x000000004037a9ec ulp_ext_code_set + 0x000000004037aa64 ram_txpwr_cal_track + 0x000000004037ab88 ulp_code_track + 0x000000004037abf4 ram_bt_track_tx_power + 0x000000004037ac0c ram_wifi_track_tx_power + 0x000000004037ac2c rfpll_cap_track + 0x000000004037aca4 ram_bt_track_pll_cap + 0x000000004037acf4 bt_track_pll_cap + 0x000000004037acfc ram_tx_pwctrl_background + .iram1 0x000000004037ad4c 0x87 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x93 (size before relaxing) + 0x000000004037ad4c ram_temp_to_power + 0x000000004037ad8c ram_tsens_code_read + 0x000000004037adc0 ram_tsens_temp_read + *fill* 0x000000004037add3 0x1 + .iram1 0x000000004037add4 0x60e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x64a (size before relaxing) + 0x000000004037aea8 ram_get_rate_fcc_index + 0x000000004037af00 ram_get_chan_target_power + 0x000000004037af84 get_tx_gain_value + 0x000000004037b020 ram_bt_get_tx_gain + 0x000000004037b100 ram_wifi_tx_dig_gain + 0x000000004037b14c dig_gain_check + 0x000000004037b198 ram_wifi_get_tx_gain + 0x000000004037b2b4 ram_wifi_set_tx_gain + 0x000000004037b374 ram_bt_set_tx_gain + *fill* 0x000000004037b3e2 0x2 + .iram1 0x000000004037b3e4 0xdc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0xfc (size before relaxing) + 0x000000004037b3ec ram_i2c_master_reset + .iram1 0x000000004037b4c0 0x366 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x3c2 (size before relaxing) + 0x000000004037b580 ram_phy_i2c_init1 + 0x000000004037b728 ram_get_i2c_hostid + 0x000000004037b768 ram_chip_i2c_readReg + 0x000000004037b7c4 ram_chip_i2c_writeReg + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x0 + *fill* 0x000000004037b826 0x2 + .iram1.8 0x000000004037b828 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x0 + *fill* 0x000000004037b83b 0x1 + .iram1.1 0x000000004037b83c 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x000000004037b83c esp_timer_impl_get_min_period_us + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x0 + *fill* 0x000000004037b845 0x3 + .iram1.0 0x000000004037b848 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + 0x000000004037b848 esp_pm_lock_acquire + .iram1.1 0x000000004037b850 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + 0x000000004037b850 esp_pm_lock_release + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + *fill* 0x000000004037b858 0x0 + .iram1.6 0x000000004037b858 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000004037b858 esp_mspi_pin_init + *fill* 0x000000004037b85d 0x0 + *fill* 0x000000004037b85d 0x3 + .iram1.2 0x000000004037b860 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004037b882 0x2 + .iram1.3 0x000000004037b884 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + *fill* 0x000000004037b89c 0x0 + .iram1.6 0x000000004037b89c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8a3 0x1 + .iram1.9 0x000000004037b8a4 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8b6 0x0 + *fill* 0x000000004037b8b6 0x2 + .iram1.17 0x000000004037b8b8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8bd 0x3 + .iram1.18 0x000000004037b8c0 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8c5 0x3 + .iram1.22 0x000000004037b8c8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8cd 0x3 + .iram1.23 0x000000004037b8d0 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8d5 0x3 + .iram1.28 0x000000004037b8d8 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8df 0x1 + .iram1.29 0x000000004037b8e0 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8e7 0x1 + .iram1.30 0x000000004037b8e8 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8ef 0x1 + .iram1.31 0x000000004037b8f0 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8f7 0x1 + .iram1.32 0x000000004037b8f8 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 0x0 + *fill* 0x000000004037b8fd 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.*) + *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:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *fill* 0x000000004037b8fd 0x3 + .text.esp_cpu_compare_and_set + 0x000000004037b900 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x000000004037b900 esp_cpu_compare_and_set + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *fill* 0x000000004037b915 0x3 + .text.esp_cpu_reset + 0x000000004037b918 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x000000004037b918 esp_cpu_reset + *fill* 0x000000004037b950 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + .text.esp_cpu_stall + 0x000000004037b950 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x000000004037b950 esp_cpu_stall + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + .text.esp_cpu_unstall + 0x000000004037b9e8 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x000000004037b9e8 esp_cpu_unstall + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x000000004037ba45 0x3 + .text.esp_cpu_wait_for_intr + 0x000000004037ba48 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x000000004037ba48 esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + .text.esp_ptr_byte_accessible + 0x000000004037ba50 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x000000004037ba50 esp_ptr_byte_accessible + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + .text.rtc_clk_bbpll_disable + 0x000000004037ba80 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000004037ba9f 0x1 + .text.rtc_clk_bbpll_enable + 0x000000004037baa0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_set_bbpll_always_on + 0x000000004037bab8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_configure + 0x000000004037bac8 0x14b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x163 (size before relaxing) + *fill* 0x000000004037bc13 0x1 + .text.rtc_clk_32k_enable + 0x000000004037bc14 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037bc14 rtc_clk_32k_enable + .text.rtc_clk_32k_enable_external + 0x000000004037bcf0 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037bcf0 rtc_clk_32k_enable_external + .text.rtc_clk_8m_enable + 0x000000004037bda0 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037bda0 rtc_clk_8m_enable + *fill* 0x000000004037be3d 0x3 + .text.rtc_clk_8md256_enabled + 0x000000004037be40 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037be40 rtc_clk_8md256_enabled + *fill* 0x000000004037be5a 0x2 + .text.rtc_clk_slow_src_set + 0x000000004037be5c 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x9a (size before relaxing) + 0x000000004037be5c rtc_clk_slow_src_set + *fill* 0x000000004037bef2 0x2 + .text.rtc_clk_slow_src_get + 0x000000004037bef4 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037bef4 rtc_clk_slow_src_get + *fill* 0x000000004037bf1e 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x000000004037bf20 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2a (size before relaxing) + 0x000000004037bf20 rtc_clk_slow_freq_get_hz + *fill* 0x000000004037bf46 0x2 + .text.rtc_clk_fast_src_set + 0x000000004037bf48 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x000000004037bf48 rtc_clk_fast_src_set + *fill* 0x000000004037bf8f 0x1 + .text.rtc_clk_xtal_freq_get + 0x000000004037bf90 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3e (size before relaxing) + 0x000000004037bf90 rtc_clk_xtal_freq_get + 0x000000004037bf90 rtc_get_xtal + *fill* 0x000000004037bfca 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x000000004037bfcc 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037bfcc rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x000000004037c034 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037c034 rtc_clk_cpu_freq_get_config + .text.rtc_clk_apb_freq_update + 0x000000004037c14c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037c14c rtc_clk_apb_freq_update + *fill* 0x000000004037c156 0x2 + .text.rtc_clk_cpu_freq_to_xtal + 0x000000004037c158 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xbf (size before relaxing) + *fill* 0x000000004037c20b 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x000000004037c20c 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x22 (size before relaxing) + 0x000000004037c20c rtc_clk_cpu_freq_set_xtal + *fill* 0x000000004037c222 0x2 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x000000004037c224 0x20d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x221 (size before relaxing) + *fill* 0x000000004037c431 0x3 + .text.rtc_clk_cpu_freq_to_8m + 0x000000004037c434 0x87 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x93 (size before relaxing) + *fill* 0x000000004037c4bb 0x1 + .text.rtc_clk_cpu_freq_set_config + 0x000000004037c4bc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x80 (size before relaxing) + 0x000000004037c4bc rtc_clk_cpu_freq_set_config + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *fill* 0x000000004037c520 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + .text.rtc_sleep_pu + 0x000000004037c520 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x000000004037c520 rtc_sleep_pu + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x000000004037c6d0 0x232 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x23a (size before relaxing) + 0x000000004037c6d0 rtc_clk_cal_internal + *fill* 0x000000004037c902 0x2 + .text.rtc_clk_cal + 0x000000004037c904 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xcd (size before relaxing) + 0x000000004037c904 rtc_clk_cal + *fill* 0x000000004037c9c9 0x3 + .text.rtc_time_us_to_slowclk + 0x000000004037c9cc 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x000000004037c9cc rtc_time_us_to_slowclk + *fill* 0x000000004037c9eb 0x1 + .text.rtc_time_get + 0x000000004037c9ec 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x000000004037c9ec rtc_time_get + *fill* 0x000000004037ca14 0x0 + *fill* 0x000000004037ca14 0x0 + *fill* 0x000000004037ca14 0x0 + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) + .text.systimer_ticks_to_us + 0x000000004037ca14 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x000000004037ca14 systimer_ticks_to_us + *fill* 0x000000004037ca25 0x3 + .text.systimer_us_to_ticks + 0x000000004037ca28 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x000000004037ca28 systimer_us_to_ticks + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037ca39 0x3 + .text.Cache_Suspend_ICache + 0x000000004037ca3c 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x000000004037ca3c Cache_Suspend_ICache + *fill* 0x000000004037ca57 0x1 + .text.Cache_Suspend_DCache + 0x000000004037ca58 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x000000004037ca58 Cache_Suspend_DCache + *fill* 0x000000004037ca73 0x1 + .text.Cache_Freeze_ICache_Enable + 0x000000004037ca74 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x000000004037ca74 Cache_Freeze_ICache_Enable + .text.Cache_Freeze_DCache_Enable + 0x000000004037ca90 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x000000004037ca90 Cache_Freeze_DCache_Enable + *fill* 0x000000004037caac 0x0 + *fill* 0x000000004037caac 0x0 + *fill* 0x000000004037caac 0x0 + *libesp_rom.a:esp_rom_cache_writeback_esp32s3.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_mmap.*(.literal .literal.* .text .text.*) + .text.Cache_Get_IROM_MMU_End + 0x000000004037caac 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x000000004037caac Cache_Get_IROM_MMU_End + .text.Cache_Get_DROM_MMU_End + 0x000000004037cab4 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x000000004037cab4 Cache_Get_DROM_MMU_End + *libesp_rom.a:esp_rom_regi2c.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x000000004037cabc 0x4b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x000000004037cb07 0x1 + .text._esp_error_check_failed + 0x000000004037cb08 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x000000004037cb08 _esp_error_check_failed + *fill* 0x000000004037cb32 0x0 + *libesp_system.a:esp_system.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x000000004037cb32 0x2 + .text.esp_system_abort + 0x000000004037cb34 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + 0x000000004037cb34 esp_system_abort + *fill* 0x000000004037cb3c 0x0 + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x000000004037cb3c 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x000000004037cb3c __ubsan_include + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.*) .text.*) + *fill* 0x000000004037cb41 0x3 + .text.vPortTaskWrapper + 0x000000004037cb44 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004037cb6a 0x2 + .text.xPortStartScheduler + 0x000000004037cb6c 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2e (size before relaxing) + 0x000000004037cb6c xPortStartScheduler + *fill* 0x000000004037cb92 0x2 + .text.pxPortInitialiseStack + 0x000000004037cb94 0xb1 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xb4 (size before relaxing) + 0x000000004037cb94 pxPortInitialiseStack + *fill* 0x000000004037cc45 0x3 + .text.xPortInIsrContext + 0x000000004037cc48 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037cc48 xPortInIsrContext + *fill* 0x000000004037cc6e 0x2 + .text.xPortEnterCriticalTimeout + 0x000000004037cc70 0x14c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x154 (size before relaxing) + 0x000000004037cc70 xPortEnterCriticalTimeout + .text.vPortExitCritical + 0x000000004037cdbc 0x8c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037cdbc vPortExitCritical + .text.vPortYieldOtherCore + 0x000000004037ce48 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x000000004037ce48 vPortYieldOtherCore + *fill* 0x000000004037ce52 0x2 + .text.vApplicationStackOverflowHook + 0x000000004037ce54 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037ce54 vApplicationStackOverflowHook + *fill* 0x000000004037ce91 0x3 + .text.vPortReleaseTaskMPUSettings + 0x000000004037ce94 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x000000004037ce94 vPortReleaseTaskMPUSettings + *fill* 0x000000004037ce9e 0x2 + .text 0x000000004037cea0 0x198 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x1a8 (size before relaxing) + 0x000000004037cea0 _frxt_setup_switch + 0x000000004037ceb8 _frxt_int_enter + 0x000000004037cefc _frxt_int_exit + 0x000000004037cf4c _frxt_dispatch + 0x000000004037cf9c vPortYield + 0x000000004037cfec vPortYieldFromInt + 0x000000004037d00c _frxt_task_coproc_state + .text 0x000000004037d038 0x17e esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x000000004037d038 _xt_context_save + 0x000000004037d0dc _xt_context_restore + 0x000000004037d120 _xt_coproc_init + 0x000000004037d138 _xt_coproc_release + 0x000000004037d168 _xt_coproc_savecs + 0x000000004037d190 _xt_coproc_restorecs + *fill* 0x000000004037d1b6 0x2 + .text.vPortSetupTimer + 0x000000004037d1b8 0xfb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x122 (size before relaxing) + 0x000000004037d1b8 vPortSetupTimer + *fill* 0x000000004037d2b3 0x1 + .text.xPortSysTickHandler + 0x000000004037d2b4 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x000000004037d2b4 xPortSysTickHandler + *fill* 0x000000004037d2db 0x1 + .text.prvIsQueueEmpty + 0x000000004037d2dc 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataToQueue + 0x000000004037d304 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004037d396 0x2 + .text.prvNotifyQueueSetContainer + 0x000000004037d398 0x9a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa6 (size before relaxing) + *fill* 0x000000004037d432 0x2 + .text.prvCopyDataFromQueue + 0x000000004037d434 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvUnlockQueue + 0x000000004037d458 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xba (size before relaxing) + *fill* 0x000000004037d4fa 0x2 + .text.xQueueGenericReset + 0x000000004037d4fc 0xad esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xbd (size before relaxing) + 0x000000004037d4fc xQueueGenericReset + *fill* 0x000000004037d5a9 0x3 + .text.prvInitialiseNewQueue + 0x000000004037d5ac 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000004037d5cb 0x1 + .text.xQueueGenericCreateStatic + 0x000000004037d5cc 0xb0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb8 (size before relaxing) + 0x000000004037d5cc xQueueGenericCreateStatic + .text.xQueueGenericCreate + 0x000000004037d67c 0x98 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9c (size before relaxing) + 0x000000004037d67c xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x000000004037d714 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004037d714 xQueueGetMutexHolder + *fill* 0x000000004037d73a 0x2 + .text.xQueueCreateCountingSemaphore + 0x000000004037d73c 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4b (size before relaxing) + 0x000000004037d73c xQueueCreateCountingSemaphore + *fill* 0x000000004037d77f 0x1 + .text.xQueueGenericSend + 0x000000004037d780 0x228 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27c (size before relaxing) + 0x000000004037d780 xQueueGenericSend + .text.prvInitialiseMutex + 0x000000004037d9a8 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000004037d9de 0x2 + .text.xQueueCreateMutex + 0x000000004037d9e0 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x000000004037d9e0 xQueueCreateMutex + *fill* 0x000000004037d9f6 0x2 + .text.xQueueCreateMutexStatic + 0x000000004037d9f8 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x000000004037d9f8 xQueueCreateMutexStatic + *fill* 0x000000004037da12 0x2 + .text.xQueueGiveMutexRecursive + 0x000000004037da14 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x000000004037da14 xQueueGiveMutexRecursive + .text.xQueueGenericSendFromISR + 0x000000004037da54 0x11c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x12c (size before relaxing) + 0x000000004037da54 xQueueGenericSendFromISR + .text.xQueueGiveFromISR + 0x000000004037db70 0xf6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x106 (size before relaxing) + 0x000000004037db70 xQueueGiveFromISR + *fill* 0x000000004037dc66 0x2 + .text.xQueueReceive + 0x000000004037dc68 0x16b esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1b3 (size before relaxing) + 0x000000004037dc68 xQueueReceive + *fill* 0x000000004037ddd3 0x1 + .text.xQueueSemaphoreTake + 0x000000004037ddd4 0x19a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1f2 (size before relaxing) + 0x000000004037ddd4 xQueueSemaphoreTake + *fill* 0x000000004037df6e 0x2 + .text.xQueueTakeMutexRecursive + 0x000000004037df70 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x44 (size before relaxing) + 0x000000004037df70 xQueueTakeMutexRecursive + .text.xQueueReceiveFromISR + 0x000000004037dfb0 0xc6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xd2 (size before relaxing) + 0x000000004037dfb0 xQueueReceiveFromISR + *fill* 0x000000004037e076 0x2 + .text.uxQueueMessagesWaiting + 0x000000004037e078 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + 0x000000004037e078 uxQueueMessagesWaiting + .text.vQueueDelete + 0x000000004037e0a4 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x000000004037e0a4 vQueueDelete + *fill* 0x000000004037e0c8 0x0 + .text.prvResetNextTaskUnblockTime + 0x000000004037e0c8 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x000000004037e100 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000004037e13b 0x1 + .text.prvInitialiseNewTask + 0x000000004037e13c 0xdf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xeb (size before relaxing) + *fill* 0x000000004037e21b 0x1 + .text.prvInitialiseTaskLists + 0x000000004037e21c 0x67 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x77 (size before relaxing) + *fill* 0x000000004037e283 0x1 + .text.taskSelectHighestPriorityTaskSMP + 0x000000004037e284 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x128 (size before relaxing) + .text.prvDeleteTCB + 0x000000004037e3a8 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x000000004037e3f0 0x0 + .text.prvCheckTasksWaitingTermination + 0x000000004037e3f0 0xc6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xce (size before relaxing) + *fill* 0x000000004037e4b6 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x000000004037e4b8 0xb6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc2 (size before relaxing) + *fill* 0x000000004037e56e 0x2 + .text.prvIdleTask + 0x000000004037e570 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004037e57f 0x1 + .text.taskYIELD_OTHER_CORE + 0x000000004037e580 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + 0x000000004037e580 taskYIELD_OTHER_CORE + .text.prvAddNewTaskToReadyList + 0x000000004037e5d0 0x144 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x153 (size before relaxing) + *fill* 0x000000004037e714 0x0 + .text.xTaskCreateStaticPinnedToCore + 0x000000004037e714 0xd5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xed (size before relaxing) + 0x000000004037e714 xTaskCreateStaticPinnedToCore + *fill* 0x000000004037e7e9 0x3 + .text.xTaskCreatePinnedToCore + 0x000000004037e7ec 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x79 (size before relaxing) + 0x000000004037e7ec xTaskCreatePinnedToCore + *fill* 0x000000004037e855 0x3 + .text.vTaskSuspendAll + 0x000000004037e858 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037e858 vTaskSuspendAll + *fill* 0x000000004037e87e 0x2 + .text.xTaskGetTickCount + 0x000000004037e880 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037e880 xTaskGetTickCount + *fill* 0x000000004037e88d 0x3 + .text.xTaskGetTickCountFromISR + 0x000000004037e890 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037e890 xTaskGetTickCountFromISR + *fill* 0x000000004037e8a6 0x2 + .text.xTaskGetIdleTaskHandleForCPU + 0x000000004037e8a8 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + 0x000000004037e8a8 xTaskGetIdleTaskHandleForCPU + .text.xTaskIncrementTick + 0x000000004037e8e0 0x19d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b1 (size before relaxing) + 0x000000004037e8e0 xTaskIncrementTick + *fill* 0x000000004037ea7d 0x3 + .text.xTaskResumeAll + 0x000000004037ea80 0x140 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14b (size before relaxing) + 0x000000004037ea80 xTaskResumeAll + *fill* 0x000000004037ebc0 0x0 + .text.xTaskIncrementTickOtherCores + 0x000000004037ebc0 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9c (size before relaxing) + 0x000000004037ebc0 xTaskIncrementTickOtherCores + .text.vTaskSwitchContext + 0x000000004037ec58 0x10c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x118 (size before relaxing) + 0x000000004037ec58 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x000000004037ed64 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5b (size before relaxing) + 0x000000004037ed64 vTaskPlaceOnEventList + *fill* 0x000000004037edaf 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x000000004037edb0 0x5f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x73 (size before relaxing) + 0x000000004037edb0 vTaskPlaceOnUnorderedEventList + *fill* 0x000000004037ee0f 0x1 + .text.xTaskRemoveFromEventList + 0x000000004037ee10 0x130 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13b (size before relaxing) + 0x000000004037ee10 xTaskRemoveFromEventList + *fill* 0x000000004037ef40 0x0 + .text.vTaskTakeEventListLock + 0x000000004037ef40 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + 0x000000004037ef40 vTaskTakeEventListLock + *fill* 0x000000004037ef4d 0x3 + .text.vTaskReleaseEventListLock + 0x000000004037ef50 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + 0x000000004037ef50 vTaskReleaseEventListLock + *fill* 0x000000004037ef5b 0x1 + .text.vTaskRemoveFromUnorderedEventList + 0x000000004037ef5c 0xb5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc1 (size before relaxing) + 0x000000004037ef5c vTaskRemoveFromUnorderedEventList + *fill* 0x000000004037f011 0x3 + .text.vTaskInternalSetTimeOutState + 0x000000004037f014 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x43 (size before relaxing) + 0x000000004037f014 vTaskInternalSetTimeOutState + *fill* 0x000000004037f04f 0x1 + .text.xTaskCheckForTimeOut + 0x000000004037f050 0xb8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc3 (size before relaxing) + 0x000000004037f050 xTaskCheckForTimeOut + *fill* 0x000000004037f108 0x0 + .text.vTaskMissedYield + 0x000000004037f108 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037f108 vTaskMissedYield + .text.xTaskGetCurrentTaskHandle + 0x000000004037f120 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037f120 xTaskGetCurrentTaskHandle + *fill* 0x000000004037f13f 0x1 + .text.uxTaskPriorityGet + 0x000000004037f140 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x26 (size before relaxing) + 0x000000004037f140 uxTaskPriorityGet + *fill* 0x000000004037f15f 0x1 + .text.vTaskPrioritySet + 0x000000004037f160 0x175 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x187 (size before relaxing) + 0x000000004037f160 vTaskPrioritySet + *fill* 0x000000004037f2d5 0x3 + .text.vTaskSuspend + 0x000000004037f2d8 0x140 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x170 (size before relaxing) + 0x000000004037f2d8 vTaskSuspend + .text.pcTaskGetName + 0x000000004037f418 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x27 (size before relaxing) + 0x000000004037f418 pcTaskGetName + *fill* 0x000000004037f43c 0x0 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x000000004037f43c 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x000000004037f43c vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x000000004037f463 0x1 + .text.pvTaskGetThreadLocalStoragePointer + 0x000000004037f464 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + 0x000000004037f464 pvTaskGetThreadLocalStoragePointer + .text.xTaskGetAffinity + 0x000000004037f480 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x000000004037f480 xTaskGetAffinity + *fill* 0x000000004037f490 0x0 + .text.xTaskGetCurrentTaskHandleForCPU + 0x000000004037f490 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037f490 xTaskGetCurrentTaskHandleForCPU + .text.xTaskGetSchedulerState + 0x000000004037f4a8 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037f4a8 xTaskGetSchedulerState + *fill* 0x000000004037f4df 0x1 + .text.vTaskDelete + 0x000000004037f4e0 0xf6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x112 (size before relaxing) + 0x000000004037f4e0 vTaskDelete + *fill* 0x000000004037f5d6 0x2 + .text.vTaskDelay + 0x000000004037f5d8 0x41 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x51 (size before relaxing) + 0x000000004037f5d8 vTaskDelay + *fill* 0x000000004037f619 0x3 + .text.xTaskPriorityInherit + 0x000000004037f61c 0xe5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xec (size before relaxing) + 0x000000004037f61c xTaskPriorityInherit + *fill* 0x000000004037f701 0x3 + .text.xTaskPriorityDisinherit + 0x000000004037f704 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xba (size before relaxing) + 0x000000004037f704 xTaskPriorityDisinherit + *fill* 0x000000004037f7ab 0x1 + .text.vTaskPriorityDisinheritAfterTimeout + 0x000000004037f7ac 0xad esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xb5 (size before relaxing) + 0x000000004037f7ac vTaskPriorityDisinheritAfterTimeout + *fill* 0x000000004037f859 0x3 + .text.uxTaskResetEventItemValue + 0x000000004037f85c 0x4e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x52 (size before relaxing) + 0x000000004037f85c uxTaskResetEventItemValue + *fill* 0x000000004037f8aa 0x2 + .text.pvTaskIncrementMutexHeldCount + 0x000000004037f8ac 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + 0x000000004037f8ac pvTaskIncrementMutexHeldCount + .text.ulTaskGenericNotifyTake + 0x000000004037f8fc 0x111 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x129 (size before relaxing) + 0x000000004037f8fc ulTaskGenericNotifyTake + *fill* 0x000000004037fa0d 0x3 + .text.vTaskGenericNotifyGiveFromISR + 0x000000004037fa10 0x11d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x130 (size before relaxing) + 0x000000004037fa10 vTaskGenericNotifyGiveFromISR + *fill* 0x000000004037fb2d 0x3 + .text.__getreent + 0x000000004037fb30 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x19 (size before relaxing) + 0x000000004037fb30 __getreent + *fill* 0x000000004037fb45 0x3 + .text.vTaskGetSnapshot + 0x000000004037fb48 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x000000004037fb48 vTaskGetSnapshot + *fill* 0x000000004037fb6d 0x3 + .text.prvTaskPriorityRaise + 0x000000004037fb70 0x9d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa8 (size before relaxing) + 0x000000004037fb70 prvTaskPriorityRaise + *fill* 0x000000004037fc0d 0x3 + .text.prvTaskPriorityRestore + 0x000000004037fc10 0x99 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa3 (size before relaxing) + 0x000000004037fc10 prvTaskPriorityRestore + *fill* 0x000000004037fca9 0x3 + .text.vTaskStartScheduler + 0x000000004037fcac 0x90 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9f (size before relaxing) + 0x000000004037fcac vTaskStartScheduler + *fill* 0x000000004037fd3c 0x0 + .text.xPortCheckValidTCBMem + 0x000000004037fd3c 0x5e esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x000000004037fd3c xPortCheckValidTCBMem + *fill* 0x000000004037fd9a 0x2 + .text.xPortcheckValidStackMem + 0x000000004037fd9c 0x5e esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x000000004037fd9c xPortcheckValidStackMem + *fill* 0x000000004037fdfa 0x2 + .text.vApplicationGetIdleTaskMemory + 0x000000004037fdfc 0x44 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4f (size before relaxing) + 0x000000004037fdfc vApplicationGetIdleTaskMemory + *fill* 0x000000004037fe40 0x0 + .text.xEventGroupCreate + 0x000000004037fe40 0x38 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x40 (size before relaxing) + 0x000000004037fe40 xEventGroupCreate + .text.xEventGroupWaitBits + 0x000000004037fe78 0x112 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x12e (size before relaxing) + 0x000000004037fe78 xEventGroupWaitBits + *fill* 0x000000004037ff8a 0x2 + .text.xEventGroupClearBits + 0x000000004037ff8c 0x4d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x55 (size before relaxing) + 0x000000004037ff8c xEventGroupClearBits + *fill* 0x000000004037ffd9 0x3 + .text.xEventGroupSetBits + 0x000000004037ffdc 0x94 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xa8 (size before relaxing) + 0x000000004037ffdc xEventGroupSetBits + .text.vEventGroupDelete + 0x0000000040380070 0x4f esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x63 (size before relaxing) + 0x0000000040380070 vEventGroupDelete + *fill* 0x00000000403800bf 0x0 + *fill* 0x00000000403800bf 0x0 + *fill* 0x00000000403800bf 0x0 + *fill* 0x00000000403800bf 0x0 + *fill* 0x00000000403800bf 0x0 + *fill* 0x00000000403800bf 0x1 + .text.vPortStoreTaskMPUSettings + 0x00000000403800c0 0x1c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000403800c0 vPortStoreTaskMPUSettings + *fill* 0x00000000403800dc 0x0 + *fill* 0x00000000403800dc 0x0 + *fill* 0x00000000403800dc 0x0 + *fill* 0x00000000403800dc 0x0 + .text.prvGetDisinheritPriorityAfterTimeout + 0x00000000403800dc 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueFull + 0x00000000403800f4 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x0 + *fill* 0x000000004038010a 0x2 + .text.xTimerCreateTimerTask + 0x000000004038010c 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004038010c xTimerCreateTimerTask + *fill* 0x0000000040380113 0x0 + *fill* 0x0000000040380113 0x0 + *fill* 0x0000000040380113 0x0 + *fill* 0x0000000040380113 0x0 + *fill* 0x0000000040380113 0x1 + .text.vListInitialise + 0x0000000040380114 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040380114 vListInitialise + .text.vListInitialiseItem + 0x000000004038012c 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004038012c vListInitialiseItem + *fill* 0x0000000040380135 0x3 + .text.vListInsertEnd + 0x0000000040380138 0x1f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040380138 vListInsertEnd + *fill* 0x0000000040380157 0x1 + .text.vListInsert + 0x0000000040380158 0x33 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040380158 vListInsert + *fill* 0x000000004038018b 0x1 + .text.uxListRemove + 0x000000004038018c 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004038018c uxListRemove + *fill* 0x00000000403801bb 0x1 + .text.prvTestWaitCondition + 0x00000000403801bc 0x21 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x00000000403801dd 0x0 + *fill* 0x00000000403801dd 0x0 + *fill* 0x00000000403801dd 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* 0x00000000403801dd 0x3 + .text.cache_hal_disable + 0x00000000403801e0 0x2a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x00000000403801e0 cache_hal_disable + *fill* 0x000000004038020a 0x2 + .text.cache_hal_enable + 0x000000004038020c 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x000000004038020c cache_hal_enable + *fill* 0x0000000040380246 0x2 + .text.cache_hal_suspend + 0x0000000040380248 0x20 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x2a (size before relaxing) + 0x0000000040380248 cache_hal_suspend + *fill* 0x0000000040380268 0x0 + .text.cache_hal_resume + 0x0000000040380268 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x0000000040380268 cache_hal_resume + *fill* 0x00000000403802a2 0x2 + .text.cache_hal_is_cache_enabled + 0x00000000403802a4 0x49 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x00000000403802a4 cache_hal_is_cache_enabled + *fill* 0x00000000403802ed 0x0 + *fill* 0x00000000403802ed 0x0 + *fill* 0x00000000403802ed 0x0 + *fill* 0x00000000403802ed 0x0 + *fill* 0x00000000403802ed 0x0 + *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:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403802ed 0x3 + .text.spi_flash_encryption_hal_enable + 0x00000000403802f0 0x21 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x00000000403802f0 spi_flash_encryption_hal_enable + *fill* 0x0000000040380311 0x3 + .text.spi_flash_encryption_hal_disable + 0x0000000040380314 0x17 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040380314 spi_flash_encryption_hal_disable + *fill* 0x000000004038032b 0x1 + .text.spi_flash_encryption_hal_prepare + 0x000000004038032c 0x34 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004038032c spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x0000000040380360 0x25 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040380360 spi_flash_encryption_hal_done + *fill* 0x0000000040380385 0x3 + .text.spi_flash_encryption_hal_destroy + 0x0000000040380388 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040380388 spi_flash_encryption_hal_destroy + *fill* 0x0000000040380397 0x0 + *fill* 0x0000000040380397 0x0 + *fill* 0x0000000040380397 0x0 + *fill* 0x0000000040380397 0x0 + *fill* 0x0000000040380397 0x1 + .text.spi_flash_encryption_hal_check + 0x0000000040380398 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040380398 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403803a7 0x1 + .text.spi_flash_hal_gpspi_device_config + 0x00000000403803a8 0x138 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x00000000403803a8 spi_flash_hal_gpspi_device_config + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x00000000403804e0 0x2a6 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x00000000403804e0 spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x0000000040380786 0x2 + .text.spi_flash_hal_gpspi_common_command + 0x0000000040380788 0x1f1 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040380788 spi_flash_hal_gpspi_common_command + *fill* 0x0000000040380979 0x3 + .text.spi_flash_hal_gpspi_read + 0x000000004038097c 0x111 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004038097c spi_flash_hal_gpspi_read + *fill* 0x0000000040380a8d 0x3 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x0000000040380a90 0xf esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040380a90 spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x0000000040380a9f 0x0 + *fill* 0x0000000040380a9f 0x0 + *fill* 0x0000000040380a9f 0x0 + *fill* 0x0000000040380a9f 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x0000000040380aa0 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040380aa0 spi_flash_hal_gpspi_supports_direct_write + *fill* 0x0000000040380aa7 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x0000000040380aa8 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040380aa8 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x0000000040380aaf 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x0000000040380ab0 0x17 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040380ab0 spi_flash_hal_gpspi_check_status + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040380ac7 0x1 + .text.spi_flash_hal_configure_host_io_mode + 0x0000000040380ac8 0x321 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040380ac8 spi_flash_hal_configure_host_io_mode + *fill* 0x0000000040380de9 0x3 + .text.spi_flash_hal_common_command + 0x0000000040380dec 0x1a1 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040380dec spi_flash_hal_common_command + *fill* 0x0000000040380f8d 0x3 + .text.spi_flash_hal_read + 0x0000000040380f90 0xcd esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040380f90 spi_flash_hal_read + *fill* 0x000000004038105d 0x3 + .text.spi_flash_hal_erase_chip + 0x0000000040381060 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381060 spi_flash_hal_erase_chip + *fill* 0x0000000040381086 0x2 + .text.spi_flash_hal_erase_sector + 0x0000000040381088 0x6e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381088 spi_flash_hal_erase_sector + *fill* 0x00000000403810f6 0x2 + .text.spi_flash_hal_erase_block + 0x00000000403810f8 0x66 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000403810f8 spi_flash_hal_erase_block + *fill* 0x000000004038115e 0x2 + .text.spi_flash_hal_program_page + 0x0000000040381160 0xb2 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381160 spi_flash_hal_program_page + *fill* 0x0000000040381212 0x2 + .text.spi_flash_hal_set_write_protect + 0x0000000040381214 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381214 spi_flash_hal_set_write_protect + .text.spi_flash_hal_setup_read_suspend + 0x0000000040381250 0x13 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x16 (size before relaxing) + 0x0000000040381250 spi_flash_hal_setup_read_suspend + *fill* 0x0000000040381263 0x1 + .text.spi_flash_hal_setup_auto_suspend_mode + 0x0000000040381264 0x53 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381264 spi_flash_hal_setup_auto_suspend_mode + *fill* 0x00000000403812b7 0x1 + .text.spi_flash_hal_setup_auto_resume_mode + 0x00000000403812b8 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000403812b8 spi_flash_hal_setup_auto_resume_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x00000000403812d0 0x53 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000403812d0 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x0000000040381323 0x1 + .text.spi_flash_hal_disable_auto_resume_mode + 0x0000000040381324 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381324 spi_flash_hal_disable_auto_resume_mode + .text.spi_flash_hal_device_config + 0x000000004038133c 0xfd esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x105 (size before relaxing) + 0x000000004038133c spi_flash_hal_device_config + *fill* 0x0000000040381439 0x3 + .text.spi_flash_hal_poll_cmd_done + 0x000000004038143c 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004038143c spi_flash_hal_poll_cmd_done + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x0 + *fill* 0x000000004038144b 0x1 + .text.spi_flash_hal_check_status + 0x000000004038144c 0x25 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004038144c spi_flash_hal_check_status + *fill* 0x0000000040381471 0x0 + *fill* 0x0000000040381471 0x0 + *fill* 0x0000000040381471 0x0 + *fill* 0x0000000040381471 0x0 + *fill* 0x0000000040381471 0x3 + .text.spi_flash_hal_resume + 0x0000000040381474 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040381474 spi_flash_hal_resume + .text.spi_flash_hal_suspend + 0x000000004038148c 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004038148c 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.*) + .text.systimer_hal_init + 0x00000000403814a4 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403814a4 systimer_hal_init + *fill* 0x00000000403814be 0x2 + .text.systimer_hal_get_counter_value + 0x00000000403814c0 0x52 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403814c0 systimer_hal_get_counter_value + *fill* 0x0000000040381512 0x2 + .text.systimer_hal_set_alarm_target + 0x0000000040381514 0x70 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040381514 systimer_hal_set_alarm_target + .text.systimer_hal_set_alarm_period + 0x0000000040381584 0x87 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8a (size before relaxing) + 0x0000000040381584 systimer_hal_set_alarm_period + *fill* 0x000000004038160b 0x1 + .text.systimer_hal_counter_value_advance + 0x000000004038160c 0x58 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x5c (size before relaxing) + 0x000000004038160c systimer_hal_counter_value_advance + .text.systimer_hal_select_alarm_mode + 0x0000000040381664 0x3f esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040381664 systimer_hal_select_alarm_mode + *fill* 0x00000000403816a3 0x1 + .text.systimer_hal_connect_alarm_counter + 0x00000000403816a4 0x22 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403816a4 systimer_hal_connect_alarm_counter + *fill* 0x00000000403816c6 0x2 + .text.systimer_hal_set_tick_rate_ops + 0x00000000403816c8 0xd esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403816c8 systimer_hal_set_tick_rate_ops + *fill* 0x00000000403816d5 0x0 + *fill* 0x00000000403816d5 0x0 + *fill* 0x00000000403816d5 0x3 + .text.systimer_hal_enable_alarm_int + 0x00000000403816d8 0x1e esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403816d8 systimer_hal_enable_alarm_int + *fill* 0x00000000403816f6 0x2 + .text.systimer_hal_enable_counter + 0x00000000403816f8 0x21 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x00000000403816f8 systimer_hal_enable_counter + *fill* 0x0000000040381719 0x0 + *fill* 0x0000000040381719 0x0 + *fill* 0x0000000040381719 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x000000004038171c 0x50 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004038171c systimer_hal_counter_can_stall_by_cpu + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + .text.assert_valid_block + 0x000000004038176c 0x38 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3c (size before relaxing) + *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_free_impl .text.multi_heap_free_impl) + .text.multi_heap_free_impl + 0x00000000403817a4 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x00000000403817a4 multi_heap_free_impl + 0x00000000403817a4 multi_heap_aligned_free + 0x00000000403817a4 multi_heap_free + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x00000000403817ea 0x2 + .text.multi_heap_get_allocated_size_impl + 0x00000000403817ec 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x00000000403817ec multi_heap_get_allocated_size_impl + 0x00000000403817ec multi_heap_get_allocated_size + *fill* 0x00000000403817f8 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_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 + 0x00000000403817f8 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x12 (size before relaxing) + 0x00000000403817f8 multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + *fill* 0x0000000040381806 0x2 + .text.multi_heap_internal_unlock + 0x0000000040381808 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xf (size before relaxing) + 0x0000000040381808 multi_heap_internal_unlock + *fill* 0x0000000040381814 0x0 + *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* 0x0000000040381814 0x0 + .text.multi_heap_malloc_impl + 0x0000000040381814 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x62 (size before relaxing) + 0x0000000040381814 multi_heap_malloc + 0x0000000040381814 multi_heap_malloc_impl + *fill* 0x0000000040381862 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *fill* 0x0000000040381862 0x2 + .text.multi_heap_realloc_impl + 0x0000000040381864 0x73 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x87 (size before relaxing) + 0x0000000040381864 multi_heap_realloc + 0x0000000040381864 multi_heap_realloc_impl + *fill* 0x00000000403818d7 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x00000000403818d7 0x1 + .text.multi_heap_set_lock + 0x00000000403818d8 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000403818d8 multi_heap_set_lock + *libheap.a:tlsf.*(.literal.tlsf_align_size .text.tlsf_align_size) + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *fill* 0x00000000403818df 0x1 + .text.tlsf_alloc_overhead + 0x00000000403818e0 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x00000000403818e0 tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x00000000403818e7 0x1 + .text.tlsf_block_size + 0x00000000403818e8 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x00000000403818e8 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max) + *fill* 0x00000000403818fe 0x2 + .text.tlsf_block_size_max + 0x0000000040381900 0x19 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x0000000040381900 tlsf_block_size_max + *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min) + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x0000000040381919 0x3 + .text.tlsf_free + 0x000000004038191c 0x3d8 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3fc (size before relaxing) + 0x000000004038191c tlsf_free + *fill* 0x0000000040381cf4 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x0000000040381cf4 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x0000000040381cf4 tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x0000000040381d00 0x3c9 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3e9 (size before relaxing) + 0x0000000040381d00 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) + *fill* 0x00000000403820c9 0x3 + .text.tlsf_realloc + 0x00000000403820cc 0x550 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x594 (size before relaxing) + 0x00000000403820cc tlsf_realloc + *fill* 0x000000004038261c 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + .text.tlsf_size + 0x000000004038261c 0xe esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004038261c tlsf_size + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x000000004038262a 0x2 + .text.esp_log_write + 0x000000004038262c 0x26 esp-idf/log/liblog.a(log.c.obj) + 0x000000004038262c esp_log_write + *fill* 0x0000000040382652 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x0000000040382652 0x2 + .text.esp_log_early_timestamp + 0x0000000040382654 0x1d esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040382654 esp_log_early_timestamp + *fill* 0x0000000040382671 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *fill* 0x0000000040382671 0x3 + .text.esp_log_impl_lock + 0x0000000040382674 0x27 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x32 (size before relaxing) + 0x0000000040382674 esp_log_impl_lock + *fill* 0x000000004038269b 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x000000004038269b 0x1 + .text.esp_log_impl_lock_timeout + 0x000000004038269c 0x3c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x44 (size before relaxing) + 0x000000004038269c esp_log_impl_lock_timeout + *fill* 0x00000000403826d8 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + .text.esp_log_impl_unlock + 0x00000000403826d8 0x1b esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1f (size before relaxing) + 0x00000000403826d8 esp_log_impl_unlock + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x00000000403826f3 0x1 + .text.esp_log_timestamp + 0x00000000403826f4 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x57 (size before relaxing) + 0x00000000403826f4 esp_log_timestamp + *fill* 0x000000004038273c 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *fill* 0x000000004038273c 0x0 + .wifi0iram.34 0x000000004038273c 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x0000000040382740 wifi_softap_cur_max_ap_bss_num + *fill* 0x0000000040382752 0x2 + .wifi0iram.11 0x0000000040382754 0x4ab E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4db (size before relaxing) + 0x000000004038279c ieee80211_encap_esfbuf + *fill* 0x0000000040382bff 0x0 + *fill* 0x0000000040382bff 0x0 + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x0000000040382bff 0x1 + .wifirxiram.41 + 0x0000000040382c00 0x542 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x57e (size before relaxing) + 0x0000000040382c60 sta_input + *fill* 0x0000000040383142 0x2 + .wifirxiram.47 + 0x0000000040383144 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x0000000040383144 sta_rx_cb + *fill* 0x000000004038315c 0x0 + *fill* 0x000000004038315c 0x0 + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + .wifislprxiram.112 + 0x000000004038315c 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x42 (size before relaxing) + 0x000000004038315c sta_reset_beacon_timeout + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040383196 0x2 + .text.abort 0x0000000040383198 0x8d esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x91 (size before relaxing) + 0x0000000040383198 abort + *fill* 0x0000000040383225 0x0 + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040383225 0x3 + .text.__assert_func + 0x0000000040383228 0x130 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x138 (size before relaxing) + 0x0000000040383228 __assert_func + *fill* 0x0000000040383358 0x0 + .text.newlib_include_assert_impl + 0x0000000040383358 0x5 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x0000000040383358 newlib_include_assert_impl + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x000000004038335d 0x3 + .text.malloc 0x0000000040383360 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040383360 valloc + 0x0000000040383360 malloc + 0x0000000040383360 pvalloc + .text.realloc 0x000000004038336c 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004038336c realloc + *fill* 0x000000004038337d 0x3 + .text.free 0x0000000040383380 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x0000000040383380 cfree + 0x0000000040383380 free + *fill* 0x000000004038338a 0x2 + .text._malloc_r + 0x000000004038338c 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x000000004038338c _malloc_r + .text._free_r 0x0000000040383398 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x0000000040383398 _free_r + *fill* 0x00000000403833a2 0x2 + .text._realloc_r + 0x00000000403833a4 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403833a4 _realloc_r + *fill* 0x00000000403833b5 0x3 + .text._calloc_r + 0x00000000403833b8 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x00000000403833b8 _calloc_r + .text.calloc 0x00000000403833e4 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x00000000403833e4 calloc + *fill* 0x00000000403833f8 0x0 + *fill* 0x00000000403833f8 0x0 + *fill* 0x00000000403833f8 0x0 + *fill* 0x00000000403833f8 0x0 + *fill* 0x00000000403833f8 0x0 + .text.newlib_include_heap_impl + 0x00000000403833f8 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403833f8 newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *fill* 0x00000000403833fd 0x3 + .wifi0iram.48 0x0000000040383400 0x1be E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x1f6 (size before relaxing) + 0x000000004038342c lmacTxFrame + *fill* 0x00000000403835be 0x2 + .wifi0iram.49 0x00000000403835c0 0x182 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x196 (size before relaxing) + 0x00000000403835d4 ppMapTxQueue + *fill* 0x0000000040383742 0x2 + .wifi0iram.52 0x0000000040383744 0x119 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x131 (size before relaxing) + 0x0000000040383764 ppProcTxSecFrame + *fill* 0x000000004038385d 0x3 + .wifi0iram.9 0x0000000040383860 0x1fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x214 (size before relaxing) + 0x00000000403838c0 ppTask + .wifi0iram.8 0x0000000040383a5c 0x6b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x6f (size before relaxing) + 0x0000000040383a64 rcUpdateTxDone + *fill* 0x0000000040383ac7 0x1 + .wifi0iram.11 0x0000000040383ac8 0xd2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x0000000040383ae8 rcGetSched + *fill* 0x0000000040383b9a 0x2 + .wifi0iram.3 0x0000000040383b9c 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x0000000040383ba8 hal_mac_tx_config_edca + .wifi0iram.4 0x0000000040383bfc 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x29 (size before relaxing) + 0x0000000040383c00 hal_mac_txq_enable + *fill* 0x0000000040383c21 0x3 + .wifi0iram.6 0x0000000040383c24 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x11 (size before relaxing) + 0x0000000040383c24 hal_random + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *fill* 0x0000000040383c31 0x0 + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *fill* 0x0000000040383c31 0x3 + .wifirxiram.9 0x0000000040383c34 0xf3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0xfb (size before relaxing) + 0x0000000040383c48 esf_buf_recycle + *fill* 0x0000000040383d27 0x1 + .wifirxiram.23 + 0x0000000040383d28 0x3c6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x40a (size before relaxing) + 0x0000000040383d64 ppRxFragmentProc + *fill* 0x00000000403840ee 0x2 + .wifirxiram.2 0x00000000403840f0 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x00000000403840f4 hal_clear_rx_beacon_pti + *fill* 0x000000004038410b 0x0 + *fill* 0x000000004038410b 0x1 + .wifirxiram.39 + 0x000000004038410c 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x000000004038410c pm_hmac_rx_data_process + *fill* 0x0000000040384111 0x0 + *fill* 0x0000000040384111 0x0 + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *fill* 0x0000000040384111 0x3 + .wifislprxiram.12 + 0x0000000040384114 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040384114 ic_mac_deinit + *fill* 0x000000004038411e 0x2 + .wifislprxiram.6 + 0x0000000040384120 0x1e0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x20c (size before relaxing) + 0x0000000040384154 pm_parse_beacon + .wifislprxiram.21 + 0x0000000040384300 0x9a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x9e (size before relaxing) + 0x0000000040384314 pm_beacon_monitor_tbtt_start + *fill* 0x000000004038439a 0x2 + .wifislprxiram.22 + 0x000000004038439c 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000403843a8 pm_beacon_monitor_tbtt_stop + *fill* 0x00000000403843c6 0x2 + .wifislprxiram.26 + 0x00000000403843c8 0x19b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1bb (size before relaxing) + 0x00000000403843e0 pm_sleep + *fill* 0x0000000040384563 0x1 + .wifislprxiram.32 + 0x0000000040384564 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x44 (size before relaxing) + 0x0000000040384564 pm_beacon_monitor_timeout_process + .wifislprxiram.36 + 0x00000000403845a4 0x115 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x129 (size before relaxing) + 0x00000000403845d4 pm_tbtt_process + *fill* 0x00000000403846b9 0x3 + .wifislprxiram.33 + 0x00000000403846bc 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x12 (size before relaxing) + 0x00000000403846bc pm_beacon_monitor_tbtt_timeout_process + *fill* 0x00000000403846c6 0x2 + .wifislprxiram.37 + 0x00000000403846c8 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xb1 (size before relaxing) + 0x00000000403846cc pm_rx_beacon_process + *fill* 0x0000000040384761 0x3 + .wifislprxiram.41 + 0x0000000040384764 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x0000000040384764 pm_on_tsf_timer + .wifislprxiram.42 + 0x0000000040384774 0xe7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11f (size before relaxing) + 0x0000000040384788 pm_on_beacon_rx + *fill* 0x000000004038485b 0x1 + .wifislprxiram.25 + 0x000000004038485c 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x0000000040384860 wDev_record_ftm_data + .wifislprxiram.16 + 0x0000000040384884 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x4e (size before relaxing) + 0x0000000040384888 hal_mac_deinit + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *fill* 0x00000000403848c2 0x0 + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403848c2 0x2 + .text.lldesc_setup_link_constrained + 0x00000000403848c4 0xf5 esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x00000000403848c4 lldesc_setup_link_constrained + *fill* 0x00000000403849b9 0x0 + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403849b9 0x3 + .text.spi_flash_needs_reset_check + 0x00000000403849bc 0x18 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x00000000403849bc spi_flash_needs_reset_check + .text.spi_flash_set_erasing_flag + 0x00000000403849d4 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x00000000403849d4 spi_flash_set_erasing_flag + *fill* 0x00000000403849df 0x1 + .text.spi_flash_brownout_need_reset + 0x00000000403849e0 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x00000000403849e0 spi_flash_brownout_need_reset + *fill* 0x0000000040384a00 0x0 + *fill* 0x0000000040384a00 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_id_hs + 0x0000000040384a00 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x0000000040384a00 memspi_host_read_id_hs + *fill* 0x0000000040384a82 0x2 + .text.memspi_host_flush_cache + 0x0000000040384a84 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384a84 memspi_host_flush_cache + *fill* 0x0000000040384a9d 0x3 + .text.memspi_host_erase_sector + 0x0000000040384aa0 0x47 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4a (size before relaxing) + 0x0000000040384aa0 memspi_host_erase_sector + *fill* 0x0000000040384ae7 0x1 + .text.memspi_host_erase_block + 0x0000000040384ae8 0x48 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4b (size before relaxing) + 0x0000000040384ae8 memspi_host_erase_block + *fill* 0x0000000040384b30 0x0 + .text.memspi_host_program_page + 0x0000000040384b30 0x4f esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x52 (size before relaxing) + 0x0000000040384b30 memspi_host_program_page + *fill* 0x0000000040384b7f 0x1 + .text.memspi_host_init_pointers + 0x0000000040384b80 0x72 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384b80 memspi_host_init_pointers + *fill* 0x0000000040384bf2 0x2 + .text.memspi_host_read_status_hs + 0x0000000040384bf4 0x38 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384bf4 memspi_host_read_status_hs + .text.memspi_host_erase_chip + 0x0000000040384c2c 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384c2c memspi_host_erase_chip + *fill* 0x0000000040384c52 0x2 + .text.memspi_host_set_write_protect + 0x0000000040384c54 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384c54 memspi_host_set_write_protect + *fill* 0x0000000040384c86 0x2 + .text.memspi_host_write_data_slicer + 0x0000000040384c88 0x43 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384c88 memspi_host_write_data_slicer + *fill* 0x0000000040384ccb 0x1 + .text.memspi_host_read_data_slicer + 0x0000000040384ccc 0x35 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040384ccc memspi_host_read_data_slicer + *fill* 0x0000000040384d01 0x0 + *fill* 0x0000000040384d01 0x0 + *fill* 0x0000000040384d01 0x0 + *fill* 0x0000000040384d01 0x0 + *fill* 0x0000000040384d01 0x0 + *fill* 0x0000000040384d01 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040384d01 0x3 + .text.spi_flash_chip_boya_probe + 0x0000000040384d04 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x0000000040384d04 spi_flash_chip_boya_probe + *fill* 0x0000000040384d2d 0x0 + *fill* 0x0000000040384d2d 0x3 + .text.spi_flash_chip_boya_get_caps + 0x0000000040384d30 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x0000000040384d30 spi_flash_chip_boya_get_caps + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040384d37 0x1 + .text.spi_flash_chip_gd_detect_size + 0x0000000040384d38 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040384d38 spi_flash_chip_gd_detect_size + *fill* 0x0000000040384d6d 0x3 + .text.spi_flash_chip_gd_probe + 0x0000000040384d70 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040384d70 spi_flash_chip_gd_probe + *fill* 0x0000000040384da9 0x3 + .text.spi_flash_chip_gd_set_io_mode + 0x0000000040384dac 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040384dac spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x0000000040384df0 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040384df0 spi_flash_chip_gd_get_io_mode + *fill* 0x0000000040384e0e 0x2 + .text.spi_flash_chip_gd_get_caps + 0x0000000040384e10 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040384e10 spi_flash_chip_gd_get_caps + *fill* 0x0000000040384e29 0x0 + *fill* 0x0000000040384e29 0x0 + *fill* 0x0000000040384e29 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040384e29 0x3 + .text.spi_flash_chip_generic_detect_size + 0x0000000040384e2c 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040384e2c spi_flash_chip_generic_detect_size + *fill* 0x0000000040384e6d 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x0000000040384e70 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040384e70 spi_flash_chip_generic_write_encrypted + .text.spi_flash_chip_generic_config_host_io_mode + 0x0000000040384f40 0x152 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040384f40 spi_flash_chip_generic_config_host_io_mode + *fill* 0x0000000040385092 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040385094 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x0000000040385094 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x00000000403850c8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403850c8 spi_flash_common_write_status_16b_wrsr + *fill* 0x00000000403850dd 0x3 + .text.spi_flash_chip_generic_read + 0x00000000403850e0 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc0 (size before relaxing) + 0x00000000403850e0 spi_flash_chip_generic_read + .text.spi_flash_chip_generic_write + 0x0000000040385198 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385198 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x0000000040385248 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3e (size before relaxing) + 0x0000000040385248 spi_flash_chip_generic_get_write_protect + *fill* 0x0000000040385282 0x2 + .text.spi_flash_chip_generic_yield + 0x0000000040385284 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x48 (size before relaxing) + 0x0000000040385284 spi_flash_chip_generic_yield + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x00000000403852c8 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x58 (size before relaxing) + 0x00000000403852c8 spi_flash_chip_generic_suspend_cmd_conf + .text.spi_flash_chip_generic_read_unique_id + 0x000000004038531c 0x97 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x9b (size before relaxing) + 0x000000004038531c spi_flash_chip_generic_read_unique_id + *fill* 0x00000000403853b3 0x1 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x00000000403853b4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403853b4 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x00000000403853c9 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x00000000403853cc 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403853cc spi_flash_chip_generic_get_io_mode + *fill* 0x00000000403853ea 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x00000000403853ec 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403853ec spi_flash_common_read_status_8b_rdsr + *fill* 0x0000000040385401 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x0000000040385404 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385404 spi_flash_common_write_status_8b_wrsr + *fill* 0x0000000040385419 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x000000004038541c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038541c spi_flash_common_write_status_8b_wrsr2 + *fill* 0x0000000040385431 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x0000000040385434 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385434 spi_flash_chip_generic_set_io_mode + *fill* 0x000000004038544c 0x0 + *fill* 0x000000004038544c 0x0 + .text.spi_flash_chip_generic_probe + 0x000000004038544c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038544c spi_flash_chip_generic_probe + *fill* 0x0000000040385453 0x1 + .text.spi_flash_chip_generic_reset + 0x0000000040385454 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385454 spi_flash_chip_generic_reset + .text.spi_flash_chip_generic_erase_chip + 0x00000000403854b0 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403854b0 spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_erase_sector + 0x000000004038553c 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038553c spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x00000000403855cc 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403855cc spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x000000004038565c 0x65 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038565c spi_flash_chip_generic_page_program + *fill* 0x00000000403856c1 0x3 + .text.spi_flash_chip_generic_set_write_protect + 0x00000000403856c4 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403856c4 spi_flash_chip_generic_set_write_protect + .text.spi_flash_chip_generic_read_reg + 0x0000000040385714 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385714 spi_flash_chip_generic_read_reg + *fill* 0x0000000040385726 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x0000000040385728 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385728 spi_flash_chip_generic_wait_idle + *fill* 0x00000000403857c0 0x0 + .text.spi_flash_chip_generic_get_caps + 0x00000000403857c0 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403857c0 spi_flash_chip_generic_get_caps + *fill* 0x00000000403857d7 0x1 + .text.spi_flash_common_read_qe_sr + 0x00000000403857d8 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x000000004038580c 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000004038583e 0x0 + *fill* 0x000000004038583e 0x0 + *fill* 0x000000004038583e 0x0 + *fill* 0x000000004038583e 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x0000000040385840 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385840 spi_flash_chip_generic_read_unique_id_none + *fill* 0x0000000040385848 0x0 + *fill* 0x0000000040385848 0x0 + *fill* 0x0000000040385848 0x0 + *fill* 0x0000000040385848 0x0 + *fill* 0x0000000040385848 0x0 + .text.spi_flash_common_set_io_mode + 0x0000000040385848 0xa4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040385848 spi_flash_common_set_io_mode + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x00000000403858ec 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000403858ec spi_flash_chip_issi_probe + *fill* 0x0000000040385915 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x0000000040385918 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x0000000040385918 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x000000004038592c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x20 (size before relaxing) + 0x000000004038592c spi_flash_chip_issi_get_io_mode + *fill* 0x0000000040385948 0x0 + .text.spi_flash_chip_issi_get_caps + 0x0000000040385948 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040385948 spi_flash_chip_issi_get_caps + *fill* 0x000000004038594f 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x000000004038594f 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x0000000040385950 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x0000000040385950 spi_flash_chip_mxic_detect_size + *fill* 0x0000000040385991 0x3 + .text.spi_flash_chip_mxic_probe + 0x0000000040385994 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x0000000040385994 spi_flash_chip_mxic_probe + *fill* 0x00000000403859b9 0x0 + *fill* 0x00000000403859b9 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x00000000403859bc 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x00000000403859bc spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_mxic_opi.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403859c3 0x1 + .text.spi_flash_chip_mxic_opi_detect_size + 0x00000000403859c4 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x00000000403859c4 spi_flash_chip_mxic_opi_detect_size + *fill* 0x00000000403859f9 0x3 + .text.spi_flash_chip_mxic_opi_erase_chip + 0x00000000403859fc 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x00000000403859fc spi_flash_chip_mxic_opi_erase_chip + *fill* 0x0000000040385a85 0x3 + .text.spi_flash_chip_mxic_opi_erase_sector + 0x0000000040385a88 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385a88 spi_flash_chip_mxic_opi_erase_sector + *fill* 0x0000000040385b11 0x3 + .text.spi_flash_chip_mxic_opi_erase_block + 0x0000000040385b14 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385b14 spi_flash_chip_mxic_opi_erase_block + *fill* 0x0000000040385b9d 0x3 + .text.spi_flash_chip_mxic_opi_page_program + 0x0000000040385ba0 0x81 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385ba0 spi_flash_chip_mxic_opi_page_program + *fill* 0x0000000040385c21 0x3 + .text.spi_flash_chip_xmic_opi_config_host_io_mode + 0x0000000040385c24 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385c24 spi_flash_chip_xmic_opi_config_host_io_mode + *fill* 0x0000000040385c56 0x2 + .text.spi_flash_chip_mxic_opi_get_data_length_zoom + 0x0000000040385c58 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x0000000040385c86 0x2 + .text.spi_flash_chip_mxic_opi_read_id + 0x0000000040385c88 0xd1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0xd9 (size before relaxing) + 0x0000000040385c88 spi_flash_chip_mxic_opi_read_id + *fill* 0x0000000040385d59 0x3 + .text.spi_flash_chip_mxic_opi_read_reg + 0x0000000040385d5c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x50 (size before relaxing) + 0x0000000040385d5c spi_flash_chip_mxic_opi_read_reg + .text.spi_flash_chip_mxic_opi_get_io_mode + 0x0000000040385da8 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x74 (size before relaxing) + 0x0000000040385da8 spi_flash_chip_mxic_opi_get_io_mode + .text.spi_flash_chip_mxic_opi_get_write_protect + 0x0000000040385e18 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x3e (size before relaxing) + 0x0000000040385e18 spi_flash_chip_mxic_opi_get_write_protect + *fill* 0x0000000040385e52 0x2 + .text.spi_flash_chip_mxic_opi_write + 0x0000000040385e54 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385e54 spi_flash_chip_mxic_opi_write + *fill* 0x0000000040385f04 0x0 + .text.spi_flash_chip_mxic_opi_probe + 0x0000000040385f04 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385f04 spi_flash_chip_mxic_opi_probe + *fill* 0x0000000040385f29 0x0 + *fill* 0x0000000040385f29 0x3 + .text.spi_flash_chip_mxic_opi_get_caps + 0x0000000040385f2c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385f2c spi_flash_chip_mxic_opi_get_caps + *fill* 0x0000000040385f33 0x1 + .text.spi_flash_chip_mxic_opi_set_write_protect + 0x0000000040385f34 0x72 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385f34 spi_flash_chip_mxic_opi_set_write_protect + *fill* 0x0000000040385fa6 0x0 + *fill* 0x0000000040385fa6 0x0 + *fill* 0x0000000040385fa6 0x0 + *fill* 0x0000000040385fa6 0x0 + *fill* 0x0000000040385fa6 0x2 + .text.spi_flash_chip_xmic_opi_set_io_mode + 0x0000000040385fa8 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x0000000040385fa8 spi_flash_chip_xmic_opi_set_io_mode + *fill* 0x0000000040385faf 0x0 + *fill* 0x0000000040385faf 0x0 + *fill* 0x0000000040385faf 0x0 + *fill* 0x0000000040385faf 0x0 + *fill* 0x0000000040385faf 0x0 + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040385faf 0x1 + .text.spi_flash_chip_th_probe + 0x0000000040385fb0 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x0000000040385fb0 spi_flash_chip_th_probe + *fill* 0x0000000040385fd9 0x3 + .text.spi_flash_chip_th_get_caps + 0x0000000040385fdc 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x0000000040385fdc spi_flash_chip_th_get_caps + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040385fe3 0x1 + .text.spi_flash_command_winbond_program_4B + 0x0000000040385fe4 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000004038602d 0x3 + .text.spi_flash_chip_winbond_page_program + 0x0000000040386030 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040386030 spi_flash_chip_winbond_page_program + *fill* 0x0000000040386065 0x3 + .text.spi_flash_command_winbond_erase_sector_4B + 0x0000000040386068 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_erase_sector + 0x00000000403860ac 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x00000000403860ac spi_flash_chip_winbond_erase_sector + *fill* 0x00000000403860fe 0x2 + .text.spi_flash_command_erase_block_4B + 0x0000000040386100 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x0000000040386146 0x2 + .text.spi_flash_chip_winbond_erase_block + 0x0000000040386148 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040386148 spi_flash_chip_winbond_erase_block + *fill* 0x000000004038619a 0x2 + .text.spi_flash_chip_winbond_read + 0x000000004038619c 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xcc (size before relaxing) + 0x000000004038619c spi_flash_chip_winbond_read + *fill* 0x0000000040386264 0x0 + .text.spi_flash_chip_winbond_probe + 0x0000000040386264 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040386264 spi_flash_chip_winbond_probe + *fill* 0x000000004038627a 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x000000004038627c 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004038627c spi_flash_chip_winbond_get_caps + *fill* 0x0000000040386295 0x0 + *fill* 0x0000000040386295 0x0 + *fill* 0x0000000040386295 0x0 + *fill* 0x0000000040386295 0x0 + *fill* 0x0000000040386295 0x0 + *fill* 0x0000000040386295 0x0 + *libspi_flash.a:spi_flash_hpm_enable.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040386295 0x3 + .text.spi_flash_hpm_probe_chip_with_cmd + 0x0000000040386298 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x00000000403862c1 0x3 + .text.spi_flash_hpm_probe_chip_with_dummy + 0x00000000403862c4 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000040386305 0x3 + .text.spi_flash_hpm_probe_chip_with_write_hpf_bit_5 + 0x0000000040386308 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000004038631d 0x3 + .text.spi_flash_high_performance_check_dummy_sr + 0x0000000040386320 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x18 (size before relaxing) + .text.spi_flash_high_performance_check_hpf_bit_5 + 0x0000000040386334 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x0000000040386349 0x3 + .text.spi_flash_turn_high_performance_write_hpf_bit_5 + 0x000000004038634c 0x2f esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x37 (size before relaxing) + *fill* 0x000000004038637b 0x1 + .text.spi_flash_turn_high_performance_reconfig_dummy + 0x000000004038637c 0x2f esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x37 (size before relaxing) + *fill* 0x00000000403863ab 0x1 + .text.spi_flash_enable_high_performance_send_cmd + 0x00000000403863ac 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x00000000403863ce 0x2 + .text.spi_flash_enable_high_performance_mode + 0x00000000403863d0 0x156 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x15e (size before relaxing) + 0x00000000403863d0 spi_flash_enable_high_performance_mode + *fill* 0x0000000040386526 0x2 + .text.spi_flash_hpm_chip_hpm_requirement_check_with_cmd + 0x0000000040386528 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x0000000040386539 0x0 + *fill* 0x0000000040386539 0x3 + .text.spi_flash_hpm_chip_hpm_requirement_check_with_dummy + 0x000000004038653c 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000004038654e 0x2 + .text.spi_flash_hpm_get_dummy_xmc + 0x0000000040386550 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x0000000040386568 0x0 + .text.spi_flash_hpm_chip_require_check_hpf_bit_5 + 0x0000000040386568 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000004038657a 0x2 + .text.spi_flash_hpm_get_dummy_generic + 0x000000004038657c 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x000000004038657c spi_flash_hpm_get_dummy_generic + *fill* 0x0000000040386596 0x0 + *fill* 0x0000000040386596 0x0 + *fill* 0x0000000040386596 0x0 + *fill* 0x0000000040386596 0x0 + *fill* 0x0000000040386596 0x0 + *libspi_flash.a:spi_flash_timing_tuning.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040386596 0x2 + .text.get_mspi_core_clock + 0x0000000040386598 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000403865a2 0x2 + .text.spi_timing_enter_mspi_low_speed_mode + 0x00000000403865a4 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x32 (size before relaxing) + 0x00000000403865a4 spi_timing_enter_mspi_low_speed_mode + *fill* 0x00000000403865ce 0x2 + .text.spi_timing_enter_mspi_high_speed_mode + 0x00000000403865d0 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x4a (size before relaxing) + 0x00000000403865d0 spi_timing_enter_mspi_high_speed_mode + *fill* 0x000000004038660a 0x2 + .text.spi_timing_change_speed_mode_cache_safe + 0x000000004038660c 0x2f esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x3a (size before relaxing) + 0x000000004038660c spi_timing_change_speed_mode_cache_safe + *fill* 0x000000004038663b 0x1 + .text.spi_timing_get_flash_timing_param + 0x000000004038663c 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x9 (size before relaxing) + 0x000000004038663c spi_timing_get_flash_timing_param + *fill* 0x0000000040386642 0x2 + .text.get_flash_clock_divider + 0x0000000040386644 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + *fill* 0x000000004038664b 0x1 + .text.get_psram_clock_divider + 0x000000004038664c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + *fill* 0x0000000040386653 0x0 + *fill* 0x0000000040386653 0x1 + .text.spi_timing_flash_tuning + 0x0000000040386654 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x0000000040386654 spi_timing_flash_tuning + *fill* 0x0000000040386659 0x0 + *fill* 0x0000000040386659 0x0 + *fill* 0x0000000040386659 0x0 + *fill* 0x0000000040386659 0x3 + .text.spi_timing_is_tuned + 0x000000004038665c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x000000004038665c spi_timing_is_tuned + *fill* 0x0000000040386663 0x0 + *libspi_flash.a:spi_timing_config.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040386663 0x1 + .text.spi_timing_config_set_core_clock + 0x0000000040386664 0x42 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x0000000040386664 spi_timing_config_set_core_clock + *fill* 0x00000000403866a6 0x2 + .text.spi_timing_config_set_flash_clock + 0x00000000403866a8 0x53 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x00000000403866a8 spi_timing_config_set_flash_clock + *fill* 0x00000000403866fb 0x1 + .text.spi_timing_config_set_psram_clock + 0x00000000403866fc 0x42 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x00000000403866fc spi_timing_config_set_psram_clock + *fill* 0x000000004038673e 0x2 + .text.spi_timing_config_get_core_clock + 0x0000000040386740 0x7 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x0000000040386740 spi_timing_config_get_core_clock + *fill* 0x0000000040386747 0x0 + *fill* 0x0000000040386747 0x0 + *fill* 0x0000000040386747 0x0 + *libxt_hal.a:(.literal .literal.* .text .text.*) + *fill* 0x0000000040386747 0x1 + .text 0x0000000040386748 0x137 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x0000000040386748 xthal_spill_registers_into_stack_nw + 0x0000000040386748 xthal_window_spill_nw + 0x000000004038685c xthal_window_spill + *fill* 0x000000004038687f 0x0 + *fill* 0x000000004038687f 0x1 + .text 0x0000000040386880 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x0000000040386880 xthal_restore_extra_nw + *fill* 0x00000000403868af 0x1 + .text 0x00000000403868b0 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + 0x00000000403868b0 xthal_save_extra_nw + *libxtensa.a:eri.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr_asm.*(.literal .literal.* .text .text.*) + *fill* 0x00000000403868df 0x1 + .text 0x00000000403868e0 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x00000000403868e0 xt_ints_on + 0x00000000403868f8 xt_ints_off + +.dram0.dummy 0x000000003fc88000 0xea00 + 0x000000003fc96a00 . = (ORIGIN (dram0_0_seg) + MAX ((_iram_end - _diram_i_start), 0x0)) + *fill* 0x000000003fc88000 0xea00 + +.dram0.data 0x000000003fc96a00 0x3e00 + 0x000000003fc96a00 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data.*) + .data.first_call$1 + 0x000000003fc96a00 0x1 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + *fill* 0x000000003fc96a01 0x3 + .data.pthread_lazy_init_lock + 0x000000003fc96a04 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x000000003fc96a04 pthread_lazy_init_lock + .data.s_keys_lock + 0x000000003fc96a0c 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x000000003fc96a14 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.wdt0_context + 0x000000003fc96a24 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data.s_apb_backup_dma_mutex + 0x000000003fc96a2c 0x8 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .data.esp_ipc_isr_end_fl + 0x000000003fc96a34 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003fc96a34 esp_ipc_isr_end_fl + .data.hooks_spinlock + 0x000000003fc96a38 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.rtc_wdt_ctx + 0x000000003fc96a40 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.s_log_print_func + 0x000000003fc96a48 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.esp_log_default_level + 0x000000003fc96a4c 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003fc96a4c esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x000000003fc96a50 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x000000003fc96a54 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x000000003fc96a55 0x3 + .data.s_esp_rtc_time_lock + 0x000000003fc96a58 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x000000003fc96a60 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x000000003fc96a68 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x000000003fc96a70 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x000000003fc96a70 rtc_spinlock + .data.mux 0x000000003fc96a78 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.g_rtc_dbias_pvt_non_240m + 0x000000003fc96a80 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fc96a80 g_rtc_dbias_pvt_non_240m + .data.g_dig_dbias_pvt_non_240m + 0x000000003fc96a84 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fc96a84 g_dig_dbias_pvt_non_240m + .data.g_rtc_dbias_pvt_240m + 0x000000003fc96a88 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fc96a88 g_rtc_dbias_pvt_240m + .data.g_dig_dbias_pvt_240m + 0x000000003fc96a8c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x000000003fc96a8c g_dig_dbias_pvt_240m + .data.s_memp_cfg + 0x000000003fc96a90 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x000000003fc96aa8 0x8 + .data 0x000000003fc96ab0 0x20 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003fc96ab0 _xt_coproc_owner_sa + .data.xTaskQueueMutex + 0x000000003fc96ad0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x000000003fc96ad8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x000000003fc96ae0 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.s_timer_lock + 0x000000003fc96b7c 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003fc96b84 0x4 + .data.timestamp_id + 0x000000003fc96b88 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x000000003fc96b88 timestamp_id + .data.s_time_update_lock + 0x000000003fc96b98 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x000000003fc96b98 s_time_update_lock + .data.s_fd_table + 0x000000003fc96ba0 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_ctx 0x000000003fc96c60 0x28 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .data.motor_control + 0x000000003fc96c88 0x4 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x000000003fc96c88 motor_control + *fill* 0x000000003fc96c8c 0x4 + .data 0x000000003fc96c90 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x000000003fc96c90 _xt_interrupt_table + 0x000000003fc96e90 _xt_exception_table + .data.ESP_EFUSE_DIG_DBIAS_HVT + 0x000000003fc97090 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc97090 ESP_EFUSE_DIG_DBIAS_HVT + .data.ESP_EFUSE_V_DIG_DBIAS20 + 0x000000003fc97098 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc97098 ESP_EFUSE_V_DIG_DBIAS20 + .data.ESP_EFUSE_V_RTC_DBIAS20 + 0x000000003fc970a0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970a0 ESP_EFUSE_V_RTC_DBIAS20 + .data.ESP_EFUSE_K_DIG_LDO + 0x000000003fc970a8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970a8 ESP_EFUSE_K_DIG_LDO + .data.ESP_EFUSE_K_RTC_LDO + 0x000000003fc970b0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970b0 ESP_EFUSE_K_RTC_LDO + .data.ESP_EFUSE_OCODE + 0x000000003fc970b8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970b8 ESP_EFUSE_OCODE + .data.ESP_EFUSE_BLK_VERSION_MAJOR + 0x000000003fc970c0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970c0 ESP_EFUSE_BLK_VERSION_MAJOR + .data.ESP_EFUSE_MAC_FACTORY + 0x000000003fc970c8 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc970c8 ESP_EFUSE_MAC_FACTORY + *fill* 0x000000003fc970e4 0x4 + .data.gpio_context + 0x000000003fc970e8 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x000000003fc97108 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .data.cache_op_lock + 0x000000003fc97110 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.s_flash_op_cpu + 0x000000003fc97118 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x000000003fc9711c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003fc9711c esp_flash_registered_chips + .data.default_registered_chips + 0x000000003fc97120 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x000000003fc97144 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x000000003fc9714c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.s_tsens_idx + 0x000000003fc97154 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x000000003fc97155 0x3 + .data.s_record_max + 0x000000003fc97158 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data.s_record_min + 0x000000003fc9715c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .data.tcp_port + 0x000000003fc97160 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003fc97162 0x2 + .data.retrans_timer + 0x000000003fc97164 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fc97164 retrans_timer + .data.reachable_time + 0x000000003fc97168 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fc97168 reachable_time + .data.udp_port + 0x000000003fc9716c 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003fc9716e 0x2 + .data.IP_EVENT + 0x000000003fc97170 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003fc97170 IP_EVENT + *fill* 0x000000003fc97174 0x4 + .data.g_wifi_feature_caps + 0x000000003fc97178 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003fc97178 g_wifi_feature_caps + .data.WIFI_EVENT + 0x000000003fc97180 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003fc97180 WIFI_EVENT + .data.g_wifi_osi_funcs + 0x000000003fc97184 0x1d4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000003fc97184 g_wifi_osi_funcs + .data.mbedtls_free_func + 0x000000003fc97358 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x000000003fc9735c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.memset_func + 0x000000003fc97360 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data.WIFI_MESH_EVENT + 0x000000003fc97364 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000003fc97364 WIFI_MESH_EVENT + .data.g_wifi_event_mask + 0x000000003fc97368 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000003fc97368 g_wifi_event_mask + .data.s_wifi_init_state + 0x000000003fc9736c 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .data.TmpSTAAPCloseAP + 0x000000003fc97370 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x000000003fc97370 TmpSTAAPCloseAP + .data.g_mesh_self_organized + 0x000000003fc97371 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fc97371 g_mesh_self_organized + *fill* 0x000000003fc97372 0x2 + .data.g_wifi_nvs + 0x000000003fc97374 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x000000003fc97374 g_wifi_nvs + .data.s_raw_seq$12015 + 0x000000003fc97378 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .data.country_info_24ghz + 0x000000003fc9737a 0xe6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + 0x000000003fc9737a country_info_24ghz + .data.g_scan_chan_list + 0x000000003fc97460 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .data.s_ap_igtk_active_idx + 0x000000003fc9746e 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .data.s_sta_igtk_active_idx + 0x000000003fc97470 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x000000003fc97472 0x2 + .data.g_timer_info + 0x000000003fc97474 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x000000003fc97474 g_timer_info + .data.join_deny_flag + 0x000000003fc9753c 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + *fill* 0x000000003fc9753d 0x3 + .data.public_recv_action + 0x000000003fc97540 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.sa_query_recv_action + 0x000000003fc975c8 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x000000003fc975d0 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x000000003fc975d4 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x000000003fc975d8 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.public_send_action + 0x000000003fc975e4 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x000000003fc9766c 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x000000003fc97674 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x000000003fc97678 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x000000003fc9767c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .data.ccmp 0x000000003fc97688 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000003fc97688 ccmp + .data.gcmp 0x000000003fc976a0 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x000000003fc976a0 gcmp + .data.sms4 0x000000003fc976b8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0x000000003fc976b8 sms4 + .data.tkip 0x000000003fc976d0 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000003fc976d0 tkip + .data.wep 0x000000003fc976e8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x000000003fc976e8 wep + .data.g_eb_list_desc + 0x000000003fc97700 0xdc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x000000003fc97700 g_eb_list_desc + .data.lmacConfMib + 0x000000003fc977dc 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x000000003fc977dc lmacConfMib + .data.g_txop_queue_status + 0x000000003fc9780c 0x3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x000000003fc9780c g_txop_queue_status + *fill* 0x000000003fc9780f 0x1 + .data.g_pm_cfg + 0x000000003fc97810 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x000000003fc97810 g_pm_cfg + .data.TxRxCxt 0x000000003fc97840 0x3c0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x000000003fc97840 TxRxCxt + .data.g_pp_timer_info + 0x000000003fc97c00 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x000000003fc97c00 g_pp_timer_info + .data.rc11BSchedTbl + 0x000000003fc97c68 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97c68 rc11BSchedTbl + .data.rcP2P11GSchedTbl + 0x000000003fc97cb0 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97cb0 rcP2P11GSchedTbl + .data.rc11GSchedTbl + 0x000000003fc97d10 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97d10 rc11GSchedTbl + .data.rcP2P11NSchedTbl + 0x000000003fc97dac 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97dac rcP2P11NSchedTbl + .data.rc11NSchedTbl + 0x000000003fc97e18 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97e18 rc11NSchedTbl + .data.rcLoRaSchedTbl + 0x000000003fc97ec0 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97ec0 rcLoRaSchedTbl + .data.BasicOFDMSched + 0x000000003fc97ed8 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97ed8 BasicOFDMSched + .data.trc_ctl 0x000000003fc97ee4 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fc97ee4 trc_ctl + .data.BcnInterval + 0x000000003fc97f00 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fc97f00 BcnInterval + .data.wDevCtrl + 0x000000003fc97f04 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fc97f04 wDevCtrl + .data.s_platform + 0x000000003fc97f3c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .data._g_esp_netif_netstack_default_wifi_sta + 0x000000003fc97f4c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003fc97f4c _g_esp_netif_netstack_default_wifi_sta + .data.g_allowed_groups + 0x000000003fc97f50 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003fc97f50 g_allowed_groups + .data.Rp$0 0x000000003fc97f58 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$1 0x000000003fc97f60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$2 0x000000003fc97f68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.mpi_one 0x000000003fc97f70 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x000000003fc97f74 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + 0x000000003fc97f74 __cxxabiv1::__unexpected_handler + .data._ZN10__cxxabiv119__terminate_handlerE + 0x000000003fc97f78 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + 0x000000003fc97f78 __cxxabiv1::__terminate_handler + .data.phy_param + 0x000000003fc97f7c 0x214 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000003fc97f7c phy_param + .data.wifi_txband_ht40 + 0x000000003fc98190 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000003fc98190 wifi_txband_ht40 + .data.wifi_txband + 0x000000003fc98192 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000003fc98192 wifi_txband + .data 0x000000003fc98194 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x000000003fc98194 __global_locale_ptr + *(.dram1 .dram1.*) + .dram1.6 0x000000003fc98198 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.5 0x000000003fc981a0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.4 0x000000003fc981a4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x000000003fc981a8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x000000003fc981ac 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x000000003fc981b0 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc981b0 port_IntStack + .dram1.2 0x000000003fc98db0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003fc98db0 FreeRTOS_openocd_params + .dram1.2 0x000000003fc98db8 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003fc98db8 g_flash_guard_default_ops + .dram1.1 0x000000003fc98dc0 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000003fc98dc0 rom_spiflash_api_funcs + .dram1.0 0x000000003fc98dc4 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.2 0x000000003fc98dd4 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x000000003fc98df4 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.16 0x000000003fc98e1c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.15 0x000000003fc98e44 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.5 0x000000003fc98e54 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003fc98e54 esp_flash_noos_functions + .dram1.5 0x000000003fc98e7c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc98e7c spi_flash_chip_generic_timeout + .dram1.4 0x000000003fc98e90 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x000000003fc98ea8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc98ea8 rom_flash_chip_dummy_hpm + .dram1.2 0x000000003fc98eac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc98eac rom_flash_chip_dummy + .dram1.1 0x000000003fc98eb0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc98eb6 0x2 + .dram1.0 0x000000003fc98eb8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc98ebe 0x2 + .dram1.0 0x000000003fc98ec0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.4 0x000000003fc98f18 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.3 0x000000003fc98fc0 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.2 0x000000003fc99068 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.5 0x000000003fc99110 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc99129 0x3 + .dram1.4 0x000000003fc9912c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .dram1.3 0x000000003fc99134 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc9913a 0x2 + .dram1.2 0x000000003fc9913c 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc99142 0x2 + .dram1.5 0x000000003fc99144 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .dram1.4 0x000000003fc99154 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .dram1.3 0x000000003fc99164 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .dram1.2 0x000000003fc99170 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .dram1.3 0x000000003fc9917c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.2 0x000000003fc99188 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .dram1.4 0x000000003fc99194 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fc99194 g_mesh_is_root + *fill* 0x000000003fc99195 0x3 + .dram1.3 0x000000003fc99198 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fc99198 g_mesh_init_ps_type + .dram1.2 0x000000003fc9919c 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fc9919c g_mesh_is_started + .dram1.2 0x000000003fc9919d 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fc9919d g_sta_connected_flag + *fill* 0x000000003fc9919e 0x2 + .dram1.3 0x000000003fc991a0 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x000000003fc991a0 eb_txdesc_space + .dram1.4 0x000000003fc99230 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x000000003fc99230 bars + .dram1.3 0x000000003fc992d0 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x000000003fc992d0 pp_sig_cnt + *fill* 0x000000003fc992f1 0x3 + .dram1.3 0x000000003fc992f4 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .dram1.3 0x000000003fc992f8 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .dram1.2 0x000000003fc992fc 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x000000003fc99304 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x000000003fc99304 _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.*) + 0x000000003fc99304 . = ALIGN (0x4) + 0x000000003fc99304 _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + 0x000000003fc99304 . = ALIGN (0x4) + 0x000000003fc99304 _bt_data_end = ABSOLUTE (.) + 0x000000003fc99304 . = ALIGN (0x4) + 0x000000003fc99304 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + 0x000000003fc99304 . = ALIGN (0x4) + 0x000000003fc99304 _btdm_data_end = ABSOLUTE (.) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_slow_src_get.str1.4 + 0x000000003fc99304 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc99342 0x2 + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x000000003fc99344 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc99392 0x2 + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003fc99394 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x000000003fc993d0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$1 + 0x000000003fc993dc 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc993f3 0x1 + .rodata.__func__$0 + 0x000000003fc993f4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_hw_support.a:systimer.*(.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_mmap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_regi2c.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_systimer.*(.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 + 0x000000003fc9940c 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x000000003fc99468 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libfreertos.a:FreeRTOS-openocd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.uxTopUsedPriority + 0x000000003fc99478 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x000000003fc99478 uxTopUsedPriority + *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.*) + .rodata.systimer_hal_set_alarm_period.str1.4 + 0x000000003fc9947c 0x4a esp-idf/hal/libhal.a(systimer_hal.c.obj) + *fill* 0x000000003fc994c6 0x2 + .rodata.__func__$0 + 0x000000003fc994c8 0x1d esp-idf/hal/libhal.a(systimer_hal.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003fc994e5 0x3 + .rodata.abort.str1.4 + 0x000000003fc994e8 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *fill* 0x000000003fc9950e 0x2 + .rodata 0x000000003fc99510 0x2 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x000000003fc99512 0x2 + .rodata.__assert_func.str1.4 + 0x000000003fc99514 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x36 (size before relaxing) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x000000003fc99544 . = ALIGN (0x4) + *fill* 0x000000003fc99543 0x1 + 0x000000003fc99544 _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003fc99544 . = ALIGN (0x4) + 0x000000003fc99544 _nimble_data_end = ABSOLUTE (.) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.str1.1 + 0x000000003fc99544 0x438 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x456 (size before relaxing) + .rodata.freq_i2c_write_set + 0x000000003fc9997c 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .rodata.freq_get_i2c_data + 0x000000003fc999a0 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .rodata 0x000000003fc999c8 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .rodata 0x000000003fc999ec 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .rodata.set_pbus_mem + 0x000000003fc99a40 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .rodata.str1.1 + 0x000000003fc99a68 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x29 (size before relaxing) + .rodata.str1.1 + 0x000000003fc99a87 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .rodata 0x000000003fc99ac2 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .rodata.str1.1 + 0x000000003fc99b0b 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .rodata.str1.1 + 0x000000003fc99b1a 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .rodata.str1.1 + 0x000000003fc99b63 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x75 (size before relaxing) + .rodata.CSWTCH$94 + 0x000000003fc99bcf 0x3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .rodata 0x000000003fc99bd2 0xb8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.str1.1 + 0x000000003fc99c8a 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .rodata.str1.1 + 0x000000003fc99ccb 0x152 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x154 (size before relaxing) + *fill* 0x000000003fc99e1d 0x1 + .rodata 0x000000003fc99e1e 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .rodata.dco_gain_coarse$4240 + 0x000000003fc99e36 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003fc99e3c 0x25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x000000003fc99e3c 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x000000003fc99e88 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc99ea6 0x2 + .rodata.__func__$0 + 0x000000003fc99ea8 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc99ec1 0x3 + .rodata.__func__$1 + 0x000000003fc99ec4 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x000000003fc99edc 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc99ef5 0x3 + .rodata.TAG 0x000000003fc99ef8 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc99eff 0x1 + .rodata.esp_flash_gpspi_host + 0x000000003fc99f00 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 + 0x000000003fc99f58 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x000000003fc99f58 esp_flash_chip_boya + .rodata.chip_name + 0x000000003fc99fd4 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* 0x000000003fc99fd9 0x3 + .rodata.esp_flash_chip_gd + 0x000000003fc99fdc 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003fc99fdc esp_flash_chip_gd + .rodata.chip_name + 0x000000003fc9a058 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.*) + *fill* 0x000000003fc9a05b 0x1 + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003fc9a05c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003fc9a0a0 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x000000003fc9a0ec 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x000000003fc9a14c 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc9a19f 0x1 + .rodata.__func__$0 + 0x000000003fc9a1a0 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc9a1c9 0x3 + .rodata.esp_flash_chip_generic + 0x000000003fc9a1cc 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc9a1cc esp_flash_chip_generic + .rodata.chip_name + 0x000000003fc9a248 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003fc9a250 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* 0x000000003fc9a25d 0x3 + .rodata.esp_flash_chip_issi + 0x000000003fc9a260 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003fc9a260 esp_flash_chip_issi + .rodata.chip_name + 0x000000003fc9a2dc 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* 0x000000003fc9a2e1 0x3 + .rodata.esp_flash_chip_mxic + 0x000000003fc9a2e4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000003fc9a2e4 esp_flash_chip_mxic + .rodata.chip_name + 0x000000003fc9a360 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.*) + *fill* 0x000000003fc9a365 0x3 + .rodata.spi_flash_chip_mxic_opi_get_data_length_zoom.str1.4 + 0x000000003fc9a368 0x79 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x000000003fc9a3e1 0x3 + .rodata.spi_flash_chip_mxic_opi_read_id.str1.4 + 0x000000003fc9a3e4 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x000000003fc9a409 0x3 + .rodata.spi_flash_chip_mxic_opi_get_write_protect.str1.4 + 0x000000003fc9a40c 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x000000003fc9a426 0x2 + .rodata.__func__$0 + 0x000000003fc9a428 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x000000003fc9a452 0x2 + .rodata.__func__$1 + 0x000000003fc9a454 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + *fill* 0x000000003fc9a481 0x3 + .rodata.esp_flash_chip_mxic_opi + 0x000000003fc9a484 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x000000003fc9a484 esp_flash_chip_mxic_opi + .rodata.chip_name + 0x000000003fc9a500 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* 0x000000003fc9a50b 0x1 + .rodata.esp_flash_chip_th + 0x000000003fc9a50c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x000000003fc9a50c esp_flash_chip_th + .rodata.chip_name + 0x000000003fc9a588 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 + 0x000000003fc9a58b 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000003fc9a58b 0x1 + .rodata.esp_flash_chip_winbond + 0x000000003fc9a58c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000003fc9a58c esp_flash_chip_winbond + .rodata.chip_name + 0x000000003fc9a608 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x000000003fc9a610 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.*) + .rodata.spi_flash_enable_high_performance_mode.str1.4 + 0x000000003fc9a618 0xf7 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000003fc9a70f 0x1 + .rodata.str1.4 + 0x000000003fc9a710 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000003fc9a735 0x3 + .rodata.spi_flash_hpm_enable_list + 0x000000003fc9a738 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x000000003fc9a738 spi_flash_hpm_enable_list + *libspi_flash.a:spi_flash_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_timing_config_set_flash_clock.str1.4 + 0x000000003fc9a798 0x43 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + *fill* 0x000000003fc9a7db 0x1 + .rodata.__func__$0 + 0x000000003fc9a7dc 0x22 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x000000003fc9a7fe _data_end = ABSOLUTE (.) + 0x000000003fc9a800 . = ALIGN (0x4) + *fill* 0x000000003fc9a7fe 0x2 + +.noinit 0x000000003fc9a800 0x0 + 0x000000003fc9a800 . = ALIGN (0x4) + 0x000000003fc9a800 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003fc9a800 . = ALIGN (0x4) + 0x000000003fc9a800 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x000000003fc9a800 0x9af0 + 0x000000003fc9a800 . = ALIGN (0x8) + 0x000000003fc9a800 _bss_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .bss EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .bss.*) + .bss.s_app_elf_sha256$0 + 0x000000003fc9a800 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss.s_pthread_cfg_key + 0x000000003fc9a808 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x000000003fc9a80c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003fc9a810 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003fc9a810 s_keys + .bss.s_resume_cores + 0x000000003fc9a814 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003fc9a815 0x3 + .bss.s_cpu_inited + 0x000000003fc9a818 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003fc9a81a 0x2 + .bss.s_cpu_up 0x000000003fc9a81c 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.int_wdt_cpu1_ticked + 0x000000003fc9a81e 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x000000003fc9a81e int_wdt_cpu1_ticked + *fill* 0x000000003fc9a81f 0x1 + .bss.iwdt_context + 0x000000003fc9a820 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.shutdown_handlers + 0x000000003fc9a828 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x000000003fc9a83c 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003fc9a83d 0x3 + .bss.s_system_inited + 0x000000003fc9a840 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003fc9a842 0x6 + .bss.g_startup_time + 0x000000003fc9a848 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc9a848 g_startup_time + .bss.g_exc_frames + 0x000000003fc9a850 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003fc9a850 g_exc_frames + .bss.s_reset_reason + 0x000000003fc9a858 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .bss.s_stall_state + 0x000000003fc9a85c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x000000003fc9a860 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003fc9a860 esp_ipc_func_arg + .bss.esp_ipc_func + 0x000000003fc9a864 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003fc9a864 esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x000000003fc9a868 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x000000003fc9a868 esp_ipc_isr_start_fl + .bss.tick_cb 0x000000003fc9a86c 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003fc9a8ac 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_usbserial_timeout + 0x000000003fc9a8ec 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss.s_panic_abort_details + 0x000000003fc9a8f0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss.g_panic_abort + 0x000000003fc9a8f4 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003fc9a8f4 g_panic_abort + *fill* 0x000000003fc9a8f5 0x3 + .bss.ctx 0x000000003fc9a8f8 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) + .bss.s_log_cache_misses + 0x000000003fc9a900 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x000000003fc9a904 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x000000003fc9a908 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x000000003fc9a90c 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x000000003fc9aa04 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$0 0x000000003fc9aa08 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x000000003fc9aa0c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.alloc_failed_callback + 0x000000003fc9aa10 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x000000003fc9aa14 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003fc9aa14 registered_heaps + .bss.non_iram_int_disabled_flag + 0x000000003fc9aa18 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003fc9aa1a 0x2 + .bss.non_iram_int_disabled + 0x000000003fc9aa1c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x000000003fc9aa24 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x000000003fc9aa2c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x000000003fc9aa30 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003fc9aa59 0x3 + .bss.s_rtc_isr_handle + 0x000000003fc9aa5c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_apb_freq + 0x000000003fc9aa60 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x000000003fc9aa64 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_sar_power_on_cnt + 0x000000003fc9aa68 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.port_switch_flag + 0x000000003fc9aa6c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc9aa6c port_switch_flag + .bss.port_uxOldInterruptState + 0x000000003fc9aa74 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc9aa74 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x000000003fc9aa7c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc9aa7c port_uxCriticalNesting + .bss.port_interruptNesting + 0x000000003fc9aa84 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc9aa84 port_interruptNesting + .bss.port_xSchedulerRunning + 0x000000003fc9aa8c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc9aa8c port_xSchedulerRunning + .bss.systimer_hal$1 + 0x000000003fc9aa94 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.s_handled_systicks + 0x000000003fc9aaa0 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.xSwitchingContext + 0x000000003fc9aaa8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x000000003fc9aab0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003fc9aab8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x000000003fc9aac0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x000000003fc9aac4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x000000003fc9aac8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x000000003fc9aacc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x000000003fc9aad4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x000000003fc9aad8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x000000003fc9aadc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x000000003fc9aae0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x000000003fc9aae4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003fc9aae8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x000000003fc9aafc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003fc9ab00 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003fc9ab14 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003fc9ab3c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x000000003fc9ab40 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003fc9ab44 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003fc9ab58 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x000000003fc9ab6c 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCB + 0x000000003fc9ad60 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003fc9ad60 pxCurrentTCB + .bss.s_other_cpu_startup_done + 0x000000003fc9ad68 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003fc9ad69 0x3 + .bss.s_common_recursive_mutex + 0x000000003fc9ad6c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc9ad6c __lock___env_recursive_mutex + 0x000000003fc9ad6c __lock___sfp_recursive_mutex + 0x000000003fc9ad6c __lock___atexit_recursive_mutex + 0x000000003fc9ad6c __lock___malloc_recursive_mutex + 0x000000003fc9ad6c __lock___sinit_recursive_mutex + .bss.s_common_mutex + 0x000000003fc9adc0 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc9adc0 __lock___arc4random_mutex + 0x000000003fc9adc0 __lock___dd_hash_mutex + 0x000000003fc9adc0 __lock___at_quick_exit_mutex + 0x000000003fc9adc0 __lock___tz_mutex + .bss.s_reent 0x000000003fc9ae14 0xf0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss.s_time_lock + 0x000000003fc9af04 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_total_correction_us + 0x000000003fc9af08 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x000000003fc9af10 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x000000003fc9af18 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x000000003fc9af1c 0x4 + .bss.s_microseconds_offset + 0x000000003fc9af20 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x000000003fc9af20 s_microseconds_offset + .bss.s_timer_task + 0x000000003fc9af28 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003fc9af2c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_correction_us + 0x000000003fc9af30 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.systimer_hal + 0x000000003fc9af38 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x000000003fc9af44 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x000000003fc9af48 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_wifi_tsens_xpd_flag + 0x000000003fc9af4c 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_pwdet_xpd_flag + 0x000000003fc9af4d 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + *fill* 0x000000003fc9af4e 0x2 + .bss.s_fd_table_lock + 0x000000003fc9af50 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x000000003fc9af54 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003fc9af58 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.vfs_console + 0x000000003fc9af78 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.primary_vfs_index + 0x000000003fc9af80 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.s_retry_num + 0x000000003fc9af84 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.s_wifi_event_group + 0x000000003fc9af88 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.ModBusTcpMonitor + 0x000000003fc9af8c 0x4 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x000000003fc9af8c ModBusTcpMonitor + .bss.gBitVar 0x000000003fc9af90 0x10 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x000000003fc9af90 gBitVar + .bss.gWordVar 0x000000003fc9afa0 0x6000 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x000000003fc9afa0 gWordVar + .bss.motor_ctrl_ctx$3 + 0x000000003fca0fa0 0x18 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .bss.last_pulse_count$4 + 0x000000003fca0fb8 0x4 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .bss.s_burn_counter + 0x000000003fca0fbc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_platform + 0x000000003fca0fc0 0xc esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .bss.s_platform + 0x000000003fca0fcc 0x14 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .bss.flash_erasing + 0x000000003fca0fe0 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x000000003fca0fe1 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x000000003fca0fe2 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x000000003fca0fe3 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x000000003fca0fe4 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x000000003fca0fe8 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_mmap_last_handle + 0x000000003fca0ff0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_page_refcnt + 0x000000003fca0ff4 0x200 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_entries_head + 0x000000003fca11f4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_flash_guard_ops + 0x000000003fca11f8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x000000003fca11fc 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003fca11fc esp_flash_default_chip + .bss.hpm_dummy_changed + 0x000000003fca1200 0x1 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + *fill* 0x000000003fca1201 0x3 + .bss.chip_hpm 0x000000003fca1204 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .bss.reason 0x000000003fca1208 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.s_ipc_wait + 0x000000003fca1210 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x000000003fca1218 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x000000003fca1220 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x000000003fca1228 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_sem + 0x000000003fca1230 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x000000003fca1238 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x000000003fca1240 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.p_twdt_obj + 0x000000003fca1248 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x000000003fca124c 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000003fca124c g_twdt_isr + *fill* 0x000000003fca124d 0x3 + .bss.init_context + 0x000000003fca1250 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_temperature_sensor_power_cnt + 0x000000003fca125c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .bss.s_default_loop + 0x000000003fca1260 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss._ZL13s_nvs_handles + 0x000000003fca1264 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN3nvs4Lock10mSemaphoreE + 0x000000003fca1270 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003fca1270 nvs::Lock::mSemaphore + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x000000003fca1274 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003fca1274 NVSHandleEntry::s_nvs_next_handle + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x000000003fca1278 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003fca1278 nvs::NVSPartitionManager::instance + .bss.pbuf_free_ooseq_pending + 0x000000003fca127c 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000003fca127c pbuf_free_ooseq_pending + .bss.tcp_timer_ctr + 0x000000003fca127d 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x000000003fca127e 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_active_pcbs_changed + 0x000000003fca127f 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca127f tcp_active_pcbs_changed + .bss.tcp_tw_pcbs + 0x000000003fca1280 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca1280 tcp_tw_pcbs + .bss.tcp_active_pcbs + 0x000000003fca1284 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca1284 tcp_active_pcbs + .bss.tcp_listen_pcbs + 0x000000003fca1288 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca1288 tcp_listen_pcbs + .bss.tcp_bound_pcbs + 0x000000003fca128c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca128c tcp_bound_pcbs + .bss.tcp_ticks + 0x000000003fca1290 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003fca1290 tcp_ticks + .bss.tcp_input_pcb + 0x000000003fca1294 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003fca1294 tcp_input_pcb + .bss.recv_data + 0x000000003fca1298 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x000000003fca129c 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x000000003fca129d 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x000000003fca129e 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x000000003fca12a0 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003fca12a2 0x2 + .bss.ackno 0x000000003fca12a4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x000000003fca12a8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x000000003fca12ac 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003fca12ae 0x2 + .bss.tcphdr_opt2 + 0x000000003fca12b0 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x000000003fca12b4 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x000000003fca12b6 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x000000003fca12b8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x000000003fca12bc 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcpip_tcp_timer_active + 0x000000003fca12cc 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x000000003fca12d0 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x000000003fca12d4 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.xid$12 0x000000003fca12d8 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x000000003fca12dc 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003fca12dd 0x3 + .bss.dhcp_pcb 0x000000003fca12e0 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_rx_options_given + 0x000000003fca12e4 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003fca12e4 dhcp_rx_options_given + *fill* 0x000000003fca12ef 0x1 + .bss.dhcp_rx_options_val + 0x000000003fca12f0 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003fca12f0 dhcp_rx_options_val + .bss.etharp_cached_entry + 0x000000003fca131c 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003fca131d 0x3 + .bss.arp_table + 0x000000003fca1320 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.ip4_default_multicast_netif + 0x000000003fca1410 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x000000003fca1414 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003fca1416 0x2 + .bss.identification$1 + 0x000000003fca1418 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x000000003fca141c 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$1 + 0x000000003fca141d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003fca141e 0x2 + .bss.nd6_ra_buffer + 0x000000003fca1420 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x000000003fca1440 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003fca1441 0x3 + .bss.multicast_address + 0x000000003fca1444 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x000000003fca1458 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_neighbor_index + 0x000000003fca1459 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003fca145a 0x2 + .bss.default_router_list + 0x000000003fca145c 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fca145c default_router_list + .bss.prefix_list + 0x000000003fca1480 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fca1480 prefix_list + .bss.destination_cache + 0x000000003fca150c 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fca150c destination_cache + .bss.neighbor_cache + 0x000000003fca16ec 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003fca16ec neighbor_cache + .bss.base_time + 0x000000003fca17c8 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.input 0x000000003fca17cc 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.lwip_task$1 + 0x000000003fca180c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.sys_thread_sem_key + 0x000000003fca1810 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x000000003fca1814 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.select_cb_list + 0x000000003fca1818 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x000000003fca181c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x000000003fca1820 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x000000003fca18e8 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x000000003fca1a00 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.tcpip_mbox + 0x000000003fca1a78 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x000000003fca1a7c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x000000003fca1a80 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.dns_servers + 0x000000003fca1a84 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.ip_data 0x000000003fca1acc 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003fca1acc ip_data + .bss.loop_netif + 0x000000003fca1b10 0xfc esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x000000003fca1c0c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003fca1c0d 0x3 + .bss.netif_default + 0x000000003fca1c10 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003fca1c10 netif_default + .bss.netif_list + 0x000000003fca1c14 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003fca1c14 netif_list + .bss.ext_callback + 0x000000003fca1c18 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.raw_pcbs 0x000000003fca1c1c 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.udp_pcbs 0x000000003fca1c20 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003fca1c20 udp_pcbs + .bss.is_tmr_start + 0x000000003fca1c24 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003fca1c25 0x3 + .bss.allrouters + 0x000000003fca1c28 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x000000003fca1c2c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.s_list_lock + 0x000000003fca1c30 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_esp_netif_counter + 0x000000003fca1c34 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x000000003fca1c38 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003fca1c38 s_head + .bss.api_lock_sem + 0x000000003fca1c3c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x000000003fca1c40 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.netif_callback + 0x000000003fca1c44 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_is_last_default_esp_netif_overridden + 0x000000003fca1c4c 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003fca1c4d 0x3 + .bss.s_last_default_esp_netif + 0x000000003fca1c50 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.wifi_default_handlers_set + 0x000000003fca1c54 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003fca1c55 0x3 + .bss.s_wifi_netifs + 0x000000003fca1c58 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x000000003fca1c60 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x000000003fca1c68 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$0 + 0x000000003fca1c70 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$1 + 0x000000003fca1c74 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000003fca1c75 0x3 + .bss.op_complete_sem + 0x000000003fca1c78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss.op_complete_sem + 0x000000003fca1c7c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss.tx_channel + 0x000000003fca1c80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.rx_channel + 0x000000003fca1c84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.s_wifi_api_lock + 0x000000003fca1c88 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000003fca1c88 s_wifi_api_lock + .bss.s_net80211_data_init + 0x000000003fca1c8c 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .bss.s_wifi_stop_in_progress + 0x000000003fca1c8d 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003fca1c8e 0x2 + .bss.g_ic 0x000000003fca1c90 0x294 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x000000003fca1c90 g_ic + .bss.wpa_crypto_funcs + 0x000000003fca1f24 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x000000003fca1f24 wpa_crypto_funcs + .bss.g_hmac_cnt + 0x000000003fca1f90 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0x000000003fca1f90 g_hmac_cnt + .bss.g_beacon_eb_allocated + 0x000000003fca1fd0 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003fca1fd1 0x3 + .bss.ap_rxcb 0x000000003fca1fd4 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x000000003fca1fd4 ap_rxcb + .bss.tim_offset + 0x000000003fca1fd8 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003fca1fd9 0x3 + .bss.BcnIntvl 0x000000003fca1fdc 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x000000003fca1fe0 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x000000003fca1fe0 g_beacon_idx + *fill* 0x000000003fca1fe1 0x3 + .bss.g_beacon_eb + 0x000000003fca1fe4 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x000000003fca1fe4 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x000000003fca1fec 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x000000003fca1fed 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003fca1fee 0x2 + .bss.beacon_timer + 0x000000003fca1ff0 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .bss.tokens$11122 + 0x000000003fca2004 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .bss.ap_id$13300 + 0x000000003fca2008 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003fca2009 0x7 + .bss.g_wifi_menuconfig + 0x000000003fca2010 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x000000003fca2010 g_wifi_menuconfig + .bss.mesh_deauth_reason + 0x000000003fca2068 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wifi_task_hdl + 0x000000003fca206c 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x000000003fca206c s_wifi_task_hdl + .bss.s_wps_start + 0x000000003fca2070 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x000000003fca2071 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .bss.g_mac_sleep_en + 0x000000003fca2072 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x000000003fca2072 g_mac_sleep_en + *fill* 0x000000003fca2073 0x1 + .bss.esp_mesh_quick_funcs + 0x000000003fca2074 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fca2074 esp_mesh_quick_funcs + .bss.g_mesh_topology + 0x000000003fca2124 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003fca2124 g_mesh_topology + .bss.g_wifi_nvs_cfg + 0x000000003fca2128 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .bss.s_wifi_nvs + 0x000000003fca212c 0x4cc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x000000003fca212c s_wifi_nvs + .bss.s_netstack_ref + 0x000000003fca25f8 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x000000003fca25f8 s_netstack_ref + .bss.s_tx_cacheq + 0x000000003fca25fc 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x000000003fca25fc s_tx_cacheq + .bss.len_dh_ie + 0x000000003fca2604 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .bss.g_wifi_improve_contention_ability + 0x000000003fca2605 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x000000003fca2605 g_wifi_improve_contention_ability + .bss.s_ch$11539 + 0x000000003fca2606 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .bss.TestStaFreqCalValInput + 0x000000003fca2608 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca2608 TestStaFreqCalValInput + .bss.FreqCalCntForScan + 0x000000003fca260a 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca260a FreqCalCntForScan + *fill* 0x000000003fca260b 0x1 + .bss.owe_flag 0x000000003fca260c 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca260c owe_flag + .bss.connect_scan_flag + 0x000000003fca2610 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca2610 connect_scan_flag + *fill* 0x000000003fca2611 0x1 + .bss.scannum 0x000000003fca2612 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca2612 scannum + .bss.gScanStruct + 0x000000003fca2614 0x11c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x000000003fca2614 gScanStruct + .bss.sta_csa_timer + 0x000000003fca2730 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x000000003fca2730 sta_csa_timer + .bss.s_eapol_txdone_cb + 0x000000003fca2744 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x000000003fca2744 s_eapol_txdone_cb + .bss.rssi_index + 0x000000003fca2748 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x000000003fca2748 rssi_index + *fill* 0x000000003fca2749 0x3 + .bss.rssi_saved + 0x000000003fca274c 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x000000003fca274c rssi_saved + .bss.in_rssi_adjust + 0x000000003fca2754 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x000000003fca2754 in_rssi_adjust + .bss.s_ap_igtk + 0x000000003fca2755 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .bss.s_sta_igtk + 0x000000003fca27a5 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x000000003fca27f5 0x3 + .bss.gChmCxt 0x000000003fca27f8 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x000000003fca27f8 gChmCxt + .bss.is_connected_sync + 0x000000003fca28f4 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x000000003fca28f5 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca28f5 ap_no_lr + .bss.reconnect_flag + 0x000000003fca28f6 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca28f6 reconnect_flag + .bss.in_blacklist_flag + 0x000000003fca28f7 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca28f7 in_blacklist_flag + .bss.wrong_password_flag + 0x000000003fca28f8 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca28f8 wrong_password_flag + *fill* 0x000000003fca28f9 0x1 + .bss.s_sta_last_start_txseq + 0x000000003fca28fa 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + *fill* 0x000000003fca28fc 0x4 + .bss.g_cnxMgr 0x000000003fca2900 0xef8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca2900 g_cnxMgr + .bss.g_cnx_probe_rc_list_cb + 0x000000003fca37f8 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca37f8 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x000000003fca37fc 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x000000003fca3810 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .bss.sta_con_timer + 0x000000003fca3814 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x000000003fca3814 sta_con_timer + .bss.ctx 0x000000003fca3828 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x000000003fca3828 ctx + .bss.avs_rx_content + 0x000000003fca3830 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x000000003fca3834 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x000000003fca3838 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .bss.eb_space 0x000000003fca383c 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x000000003fca383c eb_space + .bss.s_is_6m 0x000000003fca38fc 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x000000003fca38fc s_is_6m + .bss.if_ctrl 0x000000003fca38fd 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x000000003fca38fd if_ctrl + .bss.g_pp_tx_pkt_num + 0x000000003fca3925 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .bss.g_no_null_data + 0x000000003fca3926 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x000000003fca3926 g_no_null_data + *fill* 0x000000003fca3927 0x1 + .bss.g_pm_tx_null_func + 0x000000003fca3928 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + *fill* 0x000000003fca392c 0x4 + .bss.g_pm 0x000000003fca3930 0x1c0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x000000003fca3930 g_pm + .bss.last_rx_rsc$10347 + 0x000000003fca3af0 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .bss.s_fragment + 0x000000003fca3af8 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x000000003fca3af8 s_fragment + .bss.g_pm_cnt 0x000000003fca3b00 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x000000003fca3b00 g_pm_cnt + .bss.g_lmac_cnt + 0x000000003fca3b48 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x000000003fca3b48 g_lmac_cnt + .bss.s_timer_post + 0x000000003fca3c08 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .bss.s_fix_rate + 0x000000003fca3c0c 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fca3c0c s_fix_rate + .bss.s_fix_rate_mask + 0x000000003fca3c14 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000003fca3c14 s_fix_rate_mask + .bss.BcnSendTick + 0x000000003fca3c18 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c18 BcnSendTick + .bss.wDevMacSleep + 0x000000003fca3c1c 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c1c wDevMacSleep + .bss.g_wdev_csi_rx_ctx + 0x000000003fca3c90 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c90 g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x000000003fca3c94 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c94 g_wdev_csi_rx + .bss.g_wdev_set_t1t4_cb + 0x000000003fca3c98 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c98 g_wdev_set_t1t4_cb + .bss.g_wdev_record_t2t3_cb + 0x000000003fca3c9c 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3c9c g_wdev_record_t2t3_cb + .bss.g_wdev_record_t1t4_cb + 0x000000003fca3ca0 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000003fca3ca0 g_wdev_record_t1t4_cb + .bss.s_partition_list_lock + 0x000000003fca3ca4 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x000000003fca3ca8 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.curr_partition$2 + 0x000000003fca3cac 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.last_ccount$1 + 0x000000003fca3cb0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss.base_mac_addr + 0x000000003fca3cb4 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003fca3cba 0x2 + .bss.s_crypto_mpi_lock + 0x000000003fca3cbc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.s_crypto_sha_aes_hmac_ds_lock + 0x000000003fca3cc0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.s_phy_modem_init_ref + 0x000000003fca3cc4 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003fca3cc5 0x3 + .bss.s_phy_digital_regs_mem + 0x000000003fca3cc8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_access_ref + 0x000000003fca3ccc 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_reg_stored + 0x000000003fca3ccd 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_calibrated + 0x000000003fca3cce 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003fca3ccf 0x1 + .bss.s_phy_access_lock + 0x000000003fca3cd0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.wpa_cb 0x000000003fca3cd4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003fca3cd4 wpa_cb + .bss.wifi_funcs + 0x000000003fca3cd8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000003fca3cd8 wifi_funcs + *fill* 0x000000003fca3cdc 0x4 + .bss.g_wpa_supp + 0x000000003fca3ce0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x000000003fca3ce0 g_wpa_supp + .bss.g_sae_confirm + 0x000000003fca3d70 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_commit + 0x000000003fca3d74 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_token + 0x000000003fca3d78 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_data + 0x000000003fca3d7c 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_pt 0x000000003fca3dd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.global_hapd + 0x000000003fca3dd4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x000000003fca3dd4 global_hapd + .bss.eloop 0x000000003fca3dd8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.eloop_data_lock + 0x000000003fca3df8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.s_sm_valid_bitmap + 0x000000003fca3dfc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x000000003fca3e00 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.assoc_ie_buf + 0x000000003fca3e40 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003fca3e40 assoc_ie_buf + .bss.gWpaSm 0x000000003fca3e70 0x34c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003fca3e70 gWpaSm + .bss.gEapSm 0x000000003fca41bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .bss.mul_count + 0x000000003fca41c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x000000003fca41c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x000000003fca41c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.g_misc_nvs_init + 0x000000003fca41cc 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + *fill* 0x000000003fca41cd 0x3 + .bss.g_log_level + 0x000000003fca41d0 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x000000003fca41d0 g_log_level + .bss.g_misc_nvs + 0x000000003fca41d4 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x000000003fca41d4 g_misc_nvs + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x000000003fca41d8 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .bss._ZL4init 0x000000003fca41dc 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .bss._ZL10eh_globals + 0x000000003fca41e4 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .bss._ZN12_GLOBAL__N_114emergency_poolE + 0x000000003fca41ec 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .bss.bbpll_en_usb + 0x000000003fca41fc 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x000000003fca41fc bbpll_en_usb + *fill* 0x000000003fca41fd 0x3 + .bss.g_phyFuns + 0x000000003fca4200 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000003fca4200 g_phyFuns + .bss.power_cal_offset + 0x000000003fca4204 0x1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x000000003fca4204 power_cal_offset + *fill* 0x000000003fca4205 0x3 + .bss 0x000000003fca4208 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + 0x000000003fca4208 environ + *(.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.*) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) COMMON) + COMMON 0x000000003fca420c 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x000000003fca420c phy_version_str + COMMON 0x000000003fca4234 0xba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000003fca4234 phy_rxbb_dc + 0x000000003fca4244 phy_chan_dc + 0x000000003fca427c phy_rxrf_dc + 0x000000003fca42c4 chip7_phy_init_ctrl + COMMON 0x000000003fca42ee 0x2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x000000003fca42ee phy_bbpll_i2c + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.*) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _bt_bss_end = ABSOLUTE (.) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _bt_common_start = ABSOLUTE (.) + *libbt.a:(COMMON) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _bt_common_end = ABSOLUTE (.) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.*) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _btdm_bss_end = ABSOLUTE (.) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _btdm_common_start = ABSOLUTE (.) + *libbtdm_app.a:(COMMON) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _btdm_common_end = ABSOLUTE (.) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.*) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _nimble_bss_end = ABSOLUTE (.) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _nimble_common_start = ABSOLUTE (.) + *libnimble.a:(COMMON) + 0x000000003fca42f0 . = ALIGN (0x4) + 0x000000003fca42f0 _nimble_common_end = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + 0x000000003fca42f0 . = ALIGN (0x8) + 0x000000003fca42f0 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.text 0x0000000042000020 0x7ad7f + 0x0000000042000020 _stext = . + 0x0000000042000020 _instruction_reserved_start = ABSOLUTE (.) + 0x0000000042000020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .literal.esp_app_get_description + 0x0000000042000020 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_init_app_elf_sha256 + 0x0000000042000024 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x0000000042000028 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_init + 0x000000004200002c 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.pthread_mutex_init + 0x000000004200003c 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x14 (size before relaxing) + .literal.pthread_mutex_init_if_static + 0x0000000042000044 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.pthread_mutex_destroy + 0x0000000042000050 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x24 (size before relaxing) + .literal.find_key + 0x0000000042000070 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_local_storage_thread_deleted_callback + 0x0000000042000078 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x0000000042000084 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x0000000042000084 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.pthread_getspecific + 0x0000000042000084 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_setspecific + 0x000000004200008c 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.core_intr_matrix_clear + 0x0000000042000098 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.start_other_core + 0x000000004200009c 0x38 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4c (size before relaxing) + .literal.startup_resume_other_cores + 0x00000000420000d4 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.select_rtc_slow_clk + 0x00000000420000d8 0x1c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_init + 0x00000000420000f4 0x58 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x84 (size before relaxing) + .literal.esp_perip_clk_init + 0x000000004200014c 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x48 (size before relaxing) + .literal.esp_cache_err_int_init + 0x0000000042000184 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x2c (size before relaxing) + .literal.esp_int_wdt_init + 0x000000004200019c 0x14 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x28 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x00000000420001b0 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.do_global_ctors + 0x00000000420001b4 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_core_init + 0x00000000420001bc 0x2c esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x74 (size before relaxing) + .literal.do_system_init_fn + 0x00000000420001e8 0x18 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x20 (size before relaxing) + .literal.do_secondary_init + 0x0000000042000200 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x0000000042000200 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xd0 (size before relaxing) + .literal.__esp_system_init_fn_init_components0 + 0x0000000042000250 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4 (size before relaxing) + .literal.frame_to_panic_info + 0x0000000042000250 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x10 (size before relaxing) + .literal.panic_handler + 0x0000000042000258 0x50 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x80 (size before relaxing) + .literal.print_state_for_core + 0x00000000420002a8 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x00000000420002b0 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x00000000420002b0 0x10 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_init + 0x00000000420002c0 0xc esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x18 (size before relaxing) + .literal.get_reset_reason + 0x00000000420002cc 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .literal.esp_reset_reason_clear_hint + 0x00000000420002d0 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .literal.esp_reset_reason_init + 0x00000000420002d4 0x8 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x14 (size before relaxing) + .literal.esp_apb_backup_dma_lock_init + 0x00000000420002dc 0xc esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .literal.print_debug_exception_details + 0x00000000420002e8 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x0000000042000308 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.print_cache_err_details + 0x000000004200031c 0x44 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0xac (size before relaxing) + .literal.panic_print_registers + 0x0000000042000360 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x0000000042000390 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x00000000420003a0 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_backtrace + 0x00000000420003b0 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.esp_ipc_isr_init + 0x00000000420003b4 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x10 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x00000000420003b8 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x00000000420003c0 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x00000000420003c4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x00000000420003c8 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_char_usb_serial_jtag + 0x00000000420003c8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xc (size before relaxing) + .literal.panic_print_char + 0x00000000420003d0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_str + 0x00000000420003d0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x00000000420003d0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x00000000420003d4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x00000000420003d4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_reconfigure_wdts + 0x00000000420003d8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.esp_panic_handler + 0x00000000420003e0 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xec (size before relaxing) + .literal.brownout_hal_config + 0x0000000042000418 0x24 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x28 (size before relaxing) + .literal.brownout_hal_intr_enable + 0x000000004200043c 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x4 (size before relaxing) + .literal.heap_caps_get_free_size + 0x000000004200043c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x0000000042000448 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x0000000042000450 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x0000000042000450 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x0000000042000464 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x0000000042000468 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x88 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x00000000420004a4 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000420004ac 0x28 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x48 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x00000000420004d4 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x00000000420004d8 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.calc_checksum + 0x00000000420004dc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x00000000420004e0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x00000000420004e4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x00000000420004f4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.insert_vector_desc + 0x00000000420004f4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x00000000420004f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x00000000420004f8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.find_desc_for_source + 0x0000000042000504 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x0000000042000510 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x000000004200051c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .literal.esp_intr_enable_source + 0x0000000042000520 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_disable_source + 0x0000000042000524 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_intrstatus + 0x0000000042000528 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x90 (size before relaxing) + .literal.esp_intr_alloc + 0x0000000042000550 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_free + 0x0000000042000550 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .literal.esp_intr_free_cb + 0x0000000042000560 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x0000000042000560 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_get_rst_en_mask + 0x000000004200059c 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 + 0x00000000420005a0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_ll_get_rst_en_reg + 0x00000000420005ac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_module_enable + 0x00000000420005b4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x40 (size before relaxing) + .literal.periph_module_disable + 0x00000000420005c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x40 (size before relaxing) + .literal.periph_module_reset + 0x00000000420005cc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.wifi_module_enable + 0x00000000420005d0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.wifi_module_disable + 0x00000000420005d0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x00000000420005d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x00000000420005d4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x00000000420005d4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x00000000420005ec 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x00000000420005f0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_chip_info + 0x0000000042000608 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x4 (size before relaxing) + .literal.memprot_ll_prepare_iram0_split_line_regval + 0x0000000042000608 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xc (size before relaxing) + .literal.memprot_ll_prepare_dram0_split_line_regval + 0x0000000042000610 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x10 (size before relaxing) + .literal.esp_mprot_cpuid_valid + 0x0000000042000614 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_memprot_iram0_get_def_split_addr + 0x000000004200061c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_memprot_dram0_get_def_split_addr + 0x0000000042000620 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 + 0x0000000042000620 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .literal.esp_mprot_set_intr_matrix + 0x0000000042000624 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x24 (size before relaxing) + .literal.esp_mprot_set_split_addr + 0x0000000042000628 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x74 (size before relaxing) + .literal.esp_mprot_get_default_main_split_addr + 0x0000000042000654 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 + 0x0000000042000654 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x18 (size before relaxing) + .literal.esp_mprot_get_split_addr_lock + 0x0000000042000660 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x18 (size before relaxing) + .literal.esp_mprot_set_pms_lock + 0x0000000042000660 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x1c (size before relaxing) + .literal.esp_mprot_get_pms_lock + 0x0000000042000668 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x1c (size before relaxing) + .literal.esp_mprot_set_pms_area + 0x0000000042000668 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x3c (size before relaxing) + .literal.esp_mprot_get_pms_area + 0x0000000042000690 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x28 (size before relaxing) + .literal.esp_mprot_set_monitor_lock + 0x0000000042000690 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2c (size before relaxing) + .literal.esp_mprot_get_monitor_lock + 0x00000000420006a8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2c (size before relaxing) + .literal.esp_mprot_set_monitor_en + 0x00000000420006a8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2c (size before relaxing) + .literal.esp_mprot_get_monitor_en + 0x00000000420006c0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2c (size before relaxing) + .literal.esp_mprot_set_prot + 0x00000000420006c0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x21c (size before relaxing) + .literal.esp_mprot_ll_err_to_esp_err + 0x0000000042000720 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .literal.esp_newlib_locks_init + 0x0000000042000734 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x30 (size before relaxing) + .literal.raise_r_stub + 0x0000000042000758 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_newlib_init + 0x0000000042000758 0x10 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x20 (size before relaxing) + .literal.syscall_not_implemented_aborts + 0x0000000042000768 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.adjust_boot_time + 0x0000000042000768 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x0000000042000770 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x000000004200077c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.settimeofday + 0x000000004200077c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.usleep + 0x0000000042000780 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.sleep + 0x000000004200078c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_newlib_time_init + 0x000000004200078c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x000000004200078c 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal.esp_time_impl_set_boot_time + 0x0000000042000794 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x00000000420007a0 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x00000000420007a0 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x00000000420007a0 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_time_impl_init + 0x00000000420007a0 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.esp_err_to_name + 0x00000000420007a0 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.timer_process_alarm + 0x00000000420007a8 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + .literal.timer_task + 0x00000000420007c8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_create + 0x00000000420007cc 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .literal.esp_timer_delete + 0x00000000420007d4 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .literal.esp_timer_early_init + 0x00000000420007dc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x00000000420007dc 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_startup_init + 0x00000000420007f0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x00000000420007f0 0x18 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x0000000042000808 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x20 (size before relaxing) + .literal.esp_timer_impl_init + 0x0000000042000824 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x48 (size before relaxing) + .literal.phy_set_pwdet_power + 0x000000004200084c 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_tsens_power + 0x0000000042000858 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xc (size before relaxing) + .literal.phy_get_tsens_value + 0x000000004200085c 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4 (size before relaxing) + .literal.translate_path + 0x000000004200085c 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register_common + 0x0000000042000874 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x0000000042000880 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x0000000042000880 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.get_vfs_for_index + 0x000000004200088c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_fd + 0x000000004200088c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_path + 0x000000004200088c 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_open + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_write + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x14 (size before relaxing) + .literal.esp_vfs_fstat + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x0000000042000890 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.console_open + 0x0000000042000890 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_write + 0x0000000042000898 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fstat + 0x000000004200089c 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x000000004200089c 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_read + 0x000000004200089c 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fcntl + 0x000000004200089c 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fsync + 0x000000004200089c 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_access + 0x000000004200089c 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_end_select + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcsetattr + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcgetattr + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcdrain + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcflush + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_start_select + 0x00000000420008a0 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x00000000420008a0 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_console_register + 0x00000000420008a8 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_open + 0x00000000420008ac 0x8 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.usb_serial_jtag_rx_char + 0x00000000420008b4 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_read_char + 0x00000000420008b4 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_tx_char + 0x00000000420008b4 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_tcflush + 0x00000000420008b8 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_fcntl + 0x00000000420008b8 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_tcgetattr + 0x00000000420008bc 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_fstat + 0x00000000420008bc 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x8 (size before relaxing) + .literal.usb_serial_jtag_fsync + 0x00000000420008bc 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x20 (size before relaxing) + .literal.usb_serial_jtag_tcdrain + 0x00000000420008c8 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x4 (size before relaxing) + .literal.usb_serial_jtag_tcsetattr + 0x00000000420008c8 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x10 (size before relaxing) + .literal.usb_serial_jtag_write + 0x00000000420008c8 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_return_char + 0x00000000420008c8 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x14 (size before relaxing) + .literal.usb_serial_jtag_read + 0x00000000420008d4 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x24 (size before relaxing) + .literal.esp_vfs_usb_serial_jtag_get_vfs + 0x00000000420008d8 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .literal.event_handler + 0x00000000420008dc 0x24 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x48 (size before relaxing) + .literal.wifi_init_sta + 0x0000000042000900 0x70 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x100 (size before relaxing) + .literal.app_main + 0x0000000042000970 0x18 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x4c (size before relaxing) + .literal.ModBusSlave_accept + 0x0000000042000988 0x14 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x28 (size before relaxing) + .literal.ModBusSlave_poll + 0x000000004200099c 0x4 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x14 (size before relaxing) + .literal.ModBusSlave_recv + 0x00000000420009a0 0x10 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x60 (size before relaxing) + .literal.ModBusTCPSlave_init + 0x00000000420009b0 0xc esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x28 (size before relaxing) + .literal.crc16 + 0x00000000420009bc 0x8 esp-idf/main/libmain.a(ModbusS.c.obj) + .literal.ModbusSlaveProcess + 0x00000000420009c4 0x68 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x12c (size before relaxing) + .literal.pid_loop_cb + 0x0000000042000a2c 0xc esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x18 (size before relaxing) + .literal.bdc_motor_init + 0x0000000042000a38 0x1c esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x2c (size before relaxing) + .literal.bdc_encoder_init + 0x0000000042000a54 0x44 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0xc4 (size before relaxing) + .literal.bdc_pid_init + 0x0000000042000a98 0x18 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x38 (size before relaxing) + .literal.bdc_ctrl_timer_init + 0x0000000042000ab0 0x14 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x2c (size before relaxing) + .literal.bdc_motor_init_all + 0x0000000042000ac4 0x3c esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x7c (size before relaxing) + .literal.pid_compute + 0x0000000042000b00 0xc esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x14 (size before relaxing) + .literal.pid_update_parameters + 0x0000000042000b0c 0x10 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.pid_new_control_block + 0x0000000042000b1c 0xc esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x38 (size before relaxing) + .literal.bdc_motor_enable + 0x0000000042000b28 0xc esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x14 (size before relaxing) + .literal.bdc_motor_set_speed + 0x0000000042000b34 0x4 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x14 (size before relaxing) + .literal.bdc_motor_forward + 0x0000000042000b38 0x4 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x14 (size before relaxing) + .literal.bdc_motor_mcpwm_set_speed + 0x0000000042000b3c 0xc esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x24 (size before relaxing) + .literal.bdc_motor_mcpwm_del + 0x0000000042000b48 0x0 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x1c (size before relaxing) + .literal.bdc_motor_mcpwm_brake + 0x0000000042000b48 0xc esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_mcpwm_coast + 0x0000000042000b54 0x4 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_mcpwm_reverse + 0x0000000042000b58 0x8 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_mcpwm_forward + 0x0000000042000b60 0x8 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_mcpwm_disable + 0x0000000042000b68 0xc esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_mcpwm_enable + 0x0000000042000b74 0xc esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x28 (size before relaxing) + .literal.bdc_motor_new_mcpwm_device + 0x0000000042000b80 0x40 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0xe0 (size before relaxing) + .literal.xt_int_has_handler + 0x0000000042000bc0 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x0000000042000bc8 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x0000000042000bcc 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x0000000042000bd4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_efuse_utility_process + 0x0000000042000bd4 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4c (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x0000000042000bf4 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x1c (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x0000000042000c04 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_utility_count_once + 0x0000000042000c04 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xc (size before relaxing) + .literal.gpio_input_enable + 0x0000000042000c08 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_input_disable + 0x0000000042000c24 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_output_disable + 0x0000000042000c2c 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_od_enable + 0x0000000042000c38 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_od_disable + 0x0000000042000c3c 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_intr_enable_on_core + 0x0000000042000c40 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x8 (size before relaxing) + .literal.gpio_output_enable + 0x0000000042000c40 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_pullup_en + 0x0000000042000c4c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_pullup_dis + 0x0000000042000c54 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_pulldown_en + 0x0000000042000c5c 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_pulldown_dis + 0x0000000042000c60 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_set_intr_type + 0x0000000042000c64 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3c (size before relaxing) + .literal.gpio_intr_enable + 0x0000000042000c6c 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_intr_disable + 0x0000000042000c70 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_config + 0x0000000042000c74 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x8c (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x0000000042000c98 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_io_number_get + 0x0000000042000c98 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_deinit + 0x0000000042000c98 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x34 (size before relaxing) + .literal.mcpwm_comparator_register_to_operator + 0x0000000042000cac 0xc esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x1c (size before relaxing) + .literal.mcpwm_comparator_unregister_from_operator + 0x0000000042000cb8 0x0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x8 (size before relaxing) + .literal.mcpwm_comparator_destory + 0x0000000042000cb8 0x8 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x20 (size before relaxing) + .literal.mcpwm_new_comparator + 0x0000000042000cc0 0x10 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x40 (size before relaxing) + .literal.mcpwm_del_comparator + 0x0000000042000cd0 0x8 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x2c (size before relaxing) + .literal.mcpwm_comparator_set_compare_value + 0x0000000042000cd8 0x10 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x4c (size before relaxing) + .literal.mcpwm_generator_register_to_operator + 0x0000000042000ce8 0xc esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x1c (size before relaxing) + .literal.mcpwm_generator_unregister_from_operator + 0x0000000042000cf4 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x8 (size before relaxing) + .literal.mcpwm_generator_destory + 0x0000000042000cf4 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x8 (size before relaxing) + .literal.mcpwm_new_generator + 0x0000000042000cf4 0x18 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x5c (size before relaxing) + .literal.mcpwm_del_generator + 0x0000000042000d0c 0x8 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x24 (size before relaxing) + .literal.mcpwm_generator_set_force_level + 0x0000000042000d14 0x10 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x20 (size before relaxing) + .literal.mcpwm_generator_set_actions_on_timer_event + 0x0000000042000d24 0x10 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x30 (size before relaxing) + .literal.mcpwm_generator_set_actions_on_compare_event + 0x0000000042000d34 0x4 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x18 (size before relaxing) + .literal.mcpwm_operator_register_to_group + 0x0000000042000d38 0x10 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x30 (size before relaxing) + .literal.mcpwm_operator_unregister_from_group + 0x0000000042000d48 0x0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0xc (size before relaxing) + .literal.mcpwm_operator_destory + 0x0000000042000d48 0x8 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x20 (size before relaxing) + .literal.mcpwm_new_operator + 0x0000000042000d50 0x18 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x54 (size before relaxing) + .literal.mcpwm_del_operator + 0x0000000042000d68 0x14 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x50 (size before relaxing) + .literal.mcpwm_operator_connect_timer + 0x0000000042000d7c 0x8 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x24 (size before relaxing) + .literal.mcpwm_timer_register_to_group + 0x0000000042000d84 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x30 (size before relaxing) + .literal.mcpwm_timer_unregister_from_group + 0x0000000042000d94 0x0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0xc (size before relaxing) + .literal.mcpwm_timer_destory + 0x0000000042000d94 0x8 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x20 (size before relaxing) + .literal.mcpwm_new_timer + 0x0000000042000d9c 0x48 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0xa8 (size before relaxing) + .literal.mcpwm_del_timer + 0x0000000042000de4 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x44 (size before relaxing) + .literal.mcpwm_timer_enable + 0x0000000042000df4 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x40 (size before relaxing) + .literal.mcpwm_timer_disable + 0x0000000042000e04 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x40 (size before relaxing) + .literal.mcpwm_timer_start_stop + 0x0000000042000e14 0x8 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x48 (size before relaxing) + .literal.pcnt_acquire_group_handle + 0x0000000042000e1c 0x8 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x28 (size before relaxing) + .literal.pcnt_release_group_handle + 0x0000000042000e24 0xc esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x28 (size before relaxing) + .literal.pcnt_register_to_group + 0x0000000042000e30 0x10 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x30 (size before relaxing) + .literal.pcnt_unregister_from_group + 0x0000000042000e40 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0xc (size before relaxing) + .literal.pcnt_destory + 0x0000000042000e40 0xc esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x30 (size before relaxing) + .literal.pcnt_new_unit + 0x0000000042000e4c 0x2c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x80 (size before relaxing) + .literal.pcnt_unit_set_glitch_filter + 0x0000000042000e78 0x1c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x44 (size before relaxing) + .literal.pcnt_unit_enable + 0x0000000042000e94 0xc esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x40 (size before relaxing) + .literal.pcnt_unit_start + 0x0000000042000ea0 0x8 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x3c (size before relaxing) + .literal.pcnt_unit_clear_count + 0x0000000042000ea8 0x4 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x48 (size before relaxing) + .literal.pcnt_unit_get_count + 0x0000000042000eac 0x4 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x30 (size before relaxing) + .literal.pcnt_unit_register_event_callbacks + 0x0000000042000eb0 0x4 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x44 (size before relaxing) + .literal.pcnt_unit_add_watch_point + 0x0000000042000eb4 0xc esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x4c (size before relaxing) + .literal.pcnt_new_channel + 0x0000000042000ec0 0x18 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x80 (size before relaxing) + .literal.pcnt_channel_set_edge_action + 0x0000000042000ed8 0x10 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x2c (size before relaxing) + .literal.pcnt_channel_set_level_action + 0x0000000042000ee8 0x10 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x2c (size before relaxing) + .literal.mcpwm_acquire_group_handle + 0x0000000042000ef8 0x4 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x28 (size before relaxing) + .literal.mcpwm_release_group_handle + 0x0000000042000efc 0x0 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x1c (size before relaxing) + .literal.mcpwm_select_periph_clock + 0x0000000042000efc 0x14 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_init_mem + 0x0000000042000f10 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x0000000042000f10 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.spi_flash_init_lock + 0x0000000042000f18 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x0000000042000f28 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x0000000042000f2c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_cache2phys + 0x0000000042000f2c 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x38 (size before relaxing) + .literal.check_chip_pointer_default + 0x0000000042000f50 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.esp_flash_read_chip_id + 0x0000000042000f58 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_init_default_chip + 0x0000000042000f5c 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x4c (size before relaxing) + .literal.esp_flash_app_init + 0x0000000042000f88 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x0000000042000f90 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_crosscore_int_init + 0x0000000042000f9c 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x0000000042000fb8 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x44 (size before relaxing) + .literal.esp_ipc_init + 0x0000000042000fe8 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x48 (size before relaxing) + .literal.esp_ipc_call + 0x000000004200100c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x000000004200100c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x000000004200100c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x0000000042001010 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x0000000042001010 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x0000000042001010 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.task_wdt_timeout_abort_xtensa + 0x0000000042001028 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x54 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x000000004200104c 0xc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x0000000042001058 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x98 (size before relaxing) + .literal.esp_task_wdt_add + 0x0000000042001094 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x000000004200109c 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x00000000420010b8 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x00000000420010cc 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x00000000420010d4 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x00000000420010d4 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x28 (size before relaxing) + .literal.esp_task_wdt_impl_timer_feed + 0x00000000420010dc 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x00000000420010dc 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x00000000420010dc 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.gpio_hal_intr_enable_on_core + 0x00000000420010dc 0x8 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x14 (size before relaxing) + .literal.gpio_hal_intr_disable + 0x00000000420010e4 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0xc (size before relaxing) + .literal.get_flash_clock_divider + 0x00000000420010e4 0x18 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x44 (size before relaxing) + .literal.spi_flash_cal_clock + 0x00000000420010fc 0xc esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_init + 0x0000000042001108 0xc esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x0000000042001114 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x0000000042001114 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.pcnt_hal_init + 0x0000000042001114 0x4 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .literal.mcpwm_hal_init + 0x0000000042001118 0x8 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .literal.mcpwm_hal_timer_reset + 0x0000000042001120 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x4 (size before relaxing) + .literal.mcpwm_hal_generator_reset + 0x0000000042001120 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x8 (size before relaxing) + .literal.temperature_sensor_get_raw_value + 0x0000000042001120 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x48 (size before relaxing) + .literal.temperature_sensor_power_acquire + 0x000000004200114c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x24 (size before relaxing) + .literal.temperature_sensor_power_release + 0x0000000042001158 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x3c (size before relaxing) + .literal.temp_sensor_get_raw_value + 0x0000000042001168 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x34 (size before relaxing) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x0000000042001174 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24close_handles_and_deinitPKc + 0x000000004200117c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1c (size before relaxing) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x000000004200117c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_flash_init_partition + 0x0000000042001184 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_init + 0x0000000042001184 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_flash_erase_partition + 0x0000000042001188 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_flash_erase + 0x0000000042001188 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_open_from_partition + 0x0000000042001188 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_close + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_erase_key + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_commit + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_blob + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_blob + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIaEimPKcT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i8 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIhEimPKcT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u8 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEimPKcT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u16 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setImEimPKcT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u32 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEimPKcPT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i8 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEimPKcPT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u8 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEimPKcPT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u16 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getImEimPKcPT_ + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u32 + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x000000004200118c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x000000004200118c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x0000000042001190 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs7Storage4initEmm + 0x0000000042001190 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x0000000042001190 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x0000000042001194 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000420011a0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000420011a4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000420011ac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000420011ac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000420011ac 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x64 (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000420011c0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000420011c0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000420011c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000420011c8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000420011cc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD5Ev + 0x00000000420011cc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x00000000420011d4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000000420011d4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000420011d8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000420011dc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000420011dc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x00000000420011e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000420011e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000420011e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000420011e0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4PageC2Ev + 0x00000000420011e4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000420011e4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10initializeEv + 0x00000000420011e8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000420011e8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000420011e8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000420011ec 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4c (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x00000000420011f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERm + 0x00000000420011f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x00000000420011f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x00000000420011f8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000420011fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000420011fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000420011fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000420011fc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40 (size before relaxing) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x00000000420011fc 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page12setSeqNumberEm + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page5eraseEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page8markFullEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs11PageManager12activatePageEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x0000000042001208 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x0000000042001208 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x60 (size before relaxing) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x000000004200121c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x0000000042001220 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x0000000042001220 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x0000000042001220 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal.mem_malloc + 0x0000000042001220 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x000000004200122c 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_calloc + 0x0000000042001238 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_impl + 0x0000000042001238 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_pool_is_empty + 0x0000000042001244 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_free_ooseq + 0x000000004200124c 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x0000000042001250 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_alloc_reference + 0x0000000042001250 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_alloced_custom + 0x0000000042001258 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header + 0x0000000042001258 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x0000000042001258 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x0000000042001258 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_header_impl + 0x000000004200125c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_header_force + 0x000000004200125c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_free + 0x000000004200125c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3c (size before relaxing) + .literal.pbuf_alloc + 0x000000004200126c 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x0000000042001280 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_free_header + 0x0000000042001290 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x0000000042001290 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x0000000042001298 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_chain + 0x00000000420012a0 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy_partial_pbuf + 0x00000000420012a0 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_copy + 0x00000000420012ac 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_copy_partial + 0x00000000420012ac 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_skip + 0x00000000420012ac 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_take + 0x00000000420012ac 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_take_at + 0x00000000420012b8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x00000000420012c0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x00000000420012c8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x00000000420012c8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.tcp_new_port + 0x00000000420012c8 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_remove_listener + 0x00000000420012d8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_listen_closed + 0x00000000420012e4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_free_listen + 0x00000000420012f0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_init + 0x00000000420012f8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_free + 0x00000000420012fc 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_accepted + 0x0000000042001304 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x000000004200130c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_handle_closepend + 0x0000000042001310 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_bind + 0x0000000042001310 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_listen_with_backlog_and_err + 0x0000000042001320 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x28 (size before relaxing) + .literal.tcp_listen_with_backlog + 0x0000000042001330 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x0000000042001330 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_recved + 0x0000000042001340 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_seg_free + 0x000000004200134c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x000000004200134c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x000000004200134c 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_recv + 0x0000000042001354 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_sent + 0x000000004200135c 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_err + 0x0000000042001364 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_poll + 0x0000000042001370 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_next_iss + 0x000000004200137c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x0000000042001388 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_free_ooseq + 0x0000000042001394 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x0000000042001394 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_pcb_remove + 0x0000000042001394 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abandon + 0x00000000420013c0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_abort + 0x00000000420013d0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_accept_null + 0x00000000420013d0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_timewait + 0x00000000420013d8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_kill_prio + 0x00000000420013dc 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x00000000420013dc 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x00000000420013e8 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x00000000420013e8 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_alloc + 0x00000000420013f0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_new + 0x0000000042001400 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close_shutdown + 0x0000000042001400 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5c (size before relaxing) + .literal.tcp_close_ext + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_recv_null + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_process_refused_data + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_fasttmr + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x0000000042001410 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_slowtmr + 0x0000000042001410 0x38 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb4 (size before relaxing) + .literal.tcp_tmr + 0x0000000042001448 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_get_next_optbyte + 0x000000004200144c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_parseopt + 0x000000004200145c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x000000004200146c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x20 (size before relaxing) + .literal.tcp_timewait_input + 0x0000000042001478 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x38 (size before relaxing) + .literal.tcp_listen_input + 0x0000000042001498 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x64 (size before relaxing) + .literal.tcp_oos_insert_segment + 0x00000000420014a4 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_free_acked_segments + 0x00000000420014ac 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x30 (size before relaxing) + .literal.tcp_receive + 0x00000000420014bc 0x44 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x188 (size before relaxing) + .literal.tcp_process + 0x0000000042001500 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc4 (size before relaxing) + .literal.tcp_input + 0x000000004200151c 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x134 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x000000004200154c 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_write_checks + 0x000000004200154c 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_segment_busy + 0x0000000042001560 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_fill_options + 0x0000000042001568 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_pbuf_prealloc + 0x0000000042001574 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_create_segment + 0x0000000042001584 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x0000000042001594 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_output_alloc_header + 0x000000004200159c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_route + 0x00000000420015a4 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_segment + 0x00000000420015a4 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_output_control_segment + 0x00000000420015b8 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_write + 0x00000000420015c0 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x00000000420015e0 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_enqueue_flags + 0x00000000420015f4 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_send_fin + 0x0000000042001610 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x0000000042001618 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_rexmit + 0x0000000042001620 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x0000000042001628 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x0000000042001630 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + .literal.tcp_send_empty_ack + 0x0000000042001640 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output + 0x0000000042001648 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x0000000042001658 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x0000000042001660 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x0000000042001668 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_zero_window_probe + 0x0000000042001674 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x34 (size before relaxing) + .literal.sys_timeout_abs + 0x0000000042001680 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x0000000042001690 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.sys_timeout + 0x0000000042001698 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.tcp_timer_needed + 0x00000000420016a0 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x00000000420016a8 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x00000000420016a8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xc (size before relaxing) + .literal.sys_untimeout + 0x00000000420016ac 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x00000000420016ac 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x00000000420016ac 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_option_short + 0x00000000420016b4 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x00000000420016c0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte + 0x00000000420016c8 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x00000000420016d0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_create_msg + 0x00000000420016d8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_option_hostname + 0x00000000420016e4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_option_trailer + 0x00000000420016ec 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_rebind + 0x00000000420016ec 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_t2_timeout + 0x00000000420016fc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_reboot + 0x00000000420016fc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + .literal.dhcp_select + 0x00000000420016fc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x64 (size before relaxing) + .literal.dhcp_handle_offer + 0x00000000420016fc 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_discover + 0x0000000042001704 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4c (size before relaxing) + .literal.dhcp_decline + 0x0000000042001704 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38 (size before relaxing) + .literal.dhcp_check + 0x0000000042001704 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_bind + 0x0000000042001704 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_handle_nak + 0x0000000042001704 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x0000000042001704 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x0000000042001710 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_parse_reply + 0x000000004200171c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_handle_ack + 0x0000000042001728 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_recv + 0x0000000042001728 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_set_struct + 0x0000000042001730 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_cleanup + 0x0000000042001740 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_network_changed + 0x0000000042001744 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_arp_reply + 0x000000004200174c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_renew + 0x000000004200174c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_t1_timeout + 0x0000000042001750 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release_and_stop + 0x0000000042001750 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_start + 0x0000000042001750 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_coarse_tmr + 0x0000000042001750 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_timeout + 0x0000000042001754 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_fine_tmr + 0x0000000042001754 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_fine_timeout_cb + 0x0000000042001754 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release + 0x0000000042001754 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x0000000042001754 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.free_etharp_q + 0x0000000042001754 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20 (size before relaxing) + .literal.etharp_free_entry + 0x0000000042001764 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_find_entry + 0x0000000042001768 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x34 (size before relaxing) + .literal.etharp_update_arp_entry + 0x000000004200177c 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x30 (size before relaxing) + .literal.etharp_raw + 0x0000000042001784 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x3c (size before relaxing) + .literal.etharp_request_dst + 0x0000000042001798 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_cleanup_netif + 0x000000004200179c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x000000004200179c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x14 (size before relaxing) + .literal.etharp_request + 0x000000004200179c 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_tmr + 0x00000000420017a0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x00000000420017a0 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x00000000420017a8 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x5c (size before relaxing) + .literal.etharp_output + 0x00000000420017bc 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x48 (size before relaxing) + .literal.ip4_input_accept + 0x00000000420017c8 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_route + 0x00000000420017c8 0x8 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x00000000420017d0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_input + 0x00000000420017d0 0x8 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x68 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x00000000420017d8 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x44 (size before relaxing) + .literal.ip4_output_if_opt + 0x00000000420017ec 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x00000000420017ec 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x00000000420017ec 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_frag + 0x00000000420017ec 0xc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x3c (size before relaxing) + .literal.ip6_input_accept + 0x00000000420017f8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x00000000420017f8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1c (size before relaxing) + .literal.ip6_select_source_address + 0x00000000420017f8 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_input + 0x00000000420017fc 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xf4 (size before relaxing) + .literal.ip6_output_if_src + 0x00000000420017fc 0x18 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x48 (size before relaxing) + .literal.ip6_output_if + 0x0000000042001814 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x0000000042001814 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_frag + 0x0000000042001814 0x14 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x44 (size before relaxing) + .literal.mld6_delayed_report + 0x0000000042001828 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_new_group + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_send + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x20 (size before relaxing) + .literal.mld6_stop + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x30 (size before relaxing) + .literal.mld6_joingroup_netif + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_joingroup + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_leavegroup_netif + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_leavegroup + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x0000000042001830 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x0000000042001830 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x0000000042001834 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_new_destination_cache_entry + 0x0000000042001838 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_is_prefix_in_netif + 0x0000000042001838 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_select_router + 0x000000004200183c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_get_router + 0x0000000042001844 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_get_onlink_prefix + 0x0000000042001844 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_onlink_prefix + 0x0000000042001844 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_send_q + 0x0000000042001844 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18 (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x0000000042001844 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_process_autoconfig_prefix + 0x0000000042001844 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_free_q + 0x0000000042001854 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x34 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x0000000042001870 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x0000000042001870 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_na + 0x0000000042001870 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_rs + 0x000000004200187c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_send_ns + 0x000000004200187c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_neighbor_cache_probe + 0x0000000042001880 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_router + 0x0000000042001880 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_get_next_hop_entry + 0x0000000042001880 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4c (size before relaxing) + .literal.nd6_queue_packet + 0x0000000042001890 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x28 (size before relaxing) + .literal.nd6_input + 0x0000000042001890 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x124 (size before relaxing) + .literal.nd6_tmr + 0x00000000420018a0 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x00000000420018a8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x00000000420018a8 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x00000000420018b0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_get_destination_mtu + 0x00000000420018b0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x00000000420018b0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_cleanup_netif + 0x00000000420018b0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x00000000420018b0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x10 (size before relaxing) + .literal.ethernet_input + 0x00000000420018b0 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x00000000420018b4 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.lwip_init_tcp_isn + 0x00000000420018c0 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x18 (size before relaxing) + .literal.lwip_hook_tcp_isn + 0x00000000420018d0 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x2c (size before relaxing) + .literal.ip4_route_src_hook + 0x00000000420018e8 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_parse_extra_opts + 0x00000000420018e8 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0xc (size before relaxing) + .literal.dhcp_append_extra_opts + 0x00000000420018e8 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.sys_thread_sem_free + 0x00000000420018ec 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_mutex_new + 0x00000000420018ec 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mutex_lock + 0x00000000420018ec 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x00000000420018f8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_new + 0x0000000042001900 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_signal + 0x0000000042001910 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x0000000042001918 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_sem_wait + 0x000000004200191c 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_free + 0x0000000042001928 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mbox_new + 0x0000000042001928 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x0000000042001928 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x0000000042001930 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x0000000042001930 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x000000004200193c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x0000000042001940 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x000000004200194c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_init + 0x000000004200194c 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x0000000042001960 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_protect + 0x0000000042001964 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x0000000042001964 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x0000000042001964 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + .literal.sys_thread_sem_get + 0x0000000042001968 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_tcpip + 0x0000000042001968 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x0000000042001974 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x0000000042001974 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x0000000042001974 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x0000000042001974 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x0000000042001974 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fstat + 0x0000000042001974 0x4 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x0000000042001978 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x40 (size before relaxing) + .literal.tryget_socket_unconn_nouse + 0x00000000420019ac 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.free_socket_locked + 0x00000000420019b0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.sock_inc_used_locked + 0x00000000420019bc 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x00000000420019c8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.sock_inc_used + 0x00000000420019c8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tryget_socket_unconn + 0x00000000420019cc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x00000000420019cc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_select_inc_sockets_used + 0x00000000420019cc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_link_select_cb + 0x00000000420019cc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x00000000420019d4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x00000000420019e0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_sock_make_addr + 0x00000000420019e0 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_recv_tcp_from + 0x00000000420019f0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.free_socket_free_elements + 0x00000000420019f0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x00000000420019f0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.done_socket + 0x00000000420019f0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket + 0x00000000420019f4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x00000000420019f4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_selscan + 0x00000000420019f4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x00000000420019fc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x18 (size before relaxing) + .literal.lwip_socket_drop_registered_memberships + 0x0000000042001a04 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_drop_registered_mld6_memberships + 0x0000000042001a08 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_recv_tcp + 0x0000000042001a0c 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_recvfrom_udp_raw + 0x0000000042001a24 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.lwip_close + 0x0000000042001a2c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_recvfrom + 0x0000000042001a34 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_read + 0x0000000042001a3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x0000000042001a3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x48 (size before relaxing) + .literal.lwip_send + 0x0000000042001a3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_write + 0x0000000042001a3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x0000000042001a3c 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x98 (size before relaxing) + .literal.lwip_ioctl + 0x0000000042001a4c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x0000000042001a50 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_timeouts_mbox_fetch + 0x0000000042001a54 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread_handle_msg + 0x0000000042001a54 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_thread + 0x0000000042001a60 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x28 (size before relaxing) + .literal.tcpip_inpkt + 0x0000000042001a70 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x0000000042001a78 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_try_callback + 0x0000000042001a80 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x0000000042001a84 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_api_call + 0x0000000042001a8c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_init + 0x0000000042001a90 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x34 (size before relaxing) + .literal.lwip_htonl + 0x0000000042001aa0 0x4 esp-idf/lwip/liblwip.a(def.c.obj) + 0x8 (size before relaxing) + .literal.dns_setserver + 0x0000000042001aa4 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x10 (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.lwip_init + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ip_input + 0x0000000042001aa8 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.do_memp_malloc_pool + 0x0000000042001aa8 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x20 (size before relaxing) + .literal.do_memp_free_pool + 0x0000000042001ab4 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.memp_malloc + 0x0000000042001abc 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.memp_free + 0x0000000042001ac0 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.netif_loopif_init + 0x0000000042001ac0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_set_netmask + 0x0000000042001ad4 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_set_gw + 0x0000000042001adc 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x0000000042001ae0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x0000000042001ae0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_do_set_ipaddr + 0x0000000042001ae8 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_poll + 0x0000000042001aec 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_default + 0x0000000042001b00 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output + 0x0000000042001b00 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4c (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x0000000042001b14 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x0000000042001b14 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x0000000042001b14 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_get_by_index + 0x0000000042001b20 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_add_ext_callback + 0x0000000042001b20 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_remove_ext_callback + 0x0000000042001b30 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_invoke_ext_callback + 0x0000000042001b38 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_set_addr + 0x0000000042001b40 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_add + 0x0000000042001b40 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + .literal.netif_set_up + 0x0000000042001b58 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_set_down + 0x0000000042001b58 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_remove + 0x0000000042001b58 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_link_up + 0x0000000042001b58 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_init + 0x0000000042001b58 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_set_link_down + 0x0000000042001b68 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_ip6_addr_set_parts + 0x0000000042001b68 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x2c (size before relaxing) + .literal.netif_ip6_addr_set + 0x0000000042001b74 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x0000000042001b80 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x28 (size before relaxing) + .literal.raw_input_local_match + 0x0000000042001b84 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_input + 0x0000000042001b84 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x24 (size before relaxing) + .literal.raw_sendto_if_src + 0x0000000042001b94 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x40 (size before relaxing) + .literal.raw_sendto + 0x0000000042001ba0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x0000000042001ba0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x0000000042001ba0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x0000000042001ba0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.udp_new_port + 0x0000000042001ba0 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_input_local_match + 0x0000000042001ba8 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_init + 0x0000000042001bb8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x0000000042001bb8 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x6c (size before relaxing) + .literal.udp_bind + 0x0000000042001bc8 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_sendto_if_src + 0x0000000042001bc8 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40 (size before relaxing) + .literal.udp_sendto_if + 0x0000000042001bd0 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_sendto + 0x0000000042001bd0 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x20 (size before relaxing) + .literal.udp_send + 0x0000000042001bd0 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_connect + 0x0000000042001bd0 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_disconnect + 0x0000000042001bd0 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.udp_remove + 0x0000000042001bd4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new + 0x0000000042001bd4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x0000000042001bd4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.icmp_send_response + 0x0000000042001bd4 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.icmp_input + 0x0000000042001be0 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x68 (size before relaxing) + .literal.icmp_dest_unreach + 0x0000000042001bec 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_start_timer + 0x0000000042001bec 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x0000000042001bf4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_ip_output_if + 0x0000000042001bf4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x0000000042001bf4 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_timeout + 0x0000000042001c04 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_init + 0x0000000042001c08 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x0000000042001c0c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x0000000042001c0c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x0000000042001c0c 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x24 (size before relaxing) + .literal.igmp_start + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup_netif + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_joingroup + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_leavegroup_netif + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x14 (size before relaxing) + .literal.igmp_leavegroup + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_tmr + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x18 (size before relaxing) + .literal.igmp_timeout_cb + 0x0000000042001c18 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x0000000042001c18 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x28 (size before relaxing) + .literal.icmp6_send_response + 0x0000000042001c24 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_input + 0x0000000042001c2c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .literal.icmp6_dest_unreach + 0x0000000042001c2c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x0000000042001c2c 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.netconn_apimsg + 0x0000000042001c2c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd_msg + 0x0000000042001c2c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_close_shutdown + 0x0000000042001c30 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_prepare_delete + 0x0000000042001c34 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x0000000042001c38 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x0000000042001c38 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd + 0x0000000042001c3c 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_send + 0x0000000042001c3c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x0000000042001c40 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + .literal.netconn_write_partly + 0x0000000042001c50 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x0000000042001c50 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_recv_data + 0x0000000042001c50 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x0000000042001c58 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_recv_data_tcp + 0x0000000042001c58 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x0000000042001c58 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_join_leave_group + 0x0000000042001c58 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x0000000042001c5c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_err_to_msg + 0x0000000042001c60 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.err_tcp + 0x0000000042001c78 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x0000000042001c8c 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_writemore + 0x0000000042001c90 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x60 (size before relaxing) + .literal.lwip_netconn_do_close_internal + 0x0000000042001cb0 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x88 (size before relaxing) + .literal.poll_tcp + 0x0000000042001cd4 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.sent_tcp + 0x0000000042001cd8 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.tcp_do_abort + 0x0000000042001cdc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x0000000042001cdc 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x0000000042001cdc 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x0000000042001ce4 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.netconn_drain + 0x0000000042001cf4 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x44 (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x0000000042001d00 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_send + 0x0000000042001d10 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_recv + 0x0000000042001d10 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_do_write + 0x0000000042001d10 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x0000000042001d18 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x0000000042001d20 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x0000000042001d2c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x0000000042001d2c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.err_to_errno + 0x0000000042001d2c 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x0000000042001d30 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x0000000042001d30 0xc esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + .literal.netbuf_free + 0x0000000042001d3c 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_list_lock + 0x0000000042001d3c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_list_unlock + 0x0000000042001d40 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_add_to_list + 0x0000000042001d50 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_remove_from_list + 0x0000000042001d54 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_get_nr_of_ifs + 0x0000000042001d5c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x0000000042001d5c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x0000000042001d5c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey + 0x0000000042001d64 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_is_active + 0x0000000042001d64 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_default_netif_internal + 0x0000000042001d64 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_api_cb + 0x0000000042001d64 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.tcpip_init_done + 0x0000000042001d68 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_config_sanity_check + 0x0000000042001d68 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.set_lwip_netif_callback + 0x0000000042001d74 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_set_mac_api + 0x0000000042001d7c 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 + 0x0000000042001d7c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x0000000042001d7c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer + 0x0000000042001d84 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_set_mldv6_flag + 0x0000000042001d8c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_internal_nd6_cb + 0x0000000042001d90 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_garp_flag + 0x0000000042001d94 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x0000000042001d9c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.netif_send_mldv6 + 0x0000000042001da0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_init_configuration + 0x0000000042001da0 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.netif_unset_garp_flag + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.netif_unset_mldv6_flag + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_remove + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_lwip_remove_api + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.netif_send_garp + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.remove_lwip_netif_callback + 0x0000000042001db0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_add + 0x0000000042001db0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.dns_clear_servers + 0x0000000042001db4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x0000000042001db4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_update_default_netif + 0x0000000042001dc0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_start_api + 0x0000000042001dcc 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x64 (size before relaxing) + .literal.esp_netif_stop_api + 0x0000000042001de8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_up_api + 0x0000000042001de8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_down_api + 0x0000000042001de8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_init + 0x0000000042001de8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5c (size before relaxing) + .literal.esp_netif_destroy + 0x0000000042001df8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x60 (size before relaxing) + .literal.esp_netif_new + 0x0000000042001e00 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc4 (size before relaxing) + .literal.esp_netif_attach + 0x0000000042001e18 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_set_driver_config + 0x0000000042001e20 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac + 0x0000000042001e20 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .literal.esp_netif_start + 0x0000000042001e24 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_stop + 0x0000000042001e28 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_netstack_buf_ref + 0x0000000042001e2c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_netstack_buf_free + 0x0000000042001e2c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x0000000042001e2c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_get_hostname + 0x0000000042001e30 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_up + 0x0000000042001e30 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_down + 0x0000000042001e34 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_update_default_netif_lwip + 0x0000000042001e38 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x44 (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x0000000042001e40 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x0000000042001e40 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x0000000042001e40 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_internal_dhcpc_cb + 0x0000000042001e44 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.netif_callback_fn + 0x0000000042001e48 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_decrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_encrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_unwrap + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_wrap + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.sha256_prf_bits + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x14 (size before relaxing) + .literal.sha256_prf + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x14 (size before relaxing) + .literal.digest_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.hmac_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.aes_crypt_init + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_crypt_deinit + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_crypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha256_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha1_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256 + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1_vector + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1 + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_init + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_init + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_128_cbc_encrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_128_cbc_decrypt + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.pbkdf2_sha1 + 0x0000000042001e48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.omac1_aes_vector + 0x0000000042001e48 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.omac1_aes_128_vector + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_wrap + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_unwrap + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x1c (size before relaxing) + .literal.os_get_time + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_get_random + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_sleep + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x8 (size before relaxing) + .literal.forced_memzero + 0x0000000042001e4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.ccmp_aad_nonce + 0x0000000042001e4c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.ccmp_decrypt + 0x0000000042001e54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x10 (size before relaxing) + .literal.ccmp_encrypt + 0x0000000042001e54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.hex2byte + 0x0000000042001e54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x0000000042001e54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x0000000042001e54 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xc (size before relaxing) + .literal.printf_decode + 0x0000000042001e5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.dup_binstr + 0x0000000042001e5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x0000000042001e5c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x38 (size before relaxing) + .literal.bin_clear_free + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_memdup + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.aes_ccm_encr_start + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr_auth + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_decr_auth + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth_start + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x0000000042001e60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_config_info + 0x0000000042001e60 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x74 (size before relaxing) + .literal.esp_wifi_set_log_level + 0x0000000042001e88 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.s_set_default_wifi_log_level + 0x0000000042001e88 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_deinit + 0x0000000042001e98 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x48 (size before relaxing) + .literal.esp_wifi_init + 0x0000000042001ea8 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x44 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x0000000042001eb8 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x0000000042001ec4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x0000000042001ec4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x0000000042001ec4 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.wifi_default_action_ap_start + 0x0000000042001edc 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x0000000042001edc 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x0000000042001edc 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x0000000042001edc 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.clear_default_wifi_handlers + 0x0000000042001edc 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.set_default_wifi_handlers + 0x0000000042001f00 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.create_and_attach + 0x0000000042001f00 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x0000000042001f04 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x0000000042001f04 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_create_default_wifi_sta + 0x0000000042001f04 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x38 (size before relaxing) + .literal.wifi_sta_receive + 0x0000000042001f24 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_ap_receive + 0x0000000042001f2c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x8 (size before relaxing) + .literal.wifi_driver_start + 0x0000000042001f2c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x10 (size before relaxing) + .literal.wifi_free + 0x0000000042001f38 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit_wrap + 0x0000000042001f38 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x0000000042001f38 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x0000000042001f38 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x0000000042001f44 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x0000000042001f44 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.esp_cpu_intr_enable + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_intr_disable + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_create_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_delete_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_free + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.semphr_delete_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_clk_slowclk_cal_get_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.get_time_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_clock_disable_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_clock_enable_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_reset_mac_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.timer_setfn_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.timer_done_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_pinned_to_core_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_back_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.semphr_give_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_create_wrapper + 0x0000000042001f58 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.semphr_create_wrapper + 0x0000000042001f58 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_thread_semphr_get_wrapper + 0x0000000042001f5c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.semphr_take_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.spin_lock_create_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .literal.set_isr_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.set_intr_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_create_queue + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x0000000042001f68 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_int_div_int + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_zeroize + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_free + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_resize_clear + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_size + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_write_binary_le + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_mpi + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.add_sub_mpi + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x0000000042001f68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x0000000042001f68 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x0000000042001f6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x0000000042001f6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x0000000042001f6c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_check_small_factors + 0x0000000042001f6c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mpi_miller_rabin + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_mpi_random + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_clz + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bitlen + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_cond_assign + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_cond_swap + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_be + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_write_le + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_write_be + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_shift_r + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_fill_random + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_random + 0x0000000042001f70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.get_pkcs_padding + 0x0000000042001f70 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x0000000042001f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_and_len_padding + 0x0000000042001f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_padding + 0x0000000042001f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.get_no_padding + 0x0000000042001f78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x0000000042001f78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x0000000042001f7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_init + 0x0000000042001f7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x0000000042001f7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x0000000042001f7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x0000000042001f7c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_cipher_set_padding_mode + 0x0000000042001f84 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_cipher_setup + 0x0000000042001fa8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.ccm_ctx_free + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aria_setkey_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_ctx_free + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aria_setkey_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_ctx_free + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_ctx_alloc + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_setkey_dec_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_setkey_enc_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ctr_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cfb128_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cbc_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ecb_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_ctx_free + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_free + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_uint_if + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_mem_move_to_left + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_lt_ct + 0x0000000042001fac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x0000000042001fac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x30 (size before relaxing) + .literal.cmac_multiply_by_u + 0x0000000042001fb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x4 (size before relaxing) + .literal.cmac_generate_subkeys + 0x0000000042001fb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_starts + 0x0000000042001fb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_update + 0x0000000042001fb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_finish + 0x0000000042001fb0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x0000000042001fb0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_free + 0x0000000042001fc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_md_setup + 0x0000000042001fc8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_md_starts + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_update + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_finish + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md5 + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.pkcs5_pbkdf2_hmac + 0x0000000042001fd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x0000000042001fd0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_calloc + 0x0000000042001fd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x0000000042001fd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x0000000042001fdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_sha1 + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256 + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512 + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_xts_init + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_init + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x0000000042001fe0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.s_check_dma_capable + 0x0000000042001fe0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_validate_input + 0x0000000042001fe4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x28 (size before relaxing) + .literal.esp_aes_isr_initialise + 0x0000000042001ff4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x28 (size before relaxing) + .literal.esp_aes_dma_wait_complete + 0x0000000042002008 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x24 (size before relaxing) + .literal.esp_aes_process_dma + 0x0000000042002010 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xb4 (size before relaxing) + .literal.esp_aes_process_dma_ext_ram + 0x0000000042002050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x3c (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x0000000042002050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_release_hardware + 0x0000000042002050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x0000000042002050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x0000000042002050 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x34 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x0000000042002054 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x48 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x0000000042002058 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x40 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x0000000042002058 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x50 (size before relaxing) + .literal.mpi_words + 0x0000000042002064 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.modular_inverse + 0x0000000042002064 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x0000000042002068 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_isr_initialise + 0x0000000042002068 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x28 (size before relaxing) + .literal.esp_mpi_wait_intr + 0x0000000042002078 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x1c (size before relaxing) + .literal.esp_mpi_exp_mod + 0x0000000042002080 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x60 (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x0000000042002080 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x000000004200208c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x000000004200208c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x000000004200208c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x000000004200208c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x000000004200208c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x0000000042002098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.esp_mpi_interrupt_enable + 0x0000000042002098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.esp_mpi_interrupt_clear + 0x0000000042002098 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.esp_mpi_read_result_hw_op + 0x000000004200209c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_exp_mpi_mod_hw_op + 0x00000000420020a4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x30 (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x00000000420020c8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x00000000420020d0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x24 (size before relaxing) + .literal.esp_internal_sha1_dma_process + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_init + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_starts + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_update + 0x00000000420020d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_sha1_finish + 0x00000000420020d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x00000000420020dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_init + 0x00000000420020dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x00000000420020dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x00000000420020dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_update + 0x00000000420020dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_sha256_finish + 0x00000000420020dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.esp_internal_sha_update_state + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.esp_internal_sha512_dma_process + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_init + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_starts + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_update + 0x00000000420020e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_sha512_finish + 0x00000000420020e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.gcm_mult + 0x00000000420020e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.increment32_j0 + 0x00000000420020e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_gcm_ghash + 0x00000000420020e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_gcm_setkey + 0x00000000420020e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_init + 0x00000000420020e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_free + 0x00000000420020e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_update + 0x00000000420020e8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4c (size before relaxing) + .literal.esp_md5_finish + 0x00000000420020fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_update + 0x00000000420020fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_init + 0x00000000420020fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_starts + 0x00000000420020fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_free + 0x00000000420020fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.aria_fe_xor + 0x00000000420020fc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1c (size before relaxing) + .literal.aria_fo_xor + 0x0000000042002114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_aria_setkey_enc + 0x0000000042002114 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_aria_setkey_dec + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_aria_crypt_ecb + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_aria_init + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_free + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_crypt_cbc + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_aria_crypt_cfb128 + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ctr + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_crypt + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_init + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_update + 0x0000000042002118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x0000000042002118 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.esp_aes_dma_start + 0x000000004200211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x4 (size before relaxing) + .literal.crypto_shared_gdma_init + 0x000000004200211c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x44 (size before relaxing) + .literal.esp_crypto_shared_gdma_start + 0x0000000042002134 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x30 (size before relaxing) + .literal.s_check_dma_capable + 0x000000004200213c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_block_mode + 0x000000004200213c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_dma_process + 0x000000004200213c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x38 (size before relaxing) + .literal.esp_sha_write_digest_state + 0x0000000042002150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_read_digest_state + 0x0000000042002150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_acquire_hardware + 0x0000000042002150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_release_hardware + 0x0000000042002150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_512_t_init_hash + 0x0000000042002150 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x30 (size before relaxing) + .literal.esp_sha_dma + 0x0000000042002158 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .literal.esp_sha_dma_start + 0x0000000042002170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x4 (size before relaxing) + .text.esp_app_get_description + 0x0000000042002170 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x0000000042002170 esp_app_get_description + .text.esp_init_app_elf_sha256 + 0x0000000042002178 0xf esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x0000000042002178 esp_init_app_elf_sha256 + *fill* 0x0000000042002187 0x1 + .text.esp_pthread_cfg_key_destructor + 0x0000000042002188 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x0000000042002196 0x2 + .text.esp_pthread_init + 0x0000000042002198 0x3a esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x0000000042002198 esp_pthread_init + *fill* 0x00000000420021d2 0x2 + .text.pthread_mutex_init + 0x00000000420021d4 0x70 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000420021d4 pthread_mutex_init + .text.pthread_mutex_init_if_static + 0x0000000042002244 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3c (size before relaxing) + .text.pthread_mutex_destroy + 0x000000004200227c 0x7a esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x000000004200227c pthread_mutex_destroy + *fill* 0x00000000420022f6 0x2 + .text.find_key + 0x00000000420022f8 0x2f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x0000000042002327 0x1 + .text.pthread_local_storage_thread_deleted_callback + 0x0000000042002328 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000004200236e 0x2 + .text.pthread_key_create + 0x0000000042002370 0x4d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042002370 pthread_key_create + *fill* 0x00000000420023bd 0x3 + .text.pthread_key_delete + 0x00000000420023c0 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000420023c0 pthread_key_delete + *fill* 0x0000000042002406 0x2 + .text.pthread_getspecific + 0x0000000042002408 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042002408 pthread_getspecific + .text.pthread_setspecific + 0x0000000042002428 0xbf esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc3 (size before relaxing) + 0x0000000042002428 pthread_setspecific + *fill* 0x00000000420024e7 0x1 + .text.core_intr_matrix_clear + 0x00000000420024e8 0x24 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.start_other_core + 0x000000004200250c 0xf9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xfd (size before relaxing) + *fill* 0x0000000042002605 0x3 + .text.startup_resume_other_cores + 0x0000000042002608 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x0000000042002608 startup_resume_other_cores + .text.select_rtc_slow_clk + 0x0000000042002618 0x9c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.esp_clk_init + 0x00000000420026b4 0x13d esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x00000000420026b4 esp_clk_init + *fill* 0x00000000420027f1 0x3 + .text.esp_perip_clk_init + 0x00000000420027f4 0x15c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x160 (size before relaxing) + 0x00000000420027f4 esp_perip_clk_init + .text.esp_cache_err_int_init + 0x0000000042002950 0xa8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0xac (size before relaxing) + 0x0000000042002950 esp_cache_err_int_init + .text.esp_int_wdt_init + 0x00000000420029f8 0x52 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x56 (size before relaxing) + 0x00000000420029f8 esp_int_wdt_init + *fill* 0x0000000042002a4a 0x2 + .text.esp_int_wdt_cpu_init + 0x0000000042002a4c 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x0000000042002a4c esp_int_wdt_cpu_init + .text.do_global_ctors + 0x0000000042002a78 0x19 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x0000000042002a91 0x3 + .text.do_core_init + 0x0000000042002a94 0xae esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xda (size before relaxing) + *fill* 0x0000000042002b42 0x2 + .text.do_system_init_fn + 0x0000000042002b44 0x59 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x0000000042002b9d 0x3 + .text.do_secondary_init + 0x0000000042002ba0 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x0000000042002bfe 0x2 + .text.start_cpu0_default + 0x0000000042002c00 0x1e8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x1f8 (size before relaxing) + 0x0000000042002c00 start_cpu0 + .text.__esp_system_init_fn_init_components0 + 0x0000000042002de8 0xa esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xd (size before relaxing) + *fill* 0x0000000042002df2 0x2 + .text.frame_to_panic_info + 0x0000000042002df4 0x3d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x41 (size before relaxing) + *fill* 0x0000000042002e31 0x3 + .text.panic_handler + 0x0000000042002e34 0x16e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x176 (size before relaxing) + *fill* 0x0000000042002fa2 0x2 + .text.print_state_for_core + 0x0000000042002fa4 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000042002fca 0x2 + .text.print_state + 0x0000000042002fcc 0x4d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x55 (size before relaxing) + *fill* 0x0000000042003019 0x3 + .text.panic_restart + 0x000000004200301c 0x33 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000004200301c panic_restart + *fill* 0x000000004200304f 0x1 + .text.esp_brownout_init + 0x0000000042003050 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x38 (size before relaxing) + 0x0000000042003050 esp_brownout_init + .text.get_reset_reason + 0x0000000042003080 0x9c esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .text.esp_reset_reason_clear_hint + 0x000000004200311c 0xf esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x000000004200312b 0x1 + .text.esp_reset_reason_init + 0x000000004200312c 0x27 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x2b (size before relaxing) + *fill* 0x0000000042003153 0x1 + .text.esp_apb_backup_dma_lock_init + 0x0000000042003154 0x11 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x0000000042003154 esp_apb_backup_dma_lock_init + *fill* 0x0000000042003165 0x3 + .text.print_debug_exception_details + 0x0000000042003168 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x00000000420031b8 0x4e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x66 (size before relaxing) + *fill* 0x0000000042003206 0x2 + .text.print_cache_err_details + 0x0000000042003208 0x13b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x17f (size before relaxing) + *fill* 0x0000000042003343 0x1 + .text.panic_print_registers + 0x0000000042003344 0xd7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10f (size before relaxing) + 0x0000000042003344 panic_print_registers + *fill* 0x000000004200341b 0x1 + .text.panic_arch_fill_info + 0x000000004200341c 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x000000004200341c panic_arch_fill_info + *fill* 0x000000004200344e 0x2 + .text.panic_soc_fill_info + 0x0000000042003450 0x62 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042003450 panic_soc_fill_info + *fill* 0x00000000420034b2 0x2 + .text.panic_print_backtrace + 0x00000000420034b4 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000420034b4 panic_print_backtrace + .text.esp_ipc_isr_init + 0x00000000420034d4 0x32 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x36 (size before relaxing) + 0x00000000420034d4 esp_ipc_isr_init + *fill* 0x0000000042003506 0x2 + .text.esp_vApplicationIdleHook + 0x0000000042003508 0x33 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000042003508 esp_vApplicationIdleHook + *fill* 0x000000004200353b 0x1 + .text.esp_register_freertos_idle_hook_for_cpu + 0x000000004200353c 0x59 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x000000004200353c esp_register_freertos_idle_hook_for_cpu + *fill* 0x0000000042003595 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x0000000042003598 0x55 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000042003598 esp_register_freertos_tick_hook_for_cpu + *fill* 0x00000000420035ed 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x00000000420035f0 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x00000000420035f0 esp_deregister_freertos_idle_hook_for_cpu + .text.panic_print_char_usb_serial_jtag + 0x0000000042003630 0x6b esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x000000004200369b 0x1 + .text.panic_print_char + 0x000000004200369c 0xb esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe (size before relaxing) + 0x000000004200369c panic_print_char + *fill* 0x00000000420036a7 0x1 + .text.panic_print_str + 0x00000000420036a8 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x00000000420036a8 panic_print_str + *fill* 0x00000000420036c2 0x2 + .text.print_abort_details + 0x00000000420036c4 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x00000000420036d1 0x3 + .text.panic_print_hex + 0x00000000420036d4 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x00000000420036d4 panic_print_hex + *fill* 0x0000000042003700 0x0 + .text.panic_print_dec + 0x0000000042003700 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x0000000042003700 panic_print_dec + *fill* 0x000000004200373c 0x0 + .text.esp_panic_handler_reconfigure_wdts + 0x000000004200373c 0x6a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000004200373c esp_panic_handler_reconfigure_wdts + *fill* 0x00000000420037a6 0x2 + .text.esp_panic_handler + 0x00000000420037a8 0x1e1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x217 (size before relaxing) + 0x00000000420037a8 esp_panic_handler + *fill* 0x0000000042003989 0x3 + .text.brownout_hal_config + 0x000000004200398c 0xe6 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x000000004200398c brownout_hal_config + *fill* 0x0000000042003a72 0x2 + .text.brownout_hal_intr_enable + 0x0000000042003a74 0x23 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x0000000042003a74 brownout_hal_intr_enable + *fill* 0x0000000042003a97 0x1 + .text.heap_caps_get_free_size + 0x0000000042003a98 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042003a98 heap_caps_get_free_size + *fill* 0x0000000042003ac5 0x3 + .text.heap_caps_get_info + 0x0000000042003ac8 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042003ac8 heap_caps_get_info + *fill* 0x0000000042003b3b 0x1 + .text.heap_caps_get_largest_free_block + 0x0000000042003b3c 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042003b3c heap_caps_get_largest_free_block + *fill* 0x0000000042003b4d 0x3 + .text.register_heap + 0x0000000042003b50 0x32 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x0000000042003b82 0x2 + .text.heap_caps_enable_nonos_stack_heaps + 0x0000000042003b84 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x0000000042003b84 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x0000000042003bb0 0x29a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2a2 (size before relaxing) + 0x0000000042003bb0 heap_caps_init + *fill* 0x0000000042003e4a 0x2 + .text.s_get_num_reserved_regions + 0x0000000042003e4c 0x13 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x0000000042003e5f 0x1 + .text.s_prepare_reserved_regions + 0x0000000042003e60 0xc0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.soc_get_available_memory_region_max_count + 0x0000000042003f20 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x0000000042003f20 soc_get_available_memory_region_max_count + *fill* 0x0000000042003f32 0x2 + .text.soc_get_available_memory_regions + 0x0000000042003f34 0xf9 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x101 (size before relaxing) + 0x0000000042003f34 soc_get_available_memory_regions + *fill* 0x000000004200402d 0x3 + .text.calc_checksum + 0x0000000042004030 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x0000000042004054 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000042004054 esp_clk_slowclk_cal_get + *fill* 0x0000000042004061 0x3 + .text.esp_rtc_get_time_us + 0x0000000042004064 0xf3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xf7 (size before relaxing) + 0x0000000042004064 esp_rtc_get_time_us + *fill* 0x0000000042004157 0x1 + .text.esp_clk_slowclk_cal_set + 0x0000000042004158 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x0000000042004158 esp_clk_slowclk_cal_set + *fill* 0x0000000042004168 0x0 + .text.insert_vector_desc + 0x0000000042004168 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x00000000420041b8 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x00000000420041dd 0x3 + .text.get_desc_for_int + 0x00000000420041e0 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x76 (size before relaxing) + *fill* 0x0000000042004252 0x2 + .text.find_desc_for_source + 0x0000000042004254 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x00000000420042c0 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc8 (size before relaxing) + .text.get_available_int + 0x0000000042004384 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x150 (size before relaxing) + .text.esp_intr_enable_source + 0x00000000420044c4 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000420044c4 esp_intr_enable_source + *fill* 0x00000000420044d7 0x1 + .text.esp_intr_disable_source + 0x00000000420044d8 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000420044d8 esp_intr_disable_source + *fill* 0x00000000420044eb 0x1 + .text.esp_intr_alloc_intrstatus + 0x00000000420044ec 0x2ed esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x2f5 (size before relaxing) + 0x00000000420044ec esp_intr_alloc_intrstatus + *fill* 0x00000000420047d9 0x3 + .text.esp_intr_alloc + 0x00000000420047dc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x00000000420047dc esp_intr_alloc + .text.esp_intr_free + 0x00000000420047f4 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000420047f4 esp_intr_free + *fill* 0x000000004200490a 0x2 + .text.esp_intr_free_cb + 0x000000004200490c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042004916 0x2 + .text.periph_ll_get_clk_en_mask + 0x0000000042004918 0x282 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000042004b9a 0x2 + .text.periph_ll_get_rst_en_mask + 0x0000000042004b9c 0x23a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000042004dd6 0x2 + .text.periph_ll_get_clk_en_reg + 0x0000000042004dd8 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000042004e41 0x3 + .text.periph_ll_get_rst_en_reg + 0x0000000042004e44 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x0000000042004ea9 0x3 + .text.periph_module_enable + 0x0000000042004eac 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xcb (size before relaxing) + 0x0000000042004eac periph_module_enable + *fill* 0x0000000042004f63 0x1 + .text.periph_module_disable + 0x0000000042004f64 0xaf esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xbb (size before relaxing) + 0x0000000042004f64 periph_module_disable + *fill* 0x0000000042005013 0x1 + .text.periph_module_reset + 0x0000000042005014 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x97 (size before relaxing) + 0x0000000042005014 periph_module_reset + *fill* 0x00000000420050a7 0x1 + .text.wifi_module_enable + 0x00000000420050a8 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x00000000420050a8 wifi_module_enable + *fill* 0x000000004200510b 0x1 + .text.wifi_module_disable + 0x000000004200510c 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x000000004200510c wifi_module_disable + *fill* 0x000000004200516f 0x1 + .text.s_rtc_isr_noniram_hook + 0x0000000042005170 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x000000004200517f 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x0000000042005180 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_ensure_installed + 0x0000000042005194 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000420051ef 0x1 + .text.rtc_isr_register + 0x00000000420051f0 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x00000000420051f0 rtc_isr_register + *fill* 0x000000004200524e 0x2 + .text.esp_deep_sleep_wakeup_io_reset + 0x0000000042005250 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x0000000042005250 esp_deep_sleep_wakeup_io_reset + *fill* 0x00000000420052d6 0x2 + .text.esp_chip_info + 0x00000000420052d8 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x00000000420052d8 esp_chip_info + *fill* 0x000000004200531a 0x2 + .text.memprot_ll_prepare_iram0_split_line_regval + 0x000000004200531c 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.memprot_ll_prepare_dram0_split_line_regval + 0x00000000420053a8 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_cpuid_valid + 0x0000000042005438 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x0000000042005461 0x3 + .text.esp_memprot_iram0_get_def_split_addr + 0x0000000042005464 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_memprot_dram0_get_def_split_addr + 0x000000004200546c 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x0000000042005479 0x3 + .text.esp_memprot_rtcfast_get_min_split_addr + 0x000000004200547c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .text.esp_mprot_set_intr_matrix + 0x0000000042005484 0xba esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xc2 (size before relaxing) + *fill* 0x000000004200553e 0x2 + .text.esp_mprot_set_split_addr + 0x0000000042005540 0x453 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x45b (size before relaxing) + 0x0000000042005540 esp_mprot_set_split_addr + *fill* 0x0000000042005993 0x1 + .text.esp_mprot_get_default_main_split_addr + 0x0000000042005994 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x45 (size before relaxing) + 0x0000000042005994 esp_mprot_get_default_main_split_addr + *fill* 0x00000000420059d5 0x3 + .text.esp_mprot_set_split_addr_lock + 0x00000000420059d8 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x66 (size before relaxing) + 0x00000000420059d8 esp_mprot_set_split_addr_lock + *fill* 0x0000000042005a3a 0x2 + .text.esp_mprot_get_split_addr_lock + 0x0000000042005a3c 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000042005a3c esp_mprot_get_split_addr_lock + .text.esp_mprot_set_pms_lock + 0x0000000042005ac8 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000042005ac8 esp_mprot_set_pms_lock + *fill* 0x0000000042005b3a 0x2 + .text.esp_mprot_get_pms_lock + 0x0000000042005b3c 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000042005b3c esp_mprot_get_pms_lock + *fill* 0x0000000042005bde 0x2 + .text.esp_mprot_set_pms_area + 0x0000000042005be0 0x3aa esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000042005be0 esp_mprot_set_pms_area + *fill* 0x0000000042005f8a 0x2 + .text.esp_mprot_get_pms_area + 0x0000000042005f8c 0x206 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x20a (size before relaxing) + 0x0000000042005f8c esp_mprot_get_pms_area + *fill* 0x0000000042006192 0x2 + .text.esp_mprot_set_monitor_lock + 0x0000000042006194 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xb4 (size before relaxing) + 0x0000000042006194 esp_mprot_set_monitor_lock + .text.esp_mprot_get_monitor_lock + 0x0000000042006244 0xfc esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x104 (size before relaxing) + 0x0000000042006244 esp_mprot_get_monitor_lock + .text.esp_mprot_set_monitor_en + 0x0000000042006340 0x178 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x0000000042006340 esp_mprot_set_monitor_en + .text.esp_mprot_get_monitor_en + 0x00000000420064b8 0xec esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x00000000420064b8 esp_mprot_get_monitor_en + .text.esp_mprot_set_prot + 0x00000000420065a4 0x81e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x8ba (size before relaxing) + 0x00000000420065a4 esp_mprot_set_prot + *fill* 0x0000000042006dc2 0x2 + .text.esp_mprot_ll_err_to_esp_err + 0x0000000042006dc4 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + 0x0000000042006dc4 esp_mprot_ll_err_to_esp_err + *fill* 0x0000000042006e0a 0x2 + .text.esp_newlib_locks_init + 0x0000000042006e0c 0x5a esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000042006e0c esp_newlib_locks_init + *fill* 0x0000000042006e66 0x2 + .text.raise_r_stub + 0x0000000042006e68 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x0000000042006e77 0x1 + .text.esp_newlib_init + 0x0000000042006e78 0x36 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x0000000042006e78 esp_newlib_init + 0x0000000042006e78 esp_setup_newlib_syscalls + *fill* 0x0000000042006eae 0x2 + .text.syscall_not_implemented_aborts + 0x0000000042006eb0 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042006eb0 _exit + 0x0000000042006eb0 _sbrk_r + 0x0000000042006eb0 _raise_r + 0x0000000042006eb0 raise + *fill* 0x0000000042006eb9 0x3 + .text.adjust_boot_time + 0x0000000042006ebc 0x13e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x142 (size before relaxing) + *fill* 0x0000000042006ffa 0x2 + .text.get_adjusted_boot_time + 0x0000000042006ffc 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004200701a 0x2 + .text.adjtime_corr_stop + 0x000000004200701c 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x34 (size before relaxing) + .text.settimeofday + 0x000000004200704c 0x49 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x54 (size before relaxing) + 0x000000004200704c settimeofday + *fill* 0x0000000042007095 0x3 + .text.usleep 0x0000000042007098 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000042007098 usleep + .text.sleep 0x00000000420070c4 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x00000000420070c4 sleep + *fill* 0x00000000420070d4 0x0 + .text.esp_newlib_time_init + 0x00000000420070d4 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xb (size before relaxing) + 0x00000000420070d4 esp_newlib_time_init + *fill* 0x00000000420070dc 0x0 + .text.esp_time_impl_get_time_since_boot + 0x00000000420070dc 0x1f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x00000000420070dc esp_time_impl_get_time_since_boot + *fill* 0x00000000420070fb 0x1 + .text.esp_time_impl_set_boot_time + 0x00000000420070fc 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x00000000420070fc esp_time_impl_set_boot_time + *fill* 0x0000000042007123 0x1 + .text.esp_time_impl_get_boot_time + 0x0000000042007124 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042007124 esp_time_impl_get_boot_time + *fill* 0x000000004200714b 0x1 + .text.esp_set_time_from_rtc + 0x000000004200714c 0x2b esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x2f (size before relaxing) + 0x000000004200714c esp_set_time_from_rtc + *fill* 0x0000000042007177 0x1 + .text.esp_sync_timekeeping_timers + 0x0000000042007178 0x62 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x6e (size before relaxing) + 0x0000000042007178 esp_sync_timekeeping_timers + *fill* 0x00000000420071da 0x2 + .text.esp_time_impl_init + 0x00000000420071dc 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xb (size before relaxing) + 0x00000000420071dc esp_time_impl_init + *fill* 0x00000000420071e4 0x0 + .text.esp_err_to_name + 0x00000000420071e4 0x2b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x00000000420071e4 esp_err_to_name + *fill* 0x000000004200720f 0x1 + .text.timer_process_alarm + 0x0000000042007210 0x12e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000004200733e 0x2 + .text.timer_task + 0x0000000042007340 0x17 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1b (size before relaxing) + *fill* 0x0000000042007357 0x1 + .text.esp_timer_create + 0x0000000042007358 0x85 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x0000000042007358 esp_timer_create + *fill* 0x00000000420073dd 0x3 + .text.esp_timer_delete + 0x00000000420073e0 0x65 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x00000000420073e0 esp_timer_delete + *fill* 0x0000000042007445 0x3 + .text.esp_timer_early_init + 0x0000000042007448 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x13 (size before relaxing) + 0x0000000042007448 esp_timer_early_init + *fill* 0x0000000042007457 0x1 + .text.esp_timer_init + 0x0000000042007458 0x5a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x5e (size before relaxing) + 0x0000000042007458 esp_timer_init + *fill* 0x00000000420074b2 0x2 + .text.__esp_system_init_fn_esp_timer_startup_init + 0x00000000420074b4 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000420074be 0x2 + .text.esp_timer_impl_init_system_time + 0x00000000420074c0 0x66 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x6a (size before relaxing) + 0x00000000420074c0 esp_timer_impl_init_system_time + *fill* 0x0000000042007526 0x2 + .text.esp_timer_impl_early_init + 0x0000000042007528 0x4e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x52 (size before relaxing) + 0x0000000042007528 esp_timer_impl_early_init + *fill* 0x0000000042007576 0x2 + .text.esp_timer_impl_init + 0x0000000042007578 0xb6 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0xbe (size before relaxing) + 0x0000000042007578 esp_timer_impl_init + *fill* 0x000000004200762e 0x2 + .text.phy_set_pwdet_power + 0x0000000042007630 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x0000000042007630 phy_set_pwdet_power + .text.phy_set_tsens_power + 0x0000000042007658 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x0000000042007658 phy_set_tsens_power + .text.phy_get_tsens_value + 0x0000000042007680 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x10 (size before relaxing) + 0x0000000042007680 phy_get_tsens_value + .text.translate_path + 0x000000004200768c 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000420076ca 0x2 + .text.esp_vfs_register_common + 0x00000000420076cc 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420076cc esp_vfs_register_common + *fill* 0x00000000420077c2 0x2 + .text.esp_vfs_register + 0x00000000420077c4 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x00000000420077c4 esp_vfs_register + .text.esp_vfs_register_fd_range + 0x00000000420077e0 0x10e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420077e0 esp_vfs_register_fd_range + *fill* 0x00000000420078ee 0x2 + .text.get_vfs_for_index + 0x00000000420078f0 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420078f0 get_vfs_for_index + *fill* 0x0000000042007912 0x2 + .text.get_vfs_for_fd + 0x0000000042007914 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x0000000042007939 0x3 + .text.get_vfs_for_path + 0x000000004200793c 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x000000004200793c get_vfs_for_path + .text.esp_vfs_open + 0x00000000420079ac 0xe2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420079ac _open_r + 0x00000000420079ac esp_vfs_open + *fill* 0x0000000042007a8e 0x2 + .text.esp_vfs_write + 0x0000000042007a90 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x0000000042007a90 _write_r + 0x0000000042007a90 esp_vfs_write + *fill* 0x0000000042007afd 0x3 + .text.esp_vfs_lseek + 0x0000000042007b00 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x0000000042007b00 esp_vfs_lseek + 0x0000000042007b00 _lseek_r + *fill* 0x0000000042007b6d 0x3 + .text.esp_vfs_read + 0x0000000042007b70 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x0000000042007b70 _read_r + 0x0000000042007b70 esp_vfs_read + *fill* 0x0000000042007bdd 0x3 + .text.esp_vfs_close + 0x0000000042007be0 0xbb esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xbf (size before relaxing) + 0x0000000042007be0 esp_vfs_close + 0x0000000042007be0 _close_r + *fill* 0x0000000042007c9b 0x1 + .text.esp_vfs_fstat + 0x0000000042007c9c 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x6c (size before relaxing) + 0x0000000042007c9c _fstat_r + 0x0000000042007c9c esp_vfs_fstat + .text.esp_vfs_stat + 0x0000000042007d04 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x0000000042007d04 _stat_r + 0x0000000042007d04 esp_vfs_stat + *fill* 0x0000000042007d4b 0x1 + .text.esp_vfs_link + 0x0000000042007d4c 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x0000000042007d4c esp_vfs_link + 0x0000000042007d4c _link_r + .text.esp_vfs_unlink + 0x0000000042007db4 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x48 (size before relaxing) + 0x0000000042007db4 esp_vfs_unlink + 0x0000000042007db4 _unlink_r + .text.esp_vfs_rename + 0x0000000042007df8 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x0000000042007df8 esp_vfs_rename + 0x0000000042007df8 _rename_r + .text.console_open + 0x0000000042007e60 0x1e esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007e60 console_open + *fill* 0x0000000042007e7e 0x2 + .text.console_write + 0x0000000042007e80 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007e80 console_write + .text.console_fstat + 0x0000000042007ea0 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x1c (size before relaxing) + 0x0000000042007ea0 console_fstat + .text.console_close + 0x0000000042007eb8 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007eb8 console_close + .text.console_read + 0x0000000042007ed4 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007ed4 console_read + .text.console_fcntl + 0x0000000042007ef4 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007ef4 console_fcntl + *fill* 0x0000000042007f15 0x3 + .text.console_fsync + 0x0000000042007f18 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007f18 console_fsync + *fill* 0x0000000042007f35 0x3 + .text.console_access + 0x0000000042007f38 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007f38 console_access + *fill* 0x0000000042007f55 0x3 + .text.console_end_select + 0x0000000042007f58 0x2d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007f58 console_end_select + *fill* 0x0000000042007f85 0x3 + .text.console_tcsetattr + 0x0000000042007f88 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007f88 console_tcsetattr + *fill* 0x0000000042007fa9 0x3 + .text.console_tcgetattr + 0x0000000042007fac 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x0000000042007fac console_tcgetattr + .text.console_tcdrain + 0x0000000042007fc8 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042007fc8 console_tcdrain + *fill* 0x0000000042007fe5 0x3 + .text.console_tcflush + 0x0000000042007fe8 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x0000000042007fe8 console_tcflush + .text.console_start_select + 0x0000000042008004 0x41 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x0000000042008045 0x3 + .text.esp_vfs_dev_console_register + 0x0000000042008048 0x15 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x0000000042008048 esp_vfs_dev_console_register + *fill* 0x000000004200805d 0x3 + .text.esp_vfs_console_register + 0x0000000042008060 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x28 (size before relaxing) + 0x0000000042008060 esp_vfs_console_register + .text.usb_serial_jtag_open + 0x0000000042008080 0x18 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_rx_char + 0x0000000042008098 0x31 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x00000000420080c9 0x3 + .text.usb_serial_jtag_read_char + 0x00000000420080cc 0x22 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x00000000420080ee 0x2 + .text.usb_serial_jtag_tx_char + 0x00000000420080f0 0x74 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_tcflush + 0x0000000042008164 0x11 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x0000000042008175 0x3 + .text.usb_serial_jtag_fcntl + 0x0000000042008178 0x41 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x00000000420081b9 0x3 + .text.usb_serial_jtag_tcgetattr + 0x00000000420081bc 0x48 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_fstat + 0x0000000042008204 0x19 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x000000004200821d 0x3 + .text.usb_serial_jtag_fsync + 0x0000000042008220 0x74 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_tcdrain + 0x0000000042008294 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x10 (size before relaxing) + .text.usb_serial_jtag_tcsetattr + 0x00000000420082a0 0x63 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x67 (size before relaxing) + *fill* 0x0000000042008303 0x1 + .text.usb_serial_jtag_write + 0x0000000042008304 0x68 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_return_char + 0x000000004200836c 0x24 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .text.usb_serial_jtag_read + 0x0000000042008390 0x86 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x8e (size before relaxing) + *fill* 0x0000000042008416 0x2 + .text.esp_vfs_usb_serial_jtag_get_vfs + 0x0000000042008418 0x8 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x0000000042008418 esp_vfs_usb_serial_jtag_get_vfs + .text.event_handler + 0x0000000042008420 0xbe esp-idf/main/libmain.a(station_example_main.c.obj) + 0xc6 (size before relaxing) + *fill* 0x00000000420084de 0x2 + .text.wifi_init_sta + 0x00000000420084e0 0x2b6 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x2da (size before relaxing) + 0x00000000420084e0 wifi_init_sta + *fill* 0x0000000042008796 0x2 + .text.app_main + 0x0000000042008798 0x7d esp-idf/main/libmain.a(station_example_main.c.obj) + 0x91 (size before relaxing) + 0x0000000042008798 app_main + *fill* 0x0000000042008815 0x3 + .text.ModBusSlave_accept + 0x0000000042008818 0x3a esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x46 (size before relaxing) + *fill* 0x0000000042008852 0x2 + .text.ModBusSlave_poll + 0x0000000042008854 0x26 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004200887a 0x2 + .text.ModBusSlave_recv + 0x000000004200887c 0x118 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x138 (size before relaxing) + .text.ModBusTCPSlave_init + 0x0000000042008994 0x3b esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x47 (size before relaxing) + 0x0000000042008994 ModBusTCPSlave_init + *fill* 0x00000000420089cf 0x1 + .text.crc16 0x00000000420089d0 0x40 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x00000000420089d0 crc16 + .text.ModbusSlaveProcess + 0x0000000042008a10 0x5f8 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x600 (size before relaxing) + 0x0000000042008a10 ModbusSlaveProcess + .text.pid_loop_cb + 0x0000000042009008 0xb4 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0xb8 (size before relaxing) + .text.bdc_motor_init + 0x00000000420090bc 0x53 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x57 (size before relaxing) + 0x00000000420090bc bdc_motor_init + *fill* 0x000000004200910f 0x1 + .text.bdc_encoder_init + 0x0000000042009110 0x1e8 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x214 (size before relaxing) + 0x0000000042009110 bdc_encoder_init + .text.bdc_pid_init + 0x00000000420092f8 0x6e esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x72 (size before relaxing) + 0x00000000420092f8 bdc_pid_init + *fill* 0x0000000042009366 0x2 + .text.bdc_ctrl_timer_init + 0x0000000042009368 0x57 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x5b (size before relaxing) + 0x0000000042009368 bdc_ctrl_timer_init + *fill* 0x00000000420093bf 0x1 + .text.bdc_motor_init_all + 0x00000000420093c0 0xc2 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0xd2 (size before relaxing) + 0x00000000420093c0 bdc_motor_init_all + *fill* 0x0000000042009482 0x2 + .text.pid_compute + 0x0000000042009484 0x4e esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x0000000042009484 pid_compute + *fill* 0x00000000420094d2 0x2 + .text.pid_update_parameters + 0x00000000420094d4 0xa5 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x00000000420094d4 pid_update_parameters + *fill* 0x0000000042009579 0x3 + .text.pid_new_control_block + 0x000000004200957c 0xb2 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x000000004200957c pid_new_control_block + *fill* 0x000000004200962e 0x2 + .text.bdc_motor_enable + 0x0000000042009630 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x0000000042009630 bdc_motor_enable + .text.bdc_motor_set_speed + 0x0000000042009668 0x39 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x0000000042009668 bdc_motor_set_speed + *fill* 0x00000000420096a1 0x3 + .text.bdc_motor_forward + 0x00000000420096a4 0x38 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x00000000420096a4 bdc_motor_forward + .text.bdc_motor_mcpwm_set_speed + 0x00000000420096dc 0x63 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x67 (size before relaxing) + *fill* 0x000000004200973f 0x1 + .text.bdc_motor_mcpwm_del + 0x0000000042009740 0x30 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x40 (size before relaxing) + .text.bdc_motor_mcpwm_brake + 0x0000000042009770 0x67 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x6b (size before relaxing) + *fill* 0x00000000420097d7 0x1 + .text.bdc_motor_mcpwm_coast + 0x00000000420097d8 0x67 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x6b (size before relaxing) + *fill* 0x000000004200983f 0x1 + .text.bdc_motor_mcpwm_reverse + 0x0000000042009840 0x67 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x6b (size before relaxing) + *fill* 0x00000000420098a7 0x1 + .text.bdc_motor_mcpwm_forward + 0x00000000420098a8 0x67 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x6b (size before relaxing) + *fill* 0x000000004200990f 0x1 + .text.bdc_motor_mcpwm_disable + 0x0000000042009910 0x63 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x67 (size before relaxing) + *fill* 0x0000000042009973 0x1 + .text.bdc_motor_mcpwm_enable + 0x0000000042009974 0x5f esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x63 (size before relaxing) + *fill* 0x00000000420099d3 0x1 + .text.bdc_motor_new_mcpwm_device + 0x00000000420099d4 0x36c esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x3a0 (size before relaxing) + 0x00000000420099d4 bdc_motor_new_mcpwm_device + .text.xt_int_has_handler + 0x0000000042009d40 0x1d esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000042009d40 xt_int_has_handler + *fill* 0x0000000042009d5d 0x3 + .text.xt_set_interrupt_handler + 0x0000000042009d60 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000042009d60 xt_set_interrupt_handler + *fill* 0x0000000042009dae 0x2 + .text.esp_efuse_read_field_blob + 0x0000000042009db0 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x65 (size before relaxing) + 0x0000000042009db0 esp_efuse_read_field_blob + *fill* 0x0000000042009e11 0x3 + .text.esp_efuse_check_errors + 0x0000000042009e14 0xa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xd (size before relaxing) + 0x0000000042009e14 esp_efuse_check_errors + *fill* 0x0000000042009e1e 0x2 + .text.esp_efuse_utility_process + 0x0000000042009e20 0x154 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x160 (size before relaxing) + 0x0000000042009e20 esp_efuse_utility_process + .text.esp_efuse_utility_read_reg + 0x0000000042009f74 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000042009f74 esp_efuse_utility_read_reg + *fill* 0x0000000042009fca 0x2 + .text.esp_efuse_utility_fill_buff + 0x0000000042009fcc 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xbe (size before relaxing) + 0x0000000042009fcc esp_efuse_utility_fill_buff + *fill* 0x000000004200a086 0x2 + .text.esp_efuse_utility_count_once + 0x000000004200a088 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x32 (size before relaxing) + 0x000000004200a088 esp_efuse_utility_count_once + *fill* 0x000000004200a0b6 0x2 + .text.gpio_input_enable + 0x000000004200a0b8 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x000000004200a134 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x000000004200a1b0 0xb1 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000004200a261 0x3 + .text.gpio_od_enable + 0x000000004200a264 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_disable + 0x000000004200a2e4 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable_on_core + 0x000000004200a364 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000004200a37a 0x2 + .text.gpio_output_enable + 0x000000004200a37c 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x000000004200a42c 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a42c gpio_pullup_en + *fill* 0x000000004200a4c2 0x2 + .text.gpio_pullup_dis + 0x000000004200a4c4 0xbe esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a4c4 gpio_pullup_dis + *fill* 0x000000004200a582 0x2 + .text.gpio_pulldown_en + 0x000000004200a584 0x99 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a584 gpio_pulldown_en + *fill* 0x000000004200a61d 0x3 + .text.gpio_pulldown_dis + 0x000000004200a620 0x99 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a620 gpio_pulldown_dis + *fill* 0x000000004200a6b9 0x3 + .text.gpio_set_intr_type + 0x000000004200a6bc 0x12d esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a6bc gpio_set_intr_type + *fill* 0x000000004200a7e9 0x3 + .text.gpio_intr_enable + 0x000000004200a7ec 0x9a esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a7ec gpio_intr_enable + *fill* 0x000000004200a886 0x2 + .text.gpio_intr_disable + 0x000000004200a888 0x71 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x000000004200a888 gpio_intr_disable + *fill* 0x000000004200a8f9 0x3 + .text.gpio_config + 0x000000004200a8fc 0x1b8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1d8 (size before relaxing) + 0x000000004200a8fc gpio_config + .text.rtc_gpio_is_valid_gpio + 0x000000004200aab4 0x21 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x000000004200aab4 rtc_gpio_is_valid_gpio + *fill* 0x000000004200aad5 0x3 + .text.rtc_io_number_get + 0x000000004200aad8 0xd esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x000000004200aad8 rtc_io_number_get + *fill* 0x000000004200aae5 0x3 + .text.rtc_gpio_deinit + 0x000000004200aae8 0x8c esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x90 (size before relaxing) + 0x000000004200aae8 rtc_gpio_deinit + .text.mcpwm_comparator_register_to_operator + 0x000000004200ab74 0x72 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000004200abe6 0x2 + .text.mcpwm_comparator_unregister_from_operator + 0x000000004200abe8 0x27 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000004200ac0f 0x1 + .text.mcpwm_comparator_destory + 0x000000004200ac10 0x4a esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004200ac5a 0x2 + .text.mcpwm_new_comparator + 0x000000004200ac5c 0x1ba esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x1bd (size before relaxing) + 0x000000004200ac5c mcpwm_new_comparator + *fill* 0x000000004200ae16 0x2 + .text.mcpwm_del_comparator + 0x000000004200ae18 0xa4 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0xa8 (size before relaxing) + 0x000000004200ae18 mcpwm_del_comparator + .text.mcpwm_comparator_set_compare_value + 0x000000004200aebc 0x116 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x000000004200aebc mcpwm_comparator_set_compare_value + *fill* 0x000000004200afd2 0x2 + .text.mcpwm_generator_register_to_operator + 0x000000004200afd4 0x72 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000004200b046 0x2 + .text.mcpwm_generator_unregister_from_operator + 0x000000004200b048 0x27 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000004200b06f 0x1 + .text.mcpwm_generator_destory + 0x000000004200b070 0x18 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x1c (size before relaxing) + .text.mcpwm_new_generator + 0x000000004200b088 0x172 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x176 (size before relaxing) + 0x000000004200b088 mcpwm_new_generator + *fill* 0x000000004200b1fa 0x2 + .text.mcpwm_del_generator + 0x000000004200b1fc 0x5c esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x000000004200b1fc mcpwm_del_generator + .text.mcpwm_generator_set_force_level + 0x000000004200b258 0x211 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x000000004200b258 mcpwm_generator_set_force_level + *fill* 0x000000004200b469 0x3 + .text.mcpwm_generator_set_actions_on_timer_event + 0x000000004200b46c 0x24d esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x000000004200b46c mcpwm_generator_set_actions_on_timer_event + *fill* 0x000000004200b6b9 0x3 + .text.mcpwm_generator_set_actions_on_compare_event + 0x000000004200b6bc 0x15b esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x000000004200b6bc mcpwm_generator_set_actions_on_compare_event + *fill* 0x000000004200b817 0x1 + .text.mcpwm_operator_register_to_group + 0x000000004200b818 0xae esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0xb2 (size before relaxing) + *fill* 0x000000004200b8c6 0x2 + .text.mcpwm_operator_unregister_from_group + 0x000000004200b8c8 0x2b esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000004200b8f3 0x1 + .text.mcpwm_operator_destory + 0x000000004200b8f4 0x4a esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004200b93e 0x2 + .text.mcpwm_new_operator + 0x000000004200b940 0x43a esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x43e (size before relaxing) + 0x000000004200b940 mcpwm_new_operator + *fill* 0x000000004200bd7a 0x2 + .text.mcpwm_del_operator + 0x000000004200bd7c 0x148 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x14c (size before relaxing) + 0x000000004200bd7c mcpwm_del_operator + .text.mcpwm_operator_connect_timer + 0x000000004200bec4 0xc9 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x000000004200bec4 mcpwm_operator_connect_timer + *fill* 0x000000004200bf8d 0x3 + .text.mcpwm_timer_register_to_group + 0x000000004200bf90 0xae esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0xb2 (size before relaxing) + *fill* 0x000000004200c03e 0x2 + .text.mcpwm_timer_unregister_from_group + 0x000000004200c040 0x2b esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000004200c06b 0x1 + .text.mcpwm_timer_destory + 0x000000004200c06c 0x4a esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004200c0b6 0x2 + .text.mcpwm_new_timer + 0x000000004200c0b8 0x3c2 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x3ce (size before relaxing) + 0x000000004200c0b8 mcpwm_new_timer + *fill* 0x000000004200c47a 0x2 + .text.mcpwm_del_timer + 0x000000004200c47c 0x108 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x000000004200c47c mcpwm_del_timer + .text.mcpwm_timer_enable + 0x000000004200c584 0xce esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x000000004200c584 mcpwm_timer_enable + *fill* 0x000000004200c652 0x2 + .text.mcpwm_timer_disable + 0x000000004200c654 0xcc esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x000000004200c654 mcpwm_timer_disable + .text.mcpwm_timer_start_stop + 0x000000004200c720 0x155 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x000000004200c720 mcpwm_timer_start_stop + *fill* 0x000000004200c875 0x3 + .text.pcnt_acquire_group_handle + 0x000000004200c878 0x75 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x7d (size before relaxing) + *fill* 0x000000004200c8ed 0x3 + .text.pcnt_release_group_handle + 0x000000004200c8f0 0x70 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .text.pcnt_register_to_group + 0x000000004200c960 0xbe esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000004200ca1e 0x2 + .text.pcnt_unregister_from_group + 0x000000004200ca20 0x2b esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000004200ca4b 0x1 + .text.pcnt_destory + 0x000000004200ca4c 0x82 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004200cace 0x2 + .text.pcnt_new_unit + 0x000000004200cad0 0x2aa esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x2b2 (size before relaxing) + 0x000000004200cad0 pcnt_new_unit + *fill* 0x000000004200cd7a 0x2 + .text.pcnt_unit_set_glitch_filter + 0x000000004200cd7c 0x11c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200cd7c pcnt_unit_set_glitch_filter + .text.pcnt_unit_enable + 0x000000004200ce98 0xdb esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200ce98 pcnt_unit_enable + *fill* 0x000000004200cf73 0x1 + .text.pcnt_unit_start + 0x000000004200cf74 0xc7 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200cf74 pcnt_unit_start + *fill* 0x000000004200d03b 0x1 + .text.pcnt_unit_clear_count + 0x000000004200d03c 0xe8 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200d03c pcnt_unit_clear_count + .text.pcnt_unit_get_count + 0x000000004200d124 0x9b esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200d124 pcnt_unit_get_count + *fill* 0x000000004200d1bf 0x1 + .text.pcnt_unit_register_event_callbacks + 0x000000004200d1c0 0x122 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x126 (size before relaxing) + 0x000000004200d1c0 pcnt_unit_register_event_callbacks + *fill* 0x000000004200d2e2 0x2 + .text.pcnt_unit_add_watch_point + 0x000000004200d2e4 0x206 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200d2e4 pcnt_unit_add_watch_point + *fill* 0x000000004200d4ea 0x2 + .text.pcnt_new_channel + 0x000000004200d4ec 0x2a5 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x2ad (size before relaxing) + 0x000000004200d4ec pcnt_new_channel + *fill* 0x000000004200d791 0x3 + .text.pcnt_channel_set_edge_action + 0x000000004200d794 0xc5 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200d794 pcnt_channel_set_edge_action + *fill* 0x000000004200d859 0x3 + .text.pcnt_channel_set_level_action + 0x000000004200d85c 0xc2 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x000000004200d85c pcnt_channel_set_level_action + *fill* 0x000000004200d91e 0x2 + .text.mcpwm_acquire_group_handle + 0x000000004200d920 0x91 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x99 (size before relaxing) + 0x000000004200d920 mcpwm_acquire_group_handle + *fill* 0x000000004200d9b1 0x3 + .text.mcpwm_release_group_handle + 0x000000004200d9b4 0x4b esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x53 (size before relaxing) + 0x000000004200d9b4 mcpwm_release_group_handle + *fill* 0x000000004200d9ff 0x1 + .text.mcpwm_select_periph_clock + 0x000000004200da00 0xca esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x000000004200da00 mcpwm_select_periph_clock + *fill* 0x000000004200daca 0x2 + .text.bootloader_init_mem + 0x000000004200dacc 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x000000004200dacc bootloader_init_mem + *fill* 0x000000004200dad4 0x0 + .text.bootloader_flash_update_id + 0x000000004200dad4 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x000000004200dad4 bootloader_flash_update_id + *fill* 0x000000004200dae6 0x2 + .text.spi_flash_init_lock + 0x000000004200dae8 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000004200dae8 spi_flash_init_lock + *fill* 0x000000004200db0e 0x2 + .text.spi_flash_op_lock + 0x000000004200db10 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000004200db10 spi_flash_op_lock + *fill* 0x000000004200db22 0x2 + .text.spi_flash_op_unlock + 0x000000004200db24 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000004200db24 spi_flash_op_unlock + .text.spi_flash_cache2phys + 0x000000004200db34 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x000000004200db34 spi_flash_cache2phys + .text.check_chip_pointer_default + 0x000000004200dbd4 0x29 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000004200dbfd 0x3 + .text.esp_flash_read_chip_id + 0x000000004200dc00 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004200dc00 esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x000000004200dc14 0x122 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000004200dc14 esp_flash_init_default_chip + *fill* 0x000000004200dd36 0x2 + .text.esp_flash_app_init + 0x000000004200dd38 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x000000004200dd38 esp_flash_app_init + *fill* 0x000000004200dd53 0x1 + .text.esp_flash_app_enable_os_functions + 0x000000004200dd54 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x000000004200dd54 esp_flash_app_enable_os_functions + *fill* 0x000000004200dd76 0x2 + .text.esp_crosscore_int_init + 0x000000004200dd78 0x72 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x000000004200dd78 esp_crosscore_int_init + *fill* 0x000000004200ddea 0x2 + .text.esp_ipc_call_and_wait + 0x000000004200ddec 0xc9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000004200deb5 0x3 + .text.esp_ipc_init + 0x000000004200deb8 0xb0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xb4 (size before relaxing) + .text.esp_ipc_call + 0x000000004200df68 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x000000004200df68 esp_ipc_call + *fill* 0x000000004200df7d 0x3 + .text.esp_ipc_call_blocking + 0x000000004200df80 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x000000004200df80 esp_ipc_call_blocking + *fill* 0x000000004200df95 0x3 + .text.find_entry_and_check_all_reset + 0x000000004200df98 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000004200dfce 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x000000004200dfd0 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000004200e007 0x1 + .text.task_wdt_timer_feed + 0x000000004200e008 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x000000004200e02c 0x111 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x000000004200e13d 0x3 + .text.task_wdt_timeout_abort_xtensa + 0x000000004200e140 0xb7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000004200e140 task_wdt_timeout_abort_xtensa + *fill* 0x000000004200e1f7 0x1 + .text.task_wdt_timeout_handling + 0x000000004200e1f8 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc6 (size before relaxing) + *fill* 0x000000004200e2ba 0x2 + .text.task_wdt_isr + 0x000000004200e2bc 0x178 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x17c (size before relaxing) + .text.esp_task_wdt_add + 0x000000004200e434 0x4d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000004200e434 esp_task_wdt_add + *fill* 0x000000004200e481 0x3 + .text.subscribe_idle + 0x000000004200e484 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x6e (size before relaxing) + *fill* 0x000000004200e4ee 0x2 + .text.esp_task_wdt_init + 0x000000004200e4f0 0xf0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xf8 (size before relaxing) + 0x000000004200e4f0 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x000000004200e5e0 0x9e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x000000004200e5e0 esp_task_wdt_reset + *fill* 0x000000004200e67e 0x2 + .text.idle_hook_cb + 0x000000004200e680 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004200e68a 0x2 + .text.esp_task_wdt_impl_timer_allocate + 0x000000004200e68c 0x80 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x84 (size before relaxing) + 0x000000004200e68c esp_task_wdt_impl_timer_allocate + .text.esp_task_wdt_impl_timer_feed + 0x000000004200e70c 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x000000004200e70c esp_task_wdt_impl_timer_feed + *fill* 0x000000004200e735 0x3 + .text.esp_task_wdt_impl_timeout_triggered + 0x000000004200e738 0x1f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x000000004200e738 esp_task_wdt_impl_timeout_triggered + *fill* 0x000000004200e757 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x000000004200e758 0x2f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x000000004200e758 esp_task_wdt_impl_timer_restart + *fill* 0x000000004200e787 0x1 + .text.gpio_hal_intr_enable_on_core + 0x000000004200e788 0x62 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x000000004200e788 gpio_hal_intr_enable_on_core + *fill* 0x000000004200e7ea 0x2 + .text.gpio_hal_intr_disable + 0x000000004200e7ec 0x5b esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x000000004200e7ec gpio_hal_intr_disable + *fill* 0x000000004200e847 0x1 + .text.get_flash_clock_divider + 0x000000004200e848 0x9a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004200e8e2 0x2 + .text.spi_flash_cal_clock + 0x000000004200e8e4 0x71 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x75 (size before relaxing) + *fill* 0x000000004200e955 0x3 + .text.spi_flash_hal_init + 0x000000004200e958 0x126 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x12a (size before relaxing) + 0x000000004200e958 spi_flash_hal_init + *fill* 0x000000004200ea7e 0x2 + .text.spi_flash_hal_supports_direct_write + 0x000000004200ea80 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x000000004200ea80 spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x000000004200ea94 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x000000004200ea94 spi_flash_hal_supports_direct_read + .text.pcnt_hal_init + 0x000000004200eaa8 0x12 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + 0x000000004200eaa8 pcnt_hal_init + *fill* 0x000000004200eaba 0x2 + .text.mcpwm_hal_init + 0x000000004200eabc 0x7c esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x000000004200eabc mcpwm_hal_init + .text.mcpwm_hal_timer_reset + 0x000000004200eb38 0x74 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x000000004200eb38 mcpwm_hal_timer_reset + .text.mcpwm_hal_generator_reset + 0x000000004200ebac 0xa9 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x000000004200ebac mcpwm_hal_generator_reset + *fill* 0x000000004200ec55 0x3 + .text.temperature_sensor_get_raw_value + 0x000000004200ec58 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x000000004200ecfa 0x2 + .text.temperature_sensor_power_acquire + 0x000000004200ecfc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x000000004200ecfc temperature_sensor_power_acquire + .text.temperature_sensor_power_release + 0x000000004200ed60 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x000000004200ed60 temperature_sensor_power_release + .text.temp_sensor_get_raw_value + 0x000000004200edec 0xf7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0xfb (size before relaxing) + 0x000000004200edec temp_sensor_get_raw_value + *fill* 0x000000004200eee3 0x1 + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x000000004200eee4 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000004200ef0d 0x3 + .text._ZL24close_handles_and_deinitPKc + 0x000000004200ef10 0x95 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x9d (size before relaxing) + *fill* 0x000000004200efa5 0x3 + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x000000004200efa8 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000004200f026 0x2 + .text.nvs_flash_init_partition + 0x000000004200f028 0x5b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x5f (size before relaxing) + 0x000000004200f028 nvs_flash_init_partition + *fill* 0x000000004200f083 0x1 + .text.nvs_flash_init + 0x000000004200f084 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x000000004200f084 nvs_flash_init + *fill* 0x000000004200f091 0x3 + .text.nvs_flash_erase_partition + 0x000000004200f094 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8e (size before relaxing) + 0x000000004200f094 nvs_flash_erase_partition + *fill* 0x000000004200f112 0x2 + .text.nvs_flash_erase + 0x000000004200f114 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x000000004200f114 nvs_flash_erase + *fill* 0x000000004200f121 0x3 + .text.nvs_open_from_partition + 0x000000004200f124 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xa6 (size before relaxing) + 0x000000004200f124 nvs_open_from_partition + *fill* 0x000000004200f1c6 0x2 + .text.nvs_open + 0x000000004200f1c8 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004200f1c8 nvs_open + *fill* 0x000000004200f1de 0x2 + .text.nvs_close + 0x000000004200f1e0 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004200f1e0 nvs_close + *fill* 0x000000004200f272 0x2 + .text.nvs_erase_key + 0x000000004200f274 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + 0x000000004200f274 nvs_erase_key + *fill* 0x000000004200f2b6 0x2 + .text.nvs_commit + 0x000000004200f2b8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + 0x000000004200f2b8 nvs_commit + *fill* 0x000000004200f2f6 0x2 + .text.nvs_set_blob + 0x000000004200f2f8 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + 0x000000004200f2f8 nvs_set_blob + *fill* 0x000000004200f33e 0x2 + .text.nvs_get_blob + 0x000000004200f340 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x000000004200f340 nvs_get_blob + .text._Z7nvs_setIaEimPKcT_ + 0x000000004200f354 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4b (size before relaxing) + *fill* 0x000000004200f397 0x1 + .text.nvs_set_i8 + 0x000000004200f398 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004200f398 nvs_set_i8 + .text._Z7nvs_setIhEimPKcT_ + 0x000000004200f3ac 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f3ea 0x2 + .text.nvs_set_u8 + 0x000000004200f3ec 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004200f3ec nvs_set_u8 + .text._Z7nvs_setItEimPKcT_ + 0x000000004200f400 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f43e 0x2 + .text.nvs_set_u16 + 0x000000004200f440 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000004200f440 nvs_set_u16 + .text._Z7nvs_setImEimPKcT_ + 0x000000004200f454 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f492 0x2 + .text.nvs_set_u32 + 0x000000004200f494 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x000000004200f494 nvs_set_u32 + .text._Z7nvs_getIaEimPKcPT_ + 0x000000004200f4a4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f4e2 0x2 + .text.nvs_get_i8 + 0x000000004200f4e4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x000000004200f4e4 nvs_get_i8 + .text._Z7nvs_getIhEimPKcPT_ + 0x000000004200f4f4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f532 0x2 + .text.nvs_get_u8 + 0x000000004200f534 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x000000004200f534 nvs_get_u8 + .text._Z7nvs_getItEimPKcPT_ + 0x000000004200f544 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f582 0x2 + .text.nvs_get_u16 + 0x000000004200f584 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x000000004200f584 nvs_get_u16 + .text._Z7nvs_getImEimPKcPT_ + 0x000000004200f594 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x46 (size before relaxing) + *fill* 0x000000004200f5d2 0x2 + .text.nvs_get_u32 + 0x000000004200f5d4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x000000004200f5d4 nvs_get_u32 + .text._ZN3nvs7Storage15clearNamespacesEv + 0x000000004200f5e4 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000004200f5e4 nvs::Storage::clearNamespaces() + .text._ZN3nvs7StorageD2Ev + 0x000000004200f618 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + 0x000000004200f618 nvs::Storage::~Storage() + 0x000000004200f618 nvs::Storage::~Storage() + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x000000004200f660 0xa8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000004200f660 nvs::Storage::populateBlobIndices(intrusive_list&) + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x000000004200f708 0x126 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x12a (size before relaxing) + 0x000000004200f708 nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) + *fill* 0x000000004200f82e 0x2 + .text._ZN3nvs7Storage4initEmm + 0x000000004200f830 0x19a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1a6 (size before relaxing) + 0x000000004200f830 nvs::Storage::init(unsigned long, unsigned long) + *fill* 0x000000004200f9ca 0x2 + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x000000004200f9cc 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000004200f9cc nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x000000004200fa14 0x21e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x22a (size before relaxing) + 0x000000004200fa14 nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) + *fill* 0x000000004200fc32 0x2 + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x000000004200fc34 0xbe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc6 (size before relaxing) + 0x000000004200fc34 nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) + *fill* 0x000000004200fcf2 0x2 + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x000000004200fcf4 0xe5 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xed (size before relaxing) + 0x000000004200fcf4 nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) + *fill* 0x000000004200fdd9 0x3 + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x000000004200fddc 0xe4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xec (size before relaxing) + 0x000000004200fddc nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x000000004200fec0 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x70 (size before relaxing) + 0x000000004200fec0 nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x000000004200ff28 0x266 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x28a (size before relaxing) + 0x000000004200ff28 nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) + *fill* 0x000000004201018e 0x2 + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x0000000042010190 0x12c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x0000000042010190 nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000420102bc 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x96 (size before relaxing) + 0x00000000420102bc nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) + *fill* 0x000000004201034a 0x2 + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x000000004201034c 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x000000004201034c nvs::Storage::eraseNamespace(unsigned char) + *fill* 0x000000004201038f 0x1 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x0000000042010390 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x68 (size before relaxing) + 0x0000000042010390 nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000420103f4 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x64 (size before relaxing) + 0x00000000420103f4 nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x0000000042010454 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042010454 nvs::NVSHandleSimple::commit() + *fill* 0x0000000042010466 0x2 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x0000000042010468 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x1d (size before relaxing) + 0x0000000042010468 nvs::NVSHandleSimple::~NVSHandleSimple() + 0x0000000042010468 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x0000000042010481 0x3 + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x0000000042010484 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x0000000042010484 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x0000000042010496 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x0000000042010498 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042010498 nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) + *fill* 0x00000000420104cd 0x3 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000420104d0 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000420104d0 nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) + *fill* 0x0000000042010501 0x3 + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x0000000042010504 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042010504 nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) + *fill* 0x000000004201052a 0x2 + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x000000004201052c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x000000004201052c nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) + *fill* 0x000000004201054e 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x0000000042010550 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x0000000042010550 nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) + *fill* 0x0000000042010572 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x0000000042010574 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042010574 nvs::NVSHandleSimple::set_string(char const*, char const*) + *fill* 0x00000000420105b1 0x3 + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000420105b4 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000420105b4 nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) + *fill* 0x00000000420105d9 0x3 + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000420105dc 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000420105dc nvs::NVSHandleSimple::erase_item(char const*) + *fill* 0x0000000042010609 0x3 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x000000004201060c 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000004201060c nvs::NVSHandleSimple::erase_all() + *fill* 0x0000000042010635 0x3 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x0000000042010638 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042010638 nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) + *fill* 0x0000000042010662 0x2 + .text._ZN3nvs12NVSPartitionD2Ev + 0x0000000042010664 0xf esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000042010664 nvs::NVSPartition::~NVSPartition() + 0x0000000042010664 nvs::NVSPartition::~NVSPartition() + *fill* 0x0000000042010673 0x1 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x0000000042010674 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000042010674 nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) + *fill* 0x0000000042010689 0x3 + .text._ZN3nvs12NVSPartition4readEjPvj + 0x000000004201068c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000004201068c nvs::NVSPartition::read(unsigned int, void*, unsigned int) + *fill* 0x00000000420106ad 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x00000000420106b0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x00000000420106b0 nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) + *fill* 0x00000000420106c5 0x3 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x00000000420106c8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x00000000420106c8 nvs::NVSPartition::write(unsigned int, void const*, unsigned int) + *fill* 0x00000000420106e9 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x00000000420106ec 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x00000000420106ec nvs::NVSPartition::erase_range(unsigned int, unsigned int) + .text._ZN3nvs12NVSPartitionD0Ev + 0x00000000420106fc 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x00000000420106fc nvs::NVSPartition::~NVSPartition() + *fill* 0x0000000042010713 0x1 + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x0000000042010714 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000042010714 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + 0x0000000042010714 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + *fill* 0x0000000042010733 0x1 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000042010734 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000042010734 nvs::NVSPartitionManager::~NVSPartitionManager() + 0x0000000042010734 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x000000004201073e 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000042010740 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000042010740 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x0000000042010752 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x0000000042010754 0x39 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000042010754 nvs::NVSPartitionManager::get_instance() + *fill* 0x000000004201078d 0x3 + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x0000000042010790 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000042010790 nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) + *fill* 0x00000000420107cb 0x1 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000420107cc 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000420107cc nvs::NVSPartitionManager::lookup_storage_from_name(char const*) + *fill* 0x00000000420107fe 0x2 + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x0000000042010800 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xe8 (size before relaxing) + 0x0000000042010800 nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000420108dc 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x90 (size before relaxing) + 0x00000000420108dc nvs::NVSPartitionManager::init_partition(char const*) + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x0000000042010960 0xcc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000042010960 nvs::NVSPartitionManager::deinit_partition(char const*) + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x0000000042010a2c 0xa4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xa8 (size before relaxing) + 0x0000000042010a2c nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) + .text._ZN3nvs8HashList5clearEv + 0x0000000042010ad0 0x37 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000042010ad0 nvs::HashList::clear() + *fill* 0x0000000042010b07 0x1 + .text._ZN3nvs8HashListD2Ev + 0x0000000042010b08 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x0000000042010b08 nvs::HashList::~HashList() + 0x0000000042010b08 nvs::HashList::~HashList() + *fill* 0x0000000042010b12 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x0000000042010b14 0x85 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8d (size before relaxing) + 0x0000000042010b14 nvs::HashList::insert(nvs::Item const&, unsigned int) + *fill* 0x0000000042010b99 0x3 + .text._ZN3nvs8HashList5eraseEj + 0x0000000042010b9c 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000042010b9c nvs::HashList::erase(unsigned int) + *fill* 0x0000000042010c1a 0x2 + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x0000000042010c1c 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4a (size before relaxing) + 0x0000000042010c1c nvs::HashList::find(unsigned int, nvs::Item const&) + *fill* 0x0000000042010c62 0x2 + .text._ZN3nvs4PageC2Ev + 0x0000000042010c64 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042010c64 nvs::Page::Page() + 0x0000000042010c64 nvs::Page::Page() + *fill* 0x0000000042010c92 0x2 + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x0000000042010c94 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042010c94 nvs::Page::Header::calculateCrc32() + .text._ZN3nvs4Page10initializeEv + 0x0000000042010ca8 0x6f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042010ca8 nvs::Page::initialize() + *fill* 0x0000000042010d17 0x1 + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x0000000042010d18 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042010d18 nvs::Page::writeEntry(nvs::Item const&) + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x0000000042010d74 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xbc (size before relaxing) + 0x0000000042010d74 nvs::Page::writeEntryData(unsigned char const*, unsigned int) + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x0000000042010e2c 0x204 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x21c (size before relaxing) + 0x0000000042010e2c nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) + .text._ZN3nvs4Page9copyItemsERS0_ + 0x0000000042011030 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc0 (size before relaxing) + 0x0000000042011030 nvs::Page::copyItems(nvs::Page&) + .text._ZNK3nvs4Page12getSeqNumberERm + 0x00000000420110e0 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000420110e0 nvs::Page::getSeqNumber(unsigned long&) const + *fill* 0x000000004201110d 0x3 + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x0000000042011110 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x134 (size before relaxing) + 0x0000000042011110 nvs::Page::eraseEntryAndSpan(unsigned int) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x0000000042011230 0x274 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x278 (size before relaxing) + 0x0000000042011230 nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000420114a4 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x00000000420114a4 nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x00000000420115a1 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000420115a4 0xf9 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x00000000420115a4 nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x000000004201169d 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000420116a0 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x38 (size before relaxing) + 0x00000000420116a0 nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000420116d4 0x3e4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3f8 (size before relaxing) + 0x00000000420116d4 nvs::Page::mLoadEntryTable() + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x0000000042011ab8 0x188 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x190 (size before relaxing) + 0x0000000042011ab8 nvs::Page::load(nvs::Partition*, unsigned long) + .text._ZN3nvs4Page12setSeqNumberEm + 0x0000000042011c40 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042011c40 nvs::Page::setSeqNumber(unsigned long) + *fill* 0x0000000042011c55 0x3 + .text._ZN3nvs4Page5eraseEv + 0x0000000042011c58 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042011c58 nvs::Page::erase() + *fill* 0x0000000042011c92 0x2 + .text._ZN3nvs4Page11markFreeingEv + 0x0000000042011c94 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042011c94 nvs::Page::markFreeing() + *fill* 0x0000000042011cc1 0x3 + .text._ZN3nvs4Page8markFullEv + 0x0000000042011cc4 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042011cc4 nvs::Page::markFull() + *fill* 0x0000000042011ce2 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x0000000042011ce4 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042011ce4 nvs::Page::getVarDataTailroom() const + *fill* 0x0000000042011d15 0x3 + .text._ZN3nvs11PageManager12activatePageEv + 0x0000000042011d18 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x0000000042011d18 nvs::PageManager::activatePage() + .text._ZN3nvs11PageManager14requestNewPageEv + 0x0000000042011d90 0xcc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xdc (size before relaxing) + 0x0000000042011d90 nvs::PageManager::requestNewPage() + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x0000000042011e5c 0x3d2 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x3ea (size before relaxing) + 0x0000000042011e5c nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) + *fill* 0x000000004201222e 0x2 + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x0000000042012230 0x49 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x4d (size before relaxing) + 0x0000000042012230 nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) + *fill* 0x0000000042012279 0x3 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x000000004201227c 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x000000004201227c nvs::Item::calculateCrc32() const + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000420122a8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000420122a8 nvs::Item::calculateCrc32WithoutValue() const + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000420122d0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000420122d0 nvs::Item::calculateCrc32(unsigned char const*, unsigned int) + .text.mem_malloc + 0x00000000420122e4 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3f (size before relaxing) + 0x00000000420122e4 mem_malloc + *fill* 0x000000004201231b 0x1 + .text.mem_free + 0x000000004201231c 0x3e esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004201231c mem_free + *fill* 0x000000004201235a 0x2 + .text.mem_calloc + 0x000000004201235c 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x000000004201235c mem_calloc + *fill* 0x000000004201236d 0x3 + .text.pbuf_add_header_impl + 0x0000000042012370 0x84 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_pool_is_empty + 0x00000000420123f4 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4f (size before relaxing) + *fill* 0x0000000042012433 0x1 + .text.pbuf_free_ooseq + 0x0000000042012434 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3b (size before relaxing) + *fill* 0x0000000042012467 0x1 + .text.pbuf_free_ooseq_callback + 0x0000000042012468 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000042012470 0x0 + .text.pbuf_alloc_reference + 0x0000000042012470 0x48 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4c (size before relaxing) + 0x0000000042012470 pbuf_alloc_reference + .text.pbuf_alloced_custom + 0x00000000420124b8 0x38 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000420124b8 pbuf_alloced_custom + .text.pbuf_add_header + 0x00000000420124f0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x00000000420124f0 pbuf_add_header + .text.pbuf_add_header_force + 0x0000000042012500 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x0000000042012500 pbuf_add_header_force + .text.pbuf_remove_header + 0x0000000042012510 0x5a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012510 pbuf_remove_header + *fill* 0x000000004201256a 0x2 + .text.pbuf_header_impl + 0x000000004201256c 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000004201258e 0x2 + .text.pbuf_header_force + 0x0000000042012590 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012590 pbuf_header_force + .text.pbuf_free + 0x00000000420125a4 0xbd esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xcd (size before relaxing) + 0x00000000420125a4 pbuf_free + *fill* 0x0000000042012661 0x3 + .text.pbuf_alloc + 0x0000000042012664 0x154 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x160 (size before relaxing) + 0x0000000042012664 pbuf_alloc + .text.pbuf_realloc + 0x00000000420127b8 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x9e (size before relaxing) + 0x00000000420127b8 pbuf_realloc + *fill* 0x0000000042012853 0x1 + .text.pbuf_free_header + 0x0000000042012854 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x50 (size before relaxing) + 0x0000000042012854 pbuf_free_header + .text.pbuf_ref + 0x00000000420128a0 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x00000000420128a0 pbuf_ref + *fill* 0x00000000420128ce 0x2 + .text.pbuf_cat + 0x00000000420128d0 0x51 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000420128d0 pbuf_cat + *fill* 0x0000000042012921 0x3 + .text.pbuf_chain + 0x0000000042012924 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x0000000042012924 pbuf_chain + *fill* 0x0000000042012937 0x1 + .text.pbuf_copy_partial_pbuf + 0x0000000042012938 0x11d esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012938 pbuf_copy_partial_pbuf + *fill* 0x0000000042012a55 0x3 + .text.pbuf_copy + 0x0000000042012a58 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012a58 pbuf_copy + *fill* 0x0000000042012a77 0x1 + .text.pbuf_copy_partial + 0x0000000042012a78 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012a78 pbuf_copy_partial + *fill* 0x0000000042012af6 0x2 + .text.pbuf_skip + 0x0000000042012af8 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012af8 pbuf_skip + .text.pbuf_take + 0x0000000042012b0c 0x7a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012b0c pbuf_take + *fill* 0x0000000042012b86 0x2 + .text.pbuf_take_at + 0x0000000042012b88 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x86 (size before relaxing) + 0x0000000042012b88 pbuf_take_at + *fill* 0x0000000042012c06 0x2 + .text.pbuf_clone + 0x0000000042012c08 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + 0x0000000042012c08 pbuf_clone + *fill* 0x0000000042012c3a 0x2 + .text.pbuf_try_get_at + 0x0000000042012c3c 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000042012c3c pbuf_try_get_at + *fill* 0x0000000042012c6a 0x2 + .text.pbuf_get_at + 0x0000000042012c6c 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + 0x0000000042012c6c pbuf_get_at + .text.tcp_new_port + 0x0000000042012c84 0x6c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_remove_listener + 0x0000000042012cf0 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000042012d1b 0x1 + .text.tcp_listen_closed + 0x0000000042012d1c 0x45 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000042012d61 0x3 + .text.tcp_free_listen + 0x0000000042012d64 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000042012d8a 0x2 + .text.tcp_init + 0x0000000042012d8c 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042012d8c tcp_init + *fill* 0x0000000042012da3 0x1 + .text.tcp_free + 0x0000000042012da4 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042012da4 tcp_free + *fill* 0x0000000042012dca 0x2 + .text.tcp_backlog_accepted + 0x0000000042012dcc 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042012dcc tcp_backlog_accepted + *fill* 0x0000000042012e19 0x3 + .text.tcp_close_shutdown_fin + 0x0000000042012e1c 0x88 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x90 (size before relaxing) + .text.tcp_handle_closepend + 0x0000000042012ea4 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000042012ecd 0x3 + .text.tcp_bind + 0x0000000042012ed0 0x32d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x331 (size before relaxing) + 0x0000000042012ed0 tcp_bind + *fill* 0x00000000420131fd 0x3 + .text.tcp_listen_with_backlog_and_err + 0x0000000042013200 0x1a4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1a8 (size before relaxing) + 0x0000000042013200 tcp_listen_with_backlog_and_err + .text.tcp_listen_with_backlog + 0x00000000420133a4 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420133a4 tcp_listen_with_backlog + .text.tcp_update_rcv_ann_wnd + 0x00000000420133b8 0x73 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420133b8 tcp_update_rcv_ann_wnd + *fill* 0x000000004201342b 0x1 + .text.tcp_recved + 0x000000004201342c 0x5f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x63 (size before relaxing) + 0x000000004201342c tcp_recved + *fill* 0x000000004201348b 0x1 + .text.tcp_seg_free + 0x000000004201348c 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x000000004201348c tcp_seg_free + .text.tcp_segs_free + 0x00000000420134a4 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420134a4 tcp_segs_free + *fill* 0x00000000420134bb 0x1 + .text.tcp_seg_copy + 0x00000000420134bc 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x00000000420134bc tcp_seg_copy + *fill* 0x00000000420134f2 0x2 + .text.tcp_recv + 0x00000000420134f4 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420134f4 tcp_recv + *fill* 0x0000000042013516 0x2 + .text.tcp_sent + 0x0000000042013518 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013518 tcp_sent + *fill* 0x000000004201353a 0x2 + .text.tcp_err 0x000000004201353c 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004201353c tcp_err + *fill* 0x000000004201355e 0x2 + .text.tcp_poll + 0x0000000042013560 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013560 tcp_poll + .text.tcp_next_iss + 0x0000000042013588 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013588 tcp_next_iss + *fill* 0x00000000420135b5 0x3 + .text.tcp_eff_send_mss_netif + 0x00000000420135b8 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x57 (size before relaxing) + 0x00000000420135b8 tcp_eff_send_mss_netif + *fill* 0x000000004201360b 0x1 + .text.tcp_free_ooseq + 0x000000004201360c 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x000000004201360c tcp_free_ooseq + *fill* 0x000000004201361e 0x2 + .text.tcp_pcb_purge + 0x0000000042013620 0x5e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x66 (size before relaxing) + 0x0000000042013620 tcp_pcb_purge + *fill* 0x000000004201367e 0x2 + .text.tcp_pcb_remove + 0x0000000042013680 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd9 (size before relaxing) + 0x0000000042013680 tcp_pcb_remove + *fill* 0x0000000042013751 0x3 + .text.tcp_abandon + 0x0000000042013754 0xd6 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xee (size before relaxing) + 0x0000000042013754 tcp_abandon + *fill* 0x000000004201382a 0x2 + .text.tcp_abort + 0x000000004201382c 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000004201382c tcp_abort + *fill* 0x000000004201383b 0x1 + .text.tcp_accept_null + 0x000000004201383c 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x25 (size before relaxing) + *fill* 0x000000004201385e 0x2 + .text.tcp_kill_timewait + 0x0000000042013860 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_kill_prio + 0x0000000042013890 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000420138e8 0x0 + .text.tcp_netif_ip_addr_changed_pcblist + 0x00000000420138e8 0x92 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000004201397a 0x2 + .text.tcp_netif_ip_addr_changed + 0x000000004201397c 0x15b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x15f (size before relaxing) + 0x000000004201397c tcp_netif_ip_addr_changed + *fill* 0x0000000042013ad7 0x1 + .text.tcp_kill_state + 0x0000000042013ad8 0x52 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x0000000042013b2a 0x2 + .text.tcp_alloc + 0x0000000042013b2c 0xb2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd2 (size before relaxing) + 0x0000000042013b2c tcp_alloc + *fill* 0x0000000042013bde 0x2 + .text.tcp_new 0x0000000042013be0 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + 0x0000000042013be0 tcp_new + .text.tcp_close_shutdown + 0x0000000042013bec 0x153 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16a (size before relaxing) + *fill* 0x0000000042013d3f 0x1 + .text.tcp_close_ext + 0x0000000042013d40 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2d (size before relaxing) + 0x0000000042013d40 tcp_close_ext + *fill* 0x0000000042013d69 0x3 + .text.tcp_close + 0x0000000042013d6c 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013d6c tcp_close + *fill* 0x0000000042013d7e 0x2 + .text.tcp_recv_null + 0x0000000042013d80 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3e (size before relaxing) + 0x0000000042013d80 tcp_recv_null + *fill* 0x0000000042013db6 0x2 + .text.tcp_process_refused_data + 0x0000000042013db8 0x8d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013db8 tcp_process_refused_data + *fill* 0x0000000042013e45 0x3 + .text.tcp_fasttmr + 0x0000000042013e48 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x0000000042013e48 tcp_fasttmr + *fill* 0x0000000042013ecf 0x1 + .text.tcp_shutdown + 0x0000000042013ed0 0x79 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x7d (size before relaxing) + 0x0000000042013ed0 tcp_shutdown + *fill* 0x0000000042013f49 0x3 + .text.tcp_slowtmr + 0x0000000042013f4c 0x48d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4a5 (size before relaxing) + 0x0000000042013f4c tcp_slowtmr + *fill* 0x00000000420143d9 0x3 + .text.tcp_tmr 0x00000000420143dc 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x00000000420143dc tcp_tmr + *fill* 0x00000000420143f8 0x0 + .text.tcp_get_next_optbyte + 0x00000000420143f8 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_parseopt + 0x0000000042014438 0xac esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb8 (size before relaxing) + .text.tcp_input_delayed_close + 0x00000000420144e4 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x51 (size before relaxing) + *fill* 0x0000000042014531 0x3 + .text.tcp_timewait_input + 0x0000000042014534 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xaa (size before relaxing) + *fill* 0x00000000420145da 0x2 + .text.tcp_listen_input + 0x00000000420145dc 0x1fb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x21a (size before relaxing) + *fill* 0x00000000420147d7 0x1 + .text.tcp_oos_insert_segment + 0x00000000420147d8 0xf4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x100 (size before relaxing) + .text.tcp_free_acked_segments + 0x00000000420148cc 0xd0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xd8 (size before relaxing) + .text.tcp_receive + 0x000000004201499c 0xc56 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xcea (size before relaxing) + *fill* 0x00000000420155f2 0x2 + .text.tcp_process + 0x00000000420155f4 0x64c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x670 (size before relaxing) + .text.tcp_input + 0x0000000042015c40 0x958 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x9af (size before relaxing) + 0x0000000042015c40 tcp_input + *fill* 0x0000000042016598 0x0 + .text.tcp_trigger_input_pcb_close + 0x0000000042016598 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x0000000042016598 tcp_trigger_input_pcb_close + *fill* 0x00000000420165ab 0x1 + .text.tcp_write_checks + 0x00000000420165ac 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment_busy + 0x000000004201666c 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x0000000042016695 0x3 + .text.tcp_output_fill_options + 0x0000000042016698 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000420166da 0x2 + .text.tcp_pbuf_prealloc + 0x00000000420166dc 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_create_segment + 0x0000000042016740 0xf7 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10b (size before relaxing) + *fill* 0x0000000042016837 0x1 + .text.tcp_output_alloc_header_common + 0x0000000042016838 0xca esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xde (size before relaxing) + *fill* 0x0000000042016902 0x2 + .text.tcp_output_alloc_header + 0x0000000042016904 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x48 (size before relaxing) + .text.tcp_route + 0x0000000042016948 0x3c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment + 0x0000000042016984 0x198 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1b0 (size before relaxing) + .text.tcp_output_control_segment + 0x0000000042016b1c 0x93 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x9a (size before relaxing) + *fill* 0x0000000042016baf 0x1 + .text.tcp_write + 0x0000000042016bb0 0x2f6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30e (size before relaxing) + 0x0000000042016bb0 tcp_write + *fill* 0x0000000042016ea6 0x2 + .text.tcp_split_unsent_seg + 0x0000000042016ea8 0x1c6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1e6 (size before relaxing) + 0x0000000042016ea8 tcp_split_unsent_seg + *fill* 0x000000004201706e 0x2 + .text.tcp_enqueue_flags + 0x0000000042017070 0x144 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x0000000042017070 tcp_enqueue_flags + .text.tcp_send_fin + 0x00000000420171b4 0x7d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x81 (size before relaxing) + 0x00000000420171b4 tcp_send_fin + *fill* 0x0000000042017231 0x3 + .text.tcp_rexmit_rto_prepare + 0x0000000042017234 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xca (size before relaxing) + 0x0000000042017234 tcp_rexmit_rto_prepare + *fill* 0x00000000420172f2 0x2 + .text.tcp_rexmit + 0x00000000420172f4 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc5 (size before relaxing) + 0x00000000420172f4 tcp_rexmit + *fill* 0x00000000420173b5 0x3 + .text.tcp_rexmit_fast + 0x00000000420173b8 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x6a (size before relaxing) + 0x00000000420173b8 tcp_rexmit_fast + *fill* 0x000000004201741e 0x2 + .text.tcp_rst 0x0000000042017420 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x78 (size before relaxing) + 0x0000000042017420 tcp_rst + .text.tcp_send_empty_ack + 0x000000004201748c 0x7f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x87 (size before relaxing) + 0x000000004201748c tcp_send_empty_ack + *fill* 0x000000004201750b 0x1 + .text.tcp_output + 0x000000004201750c 0x40b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x42f (size before relaxing) + 0x000000004201750c tcp_output + *fill* 0x0000000042017917 0x1 + .text.tcp_rexmit_rto_commit + 0x0000000042017918 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x0000000042017918 tcp_rexmit_rto_commit + *fill* 0x0000000042017945 0x3 + .text.tcp_rexmit_rto + 0x0000000042017948 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f (size before relaxing) + 0x0000000042017948 tcp_rexmit_rto + *fill* 0x0000000042017973 0x1 + .text.tcp_keepalive + 0x0000000042017974 0x55 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x61 (size before relaxing) + 0x0000000042017974 tcp_keepalive + *fill* 0x00000000420179c9 0x3 + .text.tcp_zero_window_probe + 0x00000000420179cc 0x131 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x13d (size before relaxing) + 0x00000000420179cc tcp_zero_window_probe + *fill* 0x0000000042017afd 0x3 + .text.sys_timeout_abs + 0x0000000042017b00 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x65 (size before relaxing) + *fill* 0x0000000042017b61 0x3 + .text.lwip_cyclic_timer + 0x0000000042017b64 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3f (size before relaxing) + *fill* 0x0000000042017b9b 0x1 + .text.sys_timeout + 0x0000000042017b9c 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x2f (size before relaxing) + 0x0000000042017b9c sys_timeout + *fill* 0x0000000042017bc7 0x1 + .text.tcp_timer_needed + 0x0000000042017bc8 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x0000000042017bc8 tcp_timer_needed + *fill* 0x0000000042017bf7 0x1 + .text.tcpip_tcp_timer + 0x0000000042017bf8 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x35 (size before relaxing) + *fill* 0x0000000042017c25 0x3 + .text.sys_timeouts_init + 0x0000000042017c28 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x23 (size before relaxing) + 0x0000000042017c28 sys_timeouts_init + *fill* 0x0000000042017c47 0x1 + .text.sys_untimeout + 0x0000000042017c48 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x0000000042017c48 sys_untimeout + *fill* 0x0000000042017c86 0x2 + .text.sys_check_timeouts + 0x0000000042017c88 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x0000000042017c88 sys_check_timeouts + *fill* 0x0000000042017cc2 0x2 + .text.sys_timeouts_sleeptime + 0x0000000042017cc4 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x0000000042017cc4 sys_timeouts_sleeptime + .text.dhcp_option_short + 0x0000000042017d00 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042017d35 0x3 + .text.dhcp_option + 0x0000000042017d38 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte + 0x0000000042017d6c 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042017d92 0x2 + .text.dhcp_option_long + 0x0000000042017d94 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042017de3 0x1 + .text.dhcp_create_msg + 0x0000000042017de4 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x134 (size before relaxing) + .text.dhcp_option_hostname + 0x0000000042017f0c 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7e (size before relaxing) + *fill* 0x0000000042017f86 0x2 + .text.dhcp_option_trailer + 0x0000000042017f88 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042017fc7 0x1 + .text.dhcp_rebind + 0x0000000042017fc8 0x10e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x132 (size before relaxing) + *fill* 0x00000000420180d6 0x2 + .text.dhcp_t2_timeout + 0x00000000420180d8 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042018117 0x1 + .text.dhcp_reboot + 0x0000000042018118 0x12e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x15a (size before relaxing) + *fill* 0x0000000042018246 0x2 + .text.dhcp_select + 0x0000000042018248 0x168 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1a0 (size before relaxing) + .text.dhcp_handle_offer + 0x00000000420183b0 0x5b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x62 (size before relaxing) + *fill* 0x000000004201840b 0x1 + .text.dhcp_discover + 0x000000004201840c 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x135 (size before relaxing) + *fill* 0x0000000042018519 0x3 + .text.dhcp_decline + 0x000000004201851c 0xad esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xcd (size before relaxing) + *fill* 0x00000000420185c9 0x3 + .text.dhcp_check + 0x00000000420185cc 0x43 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000004201860f 0x1 + .text.dhcp_bind + 0x0000000042018610 0xbe esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x00000000420186ce 0x2 + .text.dhcp_handle_nak + 0x00000000420186d0 0x1f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000420186ef 0x1 + .text.dhcp_dec_pcb_refcount + 0x00000000420186f0 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000004201872b 0x1 + .text.dhcp_inc_pcb_refcount + 0x000000004201872c 0x71 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7d (size before relaxing) + *fill* 0x000000004201879d 0x3 + .text.dhcp_parse_reply + 0x00000000420187a0 0x38f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x397 (size before relaxing) + *fill* 0x0000000042018b2f 0x1 + .text.dhcp_handle_ack + 0x0000000042018b30 0xff esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x103 (size before relaxing) + *fill* 0x0000000042018c2f 0x1 + .text.dhcp_recv + 0x0000000042018c30 0x134 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14a (size before relaxing) + *fill* 0x0000000042018d64 0x0 + .text.dhcp_set_struct + 0x0000000042018d64 0x55 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x0000000042018d64 dhcp_set_struct + *fill* 0x0000000042018db9 0x3 + .text.dhcp_cleanup + 0x0000000042018dbc 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2b (size before relaxing) + 0x0000000042018dbc dhcp_cleanup + *fill* 0x0000000042018de4 0x0 + .text.dhcp_network_changed + 0x0000000042018de4 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x53 (size before relaxing) + 0x0000000042018de4 dhcp_network_changed + *fill* 0x0000000042018e30 0x0 + .text.dhcp_arp_reply + 0x0000000042018e30 0x1e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x22 (size before relaxing) + 0x0000000042018e30 dhcp_arp_reply + *fill* 0x0000000042018e4e 0x2 + .text.dhcp_renew + 0x0000000042018e50 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x131 (size before relaxing) + 0x0000000042018e50 dhcp_renew + *fill* 0x0000000042018f5d 0x3 + .text.dhcp_t1_timeout + 0x0000000042018f60 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000042018f9e 0x2 + .text.dhcp_release_and_stop + 0x0000000042018fa0 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14f (size before relaxing) + 0x0000000042018fa0 dhcp_release_and_stop + *fill* 0x00000000420190c8 0x0 + .text.dhcp_start + 0x00000000420190c8 0xbc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc8 (size before relaxing) + 0x00000000420190c8 dhcp_start + .text.dhcp_coarse_tmr + 0x0000000042019184 0x67 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x6b (size before relaxing) + 0x0000000042019184 dhcp_coarse_tmr + *fill* 0x00000000420191eb 0x1 + .text.dhcp_timeout + 0x00000000420191ec 0x92 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x9e (size before relaxing) + *fill* 0x000000004201927e 0x2 + .text.dhcp_fine_tmr + 0x0000000042019280 0x53 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x5a (size before relaxing) + 0x0000000042019280 dhcp_fine_tmr + *fill* 0x00000000420192d3 0x1 + .text.dhcp_fine_timeout_cb + 0x00000000420192d4 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x00000000420192d4 dhcp_fine_timeout_cb + *fill* 0x00000000420192de 0x2 + .text.dhcp_release + 0x00000000420192e0 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x00000000420192e0 dhcp_release + .text.dhcp_stop + 0x00000000420192ec 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x00000000420192ec dhcp_stop + *fill* 0x00000000420192f6 0x2 + .text.free_etharp_q + 0x00000000420192f8 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000042019339 0x3 + .text.etharp_free_entry + 0x000000004201933c 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x35 (size before relaxing) + *fill* 0x000000004201936d 0x3 + .text.etharp_find_entry + 0x0000000042019370 0x1ce esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000004201953e 0x2 + .text.etharp_update_arp_entry + 0x0000000042019540 0xba esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x00000000420195fa 0x2 + .text.etharp_raw + 0x00000000420195fc 0x101 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x10d (size before relaxing) + *fill* 0x00000000420196fd 0x3 + .text.etharp_request_dst + 0x0000000042019700 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x25 (size before relaxing) + *fill* 0x0000000042019721 0x3 + .text.etharp_cleanup_netif + 0x0000000042019724 0x32 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x0000000042019724 etharp_cleanup_netif + *fill* 0x0000000042019756 0x2 + .text.etharp_input + 0x0000000042019758 0xec esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xf2 (size before relaxing) + 0x0000000042019758 etharp_input + *fill* 0x0000000042019844 0x0 + .text.etharp_request + 0x0000000042019844 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x0000000042019844 etharp_request + *fill* 0x0000000042019859 0x3 + .text.etharp_tmr + 0x000000004201985c 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x9c (size before relaxing) + 0x000000004201985c etharp_tmr + .text.etharp_output_to_arp_index + 0x00000000420198f4 0xb2 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x00000000420199a6 0x2 + .text.etharp_query + 0x00000000420199a8 0x21c esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x22c (size before relaxing) + 0x00000000420199a8 etharp_query + .text.etharp_output + 0x0000000042019bc4 0x15d esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x165 (size before relaxing) + 0x0000000042019bc4 etharp_output + *fill* 0x0000000042019d21 0x3 + .text.ip4_input_accept + 0x0000000042019d24 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x34 (size before relaxing) + .text.ip4_route + 0x0000000042019d54 0x70 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x74 (size before relaxing) + 0x0000000042019d54 ip4_route + .text.ip4_route_src + 0x0000000042019dc4 0x1a esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x1e (size before relaxing) + 0x0000000042019dc4 ip4_route_src + *fill* 0x0000000042019dde 0x2 + .text.ip4_input + 0x0000000042019de0 0x293 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2ba (size before relaxing) + 0x0000000042019de0 ip4_input + *fill* 0x000000004201a073 0x1 + .text.ip4_output_if_opt_src + 0x000000004201a074 0x28d esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2a1 (size before relaxing) + 0x000000004201a074 ip4_output_if_opt_src + *fill* 0x000000004201a301 0x3 + .text.ip4_output_if_opt + 0x000000004201a304 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x000000004201a304 ip4_output_if_opt + *fill* 0x000000004201a339 0x3 + .text.ip4_output_if + 0x000000004201a33c 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x000000004201a33c ip4_output_if + *fill* 0x000000004201a361 0x3 + .text.ip4_output_if_src + 0x000000004201a364 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x000000004201a364 ip4_output_if_src + *fill* 0x000000004201a389 0x3 + .text.ip4_frag + 0x000000004201a38c 0x17d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x195 (size before relaxing) + 0x000000004201a38c ip4_frag + *fill* 0x000000004201a509 0x3 + .text.ip6_input_accept + 0x000000004201a50c 0x82 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000004201a58e 0x2 + .text.ip6_route + 0x000000004201a590 0x288 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x28c (size before relaxing) + 0x000000004201a590 ip6_route + .text.ip6_select_source_address + 0x000000004201a818 0x1bb esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x000000004201a818 ip6_select_source_address + *fill* 0x000000004201a9d3 0x1 + .text.ip6_input + 0x000000004201a9d4 0x6e9 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x761 (size before relaxing) + 0x000000004201a9d4 ip6_input + *fill* 0x000000004201b0bd 0x3 + .text.ip6_output_if_src + 0x000000004201b0c0 0x355 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x365 (size before relaxing) + 0x000000004201b0c0 ip6_output_if_src + *fill* 0x000000004201b415 0x3 + .text.ip6_output_if + 0x000000004201b418 0x65 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x000000004201b418 ip6_output_if + *fill* 0x000000004201b47d 0x3 + .text.ip6_options_add_hbh_ra + 0x000000004201b480 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x42 (size before relaxing) + 0x000000004201b480 ip6_options_add_hbh_ra + *fill* 0x000000004201b4be 0x2 + .text.ip6_frag + 0x000000004201b4c0 0x169 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x181 (size before relaxing) + 0x000000004201b4c0 ip6_frag + *fill* 0x000000004201b629 0x3 + .text.mld6_delayed_report + 0x000000004201b62c 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text.mld6_new_group + 0x000000004201b684 0x61 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x65 (size before relaxing) + *fill* 0x000000004201b6e5 0x3 + .text.mld6_send + 0x000000004201b6e8 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x124 (size before relaxing) + .text.mld6_stop + 0x000000004201b7f8 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x000000004201b7f8 mld6_stop + *fill* 0x000000004201b829 0x3 + .text.mld6_report_groups + 0x000000004201b82c 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x000000004201b82c mld6_report_groups + *fill* 0x000000004201b847 0x1 + .text.mld6_input + 0x000000004201b848 0x17c esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18f (size before relaxing) + 0x000000004201b848 mld6_input + *fill* 0x000000004201b9c4 0x0 + .text.mld6_joingroup_netif + 0x000000004201b9c4 0xfd esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x105 (size before relaxing) + 0x000000004201b9c4 mld6_joingroup_netif + *fill* 0x000000004201bac1 0x3 + .text.mld6_joingroup + 0x000000004201bac4 0x42 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x49 (size before relaxing) + 0x000000004201bac4 mld6_joingroup + *fill* 0x000000004201bb06 0x2 + .text.mld6_leavegroup_netif + 0x000000004201bb08 0xf1 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xfd (size before relaxing) + 0x000000004201bb08 mld6_leavegroup_netif + *fill* 0x000000004201bbf9 0x3 + .text.mld6_leavegroup + 0x000000004201bbfc 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4d (size before relaxing) + 0x000000004201bbfc mld6_leavegroup + *fill* 0x000000004201bc41 0x3 + .text.mld6_tmr + 0x000000004201bc44 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x76 (size before relaxing) + 0x000000004201bc44 mld6_tmr + *fill* 0x000000004201bcb6 0x2 + .text.mld6_timeout_cb + 0x000000004201bcb8 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004201bcc0 0x0 + .text.nd6_find_neighbor_cache_entry + 0x000000004201bcc0 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201bd32 0x2 + .text.nd6_find_destination_cache_entry + 0x000000004201bd34 0x70 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_destination_cache_entry + 0x000000004201bda4 0x62 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201be06 0x2 + .text.nd6_is_prefix_in_netif + 0x000000004201be08 0xbd esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201bec5 0x3 + .text.nd6_select_router + 0x000000004201bec8 0xfa esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201bfc2 0x2 + .text.nd6_get_router + 0x000000004201bfc4 0x58 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_onlink_prefix + 0x000000004201c01c 0x5e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201c07a 0x2 + .text.nd6_new_onlink_prefix + 0x000000004201c07c 0xae esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201c12a 0x2 + .text.nd6_send_q + 0x000000004201c12c 0x132 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x136 (size before relaxing) + *fill* 0x000000004201c25e 0x2 + .text.nd6_duplicate_addr_detected + 0x000000004201c260 0x47 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000004201c2a7 0x1 + .text.nd6_process_autoconfig_prefix + 0x000000004201c2a8 0x240 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x244 (size before relaxing) + .text.nd6_free_q + 0x000000004201c4e8 0x59 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x61 (size before relaxing) + *fill* 0x000000004201c541 0x3 + .text.nd6_free_neighbor_cache_entry + 0x000000004201c544 0x6b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000004201c5af 0x1 + .text.nd6_new_neighbor_cache_entry + 0x000000004201c5b0 0x1da esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ea (size before relaxing) + *fill* 0x000000004201c78a 0x2 + .text.nd6_send_na + 0x000000004201c78c 0x162 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x16a (size before relaxing) + *fill* 0x000000004201c8ee 0x2 + .text.nd6_send_rs + 0x000000004201c8f0 0xed esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf9 (size before relaxing) + *fill* 0x000000004201c9dd 0x3 + .text.nd6_send_ns + 0x000000004201c9e0 0x1a0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ac (size before relaxing) + .text.nd6_send_neighbor_cache_probe + 0x000000004201cb80 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004201cb8e 0x2 + .text.nd6_new_router + 0x000000004201cb90 0x13e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x142 (size before relaxing) + *fill* 0x000000004201ccce 0x2 + .text.nd6_get_next_hop_entry + 0x000000004201ccd0 0x345 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x359 (size before relaxing) + *fill* 0x000000004201d015 0x3 + .text.nd6_queue_packet + 0x000000004201d018 0x101 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x119 (size before relaxing) + *fill* 0x000000004201d119 0x3 + .text.nd6_input + 0x000000004201d11c 0xd03 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xd6e (size before relaxing) + 0x000000004201d11c nd6_input + *fill* 0x000000004201de1f 0x1 + .text.nd6_tmr 0x000000004201de20 0x467 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x47b (size before relaxing) + 0x000000004201de20 nd6_tmr + *fill* 0x000000004201e287 0x1 + .text.nd6_clear_destination_cache + 0x000000004201e288 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000004201e288 nd6_clear_destination_cache + *fill* 0x000000004201e2b1 0x3 + .text.nd6_find_route + 0x000000004201e2b4 0x92 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000004201e2b4 nd6_find_route + *fill* 0x000000004201e346 0x2 + .text.nd6_get_next_hop_addr_or_queue + 0x000000004201e348 0x8d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x95 (size before relaxing) + 0x000000004201e348 nd6_get_next_hop_addr_or_queue + *fill* 0x000000004201e3d5 0x3 + .text.nd6_get_destination_mtu + 0x000000004201e3d8 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2e (size before relaxing) + 0x000000004201e3d8 nd6_get_destination_mtu + *fill* 0x000000004201e402 0x2 + .text.nd6_reachability_hint + 0x000000004201e404 0x160 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x164 (size before relaxing) + 0x000000004201e404 nd6_reachability_hint + .text.nd6_cleanup_netif + 0x000000004201e564 0xa6 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xac (size before relaxing) + 0x000000004201e564 nd6_cleanup_netif + *fill* 0x000000004201e60a 0x2 + .text.nd6_adjust_mld_membership + 0x000000004201e60c 0xa3 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xa6 (size before relaxing) + 0x000000004201e60c nd6_adjust_mld_membership + *fill* 0x000000004201e6af 0x1 + .text.ethernet_input + 0x000000004201e6b0 0xf8 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x104 (size before relaxing) + 0x000000004201e6b0 ethernet_input + .text.ethernet_output + 0x000000004201e7a8 0x6d esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x71 (size before relaxing) + 0x000000004201e7a8 ethernet_output + *fill* 0x000000004201e815 0x3 + .text.lwip_init_tcp_isn + 0x000000004201e818 0x2a esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x000000004201e818 lwip_init_tcp_isn + *fill* 0x000000004201e842 0x2 + .text.lwip_hook_tcp_isn + 0x000000004201e844 0xde esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xe2 (size before relaxing) + 0x000000004201e844 lwip_hook_tcp_isn + *fill* 0x000000004201e922 0x2 + .text.ip4_route_src_hook + 0x000000004201e924 0x2e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x000000004201e924 ip4_route_src_hook + *fill* 0x000000004201e952 0x2 + .text.dhcp_parse_extra_opts + 0x000000004201e954 0x75 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x79 (size before relaxing) + 0x000000004201e954 dhcp_parse_extra_opts + *fill* 0x000000004201e9c9 0x3 + .text.dhcp_append_extra_opts + 0x000000004201e9cc 0x5e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x000000004201e9cc dhcp_append_extra_opts + *fill* 0x000000004201ea2a 0x2 + .text.sys_thread_sem_free + 0x000000004201ea2c 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_new + 0x000000004201ea48 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ea48 sys_mutex_new + *fill* 0x000000004201ea62 0x2 + .text.sys_mutex_lock + 0x000000004201ea64 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ea64 sys_mutex_lock + *fill* 0x000000004201ea87 0x1 + .text.sys_mutex_unlock + 0x000000004201ea88 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ea88 sys_mutex_unlock + .text.sys_sem_new + 0x000000004201eab0 0x61 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201eab0 sys_sem_new + *fill* 0x000000004201eb11 0x3 + .text.sys_sem_signal + 0x000000004201eb14 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201eb14 sys_sem_signal + .text.sys_sem_signal_isr + 0x000000004201eb3c 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201eb3c sys_sem_signal_isr + .text.sys_arch_sem_wait + 0x000000004201eb58 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201eb58 sys_arch_sem_wait + .text.sys_sem_free + 0x000000004201ebb4 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ebb4 sys_sem_free + *fill* 0x000000004201ebc6 0x2 + .text.sys_mbox_new + 0x000000004201ebc8 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x000000004201ebc8 sys_mbox_new + *fill* 0x000000004201ec02 0x2 + .text.sys_mbox_post + 0x000000004201ec04 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ec04 sys_mbox_post + .text.sys_mbox_trypost + 0x000000004201ec30 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ec30 sys_mbox_trypost + *fill* 0x000000004201ec52 0x2 + .text.sys_arch_mbox_fetch + 0x000000004201ec54 0x68 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ec54 sys_arch_mbox_fetch + .text.sys_arch_mbox_tryfetch + 0x000000004201ecbc 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ecbc sys_arch_mbox_tryfetch + *fill* 0x000000004201ecf6 0x2 + .text.sys_mbox_free + 0x000000004201ecf8 0x3e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ecf8 sys_mbox_free + *fill* 0x000000004201ed36 0x2 + .text.sys_thread_new + 0x000000004201ed38 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ed38 sys_thread_new + .text.sys_init + 0x000000004201ed60 0x3e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x48 (size before relaxing) + 0x000000004201ed60 sys_init + *fill* 0x000000004201ed9e 0x2 + .text.sys_now 0x000000004201eda0 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201eda0 sys_now + .text.sys_arch_protect + 0x000000004201edb0 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x21 (size before relaxing) + 0x000000004201edb0 sys_arch_protect + *fill* 0x000000004201edcb 0x1 + .text.sys_arch_unprotect + 0x000000004201edcc 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x000000004201edcc sys_arch_unprotect + *fill* 0x000000004201edd7 0x1 + .text.sys_thread_sem_init + 0x000000004201edd8 0x74 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x78 (size before relaxing) + 0x000000004201edd8 sys_thread_sem_init + .text.sys_thread_sem_get + 0x000000004201ee4c 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1a (size before relaxing) + 0x000000004201ee4c sys_thread_sem_get + *fill* 0x000000004201ee62 0x2 + .text.sys_thread_tcpip + 0x000000004201ee64 0x70 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x000000004201ee64 sys_thread_tcpip + .text.lwip_get_socket_select_semaphore + 0x000000004201eed4 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004201eede 0x2 + .text.lwip_stop_socket_select_isr + 0x000000004201eee0 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004201eef2 0x2 + .text.lwip_stop_socket_select + 0x000000004201eef4 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004201eefe 0x2 + .text.lwip_ioctl_r_wrapper + 0x000000004201ef00 0x3a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000004201ef3a 0x2 + .text.lwip_fcntl_r_wrapper + 0x000000004201ef3c 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.lwip_fstat + 0x000000004201ef4c 0x45 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000004201ef91 0x3 + .text.esp_vfs_lwip_sockets_register + 0x000000004201ef94 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x000000004201ef94 esp_vfs_lwip_sockets_register + .text.tryget_socket_unconn_nouse + 0x000000004201f000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.free_socket_locked + 0x000000004201f01c 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000004201f067 0x1 + .text.sock_inc_used_locked + 0x000000004201f068 0x5d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000004201f0c5 0x3 + .text.tryget_socket_unconn_locked + 0x000000004201f0c8 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004201f0ee 0x2 + .text.sock_inc_used + 0x000000004201f0f0 0x4f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x52 (size before relaxing) + *fill* 0x000000004201f13f 0x1 + .text.tryget_socket_unconn + 0x000000004201f140 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_select_inc_sockets_used_set + 0x000000004201f158 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x60 (size before relaxing) + .text.lwip_select_inc_sockets_used + 0x000000004201f1b4 0x32 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004201f1e6 0x2 + .text.lwip_link_select_cb + 0x000000004201f1e8 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_unlink_select_cb + 0x000000004201f218 0x6b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000004201f283 0x1 + .text.sockaddr_to_ipaddr_port + 0x000000004201f284 0x7b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7f (size before relaxing) + *fill* 0x000000004201f2ff 0x1 + .text.lwip_sock_make_addr + 0x000000004201f300 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xfa (size before relaxing) + *fill* 0x000000004201f3f6 0x2 + .text.lwip_recv_tcp_from + 0x000000004201f3f8 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x44 (size before relaxing) + .text.free_socket_free_elements + 0x000000004201f438 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x26 (size before relaxing) + *fill* 0x000000004201f457 0x1 + .text.free_socket + 0x000000004201f458 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.done_socket + 0x000000004201f480 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004201f502 0x2 + .text.tryget_socket + 0x000000004201f504 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000004201f51e 0x2 + .text.get_socket + 0x000000004201f520 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_selscan + 0x000000004201f538 0x23a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x246 (size before relaxing) + *fill* 0x000000004201f772 0x2 + .text.lwip_select_dec_sockets_used + 0x000000004201f774 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4f (size before relaxing) + *fill* 0x000000004201f7bf 0x1 + .text.lwip_socket_drop_registered_memberships + 0x000000004201f7c0 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x76 (size before relaxing) + *fill* 0x000000004201f82a 0x2 + .text.lwip_socket_drop_registered_mld6_memberships + 0x000000004201f82c 0x72 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7a (size before relaxing) + *fill* 0x000000004201f89e 0x2 + .text.lwip_recv_tcp + 0x000000004201f8a0 0x150 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x158 (size before relaxing) + .text.lwip_recvfrom_udp_raw + 0x000000004201f9f0 0xdc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe0 (size before relaxing) + .text.lwip_close + 0x000000004201facc 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x000000004201facc lwip_close + *fill* 0x000000004201fb51 0x3 + .text.lwip_recvfrom + 0x000000004201fb54 0xc7 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xdf (size before relaxing) + 0x000000004201fb54 lwip_recvfrom + *fill* 0x000000004201fc1b 0x1 + .text.lwip_read + 0x000000004201fc1c 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000004201fc1c lwip_read + *fill* 0x000000004201fc35 0x3 + .text.lwip_sendto + 0x000000004201fc38 0x16e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x19a (size before relaxing) + 0x000000004201fc38 lwip_sendto + *fill* 0x000000004201fda6 0x2 + .text.lwip_send + 0x000000004201fda8 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x000000004201fda8 lwip_send + *fill* 0x000000004201fe2d 0x3 + .text.lwip_write + 0x000000004201fe30 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x000000004201fe30 lwip_write + *fill* 0x000000004201fe45 0x3 + .text.lwip_select + 0x000000004201fe48 0x3c1 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x411 (size before relaxing) + 0x000000004201fe48 lwip_select + *fill* 0x0000000042020209 0x3 + .text.lwip_ioctl + 0x000000004202020c 0x5a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x62 (size before relaxing) + 0x000000004202020c lwip_ioctl + *fill* 0x0000000042020266 0x2 + .text.lwip_fcntl + 0x0000000042020268 0xbf esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xcb (size before relaxing) + 0x0000000042020268 lwip_fcntl + *fill* 0x0000000042020327 0x1 + .text.tcpip_timeouts_mbox_fetch + 0x0000000042020328 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004202035e 0x2 + .text.tcpip_thread_handle_msg + 0x0000000042020360 0x93 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x9b (size before relaxing) + *fill* 0x00000000420203f3 0x1 + .text.tcpip_thread + 0x00000000420203f4 0x3e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000042020432 0x2 + .text.tcpip_inpkt + 0x0000000042020434 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x0000000042020434 tcpip_inpkt + *fill* 0x0000000042020486 0x2 + .text.tcpip_input + 0x0000000042020488 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x31 (size before relaxing) + 0x0000000042020488 tcpip_input + *fill* 0x00000000420204b6 0x2 + .text.tcpip_try_callback + 0x00000000420204b8 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x00000000420204b8 tcpip_try_callback + *fill* 0x000000004202050a 0x2 + .text.tcpip_send_msg_wait_sem + 0x000000004202050c 0x50 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x54 (size before relaxing) + 0x000000004202050c tcpip_send_msg_wait_sem + .text.tcpip_api_call + 0x000000004202055c 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + 0x000000004202055c tcpip_api_call + *fill* 0x000000004202059d 0x3 + .text.tcpip_init + 0x00000000420205a0 0x46 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x4e (size before relaxing) + 0x00000000420205a0 tcpip_init + *fill* 0x00000000420205e6 0x2 + .text.lwip_htonl + 0x00000000420205e8 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000420205e8 lwip_htonl + *fill* 0x000000004202060e 0x2 + .text.dns_setserver + 0x0000000042020610 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000042020610 dns_setserver + *fill* 0x000000004202064a 0x2 + .text.inet_cksum_pseudo_base + 0x000000004202064c 0x72 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000420206be 0x2 + .text.inet_chksum_pseudo + 0x00000000420206c0 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x00000000420206c0 inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x00000000420206f8 0x54 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000420206f8 ip6_chksum_pseudo + .text.ip_chksum_pseudo + 0x000000004202074c 0x32 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x000000004202074c ip_chksum_pseudo + *fill* 0x000000004202077e 0x2 + .text.inet_chksum + 0x0000000042020780 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x0000000042020780 inet_chksum + .text.inet_chksum_pbuf + 0x0000000042020798 0x56 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x5a (size before relaxing) + 0x0000000042020798 inet_chksum_pbuf + *fill* 0x00000000420207ee 0x2 + .text.lwip_init + 0x00000000420207f0 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x00000000420207f0 lwip_init + *fill* 0x0000000042020810 0x0 + .text.ip_input + 0x0000000042020810 0x31 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x39 (size before relaxing) + 0x0000000042020810 ip_input + *fill* 0x0000000042020841 0x3 + .text.do_memp_malloc_pool + 0x0000000042020844 0x3d esp-idf/lwip/liblwip.a(memp.c.obj) + 0x48 (size before relaxing) + *fill* 0x0000000042020881 0x3 + .text.do_memp_free_pool + 0x0000000042020884 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .text.memp_malloc + 0x00000000420208ac 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000420208ac memp_malloc + .text.memp_free + 0x00000000420208cc 0x1c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000420208cc memp_free + .text.netif_loopif_init + 0x00000000420208e8 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_set_netmask + 0x000000004202091c 0x6a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000042020986 0x2 + .text.netif_do_set_gw + 0x0000000042020988 0x6c esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_ip_addr_changed + 0x00000000420209f4 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x0000000042020a10 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x53 (size before relaxing) + *fill* 0x0000000042020a5b 0x1 + .text.netif_do_set_ipaddr + 0x0000000042020a5c 0x91 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x95 (size before relaxing) + *fill* 0x0000000042020aed 0x3 + .text.netif_poll + 0x0000000042020af0 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xd5 (size before relaxing) + 0x0000000042020af0 netif_poll + *fill* 0x0000000042020bb3 0x1 + .text.netif_set_default + 0x0000000042020bb4 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020bb4 netif_set_default + *fill* 0x0000000042020bbe 0x2 + .text.netif_loop_output + 0x0000000042020bc0 0xe8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x104 (size before relaxing) + 0x0000000042020bc0 netif_loop_output + .text.netif_loop_output_ipv6 + 0x0000000042020ca8 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000042020cba 0x2 + .text.netif_loop_output_ipv4 + 0x0000000042020cbc 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000042020cce 0x2 + .text.netif_get_ip6_addr_match + 0x0000000042020cd0 0xa0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020cd0 netif_get_ip6_addr_match + .text.netif_get_by_index + 0x0000000042020d70 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020d70 netif_get_by_index + .text.netif_add_ext_callback + 0x0000000042020d98 0x39 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020d98 netif_add_ext_callback + *fill* 0x0000000042020dd1 0x3 + .text.netif_remove_ext_callback + 0x0000000042020dd4 0x5e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020dd4 netif_remove_ext_callback + *fill* 0x0000000042020e32 0x2 + .text.netif_invoke_ext_callback + 0x0000000042020e34 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x0000000042020e34 netif_invoke_ext_callback + *fill* 0x0000000042020e69 0x3 + .text.netif_set_addr + 0x0000000042020e6c 0xa3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xab (size before relaxing) + 0x0000000042020e6c netif_set_addr + *fill* 0x0000000042020f0f 0x1 + .text.netif_add + 0x0000000042020f10 0x1fe esp-idf/lwip/liblwip.a(netif.c.obj) + 0x206 (size before relaxing) + 0x0000000042020f10 netif_add + *fill* 0x000000004202110e 0x2 + .text.netif_set_up + 0x0000000042021110 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x0000000042021110 netif_set_up + *fill* 0x000000004202113e 0x2 + .text.netif_set_down + 0x0000000042021140 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x0000000042021140 netif_set_down + .text.netif_remove + 0x0000000042021178 0x9d esp-idf/lwip/liblwip.a(netif.c.obj) + 0xa5 (size before relaxing) + 0x0000000042021178 netif_remove + *fill* 0x0000000042021215 0x3 + .text.netif_set_link_up + 0x0000000042021218 0x36 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + 0x0000000042021218 netif_set_link_up + *fill* 0x000000004202124e 0x2 + .text.netif_init + 0x0000000042021250 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x0000000042021250 netif_init + *fill* 0x00000000420212a6 0x2 + .text.netif_set_link_down + 0x00000000420212a8 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000420212a8 netif_set_link_down + .text.netif_ip6_addr_set_parts + 0x00000000420212d4 0x126 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x12a (size before relaxing) + 0x00000000420212d4 netif_ip6_addr_set_parts + *fill* 0x00000000420213fa 0x2 + .text.netif_ip6_addr_set + 0x00000000420213fc 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000420213fc netif_ip6_addr_set + *fill* 0x000000004202143f 0x1 + .text.netif_ip6_addr_set_state + 0x0000000042021440 0xc0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xcc (size before relaxing) + 0x0000000042021440 netif_ip6_addr_set_state + .text.raw_input_local_match + 0x0000000042021500 0x12e esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000004202162e 0x2 + .text.raw_input + 0x0000000042021630 0x125 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000042021630 raw_input + *fill* 0x0000000042021755 0x3 + .text.raw_sendto_if_src + 0x0000000042021758 0x25a esp-idf/lwip/liblwip.a(raw.c.obj) + 0x272 (size before relaxing) + 0x0000000042021758 raw_sendto_if_src + *fill* 0x00000000420219b2 0x2 + .text.raw_sendto + 0x00000000420219b4 0x161 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000420219b4 raw_sendto + *fill* 0x0000000042021b15 0x3 + .text.raw_send + 0x0000000042021b18 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000042021b18 raw_send + *fill* 0x0000000042021b2d 0x3 + .text.raw_remove + 0x0000000042021b30 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x3a (size before relaxing) + 0x0000000042021b30 raw_remove + *fill* 0x0000000042021b66 0x2 + .text.raw_netif_ip_addr_changed + 0x0000000042021b68 0x143 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000042021b68 raw_netif_ip_addr_changed + *fill* 0x0000000042021cab 0x1 + .text.udp_new_port + 0x0000000042021cac 0x57 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x0000000042021d03 0x1 + .text.udp_input_local_match + 0x0000000042021d04 0x176 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x0000000042021e7a 0x2 + .text.udp_init + 0x0000000042021e7c 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x0000000042021e7c udp_init + *fill* 0x0000000042021e93 0x1 + .text.udp_input + 0x0000000042021e94 0x37c esp-idf/lwip/liblwip.a(udp.c.obj) + 0x39b (size before relaxing) + 0x0000000042021e94 udp_input + *fill* 0x0000000042022210 0x0 + .text.udp_bind + 0x0000000042022210 0x2ea esp-idf/lwip/liblwip.a(udp.c.obj) + 0x2ee (size before relaxing) + 0x0000000042022210 udp_bind + *fill* 0x00000000420224fa 0x2 + .text.udp_sendto_if_src + 0x00000000420224fc 0x210 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x22c (size before relaxing) + 0x00000000420224fc udp_sendto_if_src + .text.udp_sendto_if + 0x000000004202270c 0xdb esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000004202270c udp_sendto_if + *fill* 0x00000000420227e7 0x1 + .text.udp_sendto + 0x00000000420227e8 0x10f esp-idf/lwip/liblwip.a(udp.c.obj) + 0x11b (size before relaxing) + 0x00000000420227e8 udp_sendto + *fill* 0x00000000420228f7 0x1 + .text.udp_send + 0x00000000420228f8 0x39 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3d (size before relaxing) + 0x00000000420228f8 udp_send + *fill* 0x0000000042022931 0x3 + .text.udp_connect + 0x0000000042022934 0x154 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x15c (size before relaxing) + 0x0000000042022934 udp_connect + .text.udp_disconnect + 0x0000000042022a88 0x9e esp-idf/lwip/liblwip.a(udp.c.obj) + 0x0000000042022a88 udp_disconnect + *fill* 0x0000000042022b26 0x2 + .text.udp_remove + 0x0000000042022b28 0x38 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3b (size before relaxing) + 0x0000000042022b28 udp_remove + *fill* 0x0000000042022b60 0x0 + .text.udp_new 0x0000000042022b60 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x0000000042022b60 udp_new + .text.udp_netif_ip_addr_changed + 0x0000000042022b80 0x143 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x0000000042022b80 udp_netif_ip_addr_changed + *fill* 0x0000000042022cc3 0x1 + .text.icmp_send_response + 0x0000000042022cc4 0xe7 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xf6 (size before relaxing) + *fill* 0x0000000042022dab 0x1 + .text.icmp_input + 0x0000000042022dac 0x1c7 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x1f2 (size before relaxing) + 0x0000000042022dac icmp_input + *fill* 0x0000000042022f73 0x1 + .text.icmp_dest_unreach + 0x0000000042022f74 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x0000000042022f74 icmp_dest_unreach + *fill* 0x0000000042022f86 0x2 + .text.igmp_start_timer + 0x0000000042022f88 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x42 (size before relaxing) + *fill* 0x0000000042022fc6 0x2 + .text.igmp_delaying_member + 0x0000000042022fc8 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000042022fee 0x2 + .text.igmp_ip_output_if + 0x0000000042022ff0 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x31 (size before relaxing) + *fill* 0x000000004202301d 0x3 + .text.igmp_send + 0x0000000042023020 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x00000000420230df 0x1 + .text.igmp_timeout + 0x00000000420230e0 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x0000000042023106 0x2 + .text.igmp_init + 0x0000000042023108 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000042023108 igmp_init + *fill* 0x000000004202311d 0x3 + .text.igmp_stop + 0x0000000042023120 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000042023120 igmp_stop + *fill* 0x0000000042023151 0x3 + .text.igmp_report_groups + 0x0000000042023154 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000042023154 igmp_report_groups + *fill* 0x0000000042023173 0x1 + .text.igmp_lookup_group + 0x0000000042023174 0x82 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000420231f6 0x2 + .text.igmp_start + 0x00000000420231f8 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000420231f8 igmp_start + *fill* 0x000000004202322e 0x2 + .text.igmp_input + 0x0000000042023230 0x103 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x116 (size before relaxing) + 0x0000000042023230 igmp_input + *fill* 0x0000000042023333 0x1 + .text.igmp_joingroup_netif + 0x0000000042023334 0x85 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x89 (size before relaxing) + 0x0000000042023334 igmp_joingroup_netif + *fill* 0x00000000420233b9 0x3 + .text.igmp_joingroup + 0x00000000420233bc 0x5c esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000420233bc igmp_joingroup + .text.igmp_leavegroup_netif + 0x0000000042023418 0x89 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x95 (size before relaxing) + 0x0000000042023418 igmp_leavegroup_netif + *fill* 0x00000000420234a1 0x3 + .text.igmp_leavegroup + 0x00000000420234a4 0x5b esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x5f (size before relaxing) + 0x00000000420234a4 igmp_leavegroup + *fill* 0x00000000420234ff 0x1 + .text.igmp_tmr + 0x0000000042023500 0x64 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000042023500 igmp_tmr + .text.igmp_timeout_cb + 0x0000000042023564 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x000000004202356c 0x0 + .text.icmp6_send_response_with_addrs_and_netif + 0x000000004202356c 0xe3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xef (size before relaxing) + *fill* 0x000000004202364f 0x1 + .text.icmp6_send_response + 0x0000000042023650 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004202368e 0x2 + .text.icmp6_input + 0x0000000042023690 0xff esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x12e (size before relaxing) + 0x0000000042023690 icmp6_input + *fill* 0x000000004202378f 0x1 + .text.icmp6_dest_unreach + 0x0000000042023790 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x0000000042023790 icmp6_dest_unreach + .text.icmp6_param_problem + 0x00000000420237a4 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000420237a4 icmp6_param_problem + *fill* 0x00000000420237be 0x2 + .text.netconn_apimsg + 0x00000000420237c0 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000420237de 0x2 + .text.netconn_tcp_recvd_msg + 0x00000000420237e0 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x35 (size before relaxing) + *fill* 0x0000000042023811 0x3 + .text.netconn_close_shutdown + 0x0000000042023814 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + *fill* 0x0000000042023839 0x3 + .text.netconn_prepare_delete + 0x000000004202383c 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x26 (size before relaxing) + 0x000000004202383c netconn_prepare_delete + *fill* 0x000000004202385a 0x2 + .text.netconn_delete + 0x000000004202385c 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x000000004202385c netconn_delete + *fill* 0x0000000042023889 0x3 + .text.netconn_getaddr + 0x000000004202388c 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x000000004202388c netconn_getaddr + *fill* 0x00000000420238c9 0x3 + .text.netconn_tcp_recvd + 0x00000000420238cc 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000420238cc netconn_tcp_recvd + *fill* 0x00000000420238f9 0x3 + .text.netconn_send + 0x00000000420238fc 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000420238fc netconn_send + *fill* 0x000000004202391d 0x3 + .text.netconn_write_vectors_partly + 0x0000000042023920 0xe4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xe8 (size before relaxing) + 0x0000000042023920 netconn_write_vectors_partly + .text.netconn_write_partly + 0x0000000042023a04 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000042023a04 netconn_write_partly + *fill* 0x0000000042023a21 0x3 + .text.netconn_err + 0x0000000042023a24 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x23 (size before relaxing) + 0x0000000042023a24 netconn_err + *fill* 0x0000000042023a43 0x1 + .text.netconn_recv_data + 0x0000000042023a44 0x144 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x164 (size before relaxing) + .text.netconn_recv_udp_raw_netbuf_flags + 0x0000000042023b88 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000042023b88 netconn_recv_udp_raw_netbuf_flags + *fill* 0x0000000042023bb9 0x3 + .text.netconn_recv_data_tcp + 0x0000000042023bbc 0xad esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xb1 (size before relaxing) + *fill* 0x0000000042023c69 0x3 + .text.netconn_recv_tcp_pbuf_flags + 0x0000000042023c6c 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000042023c6c netconn_recv_tcp_pbuf_flags + *fill* 0x0000000042023c9d 0x3 + .text.netconn_join_leave_group + 0x0000000042023ca0 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x0000000042023ca0 netconn_join_leave_group + *fill* 0x0000000042023ccd 0x3 + .text.netconn_join_leave_group_netif + 0x0000000042023cd0 0x39 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x0000000042023cd0 netconn_join_leave_group_netif + *fill* 0x0000000042023d09 0x3 + .text.lwip_netconn_err_to_msg + 0x0000000042023d0c 0x4a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x0000000042023d56 0x2 + .text.err_tcp 0x0000000042023d58 0x11c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .text.netconn_mark_mbox_invalid + 0x0000000042023e74 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x47 (size before relaxing) + *fill* 0x0000000042023eb4 0x0 + .text.lwip_netconn_do_writemore + 0x0000000042023eb4 0x298 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x29c (size before relaxing) + .text.lwip_netconn_do_close_internal + 0x000000004202414c 0x1ea esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x212 (size before relaxing) + *fill* 0x0000000042024336 0x2 + .text.poll_tcp + 0x0000000042024338 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000004202439a 0x2 + .text.sent_tcp + 0x000000004202439c 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000042024402 0x2 + .text.tcp_do_abort + 0x0000000042024404 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10 (size before relaxing) + .text.lwip_netconn_is_deallocated_msg + 0x0000000042024410 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000042024410 lwip_netconn_is_deallocated_msg + *fill* 0x0000000042024422 0x2 + .text.lwip_netconn_is_err_msg + 0x0000000042024424 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000042024424 lwip_netconn_is_err_msg + .text.netconn_free + 0x0000000042024470 0x5a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000042024470 netconn_free + *fill* 0x00000000420244ca 0x2 + .text.netconn_drain + 0x00000000420244cc 0xc6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xea (size before relaxing) + *fill* 0x0000000042024592 0x2 + .text.lwip_netconn_do_delconn + 0x0000000042024594 0x103 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10b (size before relaxing) + 0x0000000042024594 lwip_netconn_do_delconn + *fill* 0x0000000042024697 0x1 + .text.lwip_netconn_do_send + 0x0000000042024698 0x136 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x146 (size before relaxing) + 0x0000000042024698 lwip_netconn_do_send + *fill* 0x00000000420247ce 0x2 + .text.lwip_netconn_do_recv + 0x00000000420247d0 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x48 (size before relaxing) + 0x00000000420247d0 lwip_netconn_do_recv + .text.lwip_netconn_do_write + 0x0000000042024814 0x7f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x86 (size before relaxing) + 0x0000000042024814 lwip_netconn_do_write + *fill* 0x0000000042024893 0x1 + .text.lwip_netconn_do_getaddr + 0x0000000042024894 0x182 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x0000000042024894 lwip_netconn_do_getaddr + *fill* 0x0000000042024a16 0x2 + .text.lwip_netconn_do_close + 0x0000000042024a18 0xd0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xdb (size before relaxing) + 0x0000000042024a18 lwip_netconn_do_close + *fill* 0x0000000042024ae8 0x0 + .text.lwip_netconn_do_join_leave_group + 0x0000000042024ae8 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x75 (size before relaxing) + 0x0000000042024ae8 lwip_netconn_do_join_leave_group + *fill* 0x0000000042024b59 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x0000000042024b5c 0x7c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7f (size before relaxing) + 0x0000000042024b5c lwip_netconn_do_join_leave_group_netif + *fill* 0x0000000042024bd8 0x0 + .text.err_to_errno + 0x0000000042024bd8 0x26 esp-idf/lwip/liblwip.a(err.c.obj) + 0x0000000042024bd8 err_to_errno + *fill* 0x0000000042024bfe 0x2 + .text.netbuf_delete + 0x0000000042024c00 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x0000000042024c00 netbuf_delete + *fill* 0x0000000042024c1b 0x1 + .text.netbuf_alloc + 0x0000000042024c1c 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4a (size before relaxing) + 0x0000000042024c1c netbuf_alloc + *fill* 0x0000000042024c62 0x2 + .text.netbuf_free + 0x0000000042024c64 0x14 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + 0x0000000042024c64 netbuf_free + .text.esp_netif_list_lock + 0x0000000042024c78 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024c78 esp_netif_list_lock + *fill* 0x0000000042024cad 0x3 + .text.esp_netif_list_unlock + 0x0000000042024cb0 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024cb0 esp_netif_list_unlock + .text.esp_netif_add_to_list + 0x0000000042024cf0 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024cf0 esp_netif_add_to_list + *fill* 0x0000000042024d39 0x3 + .text.esp_netif_remove_from_list + 0x0000000042024d3c 0x71 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x78 (size before relaxing) + 0x0000000042024d3c esp_netif_remove_from_list + *fill* 0x0000000042024dad 0x3 + .text.esp_netif_get_nr_of_ifs + 0x0000000042024db0 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024db0 esp_netif_get_nr_of_ifs + *fill* 0x0000000042024dba 0x2 + .text.esp_netif_next_unsafe + 0x0000000042024dbc 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024dbc esp_netif_next_unsafe + *fill* 0x0000000042024ded 0x3 + .text.esp_netif_is_netif_listed + 0x0000000042024df0 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x0000000042024df0 esp_netif_is_netif_listed + .text.esp_netif_get_handle_from_ifkey + 0x0000000042024e44 0x5b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x66 (size before relaxing) + 0x0000000042024e44 esp_netif_get_handle_from_ifkey + *fill* 0x0000000042024e9f 0x1 + .text.esp_netif_is_active + 0x0000000042024ea0 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042024eae 0x2 + .text.esp_netif_set_default_netif_internal + 0x0000000042024eb0 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042024eba 0x2 + .text.esp_netif_api_cb + 0x0000000042024ebc 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000042024ed7 0x1 + .text.tcpip_init_done + 0x0000000042024ed8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042024ee2 0x2 + .text.esp_netif_config_sanity_check + 0x0000000042024ee4 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000042024f52 0x2 + .text.set_lwip_netif_callback + 0x0000000042024f54 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x0000000042024f64 0x0 + .text.esp_netif_set_mac_api + 0x0000000042024f64 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042024f64 esp_netif_set_mac_api + *fill* 0x0000000042024f8e 0x2 + .text.esp_netif_set_ip_old_info_api + 0x0000000042024f90 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000042024fbe 0x2 + .text.esp_netif_dhcps_cb + 0x0000000042024fc0 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000042025052 0x2 + .text.esp_netif_start_ip_lost_timer + 0x0000000042025054 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004202507d 0x3 + .text.netif_set_mldv6_flag + 0x0000000042025080 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000042025096 0x2 + .text.esp_netif_internal_nd6_cb + 0x0000000042025098 0xe2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004202517a 0x2 + .text.netif_set_garp_flag + 0x000000004202517c 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x000000004202518c 0x0 + .text.esp_netif_ip_lost_timer + 0x000000004202518c 0x86 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8e (size before relaxing) + *fill* 0x0000000042025212 0x2 + .text.netif_send_mldv6 + 0x0000000042025214 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004202522f 0x1 + .text.esp_netif_init_configuration + 0x0000000042025230 0x104 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.netif_unset_garp_flag + 0x0000000042025334 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x0000000042025341 0x3 + .text.netif_unset_mldv6_flag + 0x0000000042025344 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x0000000042025351 0x3 + .text.esp_netif_lwip_remove + 0x0000000042025354 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x48 (size before relaxing) + .text.esp_netif_lwip_remove_api + 0x0000000042025390 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .text.netif_send_garp + 0x000000004202539c 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + *fill* 0x00000000420253bd 0x3 + .text.remove_lwip_netif_callback + 0x00000000420253c0 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000420253d6 0x2 + .text.esp_netif_lwip_add + 0x00000000420253d8 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x79 (size before relaxing) + *fill* 0x000000004202544d 0x3 + .text.dns_clear_servers + 0x0000000042025450 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000004202547a 0x2 + .text.esp_netif_dhcpc_start_api + 0x000000004202547c 0xc3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xcb (size before relaxing) + *fill* 0x000000004202553f 0x1 + .text.esp_netif_update_default_netif + 0x0000000042025540 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + .text.esp_netif_start_api + 0x0000000042025588 0x142 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x15e (size before relaxing) + *fill* 0x00000000420256ca 0x2 + .text.esp_netif_stop_api + 0x00000000420256cc 0x79 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8d (size before relaxing) + *fill* 0x0000000042025745 0x3 + .text.esp_netif_up_api + 0x0000000042025748 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3d (size before relaxing) + *fill* 0x0000000042025779 0x3 + .text.esp_netif_down_api + 0x000000004202577c 0xa6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xbe (size before relaxing) + *fill* 0x0000000042025822 0x2 + .text.esp_netif_init + 0x0000000042025824 0xd5 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xf1 (size before relaxing) + 0x0000000042025824 esp_netif_init + *fill* 0x00000000420258f9 0x3 + .text.esp_netif_destroy + 0x00000000420258fc 0xd6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xf6 (size before relaxing) + 0x00000000420258fc esp_netif_destroy + *fill* 0x00000000420259d2 0x2 + .text.esp_netif_new + 0x00000000420259d4 0x20e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x226 (size before relaxing) + 0x00000000420259d4 esp_netif_new + *fill* 0x0000000042025be2 0x2 + .text.esp_netif_attach + 0x0000000042025be4 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042025be4 esp_netif_attach + *fill* 0x0000000042025c22 0x2 + .text.esp_netif_set_driver_config + 0x0000000042025c24 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042025c24 esp_netif_set_driver_config + *fill* 0x0000000042025c55 0x3 + .text.esp_netif_set_mac + 0x0000000042025c58 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x68 (size before relaxing) + 0x0000000042025c58 esp_netif_set_mac + .text.esp_netif_start + 0x0000000042025cb4 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025cb4 esp_netif_start + .text.esp_netif_stop + 0x0000000042025cfc 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025cfc esp_netif_stop + .text.esp_netif_netstack_buf_ref + 0x0000000042025d44 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x0000000042025d44 esp_netif_netstack_buf_ref + *fill* 0x0000000042025d4e 0x2 + .text.esp_netif_netstack_buf_free + 0x0000000042025d50 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x0000000042025d50 esp_netif_netstack_buf_free + *fill* 0x0000000042025d5a 0x2 + .text.esp_netif_dhcpc_start + 0x0000000042025d5c 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025d5c esp_netif_dhcpc_start + .text.esp_netif_get_hostname + 0x0000000042025da4 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042025da4 esp_netif_get_hostname + *fill* 0x0000000042025dcd 0x3 + .text.esp_netif_up + 0x0000000042025dd0 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025dd0 esp_netif_up + .text.esp_netif_down + 0x0000000042025e18 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025e18 esp_netif_down + .text.esp_netif_update_default_netif_lwip + 0x0000000042025e60 0xf2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x11a (size before relaxing) + *fill* 0x0000000042025f52 0x2 + .text.esp_netif_get_old_ip_info + 0x0000000042025f54 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042025f54 esp_netif_get_old_ip_info + *fill* 0x0000000042025f81 0x3 + .text.esp_netif_get_ip_info + 0x0000000042025f84 0x66 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042025f84 esp_netif_get_ip_info + *fill* 0x0000000042025fea 0x2 + .text.esp_netif_set_old_ip_info + 0x0000000042025fec 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + 0x0000000042025fec esp_netif_set_old_ip_info + .text.esp_netif_internal_dhcpc_cb + 0x0000000042026034 0xdf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xea (size before relaxing) + *fill* 0x0000000042026113 0x1 + .text.netif_callback_fn + 0x0000000042026114 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000042026142 0x2 + .text.esp_aes_decrypt + 0x0000000042026144 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042026152 0x2 + .text.esp_aes_encrypt + 0x0000000042026154 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042026162 0x2 + .text.esp_aes_unwrap + 0x0000000042026164 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.esp_aes_wrap + 0x0000000042026178 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.sha256_prf_bits + 0x000000004202618c 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xe6 (size before relaxing) + 0x000000004202618c sha256_prf_bits + *fill* 0x000000004202626a 0x2 + .text.sha256_prf + 0x000000004202626c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x000000004202626c sha256_prf + .text.sha1_prf + 0x000000004202628c 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x000000004202628c sha1_prf + *fill* 0x0000000042026326 0x2 + .text.digest_vector + 0x0000000042026328 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x71 (size before relaxing) + *fill* 0x0000000042026385 0x3 + .text.hmac_vector + 0x0000000042026388 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x78 (size before relaxing) + .text.aes_crypt_init + 0x00000000420263ec 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x54 (size before relaxing) + .text.aes_crypt_deinit + 0x000000004202643c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004202644e 0x2 + .text.aes_crypt + 0x0000000042026450 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + *fill* 0x0000000042026465 0x3 + .text.sha256_vector + 0x0000000042026468 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x0000000042026468 sha256_vector + .text.sha1_vector + 0x000000004202647c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x000000004202647c sha1_vector + .text.hmac_sha256_vector + 0x0000000042026490 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x0000000042026490 hmac_sha256_vector + .text.hmac_sha256 + 0x00000000420264a8 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x00000000420264a8 hmac_sha256 + *fill* 0x00000000420264c5 0x3 + .text.hmac_sha1_vector + 0x00000000420264c8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x00000000420264c8 hmac_sha1_vector + .text.hmac_sha1 + 0x00000000420264e0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x00000000420264e0 hmac_sha1 + *fill* 0x00000000420264fd 0x3 + .text.aes_encrypt_init + 0x0000000042026500 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x0000000042026500 aes_encrypt_init + .text.aes_encrypt + 0x0000000042026510 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000042026510 aes_encrypt + *fill* 0x0000000042026525 0x3 + .text.aes_encrypt_deinit + 0x0000000042026528 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x0000000042026528 aes_encrypt_deinit + *fill* 0x0000000042026532 0x2 + .text.aes_decrypt_init + 0x0000000042026534 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x0000000042026534 aes_decrypt_init + .text.aes_decrypt + 0x0000000042026544 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000042026544 aes_decrypt + *fill* 0x0000000042026559 0x3 + .text.aes_decrypt_deinit + 0x000000004202655c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x000000004202655c aes_decrypt_deinit + *fill* 0x0000000042026566 0x2 + .text.aes_128_cbc_encrypt + 0x0000000042026568 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x0000000042026568 aes_128_cbc_encrypt + .text.aes_128_cbc_decrypt + 0x00000000420265b0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x00000000420265b0 aes_128_cbc_decrypt + .text.pbkdf2_sha1 + 0x00000000420265f8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x2c (size before relaxing) + 0x00000000420265f8 pbkdf2_sha1 + .text.omac1_aes_vector + 0x0000000042026620 0x9f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xb3 (size before relaxing) + 0x0000000042026620 omac1_aes_vector + *fill* 0x00000000420266bf 0x1 + .text.omac1_aes_128_vector + 0x00000000420266c0 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x00000000420266c0 omac1_aes_128_vector + *fill* 0x00000000420266d9 0x3 + .text.omac1_aes_128 + 0x00000000420266dc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x00000000420266dc omac1_aes_128 + .text.aes_wrap + 0x00000000420266f4 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xd1 (size before relaxing) + 0x00000000420266f4 aes_wrap + *fill* 0x00000000420267c1 0x3 + .text.aes_unwrap + 0x00000000420267c4 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xe2 (size before relaxing) + 0x00000000420267c4 aes_unwrap + *fill* 0x00000000420268a2 0x2 + .text.os_get_time + 0x00000000420268a4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x00000000420268a4 os_get_time + *fill* 0x00000000420268c1 0x3 + .text.os_random + 0x00000000420268c4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x00000000420268c4 os_random + *fill* 0x00000000420268d1 0x3 + .text.os_get_random + 0x00000000420268d4 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x00000000420268d4 os_get_random + *fill* 0x00000000420268e5 0x3 + .text.os_sleep + 0x00000000420268e8 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x1f (size before relaxing) + 0x00000000420268e8 os_sleep + *fill* 0x0000000042026904 0x0 + .text.forced_memzero + 0x0000000042026904 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x0000000042026904 forced_memzero + *fill* 0x0000000042026913 0x1 + .text.ccmp_aad_nonce + 0x0000000042026914 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x0000000042026a26 0x2 + .text.ccmp_decrypt + 0x0000000042026a28 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xa4 (size before relaxing) + 0x0000000042026a28 ccmp_decrypt + .text.ccmp_encrypt + 0x0000000042026ac4 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xfc (size before relaxing) + 0x0000000042026ac4 ccmp_encrypt + .text.hex2byte + 0x0000000042026bbc 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x30 (size before relaxing) + 0x0000000042026bbc hex2byte + .text.hexstr2bin + 0x0000000042026be8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000042026be8 hexstr2bin + .text.wpa_get_ntp_timestamp + 0x0000000042026c10 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x7d (size before relaxing) + 0x0000000042026c10 wpa_get_ntp_timestamp + *fill* 0x0000000042026c89 0x3 + .text.printf_decode + 0x0000000042026c8c 0x152 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x156 (size before relaxing) + 0x0000000042026c8c printf_decode + *fill* 0x0000000042026dde 0x2 + .text.dup_binstr + 0x0000000042026de0 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000042026de0 dup_binstr + *fill* 0x0000000042026e0a 0x2 + .text.wpa_config_parse_string + 0x0000000042026e0c 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x12c (size before relaxing) + 0x0000000042026e0c wpa_config_parse_string + .text.bin_clear_free + 0x0000000042026f34 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1a (size before relaxing) + 0x0000000042026f34 bin_clear_free + *fill* 0x0000000042026f4a 0x2 + .text.os_memdup + 0x0000000042026f4c 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000042026f4c os_memdup + .text.aes_ccm_encr_start + 0x0000000042026f78 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x0000000042026f92 0x2 + .text.aes_ccm_auth + 0x0000000042026f94 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000042026fea 0x2 + .text.aes_ccm_encr + 0x0000000042026fec 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000042027056 0x2 + .text.aes_ccm_encr_auth + 0x0000000042027058 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004202708a 0x2 + .text.aes_ccm_decr_auth + 0x000000004202708c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000420270be 0x2 + .text.aes_ccm_auth_start + 0x00000000420270c0 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc6 (size before relaxing) + *fill* 0x0000000042027176 0x2 + .text.aes_ccm_ae + 0x0000000042027178 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xa6 (size before relaxing) + 0x0000000042027178 aes_ccm_ae + *fill* 0x000000004202720a 0x2 + .text.aes_ccm_ad + 0x000000004202720c 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc2 (size before relaxing) + 0x000000004202720c aes_ccm_ad + *fill* 0x00000000420272b6 0x2 + .text.esp_wifi_config_info + 0x00000000420272b8 0xf2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x00000000420273aa 0x2 + .text.esp_wifi_set_log_level + 0x00000000420273ac 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000420273b6 0x2 + .text.s_set_default_wifi_log_level + 0x00000000420273b8 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000420273de 0x2 + .text.esp_wifi_deinit + 0x00000000420273e0 0x84 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x9a (size before relaxing) + 0x00000000420273e0 esp_wifi_deinit + *fill* 0x0000000042027464 0x0 + .text.esp_wifi_init + 0x0000000042027464 0x90 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x9c (size before relaxing) + 0x0000000042027464 esp_wifi_init + .text.wifi_default_action_sta_got_ip + 0x00000000420274f4 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x43 (size before relaxing) + *fill* 0x0000000042027533 0x1 + .text.wifi_default_action_ap_stop + 0x0000000042027534 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x000000004202754c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x0000000042027564 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc8 (size before relaxing) + .text.wifi_default_action_ap_start + 0x0000000042027614 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x000000004202762c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x0000000042027644 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x000000004202765c 0x5a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x66 (size before relaxing) + *fill* 0x00000000420276b6 0x2 + .text.clear_default_wifi_handlers + 0x00000000420276b8 0x62 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000004202771a 0x2 + .text.set_default_wifi_handlers + 0x000000004202771c 0xcd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xe9 (size before relaxing) + *fill* 0x00000000420277e9 0x3 + .text.create_and_attach + 0x00000000420277ec 0x36 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x3a (size before relaxing) + *fill* 0x0000000042027822 0x2 + .text.esp_wifi_set_default_wifi_sta_handlers + 0x0000000042027824 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x0000000042027824 esp_wifi_set_default_wifi_sta_handlers + *fill* 0x000000004202782e 0x2 + .text.esp_netif_attach_wifi_station + 0x0000000042027830 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x2a (size before relaxing) + 0x0000000042027830 esp_netif_attach_wifi_station + *fill* 0x0000000042027856 0x2 + .text.esp_netif_create_default_wifi_sta + 0x0000000042027858 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x6a (size before relaxing) + 0x0000000042027858 esp_netif_create_default_wifi_sta + *fill* 0x00000000420278b6 0x2 + .text.wifi_sta_receive + 0x00000000420278b8 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_ap_receive + 0x00000000420278d4 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x00000000420278f0 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_free + 0x0000000042027914 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xf (size before relaxing) + *fill* 0x0000000042027920 0x0 + .text.wifi_transmit_wrap + 0x0000000042027920 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_transmit + 0x0000000042027934 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x0000000042027948 0x3d esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000042027948 esp_wifi_create_if_driver + *fill* 0x0000000042027985 0x3 + .text.esp_wifi_get_if_mac + 0x0000000042027988 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000042027988 esp_wifi_get_if_mac + *fill* 0x0000000042027999 0x3 + .text.esp_wifi_register_if_rxcb + 0x000000004202799c 0x9e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xa6 (size before relaxing) + 0x000000004202799c esp_wifi_register_if_rxcb + *fill* 0x0000000042027a3a 0x2 + .text.esp_cpu_intr_enable + 0x0000000042027a3c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027a4a 0x2 + .text.esp_cpu_intr_disable + 0x0000000042027a4c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027a5a 0x2 + .text.queue_create_wrapper + 0x0000000042027a5c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_delete_wrapper + 0x0000000042027a70 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027a7e 0x2 + .text.wifi_thread_semphr_free + 0x0000000042027a80 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027a8f 0x1 + .text.semphr_delete_wrapper + 0x0000000042027a90 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027a9e 0x2 + .text.esp_clk_slowclk_cal_get_wrapper + 0x0000000042027aa0 0x1d esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x21 (size before relaxing) + *fill* 0x0000000042027abd 0x3 + .text.get_time_wrapper + 0x0000000042027ac0 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.wifi_clock_disable_wrapper + 0x0000000042027acc 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000042027ad4 0x0 + .text.wifi_clock_enable_wrapper + 0x0000000042027ad4 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x0000000042027adc 0x0 + .text.wifi_reset_mac_wrapper + 0x0000000042027adc 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042027ae6 0x2 + .text.timer_setfn_wrapper + 0x0000000042027ae8 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042027af6 0x2 + .text.timer_done_wrapper + 0x0000000042027af8 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042027b02 0x2 + .text.esp_event_post_wrapper + 0x0000000042027b04 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x28 (size before relaxing) + .text.task_create_wrapper + 0x0000000042027b28 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027b46 0x2 + .text.task_create_pinned_to_core_wrapper + 0x0000000042027b48 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.event_group_wait_bits_wrapper + 0x0000000042027b6c 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_recv_wrapper + 0x0000000042027b94 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_send_to_front_wrapper + 0x0000000042027bb8 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027bcd 0x3 + .text.queue_send_to_back_wrapper + 0x0000000042027bd0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027be5 0x3 + .text.queue_send_wrapper + 0x0000000042027be8 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027c0e 0x2 + .text.semphr_give_wrapper + 0x0000000042027c10 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027c25 0x3 + .text.recursive_mutex_create_wrapper + 0x0000000042027c28 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_create_wrapper + 0x0000000042027c38 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.semphr_create_wrapper + 0x0000000042027c48 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027c59 0x3 + .text.wifi_thread_semphr_get_wrapper + 0x0000000042027c5c 0x4c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x58 (size before relaxing) + .text.semphr_take_wrapper + 0x0000000042027ca8 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.spin_lock_create_wrapper + 0x0000000042027cc8 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.set_isr_wrapper + 0x0000000042027cf0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042027cfe 0x2 + .text.set_intr_wrapper + 0x0000000042027d00 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027d12 0x2 + .text.wifi_create_queue + 0x0000000042027d14 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000042027d14 wifi_create_queue + .text.wifi_create_queue_wrapper + 0x0000000042027d38 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042027d49 0x3 + .text.wifi_delete_queue + 0x0000000042027d4c 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000042027d4c wifi_delete_queue + *fill* 0x0000000042027d63 0x1 + .text.wifi_delete_queue_wrapper + 0x0000000042027d64 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042027d6e 0x2 + .text.mbedtls_int_div_int + 0x0000000042027d70 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x0000000042027da2 0x2 + .text.mbedtls_mpi_zeroize + 0x0000000042027da4 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + *fill* 0x0000000042027db1 0x3 + .text.mbedtls_mpi_free + 0x0000000042027db4 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x26 (size before relaxing) + 0x0000000042027db4 mbedtls_mpi_free + *fill* 0x0000000042027dd6 0x2 + .text.mbedtls_mpi_grow + 0x0000000042027dd8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + 0x0000000042027dd8 mbedtls_mpi_grow + .text.mbedtls_mpi_resize_clear + 0x0000000042027e24 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x44 (size before relaxing) + .text.mbedtls_mpi_shrink + 0x0000000042027e64 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x79 (size before relaxing) + 0x0000000042027e64 mbedtls_mpi_shrink + *fill* 0x0000000042027ed5 0x3 + .text.mbedtls_mpi_copy + 0x0000000042027ed8 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042027ed8 mbedtls_mpi_copy + *fill* 0x0000000042027f5a 0x2 + .text.mbedtls_mpi_lset + 0x0000000042027f5c 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042027f5c mbedtls_mpi_lset + *fill* 0x0000000042027f9d 0x3 + .text.mbedtls_mpi_set_bit + 0x0000000042027fa0 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042027fa0 mbedtls_mpi_set_bit + *fill* 0x0000000042028005 0x3 + .text.mbedtls_mpi_bitlen + 0x0000000042028008 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028008 mbedtls_mpi_bitlen + *fill* 0x0000000042028019 0x3 + .text.mbedtls_mpi_size + 0x000000004202801c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x000000004202801c mbedtls_mpi_size + *fill* 0x000000004202802b 0x1 + .text.mbedtls_mpi_read_binary + 0x000000004202802c 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2e (size before relaxing) + 0x000000004202802c mbedtls_mpi_read_binary + *fill* 0x0000000042028056 0x2 + .text.mbedtls_mpi_write_binary_le + 0x0000000042028058 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028058 mbedtls_mpi_write_binary_le + *fill* 0x000000004202806d 0x3 + .text.mbedtls_mpi_write_binary + 0x0000000042028070 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028070 mbedtls_mpi_write_binary + *fill* 0x0000000042028085 0x3 + .text.mbedtls_mpi_shift_l + 0x0000000042028088 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb5 (size before relaxing) + 0x0000000042028088 mbedtls_mpi_shift_l + *fill* 0x0000000042028135 0x3 + .text.mbedtls_mpi_shift_r + 0x0000000042028138 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028138 mbedtls_mpi_shift_r + *fill* 0x000000004202814d 0x3 + .text.mbedtls_mpi_cmp_abs + 0x0000000042028150 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028150 mbedtls_mpi_cmp_abs + *fill* 0x00000000420281cd 0x3 + .text.mbedtls_mpi_cmp_mpi + 0x00000000420281d0 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000420281d0 mbedtls_mpi_cmp_mpi + *fill* 0x000000004202826e 0x2 + .text.mbedtls_mpi_cmp_int + 0x0000000042028270 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028270 mbedtls_mpi_cmp_int + *fill* 0x00000000420282a2 0x2 + .text.mbedtls_mpi_add_abs + 0x00000000420282a4 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa0 (size before relaxing) + 0x00000000420282a4 mbedtls_mpi_add_abs + .text.mbedtls_mpi_sub_abs + 0x000000004202833c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa0 (size before relaxing) + 0x000000004202833c mbedtls_mpi_sub_abs + .text.add_sub_mpi + 0x00000000420283d8 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x62 (size before relaxing) + *fill* 0x0000000042028436 0x2 + .text.mbedtls_mpi_add_mpi + 0x0000000042028438 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028438 mbedtls_mpi_add_mpi + *fill* 0x000000004202844d 0x3 + .text.mbedtls_mpi_sub_mpi + 0x0000000042028450 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028450 mbedtls_mpi_sub_mpi + *fill* 0x0000000042028465 0x3 + .text.mbedtls_mpi_add_int + 0x0000000042028468 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042028468 mbedtls_mpi_add_int + *fill* 0x000000004202849d 0x3 + .text.mbedtls_mpi_sub_int + 0x00000000420284a0 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000420284a0 mbedtls_mpi_sub_int + *fill* 0x00000000420284d5 0x3 + .text.mbedtls_mpi_div_mpi + 0x00000000420284d8 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3c0 (size before relaxing) + 0x00000000420284d8 mbedtls_mpi_div_mpi + .text.mbedtls_mpi_div_int + 0x000000004202882c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202882c mbedtls_mpi_div_int + *fill* 0x0000000042028862 0x2 + .text.mbedtls_mpi_mod_mpi + 0x0000000042028864 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6c (size before relaxing) + 0x0000000042028864 mbedtls_mpi_mod_mpi + .text.mbedtls_mpi_mod_int + 0x00000000420288c4 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000420288c4 mbedtls_mpi_mod_int + *fill* 0x0000000042028945 0x3 + .text.mpi_check_small_factors + 0x0000000042028948 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x54 (size before relaxing) + .text.mbedtls_mpi_gcd + 0x0000000042028994 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x130 (size before relaxing) + 0x0000000042028994 mbedtls_mpi_gcd + .text.mbedtls_mpi_fill_random + 0x0000000042028a84 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + 0x0000000042028a84 mbedtls_mpi_fill_random + *fill* 0x0000000042028ab2 0x2 + .text.mpi_miller_rabin + 0x0000000042028ab4 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x205 (size before relaxing) + *fill* 0x0000000042028c65 0x3 + .text.mbedtls_mpi_random + 0x0000000042028c68 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x40 (size before relaxing) + 0x0000000042028c68 mbedtls_mpi_random + .text.mbedtls_mpi_inv_mod + 0x0000000042028ca0 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x334 (size before relaxing) + 0x0000000042028ca0 mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x0000000042028f40 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x64 (size before relaxing) + 0x0000000042028f40 mbedtls_mpi_is_prime_ext + .text.mbedtls_mpi_core_clz + 0x0000000042028f98 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042028f98 mbedtls_mpi_core_clz + *fill* 0x0000000042028fb5 0x3 + .text.mbedtls_mpi_core_bitlen + 0x0000000042028fb8 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042028fb8 mbedtls_mpi_core_bitlen + *fill* 0x0000000042028fed 0x3 + .text.mbedtls_mpi_core_bigendian_to_host + 0x0000000042028ff0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x30 (size before relaxing) + 0x0000000042028ff0 mbedtls_mpi_core_bigendian_to_host + .text.mbedtls_mpi_core_uint_le_mpi + 0x000000004202901c 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x000000004202901c mbedtls_mpi_core_uint_le_mpi + .text.mbedtls_mpi_core_cond_assign + 0x0000000042029050 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042029050 mbedtls_mpi_core_cond_assign + *fill* 0x0000000042029067 0x1 + .text.mbedtls_mpi_core_cond_swap + 0x0000000042029068 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x3e (size before relaxing) + 0x0000000042029068 mbedtls_mpi_core_cond_swap + *fill* 0x00000000420290a2 0x2 + .text.mbedtls_mpi_core_read_be + 0x00000000420290a4 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x52 (size before relaxing) + 0x00000000420290a4 mbedtls_mpi_core_read_be + *fill* 0x00000000420290f2 0x2 + .text.mbedtls_mpi_core_write_le + 0x00000000420290f4 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x00000000420290f4 mbedtls_mpi_core_write_le + *fill* 0x0000000042029166 0x2 + .text.mbedtls_mpi_core_write_be + 0x0000000042029168 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042029168 mbedtls_mpi_core_write_be + .text.mbedtls_mpi_core_shift_r + 0x00000000420291d8 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x00000000420291d8 mbedtls_mpi_core_shift_r + *fill* 0x000000004202926b 0x1 + .text.mbedtls_mpi_core_fill_random + 0x000000004202926c 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x62 (size before relaxing) + 0x000000004202926c mbedtls_mpi_core_fill_random + *fill* 0x00000000420292ca 0x2 + .text.mbedtls_mpi_core_random + 0x00000000420292cc 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x96 (size before relaxing) + 0x00000000420292cc mbedtls_mpi_core_random + *fill* 0x0000000042029356 0x2 + .text.get_pkcs_padding + 0x0000000042029358 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x00000000420293c2 0x2 + .text.get_one_and_zeros_padding + 0x00000000420293c4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x000000004202942a 0x2 + .text.get_zeros_and_len_padding + 0x000000004202942c 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_padding + 0x0000000042029494 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x00000000420294e2 0x2 + .text.get_no_padding + 0x00000000420294e4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000042029505 0x3 + .text.mbedtls_cipher_info_from_type + 0x0000000042029508 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000042029508 mbedtls_cipher_info_from_type + *fill* 0x0000000042029521 0x3 + .text.mbedtls_cipher_info_from_values + 0x0000000042029524 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000042029524 mbedtls_cipher_info_from_values + *fill* 0x0000000042029549 0x3 + .text.mbedtls_cipher_init + 0x000000004202954c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004202954c mbedtls_cipher_init + *fill* 0x000000004202955e 0x2 + .text.mbedtls_cipher_free + 0x0000000042029560 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x36 (size before relaxing) + 0x0000000042029560 mbedtls_cipher_free + *fill* 0x000000004202958f 0x1 + .text.mbedtls_cipher_setkey + 0x0000000042029590 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000042029590 mbedtls_cipher_setkey + *fill* 0x00000000420295fd 0x3 + .text.mbedtls_cipher_update + 0x0000000042029600 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x23c (size before relaxing) + 0x0000000042029600 mbedtls_cipher_update + .text.mbedtls_cipher_set_padding_mode + 0x0000000042029838 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000042029838 mbedtls_cipher_set_padding_mode + *fill* 0x00000000420298bf 0x1 + .text.mbedtls_cipher_setup + 0x00000000420298c0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x00000000420298c0 mbedtls_cipher_setup + *fill* 0x00000000420298f9 0x3 + .text.ccm_ctx_free + 0x00000000420298fc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004202990e 0x2 + .text.ccm_ctx_alloc + 0x0000000042029910 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000042029926 0x2 + .text.ccm_aria_setkey_wrap + 0x0000000042029928 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004202993d 0x3 + .text.ccm_aes_setkey_wrap + 0x0000000042029940 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029955 0x3 + .text.gcm_ctx_free + 0x0000000042029958 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004202996a 0x2 + .text.gcm_ctx_alloc + 0x000000004202996c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000042029982 0x2 + .text.gcm_aria_setkey_wrap + 0x0000000042029984 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029999 0x3 + .text.gcm_aes_setkey_wrap + 0x000000004202999c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000420299b1 0x3 + .text.aria_ctx_free + 0x00000000420299b4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000420299c6 0x2 + .text.aria_ctx_alloc + 0x00000000420299c8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000420299de 0x2 + .text.aria_setkey_dec_wrap + 0x00000000420299e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_setkey_enc_wrap + 0x00000000420299f0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_crypt_ctr_wrap + 0x0000000042029a00 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029a1d 0x3 + .text.aria_crypt_cfb128_wrap + 0x0000000042029a20 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029a3d 0x3 + .text.aria_crypt_cbc_wrap + 0x0000000042029a40 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029a59 0x3 + .text.aria_crypt_ecb_wrap + 0x0000000042029a5c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_ctx_free + 0x0000000042029a6c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x0000000042029a7f 0x1 + .text.xts_aes_ctx_alloc + 0x0000000042029a80 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000042029a96 0x2 + .text.xts_aes_setkey_dec_wrap + 0x0000000042029a98 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x0000000042029aa8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x0000000042029ab8 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029add 0x3 + .text.aes_ctx_free + 0x0000000042029ae0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000042029af2 0x2 + .text.aes_ctx_alloc + 0x0000000042029af4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000042029b0a 0x2 + .text.aes_setkey_dec_wrap + 0x0000000042029b0c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_setkey_enc_wrap + 0x0000000042029b1c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x0000000042029b2c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029b49 0x3 + .text.aes_crypt_ofb_wrap + 0x0000000042029b4c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029b65 0x3 + .text.aes_crypt_cfb128_wrap + 0x0000000042029b68 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029b85 0x3 + .text.aes_crypt_cbc_wrap + 0x0000000042029b88 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029ba1 0x3 + .text.aes_crypt_ecb_wrap + 0x0000000042029ba4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000042029bb9 0x3 + .text.mbedtls_ct_uint_if + 0x0000000042029bbc 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x17 (size before relaxing) + 0x0000000042029bbc mbedtls_ct_uint_if + *fill* 0x0000000042029bcf 0x1 + .text.mbedtls_ct_mem_move_to_left + 0x0000000042029bd0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x74 (size before relaxing) + .text.mbedtls_mpi_safe_cond_assign + 0x0000000042029c40 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5c (size before relaxing) + 0x0000000042029c40 mbedtls_mpi_safe_cond_assign + .text.mbedtls_mpi_safe_cond_swap + 0x0000000042029c90 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5e (size before relaxing) + 0x0000000042029c90 mbedtls_mpi_safe_cond_swap + *fill* 0x0000000042029cde 0x2 + .text.mbedtls_mpi_core_lt_ct + 0x0000000042029ce0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4c (size before relaxing) + 0x0000000042029ce0 mbedtls_mpi_core_lt_ct + .text.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x0000000042029d28 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x110 (size before relaxing) + 0x0000000042029d28 mbedtls_ct_rsaes_pkcs1_v15_unpadding + .text.cmac_multiply_by_u + 0x0000000042029e1c 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x0000000042029e75 0x3 + .text.cmac_generate_subkeys + 0x0000000042029e78 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x50 (size before relaxing) + .text.mbedtls_cipher_cmac_starts + 0x0000000042029ebc 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x74 (size before relaxing) + 0x0000000042029ebc mbedtls_cipher_cmac_starts + .text.mbedtls_cipher_cmac_update + 0x0000000042029f2c 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x0000000042029f2c mbedtls_cipher_cmac_update + *fill* 0x000000004202a02a 0x2 + .text.mbedtls_cipher_cmac_finish + 0x000000004202a02c 0x105 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x121 (size before relaxing) + 0x000000004202a02c mbedtls_cipher_cmac_finish + *fill* 0x000000004202a131 0x3 + .text.mbedtls_md_info_from_type + 0x000000004202a134 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a134 mbedtls_md_info_from_type + *fill* 0x000000004202a17e 0x2 + .text.mbedtls_md_free + 0x000000004202a180 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x94 (size before relaxing) + 0x000000004202a180 mbedtls_md_free + .text.mbedtls_md_setup + 0x000000004202a204 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x142 (size before relaxing) + 0x000000004202a204 mbedtls_md_setup + *fill* 0x000000004202a316 0x2 + .text.mbedtls_md_starts + 0x000000004202a318 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a318 mbedtls_md_starts + .text.mbedtls_md_update + 0x000000004202a3ac 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a3ac mbedtls_md_update + *fill* 0x000000004202a451 0x3 + .text.mbedtls_md_finish + 0x000000004202a454 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a454 mbedtls_md_finish + *fill* 0x000000004202a4f1 0x3 + .text.mbedtls_md + 0x000000004202a4f4 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a4f4 mbedtls_md + *fill* 0x000000004202a595 0x3 + .text.mbedtls_md_hmac_starts + 0x000000004202a598 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe7 (size before relaxing) + 0x000000004202a598 mbedtls_md_hmac_starts + *fill* 0x000000004202a66b 0x1 + .text.mbedtls_md_hmac_update + 0x000000004202a66c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004202a66c mbedtls_md_hmac_update + *fill* 0x000000004202a69d 0x3 + .text.mbedtls_md_hmac_finish + 0x000000004202a6a0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x78 (size before relaxing) + 0x000000004202a6a0 mbedtls_md_hmac_finish + .text.mbedtls_md_hmac_reset + 0x000000004202a708 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x44 (size before relaxing) + 0x000000004202a708 mbedtls_md_hmac_reset + .text.mbedtls_md5 + 0x000000004202a744 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x000000004202a744 mbedtls_md5 + *fill* 0x000000004202a775 0x3 + .text.pkcs5_pbkdf2_hmac + 0x000000004202a778 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x138 (size before relaxing) + .text.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x000000004202a894 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x5d (size before relaxing) + 0x000000004202a894 mbedtls_pkcs5_pbkdf2_hmac_ext + *fill* 0x000000004202a8e5 0x3 + .text.mbedtls_calloc + 0x000000004202a8e8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000004202a8e8 mbedtls_calloc + .text.mbedtls_free + 0x000000004202a8fc 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000004202a8fc mbedtls_free + *fill* 0x000000004202a90b 0x1 + .text.mbedtls_platform_zeroize + 0x000000004202a90c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x000000004202a90c mbedtls_platform_zeroize + .text.mbedtls_sha1 + 0x000000004202a924 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x000000004202a924 mbedtls_sha1 + *fill* 0x000000004202a955 0x3 + .text.mbedtls_sha256 + 0x000000004202a958 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x4a (size before relaxing) + 0x000000004202a958 mbedtls_sha256 + *fill* 0x000000004202a996 0x2 + .text.mbedtls_sha512 + 0x000000004202a998 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x4a (size before relaxing) + 0x000000004202a998 mbedtls_sha512 + *fill* 0x000000004202a9d6 0x2 + .text.esp_aes_xts_init + 0x000000004202a9d8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x000000004202a9d8 esp_aes_xts_init + *fill* 0x000000004202a9e8 0x0 + .text.esp_aes_xts_free + 0x000000004202a9e8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x000000004202a9e8 esp_aes_xts_free + *fill* 0x000000004202a9f8 0x0 + .text.esp_aes_xts_setkey_enc + 0x000000004202a9f8 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x36 (size before relaxing) + 0x000000004202a9f8 esp_aes_xts_setkey_enc + *fill* 0x000000004202aa26 0x2 + .text.esp_aes_xts_setkey_dec + 0x000000004202aa28 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x36 (size before relaxing) + 0x000000004202aa28 esp_aes_xts_setkey_dec + *fill* 0x000000004202aa56 0x2 + .text.esp_aes_crypt_xts + 0x000000004202aa58 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17a (size before relaxing) + 0x000000004202aa58 esp_aes_crypt_xts + *fill* 0x000000004202abce 0x2 + .text.esp_aes_init + 0x000000004202abd0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x000000004202abd0 esp_aes_init + *fill* 0x000000004202abe2 0x2 + .text.esp_aes_free + 0x000000004202abe4 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x000000004202abe4 esp_aes_free + *fill* 0x000000004202abf7 0x1 + .text.esp_aes_setkey + 0x000000004202abf8 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x000000004202abf8 esp_aes_setkey + .text.s_check_dma_capable + 0x000000004202ac3c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000004202ac55 0x3 + .text.esp_aes_validate_input + 0x000000004202ac58 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_isr_initialise + 0x000000004202acc0 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000004202ad2a 0x2 + .text.esp_aes_dma_wait_complete + 0x000000004202ad2c 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000004202ad6e 0x2 + .text.esp_aes_process_dma + 0x000000004202ad70 0x292 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x2aa (size before relaxing) + *fill* 0x000000004202b002 0x2 + .text.esp_aes_process_dma_ext_ram + 0x000000004202b004 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x108 (size before relaxing) + .text.esp_aes_acquire_hardware + 0x000000004202b108 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x13 (size before relaxing) + 0x000000004202b108 esp_aes_acquire_hardware + *fill* 0x000000004202b117 0x1 + .text.esp_aes_release_hardware + 0x000000004202b118 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + 0x000000004202b118 esp_aes_release_hardware + *fill* 0x000000004202b125 0x3 + .text.esp_aes_crypt_ecb + 0x000000004202b128 0x57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x6f (size before relaxing) + 0x000000004202b128 esp_aes_crypt_ecb + *fill* 0x000000004202b17f 0x1 + .text.esp_aes_crypt_cbc + 0x000000004202b180 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xbe (size before relaxing) + 0x000000004202b180 esp_aes_crypt_cbc + *fill* 0x000000004202b226 0x2 + .text.esp_aes_crypt_cfb128 + 0x000000004202b228 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x170 (size before relaxing) + 0x000000004202b228 esp_aes_crypt_cfb128 + .text.esp_aes_crypt_ofb + 0x000000004202b384 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x115 (size before relaxing) + 0x000000004202b384 esp_aes_crypt_ofb + *fill* 0x000000004202b481 0x3 + .text.esp_aes_crypt_ctr + 0x000000004202b484 0x12d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x145 (size before relaxing) + 0x000000004202b484 esp_aes_crypt_ctr + *fill* 0x000000004202b5b1 0x3 + .text.mpi_words + 0x000000004202b5b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.modular_inverse + 0x000000004202b5d4 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x000000004202b648 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004202b673 0x1 + .text.esp_mpi_isr_initialise + 0x000000004202b674 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x66 (size before relaxing) + *fill* 0x000000004202b6d6 0x2 + .text.esp_mpi_wait_intr + 0x000000004202b6d8 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000004202b715 0x3 + .text.esp_mpi_exp_mod + 0x000000004202b718 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x170 (size before relaxing) + .text.mpi_mult_mpi_failover_mod_mult + 0x000000004202b848 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x81 (size before relaxing) + *fill* 0x000000004202b8b6 0x2 + .text.mbedtls_mpi_exp_mod + 0x000000004202b8b8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + 0x000000004202b8b8 mbedtls_mpi_exp_mod + .text.mbedtls_mpi_mul_mpi + 0x000000004202b8cc 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x138 (size before relaxing) + 0x000000004202b8cc mbedtls_mpi_mul_mpi + .text.mpi_mult_mpi_overlong + 0x000000004202b9e8 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x6e (size before relaxing) + *fill* 0x000000004202ba4a 0x2 + .text.mbedtls_mpi_mul_int + 0x000000004202ba4c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x20 (size before relaxing) + 0x000000004202ba4c mbedtls_mpi_mul_int + .text.esp_mpi_enable_hardware_hw_op + 0x000000004202ba68 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3b (size before relaxing) + 0x000000004202ba68 esp_mpi_enable_hardware_hw_op + *fill* 0x000000004202ba9f 0x1 + .text.esp_mpi_disable_hardware_hw_op + 0x000000004202baa0 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x25 (size before relaxing) + 0x000000004202baa0 esp_mpi_disable_hardware_hw_op + *fill* 0x000000004202bac1 0x3 + .text.esp_mpi_interrupt_enable + 0x000000004202bac4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202bac4 esp_mpi_interrupt_enable + .text.esp_mpi_interrupt_clear + 0x000000004202bad4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202bad4 esp_mpi_interrupt_clear + *fill* 0x000000004202bae3 0x1 + .text.esp_mpi_read_result_hw_op + 0x000000004202bae4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202bae4 esp_mpi_read_result_hw_op + *fill* 0x000000004202bb1e 0x2 + .text.esp_mpi_exp_mpi_mod_hw_op + 0x000000004202bb20 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x11a (size before relaxing) + 0x000000004202bb20 esp_mpi_exp_mpi_mod_hw_op + *fill* 0x000000004202bc36 0x2 + .text.esp_mpi_mul_mpi_hw_op + 0x000000004202bc38 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202bc38 esp_mpi_mul_mpi_hw_op + *fill* 0x000000004202bcbd 0x3 + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x000000004202bcc0 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004202bcc0 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x000000004202bd85 0x3 + .text.esp_internal_sha1_dma_process + 0x000000004202bd88 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x20 (size before relaxing) + .text.esp_internal_sha_update_state + 0x000000004202bda4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004202bdcb 0x1 + .text.mbedtls_sha1_init + 0x000000004202bdcc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004202bdcc mbedtls_sha1_init + *fill* 0x000000004202bdde 0x2 + .text.mbedtls_sha1_free + 0x000000004202bde0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x12 (size before relaxing) + 0x000000004202bde0 mbedtls_sha1_free + *fill* 0x000000004202bdef 0x1 + .text.mbedtls_sha1_starts + 0x000000004202bdf0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x000000004202bdf0 mbedtls_sha1_starts + .text.mbedtls_sha1_update + 0x000000004202be08 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0xd0 (size before relaxing) + 0x000000004202be08 mbedtls_sha1_update + .text.mbedtls_sha1_finish + 0x000000004202bec8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x82 (size before relaxing) + 0x000000004202bec8 mbedtls_sha1_finish + *fill* 0x000000004202bf46 0x2 + .text.esp_internal_sha_update_state + 0x000000004202bf48 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004202bf6f 0x1 + .text.mbedtls_sha256_init + 0x000000004202bf70 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004202bf70 mbedtls_sha256_init + *fill* 0x000000004202bf82 0x2 + .text.mbedtls_sha256_free + 0x000000004202bf84 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x12 (size before relaxing) + 0x000000004202bf84 mbedtls_sha256_free + *fill* 0x000000004202bf93 0x1 + .text.mbedtls_sha256_starts + 0x000000004202bf94 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x000000004202bf94 mbedtls_sha256_starts + *fill* 0x000000004202bfb7 0x1 + .text.mbedtls_sha256_update + 0x000000004202bfb8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xc8 (size before relaxing) + 0x000000004202bfb8 mbedtls_sha256_update + .text.mbedtls_sha256_finish + 0x000000004202c070 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x82 (size before relaxing) + 0x000000004202c070 mbedtls_sha256_finish + *fill* 0x000000004202c0ee 0x2 + .text.esp_internal_sha_update_state + 0x000000004202c0f0 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x50 (size before relaxing) + .text.esp_internal_sha512_dma_process + 0x000000004202c13c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x000000004202c15e 0x2 + .text.mbedtls_sha512_init + 0x000000004202c160 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004202c160 mbedtls_sha512_init + *fill* 0x000000004202c172 0x2 + .text.mbedtls_sha512_free + 0x000000004202c174 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x12 (size before relaxing) + 0x000000004202c174 mbedtls_sha512_free + *fill* 0x000000004202c183 0x1 + .text.mbedtls_sha512_starts + 0x000000004202c184 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x000000004202c184 mbedtls_sha512_starts + *fill* 0x000000004202c1a5 0x3 + .text.mbedtls_sha512_update + 0x000000004202c1a8 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x100 (size before relaxing) + 0x000000004202c1a8 mbedtls_sha512_update + .text.mbedtls_sha512_finish + 0x000000004202c294 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xdd (size before relaxing) + 0x000000004202c294 mbedtls_sha512_finish + *fill* 0x000000004202c36d 0x3 + .text.gcm_mult + 0x000000004202c370 0x129 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000004202c499 0x3 + .text.increment32_j0 + 0x000000004202c49c 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x000000004202c4de 0x2 + .text.esp_gcm_ghash + 0x000000004202c4e0 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5a (size before relaxing) + *fill* 0x000000004202c52e 0x2 + .text.esp_aes_gcm_setkey + 0x000000004202c530 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004202c530 esp_aes_gcm_setkey + *fill* 0x000000004202c572 0x2 + .text.esp_aes_gcm_init + 0x000000004202c574 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004202c574 esp_aes_gcm_init + .text.esp_aes_gcm_free + 0x000000004202c588 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x000000004202c588 esp_aes_gcm_free + .text.esp_aes_gcm_update + 0x000000004202c59c 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x13a (size before relaxing) + 0x000000004202c59c esp_aes_gcm_update + *fill* 0x000000004202c6ce 0x2 + .text.esp_md5_finish + 0x000000004202c6d0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004202c6d0 esp_md5_finish + *fill* 0x000000004202c6e1 0x3 + .text.esp_md5_update + 0x000000004202c6e4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004202c6e4 esp_md5_update + .text.esp_md5_init + 0x000000004202c6f8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x000000004202c6f8 esp_md5_init + *fill* 0x000000004202c706 0x2 + .text.esp_md5_starts + 0x000000004202c708 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x10 (size before relaxing) + 0x000000004202c708 esp_md5_starts + .text.esp_md5_free + 0x000000004202c714 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x12 (size before relaxing) + 0x000000004202c714 esp_md5_free + *fill* 0x000000004202c722 0x2 + .text.aria_fe_xor + 0x000000004202c724 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x000000004202c863 0x1 + .text.aria_fo_xor + 0x000000004202c864 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x000000004202c9a3 0x1 + .text.mbedtls_aria_setkey_enc + 0x000000004202c9a4 0x219 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x22d (size before relaxing) + 0x000000004202c9a4 mbedtls_aria_setkey_enc + *fill* 0x000000004202cbbd 0x3 + .text.mbedtls_aria_setkey_dec + 0x000000004202cbc0 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14e (size before relaxing) + 0x000000004202cbc0 mbedtls_aria_setkey_dec + *fill* 0x000000004202cd0a 0x2 + .text.mbedtls_aria_crypt_ecb + 0x000000004202cd0c 0x363 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x367 (size before relaxing) + 0x000000004202cd0c mbedtls_aria_crypt_ecb + *fill* 0x000000004202d06f 0x1 + .text.mbedtls_aria_init + 0x000000004202d070 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004202d070 mbedtls_aria_init + *fill* 0x000000004202d082 0x2 + .text.mbedtls_aria_free + 0x000000004202d084 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x12 (size before relaxing) + 0x000000004202d084 mbedtls_aria_free + *fill* 0x000000004202d093 0x1 + .text.mbedtls_aria_crypt_cbc + 0x000000004202d094 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004202d094 mbedtls_aria_crypt_cbc + *fill* 0x000000004202d146 0x2 + .text.mbedtls_aria_crypt_cfb128 + 0x000000004202d148 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004202d148 mbedtls_aria_crypt_cfb128 + *fill* 0x000000004202d1d1 0x3 + .text.mbedtls_aria_crypt_ctr + 0x000000004202d1d4 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x000000004202d1d4 mbedtls_aria_crypt_ctr + .text.mbedtls_asn1_get_tag + 0x000000004202d244 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004202d244 mbedtls_asn1_get_tag + *fill* 0x000000004202d279 0x3 + .text.mbedtls_asn1_get_mpi + 0x000000004202d27c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x2c (size before relaxing) + 0x000000004202d27c mbedtls_asn1_get_mpi + .text.mbedtls_ccm_crypt + 0x000000004202d2a4 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x68 (size before relaxing) + .text.mbedtls_ccm_init + 0x000000004202d308 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x000000004202d308 mbedtls_ccm_init + *fill* 0x000000004202d31a 0x2 + .text.mbedtls_ccm_setkey + 0x000000004202d31c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x50 (size before relaxing) + 0x000000004202d31c mbedtls_ccm_setkey + .text.mbedtls_ccm_free + 0x000000004202d360 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1b (size before relaxing) + 0x000000004202d360 mbedtls_ccm_free + *fill* 0x000000004202d377 0x1 + .text.mbedtls_ccm_update + 0x000000004202d378 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1c0 (size before relaxing) + 0x000000004202d378 mbedtls_ccm_update + .text.mbedtls_oid_get_oid_by_md + 0x000000004202d530 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000004202d530 mbedtls_oid_get_oid_by_md + *fill* 0x000000004202d556 0x2 + .text.esp_aes_dma_start + 0x000000004202d558 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x14 (size before relaxing) + 0x000000004202d558 esp_aes_dma_start + .text.crypto_shared_gdma_init + 0x000000004202d568 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x10c (size before relaxing) + .text.esp_crypto_shared_gdma_start + 0x000000004202d668 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0xbc (size before relaxing) + 0x000000004202d668 esp_crypto_shared_gdma_start + .text.s_check_dma_capable + 0x000000004202d714 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000004202d72d 0x3 + .text.esp_sha_block_mode + 0x000000004202d730 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000004202d785 0x3 + .text.esp_sha_dma_process + 0x000000004202d788 0x147 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x14f (size before relaxing) + *fill* 0x000000004202d8cf 0x1 + .text.esp_sha_write_digest_state + 0x000000004202d8d0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000004202d8d0 esp_sha_write_digest_state + *fill* 0x000000004202d8df 0x1 + .text.esp_sha_read_digest_state + 0x000000004202d8e0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x000000004202d8e0 esp_sha_read_digest_state + *fill* 0x000000004202d8ef 0x1 + .text.esp_sha_acquire_hardware + 0x000000004202d8f0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x13 (size before relaxing) + 0x000000004202d8f0 esp_sha_acquire_hardware + *fill* 0x000000004202d8ff 0x1 + .text.esp_sha_release_hardware + 0x000000004202d900 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x14 (size before relaxing) + 0x000000004202d900 esp_sha_release_hardware + *fill* 0x000000004202d90d 0x3 + .text.esp_sha_512_t_init_hash + 0x000000004202d910 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x110 (size before relaxing) + 0x000000004202d910 esp_sha_512_t_init_hash + *fill* 0x000000004202da1d 0x3 + .text.esp_sha_dma + 0x000000004202da20 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x11e (size before relaxing) + 0x000000004202da20 esp_sha_dma + *fill* 0x000000004202db36 0x2 + .text.esp_sha_dma_start + 0x000000004202db38 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x14 (size before relaxing) + 0x000000004202db38 esp_sha_dma_start + .text.esp_wifi_internal_reg_netstack_buf_cb_local + 0x000000004202db48 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x16 (size before relaxing) + 0x000000004202db48 esp_wifi_internal_reg_netstack_buf_cb_local + *fill* 0x000000004202db56 0x2 + .text.esp_wifi_send_deauth_local + 0x000000004202db58 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x14 (size before relaxing) + 0x000000004202db58 esp_wifi_send_deauth_local + *fill* 0x000000004202db65 0x3 + .text.wifi_get_init_state + 0x000000004202db68 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000004202db6c wifi_get_init_state + *fill* 0x000000004202db76 0x2 + .text.wifi_is_stop_in_progress + 0x000000004202db78 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000004202db7c wifi_is_stop_in_progress + *fill* 0x000000004202db87 0x1 + .text.wifi_api_lock + 0x000000004202db88 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x56 (size before relaxing) + 0x000000004202db94 wifi_api_lock + *fill* 0x000000004202dbd6 0x2 + .text.wifi_api_unlock + 0x000000004202dbd8 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x000000004202dbd8 wifi_api_unlock + *fill* 0x000000004202dbf9 0x3 + .text.wifi_init_completed + 0x000000004202dbfc 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x000000004202dbfc wifi_init_completed + *fill* 0x000000004202dc1f 0x1 + .text.wifi_station_get_config_local$part$4 + 0x000000004202dc20 0x15c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x18b (size before relaxing) + *fill* 0x000000004202dd7c 0x0 + .text.wifi_softap_get_config + 0x000000004202dd7c 0x132 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x17a (size before relaxing) + 0x000000004202dd80 wifi_softap_get_config + *fill* 0x000000004202deae 0x2 + .text.esp_wifi_get_mode + 0x000000004202deb0 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x44 (size before relaxing) + 0x000000004202deb4 esp_wifi_get_mode + .text.wifi_softap_deauth + 0x000000004202dedc 0x8f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xbe (size before relaxing) + 0x000000004202dee0 wifi_softap_deauth + *fill* 0x000000004202df6b 0x1 + .text.wifi_deinit_in_caller_task + 0x000000004202df6c 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x42 (size before relaxing) + 0x000000004202df70 wifi_deinit_in_caller_task + *fill* 0x000000004202df96 0x2 + .text.wifi_init_in_caller_task + 0x000000004202df98 0x7d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xac (size before relaxing) + 0x000000004202dfa0 wifi_init_in_caller_task + *fill* 0x000000004202e015 0x3 + .text.wifi_osi_funcs_register + 0x000000004202e018 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x000000004202e028 wifi_osi_funcs_register + *fill* 0x000000004202e06a 0x2 + .text.net80211_data_ptr_init + 0x000000004202e06c 0xcf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xd7 (size before relaxing) + 0x000000004202e0c8 net80211_data_ptr_init + *fill* 0x000000004202e13b 0x1 + .text.net80211_softap_funcs_init + 0x000000004202e13c 0x57 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x5e (size before relaxing) + 0x000000004202e15c net80211_softap_funcs_init + *fill* 0x000000004202e193 0x1 + .text.net80211_funcs_init + 0x000000004202e194 0x208 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x22c (size before relaxing) + 0x000000004202e254 net80211_funcs_init + .text.net80211_funcs_deinit + 0x000000004202e39c 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x25 (size before relaxing) + 0x000000004202e39c net80211_funcs_deinit + *fill* 0x000000004202e3b9 0x3 + .text.esp_wifi_init_internal + 0x000000004202e3bc 0x100 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x188 (size before relaxing) + 0x000000004202e3d0 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x000000004202e4bc 0xd4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x150 (size before relaxing) + 0x000000004202e4cc esp_wifi_deinit_internal + .text.esp_wifi_set_mode + 0x000000004202e590 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4e (size before relaxing) + 0x000000004202e594 esp_wifi_set_mode + *fill* 0x000000004202e5ca 0x2 + .text.esp_wifi_start + 0x000000004202e5cc 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4a (size before relaxing) + 0x000000004202e5d0 esp_wifi_start + *fill* 0x000000004202e5fe 0x2 + .text.esp_wifi_stop + 0x000000004202e600 0x173 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x1cf (size before relaxing) + 0x000000004202e624 esp_wifi_stop + *fill* 0x000000004202e773 0x1 + .text.esp_wifi_connect + 0x000000004202e774 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x000000004202e778 esp_wifi_connect + *fill* 0x000000004202e7b6 0x2 + .text.esp_wifi_deauth_sta + 0x000000004202e7b8 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x70 (size before relaxing) + 0x000000004202e7bc esp_wifi_deauth_sta + .text.esp_wifi_set_config + 0x000000004202e80c 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x82 (size before relaxing) + 0x000000004202e814 esp_wifi_set_config + *fill* 0x000000004202e876 0x2 + .text.esp_wifi_get_config + 0x000000004202e878 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x000000004202e878 esp_wifi_get_config + .text.esp_wifi_get_mac + 0x000000004202e8b0 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x000000004202e8b0 esp_wifi_get_mac + .text.esp_wifi_internal_reg_rxcb + 0x000000004202e8e0 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x62 (size before relaxing) + 0x000000004202e8e4 esp_wifi_internal_reg_rxcb + *fill* 0x000000004202e92a 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x000000004202e92c 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x000000004202e92c esp_wifi_internal_set_sta_ip + *fill* 0x000000004202e952 0x2 + .text.wifi_event_post + 0x000000004202e954 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x000000004202e958 wifi_event_post + *fill* 0x000000004202e98f 0x1 + .text.wifi_mesh_event_post + 0x000000004202e990 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x000000004202e998 wifi_mesh_event_post + *fill* 0x000000004202e9cf 0x1 + .text.esp_wifi_vnd_lora_enable + 0x000000004202e9d0 0x9f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0xb3 (size before relaxing) + 0x000000004202e9d0 esp_wifi_vnd_lora_enable + *fill* 0x000000004202ea6f 0x1 + .text.esp_wifi_vnd_lora_disable + 0x000000004202ea70 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4c (size before relaxing) + 0x000000004202ea70 esp_wifi_vnd_lora_disable + .text.esp_wifi_get_event_mask + 0x000000004202eab0 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2c (size before relaxing) + 0x000000004202eab4 esp_wifi_get_event_mask + .text.esp_wifi_ipc_internal + 0x000000004202ead4 0x10e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x13e (size before relaxing) + 0x000000004202eadc esp_wifi_ipc_internal + *fill* 0x000000004202ebe2 0x2 + .text.esp_wifi_internal_set_log_level + 0x000000004202ebe4 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x000000004202ebe8 esp_wifi_internal_set_log_level + .text.esp_wifi_internal_on_coex_start + 0x000000004202ebf4 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x5e (size before relaxing) + 0x000000004202ebf8 esp_wifi_internal_on_coex_start + *fill* 0x000000004202ec36 0x2 + .text.esp_wifi_internal_reg_netstack_buf_cb + 0x000000004202ec38 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2a (size before relaxing) + 0x000000004202ec3c esp_wifi_internal_reg_netstack_buf_cb + *fill* 0x000000004202ec5e 0x2 + .text.esp_wifi_internal_issue_disconnect + 0x000000004202ec60 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x2a (size before relaxing) + 0x000000004202ec64 esp_wifi_internal_issue_disconnect + *fill* 0x000000004202ec86 0x2 + .text.esp_mesh_map_deauth + 0x000000004202ec88 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x70 (size before relaxing) + 0x000000004202ec8c esp_mesh_map_deauth + .text.esp_mesh_get_running_active_duty_cycle + 0x000000004202ecdc 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x49 (size before relaxing) + 0x000000004202ece0 esp_mesh_get_running_active_duty_cycle + *fill* 0x000000004202ed19 0x3 + .text.ieee80211_freedom_inside_cb + 0x000000004202ed1c 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x32 (size before relaxing) + 0x000000004202ed1c ieee80211_freedom_inside_cb + *fill* 0x000000004202ed4a 0x2 + .text.ieee80211_send_sa_query + 0x000000004202ed4c 0x95 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xb9 (size before relaxing) + *fill* 0x000000004202ede1 0x3 + .text.ieee80211_send_sa_query_resp + 0x000000004202ede4 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_send_sa_query_req + 0x000000004202ee04 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_resp + 0x000000004202ee24 0xc2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xda (size before relaxing) + *fill* 0x000000004202eee6 0x2 + .text.ieee80211_recv_sa_query_req + 0x000000004202eee8 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_rate_ref_init + 0x000000004202ef0c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x1c (size before relaxing) + 0x000000004202ef0c ieee80211_rate_ref_init + .text.ieee80211_freedom_init + 0x000000004202ef24 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x2c (size before relaxing) + 0x000000004202ef28 ieee80211_freedom_init + .text.ieee80211_user_ie_init + 0x000000004202ef48 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x3c (size before relaxing) + 0x000000004202ef4c ieee80211_user_ie_init + .text.ieee80211_ifattach + 0x000000004202ef7c 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x10e (size before relaxing) + 0x000000004202ef7c ieee80211_ifattach + *fill* 0x000000004202f02e 0x2 + .text.ieee80211_ifdetach + 0x000000004202f030 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x25 (size before relaxing) + 0x000000004202f030 ieee80211_ifdetach + *fill* 0x000000004202f041 0x3 + .text.wifi_destroy_softap + 0x000000004202f044 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x80 (size before relaxing) + 0x000000004202f044 wifi_destroy_softap + .text.wifi_destroy_sta + 0x000000004202f0a4 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x000000004202f0a4 wifi_destroy_sta + *fill* 0x000000004202f10a 0x2 + .text.ieee80211_setup_pmf + 0x000000004202f10c 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x5b (size before relaxing) + 0x000000004202f11c ieee80211_setup_pmf + *fill* 0x000000004202f14b 0x1 + .text.wifi_create_softap + 0x000000004202f14c 0xae E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xe2 (size before relaxing) + 0x000000004202f150 wifi_create_softap + *fill* 0x000000004202f1fa 0x2 + .text.wifi_create_sta + 0x000000004202f1fc 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0xf6 (size before relaxing) + 0x000000004202f204 wifi_create_sta + *fill* 0x000000004202f2b2 0x2 + .text.wifi_mode_set + 0x000000004202f2b4 0x13e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x166 (size before relaxing) + 0x000000004202f2c4 wifi_mode_set + *fill* 0x000000004202f3f2 0x2 + .text.ieee80211_crypto_decap + 0x000000004202f3f4 0xa1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0xb1 (size before relaxing) + 0x000000004202f3fc ieee80211_crypto_decap + *fill* 0x000000004202f495 0x3 + .text.ieee80211_crypto_aes_128_cmac_encrypt + 0x000000004202f498 0xee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x116 (size before relaxing) + 0x000000004202f4a0 ieee80211_crypto_aes_128_cmac_encrypt + *fill* 0x000000004202f586 0x2 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x000000004202f588 0x141 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x16d (size before relaxing) + 0x000000004202f598 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x000000004202f6c9 0x3 + .text.ieee80211_crypto_gmac_decrypt + 0x000000004202f6cc 0x19f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x1d3 (size before relaxing) + 0x000000004202f6dc ieee80211_crypto_gmac_decrypt + *fill* 0x000000004202f86b 0x1 + .text.wifi_log + 0x000000004202f86c 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0xb4 (size before relaxing) + 0x000000004202f880 wifi_log + .text.ieee80211_getmgtframe + 0x000000004202f918 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + 0x41 (size before relaxing) + 0x000000004202f91c ieee80211_getmgtframe + *fill* 0x000000004202f955 0x3 + .text.ieee80211_getbcnframe + 0x000000004202f958 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + 0x8a (size before relaxing) + 0x000000004202f968 ieee80211_getbcnframe + *fill* 0x000000004202f9ce 0x2 + .text.ftm_is_responder_supported + 0x000000004202f9d0 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x28 (size before relaxing) + 0x000000004202f9d0 ftm_is_responder_supported + .text.ftm_is_supported + 0x000000004202f9f0 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x1b (size before relaxing) + 0x000000004202f9f0 ftm_is_supported + *fill* 0x000000004202fa07 0x1 + .text.unlikely.is_non_esp_oui + 0x000000004202fa08 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000004202fa3a 0x2 + .text.unlikely.is_esp_manufacturer_oui + 0x000000004202fa3c 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_beacon_txcb + 0x000000004202fa78 0xba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xea (size before relaxing) + 0x000000004202fa8c ieee80211_hostapd_beacon_txcb + *fill* 0x000000004202fb32 0x2 + .text.ieee80211_hostap_send_beacon + 0x000000004202fb34 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004202fb42 0x2 + .text.hostap_handle_timer + 0x000000004202fb44 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x000000004202fb44 hostap_handle_timer + *fill* 0x000000004202fb52 0x2 + .text.ap_try_sa_query + 0x000000004202fb54 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004202fb62 0x2 + .text.ap_sa_query_timeout + 0x000000004202fb64 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x000000004202fb72 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x000000004202fb74 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x3a (size before relaxing) + 0x000000004202fb74 ieee80211_hostapd_ps_txcb + *fill* 0x000000004202fb9e 0x2 + .text.ieee80211_free_beacon_eb + 0x000000004202fba0 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x43 (size before relaxing) + 0x000000004202fba4 ieee80211_free_beacon_eb + *fill* 0x000000004202fbd7 0x1 + .text.ieee80211_hostap_send_beacon_process + 0x000000004202fbd8 0x2bc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x33c (size before relaxing) + 0x000000004202fbfc ieee80211_hostap_send_beacon_process + .text.hostap_delete_ptk + 0x000000004202fe94 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x44 (size before relaxing) + 0x000000004202fe94 hostap_delete_ptk + .text.ieee80211_hostap_attach + 0x000000004202fec4 0x192 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x20a (size before relaxing) + 0x000000004202fee0 ieee80211_hostap_attach + *fill* 0x0000000042030056 0x2 + .text.hostap_deliver_data + 0x0000000042030058 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x96 (size before relaxing) + 0x0000000042030064 hostap_deliver_data + *fill* 0x00000000420300de 0x2 + .text.hostap_handle_timer_process + 0x00000000420300e0 0x14f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1ae (size before relaxing) + 0x00000000420300fc hostap_handle_timer_process + *fill* 0x000000004203022f 0x1 + .text.wifi_ap_reg_rxcb + 0x0000000042030230 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xe (size before relaxing) + 0x0000000042030230 wifi_ap_reg_rxcb + *fill* 0x000000004203023a 0x2 + .text.ap_rx_cb + 0x000000004203023c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x28 (size before relaxing) + 0x000000004203023c ap_rx_cb + .text.hostap_auth_open + 0x000000004203025c 0x134 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x188 (size before relaxing) + 0x000000004203026c hostap_auth_open + .text.hostap_recv_ctl + 0x0000000042030390 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x134 (size before relaxing) + 0x0000000042030398 hostap_recv_ctl + .text.wifi_softap_start + 0x000000004203048c 0x2dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x390 (size before relaxing) + 0x00000000420304ac wifi_softap_start + .text.wifi_softap_stop + 0x0000000042030768 0x13e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x1a6 (size before relaxing) + 0x000000004203076c wifi_softap_stop + *fill* 0x00000000420308a6 0x2 + .text.ap_sa_query_timeout_process + 0x00000000420308a8 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xae (size before relaxing) + 0x00000000420308b0 ap_sa_query_timeout_process + *fill* 0x0000000042030922 0x2 + .text.ap_try_sa_query_process + 0x0000000042030924 0x162 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x18a (size before relaxing) + 0x0000000042030938 ap_try_sa_query_process + *fill* 0x0000000042030a86 0x2 + .text.hostap_recv_mgmt + 0x0000000042030a88 0xb77 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xcdb (size before relaxing) + 0x0000000042030ac8 hostap_recv_mgmt + *fill* 0x00000000420315ff 0x1 + .text.hostap_input + 0x0000000042031600 0x5c2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x672 (size before relaxing) + 0x0000000042031618 hostap_input + *fill* 0x0000000042031bc2 0x2 + .text.add_mic_ie_bip + 0x0000000042031bc4 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x66 (size before relaxing) + 0x0000000042031bc4 add_mic_ie_bip + *fill* 0x0000000042031c16 0x2 + .text.addba_stop_timeout + 0x0000000042031c18 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x22 (size before relaxing) + *fill* 0x0000000042031c36 0x2 + .text.ieee80211_ampdu_init_age_timer + 0x0000000042031c38 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x45 (size before relaxing) + *fill* 0x0000000042031c75 0x3 + .text.ht_send_action_ba_addba + 0x0000000042031c78 0x181 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1a5 (size before relaxing) + *fill* 0x0000000042031df9 0x3 + .text.ieee80211_ampdu_timeout + 0x0000000042031dfc 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000042031e0a 0x2 + .text.addba_timeout + 0x0000000042031e0c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000042031e1a 0x2 + .text.ieee80211_ampdu_stop_age_timer$part$0 + 0x0000000042031e1c 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x2a (size before relaxing) + *fill* 0x0000000042031e3a 0x2 + .text.ieee80211_add_htcap_body + 0x0000000042031e3c 0x1cc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1e0 (size before relaxing) + .text.ht_recv_action_ba_addba_response + 0x0000000042032008 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x15c (size before relaxing) + .text.ampdu_tx_stop + 0x000000004203212c 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x70 (size before relaxing) + .text.ieee80211_ampdu_deinit_age_timer$part$1 + 0x0000000042032184 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x34 (size before relaxing) + .text.ht_send_action_ba_delba + 0x00000000420321a8 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x148 (size before relaxing) + .text.addba_response_txcb + 0x00000000420322cc 0x145 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x169 (size before relaxing) + *fill* 0x0000000042032411 0x3 + .text.ieee80211_ht_attach + 0x0000000042032414 0x190 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x21c (size before relaxing) + 0x0000000042032440 ieee80211_ht_attach + .text.ampdu_free_rx_ba_index + 0x00000000420325a4 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x39 (size before relaxing) + 0x00000000420325a8 ampdu_free_rx_ba_index + *fill* 0x00000000420325d5 0x3 + .text.ampdu_rx_stop + 0x00000000420325d8 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xce (size before relaxing) + *fill* 0x000000004203268e 0x2 + .text.ht_recv_action_ba_delba + 0x0000000042032690 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x62 (size before relaxing) + *fill* 0x00000000420326d7 0x1 + .text.ampdu_alloc_rx_ba_index + 0x00000000420326d8 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x76 (size before relaxing) + 0x00000000420326dc ampdu_alloc_rx_ba_index + *fill* 0x000000004203273e 0x2 + .text.ht_recv_action_ba_addba_request + 0x0000000042032740 0x180 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1b4 (size before relaxing) + .text.ieee80211_ht_deattach + 0x00000000420328c0 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x78 (size before relaxing) + 0x00000000420328c8 ieee80211_ht_deattach + .text.ieee80211_ampdu_enable + 0x0000000042032920 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1b (size before relaxing) + 0x0000000042032920 ieee80211_ampdu_enable + *fill* 0x0000000042032937 0x1 + .text.addba_timeout_process + 0x0000000042032938 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x57 (size before relaxing) + 0x0000000042032938 addba_timeout_process + *fill* 0x000000004203298b 0x1 + .text.ieee80211_ampdu_request + 0x000000004203298c 0x1ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x220 (size before relaxing) + 0x00000000420329b0 ieee80211_ampdu_request + .text.ieee80211_ampdu_age_bss + 0x0000000042032b78 0xca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xd6 (size before relaxing) + *fill* 0x0000000042032c42 0x2 + .text.ieee80211_ampdu_age_all + 0x0000000042032c44 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x96 (size before relaxing) + 0x0000000042032c44 ieee80211_ampdu_age_all + *fill* 0x0000000042032cba 0x2 + .text.ieee80211_recv_bar + 0x0000000042032cbc 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x87 (size before relaxing) + 0x0000000042032cc0 ieee80211_recv_bar + *fill* 0x0000000042032d2f 0x1 + .text.ieee80211_ht_node_cleanup + 0x0000000042032d30 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x0000000042032d30 ieee80211_ht_node_cleanup + .text.ieee80211_ht_node_init + 0x0000000042032d5c 0x6b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x87 (size before relaxing) + 0x0000000042032d64 ieee80211_ht_node_init + *fill* 0x0000000042032dc7 0x1 + .text.ieee80211_parse_htcap + 0x0000000042032dc8 0xd8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xf0 (size before relaxing) + 0x0000000042032dd4 ieee80211_parse_htcap + .text.ieee80211_has_ht40_bss + 0x0000000042032ea0 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xb0 (size before relaxing) + 0x0000000042032ea0 ieee80211_has_ht40_bss + .text.ieee80211_update_channel + 0x0000000042032f48 0x306 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x38a (size before relaxing) + 0x0000000042032f5c ieee80211_update_channel + *fill* 0x000000004203324e 0x2 + .text.ieee80211_ht_updatehtcap + 0x0000000042033250 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x3a (size before relaxing) + 0x0000000042033250 ieee80211_ht_updatehtcap + *fill* 0x000000004203327b 0x1 + .text.ieee80211_ht_updateparams + 0x000000004203327c 0x194 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1e0 (size before relaxing) + 0x0000000042033294 ieee80211_ht_updateparams + .text.ieee80211_setup_htrates + 0x0000000042033410 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xca (size before relaxing) + 0x0000000042033414 ieee80211_setup_htrates + *fill* 0x00000000420334c2 0x2 + .text.ieee80211_setup_basic_htrates + 0x00000000420334c4 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0xa2 (size before relaxing) + 0x00000000420334cc ieee80211_setup_basic_htrates + *fill* 0x0000000042033552 0x2 + .text.ieee80211_add_htcap + 0x0000000042033554 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x4e (size before relaxing) + 0x000000004203355c ieee80211_add_htcap + *fill* 0x0000000042033592 0x2 + .text.ieee80211_add_htcap_vendor + 0x0000000042033594 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x35 (size before relaxing) + 0x0000000042033594 ieee80211_add_htcap_vendor + *fill* 0x00000000420335c5 0x3 + .text.ieee80211_add_htinfo_body + 0x00000000420335c8 0x11a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x136 (size before relaxing) + 0x00000000420335d0 ieee80211_add_htinfo_body + *fill* 0x00000000420336e2 0x2 + .text.ieee80211_add_htinfo + 0x00000000420336e4 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x4e (size before relaxing) + 0x00000000420336ec ieee80211_add_htinfo + *fill* 0x0000000042033722 0x2 + .text.ieee80211_add_htinfo_vendor + 0x0000000042033724 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x64 (size before relaxing) + 0x000000004203372c ieee80211_add_htinfo_vendor + .text.ieee80211_decap1 + 0x0000000042033778 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x000000004203377c ieee80211_decap1 + .text.ieee80211_decap_amsdu + 0x00000000420337dc 0xf6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x11e (size before relaxing) + 0x00000000420337e0 ieee80211_decap_amsdu + *fill* 0x00000000420338d2 0x2 + .text.ieee80211_add_ie_vendor_esp_head + 0x00000000420338d4 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x00000000420338d8 ieee80211_add_ie_vendor_esp_head + *fill* 0x0000000042033903 0x1 + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x0000000042033904 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x48 (size before relaxing) + 0x0000000042033904 ieee80211_add_ie_vendor_esp_manufacturer + .text.wpa_cipher + 0x0000000042033944 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x7e (size before relaxing) + *fill* 0x00000000420339b6 0x2 + .text.rsn_cipher + 0x00000000420339b8 0xce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + *fill* 0x0000000042033a86 0x2 + .text.ieee80211_decap + 0x0000000042033a88 0x1b3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x1d7 (size before relaxing) + 0x0000000042033a98 ieee80211_decap + *fill* 0x0000000042033c3b 0x1 + .text.ieee80211_setup_rates + 0x0000000042033c3c 0xc9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xd1 (size before relaxing) + 0x0000000042033c3c ieee80211_setup_rates + *fill* 0x0000000042033d05 0x3 + .text.ieee80211_set_max_rate + 0x0000000042033d08 0xf2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x112 (size before relaxing) + 0x0000000042033d14 ieee80211_set_max_rate + *fill* 0x0000000042033dfa 0x2 + .text.ieee80211_setup_phy_mode + 0x0000000042033dfc 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xd0 (size before relaxing) + 0x0000000042033e08 ieee80211_setup_phy_mode + .text.ieee80211_setup_lr_rates + 0x0000000042033ebc 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x68 (size before relaxing) + 0x0000000042033ebc ieee80211_setup_lr_rates + .text.ieee80211_alloc_challenge + 0x0000000042033f20 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x48 (size before relaxing) + 0x0000000042033f24 ieee80211_alloc_challenge + .text.ieee80211_parse_beacon + 0x0000000042033f5c 0x592 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x5ce (size before relaxing) + 0x0000000042033f7c ieee80211_parse_beacon + *fill* 0x00000000420344ee 0x2 + .text.ieee80211_parse_wpa + 0x00000000420344f0 0xe2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xfa (size before relaxing) + 0x00000000420344f0 ieee80211_parse_wpa + *fill* 0x00000000420345d2 0x2 + .text.ieee80211_rsn_cipher_priority + 0x00000000420345d4 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x2e (size before relaxing) + 0x00000000420345d8 ieee80211_rsn_cipher_priority + *fill* 0x00000000420345fe 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x0000000042034600 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x35 (size before relaxing) + 0x0000000042034600 ieee80211_better_rsn_pairwise_cipher + *fill* 0x0000000042034625 0x3 + .text.ieee80211_amsdu_negotiate + 0x0000000042034628 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xc0 (size before relaxing) + 0x0000000042034630 ieee80211_amsdu_negotiate + .text.ieee80211_parse_rsn + 0x00000000420346d8 0x5f8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x670 (size before relaxing) + 0x000000004203476c ieee80211_parse_rsn + .text.ieee80211_is_ht_cipher + 0x0000000042034cd0 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x0000000042034cd0 ieee80211_is_ht_cipher + *fill* 0x0000000042034cf7 0x1 + .text.ieee80211_parse_wapi + 0x0000000042034cf8 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x90 (size before relaxing) + 0x0000000042034cfc ieee80211_parse_wapi + .text.ieee80211_parse_action + 0x0000000042034d7c 0xd2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0xda (size before relaxing) + 0x0000000042034d7c ieee80211_parse_action + *fill* 0x0000000042034e4e 0x2 + .text.wifi_pmk_is_valid + 0x0000000042034e50 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x0000000042034e75 0x3 + .text.ieee80211_ioctl_process + 0x0000000042034e78 0xe2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xfe (size before relaxing) + 0x0000000042034e80 ieee80211_ioctl_process + *fill* 0x0000000042034f5a 0x2 + .text.wifi_station_set_config_local_2 + 0x0000000042034f5c 0x3e6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4c6 (size before relaxing) + *fill* 0x0000000042035342 0x2 + .text.current_task_is_wifi_task + 0x0000000042035344 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x0000000042035348 current_task_is_wifi_task + *fill* 0x0000000042035367 0x1 + .text._do_wifi_stop + 0x0000000042035368 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4d (size before relaxing) + 0x0000000042035368 _do_wifi_stop + *fill* 0x00000000420353a5 0x3 + .text._do_wifi_start + 0x00000000420353a8 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x98 (size before relaxing) + 0x00000000420353ac _do_wifi_start + .text.ieee80211_set_phy_bw + 0x0000000042035420 0x18a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1d1 (size before relaxing) + 0x0000000042035420 ieee80211_set_phy_bw + *fill* 0x00000000420355aa 0x2 + .text.wifi_station_save_ap_channel + 0x00000000420355ac 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x76 (size before relaxing) + 0x00000000420355ac wifi_station_save_ap_channel + *fill* 0x0000000042035602 0x2 + .text.ieee80211_sta_connect + 0x0000000042035604 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xfc (size before relaxing) + 0x0000000042035618 ieee80211_sta_connect + .text._do_wifi_connect + 0x00000000420356c4 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4a (size before relaxing) + *fill* 0x00000000420356fb 0x1 + .text.ieee80211_sta_disconnect + 0x00000000420356fc 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xbe (size before relaxing) + 0x00000000420356fc ieee80211_sta_disconnect + *fill* 0x000000004203578a 0x2 + .text._do_wifi_disconnect + 0x000000004203578c 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xa4 (size before relaxing) + .text.wifi_softap_max_support_num + 0x0000000042035808 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x32 (size before relaxing) + 0x0000000042035808 wifi_softap_max_support_num + *fill* 0x000000004203582a 0x2 + .text.wifi_softap_set_config + 0x000000004203582c 0x659 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x799 (size before relaxing) + 0x000000004203584c wifi_softap_set_config + *fill* 0x0000000042035e85 0x3 + .text.chip_enable + 0x0000000042035e88 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x0000000042035e8c chip_enable + .text.chip_disable + 0x0000000042035ea8 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x0000000042035eac chip_disable + .text.wifi_reset_mac + 0x0000000042035ec8 0x4f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x5b (size before relaxing) + 0x0000000042035ed0 wifi_reset_mac + *fill* 0x0000000042035f17 0x1 + .text.wifi_hw_start + 0x0000000042035f18 0x113 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x162 (size before relaxing) + 0x0000000042035f2c wifi_hw_start + *fill* 0x000000004203602b 0x1 + .text.wifi_txq_empty + 0x000000004203602c 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x000000004203602c wifi_txq_empty + .text.wifi_stop_sw_txq + 0x0000000042036050 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x0000000042036054 wifi_stop_sw_txq + .text.wifi_hw_stop + 0x000000004203607c 0x114 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x164 (size before relaxing) + 0x000000004203608c wifi_hw_stop + .text.wifi_set_mode_process + 0x0000000042036190 0x154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1b8 (size before relaxing) + 0x0000000042036190 wifi_set_mode_process + .text.wifi_menuconfig_init + 0x00000000420362e4 0x197 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1af (size before relaxing) + 0x0000000042036314 wifi_menuconfig_init + *fill* 0x000000004203647b 0x1 + .text.wpa_crypto_funcs_init + 0x000000004203647c 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x45 (size before relaxing) + 0x0000000042036484 wpa_crypto_funcs_init + *fill* 0x00000000420364b1 0x3 + .text.wifi_crypto_init + 0x00000000420364b4 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x00000000420364b4 wifi_crypto_init + .text.wifi_hmac_init + 0x00000000420364c0 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x54 (size before relaxing) + 0x00000000420364c8 wifi_hmac_init + .text.wifi_lmac_init + 0x00000000420364ec 0xd6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x126 (size before relaxing) + 0x0000000042036510 wifi_lmac_init + *fill* 0x00000000420365c2 0x2 + .text.wifi_deinit + 0x00000000420365c4 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3e (size before relaxing) + 0x00000000420365c4 wifi_deinit + *fill* 0x00000000420365e2 0x2 + .text.wifi_init_process + 0x00000000420365e4 0x9d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xdc (size before relaxing) + 0x00000000420365e8 wifi_init_process + *fill* 0x0000000042036681 0x3 + .text.wifi_deinit_process + 0x0000000042036684 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x0000000042036684 wifi_deinit_process + *fill* 0x000000004203668e 0x2 + .text.wifi_start_process + 0x0000000042036690 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x9e (size before relaxing) + 0x0000000042036690 wifi_start_process + *fill* 0x00000000420366f6 0x2 + .text.wifi_stop_process + 0x00000000420366f8 0xe4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x134 (size before relaxing) + 0x00000000420366fc wifi_stop_process + .text.wifi_connect_process + 0x00000000420367dc 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x5b (size before relaxing) + 0x00000000420367e4 wifi_connect_process + *fill* 0x000000004203681f 0x1 + .text.wifi_disconnect_process + 0x0000000042036820 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x78 (size before relaxing) + 0x0000000042036828 wifi_disconnect_process + .text.wifi_set_config_process + 0x000000004203687c 0x314 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x374 (size before relaxing) + 0x0000000042036888 wifi_set_config_process + .text.wifi_set_rxcb_process + 0x0000000042036b90 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2c (size before relaxing) + 0x0000000042036b90 wifi_set_rxcb_process + .text.wifi_deauth_sta_process + 0x0000000042036bb4 0xf2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x136 (size before relaxing) + 0x0000000042036bb8 wifi_deauth_sta_process + *fill* 0x0000000042036ca6 0x2 + .text.wifi_wps_is_started + 0x0000000042036ca8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x0000000042036cac wifi_wps_is_started + *fill* 0x0000000042036cb7 0x1 + .text.wifi_wpa2_is_started + 0x0000000042036cb8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x0000000042036cbc wifi_wpa2_is_started + *fill* 0x0000000042036cc7 0x1 + .text.wifi_ipc_process + 0x0000000042036cc8 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x62 (size before relaxing) + 0x0000000042036cd0 wifi_ipc_process + *fill* 0x0000000042036d22 0x2 + .text.ieee80211_set_appie + 0x0000000042036d24 0x163 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x177 (size before relaxing) + 0x0000000042036d2c ieee80211_set_appie + *fill* 0x0000000042036e87 0x1 + .text.wifi_set_appie_process + 0x0000000042036e88 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x0000000042036e88 wifi_set_appie_process + .text.wifi_register_mgmt_frame + 0x0000000042036ea0 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x18 (size before relaxing) + 0x0000000042036ea0 wifi_register_mgmt_frame + .text.wifi_on_coex_start_process + 0x0000000042036eb4 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0xf (size before relaxing) + 0x0000000042036eb4 wifi_on_coex_start_process + *fill* 0x0000000042036ebc 0x0 + .text.wifi_mesh_map_deauth_progress + 0x0000000042036ebc 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x90 (size before relaxing) + 0x0000000042036ebc wifi_mesh_map_deauth_progress + .text.wifi_mesh_ps_duty_cycle_get_process + 0x0000000042036f30 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x0000000042036f30 wifi_mesh_ps_duty_cycle_get_process + *fill* 0x0000000042036f55 0x3 + .text.ieee80211_ioctl_init + 0x0000000042036f58 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x0000000042036f60 ieee80211_ioctl_init + .text.ieee80211_ioctl_deinit + 0x0000000042036f7c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x10 (size before relaxing) + 0x0000000042036f7c ieee80211_ioctl_deinit + .text.ieee80211_ioctl + 0x0000000042036f88 0x17a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x1d6 (size before relaxing) + 0x0000000042036f98 ieee80211_ioctl + *fill* 0x0000000042037102 0x2 + .text.is_esp_mesh_assoc + 0x0000000042037104 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0xd8 (size before relaxing) + 0x000000004203710c is_esp_mesh_assoc + .text.wifi_nvs_cfg_item_init + 0x00000000420371d4 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x92 (size before relaxing) + 0x00000000420371e0 wifi_nvs_cfg_item_init + *fill* 0x0000000042037256 0x2 + .text.wifi_nvs_cfg_init + 0x0000000042037258 0x6ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x878 (size before relaxing) + 0x00000000420373dc wifi_nvs_cfg_init + .text.wifi_nvs_get + 0x0000000042037944 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x0000000042037944 wifi_nvs_get + *fill* 0x000000004203794e 0x2 + .text.wifi_nvs_commit + 0x0000000042037950 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x4a (size before relaxing) + 0x0000000042037950 wifi_nvs_commit + *fill* 0x000000004203798a 0x2 + .text.wifi_nvs_set + 0x000000004203798c 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x19a (size before relaxing) + 0x00000000420379a4 wifi_nvs_set + *fill* 0x0000000042037afa 0x2 + .text.ieee80211_adjust_2nd_chan + 0x0000000042037afc 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x76 (size before relaxing) + 0x0000000042037afc ieee80211_adjust_2nd_chan + *fill* 0x0000000042037b5a 0x2 + .text.wifi_nvs_compare_cfg_diff + 0x0000000042037b5c 0x16e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x182 (size before relaxing) + 0x0000000042037b64 wifi_nvs_compare_cfg_diff + *fill* 0x0000000042037cca 0x2 + .text.wifi_set_default_ssid + 0x0000000042037ccc 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x55 (size before relaxing) + 0x0000000042037cd0 wifi_set_default_ssid + *fill* 0x0000000042037d0d 0x3 + .text.wifi_nvs_validate_ap_ssid + 0x0000000042037d10 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x22 (size before relaxing) + 0x0000000042037d10 wifi_nvs_validate_ap_ssid + *fill* 0x0000000042037d2a 0x2 + .text.wifi_nvs_validate_ap_password + 0x0000000042037d2c 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x0000000042037d2c wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x0000000042037d64 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x4c (size before relaxing) + 0x0000000042037d64 wifi_nvs_validate_sta_password + .text.wifi_nvs_validate_country + 0x0000000042037da0 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x52 (size before relaxing) + 0x0000000042037da0 wifi_nvs_validate_country + *fill* 0x0000000042037dee 0x2 + .text.wifi_nvs_validate_ap_chan + 0x0000000042037df0 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x6b (size before relaxing) + 0x0000000042037df0 wifi_nvs_validate_ap_chan + *fill* 0x0000000042037e3b 0x1 + .text.wifi_nvs_validate_ap_num + 0x0000000042037e3c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x1c (size before relaxing) + 0x0000000042037e3c wifi_nvs_validate_ap_num + .text.wifi_nvs_validate_sta_listen_interval + 0x0000000042037e54 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x1a (size before relaxing) + 0x0000000042037e54 wifi_nvs_validate_sta_listen_interval + *fill* 0x0000000042037e6a 0x2 + .text.wifi_nvs_load + 0x0000000042037e6c 0x29e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x32a (size before relaxing) + *fill* 0x000000004203810a 0x2 + .text.wifi_nvs_get_sta_listen_interval + 0x000000004203810c 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x000000004203810c wifi_nvs_get_sta_listen_interval + *fill* 0x0000000042038119 0x3 + .text.wifi_nvs_reset_current_ap_info + 0x000000004203811c 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x84 (size before relaxing) + 0x000000004203811c wifi_nvs_reset_current_ap_info + .text.wifi_nvs_deinit + 0x0000000042038184 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0x52 (size before relaxing) + 0x0000000042038184 wifi_nvs_deinit + *fill* 0x00000000420381c6 0x2 + .text.wifi_nvs_init + 0x00000000420381c8 0x75 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xa1 (size before relaxing) + 0x00000000420381d4 wifi_nvs_init + *fill* 0x000000004203823d 0x3 + .text.add_appie + 0x0000000042038240 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + *fill* 0x0000000042038257 0x1 + .text.ieee80211_vnd_ie_size$part$7 + 0x0000000042038258 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x35 (size before relaxing) + *fill* 0x0000000042038289 0x3 + .text.ieee80211_reg_netstack_buf_cb + 0x000000004203828c 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x0000000042038294 ieee80211_reg_netstack_buf_cb + *fill* 0x00000000420382a3 0x1 + .text.ieee80211_set_hmac_stop + 0x00000000420382a4 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x00000000420382a4 ieee80211_set_hmac_stop + *fill* 0x00000000420382d2 0x2 + .text.ieee80211_alloc_tx_buf + 0x00000000420382d4 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x68 (size before relaxing) + 0x00000000420382d8 ieee80211_alloc_tx_buf + .text.ieee80211_empty_txq + 0x000000004203832c 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x8a (size before relaxing) + 0x000000004203832c ieee80211_empty_txq + *fill* 0x00000000420383a6 0x2 + .text.ieee80211_post_hmac_tx + 0x00000000420383a8 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x55 (size before relaxing) + 0x00000000420383a8 ieee80211_post_hmac_tx + *fill* 0x00000000420383e5 0x3 + .text.ieee80211_amsdu_adjust_head + 0x00000000420383e8 0xc5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xd9 (size before relaxing) + 0x00000000420383e8 ieee80211_amsdu_adjust_head + *fill* 0x00000000420384ad 0x3 + .text.ieee80211_amsdu_adjust_last_length + 0x00000000420384b0 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2e (size before relaxing) + 0x00000000420384b0 ieee80211_amsdu_adjust_last_length + *fill* 0x00000000420384da 0x2 + .text.ieee80211_amsdu_length_check + 0x00000000420384dc 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x00000000420384dc ieee80211_amsdu_length_check + *fill* 0x0000000042038505 0x3 + .text.ieee80211_output_init + 0x0000000042038508 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x33 (size before relaxing) + 0x0000000042038510 ieee80211_output_init + *fill* 0x000000004203852f 0x1 + .text.ieee80211_send_setup + 0x0000000042038530 0x11e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x142 (size before relaxing) + 0x0000000042038540 ieee80211_send_setup + *fill* 0x000000004203864e 0x2 + .text.ieee80211_tx_mgt_cb + 0x0000000042038650 0x10b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x133 (size before relaxing) + 0x0000000042038650 ieee80211_tx_mgt_cb + *fill* 0x000000004203875b 0x1 + .text.ieee80211_add_rates + 0x000000004203875c 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2e (size before relaxing) + 0x000000004203875c ieee80211_add_rates + *fill* 0x0000000042038786 0x2 + .text.ieee80211_add_dsparams + 0x0000000042038788 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x21 (size before relaxing) + 0x0000000042038788 ieee80211_add_dsparams + *fill* 0x00000000420387a5 0x3 + .text.ieee80211_add_xrates + 0x00000000420387a8 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2c (size before relaxing) + 0x00000000420387a8 ieee80211_add_xrates + .text.ieee80211_add_probe_resp_app_ies + 0x00000000420387d0 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x00000000420387d0 ieee80211_add_probe_resp_app_ies + *fill* 0x00000000420387ef 0x1 + .text.ieee80211_add_beacon_app_ies + 0x00000000420387f0 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x00000000420387f0 ieee80211_add_beacon_app_ies + *fill* 0x000000004203880f 0x1 + .text.ieee80211_add_assoc_resp_ies + 0x0000000042038810 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x0000000042038810 ieee80211_add_assoc_resp_ies + *fill* 0x000000004203882e 0x2 + .text.ieee80211_add_assoc_req_ies + 0x0000000042038830 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x0000000042038830 ieee80211_add_assoc_req_ies + *fill* 0x000000004203884e 0x2 + .text.ieee80211_add_probe_req_ies + 0x0000000042038850 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x0000000042038850 ieee80211_add_probe_req_ies + *fill* 0x000000004203886e 0x2 + .text.ieee80211_add_wme_param + 0x0000000042038870 0x79 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x7d (size before relaxing) + 0x0000000042038878 ieee80211_add_wme_param + *fill* 0x00000000420388e9 0x3 + .text.ieee80211_add_csa + 0x00000000420388ec 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2c (size before relaxing) + 0x00000000420388ec ieee80211_add_csa + .text.ieee80211_add_extcap + 0x0000000042038914 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x6a (size before relaxing) + 0x000000004203891c ieee80211_add_extcap + *fill* 0x0000000042038962 0x2 + .text.ieee80211_vnd_ie_set + 0x0000000042038964 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x40 (size before relaxing) + 0x0000000042038964 ieee80211_vnd_ie_set + .text.ieee80211_vnd_lora_ie_size + 0x000000004203899c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1c (size before relaxing) + 0x000000004203899c ieee80211_vnd_lora_ie_size + .text.ieee80211_vnd_lora_ie_set + 0x00000000420389b4 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x00000000420389b4 ieee80211_vnd_lora_ie_set + *fill* 0x00000000420389e6 0x2 + .text.ieee80211_setup_robust_mgmtframe + 0x00000000420389e8 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x9e (size before relaxing) + 0x00000000420389ec ieee80211_setup_robust_mgmtframe + *fill* 0x0000000042038a76 0x2 + .text.ieee80211_mgmt_output + 0x0000000042038a78 0x1f8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x244 (size before relaxing) + 0x0000000042038a88 ieee80211_mgmt_output + .text.ieee80211_getcapinfo + 0x0000000042038c70 0x97 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xaf (size before relaxing) + 0x0000000042038c7c ieee80211_getcapinfo + *fill* 0x0000000042038d07 0x1 + .text.ieee80211_assoc_req_construct + 0x0000000042038d08 0x438 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4fc (size before relaxing) + 0x0000000042038d30 ieee80211_assoc_req_construct + .text.ieee80211_assoc_resp_construct + 0x0000000042039140 0x2c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x374 (size before relaxing) + 0x0000000042039158 ieee80211_assoc_resp_construct + .text.ieee80211_auth_construct + 0x0000000042039408 0x2bf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2f7 (size before relaxing) + 0x0000000042039410 ieee80211_auth_construct + *fill* 0x00000000420396c7 0x1 + .text.ieee80211_deauth_construct + 0x00000000420396c8 0x97 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xa3 (size before relaxing) + 0x00000000420396cc ieee80211_deauth_construct + *fill* 0x000000004203975f 0x1 + .text.ieee80211_disassoc_construct + 0x0000000042039760 0x96 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xa2 (size before relaxing) + 0x0000000042039764 ieee80211_disassoc_construct + *fill* 0x00000000420397f6 0x2 + .text.ieee80211_output_do + 0x00000000420397f8 0x1e2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x20a (size before relaxing) + 0x0000000042039810 ieee80211_output_do + *fill* 0x00000000420399da 0x2 + .text.ieee80211_output + 0x00000000420399dc 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x00000000420399dc ieee80211_output + *fill* 0x00000000420399f5 0x3 + .text.esp_wifi_internal_tx + 0x00000000420399f8 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x00000000420399f8 esp_wifi_internal_tx + *fill* 0x0000000042039a11 0x3 + .text.ieee80211_amsdu_send_check + 0x0000000042039a14 0xa7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0xaf (size before relaxing) + 0x0000000042039a1c ieee80211_amsdu_send_check + *fill* 0x0000000042039abb 0x1 + .text.ieee80211_amsdu_encap_check + 0x0000000042039abc 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x70 (size before relaxing) + 0x0000000042039abc ieee80211_amsdu_encap_check + .text.ieee80211_encap_amsdu + 0x0000000042039b20 0x170 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1b4 (size before relaxing) + 0x0000000042039b24 ieee80211_encap_amsdu + .text.ieee80211_alloc_proberesp + 0x0000000042039c90 0x286 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x34e (size before relaxing) + 0x0000000042039ca0 ieee80211_alloc_proberesp + *fill* 0x0000000042039f16 0x2 + .text.ieee80211_alloc_deauth + 0x0000000042039f18 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x4d (size before relaxing) + 0x0000000042039f1c ieee80211_alloc_deauth + *fill* 0x0000000042039f59 0x3 + .text.ieee80211_output_raw_process + 0x0000000042039f5c 0x184 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x1c0 (size before relaxing) + 0x0000000042039f6c ieee80211_output_raw_process + .text.ieee80211_beacon_construct + 0x000000004203a0e0 0x237 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2cb (size before relaxing) + 0x000000004203a0e0 ieee80211_beacon_construct + *fill* 0x000000004203a317 0x1 + .text.ieee80211_send_nulldata + 0x000000004203a318 0x12d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x185 (size before relaxing) + 0x000000004203a320 ieee80211_send_nulldata + *fill* 0x000000004203a445 0x3 + .text.ieee80211_send_probereq + 0x000000004203a448 0x215 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x299 (size before relaxing) + 0x000000004203a450 ieee80211_send_probereq + *fill* 0x000000004203a65d 0x3 + .text.ieee80211_send_mgmt + 0x000000004203a660 0xd4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x11c (size before relaxing) + 0x000000004203a668 ieee80211_send_mgmt + .text.ieee80211_send_proberesp + 0x000000004203a734 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x130 (size before relaxing) + 0x000000004203a73c ieee80211_send_proberesp + .text.ieee80211_send_deauth + 0x000000004203a81c 0xf9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x13d (size before relaxing) + 0x000000004203a824 ieee80211_send_deauth + *fill* 0x000000004203a915 0x3 + .text.ieee80211_beacon_alloc + 0x000000004203a918 0x20e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x286 (size before relaxing) + 0x000000004203a934 ieee80211_beacon_alloc + *fill* 0x000000004203ab26 0x2 + .text.ieee80211_encap_null_data + 0x000000004203ab28 0x100 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x13c (size before relaxing) + 0x000000004203ab30 ieee80211_encap_null_data + .text.ieee80211_pm_tx_null_process + 0x000000004203ac28 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x32 (size before relaxing) + 0x000000004203ac28 ieee80211_pm_tx_null_process + *fill* 0x000000004203ac4e 0x2 + .text.ieee80211_phy_deinit + 0x000000004203ac50 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x11 (size before relaxing) + 0x000000004203ac50 ieee80211_phy_deinit + *fill* 0x000000004203ac5a 0x2 + .text.ieee80211_phy_type_get + 0x000000004203ac5c 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x5f (size before relaxing) + 0x000000004203ac5c ieee80211_phy_type_get + *fill* 0x000000004203acb7 0x1 + .text.ieee80211_phy_mode_show + 0x000000004203acb8 0x7d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x000000004203acd8 ieee80211_phy_mode_show + *fill* 0x000000004203ad35 0x3 + .text.ieee80211_setup_ratetable + 0x000000004203ad38 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x11c (size before relaxing) + 0x000000004203ad54 ieee80211_setup_ratetable + .text.ieee80211_phy_init + 0x000000004203ae34 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0xd6 (size before relaxing) + 0x000000004203ae40 ieee80211_phy_init + *fill* 0x000000004203aecc 0x0 + .text.ieee80211_psq_init + 0x000000004203aecc 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x1a (size before relaxing) + 0x000000004203aecc ieee80211_psq_init + *fill* 0x000000004203aee2 0x2 + .text.ieee80211_gpsq_init + 0x000000004203aee4 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x57 (size before relaxing) + 0x000000004203aee8 ieee80211_gpsq_init + *fill* 0x000000004203af1f 0x1 + .text.ieee80211_psq_find_max_bss + 0x000000004203af20 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x3b (size before relaxing) + 0x000000004203af20 ieee80211_psq_find_max_bss + *fill* 0x000000004203af53 0x1 + .text.ieee80211_set_tim + 0x000000004203af54 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x78 (size before relaxing) + 0x000000004203af54 ieee80211_set_tim + .text.ieee80211_psq_take_head + 0x000000004203afc4 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x3e (size before relaxing) + 0x000000004203afc4 ieee80211_psq_take_head + *fill* 0x000000004203affe 0x2 + .text.ieee80211_psq_drop_one_pkt + 0x000000004203b000 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x62 (size before relaxing) + 0x000000004203b000 ieee80211_psq_drop_one_pkt + *fill* 0x000000004203b04a 0x2 + .text.ieee80211_psq_send_one_pkt + 0x000000004203b04c 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x6e (size before relaxing) + 0x000000004203b04c ieee80211_psq_send_one_pkt + *fill* 0x000000004203b0a2 0x2 + .text.ieee80211_psq_is_buff_pkt + 0x000000004203b0a4 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x4c (size before relaxing) + 0x000000004203b0a4 ieee80211_psq_is_buff_pkt + *fill* 0x000000004203b0d9 0x3 + .text.ieee80211_pwrsave + 0x000000004203b0dc 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x000000004203b0dc ieee80211_pwrsave + *fill* 0x000000004203b142 0x2 + .text.pwrsave_flushq + 0x000000004203b144 0xca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0xde (size before relaxing) + 0x000000004203b148 pwrsave_flushq + *fill* 0x000000004203b20e 0x2 + .text.ieee80211_node_pwrsave + 0x000000004203b210 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x76 (size before relaxing) + 0x000000004203b210 ieee80211_node_pwrsave + *fill* 0x000000004203b26e 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x000000004203b270 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x46 (size before relaxing) + 0x000000004203b270 ieee80211_pwrsave_node_cleanup + *fill* 0x000000004203b2a6 0x2 + .text.ieee80211_pwrsave_txcb + 0x000000004203b2a8 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x54 (size before relaxing) + 0x000000004203b2a8 ieee80211_pwrsave_txcb + .text.ieee80211_proto_attach + 0x000000004203b2f0 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x2c (size before relaxing) + 0x000000004203b2f4 ieee80211_proto_attach + .text.ieee80211_wme_updateparams + 0x000000004203b314 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x4a (size before relaxing) + 0x000000004203b318 ieee80211_wme_updateparams + *fill* 0x000000004203b352 0x2 + .text.ieee80211_mlme_connect_bss + 0x000000004203b354 0xee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x116 (size before relaxing) + 0x000000004203b364 ieee80211_mlme_connect_bss + *fill* 0x000000004203b442 0x2 + .text.get_country_chan_info + 0x000000004203b444 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + 0x30 (size before relaxing) + .text.ieee80211_is_40mhz_valid_bw + 0x000000004203b470 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + 0x64 (size before relaxing) + 0x000000004203b478 ieee80211_is_40mhz_valid_bw + .text.ieee80211_regdomain_get_country + 0x000000004203b4c4 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x000000004203b4c4 ieee80211_regdomain_get_country + *fill* 0x000000004203b4fa 0x2 + .text.ieee80211_update_phy_country + 0x000000004203b4fc 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x30 (size before relaxing) + 0x000000004203b4fc ieee80211_update_phy_country + .text.ieee80211_regdomain_update + 0x000000004203b520 0x11e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x13e (size before relaxing) + 0x000000004203b524 ieee80211_regdomain_update + *fill* 0x000000004203b63e 0x2 + .text.ieee80211_regdomain_update_in_scan + 0x000000004203b640 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x000000004203b640 ieee80211_regdomain_update_in_scan + *fill* 0x000000004203b652 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x000000004203b654 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x000000004203b654 ieee80211_regdomain_update_in_connect + .text.ieee80211_add_countryie + 0x000000004203b668 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x56 (size before relaxing) + 0x000000004203b66c ieee80211_add_countryie + *fill* 0x000000004203b6b6 0x2 + .text.ieee80211_regdomain_max_chan + 0x000000004203b6b8 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x000000004203b6b8 ieee80211_regdomain_max_chan + *fill* 0x000000004203b6de 0x2 + .text.ieee80211_regdomain_ap_max_chan + 0x000000004203b6e0 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x1c (size before relaxing) + 0x000000004203b6e0 ieee80211_regdomain_ap_max_chan + .text.ieee80211_regdomain_min_chan + 0x000000004203b6f8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x24 (size before relaxing) + 0x000000004203b6f8 ieee80211_regdomain_min_chan + .text.ieee80211_regdomain_ap_min_chan + 0x000000004203b714 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x12 (size before relaxing) + 0x000000004203b714 ieee80211_regdomain_ap_min_chan + *fill* 0x000000004203b71f 0x1 + .text.ieee80211_regdomain_chan_in_range + 0x000000004203b720 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x000000004203b720 ieee80211_regdomain_chan_in_range + *fill* 0x000000004203b73e 0x2 + .text.ieee80211_regdomain_is_active_scan + 0x000000004203b740 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x33 (size before relaxing) + 0x000000004203b740 ieee80211_regdomain_is_active_scan + *fill* 0x000000004203b76f 0x1 + .text.ieee80211_rfid_locp_recv_reset + 0x000000004203b770 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x11 (size before relaxing) + 0x000000004203b770 ieee80211_rfid_locp_recv_reset + *fill* 0x000000004203b77d 0x3 + .text.ieee80211_rfid_locp_recv + 0x000000004203b780 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x000000004203b780 ieee80211_rfid_locp_recv + .text.scan_enter_oper_channel + 0x000000004203b79c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x000000004203b7aa 0x2 + .text.scan_inter_channel_timeout + 0x000000004203b7ac 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x000000004203b7ba 0x2 + .text.scan_op_start + 0x000000004203b7bc 0x1a9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x20d (size before relaxing) + *fill* 0x000000004203b965 0x3 + .text.ieee80211_scan_attach + 0x000000004203b968 0xa2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xae (size before relaxing) + 0x000000004203b978 ieee80211_scan_attach + *fill* 0x000000004203ba0a 0x2 + .text.ieee80211_scan_deattach + 0x000000004203ba0c 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2c (size before relaxing) + 0x000000004203ba0c ieee80211_scan_deattach + .text.scan_freq_cal + 0x000000004203ba30 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x90 (size before relaxing) + 0x000000004203ba3c scan_freq_cal + .text.scan_flush_all_tx_buf + 0x000000004203babc 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x80 (size before relaxing) + 0x000000004203bac8 scan_flush_all_tx_buf + .text.scan_cancel + 0x000000004203bb28 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x90 (size before relaxing) + 0x000000004203bb2c scan_cancel + .text.scan_remove_bssid + 0x000000004203bb9c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x000000004203bb9c scan_remove_bssid + *fill* 0x000000004203bbab 0x1 + .text.scan_hidden_ssid + 0x000000004203bbac 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x11 (size before relaxing) + 0x000000004203bbac scan_hidden_ssid + *fill* 0x000000004203bbb9 0x3 + .text.scan_set_act_duration + 0x000000004203bbbc 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x12 (size before relaxing) + 0x000000004203bbbc scan_set_act_duration + *fill* 0x000000004203bbca 0x2 + .text.scan_set_pas_duration + 0x000000004203bbcc 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x000000004203bbcc scan_set_pas_duration + .text.scan_add_probe_ssid + 0x000000004203bbd8 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x68 (size before relaxing) + 0x000000004203bbd8 scan_add_probe_ssid + .text.scan_remove_probe_ssid + 0x000000004203bc34 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2b (size before relaxing) + 0x000000004203bc34 scan_remove_probe_ssid + *fill* 0x000000004203bc5b 0x1 + .text.scan_prefer_chan + 0x000000004203bc5c 0x1b8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x210 (size before relaxing) + 0x000000004203bc80 scan_prefer_chan + .text.scan_update_scan_history + 0x000000004203be14 0x15e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x17e (size before relaxing) + 0x000000004203be24 scan_update_scan_history + *fill* 0x000000004203bf72 0x2 + .text.scan_build_chan_list + 0x000000004203bf74 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x90 (size before relaxing) + 0x000000004203bf80 scan_build_chan_list + .text.scan_set_desChan + 0x000000004203bffc 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x000000004203bffc scan_set_desChan + *fill* 0x000000004203c00b 0x1 + .text.scan_get_type + 0x000000004203c00c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x000000004203c00c scan_get_type + .text.unlikely.scan_add_ssid_do + 0x000000004203c018 0x2ab E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2df (size before relaxing) + *fill* 0x000000004203c2c3 0x1 + .text.unlikely.scan_add_ssid + 0x000000004203c2c4 0x150 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x170 (size before relaxing) + .text.scan_reset_cipher_and_akm + 0x000000004203c414 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2d (size before relaxing) + 0x000000004203c414 scan_reset_cipher_and_akm + *fill* 0x000000004203c43d 0x3 + .text.scan_profile_check + 0x000000004203c440 0x308 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x38c (size before relaxing) + 0x000000004203c458 scan_profile_check + .text.free_bss_info + 0x000000004203c748 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2e (size before relaxing) + 0x000000004203c748 free_bss_info + *fill* 0x000000004203c772 0x2 + .text.clear_bss_queue + 0x000000004203c774 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x4a (size before relaxing) + 0x000000004203c77c clear_bss_queue + *fill* 0x000000004203c7ab 0x1 + .text.scan_done + 0x000000004203c7ac 0x20c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x2a0 (size before relaxing) + .text.scan_next_channel + 0x000000004203c9b8 0x188 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x1e8 (size before relaxing) + .text.scan_enter_oper_channel_process + 0x000000004203cb40 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x34 (size before relaxing) + 0x000000004203cb44 scan_enter_oper_channel_process + .text.scan_inter_channel_timeout_process + 0x000000004203cb64 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x8c (size before relaxing) + 0x000000004203cb6c scan_inter_channel_timeout_process + .text.scan_op_end + 0x000000004203cbd4 0x164 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x1bc (size before relaxing) + .text.scan_start + 0x000000004203cd38 0x12b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x19b (size before relaxing) + 0x000000004203cd4c scan_start + *fill* 0x000000004203ce63 0x1 + .text.check_bss_queue + 0x000000004203ce64 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x30 (size before relaxing) + 0x000000004203ce64 check_bss_queue + .text.scan_parse_ht2040_coex + 0x000000004203ce8c 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x7c (size before relaxing) + 0x000000004203ce94 scan_parse_ht2040_coex + .text.scan_get_owe_channel_info + 0x000000004203cef8 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x72 (size before relaxing) + 0x000000004203cef8 scan_get_owe_channel_info + *fill* 0x000000004203cf5e 0x2 + .text.scan_validate_owe_scenarios + 0x000000004203cf60 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xa4 (size before relaxing) + 0x000000004203cf6c scan_validate_owe_scenarios + .text.scan_parse_beacon + 0x000000004203cfec 0xc37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0xe57 (size before relaxing) + 0x000000004203d04c scan_parse_beacon + *fill* 0x000000004203dc23 0x1 + .text.sta_eapol_txdone_cb + 0x000000004203dc24 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x62 (size before relaxing) + 0x000000004203dc28 sta_eapol_txdone_cb + *fill* 0x000000004203dc7a 0x2 + .text.sta_assoc_comeback + 0x000000004203dc7c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004203dc8a 0x2 + .text.sta_try_sa_query + 0x000000004203dc8c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004203dc9a 0x2 + .text.sta_sa_query_timeout + 0x000000004203dc9c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x000000004203dcaa 0x2 + .text.wifi_sta_reg_eapol_txdone_cb + 0x000000004203dcac 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x23 (size before relaxing) + 0x000000004203dcb0 wifi_sta_reg_eapol_txdone_cb + *fill* 0x000000004203dcc7 0x1 + .text.ieee80211_sta_new_state + 0x000000004203dcc8 0xb89 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xda5 (size before relaxing) + 0x000000004203dd6c ieee80211_sta_new_state + *fill* 0x000000004203e851 0x3 + .text.sta_rx_eapol + 0x000000004203e854 0x188 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x1a0 (size before relaxing) + 0x000000004203e874 sta_rx_eapol + .text.wifi_sta_reg_rxcb + 0x000000004203e9dc 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xe (size before relaxing) + 0x000000004203e9dc wifi_sta_reg_rxcb + *fill* 0x000000004203e9e6 0x2 + .text.sta_michael_mic_failure + 0x000000004203e9e8 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x3e (size before relaxing) + 0x000000004203e9ec sta_michael_mic_failure + *fill* 0x000000004203ea1e 0x2 + .text.sta_auth_ft + 0x000000004203ea20 0xd2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x102 (size before relaxing) + 0x000000004203ea30 sta_auth_ft + *fill* 0x000000004203eaf2 0x2 + .text.sta_auth_open + 0x000000004203eaf4 0x13e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x186 (size before relaxing) + 0x000000004203eb08 sta_auth_open + *fill* 0x000000004203ec32 0x2 + .text.sta_auth_shared + 0x000000004203ec34 0x142 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16a (size before relaxing) + 0x000000004203ec3c sta_auth_shared + *fill* 0x000000004203ed76 0x2 + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x000000004203ed78 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x4b (size before relaxing) + 0x000000004203ed80 ieee80211_wme_standard_ac_to_esp_ac + *fill* 0x000000004203edbf 0x1 + .text.ieee80211_parse_wmeparams + 0x000000004203edc0 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x82 (size before relaxing) + 0x000000004203edc0 ieee80211_parse_wmeparams + *fill* 0x000000004203ee3e 0x2 + .text.sta_rx_csa + 0x000000004203ee40 0x214 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x248 (size before relaxing) + 0x000000004203ee6c sta_rx_csa + .text.ieee80211_parse_obss_scan_param + 0x000000004203f054 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x000000004203f054 ieee80211_parse_obss_scan_param + *fill* 0x000000004203f07a 0x2 + .text.sta_retry_assoc + 0x000000004203f07c 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x7a (size before relaxing) + 0x000000004203f07c sta_retry_assoc + *fill* 0x000000004203f0e6 0x2 + .text.sta_recv_assoc + 0x000000004203f0e8 0x5c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x6a4 (size before relaxing) + 0x000000004203f124 sta_recv_assoc + .text.sta_recv_ctl + 0x000000004203f6b0 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x000000004203f6b0 sta_recv_ctl + *fill* 0x000000004203f6bf 0x1 + .text.wifi_station_start + 0x000000004203f6c0 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xcc (size before relaxing) + 0x000000004203f6c8 wifi_station_start + .text.wifi_station_stop + 0x000000004203f760 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xa6 (size before relaxing) + 0x000000004203f764 wifi_station_stop + *fill* 0x000000004203f7da 0x2 + .text.sta_bip_check + 0x000000004203f7dc 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x92 (size before relaxing) + 0x000000004203f7e0 sta_bip_check + *fill* 0x000000004203f85a 0x2 + .text.sta_sa_query_process_timeout + 0x000000004203f85c 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x8f (size before relaxing) + 0x000000004203f868 sta_sa_query_process_timeout + *fill* 0x000000004203f8cb 0x1 + .text.sta_try_sa_query_process + 0x000000004203f8cc 0x15e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x186 (size before relaxing) + 0x000000004203f8dc sta_try_sa_query_process + *fill* 0x000000004203fa2a 0x2 + .text.sta_is_wpa3_enabled + 0x000000004203fa2c 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x31 (size before relaxing) + 0x000000004203fa2c sta_is_wpa3_enabled + *fill* 0x000000004203fa51 0x3 + .text.sta_auth_sae + 0x000000004203fa54 0x16b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x1af (size before relaxing) + 0x000000004203fa58 sta_auth_sae + *fill* 0x000000004203fbbf 0x1 + .text.sta_recv_mgmt + 0x000000004203fbc0 0x8cf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x9ff (size before relaxing) + 0x000000004203fbec sta_recv_mgmt + *fill* 0x000000004204048f 0x1 + .text.sta_get_owe_data + 0x0000000042040490 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x13 (size before relaxing) + 0x0000000042040490 sta_get_owe_data + *fill* 0x000000004204049f 0x1 + .text.esp_wifi_ap_get_prof_pmk_internal + 0x00000000420404a0 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x00000000420404a0 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x00000000420404af 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x00000000420404b0 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x00000000420404b0 esp_wifi_sta_update_ap_info_internal + *fill* 0x00000000420404d9 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x00000000420404dc 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x00000000420404dc esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x00000000420404fa 0x2 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x00000000420404fc 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x00000000420404fc esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x000000004204050b 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x000000004204050c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x000000004204050c esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x0000000042040518 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000042040518 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_ap_get_max_sta_conn + 0x0000000042040528 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000042040528 esp_wifi_ap_get_max_sta_conn + .text.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x0000000042040538 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000042040538 esp_wifi_ap_get_prof_pairwise_cipher_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x0000000042040548 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000042040548 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x0000000042040556 0x2 + .text.esp_wifi_get_pmf_config_internal + 0x0000000042040558 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x48 (size before relaxing) + 0x0000000042040558 esp_wifi_get_pmf_config_internal + .text.esp_wifi_sta_get_use_h2e_internal + 0x000000004204059c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004204059c esp_wifi_sta_get_use_h2e_internal + *fill* 0x00000000420405aa 0x2 + .text.esp_wifi_sta_get_config_sae_pwe_h2e_internal + 0x00000000420405ac 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x00000000420405ac esp_wifi_sta_get_config_sae_pwe_h2e_internal + .text.esp_wifi_sta_disable_wpa2_authmode_internal + 0x00000000420405bc 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x00000000420405c4 esp_wifi_sta_disable_wpa2_authmode_internal + *fill* 0x0000000042040602 0x2 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x0000000042040604 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x0000000042040604 esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x0000000042040619 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x000000004204061c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x000000004204061c esp_wifi_ap_get_prof_password_internal + *fill* 0x000000004204062b 0x1 + .text.wifi_sta_get_prof_password + 0x000000004204062c 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004204062c wifi_sta_get_prof_password + *fill* 0x0000000042040639 0x3 + .text.esp_wifi_sta_get_prof_password_internal + 0x000000004204063c 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004204063c esp_wifi_sta_get_prof_password_internal + *fill* 0x0000000042040649 0x3 + .text.esp_wifi_sta_get_reset_param_internal + 0x000000004204064c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004204064c esp_wifi_sta_get_reset_param_internal + *fill* 0x000000004204065a 0x2 + .text.esp_wifi_sta_set_reset_param_internal + 0x000000004204065c 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x000000004204065c esp_wifi_sta_set_reset_param_internal + .text.esp_wifi_sta_prof_is_wpa_internal + 0x000000004204066c 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x2f (size before relaxing) + 0x000000004204066c esp_wifi_sta_prof_is_wpa_internal + *fill* 0x0000000042040697 0x1 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x0000000042040698 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x000000004204069c esp_wifi_sta_prof_is_wpa2_internal + *fill* 0x00000000420406c5 0x3 + .text.esp_wifi_sta_prof_is_wapi_internal + 0x00000000420406c8 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x00000000420406c8 esp_wifi_sta_prof_is_wapi_internal + *fill* 0x00000000420406e6 0x2 + .text.esp_wifi_sta_prof_is_rsn_internal + 0x00000000420406e8 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x00000000420406ec esp_wifi_sta_prof_is_rsn_internal + *fill* 0x0000000042040715 0x3 + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x0000000042040718 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000042040718 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x0000000042040726 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x0000000042040728 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000042040728 esp_wifi_sta_get_group_cipher_internal + *fill* 0x0000000042040736 0x2 + .text.ieee80211_set_key + 0x0000000042040738 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x0000000042040738 ieee80211_set_key + *fill* 0x0000000042040772 0x2 + .text.ieee80211_set_sta_gtk_index + 0x0000000042040774 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x27 (size before relaxing) + 0x0000000042040774 ieee80211_set_sta_gtk_index + *fill* 0x0000000042040797 0x1 + .text.ieee80211_set_gtk + 0x0000000042040798 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4e (size before relaxing) + 0x00000000420407a0 ieee80211_set_gtk + *fill* 0x00000000420407d6 0x2 + .text.ieee80211_get_ptk + 0x00000000420407d8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x00000000420407d8 ieee80211_get_ptk + .text.ieee80211_get_spp + 0x00000000420407f0 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x35 (size before relaxing) + 0x00000000420407f0 ieee80211_get_spp + *fill* 0x000000004204081d 0x3 + .text.esp_wifi_wpa_ptk_init_done_internal + 0x0000000042040820 0x69 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x8d (size before relaxing) + 0x0000000042040824 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x0000000042040889 0x3 + .text.esp_wifi_sta_send_mgmt_internal + 0x000000004204088c 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x23 (size before relaxing) + 0x000000004204088c esp_wifi_sta_send_mgmt_internal + *fill* 0x00000000420408a7 0x1 + .text.esp_wifi_auth_done_internal + 0x00000000420408a8 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x00000000420408a8 esp_wifi_auth_done_internal + *fill* 0x00000000420408b2 0x2 + .text.esp_wifi_unregister_wpa_cb_internal + 0x00000000420408b4 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x27 (size before relaxing) + 0x00000000420408b4 esp_wifi_unregister_wpa_cb_internal + *fill* 0x00000000420408d3 0x1 + .text.esp_wifi_register_wpa_cb_internal + 0x00000000420408d4 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1b (size before relaxing) + 0x00000000420408d4 esp_wifi_register_wpa_cb_internal + *fill* 0x00000000420408e4 0x0 + .text.ieee80211_sta_is_connected + 0x00000000420408e4 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x00000000420408e8 ieee80211_sta_is_connected + .text.esp_wifi_get_hostap_private_internal + 0x00000000420408fc 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x00000000420408fc esp_wifi_get_hostap_private_internal + *fill* 0x000000004204090e 0x2 + .text.esp_wifi_deauthenticate_internal + 0x0000000042040910 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x66 (size before relaxing) + 0x0000000042040910 esp_wifi_deauthenticate_internal + *fill* 0x0000000042040966 0x2 + .text.esp_wifi_get_spp_attrubute_internal + 0x0000000042040968 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x0000000042040968 esp_wifi_get_spp_attrubute_internal + .text.esp_wifi_get_user_init_flag_internal + 0x000000004204098c 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1d (size before relaxing) + 0x000000004204098c esp_wifi_get_user_init_flag_internal + *fill* 0x00000000420409a5 0x3 + .text.wifi_set_rx_policy + 0x00000000420409a8 0x154 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1b7 (size before relaxing) + 0x00000000420409ac wifi_set_rx_policy + *fill* 0x0000000042040afc 0x0 + .text.esp_wifi_register_eapol_txdonecb_internal + 0x0000000042040afc 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x0000000042040afc esp_wifi_register_eapol_txdonecb_internal + .text.esp_wifi_get_macaddr_internal + 0x0000000042040b08 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x0000000042040b08 esp_wifi_get_macaddr_internal + *fill* 0x0000000042040b23 0x1 + .text.esp_wifi_ap_deauth_internal + 0x0000000042040b24 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x15 (size before relaxing) + 0x0000000042040b24 esp_wifi_ap_deauth_internal + *fill* 0x0000000042040b35 0x3 + .text.wifi_init_key + 0x0000000042040b38 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x0000000042040b3c wifi_init_key + *fill* 0x0000000042040b61 0x3 + .text.esp_wifi_set_ap_key_internal + 0x0000000042040b64 0x14a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x19e (size before relaxing) + 0x0000000042040b74 esp_wifi_set_ap_key_internal + *fill* 0x0000000042040cae 0x2 + .text.ppInstallKey + 0x0000000042040cb0 0x124 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x170 (size before relaxing) + 0x0000000042040cb4 ppInstallKey + .text.esp_wifi_set_sta_key_internal + 0x0000000042040dd4 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x64 (size before relaxing) + 0x0000000042040dd4 esp_wifi_set_sta_key_internal + .text.esp_wifi_get_sta_key_internal + 0x0000000042040e34 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x4c (size before relaxing) + 0x0000000042040e34 esp_wifi_get_sta_key_internal + .text.esp_wifi_set_appie_internal + 0x0000000042040e7c 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x60 (size before relaxing) + 0x0000000042040e80 esp_wifi_set_appie_internal + .text.esp_wifi_unset_appie_internal + 0x0000000042040ec8 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x0000000042040ec8 esp_wifi_unset_appie_internal + *fill* 0x0000000042040ede 0x2 + .text.esp_wifi_get_wps_status_internal + 0x0000000042040ee0 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x0000000042040ee0 esp_wifi_get_wps_status_internal + .text.esp_wifi_sta_pmf_enabled + 0x0000000042040eec 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000042040eec esp_wifi_sta_pmf_enabled + *fill* 0x0000000042040efa 0x2 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x0000000042040efc 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x0000000042040f00 esp_wifi_sta_get_mgmt_group_cipher + *fill* 0x0000000042040f22 0x2 + .text.esp_wifi_set_igtk_internal + 0x0000000042040f24 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0xbc (size before relaxing) + 0x0000000042040f38 esp_wifi_set_igtk_internal + .text.ieee80211w_get_active_igtk_key_id + 0x0000000042040fd8 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x0000000042040fd8 ieee80211w_get_active_igtk_key_id + *fill* 0x0000000042040ff2 0x2 + .text.ieee80211w_get_igtk_from_keyidx + 0x0000000042040ff4 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x46 (size before relaxing) + 0x0000000042040ffc ieee80211w_get_igtk_from_keyidx + *fill* 0x0000000042041032 0x2 + .text.esp_wifi_skip_supp_pmkcaching + 0x0000000042041034 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x0000000042041034 esp_wifi_skip_supp_pmkcaching + *fill* 0x0000000042041042 0x2 + .text.esp_wifi_register_mgmt_frame_internal + 0x0000000042041044 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x0000000042041048 esp_wifi_register_mgmt_frame_internal + *fill* 0x000000004204108a 0x2 + .text.ieee80211_ampdu_age_handle + 0x000000004204108c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204109b 0x1 + .text.ieee80211_addba + 0x000000004204109c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x00000000420410ab 0x1 + .text.ieee80211_coexist + 0x00000000420410ac 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x00000000420410e2 0x2 + .text.ieee80211_sta_retry_assoc + 0x00000000420410e4 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x0000000042041113 0x1 + .text.ieee80211_ap_try_sa_query + 0x0000000042041114 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000042041146 0x2 + .text.ieee80211_ap_sa_query_timeout + 0x0000000042041148 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x000000004204117e 0x2 + .text.ieee80211_sta_sa_query_timeout + 0x0000000042041180 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x00000000420411af 0x1 + .text.ieee80211_sta_try_sa_query + 0x00000000420411b0 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x00000000420411df 0x1 + .text.ieee80211_assoc + 0x00000000420411e0 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x000000004204120f 0x1 + .text.ieee80211_auth + 0x0000000042041210 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x000000004204123f 0x1 + .text.ieee80211_chm_dwell + 0x0000000042041240 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000042041276 0x2 + .text.ieee80211_handshake + 0x0000000042041278 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x00000000420412a7 0x1 + .text.ieee80211_beacon + 0x00000000420412a8 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x00000000420412e7 0x1 + .text.ieee80211_probe_send + 0x00000000420412e8 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x0000000042041327 0x1 + .text.ieee80211_csa + 0x0000000042041328 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x4e (size before relaxing) + *fill* 0x0000000042041363 0x1 + .text.ieee80211_scan_enter_op_chan + 0x0000000042041364 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000042041396 0x2 + .text.ieee80211_scan_inter_chan + 0x0000000042041398 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x00000000420413ce 0x2 + .text.ieee80211_timer_connect + 0x00000000420413d0 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x00000000420413ff 0x1 + .text.ieee80211_hostap_handle + 0x0000000042041400 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x0000000042041436 0x2 + .text.ieee80211_send_beacon + 0x0000000042041438 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x44 (size before relaxing) + .text.ieee80211_register_hostap_timer + 0x000000004204146c 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x0000000042041478 ieee80211_register_hostap_timer + *fill* 0x00000000420414a1 0x3 + .text.ieee80211_timer_do_process + 0x00000000420414a4 0x9a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0xae (size before relaxing) + 0x00000000420414ac ieee80211_timer_do_process + *fill* 0x000000004204153e 0x2 + .text.ieee80211_timer_process + 0x0000000042041540 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0xf4 (size before relaxing) + 0x0000000042041550 ieee80211_timer_process + .text.chm_end_op_timeout + 0x00000000420415ec 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x00000000420415fa 0x2 + .text.chm_phy_change_channel$constprop$3 + 0x00000000420415fc 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x43 (size before relaxing) + *fill* 0x0000000042041623 0x1 + .text.chm_mhz2num + 0x0000000042041624 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x68 (size before relaxing) + 0x0000000042041638 chm_mhz2num + .text.chm_deinit + 0x0000000042041688 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x0000000042041688 chm_deinit + *fill* 0x00000000420416ae 0x2 + .text.chm_release_lock + 0x00000000420416b0 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x1a (size before relaxing) + 0x00000000420416b0 chm_release_lock + *fill* 0x00000000420416c6 0x2 + .text.chm_end_op + 0x00000000420416c8 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x30 (size before relaxing) + 0x00000000420416c8 chm_end_op + .text.chm_end_op_timeout_process + 0x00000000420416f0 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x00000000420416f0 chm_end_op_timeout_process + *fill* 0x000000004204170f 0x1 + .text.chm_cancel_op + 0x0000000042041710 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x50 (size before relaxing) + 0x0000000042041710 chm_cancel_op + .text.chm_acquire_lock + 0x0000000042041750 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x3a (size before relaxing) + 0x0000000042041750 chm_acquire_lock + *fill* 0x0000000042041782 0x2 + .text.chm_get_current_channel + 0x0000000042041784 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x0000000042041784 chm_get_current_channel + *fill* 0x0000000042041791 0x3 + .text.chm_get_home_channel + 0x0000000042041794 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x0000000042041794 chm_get_home_channel + *fill* 0x00000000420417a1 0x3 + .text.chm_set_home_channel + 0x00000000420417a4 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x78 (size before relaxing) + 0x00000000420417ac chm_set_home_channel + .text.chm_get_chan_info + 0x0000000042041800 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x26 (size before relaxing) + 0x0000000042041800 chm_get_chan_info + *fill* 0x0000000042041822 0x2 + .text.chm_set_current_channel + 0x0000000042041824 0xf2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x126 (size before relaxing) + 0x0000000042041838 chm_set_current_channel + *fill* 0x0000000042041916 0x2 + .text.chm_init + 0x0000000042041918 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0xe4 (size before relaxing) + 0x0000000042041920 chm_init + .text.chm_change_channel + 0x00000000420419d8 0xdf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x10b (size before relaxing) + *fill* 0x0000000042041ab7 0x1 + .text.chm_start_op + 0x0000000042041ab8 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x3e (size before relaxing) + 0x0000000042041ab8 chm_start_op + *fill* 0x0000000042041aea 0x2 + .text.chm_return_home_channel + 0x0000000042041aec 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x57 (size before relaxing) + 0x0000000042041af0 chm_return_home_channel + *fill* 0x0000000042041b30 0x0 + .text.cnx_sta_connect_led_timer_cb + 0x0000000042041b30 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x1d (size before relaxing) + 0x0000000042041b30 cnx_sta_connect_led_timer_cb + *fill* 0x0000000042041b49 0x3 + .text.cnx_cal_rc_util + 0x0000000042041b4c 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x5e (size before relaxing) + *fill* 0x0000000042041ba6 0x2 + .text.cnx_get_next_rc + 0x0000000042041ba8 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3e (size before relaxing) + *fill* 0x0000000042041bde 0x2 + .text.cnx_traverse_rc_lis_done + 0x0000000042041be0 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3c (size before relaxing) + .text.cnx_connect_op + 0x0000000042041c0c 0x1f2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x25a (size before relaxing) + *fill* 0x0000000042041dfe 0x2 + .text.cnx_connect_timeout + 0x0000000042041e00 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000042041e00 cnx_connect_timeout + *fill* 0x0000000042041e0e 0x2 + .text.cnx_handshake_timeout + 0x0000000042041e10 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x0000000042041e10 cnx_handshake_timeout + *fill* 0x0000000042041e1e 0x2 + .text.cnx_csa_fn + 0x0000000042041e20 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x0000000042041e20 cnx_csa_fn + .text.mgd_probe_send_timeout + 0x0000000042041e30 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x0000000042041e3e 0x2 + .text.cnx_beacon_timeout + 0x0000000042041e40 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x0000000042041e4e 0x2 + .text.cnx_probe_rc + 0x0000000042041e50 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x74 (size before relaxing) + .text.cnx_connect_to_bss + 0x0000000042041ea8 0x35a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3ee (size before relaxing) + *fill* 0x0000000042042202 0x2 + .text.ieee80211_cnx_attach + 0x0000000042042204 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x000000004204220c ieee80211_cnx_attach + .text._cnx_start_connect_without_scan + 0x000000004204223c 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6e (size before relaxing) + 0x0000000042042240 _cnx_start_connect_without_scan + *fill* 0x000000004204228e 0x2 + .text.cnx_can_do_obss_scan + 0x0000000042042290 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x72 (size before relaxing) + 0x00000000420422a0 cnx_can_do_obss_scan + *fill* 0x00000000420422f6 0x2 + .text.cnx_obss_scan + 0x00000000420422f8 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xb6 (size before relaxing) + 0x0000000042042308 cnx_obss_scan + *fill* 0x000000004204236e 0x2 + .text.cnx_obss_scan_timeout + 0x0000000042042370 0x5d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x0000000042042380 cnx_obss_scan_timeout + *fill* 0x00000000420423cd 0x3 + .text.cnx_auth_timeout + 0x00000000420423d0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x00000000420423d0 cnx_auth_timeout + *fill* 0x00000000420423de 0x2 + .text.cnx_assoc_timeout + 0x00000000420423e0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x00000000420423e0 cnx_assoc_timeout + *fill* 0x00000000420423ee 0x2 + .text.cnx_coexist_timeout + 0x00000000420423f0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x00000000420423f0 cnx_coexist_timeout + *fill* 0x00000000420423fe 0x2 + .text.cnx_coexist_timeout_process + 0x0000000042042400 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x5a (size before relaxing) + 0x0000000042042404 cnx_coexist_timeout_process + *fill* 0x000000004204244a 0x2 + .text.wl_is_ap_no_lr + 0x000000004204244c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x0000000042042450 wl_is_ap_no_lr + *fill* 0x000000004204245b 0x1 + .text.wl_clear_ap_no_lr + 0x000000004204245c 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x11 (size before relaxing) + 0x000000004204245c wl_clear_ap_no_lr + *fill* 0x0000000042042469 0x3 + .text.cnx_csa_fn_process + 0x000000004204246c 0xc3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x107 (size before relaxing) + 0x000000004204247c cnx_csa_fn_process + *fill* 0x000000004204252f 0x1 + .text.cnx_validate_owe_bss + 0x0000000042042530 0x100 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x144 (size before relaxing) + 0x0000000042042530 cnx_validate_owe_bss + .text.cnx_bss_init + 0x0000000042042630 0xa4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xb8 (size before relaxing) + 0x000000004204263c cnx_bss_init + .text.cnx_check_bssid_in_blacklist + 0x00000000420426d4 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x33 (size before relaxing) + 0x00000000420426d4 cnx_check_bssid_in_blacklist + *fill* 0x00000000420426ff 0x1 + .text.cnx_remove_from_blacklist + 0x0000000042042700 0x7b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x8f (size before relaxing) + 0x0000000042042704 cnx_remove_from_blacklist + *fill* 0x000000004204277b 0x1 + .text.cnx_add_to_blacklist + 0x000000004204277c 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xcc (size before relaxing) + 0x0000000042042788 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x0000000042042828 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6f (size before relaxing) + 0x000000004204282c cnx_clear_blacklist + *fill* 0x0000000042042883 0x1 + .text.cnx_choose_rc + 0x0000000042042884 0x1ce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x236 (size before relaxing) + *fill* 0x0000000042042a52 0x2 + .text.cnx_rc_search + 0x0000000042042a54 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x44 (size before relaxing) + 0x0000000042042a54 cnx_rc_search + .text.cnx_add_rc + 0x0000000042042a8c 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x8a (size before relaxing) + 0x0000000042042a90 cnx_add_rc + *fill* 0x0000000042042b12 0x2 + .text.cnx_remove_all_rc + 0x0000000042042b14 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x57 (size before relaxing) + 0x0000000042042b18 cnx_remove_all_rc + *fill* 0x0000000042042b5f 0x1 + .text.cnx_do_handoff + 0x0000000042042b60 0x2ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x3ac (size before relaxing) + .text.cnx_connect_next_ap + 0x0000000042042e4c 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x54 (size before relaxing) + 0x0000000042042e50 cnx_connect_next_ap + .text.cnx_start_handoff_cb + 0x0000000042042e84 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x80 (size before relaxing) + 0x0000000042042e8c cnx_start_handoff_cb + .text.cnx_remove_rc + 0x0000000042042ed8 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xb8 (size before relaxing) + 0x0000000042042ee0 cnx_remove_rc + .text.cnx_sta_connect_cmd + 0x0000000042042f80 0x200 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2b8 (size before relaxing) + 0x0000000042042f9c cnx_sta_connect_cmd + .text.cnx_connect_timeout_process + 0x0000000042043180 0x71 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x98 (size before relaxing) + 0x0000000042043188 cnx_connect_timeout_process + *fill* 0x00000000420431f1 0x3 + .text.cnx_auth_timeout_process + 0x00000000420431f4 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x61 (size before relaxing) + 0x00000000420431fc cnx_auth_timeout_process + *fill* 0x000000004204322d 0x3 + .text.cnx_assoc_timeout_process + 0x0000000042043230 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x4e (size before relaxing) + 0x0000000042043238 cnx_assoc_timeout_process + *fill* 0x000000004204325e 0x2 + .text.cnx_handshake_timeout_process + 0x0000000042043260 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x76 (size before relaxing) + 0x0000000042043268 cnx_handshake_timeout_process + *fill* 0x00000000420432b2 0x2 + .text.cnx_bss_alloc + 0x00000000420432b4 0x27a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2ce (size before relaxing) + 0x00000000420432d0 cnx_bss_alloc + *fill* 0x000000004204352e 0x2 + .text.cnx_remove_rc_except + 0x0000000042043530 0x69 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x0000000042043534 cnx_remove_rc_except + *fill* 0x0000000042043599 0x3 + .text.cnx_rc_update_rssi + 0x000000004204359c 0x63 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x67 (size before relaxing) + 0x000000004204359c cnx_rc_update_rssi + *fill* 0x00000000420435ff 0x1 + .text.cnx_rc_update_state_metric + 0x0000000042043600 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x6e (size before relaxing) + 0x0000000042043600 cnx_rc_update_state_metric + *fill* 0x0000000042043666 0x2 + .text.cnx_probe_rc_tx_cb + 0x0000000042043668 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x64 (size before relaxing) + *fill* 0x00000000420436ad 0x3 + .text.cnx_update_bss + 0x00000000420436b0 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x00000000420436b0 cnx_update_bss + *fill* 0x00000000420436ce 0x2 + .text.send_ap_probe + 0x00000000420436d0 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xb0 (size before relaxing) + 0x00000000420436d0 send_ap_probe + .text.mgd_probe_send_timeout_process + 0x0000000042043758 0x128 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x16c (size before relaxing) + 0x0000000042043770 mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x0000000042043880 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xd2 (size before relaxing) + 0x0000000042043880 cnx_node_alloc + *fill* 0x0000000042043936 0x2 + .text.cnx_node_remove + 0x0000000042043938 0xb9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xdd (size before relaxing) + 0x0000000042043938 cnx_node_remove + *fill* 0x00000000420439f1 0x3 + .text.cnx_sta_pm + 0x00000000420439f4 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x38 (size before relaxing) + 0x00000000420439f4 cnx_sta_pm + *fill* 0x0000000042043a21 0x3 + .text.cnx_update_bss_more + 0x0000000042043a24 0x2d6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x36e (size before relaxing) + 0x0000000042043a28 cnx_update_bss_more + *fill* 0x0000000042043cfa 0x2 + .text.cnx_beacon_timeout_process + 0x0000000042043cfc 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xa8 (size before relaxing) + 0x0000000042043d00 cnx_beacon_timeout_process + .text.ic_set_sta + 0x0000000042043d70 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xd0 (size before relaxing) + 0x0000000042043d70 ic_set_sta + .text.cnx_sta_leave + 0x0000000042043e20 0x252 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2ea (size before relaxing) + 0x0000000042043e2c cnx_sta_leave + *fill* 0x0000000042044072 0x2 + .text.cnx_sta_associated + 0x0000000042044074 0x16a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x1a2 (size before relaxing) + 0x0000000042044090 cnx_sta_associated + *fill* 0x00000000420441de 0x2 + .text.cnx_node_leave + 0x00000000420441e0 0x1a8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x1fa (size before relaxing) + 0x00000000420441f0 cnx_node_leave + *fill* 0x0000000042044388 0x0 + .text.cnx_node_join + 0x0000000042044388 0x293 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x317 (size before relaxing) + 0x00000000420443b4 cnx_node_join + *fill* 0x000000004204461b 0x1 + .text.cnx_start_obss_scan + 0x000000004204461c 0xcc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xf0 (size before relaxing) + 0x000000004204462c cnx_start_obss_scan + .text.cnx_obss_scan_done_cb + 0x00000000420446e8 0x120 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x160 (size before relaxing) + 0x00000000420446fc cnx_obss_scan_done_cb + .text.cnx_auth_done + 0x0000000042044808 0x2af E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x36e (size before relaxing) + 0x0000000042044838 cnx_auth_done + *fill* 0x0000000042044ab7 0x1 + .text.offchan_in_progress + 0x0000000042044ab8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x0000000042044abc offchan_in_progress + *fill* 0x0000000042044ac7 0x1 + .text.offchan_recv_action + 0x0000000042044ac8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x20 (size before relaxing) + 0x0000000042044ac8 offchan_recv_action + .text.offchan_send_action_tx_status + 0x0000000042044ae4 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x3a (size before relaxing) + 0x0000000042044ae4 offchan_send_action_tx_status + *fill* 0x0000000042044b12 0x2 + .text.ieee80211_send_action_register + 0x0000000042044b14 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x0000000042044b28 ieee80211_send_action_register + *fill* 0x0000000042044b8e 0x2 + .text.ieee80211_send_action + 0x0000000042044b90 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x96 (size before relaxing) + 0x0000000042044b94 ieee80211_send_action + *fill* 0x0000000042044c12 0x2 + .text.ieee80211_recv_action_register + 0x0000000042044c14 0x7a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x0000000042044c28 ieee80211_recv_action_register + *fill* 0x0000000042044c8e 0x2 + .text.ieee80211_recv_action + 0x0000000042044c90 0xbb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0xdf (size before relaxing) + 0x0000000042044c9c ieee80211_recv_action + *fill* 0x0000000042044d4b 0x1 + .text.get_iav_key + 0x0000000042044d4c 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x0000000042044d50 get_iav_key + .text.ieee80211_recv_action_vendor_spec + 0x0000000042044d68 0xf8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x108 (size before relaxing) + 0x0000000042044d70 ieee80211_recv_action_vendor_spec + .text.ieee80211_action_vendor_spec_attach + 0x0000000042044e60 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x32 (size before relaxing) + 0x0000000042044e64 ieee80211_action_vendor_spec_attach + *fill* 0x0000000042044e8a 0x2 + .text.ccmp_encap + 0x0000000042044e8c 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x70 (size before relaxing) + 0x0000000042044e8c ccmp_encap + .text.ccmp_decap + 0x0000000042044ef8 0x91 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x95 (size before relaxing) + 0x0000000042044ef8 ccmp_decap + *fill* 0x0000000042044f89 0x3 + .text.ieee80211_decrypt_espnow_pkt + 0x0000000042044f8c 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1f (size before relaxing) + 0x0000000042044f8c ieee80211_decrypt_espnow_pkt + *fill* 0x0000000042044fa7 0x1 + .text.ieee80211_ccmp_decrypt + 0x0000000042044fa8 0x14a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x156 (size before relaxing) + 0x0000000042044fb4 ieee80211_ccmp_decrypt + *fill* 0x00000000420450f2 0x2 + .text.ieee80211_ccmp_encrypt + 0x00000000420450f4 0xad E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0xb9 (size before relaxing) + 0x00000000420450f4 ieee80211_ccmp_encrypt + *fill* 0x00000000420451a1 0x3 + .text.gcmp_encap + 0x00000000420451a4 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x70 (size before relaxing) + .text.gcmp_decap + 0x0000000042045210 0x91 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x95 (size before relaxing) + *fill* 0x00000000420452a1 0x3 + .text.sms4_decap + 0x00000000420452a4 0x7d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0x85 (size before relaxing) + *fill* 0x0000000042045321 0x3 + .text.sms4_encap + 0x0000000042045324 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0xb0 (size before relaxing) + .text.tkip_decap + 0x00000000420453cc 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa1 (size before relaxing) + 0x00000000420453cc tkip_decap + *fill* 0x0000000042045465 0x3 + .text.tkip_encap + 0x0000000042045468 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0x8e (size before relaxing) + 0x000000004204546c tkip_encap + *fill* 0x00000000420454ee 0x2 + .text.wep_encap + 0x00000000420454f0 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x5a (size before relaxing) + 0x00000000420454f0 wep_encap + *fill* 0x0000000042045546 0x2 + .text.esf_buf_alloc_dynamic_default_handler + 0x0000000042045548 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x000000004204554c esf_buf_alloc_dynamic_default_handler + *fill* 0x0000000042045565 0x3 + .text.esf_buf_alloc_default_handler + 0x0000000042045568 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x000000004204556c esf_buf_alloc_default_handler + *fill* 0x0000000042045585 0x3 + .text.esf_buf_recycle_default_handler + 0x0000000042045588 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x22 (size before relaxing) + 0x000000004204558c esf_buf_recycle_default_handler + *fill* 0x00000000420455a6 0x2 + .text.esf_buf_setup_static + 0x00000000420455a8 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x5a (size before relaxing) + 0x00000000420455b8 esf_buf_setup_static + *fill* 0x00000000420455fe 0x2 + .text.esf_buf_free_static + 0x0000000042045600 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x9e (size before relaxing) + 0x0000000042045600 esf_buf_free_static + *fill* 0x000000004204568a 0x2 + .text.esf_buf_setdown + 0x000000004204568c 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x1b (size before relaxing) + 0x000000004204568c esf_buf_setdown + *fill* 0x00000000420456a3 0x1 + .text.esf_buf_setup + 0x00000000420456a4 0x193 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x21a (size before relaxing) + 0x00000000420456c8 esf_buf_setup + *fill* 0x0000000042045837 0x1 + .text.ic_get_addr + 0x0000000042045838 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x000000004204583c ic_get_addr + *fill* 0x000000004204584d 0x3 + .text.ic_get_ptk_alg + 0x0000000042045850 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000042045850 ic_get_ptk_alg + .text.ic_disable_crypto + 0x0000000042045864 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x0000000042045864 ic_disable_crypto + *fill* 0x0000000042045883 0x1 + .text.ic_set_key + 0x0000000042045884 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x4e (size before relaxing) + 0x0000000042045884 ic_set_key + *fill* 0x00000000420458ca 0x2 + .text.ic_get_key + 0x00000000420458cc 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x54 (size before relaxing) + 0x00000000420458cc ic_get_key + .text.ic_obtain_key + 0x0000000042045910 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x73 (size before relaxing) + 0x0000000042045910 ic_obtain_key + *fill* 0x0000000042045977 0x1 + .text.ic_tx_pkt + 0x0000000042045978 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x0000000042045978 ic_tx_pkt + *fill* 0x0000000042045989 0x3 + .text.esp_wifi_internal_free_rx_buffer + 0x000000004204598c 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x0000000042045990 esp_wifi_internal_free_rx_buffer + *fill* 0x000000004204599e 0x2 + .text.ic_register_tx_cb + 0x00000000420459a0 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x19 (size before relaxing) + 0x00000000420459a0 ic_register_tx_cb + *fill* 0x00000000420459b5 0x3 + .text.ic_register_rx_cb + 0x00000000420459b8 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x00000000420459b8 ic_register_rx_cb + *fill* 0x00000000420459ca 0x2 + .text.ic_register_timer_post_cb + 0x00000000420459cc 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000420459cc ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x00000000420459d8 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000420459d8 ic_register_michael_mic_failure_cb + .text.ic_register_config_cb + 0x00000000420459e4 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x00000000420459e4 ic_register_config_cb + .text.ic_is_mgmt_hwdecr_enabled + 0x00000000420459f8 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000420459f8 ic_is_mgmt_hwdecr_enabled + *fill* 0x0000000042045a05 0x3 + .text.ic_register_pm_tx_null_cb + 0x0000000042045a08 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000042045a08 ic_register_pm_tx_null_cb + .text.ic_register_net80211_tx_cb + 0x0000000042045a1c 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000042045a1c ic_register_net80211_tx_cb + .text.ic_register_timer_cb + 0x0000000042045a30 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000042045a30 ic_register_timer_cb + .text.ic_enable_sniffer + 0x0000000042045a44 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045a44 ic_enable_sniffer + *fill* 0x0000000042045a4e 0x2 + .text.ic_disable_sniffer + 0x0000000042045a50 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045a50 ic_disable_sniffer + *fill* 0x0000000042045a5a 0x2 + .text.ic_set_vif + 0x0000000042045a5c 0x176 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1ca (size before relaxing) + 0x0000000042045a7c ic_set_vif + *fill* 0x0000000042045bd2 0x2 + .text.ic_get_next_tbtt + 0x0000000042045bd4 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045bd4 ic_get_next_tbtt + *fill* 0x0000000042045bde 0x2 + .text.ic_del_rx_ba + 0x0000000042045be0 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045be0 ic_del_rx_ba + *fill* 0x0000000042045beb 0x1 + .text.ic_add_rx_ba + 0x0000000042045bec 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x0000000042045bec ic_add_rx_ba + *fill* 0x0000000042045c05 0x3 + .text.ic_reset_tbtt + 0x0000000042045c08 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x0000000042045c08 ic_reset_tbtt + *fill* 0x0000000042045c10 0x0 + .text.ic_del_key_all + 0x0000000042045c10 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000042045c10 ic_del_key_all + *fill* 0x0000000042045c1d 0x3 + .text.ic_del_key + 0x0000000042045c20 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045c20 ic_del_key + *fill* 0x0000000042045c2a 0x2 + .text.ic_set_ac_param + 0x0000000042045c2c 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x0000000042045c2c ic_set_ac_param + *fill* 0x0000000042045c43 0x1 + .text.ic_ampdu_op + 0x0000000042045c44 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x0000000042045c4c ic_ampdu_op + .text.ic_set_trc + 0x0000000042045c74 0x9f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0xc2 (size before relaxing) + 0x0000000042045c78 ic_set_trc + *fill* 0x0000000042045d13 0x1 + .text.ic_deinit + 0x0000000042045d14 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x0000000042045d14 ic_deinit + *fill* 0x0000000042045d27 0x1 + .text.ic_init 0x0000000042045d28 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x86 (size before relaxing) + 0x0000000042045d2c ic_init + *fill* 0x0000000042045d6f 0x1 + .text.ic_enable + 0x0000000042045d70 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x62 (size before relaxing) + 0x0000000042045d74 ic_enable + *fill* 0x0000000042045db6 0x2 + .text.ic_disable + 0x0000000042045db8 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x45 (size before relaxing) + 0x0000000042045db8 ic_disable + *fill* 0x0000000042045df1 0x3 + .text.ic_enable_rx + 0x0000000042045df4 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x0000000042045df4 ic_enable_rx + .text.ic_disable_rx + 0x0000000042045e0c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x0000000042045e0c ic_disable_rx + .text.ic_set_beacon_int + 0x0000000042045e24 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045e24 ic_set_beacon_int + *fill* 0x0000000042045e2e 0x2 + .text.ic_set_mac + 0x0000000042045e30 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000042045e30 ic_set_mac + *fill* 0x0000000042045e3d 0x3 + .text.ic_set_bssid + 0x0000000042045e40 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000042045e40 ic_set_bssid + *fill* 0x0000000042045e4d 0x3 + .text.ic_set_current_channel + 0x0000000042045e50 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x0000000042045e50 ic_set_current_channel + *fill* 0x0000000042045e5c 0x0 + .text.ic_get_pp_hdl + 0x0000000042045e5c 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045e5c ic_get_pp_hdl + *fill* 0x0000000042045e66 0x2 + .text.ic_set_rx_policy_ubssid_check + 0x0000000042045e68 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1c (size before relaxing) + 0x0000000042045e68 ic_set_rx_policy_ubssid_check + .text.ic_set_rx_policy + 0x0000000042045e80 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x0000000042045e80 ic_set_rx_policy + *fill* 0x0000000042045e96 0x2 + .text.ic_set_sta_auth_flag + 0x0000000042045e98 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000042045e98 ic_set_sta_auth_flag + *fill* 0x0000000042045ea3 0x1 + .text.ic_set_interface + 0x0000000042045ea4 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000042045ea4 ic_set_interface + *fill* 0x0000000042045eb1 0x3 + .text.ic_trc_update_ifx_phy_mode + 0x0000000042045eb4 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x0000000042045eb4 ic_trc_update_ifx_phy_mode + *fill* 0x0000000042045ec3 0x1 + .text.ic_stop_hw_txq + 0x0000000042045ec4 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045ec4 ic_stop_hw_txq + *fill* 0x0000000042045ece 0x2 + .text.ic_stop_sw_txq + 0x0000000042045ed0 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x0000000042045ed4 ic_stop_sw_txq + *fill* 0x0000000042045eea 0x2 + .text.ic_txq_empty + 0x0000000042045eec 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045eec ic_txq_empty + *fill* 0x0000000042045ef6 0x2 + .text.ic_create_wifi_task + 0x0000000042045ef8 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045ef8 ic_create_wifi_task + *fill* 0x0000000042045f02 0x2 + .text.ic_delete_wifi_task + 0x0000000042045f04 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000042045f04 ic_delete_wifi_task + *fill* 0x0000000042045f0e 0x2 + .text.ic_update_sta_tsf + 0x0000000042045f10 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x0000000042045f10 ic_update_sta_tsf + *fill* 0x0000000042045f2e 0x2 + .text.lmacGetTxFrame + 0x0000000042045f30 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x0000000042045f34 lmacGetTxFrame + .text.lmacSetTxFrame + 0x0000000042045f50 0x1a3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x1bf (size before relaxing) + 0x0000000042045f70 lmacSetTxFrame + *fill* 0x00000000420460f3 0x1 + .text.lmacSetAcParam + 0x00000000420460f4 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x45 (size before relaxing) + 0x00000000420460f4 lmacSetAcParam + *fill* 0x0000000042046135 0x3 + .text.lmacInitAc + 0x0000000042046138 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x47 (size before relaxing) + 0x0000000042046138 lmacInitAc + *fill* 0x000000004204617b 0x1 + .text.lmacInit + 0x000000004204617c 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xd4 (size before relaxing) + 0x0000000042046184 lmacInit + .text.lmacEndRetryAMPDUFail + 0x0000000042046214 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x81 (size before relaxing) + 0x000000004204621c lmacEndRetryAMPDUFail + *fill* 0x0000000042046281 0x3 + .text.lmac_record_txtime + 0x0000000042046284 0x11f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x132 (size before relaxing) + 0x0000000042046290 lmac_record_txtime + *fill* 0x00000000420463a3 0x1 + .text.lmacDiscardMSDU + 0x00000000420463a4 0x117 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x11f (size before relaxing) + 0x00000000420463b4 lmacDiscardMSDU + *fill* 0x00000000420464bb 0x1 + .text.lmacRetryTxFrame + 0x00000000420464bc 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xb8 (size before relaxing) + 0x00000000420464d0 lmacRetryTxFrame + .text.lmacDiscardFrameExchangeSequence + 0x0000000042046568 0xa7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xc6 (size before relaxing) + 0x0000000042046578 lmacDiscardFrameExchangeSequence + *fill* 0x000000004204660f 0x1 + .text.lmacProcessTxopQComplete + 0x0000000042046610 0x12e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x15a (size before relaxing) + 0x0000000042046624 lmacProcessTxopQComplete + *fill* 0x000000004204673e 0x2 + .text.lmacProcessTxSuccess + 0x0000000042046740 0xe3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x107 (size before relaxing) + 0x0000000042046750 lmacProcessTxSuccess + *fill* 0x0000000042046823 0x1 + .text.lmacProcessShortRetryFail + 0x0000000042046824 0x1e8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x22b (size before relaxing) + 0x0000000042046844 lmacProcessShortRetryFail + *fill* 0x0000000042046a0c 0x0 + .text.lmacProcessCtsTimeout + 0x0000000042046a0c 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x78 (size before relaxing) + 0x0000000042046a14 lmacProcessCtsTimeout + .text.lmacProcessLongRetryFail + 0x0000000042046a6c 0x16a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x19e (size before relaxing) + 0x0000000042046a7c lmacProcessLongRetryFail + *fill* 0x0000000042046bd6 0x2 + .text.lmacProcessCollision + 0x0000000042046bd8 0xbc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xe4 (size before relaxing) + 0x0000000042046be8 lmacProcessCollision + .text.lmacProcessCollisions_task + 0x0000000042046c94 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x5e (size before relaxing) + 0x0000000042046c94 lmacProcessCollisions_task + *fill* 0x0000000042046cd6 0x2 + .text.lmacProcessAckTimeout + 0x0000000042046cd8 0x10a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x142 (size before relaxing) + 0x0000000042046ce8 lmacProcessAckTimeout + *fill* 0x0000000042046de2 0x2 + .text.lmacProcessTxRtsError + 0x0000000042046de4 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xde (size before relaxing) + 0x0000000042046df4 lmacProcessTxRtsError + *fill* 0x0000000042046e96 0x2 + .text.lmacProcessTxseckiderr + 0x0000000042046e98 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x2a (size before relaxing) + 0x0000000042046e98 lmacProcessTxseckiderr + *fill* 0x0000000042046eb7 0x1 + .text.lmacProcessTxError + 0x0000000042046eb8 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xc8 (size before relaxing) + 0x0000000042046ec0 lmacProcessTxError + .text.lmacProcessTxComplete + 0x0000000042046f54 0x144 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x194 (size before relaxing) + 0x0000000042046f6c lmacProcessTxComplete + .text.lmacDisableTransmit + 0x0000000042047098 0x7b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xa7 (size before relaxing) + 0x000000004204709c lmacDisableTransmit + *fill* 0x0000000042047113 0x1 + .text.lmacProcessTxTimeout + 0x0000000042047114 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x52 (size before relaxing) + 0x0000000042047114 lmacProcessTxTimeout + *fill* 0x0000000042047152 0x2 + .text.lmac_stop_hw_txq + 0x0000000042047154 0xaa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0xca (size before relaxing) + 0x0000000042047160 lmac_stop_hw_txq + *fill* 0x00000000420471fe 0x2 + .text.hal_clear_sta_tsf_active_state + 0x0000000042047200 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + *fill* 0x000000004204721b 0x1 + .text.pm_incr_active_cnt + 0x000000004204721c 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + *fill* 0x0000000042047239 0x3 + .text.pm_incr_coex_active_cnt + 0x000000004204723c 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1d (size before relaxing) + *fill* 0x0000000042047255 0x3 + .text.pm_disable_active_timer + 0x0000000042047258 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x27 (size before relaxing) + *fill* 0x0000000042047277 0x1 + .text.pm_beacon_monitor_timeout + 0x0000000042047278 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000042047287 0x1 + .text.pm_connectionless_wake_window_timeout + 0x0000000042047288 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000042047297 0x1 + .text.pm_connectionless_wake_interval_timeout + 0x0000000042047298 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472a7 0x1 + .text.pm_disconnected_sleep_delay_timeout + 0x00000000420472a8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472b7 0x1 + .text.pm_coex_slice_wifi_timeout + 0x00000000420472b8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472c7 0x1 + .text.pm_coex_schm_timeout + 0x00000000420472c8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472d7 0x1 + .text.pm_sleep_delay_timeout + 0x00000000420472d8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472e7 0x1 + .text.pm_active_timeout + 0x00000000420472e8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x00000000420472f7 0x1 + .text.pm_dream_timeout + 0x00000000420472f8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000042047307 0x1 + .text.pm_is_open + 0x0000000042047308 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf (size before relaxing) + 0x0000000042047308 pm_is_open + *fill* 0x0000000042047313 0x1 + .text.pm_noise_check_disable + 0x0000000042047314 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x0000000042047314 pm_noise_check_disable + *fill* 0x0000000042047321 0x3 + .text.pm_noise_check_enable + 0x0000000042047324 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x0000000042047324 pm_noise_check_enable + *fill* 0x0000000042047331 0x3 + .text.pm_disable_disconnected_sleep_delay_timer + 0x0000000042047334 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x0000000042047338 pm_disable_disconnected_sleep_delay_timer + *fill* 0x0000000042047356 0x2 + .text.pm_enable_disconnected_sleep_delay_timer + 0x0000000042047358 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x52 (size before relaxing) + 0x0000000042047358 pm_enable_disconnected_sleep_delay_timer + *fill* 0x000000004204739a 0x2 + .text.pm_noise_check + 0x000000004204739c 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x74 (size before relaxing) + 0x00000000420473a4 pm_noise_check + .text.pm_register_pm_tx_null_cb + 0x0000000042047404 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x0000000042047408 pm_register_pm_tx_null_cb + .text.pm_send_nullfunc + 0x0000000042047414 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3e (size before relaxing) + 0x0000000042047418 pm_send_nullfunc + *fill* 0x000000004204744a 0x2 + .text.pm_disconnected_wake + 0x000000004204744c 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x36 (size before relaxing) + 0x000000004204744c pm_disconnected_wake + *fill* 0x0000000042047476 0x2 + .text.pm_disconnected_sleep + 0x0000000042047478 0x7b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x97 (size before relaxing) + 0x000000004204747c pm_disconnected_sleep + *fill* 0x00000000420474f3 0x1 + .text.pm_wake_up + 0x00000000420474f4 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4a (size before relaxing) + 0x00000000420474fc pm_wake_up + *fill* 0x000000004204752f 0x1 + .text.pm_send_probe_start + 0x0000000042047530 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x55 (size before relaxing) + 0x0000000042047534 pm_send_probe_start + *fill* 0x000000004204756d 0x3 + .text.pm_off_channel + 0x0000000042047570 0xb7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xef (size before relaxing) + 0x0000000042047570 pm_off_channel + *fill* 0x0000000042047627 0x1 + .text.pm_wake_done + 0x0000000042047628 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x57 (size before relaxing) + 0x000000004204762c pm_wake_done + *fill* 0x0000000042047674 0x0 + .text.pm_coex_separate_connectionless_window + 0x0000000042047674 0x295 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2a9 (size before relaxing) + 0x0000000042047680 pm_coex_separate_connectionless_window + *fill* 0x0000000042047909 0x3 + .text.pm_send_probe_stop + 0x000000004204790c 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3d (size before relaxing) + 0x0000000042047910 pm_send_probe_stop + *fill* 0x0000000042047941 0x3 + .text.pm_on_channel + 0x0000000042047944 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xb8 (size before relaxing) + 0x0000000042047944 pm_on_channel + .text.pm_go_to_sleep + 0x00000000420479d4 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x77 (size before relaxing) + 0x00000000420479e0 pm_go_to_sleep + *fill* 0x0000000042047a30 0x0 + .text.pm_go_to_wake + 0x0000000042047a30 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x72 (size before relaxing) + 0x0000000042047a30 pm_go_to_wake + *fill* 0x0000000042047a7b 0x1 + .text.pm_update_params + 0x0000000042047a7c 0xde E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x102 (size before relaxing) + 0x0000000042047a80 pm_update_params + *fill* 0x0000000042047b5a 0x2 + .text.pm_set_next_tbtt + 0x0000000042047b5c 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x56 (size before relaxing) + 0x0000000042047b5c pm_set_next_tbtt + *fill* 0x0000000042047ba2 0x2 + .text.pm_mesh_set_next_tbtt + 0x0000000042047ba4 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x50 (size before relaxing) + 0x0000000042047ba4 pm_mesh_set_next_tbtt + .text.pm_beacon_timestamp_statistic + 0x0000000042047be0 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x36 (size before relaxing) + 0x0000000042047be4 pm_beacon_timestamp_statistic + *fill* 0x0000000042047c0e 0x2 + .text.pm_beacon_misc_process + 0x0000000042047c10 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x12 (size before relaxing) + 0x0000000042047c10 pm_beacon_misc_process + *fill* 0x0000000042047c1a 0x2 + .text.pm_coex_schm_process + 0x0000000042047c1c 0x164 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x184 (size before relaxing) + 0x0000000042047c24 pm_coex_schm_process + .text.pm_coex_schm_timeout_process + 0x0000000042047d80 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x4e (size before relaxing) + 0x0000000042047d80 pm_coex_schm_timeout_process + *fill* 0x0000000042047dbe 0x2 + .text.pm_coex_schm_process_restart + 0x0000000042047dc0 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3e (size before relaxing) + 0x0000000042047dc0 pm_coex_schm_process_restart + *fill* 0x0000000042047dee 0x2 + .text.pm_coex_tbtt_process + 0x0000000042047df0 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xd6 (size before relaxing) + 0x0000000042047df4 pm_coex_tbtt_process + *fill* 0x0000000042047ea6 0x2 + .text.pm_coex_slice_timeout_process + 0x0000000042047ea8 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xe2 (size before relaxing) + 0x0000000042047eb0 pm_coex_slice_timeout_process + *fill* 0x0000000042047f5a 0x2 + .text.pm_active_timeout_process + 0x0000000042047f5c 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x77 (size before relaxing) + 0x0000000042047f5c pm_active_timeout_process + *fill* 0x0000000042047fb8 0x0 + .text.pm_sleep_delay_timeout_process + 0x0000000042047fb8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x0000000042047fb8 pm_sleep_delay_timeout_process + .text.pm_disconnected_sleep_delay_timeout_process + 0x0000000042047fd4 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x0000000042047fd4 pm_disconnected_sleep_delay_timeout_process + .text.pm_tx_data_process + 0x0000000042047ff0 0x18a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1d6 (size before relaxing) + 0x0000000042047ff4 pm_tx_data_process + *fill* 0x000000004204817a 0x2 + .text.pm_tx_data_done_process + 0x000000004204817c 0x70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x98 (size before relaxing) + 0x0000000042048180 pm_tx_data_done_process + .text.pm_tx_null_data_done_process + 0x00000000420481ec 0x152 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x196 (size before relaxing) + 0x00000000420481f0 pm_tx_null_data_done_process + *fill* 0x000000004204833e 0x2 + .text.pm_send_sleep_null_cb + 0x0000000042048340 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x0000000042048340 pm_send_sleep_null_cb + *fill* 0x0000000042048352 0x2 + .text.pm_send_wake_null_cb + 0x0000000042048354 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x0000000042048354 pm_send_wake_null_cb + *fill* 0x0000000042048366 0x2 + .text.pm_on_coex_schm_process_restart + 0x0000000042048368 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf (size before relaxing) + 0x0000000042048368 pm_on_coex_schm_process_restart + *fill* 0x0000000042048370 0x0 + .text.pm_on_coex_schm_status_config + 0x0000000042048370 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x56 (size before relaxing) + 0x0000000042048370 pm_on_coex_schm_status_config + *fill* 0x00000000420483ba 0x2 + .text.pm_on_coex_start + 0x00000000420483bc 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x3a (size before relaxing) + 0x00000000420483bc pm_on_coex_start + *fill* 0x00000000420483db 0x1 + .text.pm_on_probe_resp_rx + 0x00000000420483dc 0x66 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x76 (size before relaxing) + 0x00000000420483e0 pm_on_probe_resp_rx + *fill* 0x0000000042048442 0x2 + .text.pm_on_data_tx + 0x0000000042048444 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x0000000042048444 pm_on_data_tx + *fill* 0x0000000042048454 0x0 + .text.pm_on_data_tx_done + 0x0000000042048454 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x0000000042048454 pm_on_data_tx_done + *fill* 0x0000000042048465 0x3 + .text.pm_disconnected_start + 0x0000000042048468 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x6c (size before relaxing) + 0x0000000042048468 pm_disconnected_start + .text.pm_disconnected_stop + 0x00000000420484b4 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x58 (size before relaxing) + 0x00000000420484b4 pm_disconnected_stop + .text.pm_start + 0x00000000420484f0 0x180 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x1e7 (size before relaxing) + 0x00000000420484f8 pm_start + *fill* 0x0000000042048670 0x0 + .text.pm_stop 0x0000000042048670 0x1d3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x263 (size before relaxing) + 0x0000000042048688 pm_stop + *fill* 0x0000000042048843 0x1 + .text.pm_attach + 0x0000000042048844 0x147 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x19b (size before relaxing) + 0x0000000042048878 pm_attach + *fill* 0x000000004204898b 0x1 + .text.pm_deattach + 0x000000004204898c 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xba (size before relaxing) + 0x000000004204898c pm_deattach + *fill* 0x0000000042048a0a 0x2 + .text.pm_enable_sta_disconnected_power_management + 0x0000000042048a0c 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2b (size before relaxing) + 0x0000000042048a0c pm_enable_sta_disconnected_power_management + *fill* 0x0000000042048a33 0x1 + .text.pp_delete_task_manually + 0x0000000042048a34 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x40 (size before relaxing) + .text.xswap 0x0000000042048a70 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048a78 xswap + *fill* 0x0000000042048a92 0x2 + .text.pp_register_net80211_tx_cb + 0x0000000042048a94 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048a98 pp_register_net80211_tx_cb + .text.pp_register_config_cb + 0x0000000042048aa4 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048aa8 pp_register_config_cb + .text.pp_register_timer_cb + 0x0000000042048ab4 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048ab8 pp_register_timer_cb + .text.pp_register_michael_mic_failure_cb + 0x0000000042048ac4 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048ac8 pp_register_michael_mic_failure_cb + .text.pp_default_event_handler + 0x0000000042048ad4 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x2c (size before relaxing) + 0x0000000042048adc pp_default_event_handler + *fill* 0x0000000042048af5 0x3 + .text.ppRegisterRxCallback + 0x0000000042048af8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x20 (size before relaxing) + 0x0000000042048af8 ppRegisterRxCallback + .text.ppRegisterTxCallback + 0x0000000042048b14 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x46 (size before relaxing) + 0x0000000042048b14 ppRegisterTxCallback + *fill* 0x0000000042048b56 0x2 + .text.ppCheckTxQIdle + 0x0000000042048b58 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042048b5c ppCheckTxQIdle + .text.ppCheckTxConnTrafficIdle + 0x0000000042048b78 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xc0 (size before relaxing) + 0x0000000042048b78 ppCheckTxConnTrafficIdle + .text.pp_coex_tx_release + 0x0000000042048c20 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x5f (size before relaxing) + 0x0000000042048c20 pp_coex_tx_release + *fill* 0x0000000042048c7b 0x1 + .text.ppAssembleMicHdr + 0x0000000042048c7c 0x7b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x8f (size before relaxing) + 0x0000000042048c7c ppAssembleMicHdr + *fill* 0x0000000042048cf7 0x1 + .text.ppCalTkipMic + 0x0000000042048cf8 0xec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x124 (size before relaxing) + 0x0000000042048cfc ppCalTkipMic + .text.ppTxFragmentProc + 0x0000000042048de4 0x70e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x77e (size before relaxing) + 0x0000000042048e08 ppTxFragmentProc + *fill* 0x00000000420494f2 0x2 + .text.ppClearRxFragment + 0x00000000420494f4 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x00000000420494f8 ppClearRxFragment + *fill* 0x000000004204951f 0x1 + .text.ppFillAMPDUBar + 0x0000000042049520 0xf4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x110 (size before relaxing) + 0x0000000042049528 ppFillAMPDUBar + .text.ppReSendBar + 0x0000000042049614 0xdc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x104 (size before relaxing) + 0x0000000042049614 ppReSendBar + .text.ppProcTxDone + 0x00000000420496f0 0x146 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x16e (size before relaxing) + 0x0000000042049708 ppProcTxDone + *fill* 0x0000000042049836 0x2 + .text.pp_create_task + 0x0000000042049838 0x175 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x1b9 (size before relaxing) + 0x0000000042049864 pp_create_task + *fill* 0x00000000420499ad 0x3 + .text.pp_deattach + 0x00000000420499b0 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x3f (size before relaxing) + 0x00000000420499b0 pp_deattach + *fill* 0x00000000420499e3 0x1 + .text.ppInitTxq + 0x00000000420499e4 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x5c (size before relaxing) + 0x00000000420499e4 ppInitTxq + .text.ppTxqEmpty + 0x0000000042049a3c 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x54 (size before relaxing) + 0x0000000042049a40 ppTxqEmpty + .text.pp_delete_task + 0x0000000042049a8c 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x8e (size before relaxing) + 0x0000000042049a90 pp_delete_task + *fill* 0x0000000042049aff 0x1 + .text.ppCheckTxIdle + 0x0000000042049b00 0xb1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xb9 (size before relaxing) + 0x0000000042049b04 ppCheckTxIdle + *fill* 0x0000000042049bb1 0x3 + .text.ppCalTxopDur + 0x0000000042049bb4 0x108 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x120 (size before relaxing) + 0x0000000042049bb4 ppCalTxopDur + .text.ppPrepareBarFrame + 0x0000000042049cbc 0xb8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xdc (size before relaxing) + 0x0000000042049cc4 ppPrepareBarFrame + .text.pp_attach + 0x0000000042049d74 0xbd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xf0 (size before relaxing) + 0x0000000042049d7c pp_attach + *fill* 0x0000000042049e31 0x3 + .text.ppDirectRecycleAmpdu + 0x0000000042049e34 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x57 (size before relaxing) + 0x0000000042049e38 ppDirectRecycleAmpdu + *fill* 0x0000000042049e7f 0x1 + .text.ppClearTxq + 0x0000000042049e80 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x0000000042049e80 ppClearTxq + *fill* 0x0000000042049ec3 0x1 + .text.pp_stop_sw_txq + 0x0000000042049ec4 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x7f (size before relaxing) + 0x0000000042049ec4 pp_stop_sw_txq + *fill* 0x0000000042049f28 0x0 + .text.ppRegressAmpdu + 0x0000000042049f28 0x7c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x0000000042049f2c ppRegressAmpdu + .text.ppGetTaskHdl + 0x0000000042049fa4 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0xe (size before relaxing) + 0x0000000042049fa4 ppGetTaskHdl + *fill* 0x0000000042049fae 0x2 + .text.dbg_lmac_ps_statis_reset + 0x0000000042049fb0 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x0000000042049fb0 dbg_lmac_ps_statis_reset + *fill* 0x0000000042049fc2 0x2 + .text.pp_timer_beacon_monitor_tbtt + 0x0000000042049fc4 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + *fill* 0x0000000042049fd7 0x1 + .text.pp_timer_beacon_monitor + 0x0000000042049fd8 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + *fill* 0x0000000042049feb 0x1 + .text.pp_timer_connectionless_wake_window + 0x0000000042049fec 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000042049ffb 0x1 + .text.pp_timer_connectionless_wake_interval + 0x0000000042049ffc 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a00b 0x1 + .text.pp_timer_disconnected_sleep_delay + 0x000000004204a00c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a01b 0x1 + .text.pp_timer_sleep_delay + 0x000000004204a01c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a02b 0x1 + .text.pp_timer_coex_slice + 0x000000004204a02c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a03b 0x1 + .text.pp_timer_coex_schm + 0x000000004204a03c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a04b 0x1 + .text.pp_timer_active + 0x000000004204a04c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a05b 0x1 + .text.pp_timer_dream + 0x000000004204a05c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a06b 0x1 + .text.pp_timer_noise_check + 0x000000004204a06c 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004204a07b 0x1 + .text.pp_timer_register_post_cb + 0x000000004204a07c 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x000000004204a080 pp_timer_register_post_cb + .text.pp_timer_process + 0x000000004204a08c 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x1e (size before relaxing) + 0x000000004204a08c pp_timer_process + *fill* 0x000000004204a0a6 0x2 + .text.RC_GetDuration + 0x000000004204a0a8 0x79 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + *fill* 0x000000004204a121 0x3 + .text.RC_GetCtsTime + 0x000000004204a124 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x4d (size before relaxing) + 0x000000004204a124 RC_GetCtsTime + *fill* 0x000000004204a16d 0x3 + .text.rc11GRate2SchedIdx + 0x000000004204a170 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x000000004204a18c 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcUpdateAMPDUParam + 0x000000004204a1a8 0xa9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xad (size before relaxing) + 0x000000004204a1b8 rcUpdateAMPDUParam + *fill* 0x000000004204a251 0x3 + .text.rcGet11NHighestRateIdx + 0x000000004204a254 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x70 (size before relaxing) + 0x000000004204a258 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x000000004204a2c0 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x64 (size before relaxing) + 0x000000004204a2c4 rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x000000004204a320 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x40 (size before relaxing) + 0x000000004204a324 rcGet11BHighestRateIdx + .text.rcGetHighestRateIdx + 0x000000004204a35c 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x52 (size before relaxing) + 0x000000004204a35c rcGetHighestRateIdx + *fill* 0x000000004204a39e 0x2 + .text.rcUpdatePhyMode + 0x000000004204a3a0 0x2a1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x2b9 (size before relaxing) + 0x000000004204a3fc rcUpdatePhyMode + *fill* 0x000000004204a641 0x3 + .text.rcTxUpdatePer + 0x000000004204a644 0x74 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x000000004204a64c rcTxUpdatePer + .text.rcGetRate + 0x000000004204a6b8 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x92 (size before relaxing) + 0x000000004204a6c4 rcGetRate + *fill* 0x000000004204a73e 0x2 + .text.rcReachRetryLimit + 0x000000004204a740 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xde (size before relaxing) + 0x000000004204a754 rcReachRetryLimit + *fill* 0x000000004204a7f6 0x2 + .text.rcAttach + 0x000000004204a7f8 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x8a (size before relaxing) + 0x000000004204a7f8 rcAttach + *fill* 0x000000004204a83a 0x2 + .text.trc_onPPTxDone + 0x000000004204a83c 0x81 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x91 (size before relaxing) + 0x000000004204a83c trc_onPPTxDone + *fill* 0x000000004204a8bd 0x3 + .text.rc_disable_trc + 0x000000004204a8c0 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x6b (size before relaxing) + 0x000000004204a8c8 rc_disable_trc + *fill* 0x000000004204a91b 0x1 + .text.rc_disable_trc_by_interface + 0x000000004204a91c 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x1f (size before relaxing) + 0x000000004204a91c rc_disable_trc_by_interface + *fill* 0x000000004204a937 0x1 + .text.trc_init + 0x000000004204a938 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xb0 (size before relaxing) + 0x000000004204a93c trc_init + .text.trc_update_ifx_phy_mode + 0x000000004204a9d0 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x8d (size before relaxing) + 0x000000004204a9d4 trc_update_ifx_phy_mode + *fill* 0x000000004204aa3d 0x3 + .text.trc_deinit + 0x000000004204aa40 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x2d (size before relaxing) + 0x000000004204aa40 trc_deinit + *fill* 0x000000004204aa65 0x3 + .text.rc_set_per_conn_fix_rate + 0x000000004204aa68 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x76 (size before relaxing) + 0x000000004204aa70 rc_set_per_conn_fix_rate + *fill* 0x000000004204aada 0x2 + .text.rc_enable_trc + 0x000000004204aadc 0xc6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0xf2 (size before relaxing) + 0x000000004204aae4 rc_enable_trc + *fill* 0x000000004204aba2 0x2 + .text.wDev_ftm_set_t1t4 + 0x000000004204aba4 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000004204aba8 wDev_ftm_set_t1t4 + *fill* 0x000000004204abba 0x2 + .text.wdev_csi_rx_process + 0x000000004204abbc 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xec (size before relaxing) + 0x000000004204abc8 wdev_csi_rx_process + .text.wDev_SnifferRxData + 0x000000004204ac8c 0x203 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x22f (size before relaxing) + 0x000000004204ac90 wDev_SnifferRxData + *fill* 0x000000004204ae8f 0x1 + .text.wDev_IndicateCtrlFrame + 0x000000004204ae90 0xb6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xd6 (size before relaxing) + 0x000000004204ae94 wDev_IndicateCtrlFrame + *fill* 0x000000004204af46 0x2 + .text.wDev_SnifferRxAmpdu + 0x000000004204af48 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x82 (size before relaxing) + 0x000000004204af48 wDev_SnifferRxAmpdu + *fill* 0x000000004204afba 0x2 + .text.wDev_SetCurChannel + 0x000000004204afbc 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x18 (size before relaxing) + 0x000000004204afbc wDev_SetCurChannel + .text.wDev_Set_Beacon_Int + 0x000000004204afd0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000004204afd4 wDev_Set_Beacon_Int + *fill* 0x000000004204afde 0x2 + .text.wDev_Reset_TBTT + 0x000000004204afe0 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x000000004204afe0 wDev_Reset_TBTT + *fill* 0x000000004204afea 0x2 + .text.wDev_reset_bcnSendTick + 0x000000004204afec 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000004204aff0 wDev_reset_bcnSendTick + .text.wDev_Get_Next_TBTT + 0x000000004204affc 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3e (size before relaxing) + 0x000000004204b000 wDev_Get_Next_TBTT + *fill* 0x000000004204b02e 0x2 + .text.wdev_set_promis_misc_pkt + 0x000000004204b030 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x2e (size before relaxing) + 0x000000004204b030 wdev_set_promis_misc_pkt + *fill* 0x000000004204b053 0x1 + .text.wdev_set_promis_ctrl_pkt + 0x000000004204b054 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3d (size before relaxing) + 0x000000004204b058 wdev_set_promis_ctrl_pkt + *fill* 0x000000004204b089 0x3 + .text.wdev_set_promis + 0x000000004204b08c 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x8a (size before relaxing) + 0x000000004204b094 wdev_set_promis + *fill* 0x000000004204b0de 0x2 + .text.wDev_ftm_record_t1t4 + 0x000000004204b0e0 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000004204b0e4 wDev_ftm_record_t1t4 + .text.wDev_ftm_record_t2t3 + 0x000000004204b108 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x000000004204b10c wDev_ftm_record_t2t3 + .text.wDev_record_ftm_data_local + 0x000000004204b130 0x8a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x9e (size before relaxing) + 0x000000004204b130 wDev_record_ftm_data_local + *fill* 0x000000004204b1ba 0x2 + .text.wDev_Rxbuf_Deinit + 0x000000004204b1bc 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x6a (size before relaxing) + 0x000000004204b1c0 wDev_Rxbuf_Deinit + *fill* 0x000000004204b216 0x2 + .text.wDev_Rxbuf_Init + 0x000000004204b218 0x1e3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x23b (size before relaxing) + 0x000000004204b23c wDev_Rxbuf_Init + *fill* 0x000000004204b3fb 0x1 + .text.wDev_disable_low_rate + 0x000000004204b3fc 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004204b3fc wDev_disable_low_rate + *fill* 0x000000004204b404 0x0 + .text.wDev_enable_low_rate + 0x000000004204b404 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004204b404 wDev_enable_low_rate + *fill* 0x000000004204b40c 0x0 + .text.wDev_Insert_KeyEntry + 0x000000004204b40c 0x73 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x8b (size before relaxing) + 0x000000004204b40c wDev_Insert_KeyEntry + *fill* 0x000000004204b47f 0x1 + .text.wDev_remove_KeyEntry + 0x000000004204b480 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x3c (size before relaxing) + 0x000000004204b480 wDev_remove_KeyEntry + .text.wDev_remove_KeyEntry_all_cnx + 0x000000004204b4b4 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x35 (size before relaxing) + 0x000000004204b4b4 wDev_remove_KeyEntry_all_cnx + *fill* 0x000000004204b4de 0x2 + .text.wDev_Crypto_Disable + 0x000000004204b4e0 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x27 (size before relaxing) + 0x000000004204b4e0 wDev_Crypto_Disable + *fill* 0x000000004204b4ff 0x1 + .text.wdev_is_mgmt_hwdecr_enabled + 0x000000004204b500 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x14 (size before relaxing) + 0x000000004204b500 wdev_is_mgmt_hwdecr_enabled + *fill* 0x000000004204b50d 0x3 + .text.wdev_data_init + 0x000000004204b510 0xfb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x147 (size before relaxing) + 0x000000004204b564 wdev_data_init + *fill* 0x000000004204b60b 0x1 + .text.wdev_funcs_init + 0x000000004204b60c 0x6b0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x7ac (size before relaxing) + 0x000000004204b81c wdev_funcs_init + .text.wdev_funcs_deinit + 0x000000004204bcbc 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x25 (size before relaxing) + 0x000000004204bcbc wdev_funcs_deinit + *fill* 0x000000004204bcd9 0x3 + .text.config_get_wifi_ampdu_rx_enable + 0x000000004204bcdc 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bcdc config_get_wifi_ampdu_rx_enable + *fill* 0x000000004204bce6 0x2 + .text.config_get_wifi_ampdu_tx_enable + 0x000000004204bce8 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bce8 config_get_wifi_ampdu_tx_enable + *fill* 0x000000004204bcf2 0x2 + .text.config_get_wifi_amsdu_tx_enable + 0x000000004204bcf4 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004204bcf4 config_get_wifi_amsdu_tx_enable + *fill* 0x000000004204bcff 0x1 + .text.config_get_wifi_nvs_enable + 0x000000004204bd00 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd00 config_get_wifi_nvs_enable + *fill* 0x000000004204bd0a 0x2 + .text.config_get_wifi_rx_baw + 0x000000004204bd0c 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd0c config_get_wifi_rx_baw + *fill* 0x000000004204bd16 0x2 + .text.config_get_wifi_static_rx_buffer_num + 0x000000004204bd18 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd18 config_get_wifi_static_rx_buffer_num + *fill* 0x000000004204bd22 0x2 + .text.config_get_wifi_dynamic_rx_buffer_num + 0x000000004204bd24 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd24 config_get_wifi_dynamic_rx_buffer_num + *fill* 0x000000004204bd2e 0x2 + .text.config_get_wifi_tx_buffer_type + 0x000000004204bd30 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd30 config_get_wifi_tx_buffer_type + *fill* 0x000000004204bd3a 0x2 + .text.config_get_wifi_static_tx_buffer_num + 0x000000004204bd3c 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd3c config_get_wifi_static_tx_buffer_num + *fill* 0x000000004204bd46 0x2 + .text.config_get_wifi_dynamic_tx_buffer_num + 0x000000004204bd48 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd48 config_get_wifi_dynamic_tx_buffer_num + *fill* 0x000000004204bd52 0x2 + .text.config_get_wifi_cache_tx_buffer_num + 0x000000004204bd54 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd54 config_get_wifi_cache_tx_buffer_num + *fill* 0x000000004204bd5e 0x2 + .text.config_get_wifi_task_stack_size + 0x000000004204bd60 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x2d (size before relaxing) + 0x000000004204bd64 config_get_wifi_task_stack_size + *fill* 0x000000004204bd85 0x3 + .text.config_get_wifi_task_core_id + 0x000000004204bd88 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd88 config_get_wifi_task_core_id + *fill* 0x000000004204bd92 0x2 + .text.config_get_wifi_beacon_max_len + 0x000000004204bd94 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bd94 config_get_wifi_beacon_max_len + *fill* 0x000000004204bd9e 0x2 + .text.config_get_wifi_mgmt_sbuf_num + 0x000000004204bda0 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x000000004204bda0 config_get_wifi_mgmt_sbuf_num + *fill* 0x000000004204bdaa 0x2 + .text.config_get_wifi_feature_capabilities + 0x000000004204bdac 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x000000004204bdac config_get_wifi_feature_capabilities + *fill* 0x000000004204bdba 0x2 + .text.config_get_wifi_espnow_max_encrypt_num + 0x000000004204bdbc 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004204bdbc config_get_wifi_espnow_max_encrypt_num + *fill* 0x000000004204bdc7 0x1 + .text.config_get_wifi_sta_disconnected_pm + 0x000000004204bdc8 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x000000004204bdc8 config_get_wifi_sta_disconnected_pm + *fill* 0x000000004204bdd3 0x1 + .text.hal_agreement_add_rx_ba + 0x000000004204bdd4 0x10f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x11f (size before relaxing) + 0x000000004204bdf4 hal_agreement_add_rx_ba + *fill* 0x000000004204bee3 0x1 + .text.hal_agreement_del_rx_ba + 0x000000004204bee4 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x86 (size before relaxing) + 0x000000004204bee8 hal_agreement_del_rx_ba + *fill* 0x000000004204bf4e 0x2 + .text.hal_coex_pti_init + 0x000000004204bf50 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x000000004204bf54 hal_coex_pti_init + *fill* 0x000000004204bf6b 0x1 + .text.hal_set_rx_beacon_pti + 0x000000004204bf6c 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x86 (size before relaxing) + 0x000000004204bf80 hal_set_rx_beacon_pti + *fill* 0x000000004204bfee 0x2 + .text.hal_set_tx_pti + 0x000000004204bff0 0xc4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0xd0 (size before relaxing) + 0x000000004204c000 hal_set_tx_pti + .text.hal_set_rx_active_pti + 0x000000004204c0b4 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x000000004204c0b8 hal_set_rx_active_pti + *fill* 0x000000004204c0d5 0x3 + .text.hal_set_rx_ack_pti + 0x000000004204c0d8 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x28 (size before relaxing) + 0x000000004204c0d8 hal_set_rx_ack_pti + .text.hal_set_wifi_default_pti + 0x000000004204c0fc 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x29 (size before relaxing) + 0x000000004204c0fc hal_set_wifi_default_pti + *fill* 0x000000004204c11d 0x3 + .text.hal_crypto_clr_key_entry + 0x000000004204c120 0xb5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x000000004204c14c hal_crypto_clr_key_entry + *fill* 0x000000004204c1d5 0x3 + .text.hal_crypto_set_key_entry + 0x000000004204c1d8 0x13f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x167 (size before relaxing) + 0x000000004204c200 hal_crypto_set_key_entry + *fill* 0x000000004204c317 0x1 + .text.hal_crypto_is_key_valid + 0x000000004204c318 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x1b (size before relaxing) + 0x000000004204c318 hal_crypto_is_key_valid + *fill* 0x000000004204c32f 0x1 + .text.hal_crypto_get_key_entry + 0x000000004204c330 0x94 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0xac (size before relaxing) + 0x000000004204c33c hal_crypto_get_key_entry + .text.hal_crypto_init + 0x000000004204c3c4 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x000000004204c3dc hal_crypto_init + *fill* 0x000000004204c40e 0x2 + .text.hal_crypto_mgmt_rx_enabled + 0x000000004204c410 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x23 (size before relaxing) + 0x000000004204c410 hal_crypto_mgmt_rx_enabled + *fill* 0x000000004204c42b 0x1 + .text.hal_crypto_enable + 0x000000004204c42c 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0xa6 (size before relaxing) + 0x000000004204c43c hal_crypto_enable + *fill* 0x000000004204c4be 0x2 + .text.hal_crypto_disable + 0x000000004204c4c0 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x49 (size before relaxing) + 0x000000004204c4c0 hal_crypto_disable + *fill* 0x000000004204c4f9 0x3 + .text.mac_tx_set_pti + 0x000000004204c4fc 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x28 (size before relaxing) + 0x000000004204c4fc mac_tx_set_pti + .text.hal_mac_tx_set_ppdu + 0x000000004204c520 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x5e (size before relaxing) + 0x000000004204c52c hal_mac_tx_set_ppdu + *fill* 0x000000004204c562 0x2 + .text.hal_mac_tx_config_timeout + 0x000000004204c564 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x31 (size before relaxing) + 0x000000004204c564 hal_mac_tx_config_timeout + *fill* 0x000000004204c58d 0x3 + .text.hal_mac_txq_disable + 0x000000004204c590 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x29 (size before relaxing) + 0x000000004204c594 hal_mac_txq_disable + *fill* 0x000000004204c5b5 0x3 + .text.hal_mac_set_txq_invalid + 0x000000004204c5b8 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x29 (size before relaxing) + 0x000000004204c5b8 hal_mac_set_txq_invalid + *fill* 0x000000004204c5d9 0x3 + .text.hal_mac_is_txq_enabled + 0x000000004204c5dc 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x1d (size before relaxing) + 0x000000004204c5dc hal_mac_is_txq_enabled + *fill* 0x000000004204c5f5 0x3 + .text.hal_mac_tx_set_cca + 0x000000004204c5f8 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x28 (size before relaxing) + 0x000000004204c5fc hal_mac_tx_set_cca + .text.hal_mac_disable_low_rate + 0x000000004204c61c 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x4d (size before relaxing) + 0x000000004204c634 hal_mac_disable_low_rate + *fill* 0x000000004204c665 0x3 + .text.hal_mac_enable_low_rate + 0x000000004204c668 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x46 (size before relaxing) + 0x000000004204c66c hal_mac_enable_low_rate + *fill* 0x000000004204c69a 0x2 + .text.mac_rxbuf_init + 0x000000004204c69c 0x91 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x99 (size before relaxing) + 0x000000004204c6c0 mac_rxbuf_init + *fill* 0x000000004204c72d 0x3 + .text.mac_txrx_init + 0x000000004204c730 0x22f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x247 (size before relaxing) + 0x000000004204c784 mac_txrx_init + *fill* 0x000000004204c95f 0x1 + .text.hal_mac_set_rxq_policy + 0x000000004204c960 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x000000004204c964 hal_mac_set_rxq_policy + *fill* 0x000000004204c99e 0x2 + .text.mac_last_rxbuf_init + 0x000000004204c9a0 0x16d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x179 (size before relaxing) + 0x000000004204ca10 mac_last_rxbuf_init + *fill* 0x000000004204cb0d 0x3 + .text.hal_deinit + 0x000000004204cb10 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x8e (size before relaxing) + 0x000000004204cb20 hal_deinit + *fill* 0x000000004204cb86 0x2 + .text.hal_mac_set_addr + 0x000000004204cb88 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x6f (size before relaxing) + 0x000000004204cb8c hal_mac_set_addr + *fill* 0x000000004204cbef 0x1 + .text.hal_mac_set_bssid + 0x000000004204cbf0 0x92 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x9e (size before relaxing) + 0x000000004204cc00 hal_mac_set_bssid + *fill* 0x000000004204cc82 0x2 + .text.hal_mac_rx_set_policy + 0x000000004204cc84 0xb7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0xcf (size before relaxing) + 0x000000004204cc8c hal_mac_rx_set_policy + *fill* 0x000000004204cd3b 0x1 + .text.hal_init + 0x000000004204cd3c 0x12e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x1ae (size before relaxing) + 0x000000004204cd48 hal_init + *fill* 0x000000004204ce6a 0x2 + .text.hal_mac_tsf_get_time + 0x000000004204ce6c 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x8c (size before relaxing) + 0x000000004204ce78 hal_mac_tsf_get_time + .text.hal_get_tsf_time + 0x000000004204cef0 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x6a (size before relaxing) + 0x000000004204cef0 hal_get_tsf_time + *fill* 0x000000004204cf4e 0x2 + .text.hal_mac_tsf_reset + 0x000000004204cf50 0xec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x100 (size before relaxing) + 0x000000004204cf64 hal_mac_tsf_reset + .text.hal_disable_sta_beacon_filter + 0x000000004204d03c 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x36 (size before relaxing) + 0x000000004204d044 hal_disable_sta_beacon_filter + *fill* 0x000000004204d06e 0x2 + .text.mac_tx_set_plcp1 + 0x000000004204d070 0xee E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0xf2 (size before relaxing) + 0x000000004204d084 mac_tx_set_plcp1 + *fill* 0x000000004204d15e 0x2 + .text.mac_tx_set_htsig + 0x000000004204d160 0x23c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x254 (size before relaxing) + 0x000000004204d180 mac_tx_set_htsig + .text.hal_mac_fill_hwtxop + 0x000000004204d39c 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x61 (size before relaxing) + 0x000000004204d3a0 hal_mac_fill_hwtxop + *fill* 0x000000004204d3f5 0x3 + .text.mac_tx_set_txop_q + 0x000000004204d3f8 0xfa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x112 (size before relaxing) + 0x000000004204d400 mac_tx_set_txop_q + *fill* 0x000000004204d4f2 0x2 + .text.hal_mac_get_txq_state + 0x000000004204d4f4 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x000000004204d4fc hal_mac_get_txq_state + *fill* 0x000000004204d539 0x3 + .text.hal_mac_clr_txq_state + 0x000000004204d53c 0x5c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x000000004204d548 hal_mac_clr_txq_state + .text.hal_mac_get_txq_pmd + 0x000000004204d598 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x000000004204d5a0 hal_mac_get_txq_pmd + *fill* 0x000000004204d5e2 0x2 + .text.hal_attenna_init + 0x000000004204d5e4 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x86 (size before relaxing) + 0x000000004204d5e8 hal_attenna_init + *fill* 0x000000004204d666 0x2 + .text.hal_mac_rate_autoack_init + 0x000000004204d668 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x000000004204d674 hal_mac_rate_autoack_init + *fill* 0x000000004204d68e 0x2 + .text.hal_sniffer_enable + 0x000000004204d690 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x8a (size before relaxing) + 0x000000004204d694 hal_sniffer_enable + *fill* 0x000000004204d716 0x2 + .text.hal_sniffer_disable + 0x000000004204d718 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x8c (size before relaxing) + 0x000000004204d718 hal_sniffer_disable + .text.hal_sniffer_rx_set_promis + 0x000000004204d79c 0xb7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0xc3 (size before relaxing) + 0x000000004204d7a4 hal_sniffer_rx_set_promis + *fill* 0x000000004204d853 0x1 + .text.hal_sniffer_set_promis_misc_pkt + 0x000000004204d854 0xa3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0xab (size before relaxing) + 0x000000004204d860 hal_sniffer_set_promis_misc_pkt + *fill* 0x000000004204d8f7 0x1 + .text.hal_enable_sta_tsf + 0x000000004204d8f8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x20 (size before relaxing) + 0x000000004204d8fc hal_enable_sta_tsf + .text.hal_disable_sta_tsf + 0x000000004204d914 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x20 (size before relaxing) + 0x000000004204d918 hal_disable_sta_tsf + .text.hal_timer_update_by_rtc + 0x000000004204d930 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x63 (size before relaxing) + 0x000000004204d940 hal_timer_update_by_rtc + *fill* 0x000000004204d98b 0x1 + .text.hal_set_sta_tsf + 0x000000004204d98c 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x33 (size before relaxing) + 0x000000004204d98c hal_set_sta_tsf + *fill* 0x000000004204d9b3 0x1 + .text.hal_enable_sta_tbtt + 0x000000004204d9b4 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x65 (size before relaxing) + 0x000000004204d9c0 hal_enable_sta_tbtt + *fill* 0x000000004204da0d 0x3 + .text.hal_disable_sta_tbtt + 0x000000004204da10 0x41 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x51 (size before relaxing) + 0x000000004204da14 hal_disable_sta_tbtt + *fill* 0x000000004204da51 0x3 + .text.hal_set_sta_tbtt + 0x000000004204da54 0x86 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x92 (size before relaxing) + 0x000000004204da64 hal_set_sta_tbtt + *fill* 0x000000004204dada 0x2 + .text.hal_set_sta_tbtt_interval + 0x000000004204dadc 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x26 (size before relaxing) + 0x000000004204dadc hal_set_sta_tbtt_interval + *fill* 0x000000004204dafa 0x2 + .text.hal_set_sta_tbtt_ahead_time + 0x000000004204dafc 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x1f (size before relaxing) + 0x000000004204dafc hal_set_sta_tbtt_ahead_time + *fill* 0x000000004204db17 0x1 + .text.hal_set_sta_tsf_wakeup + 0x000000004204db18 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x2f (size before relaxing) + 0x000000004204db18 hal_set_sta_tsf_wakeup + *fill* 0x000000004204db3b 0x1 + .literal.iterator_create + 0x000000004204db3c 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_iterator_release + 0x000000004204db44 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x000000004204db44 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x000000004204db64 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x000000004204db64 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first + 0x000000004204db6c 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_write + 0x000000004204db6c 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_read_raw + 0x000000004204db84 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write_raw + 0x000000004204db8c 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x000000004204db90 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x000000004204db98 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_munmap + 0x000000004204dba0 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_read + 0x000000004204dba4 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x000000004204dba8 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x000000004204dbac 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.sha_hal_wait_idle + 0x000000004204dbc8 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_hash_block + 0x000000004204dbcc 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.sha_hal_hash_dma + 0x000000004204dbdc 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.sha_hal_read_digest + 0x000000004204dbe8 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_write_digest + 0x000000004204dbec 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4 (size before relaxing) + .literal.sha_hal_sha512_init_hash + 0x000000004204dbec 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.aes_hal_setkey + 0x000000004204dbf4 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_transform_dma_start + 0x000000004204dbfc 0xc esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_transform_dma_finish + 0x000000004204dc08 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_mode_init + 0x000000004204dc0c 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_set_iv + 0x000000004204dc14 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_read_iv + 0x000000004204dc18 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.aes_hal_wait_done + 0x000000004204dc1c 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.esp_fill_random + 0x000000004204dc20 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.esp_base_mac_addr_set + 0x000000004204dc30 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x24 (size before relaxing) + .literal.esp_base_mac_addr_get + 0x000000004204dc48 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x000000004204dc50 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x1c (size before relaxing) + .literal.esp_read_mac + 0x000000004204dc60 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x50 (size before relaxing) + .literal.gdma_acquire_pair_handle + 0x000000004204dc70 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x24 (size before relaxing) + .literal.gdma_acquire_group_handle + 0x000000004204dc84 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x28 (size before relaxing) + .literal.gdma_release_group_handle + 0x000000004204dc88 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x28 (size before relaxing) + .literal.gdma_release_pair_handle + 0x000000004204dc94 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x20 (size before relaxing) + .literal.gdma_del_rx_channel + 0x000000004204dc9c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x1c (size before relaxing) + .literal.gdma_del_tx_channel + 0x000000004204dc9c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x1c (size before relaxing) + .literal.gdma_new_channel + 0x000000004204dc9c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xc0 (size before relaxing) + .literal.gdma_del_channel + 0x000000004204dcd4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x14 (size before relaxing) + .literal.gdma_get_channel_id + 0x000000004204dcd8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x14 (size before relaxing) + .literal.gdma_connect + 0x000000004204dcdc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x3c (size before relaxing) + .literal.gdma_disconnect + 0x000000004204dce8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x30 (size before relaxing) + .literal.gdma_set_transfer_ability + 0x000000004204dcf0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x30 (size before relaxing) + .literal.gdma_start + 0x000000004204dd00 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x40 (size before relaxing) + .literal.esp_crypto_sha_aes_lock_acquire + 0x000000004204dd14 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_sha_aes_lock_release + 0x000000004204dd1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_mpi_lock_acquire + 0x000000004204dd20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_mpi_lock_release + 0x000000004204dd24 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.ets_timer_setfn + 0x000000004204dd24 0x1c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x24 (size before relaxing) + .literal.ets_timer_done + 0x000000004204dd40 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal.lib_printf + 0x000000004204dd40 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.phy_printf + 0x000000004204dd44 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.pp_printf + 0x000000004204dd48 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.net80211_printf + 0x000000004204dd4c 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.load_cal_data_from_nvs_handle + 0x000000004204dd50 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x54 (size before relaxing) + .literal.store_cal_data_to_nvs_handle + 0x000000004204dd74 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_phy_disable + 0x000000004204dd88 0x20 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_wifi_bt_power_domain_off + 0x000000004204dda8 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_phy_modem_init + 0x000000004204ddb8 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_phy_modem_deinit + 0x000000004204ddc0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_phy_get_init_data + 0x000000004204ddc0 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_load_cal_data_from_nvs + 0x000000004204ddc4 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x000000004204ddd4 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x000000004204ddd4 0x20 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x84 (size before relaxing) + .literal.esp_phy_enable + 0x000000004204ddf4 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + .literal.add_offer_options + 0x000000004204de00 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.kill_oldest_dhcps_pool + 0x000000004204de00 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.parse_options + 0x000000004204de0c 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.create_msg + 0x000000004204de0c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x10 (size before relaxing) + .literal.dhcps_new + 0x000000004204de10 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x8 (size before relaxing) + .literal.dhcps_delete + 0x000000004204de10 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_tmr + 0x000000004204de10 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.parse_msg + 0x000000004204de14 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x3c (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x000000004204de18 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.send_offer + 0x000000004204de18 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.send_ack + 0x000000004204de18 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.send_nak + 0x000000004204de18 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.handle_dhcp + 0x000000004204de18 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_start + 0x000000004204de18 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x38 (size before relaxing) + .literal.dhcps_stop + 0x000000004204de28 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_action_start + 0x000000004204de28 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x000000004204de28 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x000000004204de28 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x60 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x000000004204de44 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x000000004204de44 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.low_level_output + 0x000000004204de48 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x14 (size before relaxing) + .literal.wlanif_input + 0x000000004204de48 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x10 (size before relaxing) + .literal.wlanif_init + 0x000000004204de48 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x28 (size before relaxing) + .literal.wlanif_init_sta + 0x000000004204de64 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.esp_pbuf_free + 0x000000004204de64 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x8 (size before relaxing) + .literal.esp_pbuf_allocate + 0x000000004204de64 0x4 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .literal.wpa_install_key + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sendto_wrapper + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x000000004204de68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_attach + 0x000000004204de68 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + .literal.wpa_config_done + 0x000000004204de84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x000000004204de84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x000000004204de84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x000000004204de84 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x000000004204de88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.hostap_sta_join + 0x000000004204de88 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x000000004204de88 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sta_connected_cb + 0x000000004204de8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x000000004204de8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_config_bss + 0x000000004204de8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x000000004204de8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.esp_supplicant_init + 0x000000004204de8c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x70 (size before relaxing) + .literal.esp_supplicant_deinit + 0x000000004204dee4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211_handle_rx_frm + 0x000000004204dee4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_unset_all_appie + 0x000000004204dee4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_common_deinit + 0x000000004204dee4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_common_init + 0x000000004204dee8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_assoc_ie + 0x000000004204def0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x000000004204def0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x000000004204defc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x000000004204df04 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x58 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x000000004204df0c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x000000004204df10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.esp_wpa3_free_sae_data + 0x000000004204df10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x000000004204df10 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x000000004204df10 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.owe_build_dhie + 0x000000004204df18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x8 (size before relaxing) + .literal.owe_deinit + 0x000000004204df18 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x10 (size before relaxing) + .literal.esp_wifi_register_owe_cb + 0x000000004204df18 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .literal.hostapd_get_hapd_data + 0x000000004204df20 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.hostap_init + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x74 (size before relaxing) + .literal.hostap_deinit + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x24 (size before relaxing) + .literal.ecp_opp + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_alloc_key + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_deinit + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_order_len + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x000000004204df24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x000000004204df24 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4c (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_set_pubkey_point + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + .literal.crypto_ec_free_key + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_deinit + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_init + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40 (size before relaxing) + .literal.crypto_ecdh_get_pubkey + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ecdh_set_peerkey + 0x000000004204df2c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x74 (size before relaxing) + .literal.timeout_exists + 0x000000004204df2c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_run_timer + 0x000000004204df30 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_remove_timeout + 0x000000004204df34 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x10 (size before relaxing) + .literal.eloop_init + 0x000000004204df38 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x14 (size before relaxing) + .literal.eloop_register_timeout + 0x000000004204df40 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x28 (size before relaxing) + .literal.eloop_cancel_timeout + 0x000000004204df48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_run + 0x000000004204df48 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x24 (size before relaxing) + .literal.eloop_run_wrapper + 0x000000004204df4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4 (size before relaxing) + .literal.eloop_destroy + 0x000000004204df4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x18 (size before relaxing) + .literal.hostapd_derive_psk + 0x000000004204df4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x000000004204df4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_get_psk + 0x000000004204df4c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_get_sm + 0x000000004204df4c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x000000004204df54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x000000004204df54 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x000000004204df54 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_receive_error_report + 0x000000004204df58 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x000000004204df58 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_sm_ptk_update + 0x000000004204df58 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x000000004204df58 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x000000004204df5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x000000004204df5c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x000000004204df5c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x000000004204df64 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_setkeys + 0x000000004204df64 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_disconnect + 0x000000004204df64 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x000000004204df64 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_derive_ptk + 0x000000004204df64 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_verify_key_mic + 0x000000004204df68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_replay_counter_valid + 0x000000004204df68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x000000004204df68 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x000000004204df68 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + .literal.ieee80211w_kde_add + 0x000000004204df6c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.resend_eapol_handle + 0x000000004204df70 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x000000004204df74 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x000000004204df7c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_group_config_group_keys + 0x000000004204df7c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x2c (size before relaxing) + .literal.wpa_group_setkeysdone + 0x000000004204df80 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_sm_step + 0x000000004204df80 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_init + 0x000000004204df80 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_rekey_gtk + 0x000000004204df80 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_group_ensure_init + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_init + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_auth_sta_init + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.__wpa_send_eapol + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x74 (size before relaxing) + .literal.wpa_send_eapol + 0x000000004204df84 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x000000004204df84 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x000000004204df88 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x74 (size before relaxing) + .literal.wpa_sm_step + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_rekey_ptk + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x000000004204df8c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x000000004204df8c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.hostap_eapol_resend_process + 0x000000004204df90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_ap_join + 0x000000004204df90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_ap_remove + 0x000000004204df90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_generic + 0x000000004204df90 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_add_kde + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x28 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.ap_sta_hash_del + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x8 (size before relaxing) + .literal.ap_get_sta + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4 (size before relaxing) + .literal.ap_free_sta + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x10 (size before relaxing) + .literal.ap_sta_add + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x10 (size before relaxing) + .literal.sae_parse_token_container + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.hkdf_extract + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.hkdf_expand + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_k_ffc + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.debug_print_bignum + 0x000000004204df9c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sswu 0x000000004204df9c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1f0 (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x000000004204dfd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_max_min_addr + 0x000000004204dfd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed_key + 0x000000004204dfd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_parse_password_identifier + 0x000000004204dfd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x000000004204dfd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x30 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x28 (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_get_rand + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_get_rand_and_mask + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_parse_commit_scalar + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_derive_k_ecc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_kdf_hash + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_rejected_groups + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_clear_temp_data + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_clear_data + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_set_group + 0x000000004204dfd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_derive_pt_ecc + 0x000000004204dfd4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pt_ffc + 0x000000004204dfdc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_derive_keys + 0x000000004204dfe4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x68 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ecc + 0x000000004204dfe8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ffc + 0x000000004204dfec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + .literal.sae_deinit_pt + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_pt_group + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_derive_pt + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_prepare_commit + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_prepare_commit_pt + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x28 (size before relaxing) + .literal.sae_process_commit + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_write_commit + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x68 (size before relaxing) + .literal.sae_group_allowed + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_write_confirm + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x000000004204dff0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.dragonfly_get_rand_1_to_p_1 + 0x000000004204dff0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.dragonfly_get_random_qr_qnr + 0x000000004204dff4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x1c (size before relaxing) + .literal.dragonfly_is_quadratic_residue_blind + 0x000000004204dff4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x34 (size before relaxing) + .literal.dragonfly_sqrt + 0x000000004204dff4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.wpa_kck_len + 0x000000004204dff4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_kek_len + 0x000000004204dff4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x000000004204dff4 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x000000004204e004 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1c (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x000000004204e00c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_mic_len + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_cipher_valid_mgmt_group + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsnxe + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x000000004204e01c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x000000004204e01c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x20 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x000000004204e020 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_pmkid + 0x000000004204e020 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x000000004204e028 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x50 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x000000004204e028 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.hmac_sha256_kdf + 0x000000004204e028 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x28 (size before relaxing) + .literal.dh_groups_get + 0x000000004204e02c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_sm_get_key + 0x000000004204e030 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x000000004204e030 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x000000004204e030 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.is_wpa2_enterprise_connection + 0x000000004204e030 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_derive_ptk + 0x000000004204e030 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_check_group_cipher + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_seq + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_install_igtk + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211w_set_keys + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_pmksa_free_cb + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.cipher_type_map_supp_to_public + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_eapol_key_send + 0x000000004204e034 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_key_request + 0x000000004204e034 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3c (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x000000004204e038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_state + 0x000000004204e038 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x000000004204e03c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x000000004204e03c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x000000004204e03c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x000000004204e03c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .literal.wpa_sm_init + 0x000000004204e03c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_notify_assoc + 0x000000004204e040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_profile + 0x000000004204e040 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_set_pmk + 0x000000004204e040 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_passphrase + 0x000000004204e048 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x44 (size before relaxing) + .literal.set_assoc_ie + 0x000000004204e048 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_key + 0x000000004204e048 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x000000004204e048 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x000000004204e04c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x000000004204e04c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x000000004204e04c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x000000004204e04c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3c (size before relaxing) + .literal.wpa_supplicant_activate_ptk + 0x000000004204e054 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x000000004204e054 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x000000004204e054 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x000000004204e054 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x000000004204e054 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.eapol_txcb + 0x000000004204e054 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_cur_pmksa_matches_akm + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.get_wpa_sm + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_ap_rsnxe + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_set_assoc_rsnxe + 0x000000004204e058 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_bss + 0x000000004204e058 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x7c (size before relaxing) + .literal.wpa_sm_drop_sa + 0x000000004204e064 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x000000004204e064 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_notify_disassoc + 0x000000004204e064 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.owe_build_assoc_req + 0x000000004204e064 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x38 (size before relaxing) + .literal.owe_process_assoc_resp + 0x000000004204e064 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x74 (size before relaxing) + .literal.wpa_parse_generic + 0x000000004204e068 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_gen_wpa_ie_rsn + 0x000000004204e06c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x38 (size before relaxing) + .literal.wpa_gen_wpa_ie_wpa + 0x000000004204e078 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_rsnxe + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_free + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0xc (size before relaxing) + .literal.wpabuf_zeropad + 0x000000004204e080 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x18 (size before relaxing) + .literal.wpa2_get_eap_state + 0x000000004204e080 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .literal.wpa_alloc_eapol + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_eapol + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ether_send + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_send_eapol + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_transition_disable + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_free_eapol + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.crypto_rng_wrapper + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_init + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init_uint + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_sqrmod + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_rshift + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_cmp + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_bits + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_odd + 0x000000004204e084 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_rand + 0x000000004204e084 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_legendre + 0x000000004204e088 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x28 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x000000004204e088 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x000000004204e088 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x000000004204e088 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_expire + 0x000000004204e08c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_flush + 0x000000004204e08c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x000000004204e08c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4c (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x000000004204e094 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_len + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.block_cipher_df + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x3c (size before relaxing) + .literal.ctr_drbg_update_internal + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed_internal + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_gen_public_restartable + 0x000000004204e094 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_compute_shared_restartable + 0x000000004204e094 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_free_internal + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_calc_secret_internal + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.derive_mpi + 0x000000004204e098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x000000004204e098 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_sign_restartable + 0x000000004204e09c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x000000004204e0a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ecdsa_verify_restartable + 0x000000004204e0a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x6c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x000000004204e0ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x000000004204e0ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x000000004204e0ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x000000004204e0b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.ecp_pick_window_size + 0x000000004204e0b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_init_many + 0x000000004204e0b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_free_many + 0x000000004204e0b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_bad_points_mx + 0x000000004204e0b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x000000004204e0bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_mod + 0x000000004204e0bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_modp + 0x000000004204e0bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_mpi_mul_mod + 0x000000004204e0bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_add_mod + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_sw + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_shift_l_mod + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_safe_invert_jac + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_comb_recode_core + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_mx + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_normalize_mxz + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_randomize_mxz + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_sw_rhs + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.ecp_normalize_jac + 0x000000004204e0c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x000000004204e0c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x74 (size before relaxing) + .literal.ecp_randomize_jac + 0x000000004204e0c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.ecp_double_add_mxz + 0x000000004204e0c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x88 (size before relaxing) + .literal.ecp_double_jac + 0x000000004204e0c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe4 (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x000000004204e0c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x000000004204e0c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa4 (size before relaxing) + .literal.ecp_precompute_comb + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_comb_core + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_mul_comb + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_restartable_internal + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x000000004204e0cc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x000000004204e0cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ecp_mod_p224_raw + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mod_p256_raw + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.ecp_mod_p255 + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mod_koblitz + 0x000000004204e0d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mod_p256k1 + 0x000000004204e0d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224k1 + 0x000000004204e0d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192k1 + 0x000000004204e0d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p384 + 0x000000004204e0dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p256 + 0x000000004204e0dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224 + 0x000000004204e0dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mod_p521_raw + 0x000000004204e0dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x14 (size before relaxing) + .literal.ecp_mod_p521 + 0x000000004204e0e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_group_load + 0x000000004204e0e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x000000004204e0e4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_mod_p192_raw + 0x000000004204e0f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.ecp_mod_p192 + 0x000000004204e0f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x000000004204e0f0 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x180 (size before relaxing) + .literal.entropy_update + 0x000000004204e234 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x14 (size before relaxing) + .literal.entropy_gather_internal + 0x000000004204e234 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x000000004204e234 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x000000004204e234 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x000000004204e238 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_hash_info_get_size + 0x000000004204e238 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .literal.mbedtls_hmac_drbg_init + 0x000000004204e23c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_update + 0x000000004204e23c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x2c (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_pk_free + 0x000000004204e240 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x000000004204e240 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x000000004204e250 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.rsa_debug + 0x000000004204e258 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x000000004204e260 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_get_bitlen + 0x000000004204e264 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_free_wrap + 0x000000004204e264 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x000000004204e264 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x000000004204e264 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x000000004204e264 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x000000004204e268 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x000000004204e26c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_verify_wrap + 0x000000004204e270 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.eckey_free_wrap + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_check_context + 0x000000004204e278 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x000000004204e278 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.compute_hash + 0x000000004204e27c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mgf_mask + 0x000000004204e27c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.hash_mprime + 0x000000004204e27c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x000000004204e280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_init + 0x000000004204e280 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x000000004204e280 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x000000004204e284 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x000000004204e284 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_public + 0x000000004204e284 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x000000004204e288 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc4 (size before relaxing) + .literal.rsa_rsassa_pss_sign + 0x000000004204e288 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x000000004204e288 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x000000004204e288 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x000000004204e288 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x000000004204e28c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x000000004204e28c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x000000004204e28c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x000000004204e28c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x000000004204e28c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_free + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_hardware_poll + 0x000000004204e290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .literal.gdma_hal_init + 0x000000004204e290 0x4 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .literal.ethip6_output + 0x000000004204e294 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x14 (size before relaxing) + .literal._ZdaPv + 0x000000004204e298 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZdaPvj + 0x000000004204e298 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x000000004204e298 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x000000004204e29c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x000000004204e29c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x000000004204e29c 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x000000004204e2a4 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x000000004204e2a4 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x000000004204e2a4 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal.__cxa_get_globals + 0x000000004204e2ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x18 (size before relaxing) + .literal.startup._GLOBAL__sub_I___cxa_get_globals_fast + 0x000000004204e2ac 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal.exit._GLOBAL__sub_D___cxa_get_globals_fast + 0x000000004204e2b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x000000004204e2b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x000000004204e2b0 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt9terminatev + 0x000000004204e2b4 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._ZSt14get_unexpectedv + 0x000000004204e2b4 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .literal._Znaj + 0x000000004204e2b8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x000000004204e2b8 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x000000004204e2c4 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x000000004204e2c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_ + 0x000000004204e2c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x000000004204e2c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x000000004204e2c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x000000004204e2c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x000000004204e2c8 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x000000004204e2cc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x000000004204e2cc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x000000004204e2cc 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x000000004204e2d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x000000004204e2d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 + 0x000000004204e2d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x000000004204e2d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x000000004204e2d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x000000004204e2d0 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .literal._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x000000004204e2d4 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .literal._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x000000004204e2d8 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x000000004204e2dc 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN9__gnu_cxx7__mutex4lockEv + 0x000000004204e2e0 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal._ZN9__gnu_cxx7__mutex6unlockEv + 0x000000004204e2ec 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x000000004204e2f8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal.__cxa_allocate_exception + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x10 (size before relaxing) + .literal.__cxa_free_exception + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0xc (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x18 (size before relaxing) + .literal.exit._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x8 (size before relaxing) + .literal._ZL23__gxx_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception + 0x000000004204e300 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x8 (size before relaxing) + .literal.__cxa_init_primary_exception + 0x000000004204e300 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x14 (size before relaxing) + .literal.__cxa_throw + 0x000000004204e30c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x14 (size before relaxing) + .literal._Z12abort_returnIiET_v + 0x000000004204e30c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_Resume + 0x000000004204e30c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_DeleteException + 0x000000004204e30c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_RaiseException + 0x000000004204e30c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___gxx_personality_v0 + 0x000000004204e30c 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal 0x000000004204e30c 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + 0x30 (size before relaxing) + .literal 0x000000004204e31c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + 0x34 (size before relaxing) + .literal 0x000000004204e31c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .literal 0x000000004204e320 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x48 (size before relaxing) + .literal 0x000000004204e33c 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x3c (size before relaxing) + .literal 0x000000004204e34c 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x94 (size before relaxing) + .literal 0x000000004204e37c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x000000004204e37c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0xc (size before relaxing) + .literal 0x000000004204e37c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x6c (size before relaxing) + .literal 0x000000004204e380 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x40 (size before relaxing) + .literal 0x000000004204e390 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x10 (size before relaxing) + .literal 0x000000004204e390 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x14 (size before relaxing) + .literal 0x000000004204e390 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x34 (size before relaxing) + .literal 0x000000004204e394 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x38 (size before relaxing) + .literal 0x000000004204e394 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x30 (size before relaxing) + .literal 0x000000004204e398 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x000000004204e398 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + 0x1c (size before relaxing) + .literal 0x000000004204e39c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x20 (size before relaxing) + .literal 0x000000004204e3a0 0x7c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x19c (size before relaxing) + .literal 0x000000004204e41c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x000000004204e420 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x1e0 (size before relaxing) + .literal 0x000000004204e458 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x14 (size before relaxing) + .literal 0x000000004204e458 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x000000004204e458 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x1c (size before relaxing) + .literal 0x000000004204e458 0x6c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0x214 (size before relaxing) + .literal 0x000000004204e4c4 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x000000004204e4c8 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0xb8 (size before relaxing) + .literal 0x000000004204e4e0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x18 (size before relaxing) + .literal 0x000000004204e4e8 0x34 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x74 (size before relaxing) + .literal 0x000000004204e51c 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0xa8 (size before relaxing) + .literal 0x000000004204e540 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x000000004204e540 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x4 (size before relaxing) + .literal.load_partitions + 0x000000004204e540 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x6c (size before relaxing) + .literal.esp_event_handler_register + 0x000000004204e568 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_instance_register + 0x000000004204e56c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_unregister + 0x000000004204e56c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_instance_unregister + 0x000000004204e56c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x000000004204e56c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x000000004204e56c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.handler_instances_add + 0x000000004204e570 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x000000004204e57c 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.loop_node_add_handler + 0x000000004204e580 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.handler_instances_remove + 0x000000004204e588 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.base_node_remove_handler + 0x000000004204e588 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_handler + 0x000000004204e588 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.esp_event_loop_create + 0x000000004204e588 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x70 (size before relaxing) + .literal.esp_event_loop_run + 0x000000004204e5b8 0x20 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_loop_run_task + 0x000000004204e5d8 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x000000004204e5e0 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x50 (size before relaxing) + .literal.esp_event_handler_register_with + 0x000000004204e5f0 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_instance_register_with + 0x000000004204e5f0 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x000000004204e5f0 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x000000004204e5fc 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_instance_unregister_with + 0x000000004204e5fc 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x000000004204e5fc 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x000000004204e604 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x14 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x000000004204e614 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x10 (size before relaxing) + .literal.set_ocode_by_efuse + 0x000000004204e618 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x28 (size before relaxing) + .literal.get_dig1v3_dbias_by_efuse + 0x000000004204e630 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3c (size before relaxing) + .literal.get_dig_dbias_by_efuse + 0x000000004204e650 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x2c (size before relaxing) + .literal.get_rtc_dbias_by_efuse + 0x000000004204e65c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4c (size before relaxing) + .literal.rtc_set_stored_dbias + 0x000000004204e670 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x24 (size before relaxing) + .literal.calibrate_ocode + 0x000000004204e684 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x50 (size before relaxing) + .literal.rtc_init + 0x000000004204e6ac 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x130 (size before relaxing) + .literal.s_sar_power_acquire + 0x000000004204e74c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.s_sar_power_release + 0x000000004204e760 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x48 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x000000004204e770 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 + 0x000000004204e770 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 + 0x000000004204e770 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x000000004204e770 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x000000004204e774 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_free_heap_size + 0x000000004204e774 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_free_internal_heap_size + 0x000000004204e77c 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x8 (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x000000004204e780 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x000000004204e784 0x34 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x5c (size before relaxing) + .literal.esp_startup_start_app + 0x000000004204e7b8 0x2c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x4c (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x000000004204e7e4 0xc esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x2c (size before relaxing) + .literal.multi_heap_register_impl + 0x000000004204e7f0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x000000004204e800 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x000000004204e814 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x000000004204e844 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x000000004204e850 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x000000004204e860 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_add_pool + 0x000000004204e864 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4c (size before relaxing) + .literal.tlsf_create + 0x000000004204e880 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x000000004204e884 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.heap_bubble_down + 0x000000004204e884 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.s_log_level_get_and_unlock + 0x000000004204e888 0x20 esp-idf/log/liblog.a(log.c.obj) + 0x3c (size before relaxing) + .literal.esp_log_level_set + 0x000000004204e8a8 0xc esp-idf/log/liblog.a(log.c.obj) + 0x58 (size before relaxing) + .literal.esp_log_writev + 0x000000004204e8b4 0x8 esp-idf/log/liblog.a(log.c.obj) + 0xc (size before relaxing) + .literal.ensure_partitions_loaded + 0x000000004204e8bc 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .text.load_partitions + 0x000000004204e8c0 0x19c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.ensure_partitions_loaded + 0x000000004204ea5c 0x54 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x000000004204eab0 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x000000004204ead4 0xe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x000000004204ead4 esp_partition_iterator_release + *fill* 0x000000004204eae2 0x2 + .text.esp_partition_next + 0x000000004204eae4 0x8c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x000000004204eae4 esp_partition_next + .text.esp_partition_find + 0x000000004204eb70 0x3b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x43 (size before relaxing) + 0x000000004204eb70 esp_partition_find + *fill* 0x000000004204ebab 0x1 + .text.esp_partition_get + 0x000000004204ebac 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x000000004204ebac esp_partition_get + .text.esp_partition_find_first + 0x000000004204ebc8 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x2c (size before relaxing) + 0x000000004204ebc8 esp_partition_find_first + .text.esp_partition_write + 0x000000004204ebec 0x6d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204ebec esp_partition_write + *fill* 0x000000004204ec59 0x3 + .text.esp_partition_read_raw + 0x000000004204ec5c 0x41 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204ec5c esp_partition_read_raw + *fill* 0x000000004204ec9d 0x3 + .text.esp_partition_write_raw + 0x000000004204eca0 0x45 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204eca0 esp_partition_write_raw + *fill* 0x000000004204ece5 0x3 + .text.esp_partition_erase_range + 0x000000004204ece8 0x5d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204ece8 esp_partition_erase_range + *fill* 0x000000004204ed45 0x3 + .text.esp_partition_mmap + 0x000000004204ed48 0x6a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204ed48 esp_partition_mmap + *fill* 0x000000004204edb2 0x2 + .text.esp_partition_munmap + 0x000000004204edb4 0xe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x000000004204edb4 esp_partition_munmap + *fill* 0x000000004204edc2 0x2 + .text.esp_partition_read + 0x000000004204edc4 0x82 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x86 (size before relaxing) + 0x000000004204edc4 esp_partition_read + *fill* 0x000000004204ee46 0x2 + .text.esp_partition_main_flash_region_safe + 0x000000004204ee48 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x000000004204ee48 esp_partition_main_flash_region_safe + *fill* 0x000000004204ee81 0x3 + .text.esp_ota_get_running_partition + 0x000000004204ee84 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x000000004204ee84 esp_ota_get_running_partition + *fill* 0x000000004204ef04 0x0 + .text.sha_hal_wait_idle + 0x000000004204ef04 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x000000004204ef04 sha_hal_wait_idle + .text.sha_hal_hash_block + 0x000000004204ef14 0x51 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x000000004204ef14 sha_hal_hash_block + *fill* 0x000000004204ef65 0x3 + .text.sha_hal_hash_dma + 0x000000004204ef68 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x000000004204ef68 sha_hal_hash_dma + .text.sha_hal_read_digest + 0x000000004204efa8 0x6c esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x70 (size before relaxing) + 0x000000004204efa8 sha_hal_read_digest + .text.sha_hal_write_digest + 0x000000004204f014 0x5f esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x000000004204f014 sha_hal_write_digest + *fill* 0x000000004204f073 0x1 + .text.sha_hal_sha512_init_hash + 0x000000004204f074 0x32 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x000000004204f074 sha_hal_sha512_init_hash + *fill* 0x000000004204f0a6 0x2 + .text.aes_hal_setkey + 0x000000004204f0a8 0x7e esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f0a8 aes_hal_setkey + *fill* 0x000000004204f126 0x2 + .text.aes_hal_transform_dma_start + 0x000000004204f128 0x1f esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f128 aes_hal_transform_dma_start + *fill* 0x000000004204f147 0x1 + .text.aes_hal_transform_dma_finish + 0x000000004204f148 0x17 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f148 aes_hal_transform_dma_finish + *fill* 0x000000004204f15f 0x1 + .text.aes_hal_mode_init + 0x000000004204f160 0x1a esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f160 aes_hal_mode_init + *fill* 0x000000004204f17a 0x2 + .text.aes_hal_set_iv + 0x000000004204f17c 0x37 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f17c aes_hal_set_iv + *fill* 0x000000004204f1b3 0x1 + .text.aes_hal_read_iv + 0x000000004204f1b4 0x39 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f1b4 aes_hal_read_iv + *fill* 0x000000004204f1ed 0x3 + .text.aes_hal_wait_done + 0x000000004204f1f0 0x10 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x000000004204f1f0 aes_hal_wait_done + .text.esp_fill_random + 0x000000004204f200 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x000000004204f200 esp_fill_random + *fill* 0x000000004204f23b 0x1 + .text.esp_base_mac_addr_set + 0x000000004204f23c 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x000000004204f23c esp_base_mac_addr_set + .text.esp_base_mac_addr_get + 0x000000004204f29c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x000000004204f29c esp_base_mac_addr_get + *fill* 0x000000004204f2f2 0x2 + .text.esp_efuse_mac_get_default + 0x000000004204f2f4 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x35 (size before relaxing) + 0x000000004204f2f4 esp_efuse_mac_get_default + *fill* 0x000000004204f325 0x3 + .text.esp_read_mac + 0x000000004204f328 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x10e (size before relaxing) + 0x000000004204f328 esp_read_mac + *fill* 0x000000004204f42e 0x2 + .text.gdma_acquire_pair_handle + 0x000000004204f430 0x92 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000004204f4c2 0x2 + .text.gdma_acquire_group_handle + 0x000000004204f4c4 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004204f55e 0x2 + .text.gdma_release_group_handle + 0x000000004204f560 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000004204f5ea 0x2 + .text.gdma_release_pair_handle + 0x000000004204f5ec 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .text.gdma_del_rx_channel + 0x000000004204f654 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x84 (size before relaxing) + .text.gdma_del_tx_channel + 0x000000004204f6d4 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x88 (size before relaxing) + .text.gdma_new_channel + 0x000000004204f758 0x33c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x344 (size before relaxing) + 0x000000004204f758 gdma_new_channel + .text.gdma_del_channel + 0x000000004204fa94 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204fa94 gdma_del_channel + *fill* 0x000000004204facd 0x3 + .text.gdma_get_channel_id + 0x000000004204fad0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204fad0 gdma_get_channel_id + .text.gdma_connect + 0x000000004204fb08 0x1ee esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204fb08 gdma_connect + *fill* 0x000000004204fcf6 0x2 + .text.gdma_disconnect + 0x000000004204fcf8 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204fcf8 gdma_disconnect + .text.gdma_set_transfer_ability + 0x000000004204fe14 0x18f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204fe14 gdma_set_transfer_ability + *fill* 0x000000004204ffa3 0x1 + .text.gdma_start + 0x000000004204ffa4 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x000000004204ffa4 gdma_start + .text.esp_crypto_sha_aes_lock_acquire + 0x00000000420500ac 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x00000000420500ac esp_crypto_sha_aes_lock_acquire + *fill* 0x00000000420500ba 0x2 + .text.esp_crypto_sha_aes_lock_release + 0x00000000420500bc 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x00000000420500bc esp_crypto_sha_aes_lock_release + *fill* 0x00000000420500ca 0x2 + .text.esp_crypto_mpi_lock_acquire + 0x00000000420500cc 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x00000000420500cc esp_crypto_mpi_lock_acquire + *fill* 0x00000000420500da 0x2 + .text.esp_crypto_mpi_lock_release + 0x00000000420500dc 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x00000000420500dc esp_crypto_mpi_lock_release + *fill* 0x00000000420500ea 0x2 + .text.ets_timer_setfn + 0x00000000420500ec 0x56 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x5a (size before relaxing) + 0x00000000420500ec ets_timer_setfn + 0x00000000420500ec os_timer_setfn + *fill* 0x0000000042050142 0x2 + .text.ets_timer_done + 0x0000000042050144 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1e (size before relaxing) + 0x0000000042050144 os_timer_done + 0x0000000042050144 ets_timer_done + *fill* 0x000000004205015e 0x2 + .text.lib_printf + 0x0000000042050160 0x74 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.phy_printf + 0x00000000420501d4 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x00000000420501d4 phy_printf + *fill* 0x00000000420501fe 0x2 + .text.pp_printf + 0x0000000042050200 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x0000000042050200 pp_printf + *fill* 0x000000004205022a 0x2 + .text.net80211_printf + 0x000000004205022c 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x000000004205022c net80211_printf + *fill* 0x0000000042050256 0x2 + .text.load_cal_data_from_nvs_handle + 0x0000000042050258 0x126 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x136 (size before relaxing) + *fill* 0x000000004205037e 0x2 + .text.store_cal_data_to_nvs_handle + 0x0000000042050380 0xf0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x100 (size before relaxing) + .text.esp_phy_disable + 0x0000000042050470 0x52 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000042050470 esp_phy_disable + *fill* 0x00000000420504c2 0x2 + .text.esp_wifi_bt_power_domain_off + 0x00000000420504c4 0x48 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x00000000420504c4 esp_wifi_bt_power_domain_off + 0x00000000420504c4 esp_wifi_power_domain_off + .text.esp_phy_modem_init + 0x000000004205050c 0x39 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x000000004205050c esp_phy_modem_init + *fill* 0x0000000042050545 0x3 + .text.esp_phy_modem_deinit + 0x0000000042050548 0x3c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000042050548 esp_phy_modem_deinit + .text.esp_phy_get_init_data + 0x0000000042050584 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000042050584 esp_phy_get_init_data + .text.esp_phy_load_cal_data_from_nvs + 0x000000004205058c 0x4c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x50 (size before relaxing) + 0x000000004205058c esp_phy_load_cal_data_from_nvs + .text.esp_phy_store_cal_data_to_nvs + 0x00000000420505d8 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x00000000420505d8 esp_phy_store_cal_data_to_nvs + .text.esp_phy_load_cal_and_init + 0x00000000420505fc 0x137 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x14e (size before relaxing) + 0x00000000420505fc esp_phy_load_cal_and_init + *fill* 0x0000000042050733 0x1 + .text.esp_phy_enable + 0x0000000042050734 0x66 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000042050734 esp_phy_enable + *fill* 0x000000004205079a 0x2 + .text.add_offer_options + 0x000000004205079c 0x182 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x186 (size before relaxing) + *fill* 0x000000004205091e 0x2 + .text.kill_oldest_dhcps_pool + 0x0000000042050920 0x6a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000004205098a 0x2 + .text.parse_options + 0x000000004205098c 0x91 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042050a1d 0x3 + .text.create_msg + 0x0000000042050a20 0xaf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042050acf 0x1 + .text.dhcps_new + 0x0000000042050ad0 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042050ad0 dhcps_new + *fill* 0x0000000042050b06 0x2 + .text.dhcps_delete + 0x0000000042050b08 0x1e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042050b08 dhcps_delete + *fill* 0x0000000042050b26 0x2 + .text.dhcps_tmr + 0x0000000042050b28 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042050b9e 0x2 + .text.parse_msg + 0x0000000042050ba0 0x1f0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x200 (size before relaxing) + .text.dhcps_pbuf_alloc + 0x0000000042050d90 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042050d90 dhcps_pbuf_alloc + *fill* 0x0000000042050dad 0x3 + .text.send_offer + 0x0000000042050db0 0x93 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xa3 (size before relaxing) + *fill* 0x0000000042050e43 0x1 + .text.send_ack + 0x0000000042050e44 0xa4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xb7 (size before relaxing) + *fill* 0x0000000042050ee8 0x0 + .text.send_nak + 0x0000000042050ee8 0x8b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x9b (size before relaxing) + *fill* 0x0000000042050f73 0x1 + .text.handle_dhcp + 0x0000000042050f74 0xd0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xdf (size before relaxing) + *fill* 0x0000000042051044 0x0 + .text.dhcps_start + 0x0000000042051044 0xd6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xee (size before relaxing) + 0x0000000042051044 dhcps_start + *fill* 0x000000004205111a 0x2 + .text.dhcps_stop + 0x000000004205111c 0x79 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x85 (size before relaxing) + 0x000000004205111c dhcps_stop + *fill* 0x0000000042051195 0x3 + .text.esp_netif_action_start + 0x0000000042051198 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x0000000042051198 esp_netif_action_start + *fill* 0x00000000420511a2 0x2 + .text.esp_netif_action_stop + 0x00000000420511a4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x00000000420511a4 esp_netif_action_stop + *fill* 0x00000000420511ae 0x2 + .text.esp_netif_action_connected + 0x00000000420511b0 0x116 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x132 (size before relaxing) + 0x00000000420511b0 esp_netif_action_connected + *fill* 0x00000000420512c6 0x2 + .text.esp_netif_action_disconnected + 0x00000000420512c8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x00000000420512c8 esp_netif_action_disconnected + *fill* 0x00000000420512d2 0x2 + .text.esp_netif_action_got_ip + 0x00000000420512d4 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x00000000420512d4 esp_netif_action_got_ip + *fill* 0x0000000042051336 0x2 + .text.low_level_output + 0x0000000042051338 0x81 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x8d (size before relaxing) + *fill* 0x00000000420513b9 0x3 + .text.wlanif_input + 0x00000000420513bc 0x4f esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x57 (size before relaxing) + 0x00000000420513bc wlanif_input + *fill* 0x000000004205140b 0x1 + .text.wlanif_init + 0x000000004205140c 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4c (size before relaxing) + 0x000000004205140c wlanif_init + .text.wlanif_init_sta + 0x0000000042051454 0x19 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x1d (size before relaxing) + 0x0000000042051454 wlanif_init_sta + *fill* 0x000000004205146d 0x3 + .text.esp_pbuf_free + 0x0000000042051470 0x13 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x17 (size before relaxing) + *fill* 0x0000000042051483 0x1 + .text.esp_pbuf_allocate + 0x0000000042051484 0x38 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x40 (size before relaxing) + 0x0000000042051484 esp_pbuf_allocate + .text.wpa_install_key + 0x00000000420514bc 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000420514bc wpa_install_key + *fill* 0x00000000420514df 0x1 + .text.wpa_get_key + 0x00000000420514e0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000420514e0 wpa_get_key + *fill* 0x00000000420514fd 0x3 + .text.wpa_sendto_wrapper + 0x0000000042051500 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000042051500 wpa_sendto_wrapper + *fill* 0x0000000042051512 0x2 + .text.wpa_deauthenticate + 0x0000000042051514 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x0000000042051514 wpa_deauthenticate + *fill* 0x000000004205151f 0x1 + .text.wpa_config_assoc_ie + 0x0000000042051520 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000042051520 wpa_config_assoc_ie + *fill* 0x000000004205154b 0x1 + .text.wpa_neg_complete + 0x000000004205154c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x000000004205154c wpa_neg_complete + *fill* 0x0000000042051554 0x0 + .text.wpa_attach + 0x0000000042051554 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x40 (size before relaxing) + 0x0000000042051554 wpa_attach + *fill* 0x0000000042051589 0x3 + .text.wpa_config_done + 0x000000004205158c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x000000004205158c wpa_config_done + *fill* 0x0000000042051594 0x0 + .text.wpa_ap_get_wpa_ie + 0x0000000042051594 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000042051594 wpa_ap_get_wpa_ie + .text.wpa_ap_rx_eapol + 0x00000000420515c4 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x00000000420515c4 wpa_ap_rx_eapol + *fill* 0x00000000420515f1 0x3 + .text.wpa_deattach + 0x00000000420515f4 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2b (size before relaxing) + 0x00000000420515f4 wpa_deattach + *fill* 0x000000004205161b 0x1 + .text.wpa_parse_wpa_ie_wrapper + 0x000000004205161c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + 0x000000004205161c wpa_parse_wpa_ie_wrapper + .text.hostap_sta_join + 0x0000000042051658 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + .text.wpa_sta_disconnected_cb + 0x0000000042051698 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4c (size before relaxing) + *fill* 0x00000000420516d5 0x3 + .text.wpa_sta_connected_cb + 0x00000000420516d8 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000420516e2 0x2 + .text.wpa_config_profile + 0x00000000420516e4 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x61 (size before relaxing) + 0x00000000420516e4 wpa_config_profile + *fill* 0x000000004205172d 0x3 + .text.wpa_config_bss + 0x0000000042051730 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x49 (size before relaxing) + 0x0000000042051730 wpa_config_bss + *fill* 0x0000000042051765 0x3 + .text.wpa_sta_connect + 0x0000000042051768 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3d (size before relaxing) + 0x0000000042051768 wpa_sta_connect + *fill* 0x000000004205179d 0x3 + .text.esp_supplicant_init + 0x00000000420517a0 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xc2 (size before relaxing) + 0x00000000420517a0 esp_supplicant_init + *fill* 0x0000000042051852 0x2 + .text.esp_supplicant_deinit + 0x0000000042051854 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x0000000042051854 esp_supplicant_deinit + *fill* 0x000000004205186e 0x2 + .text.ieee80211_handle_rx_frm + 0x0000000042051870 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_unset_all_appie + 0x0000000042051890 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000042051890 esp_supplicant_unset_all_appie + .text.esp_supplicant_common_deinit + 0x00000000420518ac 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x1e (size before relaxing) + 0x00000000420518ac esp_supplicant_common_deinit + *fill* 0x00000000420518c7 0x1 + .text.esp_supplicant_common_init + 0x00000000420518c8 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x32 (size before relaxing) + 0x00000000420518c8 esp_supplicant_common_init + *fill* 0x00000000420518f6 0x2 + .text.esp_set_assoc_ie + 0x00000000420518f8 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x00000000420518f8 esp_set_assoc_ie + *fill* 0x0000000042051943 0x1 + .text.wpa3_parse_sae_commit + 0x0000000042051944 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xca (size before relaxing) + *fill* 0x0000000042051a0a 0x2 + .text.wpa3_parse_sae_confirm + 0x0000000042051a0c 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3d (size before relaxing) + *fill* 0x0000000042051a45 0x3 + .text.wpa3_build_sae_commit + 0x0000000042051a48 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x160 (size before relaxing) + .text.wpa3_build_sae_confirm + 0x0000000042051b80 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x69 (size before relaxing) + *fill* 0x0000000042051be1 0x3 + .text.wpa3_build_sae_msg + 0x0000000042051be4 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wpa3_free_sae_data + 0x0000000042051c40 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4e (size before relaxing) + 0x0000000042051c40 esp_wpa3_free_sae_data + *fill* 0x0000000042051c86 0x2 + .text.wpa3_parse_sae_msg + 0x0000000042051c88 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x36 (size before relaxing) + *fill* 0x0000000042051cba 0x2 + .text.esp_wifi_register_wpa3_cb + 0x0000000042051cbc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x0000000042051cbc esp_wifi_register_wpa3_cb + *fill* 0x0000000042051ccd 0x3 + .text.owe_build_dhie + 0x0000000042051cd0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + 0x0000000042051cd0 owe_build_dhie + .text.owe_deinit + 0x0000000042051ce4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x36 (size before relaxing) + 0x0000000042051ce4 owe_deinit + *fill* 0x0000000042051d12 0x2 + .text.esp_wifi_register_owe_cb + 0x0000000042051d14 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x0000000042051d14 esp_wifi_register_owe_cb + *fill* 0x0000000042051d25 0x3 + .text.hostapd_get_hapd_data + 0x0000000042051d28 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x0000000042051d28 hostapd_get_hapd_data + *fill* 0x0000000042051d32 0x2 + .text.hostap_init + 0x0000000042051d34 0x1b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1d7 (size before relaxing) + 0x0000000042051d34 hostap_init + *fill* 0x0000000042051ee7 0x1 + .text.hostap_deinit + 0x0000000042051ee8 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x0000000042051ee8 hostap_deinit + .text.ecp_opp 0x0000000042051f54 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3a (size before relaxing) + *fill* 0x0000000042051f8a 0x2 + .text.crypto_alloc_key + 0x0000000042051f8c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + .text.crypto_ec_deinit + 0x0000000042051fa0 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042051fa0 crypto_ec_deinit + *fill* 0x0000000042051fb7 0x1 + .text.crypto_ec_init + 0x0000000042051fb8 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3c (size before relaxing) + 0x0000000042051fb8 crypto_ec_init + .text.crypto_ec_point_init + 0x0000000042051fec 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + 0x0000000042051fec crypto_ec_point_init + .text.crypto_ec_prime_len + 0x0000000042052004 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x0000000042052004 crypto_ec_prime_len + .text.crypto_ec_order_len + 0x0000000042052010 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x0000000042052010 crypto_ec_order_len + *fill* 0x000000004205201d 0x3 + .text.crypto_ec_prime_len_bits + 0x0000000042052020 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x0000000042052020 crypto_ec_prime_len_bits + .text.crypto_ec_point_deinit + 0x000000004205202c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x000000004205202c crypto_ec_point_deinit + *fill* 0x000000004205203e 0x2 + .text.crypto_ec_point_to_bin + 0x0000000042052040 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4a (size before relaxing) + 0x0000000042052040 crypto_ec_point_to_bin + *fill* 0x0000000042052082 0x2 + .text.crypto_ec_point_from_bin + 0x0000000042052084 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x64 (size before relaxing) + 0x0000000042052084 crypto_ec_point_from_bin + .text.crypto_ec_point_add + 0x00000000420520d8 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3e (size before relaxing) + 0x00000000420520d8 crypto_ec_point_add + *fill* 0x000000004205210e 0x2 + .text.crypto_ec_point_mul + 0x0000000042052110 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x66 (size before relaxing) + 0x0000000042052110 crypto_ec_point_mul + *fill* 0x0000000042052162 0x2 + .text.crypto_ec_point_invert + 0x0000000042052164 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + 0x0000000042052164 crypto_ec_point_invert + .text.crypto_ec_point_compute_y_sqr + 0x0000000042052178 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x102 (size before relaxing) + 0x0000000042052178 crypto_ec_point_compute_y_sqr + *fill* 0x0000000042052246 0x2 + .text.crypto_ec_point_solve_y_coord + 0x0000000042052248 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc2 (size before relaxing) + 0x0000000042052248 crypto_ec_point_solve_y_coord + *fill* 0x00000000420522ea 0x2 + .text.crypto_ec_point_is_at_infinity + 0x00000000420522ec 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x00000000420522ec crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x00000000420522f8 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xa4 (size before relaxing) + 0x00000000420522f8 crypto_ec_point_is_on_curve + .text.crypto_ec_point_cmp + 0x0000000042052384 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042052384 crypto_ec_point_cmp + *fill* 0x0000000042052395 0x3 + .text.crypto_ec_set_pubkey_point + 0x0000000042052398 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xdc (size before relaxing) + 0x0000000042052398 crypto_ec_set_pubkey_point + .text.crypto_ec_free_key + 0x000000004205244c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x000000004205244c crypto_ec_free_key + *fill* 0x000000004205245e 0x2 + .text.crypto_ecdh_deinit + 0x0000000042052460 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042052460 crypto_ecdh_deinit + *fill* 0x0000000042052477 0x1 + .text.crypto_ecdh_init + 0x0000000042052478 0x93 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xb7 (size before relaxing) + 0x0000000042052478 crypto_ecdh_init + *fill* 0x000000004205250b 0x1 + .text.crypto_ecdh_get_pubkey + 0x000000004205250c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4c (size before relaxing) + 0x000000004205250c crypto_ecdh_get_pubkey + .text.crypto_ecdh_set_peerkey + 0x0000000042052550 0x20d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x245 (size before relaxing) + 0x0000000042052550 crypto_ecdh_set_peerkey + *fill* 0x000000004205275d 0x3 + .text.timeout_exists + 0x0000000042052760 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_run_timer + 0x0000000042052784 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_remove_timeout + 0x000000004205279c 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4c (size before relaxing) + .text.eloop_init + 0x00000000420527e4 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x00000000420527e4 eloop_init + *fill* 0x000000004205283e 0x2 + .text.eloop_register_timeout + 0x0000000042052840 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x14c (size before relaxing) + 0x0000000042052840 eloop_register_timeout + .text.eloop_cancel_timeout + 0x0000000042052988 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x3b (size before relaxing) + 0x0000000042052988 eloop_cancel_timeout + *fill* 0x00000000420529c0 0x0 + .text.eloop_run + 0x00000000420529c0 0x121 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x129 (size before relaxing) + 0x00000000420529c0 eloop_run + *fill* 0x0000000042052ae1 0x3 + .text.eloop_run_wrapper + 0x0000000042052ae4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xd (size before relaxing) + *fill* 0x0000000042052aee 0x2 + .text.eloop_destroy + 0x0000000042052af0 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x7b (size before relaxing) + 0x0000000042052af0 eloop_destroy + *fill* 0x0000000042052b67 0x1 + .text.hostapd_derive_psk + 0x0000000042052b68 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x0000000042052b96 0x2 + .text.hostapd_setup_wpa_psk + 0x0000000042052b98 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000042052b98 hostapd_setup_wpa_psk + *fill* 0x0000000042052bc5 0x3 + .text.hostapd_get_psk + 0x0000000042052bc8 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000042052bc8 hostapd_get_psk + *fill* 0x0000000042052c03 0x1 + .text.wpa_auth_get_sm + 0x0000000042052c04 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052c29 0x3 + .text.wpa_auth_add_sm + 0x0000000042052c2c 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052c6b 0x1 + .text.wpa_auth_del_sm + 0x0000000042052c6c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_use_aes_cmac + 0x0000000042052c9c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052cb1 0x3 + .text.wpa_receive_error_report + 0x0000000042052cb4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .text.wpa_free_sta_sm + 0x0000000042052cc0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_auth_sm_ptk_update + 0x0000000042052cf8 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052d19 0x3 + .text.wpa_group_init_gmk_and_counter + 0x0000000042052d1c 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x76 (size before relaxing) + *fill* 0x0000000042052d86 0x2 + .text.sm_WPA_PTK_AUTHENTICATION_Enter + 0x0000000042052d88 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052dbf 0x1 + .text.wpa_gmk_to_gtk + 0x0000000042052dc0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x54 (size before relaxing) + .text.wpa_gtk_update + 0x0000000042052e10 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x9c (size before relaxing) + .text.wpa_group_gtk_init + 0x0000000042052ea0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_setkeys + 0x0000000042052ed4 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052f0b 0x1 + .text.wpa_sta_disconnect + 0x0000000042052f0c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052f1b 0x1 + .text.sm_WPA_PTK_DISCONNECT_Enter + 0x0000000042052f1c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042052f4a 0x2 + .text.wpa_derive_ptk + 0x0000000042052f4c 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_verify_key_mic + 0x0000000042052f78 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_replay_counter_valid + 0x0000000042052ff4 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042053025 0x3 + .text.wpa_replay_counter_mark_invalid + 0x0000000042053028 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042053055 0x3 + .text.sm_WPA_PTK_PTKINITDONE_Enter + 0x0000000042053058 0xf7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x106 (size before relaxing) + *fill* 0x000000004205314f 0x1 + .text.ieee80211w_kde_add + 0x0000000042053150 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .text.resend_eapol_handle + 0x00000000420531c0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000420531c0 resend_eapol_handle + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x00000000420531d8 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xe2 (size before relaxing) + *fill* 0x00000000420532ae 0x2 + .text.sm_WPA_PTK_INITPSK_Enter + 0x00000000420532b0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4c (size before relaxing) + .text.wpa_group_config_group_keys + 0x00000000420532f8 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x104 (size before relaxing) + .text.wpa_group_setkeysdone + 0x00000000420533f0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .text.wpa_group_sm_step + 0x0000000042053410 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_init + 0x0000000042053474 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000420534c7 0x1 + .text.wpa_rekey_gtk + 0x00000000420534c8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_group_ensure_init + 0x0000000042053500 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004205352a 0x2 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x000000004205352c 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4c (size before relaxing) + .text.wpa_init + 0x0000000042053570 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x70 (size before relaxing) + 0x0000000042053570 wpa_init + .text.wpa_auth_sta_init + 0x00000000420535dc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x00000000420535dc wpa_auth_sta_init + .text.wpa_auth_sta_deinit + 0x000000004205360c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3f (size before relaxing) + 0x000000004205360c wpa_auth_sta_deinit + *fill* 0x0000000042053644 0x0 + .text.__wpa_send_eapol + 0x0000000042053644 0x354 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x360 (size before relaxing) + 0x0000000042053644 __wpa_send_eapol + .text.wpa_send_eapol + 0x0000000042053998 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x73 (size before relaxing) + *fill* 0x0000000042053a07 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter + 0x0000000042053a08 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x0000000042053ab8 0x15f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x167 (size before relaxing) + *fill* 0x0000000042053c17 0x1 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x0000000042053c18 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xf8 (size before relaxing) + .text.sm_WPA_PTK_GROUP_Step + 0x0000000042053d00 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xbc (size before relaxing) + .text.wpa_remove_ptk + 0x0000000042053db0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x0000000042053db0 wpa_remove_ptk + *fill* 0x0000000042053de6 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter + 0x0000000042053de8 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042053e4b 0x1 + .text.sm_WPA_PTK_Step + 0x0000000042053e4c 0x234 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x264 (size before relaxing) + .text.wpa_sm_step + 0x0000000042054080 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xd0 (size before relaxing) + .text.wpa_rekey_ptk + 0x0000000042054144 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000042054156 0x2 + .text.wpa_auth_sta_associated + 0x0000000042054158 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + 0x0000000042054158 wpa_auth_sta_associated + .text.wpa_receive + 0x00000000420541d0 0x3ab esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3d7 (size before relaxing) + 0x00000000420541d0 wpa_receive + *fill* 0x000000004205457b 0x1 + .text.hostap_eapol_resend_process + 0x000000004205457c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + 0x000000004205457c hostap_eapol_resend_process + .text.wpa_ap_join + 0x00000000420545a4 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8a (size before relaxing) + 0x00000000420545a4 wpa_ap_join + *fill* 0x000000004205461e 0x2 + .text.wpa_ap_remove + 0x0000000042054620 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x2d (size before relaxing) + 0x0000000042054620 wpa_ap_remove + *fill* 0x0000000042054649 0x3 + .text.wpa_parse_generic + 0x000000004205464c 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x0000000042054782 0x2 + .text.wpa_write_wpa_ie + 0x0000000042054784 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc6 (size before relaxing) + *fill* 0x0000000042054846 0x2 + .text.wpa_write_rsn_ie + 0x0000000042054848 0x1a9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1b1 (size before relaxing) + 0x0000000042054848 wpa_write_rsn_ie + *fill* 0x00000000420549f1 0x3 + .text.wpa_auth_gen_wpa_ie + 0x00000000420549f4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x70 (size before relaxing) + 0x00000000420549f4 wpa_auth_gen_wpa_ie + .text.wpa_add_kde + 0x0000000042054a60 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000042054a60 wpa_add_kde + .text.wpa_validate_wpa_ie + 0x0000000042054aa8 0x205 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x21d (size before relaxing) + 0x0000000042054aa8 wpa_validate_wpa_ie + *fill* 0x0000000042054cad 0x3 + .text.wpa_parse_kde_ies + 0x0000000042054cb0 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x80 (size before relaxing) + 0x0000000042054cb0 wpa_parse_kde_ies + .text.ap_sta_hash_del + 0x0000000042054d2c 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_get_sta + 0x0000000042054d78 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x0000000042054d78 ap_get_sta + *fill* 0x0000000042054da2 0x2 + .text.ap_free_sta + 0x0000000042054da4 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x32 (size before relaxing) + 0x0000000042054da4 ap_free_sta + *fill* 0x0000000042054dce 0x2 + .text.ap_sta_add + 0x0000000042054dd0 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x52 (size before relaxing) + 0x0000000042054dd0 ap_sta_add + *fill* 0x0000000042054e1e 0x2 + .text.sae_parse_token_container + 0x0000000042054e20 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.hkdf_extract + 0x0000000042054e3c 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042054e5d 0x3 + .text.sae_pwd_seed + 0x0000000042054e60 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042054ea1 0x3 + .text.sae_cn_confirm + 0x0000000042054ea4 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x91 (size before relaxing) + *fill* 0x0000000042054f2d 0x3 + .text.sae_cn_confirm_ffc + 0x0000000042054f30 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.hkdf_expand + 0x0000000042054f9c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x0000000042054fc5 0x3 + .text.sae_derive_commit_element_ffc + 0x0000000042054fc8 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000042055012 0x2 + .text.sae_derive_k_ffc + 0x0000000042055014 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004205508a 0x2 + .text.debug_print_bignum + 0x000000004205508c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000420550b2 0x2 + .text.sswu 0x00000000420550b4 0x885 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x9f1 (size before relaxing) + *fill* 0x0000000042055939 0x3 + .text.sae_cn_confirm_ecc + 0x000000004205593c 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.sae_max_min_addr + 0x00000000420559a4 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_pwd_seed_key + 0x00000000420559c8 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_parse_password_identifier + 0x0000000042055a14 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042055ade 0x2 + .text.sae_test_pwd_seed_ffc + 0x0000000042055ae0 0x144 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x164 (size before relaxing) + .text.sae_derive_pwe_ffc + 0x0000000042055c24 0x14c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x164 (size before relaxing) + .text.sae_test_pwd_seed_ecc + 0x0000000042055d70 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xbf (size before relaxing) + *fill* 0x0000000042055e17 0x1 + .text.sae_derive_pwe_ecc + 0x0000000042055e18 0x359 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x399 (size before relaxing) + *fill* 0x0000000042056171 0x3 + .text.sae_get_rand + 0x0000000042056174 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc0 (size before relaxing) + .text.sae_get_rand_and_mask + 0x0000000042056218 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x31 (size before relaxing) + *fill* 0x0000000042056241 0x3 + .text.sae_parse_commit_scalar + 0x0000000042056244 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa2 (size before relaxing) + *fill* 0x00000000420562d6 0x2 + .text.sae_parse_commit_element_ffc + 0x00000000420562d8 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x11a (size before relaxing) + *fill* 0x00000000420563ce 0x2 + .text.sae_derive_commit_element_ecc + 0x00000000420563d0 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x000000004205641e 0x2 + .text.sae_derive_commit + 0x0000000042056420 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xd6 (size before relaxing) + *fill* 0x00000000420564da 0x2 + .text.sae_derive_k_ecc + 0x00000000420564dc 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x96 (size before relaxing) + *fill* 0x000000004205655a 0x2 + .text.sae_kdf_hash + 0x000000004205655c 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042056581 0x3 + .text.sae_parse_commit_element_ecc + 0x0000000042056584 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa8 (size before relaxing) + .text.sae_parse_commit_element + 0x0000000042056620 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x0000000042056649 0x3 + .text.sae_parse_rejected_groups + 0x000000004205664c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000420566ba 0x2 + .text.sae_clear_temp_data + 0x00000000420566bc 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xaa (size before relaxing) + 0x00000000420566bc sae_clear_temp_data + *fill* 0x000000004205673a 0x2 + .text.sae_clear_data + 0x000000004205673c 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x32 (size before relaxing) + 0x000000004205673c sae_clear_data + *fill* 0x0000000042056766 0x2 + .text.sae_set_group + 0x0000000042056768 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xed (size before relaxing) + 0x0000000042056768 sae_set_group + *fill* 0x0000000042056835 0x3 + .text.sae_derive_pt_ecc + 0x0000000042056838 0x17c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c8 (size before relaxing) + .text.sae_derive_pt_ffc + 0x00000000420569b4 0x1ea esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x236 (size before relaxing) + *fill* 0x0000000042056b9e 0x2 + .text.sae_derive_keys + 0x0000000042056ba0 0x1f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x230 (size before relaxing) + .text.sae_derive_pwe_from_pt_ecc + 0x0000000042056d94 0x142 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x182 (size before relaxing) + 0x0000000042056d94 sae_derive_pwe_from_pt_ecc + *fill* 0x0000000042056ed6 0x2 + .text.sae_derive_pwe_from_pt_ffc + 0x0000000042056ed8 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18a (size before relaxing) + 0x0000000042056ed8 sae_derive_pwe_from_pt_ffc + *fill* 0x0000000042057022 0x2 + .text.sae_deinit_pt + 0x0000000042057024 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x0000000042057024 sae_deinit_pt + *fill* 0x000000004205704f 0x1 + .text.sae_derive_pt_group + 0x0000000042057050 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000420570be 0x2 + .text.sae_derive_pt + 0x00000000420570c0 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x00000000420570c0 sae_derive_pt + *fill* 0x000000004205710a 0x2 + .text.sae_prepare_commit + 0x000000004205710c 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + 0x000000004205710c sae_prepare_commit + .text.sae_prepare_commit_pt + 0x0000000042057160 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x12a (size before relaxing) + 0x0000000042057160 sae_prepare_commit_pt + *fill* 0x000000004205726e 0x2 + .text.sae_process_commit + 0x0000000042057270 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x5a (size before relaxing) + 0x0000000042057270 sae_process_commit + *fill* 0x00000000420572c2 0x2 + .text.sae_write_commit + 0x00000000420572c4 0x1b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1fa (size before relaxing) + 0x00000000420572c4 sae_write_commit + *fill* 0x000000004205747a 0x2 + .text.sae_group_allowed + 0x000000004205747c 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004205747c sae_group_allowed + *fill* 0x00000000420574e9 0x3 + .text.sae_parse_commit + 0x00000000420574ec 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x104 (size before relaxing) + 0x00000000420574ec sae_parse_commit + .text.sae_write_confirm + 0x00000000420575d0 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xae (size before relaxing) + 0x00000000420575d0 sae_write_confirm + *fill* 0x000000004205766e 0x2 + .text.sae_check_confirm + 0x0000000042057670 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa6 (size before relaxing) + 0x0000000042057670 sae_check_confirm + *fill* 0x0000000042057712 0x2 + .text.dragonfly_get_rand_1_to_p_1 + 0x0000000042057714 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x86 (size before relaxing) + *fill* 0x0000000042057782 0x2 + .text.dragonfly_get_random_qr_qnr + 0x0000000042057784 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x91 (size before relaxing) + 0x0000000042057784 dragonfly_get_random_qr_qnr + *fill* 0x0000000042057805 0x3 + .text.dragonfly_is_quadratic_residue_blind + 0x0000000042057808 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x118 (size before relaxing) + 0x0000000042057808 dragonfly_is_quadratic_residue_blind + .text.dragonfly_sqrt + 0x0000000042057900 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc8 (size before relaxing) + 0x0000000042057900 dragonfly_sqrt + .text.wpa_kck_len + 0x00000000420579ac 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x00000000420579be 0x2 + .text.wpa_kek_len + 0x00000000420579c0 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x00000000420579d2 0x2 + .text.rsn_selector_to_bitfield + 0x00000000420579d4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.rsn_key_mgmt_to_bitfield + 0x0000000042057a40 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000042057ab1 0x3 + .text.wpa_selector_to_bitfield + 0x0000000042057ab4 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000042057b15 0x3 + .text.wpa_key_mgmt_to_bitfield + 0x0000000042057b18 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000042057b5e 0x2 + .text.wpa_mic_len + 0x0000000042057b60 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042057b60 wpa_mic_len + *fill* 0x0000000042057b72 0x2 + .text.wpa_cipher_valid_mgmt_group + 0x0000000042057b74 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042057b74 wpa_cipher_valid_mgmt_group + .text.wpa_parse_wpa_ie_rsnxe + 0x0000000042057ba4 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x35 (size before relaxing) + 0x0000000042057ba4 wpa_parse_wpa_ie_rsnxe + *fill* 0x0000000042057bd5 0x3 + .text.wpa_parse_wpa_ie_rsn + 0x0000000042057bd8 0x1b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1bc (size before relaxing) + 0x0000000042057bd8 wpa_parse_wpa_ie_rsn + .text.wpa_parse_wpa_ie_wpa + 0x0000000042057d8c 0x186 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18a (size before relaxing) + 0x0000000042057d8c wpa_parse_wpa_ie_wpa + *fill* 0x0000000042057f12 0x2 + .text.wpa_eapol_key_mic + 0x0000000042057f14 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042057f14 wpa_eapol_key_mic + *fill* 0x0000000042057fde 0x2 + .text.wpa_compare_rsn_ie + 0x0000000042057fe0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042057fe0 wpa_compare_rsn_ie + *fill* 0x0000000042058016 0x2 + .text.rsn_pmkid + 0x0000000042058018 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x63 (size before relaxing) + 0x0000000042058018 rsn_pmkid + *fill* 0x0000000042058077 0x1 + .text.wpa_pmk_to_ptk + 0x0000000042058078 0x15a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x16a (size before relaxing) + 0x0000000042058078 wpa_pmk_to_ptk + *fill* 0x00000000420581d2 0x2 + .text.wpa_cipher_to_suite + 0x00000000420581d4 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x00000000420581d4 wpa_cipher_to_suite + *fill* 0x0000000042058246 0x2 + .text.hmac_sha256_kdf + 0x0000000042058248 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0xe8 (size before relaxing) + 0x0000000042058248 hmac_sha256_kdf + .text.dh_groups_get + 0x0000000042058328 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x0000000042058328 dh_groups_get + *fill* 0x000000004205834e 0x2 + .text.wpa_sm_get_key + 0x0000000042058350 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_verify_eapol_key_mic + 0x0000000042058370 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xee (size before relaxing) + *fill* 0x000000004205845a 0x2 + .text.wpa_supplicant_gtk_in_use + 0x000000004205845c 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc5 (size before relaxing) + *fill* 0x000000004205851d 0x3 + .text.is_wpa2_enterprise_connection + 0x0000000042058520 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004205854e 0x2 + .text.wpa_derive_ptk + 0x0000000042058550 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_check_group_cipher + 0x0000000042058584 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000420585c2 0x2 + .text.wpa_supplicant_decrypt_key_data + 0x00000000420585c4 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xcc (size before relaxing) + .text.wpa_sm_set_seq + 0x000000004205868c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x00000000420586bf 0x1 + .text.wpa_supplicant_install_igtk + 0x00000000420586c0 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000042058722 0x2 + .text.ieee80211w_set_keys + 0x0000000042058724 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000042058761 0x3 + .text.wpa_sm_pmksa_free_cb + 0x0000000042058764 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000420587c2 0x2 + .text.cipher_type_map_supp_to_public + 0x00000000420587c4 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420587c4 cipher_type_map_supp_to_public + .text.wpa_eapol_key_send + 0x0000000042058848 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x82 (size before relaxing) + 0x0000000042058848 wpa_eapol_key_send + *fill* 0x00000000420588c6 0x2 + .text.wpa_sm_key_request + 0x00000000420588c8 0x16b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x16f (size before relaxing) + *fill* 0x0000000042058a33 0x1 + .text.wpa_sm_rekey_ptk + 0x0000000042058a34 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000042058a42 0x2 + .text.wpa_supplicant_send_4_of_4 + 0x0000000042058a44 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xee (size before relaxing) + *fill* 0x0000000042058b2e 0x2 + .text.wpa_supplicant_send_2_of_2 + 0x0000000042058b30 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xed (size before relaxing) + *fill* 0x0000000042058c19 0x3 + .text.wpa_supplicant_send_2_of_4 + 0x0000000042058c1c 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x11e (size before relaxing) + 0x0000000042058c1c wpa_supplicant_send_2_of_4 + *fill* 0x0000000042058d36 0x2 + .text.wpa_supplicant_process_1_of_2_rsn + 0x0000000042058d38 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8e (size before relaxing) + *fill* 0x0000000042058dba 0x2 + .text.wpa_supplicant_process_1_of_2_wpa + 0x0000000042058dbc 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x114 (size before relaxing) + .text.wpa_supplicant_pairwise_gtk + 0x0000000042058ec4 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6e (size before relaxing) + 0x0000000042058ec4 wpa_supplicant_pairwise_gtk + *fill* 0x0000000042058f2a 0x2 + .text.wpa_report_ie_mismatch + 0x0000000042058f2c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042058f2c wpa_report_ie_mismatch + *fill* 0x0000000042058f3b 0x1 + .text.wpa_supplicant_validate_ie + 0x0000000042058f3c 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000004205902e 0x2 + .text.wpa_sm_set_state + 0x0000000042059030 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + 0x0000000042059030 wpa_sm_set_state + .text.wpa_supplicant_key_neg_complete + 0x0000000042059050 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x0000000042059050 wpa_supplicant_key_neg_complete + *fill* 0x000000004205907e 0x2 + .text.wpa_sm_set_pmk_from_pmksa + 0x0000000042059080 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059080 wpa_sm_set_pmk_from_pmksa + *fill* 0x00000000420590b2 0x2 + .text.wpa_supplicant_get_pmk + 0x00000000420590b4 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x17c (size before relaxing) + .text.wpa_supplicant_process_1_of_4 + 0x0000000042059220 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x154 (size before relaxing) + 0x0000000042059220 wpa_supplicant_process_1_of_4 + .text.wpa_sm_init + 0x0000000042059350 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x68 (size before relaxing) + 0x0000000042059350 wpa_sm_init + .text.wpa_sm_notify_assoc + 0x00000000420593b0 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420593b0 wpa_sm_notify_assoc + *fill* 0x0000000042059436 0x2 + .text.wpa_set_profile + 0x0000000042059438 0x97 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059438 wpa_set_profile + *fill* 0x00000000420594cf 0x1 + .text.wpa_set_pmk + 0x00000000420594d0 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420594d0 wpa_set_pmk + *fill* 0x0000000042059526 0x2 + .text.wpa_set_passphrase + 0x0000000042059528 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc6 (size before relaxing) + 0x0000000042059528 wpa_set_passphrase + *fill* 0x00000000420595ca 0x2 + .text.set_assoc_ie + 0x00000000420595cc 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420595cc set_assoc_ie + *fill* 0x0000000042059602 0x2 + .text.wpa_sm_set_key + 0x0000000042059604 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059604 wpa_sm_set_key + *fill* 0x0000000042059679 0x3 + .text.wpa_supplicant_install_ptk + 0x000000004205967c 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa6 (size before relaxing) + *fill* 0x0000000042059712 0x2 + .text.wpa_supplicant_process_3_of_4 + 0x0000000042059714 0x103 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x126 (size before relaxing) + *fill* 0x0000000042059817 0x1 + .text.wpa_supplicant_install_gtk + 0x0000000042059818 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf0 (size before relaxing) + .text.wpa_supplicant_process_1_of_2 + 0x0000000042059904 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd4 (size before relaxing) + .text.wpa_sm_rx_eapol + 0x00000000420599bc 0x2b2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2b6 (size before relaxing) + 0x00000000420599bc wpa_sm_rx_eapol + *fill* 0x0000000042059c6e 0x2 + .text.wpa_supplicant_activate_ptk + 0x0000000042059c70 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x55 (size before relaxing) + *fill* 0x0000000042059cbd 0x3 + .text.wpa_supplicant_send_4_of_4_txcallback + 0x0000000042059cc0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9c (size before relaxing) + .text.wpa_supplicant_clr_countermeasures + 0x0000000042059d50 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059d50 wpa_supplicant_clr_countermeasures + *fill* 0x0000000042059d5d 0x3 + .text.wpa_supplicant_stop_countermeasures + 0x0000000042059d60 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x0000000042059d60 wpa_supplicant_stop_countermeasures + *fill* 0x0000000042059d8c 0x0 + .text.wpa_michael_mic_failure + 0x0000000042059d8c 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa4 (size before relaxing) + 0x0000000042059d8c wpa_michael_mic_failure + .text.eapol_txcb + 0x0000000042059e10 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xab (size before relaxing) + 0x0000000042059e10 eapol_txcb + *fill* 0x0000000042059eb8 0x0 + .text.wpa_sta_in_4way_handshake + 0x0000000042059eb8 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059eb8 wpa_sta_in_4way_handshake + *fill* 0x0000000042059eea 0x2 + .text.wpa_sta_cur_pmksa_matches_akm + 0x0000000042059eec 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059eec wpa_sta_cur_pmksa_matches_akm + .text.wpa_sta_clear_curr_pmksa + 0x0000000042059f14 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23 (size before relaxing) + 0x0000000042059f14 wpa_sta_clear_curr_pmksa + *fill* 0x0000000042059f34 0x0 + .text.get_wpa_sm + 0x0000000042059f34 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059f34 get_wpa_sm + .text.wpa_sm_set_ap_rsnxe + 0x0000000042059f3c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x5c (size before relaxing) + 0x0000000042059f3c wpa_sm_set_ap_rsnxe + .text.wpa_sm_set_assoc_rsnxe + 0x0000000042059f94 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000042059f94 wpa_sm_set_assoc_rsnxe + *fill* 0x0000000042059fe2 0x2 + .text.wpa_set_bss + 0x0000000042059fe4 0x206 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23a (size before relaxing) + 0x0000000042059fe4 wpa_set_bss + *fill* 0x000000004205a1ea 0x2 + .text.wpa_sm_drop_sa + 0x000000004205a1ec 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004205a1ec wpa_sm_drop_sa + *fill* 0x000000004205a23b 0x1 + .text.wpa_sm_deinit + 0x000000004205a23c 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x000000004205a23c wpa_sm_deinit + *fill* 0x000000004205a26b 0x1 + .text.wpa_sm_notify_disassoc + 0x000000004205a26c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3b (size before relaxing) + 0x000000004205a26c wpa_sm_notify_disassoc + *fill* 0x000000004205a29f 0x1 + .text.owe_build_assoc_req + 0x000000004205a2a0 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xe4 (size before relaxing) + 0x000000004205a2a0 owe_build_assoc_req + .text.owe_process_assoc_resp + 0x000000004205a35c 0x1fa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23e (size before relaxing) + 0x000000004205a35c owe_process_assoc_resp + *fill* 0x000000004205a556 0x2 + .text.wpa_parse_generic + 0x000000004205a558 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000004205a6c6 0x2 + .text.wpa_gen_wpa_ie_rsn + 0x000000004205a6c8 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x29c (size before relaxing) + .text.wpa_gen_wpa_ie_wpa + 0x000000004205a960 0x17a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000004205aada 0x2 + .text.wpa_parse_wpa_ie + 0x000000004205aadc 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x000000004205aadc wpa_parse_wpa_ie + *fill* 0x000000004205ab35 0x3 + .text.wpa_gen_wpa_ie + 0x000000004205ab38 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x000000004205ab38 wpa_gen_wpa_ie + .text.wpa_gen_rsnxe + 0x000000004205ab80 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x000000004205ab80 wpa_gen_rsnxe + .text.wpa_supplicant_parse_ies + 0x000000004205abd8 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x94 (size before relaxing) + 0x000000004205abd8 wpa_supplicant_parse_ies + .text.wpabuf_alloc + 0x000000004205ac68 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x000000004205ac68 wpabuf_alloc + .text.wpabuf_free + 0x000000004205ac84 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x000000004205ac84 wpabuf_free + .text.wpabuf_alloc_copy + 0x000000004205aca0 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x28 (size before relaxing) + 0x000000004205aca0 wpabuf_alloc_copy + .text.wpabuf_zeropad + 0x000000004205acc4 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x54 (size before relaxing) + 0x000000004205acc4 wpabuf_zeropad + .text.wpa2_get_eap_state + 0x000000004205ad0c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + 0x000000004205ad0c wpa2_get_eap_state + .text.wpa_alloc_eapol + 0x000000004205ad24 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004205ad24 wpa_alloc_eapol + *fill* 0x000000004205ad8e 0x2 + .text.wpa_free_eapol + 0x000000004205ad90 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004205ad90 wpa_free_eapol + .text.wpa_ether_send + 0x000000004205ada0 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x51 (size before relaxing) + 0x000000004205ada0 wpa_ether_send + *fill* 0x000000004205aded 0x3 + .text.hostapd_send_eapol + 0x000000004205adf0 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x61 (size before relaxing) + 0x000000004205adf0 hostapd_send_eapol + *fill* 0x000000004205ae4d 0x3 + .text.wpa_supplicant_transition_disable + 0x000000004205ae50 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x000000004205ae50 wpa_supplicant_transition_disable + *fill* 0x000000004205ae5b 0x1 + .text.wpa_sm_alloc_eapol + 0x000000004205ae5c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + 0x000000004205ae5c wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x000000004205ae74 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x000000004205ae74 wpa_sm_free_eapol + *fill* 0x000000004205ae7e 0x2 + .text.wpa_sm_deauthenticate + 0x000000004205ae80 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x000000004205ae80 wpa_sm_deauthenticate + *fill* 0x000000004205ae9b 0x1 + .text.crypto_rng_wrapper + 0x000000004205ae9c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + *fill* 0x000000004205aead 0x3 + .text.crypto_bignum_init + 0x000000004205aeb0 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x000000004205aeb0 crypto_bignum_init + *fill* 0x000000004205aec6 0x2 + .text.crypto_bignum_init_set + 0x000000004205aec8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2c (size before relaxing) + 0x000000004205aec8 crypto_bignum_init_set + .text.crypto_bignum_init_uint + 0x000000004205aef0 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x000000004205aef0 crypto_bignum_init_uint + *fill* 0x000000004205af12 0x2 + .text.crypto_bignum_deinit + 0x000000004205af14 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x16 (size before relaxing) + 0x000000004205af14 crypto_bignum_deinit + *fill* 0x000000004205af26 0x2 + .text.crypto_bignum_to_bin + 0x000000004205af28 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x52 (size before relaxing) + 0x000000004205af28 crypto_bignum_to_bin + *fill* 0x000000004205af76 0x2 + .text.crypto_bignum_add + 0x000000004205af78 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x000000004205af78 crypto_bignum_add + .text.crypto_bignum_mod + 0x000000004205af8c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x000000004205af8c crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x000000004205afa0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1c (size before relaxing) + 0x000000004205afa0 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x000000004205afb8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x000000004205afb8 crypto_bignum_inverse + .text.crypto_bignum_sub + 0x000000004205afcc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x000000004205afcc crypto_bignum_sub + .text.crypto_bignum_div + 0x000000004205afe0 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205afe0 crypto_bignum_div + *fill* 0x000000004205aff9 0x3 + .text.crypto_bignum_mulmod + 0x000000004205affc 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2e (size before relaxing) + 0x000000004205affc crypto_bignum_mulmod + *fill* 0x000000004205b026 0x2 + .text.crypto_bignum_sqrmod + 0x000000004205b028 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3c (size before relaxing) + 0x000000004205b028 crypto_bignum_sqrmod + .text.crypto_bignum_rshift + 0x000000004205b058 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x000000004205b058 crypto_bignum_rshift + *fill* 0x000000004205b07a 0x2 + .text.crypto_bignum_cmp + 0x000000004205b07c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205b07c crypto_bignum_cmp + *fill* 0x000000004205b08d 0x3 + .text.crypto_bignum_bits + 0x000000004205b090 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + 0x000000004205b090 crypto_bignum_bits + .text.crypto_bignum_is_zero + 0x000000004205b09c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205b09c crypto_bignum_is_zero + *fill* 0x000000004205b0b2 0x2 + .text.crypto_bignum_is_one + 0x000000004205b0b4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205b0b4 crypto_bignum_is_one + *fill* 0x000000004205b0ca 0x2 + .text.crypto_bignum_is_odd + 0x000000004205b0cc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205b0cc crypto_bignum_is_odd + .text.crypto_bignum_rand + 0x000000004205b0e4 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x000000004205b0e4 crypto_bignum_rand + .text.crypto_bignum_legendre + 0x000000004205b100 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x94 (size before relaxing) + 0x000000004205b100 crypto_bignum_legendre + .text._pmksa_cache_free_entry + 0x000000004205b178 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000004205b185 0x3 + .text.pmksa_cache_free_entry + 0x000000004205b188 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004205b1a6 0x2 + .text.pmksa_cache_set_expiration + 0x000000004205b1a8 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000004205b1e3 0x1 + .text.pmksa_cache_expire + 0x000000004205b1e4 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000004205b21c 0x0 + .text.pmksa_cache_flush + 0x000000004205b21c 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004205b21c pmksa_cache_flush + *fill* 0x000000004205b273 0x1 + .text.pmksa_cache_add + 0x000000004205b274 0x1d2 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004205b274 pmksa_cache_add + *fill* 0x000000004205b446 0x2 + .text.pmksa_cache_clone_entry + 0x000000004205b448 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x44 (size before relaxing) + .text.pmksa_cache_deinit + 0x000000004205b488 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3b (size before relaxing) + 0x000000004205b488 pmksa_cache_deinit + *fill* 0x000000004205b4bf 0x1 + .text.pmksa_cache_get + 0x000000004205b4c0 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004205b4c0 pmksa_cache_get + *fill* 0x000000004205b4f9 0x3 + .text.pmksa_cache_get_opportunistic + 0x000000004205b4fc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004205b4fc pmksa_cache_get_opportunistic + .text.pmksa_cache_set_current + 0x000000004205b52c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x72 (size before relaxing) + 0x000000004205b52c pmksa_cache_set_current + *fill* 0x000000004205b59a 0x2 + .text.pmksa_cache_init + 0x000000004205b59c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004205b59c pmksa_cache_init + .text.mbedtls_asn1_write_len + 0x000000004205b5bc 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x000000004205b5bc mbedtls_asn1_write_len + *fill* 0x000000004205b6e3 0x1 + .text.mbedtls_asn1_write_mpi + 0x000000004205b6e4 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8c (size before relaxing) + 0x000000004205b6e4 mbedtls_asn1_write_mpi + .text.block_cipher_df + 0x000000004205b768 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1b4 (size before relaxing) + .text.ctr_drbg_update_internal + 0x000000004205b908 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_reseed_internal + 0x000000004205b9ac 0xc7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xd3 (size before relaxing) + *fill* 0x000000004205ba73 0x1 + .text.mbedtls_ctr_drbg_init + 0x000000004205ba74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + 0x000000004205ba74 mbedtls_ctr_drbg_init + .text.mbedtls_ctr_drbg_free + 0x000000004205ba94 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x23 (size before relaxing) + 0x000000004205ba94 mbedtls_ctr_drbg_free + *fill* 0x000000004205bab3 0x1 + .text.mbedtls_ctr_drbg_reseed + 0x000000004205bab4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x000000004205bab4 mbedtls_ctr_drbg_reseed + *fill* 0x000000004205bac9 0x3 + .text.mbedtls_ctr_drbg_seed + 0x000000004205bacc 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x5a (size before relaxing) + 0x000000004205bacc mbedtls_ctr_drbg_seed + *fill* 0x000000004205bb1e 0x2 + .text.mbedtls_ctr_drbg_random_with_add + 0x000000004205bb20 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x103 (size before relaxing) + 0x000000004205bb20 mbedtls_ctr_drbg_random_with_add + *fill* 0x000000004205bc13 0x1 + .text.mbedtls_ctr_drbg_random + 0x000000004205bc14 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x000000004205bc14 mbedtls_ctr_drbg_random + .text.ecdh_gen_public_restartable + 0x000000004205bc28 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x2c (size before relaxing) + .text.ecdh_compute_shared_restartable + 0x000000004205bc50 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + *fill* 0x000000004205bc94 0x0 + .text.ecdh_free_internal + 0x000000004205bc94 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004205bcbe 0x2 + .text.mbedtls_ecdh_gen_public + 0x000000004205bcc0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004205bcc0 mbedtls_ecdh_gen_public + *fill* 0x000000004205bcd9 0x3 + .text.mbedtls_ecdh_compute_shared + 0x000000004205bcdc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004205bcdc mbedtls_ecdh_compute_shared + *fill* 0x000000004205bcf9 0x3 + .text.ecdh_calc_secret_internal + 0x000000004205bcfc 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8c (size before relaxing) + .text.mbedtls_ecdh_init + 0x000000004205bd78 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004205bd78 mbedtls_ecdh_init + *fill* 0x000000004205bd8a 0x2 + .text.mbedtls_ecdh_free + 0x000000004205bd8c 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004205bd8c mbedtls_ecdh_free + *fill* 0x000000004205bdab 0x1 + .text.mbedtls_ecdh_calc_secret + 0x000000004205bdac 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004205bdac mbedtls_ecdh_calc_secret + *fill* 0x000000004205bdd5 0x3 + .text.derive_mpi + 0x000000004205bdd8 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5e (size before relaxing) + *fill* 0x000000004205be26 0x2 + .text.ecdsa_signature_to_asn1 + 0x000000004205be28 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x8c (size before relaxing) + .text.mbedtls_ecdsa_sign_restartable + 0x000000004205bea8 0x1bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x20d (size before relaxing) + 0x000000004205bea8 mbedtls_ecdsa_sign_restartable + *fill* 0x000000004205c065 0x3 + .text.mbedtls_ecdsa_sign_det_restartable + 0x000000004205c068 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe7 (size before relaxing) + 0x000000004205c068 mbedtls_ecdsa_sign_det_restartable + *fill* 0x000000004205c12b 0x1 + .text.mbedtls_ecdsa_verify_restartable + 0x000000004205c12c 0x143 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18f (size before relaxing) + 0x000000004205c12c mbedtls_ecdsa_verify_restartable + *fill* 0x000000004205c26f 0x1 + .text.mbedtls_ecdsa_write_signature_restartable + 0x000000004205c270 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x76 (size before relaxing) + 0x000000004205c270 mbedtls_ecdsa_write_signature_restartable + *fill* 0x000000004205c2d6 0x2 + .text.mbedtls_ecdsa_write_signature + 0x000000004205c2d8 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004205c2d8 mbedtls_ecdsa_write_signature + *fill* 0x000000004205c301 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x000000004205c304 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xaa (size before relaxing) + 0x000000004205c304 mbedtls_ecdsa_read_signature_restartable + *fill* 0x000000004205c398 0x0 + .text.mbedtls_ecdsa_read_signature + 0x000000004205c398 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x000000004205c398 mbedtls_ecdsa_read_signature + *fill* 0x000000004205c3b1 0x3 + .text.ecp_pick_window_size + 0x000000004205c3b4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mpi_init_many + 0x000000004205c3e8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004205c403 0x1 + .text.mpi_free_many + 0x000000004205c404 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000004205c41f 0x1 + .text.ecp_check_bad_points_mx + 0x000000004205c420 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xab (size before relaxing) + *fill* 0x000000004205c4b4 0x0 + .text.ecp_check_pubkey_mx + 0x000000004205c4b4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + *fill* 0x000000004205c4ed 0x3 + .text.mbedtls_mpi_sub_mod + 0x000000004205c4f0 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000004205c52a 0x2 + .text.ecp_modp + 0x000000004205c52c 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x000000004205c5c3 0x1 + .text.mbedtls_mpi_mul_mod + 0x000000004205c5c4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .text.mbedtls_mpi_add_mod + 0x000000004205c5e8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .text.mbedtls_ecp_gen_privkey_sw + 0x000000004205c620 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .text.mbedtls_mpi_shift_l_mod + 0x000000004205c63c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004205c66e 0x2 + .text.ecp_safe_invert_jac + 0x000000004205c670 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4c (size before relaxing) + .text.ecp_select_comb + 0x000000004205c6ac 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6c (size before relaxing) + .text.ecp_comb_recode_core + 0x000000004205c708 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004205c792 0x2 + .text.ecp_comb_recode_scalar + 0x000000004205c794 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x000000004205c809 0x3 + .text.mbedtls_ecp_gen_privkey_mx + 0x000000004205c80c 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004205c862 0x2 + .text.ecp_normalize_mxz + 0x000000004205c864 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .text.ecp_randomize_mxz + 0x000000004205c8a0 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000004205c913 0x1 + .text.ecp_sw_rhs + 0x000000004205c914 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10e (size before relaxing) + *fill* 0x000000004205ca0a 0x2 + .text.ecp_check_pubkey_sw + 0x000000004205ca0c 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xb3 (size before relaxing) + *fill* 0x000000004205ca9b 0x1 + .text.ecp_normalize_jac + 0x000000004205ca9c 0xc7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xf6 (size before relaxing) + *fill* 0x000000004205cb63 0x1 + .text.ecp_normalize_jac_many + 0x000000004205cb64 0x202 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x256 (size before relaxing) + *fill* 0x000000004205cd66 0x2 + .text.ecp_randomize_jac + 0x000000004205cd68 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10f (size before relaxing) + *fill* 0x000000004205ce4b 0x1 + .text.ecp_double_add_mxz + 0x000000004205ce4c 0x264 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c0 (size before relaxing) + .text.ecp_double_jac + 0x000000004205d0b0 0x3d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x466 (size before relaxing) + *fill* 0x000000004205d482 0x2 + .text.mbedtls_ecp_point_init + 0x000000004205d484 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x000000004205d484 mbedtls_ecp_point_init + *fill* 0x000000004205d49b 0x1 + .text.mbedtls_ecp_group_init + 0x000000004205d49c 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x000000004205d49c mbedtls_ecp_group_init + *fill* 0x000000004205d4dd 0x3 + .text.mbedtls_ecp_keypair_init + 0x000000004205d4e0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22 (size before relaxing) + 0x000000004205d4e0 mbedtls_ecp_keypair_init + *fill* 0x000000004205d4fa 0x2 + .text.mbedtls_ecp_point_free + 0x000000004205d4fc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x000000004205d4fc mbedtls_ecp_point_free + .text.mbedtls_ecp_group_free + 0x000000004205d514 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6b (size before relaxing) + 0x000000004205d514 mbedtls_ecp_group_free + *fill* 0x000000004205d56f 0x1 + .text.mbedtls_ecp_keypair_free + 0x000000004205d570 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x23 (size before relaxing) + 0x000000004205d570 mbedtls_ecp_keypair_free + *fill* 0x000000004205d58b 0x1 + .text.mbedtls_ecp_copy + 0x000000004205d58c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + 0x000000004205d58c mbedtls_ecp_copy + .text.ecp_mul_mxz + 0x000000004205d5b0 0x141 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x185 (size before relaxing) + *fill* 0x000000004205d6f1 0x3 + .text.mbedtls_ecp_group_copy + 0x000000004205d6f4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004205d6f4 mbedtls_ecp_group_copy + *fill* 0x000000004205d705 0x3 + .text.mbedtls_ecp_set_zero + 0x000000004205d708 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a (size before relaxing) + 0x000000004205d708 mbedtls_ecp_set_zero + *fill* 0x000000004205d72a 0x2 + .text.ecp_add_mixed + 0x000000004205d72c 0x296 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30e (size before relaxing) + *fill* 0x000000004205d9c2 0x2 + .text.ecp_precompute_comb + 0x000000004205d9c4 0x15b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x167 (size before relaxing) + *fill* 0x000000004205db1f 0x1 + .text.ecp_mul_comb_core + 0x000000004205db20 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xb0 (size before relaxing) + .text.ecp_mul_comb_after_precomp + 0x000000004205dbb8 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x72 (size before relaxing) + *fill* 0x000000004205dc1e 0x2 + .text.ecp_mul_comb + 0x000000004205dc20 0x115 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x128 (size before relaxing) + *fill* 0x000000004205dd35 0x3 + .text.mbedtls_ecp_is_zero + 0x000000004205dd38 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004205dd38 mbedtls_ecp_is_zero + *fill* 0x000000004205dd4f 0x1 + .text.mbedtls_ecp_point_cmp + 0x000000004205dd50 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42 (size before relaxing) + 0x000000004205dd50 mbedtls_ecp_point_cmp + *fill* 0x000000004205dd8a 0x2 + .text.mbedtls_ecp_check_pubkey + 0x000000004205dd8c 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4d (size before relaxing) + 0x000000004205dd8c mbedtls_ecp_check_pubkey + *fill* 0x000000004205ddd1 0x3 + .text.mbedtls_ecp_check_privkey + 0x000000004205ddd4 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + 0x000000004205ddd4 mbedtls_ecp_check_privkey + *fill* 0x000000004205de4e 0x2 + .text.ecp_mul_restartable_internal + 0x000000004205de50 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x72 (size before relaxing) + *fill* 0x000000004205deb2 0x2 + .text.mbedtls_ecp_mul_restartable + 0x000000004205deb4 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x26 (size before relaxing) + 0x000000004205deb4 mbedtls_ecp_mul_restartable + *fill* 0x000000004205ded6 0x2 + .text.mbedtls_ecp_mul + 0x000000004205ded8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004205ded8 mbedtls_ecp_mul + *fill* 0x000000004205def5 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x000000004205def8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe7 (size before relaxing) + *fill* 0x000000004205dfb8 0x0 + .text.mbedtls_ecp_muladd_restartable + 0x000000004205dfb8 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8f (size before relaxing) + 0x000000004205dfb8 mbedtls_ecp_muladd_restartable + *fill* 0x000000004205e02b 0x1 + .text.mbedtls_ecp_muladd + 0x000000004205e02c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004205e02c mbedtls_ecp_muladd + *fill* 0x000000004205e049 0x3 + .text.mbedtls_ecp_gen_privkey + 0x000000004205e04c 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + 0x000000004205e04c mbedtls_ecp_gen_privkey + *fill* 0x000000004205e089 0x3 + .text.mbedtls_ecp_check_pub_priv + 0x000000004205e08c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbc (size before relaxing) + 0x000000004205e08c mbedtls_ecp_check_pub_priv + .text.mbedtls_ecp_mod_p224_raw + 0x000000004205e128 0x225 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205e34d 0x3 + .text.mbedtls_ecp_mod_p256_raw + 0x000000004205e350 0x51d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205e86d 0x3 + .text.ecp_mod_p255 + 0x000000004205e870 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205e8c1 0x3 + .text.ecp_mod_koblitz + 0x000000004205e8c4 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x166 (size before relaxing) + *fill* 0x000000004205ea1e 0x2 + .text.ecp_mod_p256k1 + 0x000000004205ea20 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205ea3a 0x2 + .text.ecp_mod_p224k1 + 0x000000004205ea3c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205ea56 0x2 + .text.ecp_mod_p192k1 + 0x000000004205ea58 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205ea72 0x2 + .text.ecp_mod_p384 + 0x000000004205ea74 0x7fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.ecp_mod_p256 + 0x000000004205f270 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x000000004205f289 0x3 + .text.ecp_mod_p224 + 0x000000004205f28c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x000000004205f2a5 0x3 + .text.mbedtls_ecp_mod_p521_raw + 0x000000004205f2a8 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x6d (size before relaxing) + *fill* 0x000000004205f311 0x3 + .text.ecp_mod_p521 + 0x000000004205f314 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x000000004205f32d 0x3 + .text.ecp_group_load + 0x000000004205f330 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x88 (size before relaxing) + .text.ecp_use_curve25519 + 0x000000004205f3b0 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x78 (size before relaxing) + *fill* 0x000000004205f415 0x3 + .text.mbedtls_ecp_mod_p192_raw + 0x000000004205f418 0x2c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004205f6dd 0x3 + .text.ecp_mod_p192 + 0x000000004205f6e0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1d (size before relaxing) + *fill* 0x000000004205f6f9 0x3 + .text.mbedtls_ecp_group_load + 0x000000004205f6fc 0x31c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x324 (size before relaxing) + 0x000000004205f6fc mbedtls_ecp_group_load + .text.entropy_update + 0x000000004205fa18 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004205fa7a 0x2 + .text.entropy_gather_internal + 0x000000004205fa7c 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x90 (size before relaxing) + .text.mbedtls_entropy_free + 0x000000004205fb04 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x2a (size before relaxing) + 0x000000004205fb04 mbedtls_entropy_free + *fill* 0x000000004205fb2a 0x2 + .text.mbedtls_entropy_init + 0x000000004205fb2c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x36 (size before relaxing) + 0x000000004205fb2c mbedtls_entropy_init + *fill* 0x000000004205fb5e 0x2 + .text.mbedtls_entropy_func + 0x000000004205fb60 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x118 (size before relaxing) + 0x000000004205fb60 mbedtls_entropy_func + .text.mbedtls_hash_info_get_size + 0x000000004205fc64 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x000000004205fc64 mbedtls_hash_info_get_size + *fill* 0x000000004205fc7d 0x3 + .text.mbedtls_hmac_drbg_init + 0x000000004205fc80 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004205fc80 mbedtls_hmac_drbg_init + .text.mbedtls_hmac_drbg_update + 0x000000004205fc98 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x000000004205fc98 mbedtls_hmac_drbg_update + .text.hmac_drbg_reseed_core + 0x000000004205fd58 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + *fill* 0x000000004205fe1b 0x1 + .text.mbedtls_hmac_drbg_seed_buf + 0x000000004205fe1c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4e (size before relaxing) + 0x000000004205fe1c mbedtls_hmac_drbg_seed_buf + *fill* 0x000000004205fe5a 0x2 + .text.mbedtls_hmac_drbg_reseed + 0x000000004205fe5c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x000000004205fe5c mbedtls_hmac_drbg_reseed + *fill* 0x000000004205fe71 0x3 + .text.mbedtls_hmac_drbg_random_with_add + 0x000000004205fe74 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x000000004205fe74 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x000000004205ff38 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x000000004205ff38 mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x000000004205ff4c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + 0x000000004205ff4c mbedtls_hmac_drbg_free + .text.mbedtls_pk_free + 0x000000004205ff68 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004205ff68 mbedtls_pk_free + .text.mbedtls_pk_info_from_type + 0x000000004205ff84 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004205ff84 mbedtls_pk_info_from_type + .text.mbedtls_pk_setup + 0x000000004205ffbc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004205ffbc mbedtls_pk_setup + *fill* 0x000000004205ffe7 0x1 + .text.rsa_debug + 0x000000004205ffe8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000042060006 0x2 + .text.eckey_debug + 0x0000000042060008 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004206001d 0x3 + .text.rsa_get_bitlen + 0x0000000042060020 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x11 (size before relaxing) + *fill* 0x000000004206002d 0x3 + .text.rsa_free_wrap + 0x0000000042060030 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000042060042 0x2 + .text.rsa_alloc_wrap + 0x0000000042060044 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004206005a 0x2 + .text.rsa_check_pair_wrap + 0x000000004206005c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004206006d 0x3 + .text.rsa_encrypt_wrap + 0x0000000042060070 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x0000000042060096 0x2 + .text.rsa_decrypt_wrap + 0x0000000042060098 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x00000000420600be 0x2 + .text.rsa_sign_wrap + 0x00000000420600c0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000420600ea 0x2 + .text.rsa_verify_wrap + 0x00000000420600ec 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x37 (size before relaxing) + *fill* 0x000000004206011f 0x1 + .text.eckey_free_wrap + 0x0000000042060120 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000042060132 0x2 + .text.eckey_alloc_wrap + 0x0000000042060134 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004206014a 0x2 + .text.eckey_check_pair + 0x000000004206014c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000042060161 0x3 + .text.ecdsa_sign_wrap + 0x0000000042060164 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000042060189 0x3 + .text.ecdsa_verify_wrap + 0x000000004206018c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000420601a9 0x3 + .text.rsa_check_context + 0x00000000420601ac 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xec (size before relaxing) + .text.rsa_prepare_blinding + 0x0000000042060278 0x10f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x13e (size before relaxing) + *fill* 0x0000000042060387 0x1 + .text.compute_hash + 0x0000000042060388 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x25 (size before relaxing) + *fill* 0x00000000420603a9 0x3 + .text.mgf_mask + 0x00000000420603ac 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xef (size before relaxing) + *fill* 0x000000004206047b 0x1 + .text.hash_mprime + 0x000000004206047c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8e (size before relaxing) + *fill* 0x00000000420604f2 0x2 + .text.rsa_rsassa_pkcs1_v15_encode + 0x00000000420604f4 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x166 (size before relaxing) + *fill* 0x0000000042060652 0x2 + .text.mbedtls_rsa_init + 0x0000000042060654 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042060654 mbedtls_rsa_init + *fill* 0x0000000042060666 0x2 + .text.mbedtls_rsa_check_pubkey + 0x0000000042060668 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x65 (size before relaxing) + 0x0000000042060668 mbedtls_rsa_check_pubkey + *fill* 0x00000000420606b9 0x3 + .text.mbedtls_rsa_check_privkey + 0x00000000420606bc 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x6b (size before relaxing) + 0x00000000420606bc mbedtls_rsa_check_privkey + *fill* 0x000000004206071f 0x1 + .text.mbedtls_rsa_check_pub_priv + 0x0000000042060720 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x0000000042060720 mbedtls_rsa_check_pub_priv + *fill* 0x0000000042060759 0x3 + .text.mbedtls_rsa_public + 0x000000004206075c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x000000004206075c mbedtls_rsa_public + *fill* 0x00000000420607ce 0x2 + .text.mbedtls_rsa_private + 0x00000000420607d0 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30c (size before relaxing) + 0x00000000420607d0 mbedtls_rsa_private + .text.rsa_rsassa_pss_sign + 0x0000000042060a44 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x193 (size before relaxing) + *fill* 0x0000000042060bc7 0x1 + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x0000000042060bc8 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x100 (size before relaxing) + 0x0000000042060bc8 mbedtls_rsa_rsaes_oaep_encrypt + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x0000000042060cb8 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042060cb8 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x0000000042060d61 0x3 + .text.mbedtls_rsa_pkcs1_encrypt + 0x0000000042060d64 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042060d64 mbedtls_rsa_pkcs1_encrypt + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x0000000042060da8 0x197 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1af (size before relaxing) + 0x0000000042060da8 mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x0000000042060f3f 0x1 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x0000000042060f40 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x5b (size before relaxing) + 0x0000000042060f40 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x0000000042060f8f 0x1 + .text.mbedtls_rsa_pkcs1_decrypt + 0x0000000042060f90 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042060f90 mbedtls_rsa_pkcs1_decrypt + .text.mbedtls_rsa_rsassa_pss_sign + 0x0000000042060fdc 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042060fdc mbedtls_rsa_rsassa_pss_sign + *fill* 0x0000000042060ffd 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x0000000042061000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe4 (size before relaxing) + 0x0000000042061000 mbedtls_rsa_rsassa_pkcs1_v15_sign + .text.mbedtls_rsa_pkcs1_sign + 0x00000000420610c4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000420610c4 mbedtls_rsa_pkcs1_sign + *fill* 0x0000000042061116 0x2 + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x0000000042061118 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c1 (size before relaxing) + 0x0000000042061118 mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x00000000420612c9 0x3 + .text.mbedtls_rsa_rsassa_pss_verify + 0x00000000420612cc 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000420612cc mbedtls_rsa_rsassa_pss_verify + *fill* 0x00000000420612fd 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x0000000042061300 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xa4 (size before relaxing) + 0x0000000042061300 mbedtls_rsa_rsassa_pkcs1_v15_verify + .text.mbedtls_rsa_pkcs1_verify + 0x0000000042061390 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000042061390 mbedtls_rsa_pkcs1_verify + *fill* 0x00000000420613d9 0x3 + .text.mbedtls_rsa_free + 0x00000000420613dc 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x00000000420613dc mbedtls_rsa_free + *fill* 0x000000004206143a 0x2 + .text.mbedtls_rsa_validate_params + 0x000000004206143c 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x21c (size before relaxing) + 0x000000004206143c mbedtls_rsa_validate_params + .text.mbedtls_rsa_validate_crt + 0x000000004206160c 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x15c (size before relaxing) + 0x000000004206160c mbedtls_rsa_validate_crt + .text.mbedtls_hardware_poll + 0x0000000042061738 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x0000000042061738 mbedtls_hardware_poll + *fill* 0x000000004206174b 0x1 + .text.misc_nvs_load + 0x000000004206174c 0x7e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x9a (size before relaxing) + 0x0000000042061758 misc_nvs_load + *fill* 0x00000000420617ca 0x2 + .text.misc_nvs_deinit + 0x00000000420617cc 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x50 (size before relaxing) + 0x00000000420617d0 misc_nvs_deinit + .text.misc_nvs_init + 0x000000004206180c 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x38 (size before relaxing) + 0x000000004206180c misc_nvs_init + .text.gdma_hal_init + 0x0000000042061830 0x12 esp-idf/hal/libhal.a(gdma_hal.c.obj) + 0x0000000042061830 gdma_hal_init + *fill* 0x0000000042061842 0x2 + .text.ethip6_output + 0x0000000042061844 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x84 (size before relaxing) + 0x0000000042061844 ethip6_output + .text._ZdaPv 0x00000000420618c0 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0x00000000420618c0 operator delete[](void*) + *fill* 0x00000000420618ce 0x2 + .text._ZdaPvj 0x00000000420618d0 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0x00000000420618d0 operator delete[](void*, unsigned int) + *fill* 0x00000000420618de 0x2 + .text._ZSt15get_new_handlerv + 0x00000000420618e0 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x00000000420618e0 std::get_new_handler() + .text._ZnajRKSt9nothrow_t + 0x00000000420618f0 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0x00000000420618f0 operator new[](unsigned int, std::nothrow_t const&) + .text._ZdlPv 0x0000000042061914 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x0000000042061914 operator delete(void*) + *fill* 0x0000000042061922 0x2 + .text.__cxa_begin_catch + 0x0000000042061924 0x5a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x0000000042061924 __cxa_begin_catch + *fill* 0x000000004206197e 0x2 + .text.__cxa_end_catch + 0x0000000042061980 0x66 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x0000000042061980 __cxa_end_catch + *fill* 0x00000000420619e6 0x2 + .text._ZL15eh_globals_dtorPv + 0x00000000420619e8 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x0000000042061a0c 0x1a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x0000000042061a0c __cxa_get_globals_fast + *fill* 0x0000000042061a26 0x2 + .text.__cxa_get_globals + 0x0000000042061a28 0x42 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x0000000042061a28 __cxa_get_globals + *fill* 0x0000000042061a6a 0x2 + .text.startup._GLOBAL__sub_I___cxa_get_globals_fast + 0x0000000042061a6c 0x22 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x0000000042061a8e 0x2 + .text.exit._GLOBAL__sub_D___cxa_get_globals_fast + 0x0000000042061a90 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x0000000042061aa6 0x2 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x0000000042061aa8 0x1a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x0000000042061aa8 __cxxabiv1::__terminate(void (*)()) + *fill* 0x0000000042061ac2 0x2 + .text._ZSt13get_terminatev + 0x0000000042061ac4 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x0000000042061ac4 std::get_terminate() + .text._ZSt9terminatev + 0x0000000042061ad4 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x0000000042061ad4 std::terminate() + *fill* 0x0000000042061ae3 0x1 + .text._ZSt14get_unexpectedv + 0x0000000042061ae4 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x0000000042061ae4 std::get_unexpected() + .text._Znaj 0x0000000042061af4 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0x0000000042061af4 operator new[](unsigned int) + .text._Znwj 0x0000000042061b04 0x3f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x0000000042061b04 operator new(unsigned int) + *fill* 0x0000000042061b43 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x0000000042061b44 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061b44 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + 0x0000000042061b44 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + *fill* 0x0000000042061b56 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000042061b58 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061b58 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + .text._ZNKSt9type_infoeqERKS_ + 0x0000000042061b70 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061b70 std::type_info::operator==(std::type_info const&) const + *fill* 0x0000000042061b96 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x0000000042061b98 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061b98 __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_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x0000000042061bc4 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061bc4 __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_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x0000000042061c4c 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x0000000042061c4c __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x0000000042061c72 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x0000000042061c74 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x0000000042061c74 std::bad_alloc::what() const + .text._ZNSt9bad_allocD2Ev + 0x0000000042061c7c 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x0000000042061c7c std::bad_alloc::~bad_alloc() + 0x0000000042061c7c std::bad_alloc::~bad_alloc() + *fill* 0x0000000042061c8e 0x2 + .text._ZNSt9bad_allocD0Ev + 0x0000000042061c90 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x0000000042061c90 std::bad_alloc::~bad_alloc() + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000042061ca8 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042061ca8 __cxxabiv1::__class_type_info::~__class_type_info() + 0x0000000042061ca8 __cxxabiv1::__class_type_info::~__class_type_info() + *fill* 0x0000000042061cba 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x0000000042061cbc 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042061cbc __cxxabiv1::__class_type_info::~__class_type_info() + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x0000000042061cd4 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042061cd4 __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x0000000042061cf8 0x34 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042061cf8 __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 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x0000000042061d2c 0x1d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042061d2c __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x0000000042061d49 0x3 + .text._ZdlPvj 0x0000000042061d4c 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0x0000000042061d4c operator delete(void*, unsigned int) + *fill* 0x0000000042061d5a 0x2 + .text._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000042061d5c 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061d5c __gnu_cxx::__concurrence_lock_error::what() const + .text._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000042061d64 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061d64 __gnu_cxx::__concurrence_unlock_error::what() const + .text._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000042061d6c 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061d6c __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() + 0x0000000042061d6c __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() + *fill* 0x0000000042061d7e 0x2 + .text._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000042061d80 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061d80 __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() + 0x0000000042061d80 __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() + *fill* 0x0000000042061d92 0x2 + .text._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x0000000042061d94 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061d94 __gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() + .text._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x0000000042061dac 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061dac __gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() + .text._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000042061dc4 0x2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061dc4 __gnu_cxx::__mutex::lock() + *fill* 0x0000000042061def 0x1 + .text._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000042061df0 0x2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061df0 __gnu_cxx::__mutex::unlock() + *fill* 0x0000000042061e1b 0x1 + .text._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x0000000042061e1c 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .text._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x0000000042061e8c 0x62 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + *fill* 0x0000000042061eee 0x2 + .text.__cxa_allocate_exception + 0x0000000042061ef0 0x36 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061ef0 __cxa_allocate_exception + *fill* 0x0000000042061f26 0x2 + .text.__cxa_free_exception + 0x0000000042061f28 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x0000000042061f28 __cxa_free_exception + *fill* 0x0000000042061f4f 0x1 + .text.startup._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x0000000042061f50 0x52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + *fill* 0x0000000042061fa2 0x2 + .text.exit._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x0000000042061fa4 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + *fill* 0x0000000042061fb2 0x2 + .text._ZL23__gxx_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception + 0x0000000042061fb4 0x3f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + *fill* 0x0000000042061ff3 0x1 + .text.__cxa_init_primary_exception + 0x0000000042061ff4 0x32 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x0000000042061ff4 __cxa_init_primary_exception + *fill* 0x0000000042062026 0x2 + .text.__cxa_throw + 0x0000000042062028 0x3a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x0000000042062028 __cxa_throw + *fill* 0x0000000042062062 0x2 + .text._Z12abort_returnIiET_v + 0x0000000042062064 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + *fill* 0x000000004206206d 0x3 + .text.__wrap__Unwind_Resume + 0x0000000042062070 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x0000000042062070 __wrap__Unwind_Resume + *fill* 0x0000000042062079 0x3 + .text.__wrap__Unwind_DeleteException + 0x000000004206207c 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x000000004206207c __wrap__Unwind_DeleteException + *fill* 0x0000000042062085 0x3 + .text.__wrap__Unwind_RaiseException + 0x0000000042062088 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x0000000042062088 __wrap__Unwind_Resume_or_Rethrow + 0x0000000042062088 __wrap__Unwind_RaiseException + *fill* 0x000000004206208e 0x2 + .text.__wrap___gxx_personality_v0 + 0x0000000042062090 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x0000000042062090 __wrap___gxx_personality_v0 + *fill* 0x0000000042062096 0x2 + .text.phy_change_channel + 0x0000000042062098 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x17 (size before relaxing) + 0x0000000042062098 phy_change_channel + *fill* 0x00000000420620a8 0x0 + .text.phy_bbpll_en_usb + 0x00000000420620a8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x00000000420620ac phy_bbpll_en_usb + *fill* 0x00000000420620b7 0x1 + .text.get_phy_version_str + 0x00000000420620b8 0x34 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x40 (size before relaxing) + 0x00000000420620cc get_phy_version_str + .text.get_bias_ref_code + 0x00000000420620ec 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x00000000420620f0 get_bias_ref_code + *fill* 0x000000004206215b 0x1 + .text.phy_get_vdd33 + 0x000000004206215c 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x8e (size before relaxing) + 0x000000004206215c phy_get_vdd33 + *fill* 0x00000000420621de 0x2 + .text.phy_set_most_tpw + 0x00000000420621e0 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x26 (size before relaxing) + 0x00000000420621e4 phy_set_most_tpw + *fill* 0x0000000042062202 0x2 + .text.phy_11p_set + 0x0000000042062204 0x1bc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x1c4 (size before relaxing) + 0x0000000042062210 phy_11p_set + .text.phy_enable_low_rate + 0x00000000420623c0 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x44 (size before relaxing) + 0x00000000420623c8 phy_enable_low_rate + .text.phy_disable_low_rate + 0x0000000042062400 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x44 (size before relaxing) + 0x0000000042062400 phy_disable_low_rate + .text.wr_rf_freq_mem + 0x0000000042062438 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x0000000042062440 wr_rf_freq_mem + *fill* 0x000000004206249f 0x1 + .text.freq_i2c_write_set + 0x00000000420624a0 0x5e8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x5f0 (size before relaxing) + 0x000000004206250c freq_i2c_write_set + .text.get_rf_freq_init + 0x0000000042062a88 0x12a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x156 (size before relaxing) + 0x0000000042062a94 get_rf_freq_init + *fill* 0x0000000042062bb2 0x2 + .text.freq_get_i2c_data + 0x0000000042062bb4 0x1a3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x1a7 (size before relaxing) + 0x0000000042062bbc freq_get_i2c_data + *fill* 0x0000000042062d57 0x1 + .text.freq_i2c_data_write + 0x0000000042062d58 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x52 (size before relaxing) + 0x0000000042062d58 freq_i2c_data_write + *fill* 0x0000000042062d9e 0x2 + .text.set_chan_freq_hw_init + 0x0000000042062da0 0x9e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0xce (size before relaxing) + 0x0000000042062da8 set_chan_freq_hw_init + *fill* 0x0000000042062e3e 0x2 + .text.set_chan_freq_sw_start + 0x0000000042062e40 0xf6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x10e (size before relaxing) + 0x0000000042062e54 set_chan_freq_sw_start + *fill* 0x0000000042062f36 0x2 + .text.phy_get_romfunc_addr + 0x0000000042062f38 0x12e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x136 (size before relaxing) + 0x0000000042062fac phy_get_romfunc_addr + *fill* 0x0000000042063066 0x2 + .text.bb_init 0x0000000042063068 0xb2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x126 (size before relaxing) + 0x0000000042063074 bb_init + *fill* 0x000000004206311a 0x2 + .text.pwr_limit_force + 0x000000004206311c 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x5c (size before relaxing) + 0x0000000042063124 pwr_limit_force + .text.register_chipv7_phy_init_param + 0x000000004206316c 0x137 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x147 (size before relaxing) + 0x0000000042063174 register_chipv7_phy_init_param + *fill* 0x00000000420632a3 0x1 + .text.phy_rfcal_data_sub + 0x00000000420632a4 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x50 (size before relaxing) + 0x00000000420632a8 phy_rfcal_data_sub + .text.rf_cal_data_recovery + 0x00000000420632ec 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x13 (size before relaxing) + 0x00000000420632ec rf_cal_data_recovery + *fill* 0x00000000420632fb 0x1 + .text.rf_cal_data_backup + 0x00000000420632fc 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x15 (size before relaxing) + 0x00000000420632fc rf_cal_data_backup + *fill* 0x000000004206330d 0x3 + .text.phy_rfcal_data_check + 0x0000000042063310 0x63 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x6f (size before relaxing) + 0x0000000042063310 phy_rfcal_data_check + *fill* 0x0000000042063373 0x1 + .text.get_txcap_data + 0x0000000042063374 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x4e (size before relaxing) + 0x0000000042063374 get_txcap_data + *fill* 0x00000000420633be 0x2 + .text.get_chip_version + 0x00000000420633c0 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x21 (size before relaxing) + 0x00000000420633c4 get_chip_version + *fill* 0x00000000420633dd 0x3 + .text.rf_init 0x00000000420633e0 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x130 (size before relaxing) + 0x00000000420633ec rf_init + .text.register_chipv7_phy + 0x00000000420634c8 0x141 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x1b5 (size before relaxing) + 0x00000000420634d0 register_chipv7_phy + *fill* 0x0000000042063609 0x3 + .text.txcal_debuge_mode + 0x000000004206360c 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x6c (size before relaxing) + 0x000000004206360c txcal_debuge_mode + .text.txcal_work_mode + 0x0000000042063670 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x36 (size before relaxing) + 0x0000000042063670 txcal_work_mode + *fill* 0x000000004206369a 0x2 + .text.set_pbus_mem + 0x000000004206369c 0x254 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x260 (size before relaxing) + 0x00000000420636fc set_pbus_mem + .text.get_sar_sig_ref + 0x00000000420638f0 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x35 (size before relaxing) + 0x00000000420638f0 get_sar_sig_ref + *fill* 0x0000000042063921 0x3 + .text.pwdet_tone_start + 0x0000000042063924 0x6d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x7d (size before relaxing) + 0x000000004206392c pwdet_tone_start + *fill* 0x0000000042063991 0x3 + .text.get_tone_sar_dout + 0x0000000042063994 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x3f (size before relaxing) + 0x0000000042063994 get_tone_sar_dout + *fill* 0x00000000420639c7 0x1 + .text.get_fm_sar_dout + 0x00000000420639c8 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x22 (size before relaxing) + 0x00000000420639c8 get_fm_sar_dout + *fill* 0x00000000420639de 0x2 + .text.txtone_linear_pwr + 0x00000000420639e0 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x4b (size before relaxing) + 0x00000000420639e0 txtone_linear_pwr + *fill* 0x0000000042063a1b 0x1 + .text.get_power_db + 0x0000000042063a1c 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x42 (size before relaxing) + 0x0000000042063a1c get_power_db + *fill* 0x0000000042063a52 0x2 + .text.txiq_set_reg + 0x0000000042063a54 0x6e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x0000000042063a58 txiq_set_reg + *fill* 0x0000000042063ac2 0x2 + .text.rxiq_set_reg + 0x0000000042063ac4 0x8c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x90 (size before relaxing) + 0x0000000042063acc rxiq_set_reg + .text.start_tx_tone_step + 0x0000000042063b50 0x14d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x15d (size before relaxing) + 0x0000000042063b64 start_tx_tone_step + *fill* 0x0000000042063c9d 0x3 + .text.stop_tx_tone + 0x0000000042063ca0 0x80 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x98 (size before relaxing) + 0x0000000042063ca4 stop_tx_tone + .text.ram_set_noise_floor + 0x0000000042063d20 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x0000000042063d2c ram_set_noise_floor + *fill* 0x0000000042063d4a 0x2 + .text.phy_freq_correct + 0x0000000042063d4c 0x181 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x195 (size before relaxing) + 0x0000000042063d70 phy_freq_correct + *fill* 0x0000000042063ecd 0x3 + .text.force_txrx_off + 0x0000000042063ed0 0x67 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x83 (size before relaxing) + 0x0000000042063ed0 force_txrx_off + *fill* 0x0000000042063f37 0x1 + .text.restart_cal + 0x0000000042063f38 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x62 (size before relaxing) + 0x0000000042063f38 restart_cal + *fill* 0x0000000042063f96 0x2 + .text.write_rfpll_sdm + 0x0000000042063f98 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x66 (size before relaxing) + 0x0000000042063f98 write_rfpll_sdm + *fill* 0x0000000042063ffa 0x2 + .text.wait_rfpll_cal_end + 0x0000000042063ffc 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x52 (size before relaxing) + 0x0000000042064000 wait_rfpll_cal_end + *fill* 0x000000004206403e 0x2 + .text.rfpll_set_freq + 0x0000000042064040 0x65 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x0000000042064044 rfpll_set_freq + *fill* 0x00000000420640a5 0x3 + .text.rfpll_cap_init_cal + 0x00000000420640a8 0xc6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xd6 (size before relaxing) + 0x00000000420640a8 rfpll_cap_init_cal + *fill* 0x000000004206416e 0x2 + .text.set_rfpll_freq + 0x0000000042064170 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x80 (size before relaxing) + 0x0000000042064170 set_rfpll_freq + .text.set_rf_freq_offset + 0x00000000420641c4 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x1a (size before relaxing) + 0x00000000420641c4 set_rf_freq_offset + *fill* 0x00000000420641d7 0x1 + .text.set_channel_rfpll_freq + 0x00000000420641d8 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x5c (size before relaxing) + 0x00000000420641dc set_channel_rfpll_freq + .text.correct_rfpll_offset + 0x0000000042064220 0x99 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xa5 (size before relaxing) + 0x0000000042064228 correct_rfpll_offset + *fill* 0x00000000420642b9 0x3 + .text.chip_v7_set_chan_misc + 0x00000000420642bc 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x6a (size before relaxing) + 0x00000000420642c8 chip_v7_set_chan_misc + *fill* 0x0000000042064316 0x2 + .text.chip_v7_set_chan + 0x0000000042064318 0xbc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0xf0 (size before relaxing) + 0x0000000042064318 chip_v7_set_chan + .text.chip_v7_set_chan_offset + 0x00000000420643d4 0x6a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x82 (size before relaxing) + 0x00000000420643d4 chip_v7_set_chan_offset + *fill* 0x000000004206443e 0x2 + .text.chip_v7_set_chan_ana + 0x0000000042064440 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x28 (size before relaxing) + 0x0000000042064440 chip_v7_set_chan_ana + .text.set_chanfreq + 0x000000004206445c 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x2e (size before relaxing) + 0x000000004206445c set_chanfreq + *fill* 0x000000004206447e 0x2 + .text.gen_rx_gain_table + 0x0000000042064480 0x11a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x126 (size before relaxing) + 0x0000000042064490 gen_rx_gain_table + *fill* 0x000000004206459a 0x2 + .text.wr_rx_gain_mem + 0x000000004206459c 0x1ed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x201 (size before relaxing) + 0x00000000420645a4 wr_rx_gain_mem + *fill* 0x0000000042064789 0x3 + .text.set_rx_gain_param + 0x000000004206478c 0x174 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x1ac (size before relaxing) + 0x0000000042064794 set_rx_gain_param + .text.set_rx_gain_table + 0x0000000042064900 0x29e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x31e (size before relaxing) + 0x000000004206493c set_rx_gain_table + *fill* 0x0000000042064b9e 0x2 + .text.esp_recover_efuse_data + 0x0000000042064ba0 0xdd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + 0xed (size before relaxing) + 0x0000000042064ba8 esp_recover_efuse_data + *fill* 0x0000000042064c7d 0x3 + .text.wait_hw_freq_busy + 0x0000000042064c80 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x2a (size before relaxing) + 0x0000000042064c80 wait_hw_freq_busy + *fill* 0x0000000042064ca2 0x2 + .text.txpwr_offset + 0x0000000042064ca4 0x6f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x7f (size before relaxing) + 0x0000000042064cac txpwr_offset + *fill* 0x0000000042064d13 0x1 + .text.tsens_read_init_new + 0x0000000042064d14 0x62 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x76 (size before relaxing) + 0x0000000042064d20 tsens_read_init_new + *fill* 0x0000000042064d76 0x2 + .text.get_temp_init + 0x0000000042064d78 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x3d (size before relaxing) + 0x0000000042064d78 get_temp_init + *fill* 0x0000000042064dad 0x3 + .text.txdc_cal_v70 + 0x0000000042064db0 0x17f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x193 (size before relaxing) + 0x0000000042064dc0 txdc_cal_v70 + *fill* 0x0000000042064f2f 0x1 + .text.bt_txdc_cal + 0x0000000042064f30 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xbc (size before relaxing) + 0x0000000042064f34 bt_txdc_cal + .text.txdc_cal_init + 0x0000000042064fd8 0x7f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8b (size before relaxing) + 0x0000000042064fd8 txdc_cal_init + *fill* 0x0000000042065057 0x1 + .text.txiq_get_mis_pwr + 0x0000000042065058 0xa3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xcb (size before relaxing) + 0x000000004206505c txiq_get_mis_pwr + *fill* 0x00000000420650fb 0x1 + .text.txiq_cover + 0x00000000420650fc 0x129 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x155 (size before relaxing) + 0x00000000420650fc txiq_cover + *fill* 0x0000000042065225 0x3 + .text.get_power_atten + 0x0000000042065228 0xc4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xd8 (size before relaxing) + 0x000000004206522c get_power_atten + .text.rfcal_txiq + 0x00000000420652ec 0x14a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x18a (size before relaxing) + 0x00000000420652ec rfcal_txiq + *fill* 0x0000000042065436 0x2 + .text.bt_txiq_cal + 0x0000000042065438 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xaa (size before relaxing) + 0x000000004206543c bt_txiq_cal + *fill* 0x00000000420654c6 0x2 + .text.txiq_cal_init + 0x00000000420654c8 0x5f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x7b (size before relaxing) + 0x00000000420654d0 txiq_cal_init + *fill* 0x0000000042065527 0x1 + .text.pwdet_ref_code + 0x0000000042065528 0x71 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8d (size before relaxing) + 0x0000000042065534 pwdet_ref_code + *fill* 0x0000000042065599 0x3 + .text.pwdet_code_cal + 0x000000004206559c 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x42 (size before relaxing) + 0x000000004206559c pwdet_code_cal + *fill* 0x00000000420655c2 0x2 + .text.rfcal_txcap + 0x00000000420655c4 0x117 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x137 (size before relaxing) + 0x00000000420655cc rfcal_txcap + *fill* 0x00000000420656db 0x1 + .text.tx_cap_init + 0x00000000420656dc 0xbb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xe7 (size before relaxing) + 0x00000000420656e0 tx_cap_init + *fill* 0x0000000042065797 0x1 + .text.rfcal_pwrctrl + 0x0000000042065798 0x196 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x1be (size before relaxing) + 0x000000004206579c rfcal_pwrctrl + *fill* 0x000000004206592e 0x2 + .text.tx_pwctrl_init_cal + 0x0000000042065930 0xff E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x123 (size before relaxing) + 0x0000000042065930 tx_pwctrl_init_cal + *fill* 0x0000000042065a2f 0x1 + .text.tx_pwctrl_init + 0x0000000042065a30 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0xa6 (size before relaxing) + 0x0000000042065a3c tx_pwctrl_init + *fill* 0x0000000042065aa2 0x2 + .text.bt_tx_pwctrl_init + 0x0000000042065aa4 0x168 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x190 (size before relaxing) + 0x0000000042065ab0 bt_tx_pwctrl_init + .text.bt_txpwr_freq + 0x0000000042065c0c 0x76 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x8a (size before relaxing) + 0x0000000042065c0c bt_txpwr_freq + *fill* 0x0000000042065c82 0x2 + .text.bt_chan_pwr_interp + 0x0000000042065c84 0x72 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x76 (size before relaxing) + 0x0000000042065c84 bt_chan_pwr_interp + *fill* 0x0000000042065cf6 0x2 + .text.bt_tx_gain_init + 0x0000000042065cf8 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x47 (size before relaxing) + 0x0000000042065cf8 bt_tx_gain_init + *fill* 0x0000000042065d1b 0x1 + .text.tx_gain_set + 0x0000000042065d1c 0xfe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x11a (size before relaxing) + 0x0000000042065d30 tx_gain_set + *fill* 0x0000000042065e1a 0x2 + .text.get_rc_dout + 0x0000000042065e1c 0xfb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x103 (size before relaxing) + 0x0000000042065e1c get_rc_dout + *fill* 0x0000000042065f17 0x1 + .text.rc_cal 0x0000000042065f18 0x176 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x1a6 (size before relaxing) + 0x0000000042065f3c rc_cal + *fill* 0x000000004206608e 0x2 + .text.ram_set_chan_cal_interp + 0x0000000042066090 0x68 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x6c (size before relaxing) + 0x0000000042066090 ram_set_chan_cal_interp + .text.chan14_mic_cfg + 0x00000000420660f8 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x5e (size before relaxing) + 0x0000000042066100 chan14_mic_cfg + *fill* 0x0000000042066143 0x1 + .text.phy_i2c_init2 + 0x0000000042066144 0x264 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x26c (size before relaxing) + 0x0000000042066144 phy_i2c_init2 + .text.phy_get_i2c_data + 0x00000000420663a8 0x81 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x85 (size before relaxing) + 0x00000000420663a8 phy_get_i2c_data + *fill* 0x0000000042066429 0x3 + .text.i2c_bbpll_set + 0x000000004206642c 0xa5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0xb1 (size before relaxing) + 0x0000000042066430 i2c_bbpll_set + *fill* 0x00000000420664d1 0x3 + .text.bias_reg_set + 0x00000000420664d4 0xcc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0xd4 (size before relaxing) + 0x00000000420664d4 bias_reg_set + .text.rxiq_get_mis + 0x00000000420665a0 0x12e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x13a (size before relaxing) + 0x00000000420665bc rxiq_get_mis + *fill* 0x00000000420666ce 0x2 + .text.rxiq_cover_mg_mp + 0x00000000420666d0 0xcc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0xf8 (size before relaxing) + 0x00000000420666d0 rxiq_cover_mg_mp + .text.rfcal_rxiq + 0x000000004206679c 0x5e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x7e (size before relaxing) + 0x000000004206679c rfcal_rxiq + *fill* 0x00000000420667fa 0x2 + .text.get_rfcal_rxiq_data + 0x00000000420667fc 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0xfc (size before relaxing) + 0x0000000042066800 get_rfcal_rxiq_data + .text.pbus_rx_dco_cal + 0x00000000420668e4 0x354 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x37c (size before relaxing) + 0x00000000420668f8 pbus_rx_dco_cal + .text.rxdc_est_min + 0x0000000042066c38 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x5a (size before relaxing) + 0x0000000042066c38 rxdc_est_min + *fill* 0x0000000042066c8e 0x2 + .text.pbus_rx_dco_cal_1step + 0x0000000042066c90 0x566 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x58e (size before relaxing) + 0x0000000042066c90 pbus_rx_dco_cal_1step + *fill* 0x00000000420671f6 0x2 + .text.set_rx_gain_cal_iq + 0x00000000420671f8 0x2e9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x351 (size before relaxing) + 0x0000000042067210 set_rx_gain_cal_iq + *fill* 0x00000000420674e1 0x3 + .text.rx_chan_dc_sort + 0x00000000420674e4 0x125 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x129 (size before relaxing) + 0x00000000420674e4 rx_chan_dc_sort + *fill* 0x0000000042067609 0x3 + .text.set_rx_gain_cal_dc + 0x000000004206760c 0x27f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x2a7 (size before relaxing) + 0x0000000042067610 set_rx_gain_cal_dc + *fill* 0x000000004206788b 0x1 + .text 0x000000004206788c 0x128 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + 0x000000004206788c ceil + .text 0x00000000420679b4 0x13a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + 0x00000000420679b4 floor + *fill* 0x0000000042067aee 0x2 + .text 0x0000000042067af0 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + 0x0000000042067af0 __errno + *fill* 0x0000000042067afd 0x3 + .text 0x0000000042067b00 0x11e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x0000000042067b00 _fclose_r + 0x0000000042067c0c fclose + *fill* 0x0000000042067c1e 0x2 + .text 0x0000000042067c20 0x208 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x0000000042067c20 __sflush_r + 0x0000000042067d74 _fflush_r + 0x0000000042067e00 fflush + .text 0x0000000042067e28 0x253 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x0000000042067e68 _cleanup_r + 0x0000000042067eb0 __sfmoreglue + 0x0000000042067ee4 _cleanup + 0x0000000042067ef4 __sfp_lock_acquire + 0x0000000042067f04 __sfp_lock_release + 0x0000000042067f14 __sinit_lock_acquire + 0x0000000042067f24 __sinit_lock_release + 0x0000000042067f34 __sinit + 0x0000000042067f9c __sfp + 0x000000004206804c __fp_lock_all + 0x0000000042068064 __fp_unlock_all + *fill* 0x000000004206807b 0x1 + .text 0x000000004206807c 0xec e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x000000004206807c _fopen_r + 0x0000000042068154 fopen + .text 0x0000000042068168 0x31 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x0000000042068168 _fseek_r + 0x0000000042068180 fseek + *fill* 0x0000000042068199 0x3 + .text 0x000000004206819c 0x382 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x000000004206819c _fseeko_r + 0x0000000042068508 fseeko + *fill* 0x000000004206851e 0x2 + .text 0x0000000042068520 0x2b9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x0000000042068520 __sfvwrite_r + *fill* 0x00000000420687d9 0x3 + .text 0x00000000420687dc 0x103 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x00000000420687dc __swhatbuf_r + 0x0000000042068854 __smakebuf_r + *fill* 0x00000000420688df 0x1 + .text 0x00000000420688e0 0x78 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x00000000420688e0 _printf_r + 0x0000000042068918 printf + .text 0x0000000042068958 0xca e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x0000000042068958 _puts_r + 0x0000000042068a10 puts + *fill* 0x0000000042068a22 0x2 + .text 0x0000000042068a24 0xfc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x0000000042068a24 cleanup_glue + 0x0000000042068a3c _reclaim_reent + .text 0x0000000042068b20 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x0000000042068b3c __srefill_r + .text 0x0000000042068c64 0xd9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x0000000042068c64 _snprintf_r + 0x0000000042068ccc snprintf + *fill* 0x0000000042068d3d 0x3 + .text 0x0000000042068d40 0xa3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + 0x0000000042068d40 _sprintf_r + 0x0000000042068d88 sprintf + *fill* 0x0000000042068de3 0x1 + .text 0x0000000042068de4 0xbe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x0000000042068de4 __sread + 0x0000000042068e18 __seofread + 0x0000000042068e20 __swrite + 0x0000000042068e58 __sseek + 0x0000000042068e90 __sclose + *fill* 0x0000000042068ea2 0x2 + .text 0x0000000042068ea4 0x34ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x000000004206939c _svfprintf_r + *fill* 0x000000004206c38e 0x2 + .text 0x000000004206c390 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x000000004206c390 gettimeofday + .text 0x000000004206c3a8 0x36a5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x000000004206c8a0 _vfprintf_r + 0x000000004206f994 vfprintf + *fill* 0x000000004206fa4d 0x3 + .text 0x000000004206fa50 0x62 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x000000004206fa50 vprintf + 0x000000004206fa84 _vprintf_r + *fill* 0x000000004206fab2 0x2 + .text 0x000000004206fab4 0x81 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x000000004206fab4 _vsnprintf_r + 0x000000004206fb0c vsnprintf + *fill* 0x000000004206fb35 0x3 + .text 0x000000004206fb38 0xde e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x000000004206fb38 __swsetup_r + *fill* 0x000000004206fc16 0x2 + .text 0x000000004206fc18 0xe70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0x000000004206fd54 _dtoa_r + .text 0x0000000042070a88 0x2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x0000000042070a88 __localeconv_l + 0x0000000042070a94 _localeconv_r + 0x0000000042070aa4 localeconv + *fill* 0x0000000042070ab3 0x1 + .text 0x0000000042070ab4 0xa30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x0000000042070ab4 _Balloc + 0x0000000042070b40 _Bfree + 0x0000000042070b80 __multadd + 0x0000000042070c08 __s2b + 0x0000000042070ca8 __hi0bits + 0x0000000042070cf4 __lo0bits + 0x0000000042070d64 __i2b + 0x0000000042070d8c __multiply + 0x0000000042070f04 __pow5mult + 0x0000000042070fac __lshift + 0x00000000420710b0 __mcmp + 0x00000000420710ec __mdiff + 0x000000004207121c __ulp + 0x0000000042071268 __b2d + 0x0000000042071314 __d2b + 0x00000000420713c0 __ratio + 0x0000000042071414 _mprec_log10 + 0x0000000042071448 __copybits + 0x0000000042071494 __any_on + .text 0x00000000420714e4 0x62 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x00000000420714e4 frexp + *fill* 0x0000000042071546 0x2 + .text 0x0000000042071548 0x250a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x0000000042071a40 __ssprint_r + 0x0000000042071b4c _svfiprintf_r + *fill* 0x0000000042073a52 0x2 + .text 0x0000000042073a54 0x25ed e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0x0000000042073f4c __sprint_r + 0x0000000042073f70 _vfiprintf_r + 0x0000000042075f88 vfiprintf + *fill* 0x0000000042076041 0x3 + .text 0x0000000042076044 0x3e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x0000000042076044 _mbtowc_r + 0x0000000042076060 __ascii_mbtowc + *fill* 0x0000000042076082 0x2 + .text 0x0000000042076084 0x41 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x0000000042076084 _wctomb_r + 0x00000000420760a0 __ascii_wctomb + *fill* 0x00000000420760c5 0x3 + .text.mutexattr_check + 0x00000000420760c8 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x00000000420760d9 0x0 + *fill* 0x00000000420760d9 0x0 + *fill* 0x00000000420760d9 0x0 + *fill* 0x00000000420760d9 0x3 + .text.pthread_include_pthread_impl + 0x00000000420760dc 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000420760dc pthread_include_pthread_impl + *fill* 0x00000000420760e1 0x3 + .text.find_value + 0x00000000420760e4 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x00000000420760f8 0x0 + *fill* 0x00000000420760f8 0x0 + *fill* 0x00000000420760f8 0x0 + *fill* 0x00000000420760f8 0x0 + *fill* 0x00000000420760f8 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x00000000420760f8 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000420760f8 pthread_include_pthread_local_storage_impl + *fill* 0x00000000420760fd 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x0000000042076100 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x0000000042076100 pthread_include_pthread_rwlock_impl + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x0 + *fill* 0x0000000042076105 0x3 + .text.__cxx_eh_arena_size_get + 0x0000000042076108 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x0000000042076108 __cxx_eh_arena_size_get + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x0 + *fill* 0x000000004207610f 0x1 + .text.panic_get_address + 0x0000000042076110 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042076110 panic_get_address + *fill* 0x0000000042076117 0x1 + .text.panic_get_cause + 0x0000000042076118 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042076118 panic_get_cause + .text.panic_set_address + 0x0000000042076120 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042076120 panic_set_address + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x0 + *fill* 0x0000000042076127 0x1 + .text.heap_caps_match + 0x0000000042076128 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042076128 heap_caps_match + *fill* 0x0000000042076158 0x0 + *fill* 0x0000000042076158 0x0 + *fill* 0x0000000042076158 0x0 + *fill* 0x0000000042076158 0x0 + *fill* 0x0000000042076158 0x0 + *fill* 0x0000000042076158 0x0 + .text.s_compare_reserved_regions + 0x0000000042076158 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + *fill* 0x0000000042076164 0x0 + .text.esp_intr_get_cpu + 0x0000000042076164 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042076164 esp_intr_get_cpu + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + *fill* 0x0000000042076170 0x0 + .text.pthread_setcancelstate + 0x0000000042076170 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042076170 pthread_setcancelstate + *fill* 0x0000000042076177 0x1 + .text.newlib_include_pthread_impl + 0x0000000042076178 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042076178 newlib_include_pthread_impl + *fill* 0x000000004207617d 0x0 + *fill* 0x000000004207617d 0x0 + *fill* 0x000000004207617d 0x3 + .text.syscall_not_implemented + 0x0000000042076180 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042076180 _kill_r + 0x0000000042076180 _system_r + 0x0000000042076180 _isatty_r + 0x0000000042076180 _getpid_r + *fill* 0x000000004207618b 0x0 + *fill* 0x000000004207618b 0x1 + .text.newlib_include_syscalls_impl + 0x000000004207618c 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x000000004207618c newlib_include_syscalls_impl + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x0 + *fill* 0x0000000042076191 0x3 + .text.__cxa_guard_dummy + 0x0000000042076194 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x0000000042076194 __cxa_guard_dummy + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x0 + *fill* 0x0000000042076199 0x3 + .text.include_esp_phy_override + 0x000000004207619c 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x000000004207619c include_esp_phy_override + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x0 + *fill* 0x00000000420761a1 0x3 + .text.vfs_include_syscalls_impl + 0x00000000420761a4 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420761a4 vfs_include_syscalls_impl + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x0 + *fill* 0x00000000420761a9 0x3 + .text.usb_serial_jtag_close + 0x00000000420761ac 0x7 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x0 + *fill* 0x00000000420761b3 0x1 + .text.ModBusSlave_conn_err + 0x00000000420761b4 0x5 esp-idf/main/libmain.a(modbus-tcp.c.obj) + *fill* 0x00000000420761b9 0x0 + *fill* 0x00000000420761b9 0x0 + *fill* 0x00000000420761b9 0x0 + *fill* 0x00000000420761b9 0x3 + .text.example_pcnt_on_reach + 0x00000000420761bc 0xf esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x00000000420761cb 0x0 + *fill* 0x00000000420761cb 0x0 + *fill* 0x00000000420761cb 0x0 + *fill* 0x00000000420761cb 0x0 + *fill* 0x00000000420761cb 0x1 + .text.pid_calc_positional + 0x00000000420761cc 0x6d esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x0000000042076239 0x3 + .text.pid_calc_incremental + 0x000000004207623c 0x5c esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + *fill* 0x0000000042076298 0x0 + .text.esp_efuse_get_field_size + 0x0000000042076298 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000042076298 esp_efuse_get_field_size + *fill* 0x00000000420762be 0x0 + *fill* 0x00000000420762be 0x2 + .text.get_mask + 0x00000000420762c0 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x00000000420762de 0x2 + .text.get_reg_num + 0x00000000420762e0 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_starting_bit_num_in_reg + 0x0000000042076304 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000004207631e 0x2 + .text.get_count_bits_in_reg + 0x0000000042076320 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000004207634e 0x2 + .text.check_range_of_bits + 0x0000000042076350 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x0000000042076364 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000042076364 esp_efuse_utility_get_number_of_items + *fill* 0x000000004207637a 0x0 + *fill* 0x000000004207637a 0x0 + *fill* 0x000000004207637a 0x0 + *fill* 0x000000004207637a 0x2 + .text.esp_efuse_utility_check_errors + 0x000000004207637c 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000004207637c esp_efuse_utility_check_errors + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x0 + *fill* 0x0000000042076383 0x1 + .text.esp_pm_lock_delete + 0x0000000042076384 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + 0x0000000042076384 esp_pm_lock_delete + *fill* 0x000000004207638c 0x0 + *fill* 0x000000004207638c 0x0 + *fill* 0x000000004207638c 0x0 + *fill* 0x000000004207638c 0x0 + .text.esp_flash_chip_driver_initialized + 0x000000004207638c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000004207638c esp_flash_chip_driver_initialized + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + *fill* 0x000000004207639c 0x0 + .text.mpu_hal_set_region_access + 0x000000004207639c 0x4c esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x000000004207639c mpu_hal_set_region_access + *fill* 0x00000000420763e8 0x0 + *fill* 0x00000000420763e8 0x0 + *fill* 0x00000000420763e8 0x0 + *fill* 0x00000000420763e8 0x0 + *fill* 0x00000000420763e8 0x0 + *fill* 0x00000000420763e8 0x0 + .text.mcpwm_hal_deinit + 0x00000000420763e8 0x9 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x00000000420763e8 mcpwm_hal_deinit + *fill* 0x00000000420763f1 0x3 + .text.mcpwm_hal_operator_reset + 0x00000000420763f4 0x161 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x00000000420763f4 mcpwm_hal_operator_reset + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x0 + *fill* 0x0000000042076555 0x3 + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000042076558 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000042076558 int nvs::NVSHandle::set_item(char const*, signed char) + *fill* 0x0000000042076574 0x0 + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000042076574 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000042076574 int nvs::NVSHandle::set_item(char const*, unsigned char) + *fill* 0x0000000042076590 0x0 + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000042076590 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000042076590 int nvs::NVSHandle::set_item(char const*, unsigned short) + *fill* 0x00000000420765ac 0x0 + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00000000420765ac 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000420765ac int nvs::NVSHandle::set_item(char const*, unsigned long) + *fill* 0x00000000420765c6 0x0 + *fill* 0x00000000420765c6 0x2 + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000000420765c8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000420765c8 int nvs::NVSHandle::get_item(char const*, signed char&) + *fill* 0x00000000420765e0 0x0 + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000000420765e0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000420765e0 int nvs::NVSHandle::get_item(char const*, unsigned char&) + *fill* 0x00000000420765f8 0x0 + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00000000420765f8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000420765f8 int nvs::NVSHandle::get_item(char const*, unsigned short&) + *fill* 0x0000000042076610 0x0 + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x0000000042076610 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000042076610 int nvs::NVSHandle::get_item(char const*, unsigned long&) + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + *fill* 0x0000000042076628 0x0 + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x0000000042076628 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x0000000042076628 nvs::NVSHandleSimple::get_partition_name() const + *fill* 0x000000004207663a 0x0 + *fill* 0x000000004207663a 0x2 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x000000004207663c 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000004207663c nvs::NVSPartition::get_partition_name() + *fill* 0x0000000042076646 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x0000000042076648 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000042076648 nvs::NVSPartition::get_address() + *fill* 0x0000000042076651 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x0000000042076654 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x0000000042076654 nvs::NVSPartition::get_size() + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x0 + *fill* 0x000000004207665d 0x3 + .text._ZN3nvs8HashListC2Ev + 0x0000000042076660 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000042076660 nvs::HashList::HashList() + 0x0000000042076660 nvs::HashList::HashList() + *fill* 0x000000004207666d 0x0 + *fill* 0x000000004207666d 0x0 + *fill* 0x000000004207666d 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x0000000042076670 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000042076670 nvs::HashList::HashListBlock::HashListBlock() + 0x0000000042076670 nvs::HashList::HashListBlock::HashListBlock() + *fill* 0x0000000042076695 0x0 + *fill* 0x0000000042076695 0x0 + *fill* 0x0000000042076695 0x0 + *fill* 0x0000000042076695 0x0 + *fill* 0x0000000042076695 0x3 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x0000000042076698 0x55 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042076698 nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) + *fill* 0x00000000420766ed 0x0 + *fill* 0x00000000420766ed 0x3 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000420766f0 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000420766f0 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x0000000042076764 0xa4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042076764 nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x0000000042076808 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x0000000042076808 nvs::Page::alterPageState(nvs::Page::PageState) + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x000000004207682c 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x000000004207682c nvs::Page::readEntry(unsigned int, nvs::Item&) const + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x0 + *fill* 0x0000000042076856 0x2 + .text.mem_init + 0x0000000042076858 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000042076858 mem_init + *fill* 0x000000004207685d 0x3 + .text.mem_trim + 0x0000000042076860 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000042076860 mem_trim + *fill* 0x0000000042076865 0x0 + *fill* 0x0000000042076865 0x0 + *fill* 0x0000000042076865 0x0 + *fill* 0x0000000042076865 0x3 + .text.pbuf_init_alloced_pbuf + 0x0000000042076868 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x0000000042076887 0x1 + .text.pbuf_skip_const + 0x0000000042076888 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x0 + *fill* 0x00000000420768a7 0x1 + .text.pbuf_clen + 0x00000000420768a8 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000420768a8 pbuf_clen + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x0 + *fill* 0x00000000420768be 0x2 + .text.tcp_arg 0x00000000420768c0 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420768c0 tcp_arg + *fill* 0x00000000420768ca 0x0 + *fill* 0x00000000420768ca 0x0 + *fill* 0x00000000420768ca 0x0 + *fill* 0x00000000420768ca 0x2 + .text.tcp_accept + 0x00000000420768cc 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000420768cc tcp_accept + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x0 + *fill* 0x00000000420768db 0x1 + .text.dhcp_set_state + 0x00000000420768dc 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + *fill* 0x00000000420768f4 0x0 + .text.dhcp_supplied_address + 0x00000000420768f4 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000420768f4 dhcp_supplied_address + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + *fill* 0x0000000042076938 0x0 + .text.ip4_addr_isbroadcast_u32 + 0x0000000042076938 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x0000000042076938 ip4_addr_isbroadcast_u32 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + *fill* 0x0000000042076980 0x0 + .text.mld6_remove_group + 0x0000000042076980 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x00000000420769b5 0x0 + *fill* 0x00000000420769b5 0x0 + *fill* 0x00000000420769b5 0x0 + *fill* 0x00000000420769b5 0x3 + .text.mld6_lookfor_group + 0x00000000420769b8 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000420769b8 mld6_lookfor_group + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x0 + *fill* 0x00000000420769ed 0x3 + .text.nd6_restart_netif + 0x00000000420769f0 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000420769f0 nd6_restart_netif + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x0 + *fill* 0x00000000420769fa 0x2 + .text.lwip_htons + 0x00000000420769fc 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000420769fc lwip_htons + *fill* 0x0000000042076a10 0x0 + .text.dns_init + 0x0000000042076a10 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000042076a10 dns_init + *fill* 0x0000000042076a15 0x0 + *fill* 0x0000000042076a15 0x3 + .text.lwip_standard_chksum + 0x0000000042076a18 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x0000000042076a18 lwip_standard_chksum + *fill* 0x0000000042076a81 0x0 + *fill* 0x0000000042076a81 0x0 + *fill* 0x0000000042076a81 0x0 + *fill* 0x0000000042076a81 0x0 + *fill* 0x0000000042076a81 0x0 + *fill* 0x0000000042076a81 0x3 + .text.memp_init + 0x0000000042076a84 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x0000000042076a84 memp_init + .text.netif_null_output_ip6 + 0x0000000042076a98 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_null_output_ip4 + 0x0000000042076aa0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + *fill* 0x0000000042076aa8 0x0 + .text.udp_recv + 0x0000000042076aa8 0xe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x0000000042076aa8 udp_recv + *fill* 0x0000000042076ab6 0x0 + *fill* 0x0000000042076ab6 0x0 + *fill* 0x0000000042076ab6 0x0 + *fill* 0x0000000042076ab6 0x0 + *fill* 0x0000000042076ab6 0x0 + *fill* 0x0000000042076ab6 0x2 + .text.igmp_remove_group + 0x0000000042076ab8 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x0 + *fill* 0x0000000042076ade 0x2 + .text.igmp_lookfor_group + 0x0000000042076ae0 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000042076ae0 igmp_lookfor_group + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x0 + *fill* 0x0000000042076af7 0x1 + .text.esp_netif_reset_ip_info + 0x0000000042076af8 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x0 + *fill* 0x0000000042076b0d 0x3 + .text.esp_netif_get_io_driver + 0x0000000042076b10 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b10 esp_netif_get_io_driver + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x0 + *fill* 0x0000000042076b17 0x1 + .text.esp_netif_free_rx_buffer + 0x0000000042076b18 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b18 esp_netif_free_rx_buffer + *fill* 0x0000000042076b26 0x2 + .text.esp_netif_transmit_wrap + 0x0000000042076b28 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b28 esp_netif_transmit_wrap + .text.esp_netif_receive + 0x0000000042076b3c 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b3c esp_netif_receive + .text.esp_netif_dhcpc_get_status + 0x0000000042076b50 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b50 esp_netif_dhcpc_get_status + *fill* 0x0000000042076b71 0x0 + *fill* 0x0000000042076b71 0x3 + .text.esp_netif_is_netif_up + 0x0000000042076b74 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b74 esp_netif_is_netif_up + *fill* 0x0000000042076b90 0x0 + *fill* 0x0000000042076b90 0x0 + *fill* 0x0000000042076b90 0x0 + .text.esp_netif_is_valid_static_ip + 0x0000000042076b90 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076b90 esp_netif_is_valid_static_ip + .text.esp_netif_get_flags + 0x0000000042076ba8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076ba8 esp_netif_get_flags + .text.esp_netif_get_ifkey + 0x0000000042076bb0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076bb0 esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x0000000042076bb8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076bb8 esp_netif_get_desc + .text.esp_netif_get_event_id + 0x0000000042076bc0 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000042076bc0 esp_netif_get_event_id + *fill* 0x0000000042076bd9 0x0 + *fill* 0x0000000042076bd9 0x0 + *fill* 0x0000000042076bd9 0x3 + .text.esp_aes_gmac + 0x0000000042076bdc 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x0 + *fill* 0x0000000042076be3 0x1 + .text.rc4_skip + 0x0000000042076be4 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x0000000042076be4 rc4_skip + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x0 + *fill* 0x0000000042076c97 0x1 + .text.hex2num 0x0000000042076c98 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.inc_byte_array + 0x0000000042076cd0 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000042076cd0 inc_byte_array + *fill* 0x0000000042076cee 0x0 + *fill* 0x0000000042076cee 0x0 + *fill* 0x0000000042076cee 0x0 + *fill* 0x0000000042076cee 0x2 + .text.int_array_len + 0x0000000042076cf0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x0000000042076cf0 int_array_len + *fill* 0x0000000042076d08 0x0 + .text.xor_aes_block + 0x0000000042076d08 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x0 + *fill* 0x0000000042076d31 0x3 + .text.ieee80211_ftm_attach + 0x0000000042076d34 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x0000000042076d34 ieee80211_ftm_attach + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x0 + *fill* 0x0000000042076d39 0x3 + .text.esp_wifi_is_if_ready_when_started + 0x0000000042076d3c 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000042076d3c esp_wifi_is_if_ready_when_started + *fill* 0x0000000042076d4c 0x0 + *fill* 0x0000000042076d4c 0x0 + *fill* 0x0000000042076d4c 0x0 + .text.clear_intr_wrapper + 0x0000000042076d4c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d51 0x3 + .text.task_get_max_priority_wrapper + 0x0000000042076d54 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d5b 0x1 + .text.coex_init_wrapper + 0x0000000042076d5c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d63 0x1 + .text.coex_deinit_wrapper + 0x0000000042076d64 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d69 0x3 + .text.coex_enable_wrapper + 0x0000000042076d6c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d73 0x1 + .text.coex_disable_wrapper + 0x0000000042076d74 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d79 0x3 + .text.coex_condition_set_wrapper + 0x0000000042076d7c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d81 0x3 + .text.coex_wifi_request_wrapper + 0x0000000042076d84 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d8b 0x1 + .text.coex_wifi_channel_set_wrapper + 0x0000000042076d8c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d93 0x1 + .text.coex_pti_get_wrapper + 0x0000000042076d94 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076d9b 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x0000000042076d9c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076da1 0x3 + .text.coex_schm_status_bit_set_wrapper + 0x0000000042076da4 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076da9 0x3 + .text.coex_schm_interval_get_wrapper + 0x0000000042076dac 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076db3 0x1 + .text.coex_schm_curr_period_get_wrapper + 0x0000000042076db4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076dbb 0x1 + .text.coex_schm_curr_phase_get_wrapper + 0x0000000042076dbc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076dc3 0x1 + .text.coex_schm_curr_phase_idx_set_wrapper + 0x0000000042076dc4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076dcb 0x1 + .text.coex_schm_curr_phase_idx_get_wrapper + 0x0000000042076dcc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076dd3 0x1 + .text.coex_register_start_cb_wrapper + 0x0000000042076dd4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x0 + *fill* 0x0000000042076ddb 0x1 + .text.mbedtls_mpi_init + 0x0000000042076ddc 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042076ddc mbedtls_mpi_init + *fill* 0x0000000042076deb 0x0 + *fill* 0x0000000042076deb 0x0 + *fill* 0x0000000042076deb 0x0 + *fill* 0x0000000042076deb 0x0 + *fill* 0x0000000042076deb 0x1 + .text.mbedtls_mpi_get_bit + 0x0000000042076dec 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042076dec mbedtls_mpi_get_bit + *fill* 0x0000000042076e11 0x0 + *fill* 0x0000000042076e11 0x3 + .text.mbedtls_mpi_lsb + 0x0000000042076e14 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042076e14 mbedtls_mpi_lsb + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + *fill* 0x0000000042076e44 0x0 + .text.mpi_bigendian_to_host + 0x0000000042076e44 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x0 + *fill* 0x0000000042076e5a 0x2 + .text.mbedtls_mpi_core_add + 0x0000000042076e5c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042076e5c mbedtls_mpi_core_add + .text.mbedtls_mpi_core_sub + 0x0000000042076e98 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042076e98 mbedtls_mpi_core_sub + *fill* 0x0000000042076ed7 0x1 + .text.mbedtls_mpi_core_mla + 0x0000000042076ed8 0x18f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042076ed8 mbedtls_mpi_core_mla + *fill* 0x0000000042077067 0x0 + *fill* 0x0000000042077067 0x0 + *fill* 0x0000000042077067 0x1 + .text.mbedtls_mpi_core_sub_int + 0x0000000042077068 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x0000000042077068 mbedtls_mpi_core_sub_int + .text.add_pkcs_padding + 0x0000000042077094 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x00000000420770b1 0x0 + *fill* 0x00000000420770b1 0x3 + .text.add_one_and_zeros_padding + 0x00000000420770b4 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x00000000420770db 0x0 + *fill* 0x00000000420770db 0x1 + .text.add_zeros_and_len_padding + 0x00000000420770dc 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_padding + 0x0000000042077104 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + *fill* 0x0000000042077118 0x0 + .text.mbedtls_ct_size_gt + 0x0000000042077118 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x0000000042077123 0x1 + .text.mbedtls_ct_cond_select_sign + 0x0000000042077124 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x000000004207713a 0x2 + .text.mbedtls_ct_memcmp + 0x000000004207713c 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004207713c mbedtls_ct_memcmp + *fill* 0x000000004207716b 0x1 + .text.mbedtls_ct_uint_mask + 0x000000004207716c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004207716c mbedtls_ct_uint_mask + *fill* 0x000000004207717a 0x2 + .text.mbedtls_ct_mpi_uint_mask + 0x000000004207717c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004207717c mbedtls_ct_mpi_uint_mask + *fill* 0x000000004207718a 0x2 + .text.mbedtls_ct_mpi_uint_lt + 0x000000004207718c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x000000004207718c mbedtls_ct_mpi_uint_lt + *fill* 0x00000000420771a3 0x0 + *fill* 0x00000000420771a3 0x1 + .text.mbedtls_ct_mpi_uint_cond_assign + 0x00000000420771a4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x00000000420771a4 mbedtls_ct_mpi_uint_cond_assign + *fill* 0x00000000420771d2 0x0 + *fill* 0x00000000420771d2 0x0 + *fill* 0x00000000420771d2 0x2 + .text.cmac_pad + 0x00000000420771d4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x0000000042077208 0x0 + *fill* 0x0000000042077208 0x0 + *fill* 0x0000000042077208 0x0 + .text.mbedtls_md_init + 0x0000000042077208 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000042077208 mbedtls_md_init + *fill* 0x0000000042077233 0x0 + *fill* 0x0000000042077233 0x0 + *fill* 0x0000000042077233 0x0 + *fill* 0x0000000042077233 0x0 + *fill* 0x0000000042077233 0x1 + .text.mbedtls_md_get_size + 0x0000000042077234 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000042077234 mbedtls_md_get_size + *fill* 0x0000000042077244 0x0 + *fill* 0x0000000042077244 0x0 + *fill* 0x0000000042077244 0x0 + *fill* 0x0000000042077244 0x0 + *fill* 0x0000000042077244 0x0 + *fill* 0x0000000042077244 0x0 + .text.esp_aes_xts_decode_keys + 0x0000000042077244 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x0000000042077269 0x3 + .text.esp_gf128mul_x_ble + 0x000000004207726c 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x0000000042077374 0x0 + *fill* 0x0000000042077374 0x0 + *fill* 0x0000000042077374 0x0 + *fill* 0x0000000042077374 0x0 + *fill* 0x0000000042077374 0x0 + .text.valid_key_length + 0x0000000042077374 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x0000000042077374 valid_key_length + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x0 + *fill* 0x0000000042077391 0x3 + .text.esp_mpi_hardware_words + 0x0000000042077394 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000042077394 esp_mpi_hardware_words + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x0 + *fill* 0x0000000042077399 0x3 + .text.mbedtls_zeroize + 0x000000004207739c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x00000000420773b5 0x0 + *fill* 0x00000000420773b5 0x0 + *fill* 0x00000000420773b5 0x0 + *fill* 0x00000000420773b5 0x0 + *fill* 0x00000000420773b5 0x3 + .text.mbedtls_zeroize + 0x00000000420773b8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x00000000420773d1 0x0 + *fill* 0x00000000420773d1 0x0 + *fill* 0x00000000420773d1 0x0 + *fill* 0x00000000420773d1 0x0 + *fill* 0x00000000420773d1 0x0 + *fill* 0x00000000420773d1 0x3 + .text.mbedtls_zeroize + 0x00000000420773d4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x00000000420773ed 0x0 + *fill* 0x00000000420773ed 0x0 + *fill* 0x00000000420773ed 0x0 + *fill* 0x00000000420773ed 0x0 + *fill* 0x00000000420773ed 0x0 + *fill* 0x00000000420773ed 0x3 + .text.xor_data + 0x00000000420773f0 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x0 + *fill* 0x0000000042077411 0x3 + .text.aria_sl 0x0000000042077414 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x00000000420774f5 0x0 + *fill* 0x00000000420774f5 0x3 + .text.aria_rot128 + 0x00000000420774f8 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x0 + *fill* 0x000000004207757a 0x2 + .text.mbedtls_asn1_get_len + 0x000000004207757c 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004207757c mbedtls_asn1_get_len + *fill* 0x0000000042077675 0x0 + *fill* 0x0000000042077675 0x0 + *fill* 0x0000000042077675 0x0 + *fill* 0x0000000042077675 0x0 + *fill* 0x0000000042077675 0x3 + .text.esp_aes_dma_done + 0x0000000042077678 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x0000000042077678 esp_aes_dma_done + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x0 + *fill* 0x000000004207768d 0x3 + .text.ieee80211_crypto_attach + 0x0000000042077690 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x0000000042077690 ieee80211_crypto_attach + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x0 + *fill* 0x0000000042077695 0x3 + .text.ieee80211_ftm_detach + 0x0000000042077698 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x0000000042077698 ieee80211_ftm_detach + *fill* 0x000000004207769f 0x1 + .text.ieee80211_hdrsize + 0x00000000420776a0 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x0 + *fill* 0x00000000420776c9 0x3 + .text.ieee80211_is_support_rate + 0x00000000420776cc 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x00000000420776cc ieee80211_is_support_rate + *fill* 0x0000000042077714 0x0 + *fill* 0x0000000042077714 0x0 + .text.ieee80211_is_lr_only + 0x0000000042077714 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x0000000042077714 ieee80211_is_lr_only + *fill* 0x000000004207772c 0x0 + *fill* 0x000000004207772c 0x0 + *fill* 0x000000004207772c 0x0 + *fill* 0x000000004207772c 0x0 + *fill* 0x000000004207772c 0x0 + *fill* 0x000000004207772c 0x0 + .text.ieee80211_setup_rateset + 0x000000004207772c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x000000004207772c ieee80211_setup_rateset + *fill* 0x0000000042077733 0x0 + *fill* 0x0000000042077733 0x0 + *fill* 0x0000000042077733 0x0 + *fill* 0x0000000042077733 0x0 + *fill* 0x0000000042077733 0x1 + .text.adc2_wifi_acquire + 0x0000000042077734 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x0000000042077734 adc2_wifi_acquire + *fill* 0x000000004207773b 0x1 + .text.adc2_wifi_release + 0x000000004207773c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x000000004207773c adc2_wifi_release + *fill* 0x0000000042077743 0x1 + .text.wifi_station_get_reconnect_policy + 0x0000000042077744 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x0000000042077744 wifi_station_get_reconnect_policy + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x0 + *fill* 0x000000004207774b 0x1 + .text.ieee80211_is_bufferable_mmpdu + 0x000000004207774c 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x000000004207774c ieee80211_is_bufferable_mmpdu + .text.ieee80211_set_shortslottime + 0x00000000420777a4 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x00000000420777a4 ieee80211_set_shortslottime + *fill* 0x00000000420777bc 0x0 + *fill* 0x00000000420777bc 0x0 + .text.ieee80211_find_ie + 0x00000000420777bc 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x00000000420777bc ieee80211_find_ie + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + *fill* 0x00000000420777ec 0x0 + .text.scan_check_hidden + 0x00000000420777ec 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x00000000420777ec scan_check_hidden + *fill* 0x0000000042077812 0x0 + *fill* 0x0000000042077812 0x0 + *fill* 0x0000000042077812 0x0 + *fill* 0x0000000042077812 0x0 + *fill* 0x0000000042077812 0x0 + *fill* 0x0000000042077812 0x2 + .text.scan_fill_wps_scan_ie + 0x0000000042077814 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x0000000042077814 scan_fill_wps_scan_ie + *fill* 0x000000004207783c 0x0 + *fill* 0x000000004207783c 0x0 + .text.ieee80211_hdrsize + 0x000000004207783c 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x0 + *fill* 0x0000000042077865 0x3 + .text.cnx_rc_update_age + 0x0000000042077868 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x0000000042077868 cnx_rc_update_age + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x0 + *fill* 0x000000004207787e 0x2 + .text.send_inval + 0x0000000042077880 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + *fill* 0x0000000042077887 0x1 + .text.recv_inval + 0x0000000042077888 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x0 + *fill* 0x000000004207788f 0x1 + .text.wep_decap + 0x0000000042077890 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x0000000042077890 wep_decap + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x0 + *fill* 0x00000000420778b3 0x1 + .text.pm_enable_dream_timer + 0x00000000420778b4 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000420778b4 pm_enable_dream_timer + *fill* 0x00000000420778b9 0x0 + *fill* 0x00000000420778b9 0x0 + *fill* 0x00000000420778b9 0x3 + .text.pm_pend_noise_check + 0x00000000420778bc 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000420778bc pm_pend_noise_check + *fill* 0x00000000420778c1 0x3 + .text.pm_noise_check_process + 0x00000000420778c4 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000420778c4 pm_noise_check_process + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x0 + *fill* 0x00000000420778c9 0x3 + .text.pm_dream_timeout_process + 0x00000000420778cc 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000420778cc pm_dream_timeout_process + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x0 + *fill* 0x00000000420778d1 0x3 + .text.pm_force_scan_unlock + 0x00000000420778d4 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x00000000420778d4 pm_force_scan_unlock + *fill* 0x00000000420778d9 0x0 + *fill* 0x00000000420778d9 0x3 + .text.fpm_allow_tx + 0x00000000420778dc 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + 0x00000000420778dc fpm_allow_tx + *fill* 0x00000000420778e3 0x1 + .text.fpm_do_wakeup + 0x00000000420778e4 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + 0x00000000420778e4 fpm_do_wakeup + *fill* 0x00000000420778e9 0x3 + .text.getle32 0x00000000420778ec 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x00000000420778ec getle32 + *fill* 0x000000004207790f 0x1 + .text.putle32 0x0000000042077910 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042077910 putle32 + *fill* 0x000000004207792a 0x0 + *fill* 0x000000004207792a 0x0 + *fill* 0x000000004207792a 0x2 + .text.ppCheckIsConnTraffic + 0x000000004207792c 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x000000004207792c ppCheckIsConnTraffic + *fill* 0x0000000042077976 0x0 + *fill* 0x0000000042077976 0x2 + .text.ppSetInterface + 0x0000000042077978 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042077978 ppSetInterface + *fill* 0x000000004207797d 0x3 + .text.pp_gettid + 0x0000000042077980 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x0000000042077980 pp_gettid + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x0 + *fill* 0x00000000420779ae 0x2 + .text.dbg_lmac_init + 0x00000000420779b0 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x00000000420779b0 dbg_lmac_init + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x0 + *fill* 0x00000000420779b5 0x3 + .text.RC_SetBasicRate + 0x00000000420779b8 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x00000000420779b8 RC_SetBasicRate + *fill* 0x00000000420779bf 0x0 + *fill* 0x00000000420779bf 0x1 + .text.rc11NRate2SchedIdx + 0x00000000420779c0 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .text.rcLoRaRate2SchedIdx + 0x0000000042077a0c 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x0000000042077a0c rcLoRaRate2SchedIdx + .text.rcBuildIndex + 0x0000000042077a28 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + *fill* 0x0000000042077a3f 0x0 + *fill* 0x0000000042077a3f 0x1 + .text.rcGetDefaultHigestRateIdx + 0x0000000042077a40 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x0000000042077a40 rcGetDefaultHigestRateIdx + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + *fill* 0x0000000042077a58 0x0 + .text.wdev_csi_hw_bug_check + 0x0000000042077a58 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x0000000042077a58 wdev_csi_hw_bug_check + *fill* 0x0000000042077a5f 0x0 + *fill* 0x0000000042077a5f 0x0 + *fill* 0x0000000042077a5f 0x0 + *fill* 0x0000000042077a5f 0x0 + *fill* 0x0000000042077a5f 0x1 + .text.wDev_SetAuthed + 0x0000000042077a60 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x0000000042077a60 wDev_SetAuthed + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x0 + *fill* 0x0000000042077a65 0x3 + .text.hal_mac_ftm_get_t3 + 0x0000000042077a68 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x0000000042077a68 hal_mac_ftm_get_t3 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x0 + *fill* 0x0000000042077aa2 0x2 + .text.esp_dport_access_read_buffer + 0x0000000042077aa4 0x1c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x0000000042077aa4 esp_dport_access_read_buffer + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + *fill* 0x0000000042077ac0 0x0 + .text.esp_phy_update_country_info + 0x0000000042077ac0 0x7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x0000000042077ac0 esp_phy_update_country_info + *fill* 0x0000000042077ac7 0x1 + .text.get_ip_info + 0x0000000042077ac8 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042077afe 0x2 + .text.node_insert_to_list + 0x0000000042077b00 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042077b3b 0x1 + .text.add_msg_type + 0x0000000042077b3c 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042077b50 0x0 + .text.add_end 0x0000000042077b50 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042077b5c 0x0 + *fill* 0x0000000042077b5c 0x0 + *fill* 0x0000000042077b5c 0x0 + .text.dhcps_poll_set + 0x0000000042077b5c 0x11e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000042077c7a 0x0 + *fill* 0x0000000042077c7a 0x0 + *fill* 0x0000000042077c7a 0x2 + .text.dhcps_set_option_info + 0x0000000042077c7c 0xac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042077c7c dhcps_set_option_info + .text.node_remove_from_list + 0x0000000042077d28 0x35 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042077d28 node_remove_from_list + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x0 + *fill* 0x0000000042077d5d 0x3 + .text.dhcps_set_new_lease_cb + 0x0000000042077d60 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000042077d60 dhcps_set_new_lease_cb + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x0 + *fill* 0x0000000042077d75 0x3 + .text.low_level_init + 0x0000000042077d78 0x20 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + *fill* 0x0000000042077d98 0x0 + *fill* 0x0000000042077d98 0x0 + *fill* 0x0000000042077d98 0x0 + *fill* 0x0000000042077d98 0x0 + .text.wpa_ap_get_peer_spp_msg + 0x0000000042077d98 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x0000000042077d98 wpa_ap_get_peer_spp_msg + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x0 + *fill* 0x0000000042077dae 0x2 + .text.supplicant_sta_conn_handler + 0x0000000042077db0 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000042077db0 supplicant_sta_conn_handler + *fill* 0x0000000042077db5 0x3 + .text.supplicant_sta_disconn_handler + 0x0000000042077db8 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000042077db8 supplicant_sta_disconn_handler + *fill* 0x0000000042077dbd 0x3 + .text.esp_set_scan_ie + 0x0000000042077dc0 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x0000000042077dc0 esp_set_scan_ie + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x0 + *fill* 0x0000000042077dc5 0x3 + .text.crypto_ec_get_prime + 0x0000000042077dc8 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042077dc8 crypto_ec_get_prime + *fill* 0x0000000042077dcf 0x1 + .text.crypto_ec_get_order + 0x0000000042077dd0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042077dd0 crypto_ec_get_order + .text.crypto_ec_get_b + 0x0000000042077dd8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042077dd8 crypto_ec_get_b + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + *fill* 0x0000000042077de0 0x0 + .text.crypto_mbedtls_get_grp_id + 0x0000000042077de0 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x0000000042077de0 crypto_mbedtls_get_grp_id + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x0 + *fill* 0x0000000042077e06 0x2 + .text.wpa_request_new_ptk + 0x0000000042077e08 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042077e1a 0x2 + .text.sm_WPA_PTK_DISCONNECTED_Enter + 0x0000000042077e1c 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter + 0x0000000042077e40 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.ieee80211w_kde_len + 0x0000000042077e64 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_GROUP_IDLE_Enter + 0x0000000042077e80 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter + 0x0000000042077eb4 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042077ef2 0x2 + .text.sm_WPA_PTK_GROUP_KEYERROR_Enter + 0x0000000042077ef4 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x0 + *fill* 0x0000000042077f2b 0x1 + .text.wpa_auth_uses_mfp + 0x0000000042077f2c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000042077f2c wpa_auth_uses_mfp + *fill* 0x0000000042077f3e 0x2 + .text.ap_sta_list_del + 0x0000000042077f40 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + *fill* 0x0000000042077f62 0x0 + *fill* 0x0000000042077f62 0x2 + .text.ap_sta_hash_add + 0x0000000042077f64 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x0000000042077f64 ap_sta_hash_add + *fill* 0x0000000042077f7a 0x0 + *fill* 0x0000000042077f7a 0x0 + *fill* 0x0000000042077f7a 0x2 + .text.buf_shift_right + 0x0000000042077f7c 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042077fba 0x2 + .text.sae_modp_group_require_masking + 0x0000000042077fbc 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042077fcb 0x1 + .text.sswu_curve_param + 0x0000000042077fcc 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042077fe1 0x3 + .text.sae_is_password_id_elem + 0x0000000042077fe4 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000042078026 0x2 + .text.sae_is_rejected_groups_elem + 0x0000000042078028 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_is_token_container_elem + 0x000000004207806c 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x00000000420780ae 0x2 + .text.sae_parse_commit_token + 0x00000000420780b0 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x0 + *fill* 0x00000000420780fa 0x2 + .text.sae_ecc_prime_len_2_hash_len + 0x00000000420780fc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x00000000420780fc sae_ecc_prime_len_2_hash_len + .text.sae_ffc_prime_len_2_hash_len + 0x0000000042078118 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000042078118 sae_ffc_prime_len_2_hash_len + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x0 + *fill* 0x0000000042078135 0x3 + .text.wpa_cipher_key_len + 0x0000000042078138 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042078138 wpa_cipher_key_len + *fill* 0x0000000042078175 0x0 + *fill* 0x0000000042078175 0x3 + .text.wpa_cipher_to_alg + 0x0000000042078178 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042078178 wpa_cipher_to_alg + *fill* 0x00000000420781a6 0x2 + .text.wpa_cipher_valid_pairwise + 0x00000000420781a8 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x00000000420781a8 wpa_cipher_valid_pairwise + *fill* 0x00000000420781ee 0x0 + *fill* 0x00000000420781ee 0x2 + .text.rsn_cipher_put_suites + 0x00000000420781f0 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x00000000420781f0 rsn_cipher_put_suites + *fill* 0x000000004207824e 0x2 + .text.wpa_cipher_put_suites + 0x0000000042078250 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000042078250 wpa_cipher_put_suites + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x0 + *fill* 0x00000000420782aa 0x2 + .text.cipher_type_map_public_to_supp + 0x00000000420782ac 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420782ac cipher_type_map_public_to_supp + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x0 + *fill* 0x00000000420782fa 0x2 + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x00000000420782fc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000420782fc wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x0 + *fill* 0x000000004207830d 0x3 + .text.wpabuf_put + 0x0000000042078310 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000042078310 wpabuf_put + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x0 + *fill* 0x000000004207831f 0x1 + .text.wpa_sm_mlme_setprotection + 0x0000000042078320 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000042078320 wpa_sm_mlme_setprotection + *fill* 0x0000000042078327 0x1 + .text.wpa_sm_disassociate + 0x0000000042078328 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000042078328 wpa_sm_disassociate + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x0 + *fill* 0x000000004207832d 0x3 + .text.pmksa_cache_get_current + 0x0000000042078330 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000042078330 pmksa_cache_get_current + *fill* 0x000000004207833a 0x2 + .text.pmksa_cache_clear_current + 0x000000004207833c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x000000004207833c pmksa_cache_clear_current + *fill* 0x0000000042078348 0x0 + *fill* 0x0000000042078348 0x0 + .text.mbedtls_asn1_write_tag + 0x0000000042078348 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000042078348 mbedtls_asn1_write_tag + *fill* 0x0000000042078369 0x3 + .text.good_nonce_len + 0x000000004207836c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + *fill* 0x0000000042078380 0x0 + .text.mbedtls_ecdsa_can_do + 0x0000000042078380 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x0000000042078380 mbedtls_ecdsa_can_do + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x0 + *fill* 0x0000000042078391 0x3 + .text.ecp_group_is_static_comb_table + 0x0000000042078394 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + *fill* 0x00000000420783b0 0x0 + .text.mbedtls_ecp_get_type + 0x00000000420783b0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x00000000420783b0 mbedtls_ecp_get_type + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x0 + *fill* 0x00000000420783c9 0x3 + .text.mbedtls_ecp_fix_negative + 0x00000000420783cc 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x0 + *fill* 0x0000000042078426 0x2 + .text.mbedtls_entropy_add_source + 0x0000000042078428 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000042078428 mbedtls_entropy_add_source + *fill* 0x0000000042078454 0x0 + *fill* 0x0000000042078454 0x0 + *fill* 0x0000000042078454 0x0 + *fill* 0x0000000042078454 0x0 + *fill* 0x0000000042078454 0x0 + .text.mbedtls_pk_init + 0x0000000042078454 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000042078454 mbedtls_pk_init + *fill* 0x000000004207845f 0x0 + *fill* 0x000000004207845f 0x1 + .text.mbedtls_pk_get_type + 0x0000000042078460 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000042078460 mbedtls_pk_get_type + .text.rsa_can_do + 0x0000000042078478 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000042078491 0x0 + *fill* 0x0000000042078491 0x3 + .text.eckey_can_do + 0x0000000042078494 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000420784a3 0x1 + .text.eckey_get_bitlen + 0x00000000420784a4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000420784ac 0x0 + .text.eckeydh_can_do + 0x00000000420784ac 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000420784bb 0x1 + .text.ecdsa_can_do + 0x00000000420784bc 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x0 + *fill* 0x00000000420784cb 0x1 + .text.mbedtls_rsa_get_len + 0x00000000420784cc 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000420784cc mbedtls_rsa_get_len + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x0 + *fill* 0x00000000420784d3 0x1 + .text._ZNSt9type_infoD2Ev + 0x00000000420784d4 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0x00000000420784d4 std::type_info::~type_info() + 0x00000000420784d4 std::type_info::~type_info() + *fill* 0x00000000420784d9 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x00000000420784dc 0x7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0x00000000420784dc std::type_info::__is_function_p() const + 0x00000000420784dc std::type_info::__is_pointer_p() const + *fill* 0x00000000420784e3 0x0 + *fill* 0x00000000420784e3 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x00000000420784e4 0x32 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x00000000420784e4 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const + *fill* 0x0000000042078516 0x2 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x0000000042078518 0x11 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x0000000042078518 __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x0 + *fill* 0x0000000042078529 0x3 + .text._ZNSt9exceptionD2Ev + 0x000000004207852c 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + 0x000000004207852c std::exception::~exception() + 0x000000004207852c std::exception::~exception() + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x0 + *fill* 0x0000000042078531 0x3 + .text.phy_get_rf_cal_version + 0x0000000042078534 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x0000000042078534 phy_get_rf_cal_version + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + *fill* 0x000000004207853c 0x0 + .text.phy_set_mac_data + 0x000000004207853c 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x000000004207853c phy_set_mac_data + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x0 + *fill* 0x0000000042078557 0x1 + .text 0x0000000042078558 0x6f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + 0x0000000042078558 _fwalk + 0x000000004207858c _fwalk_reent + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x0 + *fill* 0x00000000420785c7 0x1 + .text 0x00000000420785c8 0x80 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x00000000420785c8 __sflags + *fill* 0x0000000042078648 0x0 + *fill* 0x0000000042078648 0x0 + *fill* 0x0000000042078648 0x0 + *fill* 0x0000000042078648 0x0 + *fill* 0x0000000042078648 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(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.*) + .wifislpiram.5 + 0x0000000042078648 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2b (size before relaxing) + 0x0000000042078648 pm_get_connectionless_status + *fill* 0x000000004207866f 0x1 + .wifislpiram.19 + 0x0000000042078670 0x10f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x13b (size before relaxing) + 0x000000004207867c pm_update_by_connectionless_status + *fill* 0x000000004207877f 0x1 + .wifislpiram.29 + 0x0000000042078780 0xd0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0xf8 (size before relaxing) + 0x0000000042078780 pm_update_next_tbtt + .wifislpiram.34 + 0x0000000042078850 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x0000000042078850 pm_connectionless_wake_interval_timeout_process + *fill* 0x0000000042078883 0x1 + .wifislpiram.35 + 0x0000000042078884 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x5a (size before relaxing) + 0x0000000042078884 pm_connectionless_wake_window_timeout_process + *fill* 0x00000000420788c0 0x0 + .wifislpiram.3 + 0x00000000420788c0 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x00000000420788cf 0x1 + .wifislpiram.4 + 0x00000000420788d0 0x8e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x9e (size before relaxing) + 0x00000000420788dc pp_timer_do_process + *fill* 0x000000004207895e 0x2 + .wifislpiram.4 + 0x0000000042078960 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x46 (size before relaxing) + 0x0000000042078960 hal_get_sta_tsf + *fill* 0x000000004207899a 0x2 + .wifislpiram.5 + 0x000000004207899c 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x26 (size before relaxing) + 0x000000004207899c hal_set_sta_light_sleep_wake_ahead_time + *fill* 0x00000000420789ba 0x2 + .wifislpiram.6 + 0x00000000420789bc 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x51 (size before relaxing) + 0x00000000420789bc hal_get_time_to_sta_next_tbtt + *fill* 0x0000000042078a01 0x3 + .wifislpiram.12 + 0x0000000042078a04 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x5c (size before relaxing) + 0x0000000042078a04 tsf_hal_get_counter_value + .wifislpiram.14 + 0x0000000042078a54 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x2b (size before relaxing) + 0x0000000042078a54 tsf_hal_get_time + *fill* 0x0000000042078a73 0x1 + .wifislpiram.26 + 0x0000000042078a74 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x56 (size before relaxing) + 0x0000000042078a80 tsf_hal_set_timer_enable + *fill* 0x0000000042078ac2 0x2 + .wifislpiram.27 + 0x0000000042078ac4 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x56 (size before relaxing) + 0x0000000042078ac4 tsf_hal_set_timer_disable + *fill* 0x0000000042078b06 0x2 + .wifislpiram.28 + 0x0000000042078b08 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x0000000042078b18 tsf_hal_set_timer_target + *fill* 0x0000000042078b4a 0x2 + .wifislpiram.30 + 0x0000000042078b4c 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x40 (size before relaxing) + 0x0000000042078b4c tsf_hal_set_timer_intr_enable + .wifislpiram.31 + 0x0000000042078b84 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x44 (size before relaxing) + 0x0000000042078b84 tsf_hal_set_timer_intr_disable + .wifislpiram.32 + 0x0000000042078bc0 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x54 (size before relaxing) + 0x0000000042078bc0 tsf_hal_set_timer_soc_wakeup_enable + .wifislpiram.33 + 0x0000000042078c00 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x56 (size before relaxing) + 0x0000000042078c00 tsf_hal_set_timer_soc_wakeup_disable + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *fill* 0x0000000042078c42 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *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* 0x0000000042078c42 0x2 + .text.esp_event_handler_register + 0x0000000042078c44 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000042078c44 esp_event_handler_register + *fill* 0x0000000042078c66 0x2 + .text.esp_event_handler_instance_register + 0x0000000042078c68 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000042078c68 esp_event_handler_instance_register + *fill* 0x0000000042078c8d 0x3 + .text.esp_event_handler_unregister + 0x0000000042078c90 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000042078c90 esp_event_handler_unregister + *fill* 0x0000000042078cb1 0x3 + .text.esp_event_handler_instance_unregister + 0x0000000042078cb4 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000042078cb4 esp_event_handler_instance_unregister + *fill* 0x0000000042078cd5 0x3 + .text.esp_event_post + 0x0000000042078cd8 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x0000000042078cd8 esp_event_post + *fill* 0x0000000042078cfd 0x3 + .text.esp_event_loop_create_default + 0x0000000042078d00 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x2e (size before relaxing) + 0x0000000042078d00 esp_event_loop_create_default + *fill* 0x0000000042078d2a 0x0 + *fill* 0x0000000042078d2a 0x0 + *fill* 0x0000000042078d2a 0x0 + *fill* 0x0000000042078d2a 0x0 + *fill* 0x0000000042078d2a 0x0 + *fill* 0x0000000042078d2a 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.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *fill* 0x0000000042078d2a 0x2 + .text.handler_instances_add + 0x0000000042078d2c 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042078dd2 0x2 + .text.base_node_add_handler + 0x0000000042078dd4 0xce esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042078ea2 0x2 + .text.loop_node_add_handler + 0x0000000042078ea4 0xef esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042078f93 0x1 + .text.handler_instances_remove + 0x0000000042078f94 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042079019 0x3 + .text.base_node_remove_handler + 0x000000004207901c 0x6d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042079089 0x3 + .text.loop_node_remove_handler + 0x000000004207908c 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000042079107 0x1 + .text.esp_event_loop_create + 0x0000000042079108 0x148 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000042079108 esp_event_loop_create + .text.esp_event_loop_run + 0x0000000042079250 0x13e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000042079250 esp_event_loop_run + *fill* 0x000000004207938e 0x2 + .text.esp_event_loop_run_task + 0x0000000042079390 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_register_with_internal + 0x00000000420793c4 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000420793c4 esp_event_handler_register_with_internal + .text.esp_event_handler_register_with + 0x00000000420794fc 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x00000000420794fc esp_event_handler_register_with + *fill* 0x0000000042079519 0x3 + .text.esp_event_handler_instance_register_with + 0x000000004207951c 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004207951c esp_event_handler_instance_register_with + *fill* 0x0000000042079539 0x3 + .text.esp_event_handler_unregister_with_internal + 0x000000004207953c 0xd6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x000000004207953c esp_event_handler_unregister_with_internal + *fill* 0x0000000042079612 0x2 + .text.esp_event_handler_unregister_with + 0x0000000042079614 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000042079614 esp_event_handler_unregister_with + *fill* 0x0000000042079631 0x3 + .text.esp_event_handler_instance_unregister_with + 0x0000000042079634 0x21 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000042079634 esp_event_handler_instance_unregister_with + *fill* 0x0000000042079655 0x3 + .text.esp_event_post_to + 0x0000000042079658 0x126 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000042079658 esp_event_post_to + *fill* 0x000000004207977e 0x2 + .text.handler_execute + 0x0000000042079780 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *fill* 0x00000000420797b2 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_configure_region_protection .literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_configure_region_protection .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x00000000420797b2 0x2 + .text.esp_cpu_intr_get_desc + 0x00000000420797b4 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x00000000420797b4 esp_cpu_intr_get_desc + *fill* 0x00000000420797ee 0x2 + .text.esp_cpu_configure_region_protection + 0x00000000420797f0 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x33 (size before relaxing) + 0x00000000420797f0 esp_cpu_configure_region_protection + *fill* 0x000000004207981f 0x0 + *fill* 0x000000004207981f 0x0 + *fill* 0x000000004207981f 0x1 + .text.esp_cpu_set_breakpoint + 0x0000000042079820 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x0000000042079820 esp_cpu_set_breakpoint + *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.rtc_vddsdio_get_config .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.rtc_vddsdio_get_config .text.set_ocode_by_efuse) + .text.set_ocode_by_efuse + 0x0000000042079844 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x00000000420798a6 0x2 + .text.get_dig1v3_dbias_by_efuse + 0x00000000420798a8 0xbb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xbf (size before relaxing) + *fill* 0x0000000042079963 0x1 + .text.get_dig_dbias_by_efuse + 0x0000000042079964 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.get_rtc_dbias_by_efuse + 0x00000000420799b8 0x12f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x13f (size before relaxing) + *fill* 0x0000000042079ae7 0x1 + .text.rtc_set_stored_dbias + 0x0000000042079ae8 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x8b (size before relaxing) + *fill* 0x0000000042079b67 0x1 + .text.calibrate_ocode + 0x0000000042079b68 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x0000000042079c62 0x2 + .text.rtc_init + 0x0000000042079c64 0x5cb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x5db (size before relaxing) + 0x0000000042079c64 rtc_init + *fill* 0x000000004207a22f 0x0 + *fill* 0x000000004207a22f 0x0 + *fill* 0x000000004207a22f 0x0 + *fill* 0x000000004207a22f 0x0 + *fill* 0x000000004207a22f 0x0 + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_power_disable .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *fill* 0x000000004207a22f 0x1 + .text.s_sar_power_acquire + 0x000000004207a230 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x000000004207a2a8 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_init + 0x000000004207a34c 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x000000004207a34c sar_periph_ctrl_init + *fill* 0x000000004207a376 0x2 + .text.sar_periph_ctrl_pwdet_power_acquire + 0x000000004207a378 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x000000004207a378 sar_periph_ctrl_pwdet_power_acquire + *fill* 0x000000004207a380 0x0 + .text.sar_periph_ctrl_pwdet_power_release + 0x000000004207a380 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x000000004207a380 sar_periph_ctrl_pwdet_power_release + *fill* 0x000000004207a388 0x0 + *fill* 0x000000004207a388 0x0 + *fill* 0x000000004207a388 0x0 + *libesp_system.a:esp_system.*(.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 .literal.esp_register_shutdown_handler .literal.esp_unregister_shutdown_handler .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 .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler) + *fill* 0x000000004207a388 0x0 + .text.esp_register_shutdown_handler + 0x000000004207a388 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x000000004207a388 esp_register_shutdown_handler + *fill* 0x000000004207a3ba 0x2 + .text.esp_unregister_shutdown_handler + 0x000000004207a3bc 0x2a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x000000004207a3bc esp_unregister_shutdown_handler + *fill* 0x000000004207a3e6 0x2 + .text.esp_get_free_heap_size + 0x000000004207a3e8 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x000000004207a3e8 esp_get_free_heap_size + .text.esp_get_free_internal_heap_size + 0x000000004207a3f8 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x000000004207a3f8 esp_get_free_internal_heap_size + *fill* 0x000000004207a408 0x0 + *fill* 0x000000004207a408 0x0 + *fill* 0x000000004207a408 0x0 + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + .text.other_cpu_startup_idle_hook_cb + 0x000000004207a408 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000004207a41a 0x2 + .text.main_task + 0x000000004207a41c 0xcf esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xd7 (size before relaxing) + *fill* 0x000000004207a4eb 0x1 + .text.esp_startup_start_app + 0x000000004207a4ec 0x6c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x70 (size before relaxing) + 0x000000004207a4ec esp_startup_start_app + .text.esp_startup_start_app_other_cores + 0x000000004207a558 0x54 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x58 (size before relaxing) + 0x000000004207a558 esp_startup_start_app_other_cores + *fill* 0x000000004207a5ac 0x0 + *fill* 0x000000004207a5ac 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_block_owner .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + .text.multi_heap_register_impl + 0x000000004207a5ac 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + 0x000000004207a5ac multi_heap_register + 0x000000004207a5ac multi_heap_register_impl + .text.multi_heap_get_info_impl + 0x000000004207a5f8 0x68 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x70 (size before relaxing) + 0x000000004207a5f8 multi_heap_get_info_impl + 0x000000004207a5f8 multi_heap_get_info + .text.multi_heap_get_info_tlsf + 0x000000004207a660 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x000000004207a684 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004207a684 multi_heap_free_size + 0x000000004207a684 multi_heap_free_size_impl + *fill* 0x000000004207a692 0x0 + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *fill* 0x000000004207a692 0x2 + .text.control_construct + 0x000000004207a694 0x16a esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000004207a7fe 0x2 + .text.default_walker + 0x000000004207a800 0x1f esp-idf/heap/libheap.a(tlsf.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004207a81f 0x1 + .text.tlsf_walk_pool + 0x000000004207a820 0x4e esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004207a820 tlsf_walk_pool + *fill* 0x000000004207a86e 0x2 + .text.tlsf_fit_size + 0x000000004207a870 0x34 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004207a870 tlsf_fit_size + .text.tlsf_add_pool + 0x000000004207a8a4 0x18c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x194 (size before relaxing) + 0x000000004207a8a4 tlsf_add_pool + .text.tlsf_create + 0x000000004207aa30 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004207aa30 tlsf_create + .text.tlsf_create_with_pool + 0x000000004207aa58 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2f (size before relaxing) + 0x000000004207aa58 tlsf_create_with_pool + *fill* 0x000000004207aa83 0x0 + *fill* 0x000000004207aa83 0x0 + *fill* 0x000000004207aa83 0x1 + .text.tlsf_pool_overhead + 0x000000004207aa84 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x000000004207aa84 tlsf_pool_overhead + *fill* 0x000000004207aa8b 0x0 + *liblog.a:log.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.heap_bubble_down .literal.s_log_level_get_and_unlock .text .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.heap_bubble_down .text.s_log_level_get_and_unlock) + *fill* 0x000000004207aa8b 0x1 + .text.heap_bubble_down + 0x000000004207aa8c 0x4e esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000004207aada 0x2 + .text.s_log_level_get_and_unlock + 0x000000004207aadc 0x14f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000004207ac2b 0x1 + .text.esp_log_level_set + 0x000000004207ac2c 0x130 esp-idf/log/liblog.a(log.c.obj) + 0x000000004207ac2c esp_log_level_set + .text.esp_log_writev + 0x000000004207ad5c 0x2e esp-idf/log/liblog.a(log.c.obj) + 0x32 (size before relaxing) + 0x000000004207ad5c esp_log_writev + *fill* 0x000000004207ad8a 0x0 + *fill* 0x000000004207ad8a 0x0 + *fill* 0x000000004207ad8a 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x000000004207ad8a 0x2 + .fini 0x000000004207ad8c 0x3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + 0x000000004207ad8c _fini + *(.gnu.version) + 0x000000004207ad9f . = (. + _esp_flash_mmap_prefetch_pad_size) + *fill* 0x000000004207ad8f 0x10 + 0x000000004207ad9f _text_end = ABSOLUTE (.) + 0x000000004207ad9f _instruction_reserved_end = ABSOLUTE (.) + 0x000000004207ad9f _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.flash_rodata_dummy + 0x000000003c000020 0x80000 + 0x000000003c000020 _flash_rodata_dummy_start = ABSOLUTE (.) + 0x000000003c000020 . = ALIGN (ALIGNOF (.flash.text)) + 0x000000003c07ad9f . = (. + SIZEOF (.flash.text)) + *fill* 0x000000003c000020 0x7ad7f + 0x000000003c080020 . = (ALIGN (0x10000) + 0x20) + *fill* 0x000000003c07ad9f 0x5281 + +.flash.appdesc 0x000000003c080020 0x100 + 0x000000003c080020 _rodata_reserved_start = ABSOLUTE (.) + 0x000000003c080020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003c080020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x000000003c080020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x000000003c080120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x000000003c080120 0x21470 + 0x000000003c080120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *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_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *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_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *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_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *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_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *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_timing_config.* *libspi_flash.a:spi_flash_timing_tuning.* *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:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *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.* *libfreertos.a:FreeRTOS-openocd.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_rom.a:esp_rom_mmap.* *libesp_rom.a:esp_rom_cache_writeback_esp32s3.* *libesp_rom.a:esp_rom_cache_esp32s2_esp32s3.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) + .rodata.pthread_create.str1.4 + 0x000000003c080120 0xf7 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003c080217 0x1 + .rodata.pthread_mutex_destroy.str1.4 + 0x000000003c080218 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.str1.4 + 0x000000003c08023c 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003c08025f 0x1 + .rodata.__func__$0 + 0x000000003c080260 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003c080275 0x3 + .rodata.__func__$1 + 0x000000003c080278 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003c08028e 0x2 + .rodata.pthread_local_storage_thread_deleted_callback.str1.4 + 0x000000003c080290 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003c0802cd 0x3 + .rodata.__func__$0 + 0x000000003c0802d0 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003c0802fe 0x2 + .rodata.str1.4 + 0x000000003c080300 0x1c7 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003c0804c7 0x1 + .rodata.start_other_core.str1.4 + 0x000000003c0804c8 0xfc esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata 0x000000003c0805c4 0x18 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003c0805dc 0x5c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.4 + 0x000000003c080638 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata 0x000000003c0806a0 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$0 + 0x000000003c0806a4 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003c0806b1 0x3 + .rodata.do_core_init.str1.4 + 0x000000003c0806b4 0xb8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xc0 (size before relaxing) + .rodata.do_system_init_fn.str1.4 + 0x000000003c08076c 0x45 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003c0807b1 0x3 + .rodata.start_cpu0_default.str1.4 + 0x000000003c0807b4 0x22d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x231 (size before relaxing) + *fill* 0x000000003c0809e1 0x3 + .rodata.__func__$0 + 0x000000003c0809e4 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003c0809f1 0x3 + .rodata.g_startup_fn + 0x000000003c0809f4 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003c0809f4 g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x000000003c0809fc 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x000000003c080a04 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3 (size before relaxing) + .rodata.str1.4 + 0x000000003c080a04 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x000000003c080a2a 0x2 + .rodata 0x000000003c080a2c 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x000000003c080a31 0x3 + .rodata.str1.4 + 0x000000003c080a34 0x60 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .rodata.__func__$0 + 0x000000003c080a94 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + *fill* 0x000000003c080aae 0x2 + .rodata 0x000000003c080ab0 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.print_debug_exception_details.str1.4 + 0x000000003c080ac0 0x93 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c080b53 0x1 + .rodata.print_illegal_instruction_details.str1.4 + 0x000000003c080b54 0x17 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000003c080b6b 0x1 + .rodata.print_cache_err_details.str1.4 + 0x000000003c080b6c 0x1dd esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1e3 (size before relaxing) + *fill* 0x000000003c080d49 0x3 + .rodata.panic_print_registers.str1.4 + 0x000000003c080d4c 0x199 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a1 (size before relaxing) + *fill* 0x000000003c080ee5 0x3 + .rodata 0x000000003c080ee8 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x000000003c080f48 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000003c080f61 0x3 + .rodata.panic_soc_fill_info.str1.4 + 0x000000003c080f64 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c080f73 0x1 + .rodata.str1.4 + 0x000000003c080f74 0x2af esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x2b3 (size before relaxing) + *fill* 0x000000003c081223 0x1 + .rodata.pseudo_reason$0 + 0x000000003c081224 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x000000003c081244 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x000000003c0812e4 0x49 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x4d (size before relaxing) + *fill* 0x000000003c08132d 0x3 + .rodata 0x000000003c081330 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.4 + 0x000000003c081340 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000003c0813c3 0x1 + .rodata.s_log_level_get_and_unlock.str1.4 + 0x000000003c0813c4 0x67 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c08142b 0x1 + .rodata.esp_log_level_set.str1.4 + 0x000000003c08142c 0x2 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c08142e 0x2 + .rodata.__func__$0 + 0x000000003c081430 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c081445 0x3 + .rodata.__func__$1 + 0x000000003c081448 0x12 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c08145a 0x2 + .rodata.str1.4 + 0x000000003c08145c 0x11d esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c081579 0x3 + .rodata.__func__$2 + 0x000000003c08157c 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c08158d 0x3 + .rodata.__func__$3 + 0x000000003c081590 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c0815a2 0x2 + .rodata.__func__$4 + 0x000000003c0815a4 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c0815b3 0x1 + .rodata.__func__$8 + 0x000000003c0815b4 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c0815cb 0x1 + .rodata.__func__$9 + 0x000000003c0815cc 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c0815e6 0x2 + .rodata.__func__$10 + 0x000000003c0815e8 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c081601 0x3 + .rodata.__func__$11 + 0x000000003c081604 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$12 + 0x000000003c08161c 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c08162d 0x3 + .rodata.register_heap.str1.4 + 0x000000003c081630 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c081673 0x1 + .rodata.heap_caps_init.str1.4 + 0x000000003c081674 0x130 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$0 + 0x000000003c0817a4 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$1 + 0x000000003c0817b8 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c0817c7 0x1 + .rodata.__func__$2 + 0x000000003c0817c8 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c0817d6 0x2 + .rodata.assert_valid_block.str1.4 + 0x000000003c0817d8 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003c08180a 0x2 + .rodata.multi_heap_register_impl.str1.4 + 0x000000003c08180c 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003c08183b 0x1 + .rodata.multi_heap_get_first_block.str1.4 + 0x000000003c08183c 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003c081849 0x3 + .rodata.__func__$4 + 0x000000003c08184c 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x000000003c081864 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003c08187d 0x3 + .rodata.control_construct.str1.4 + 0x000000003c081880 0xca esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c08194a 0x2 + .rodata.default_walker.str1.4 + 0x000000003c08194c 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081972 0x2 + .rodata.tlsf_check.str1.4 + 0x000000003c081974 0x4a esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c0819be 0x2 + .rodata.tlsf_add_pool.str1.4 + 0x000000003c0819c0 0x142 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081b02 0x2 + .rodata.tlsf_remove_pool.str1.4 + 0x000000003c081b04 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081c1a 0x2 + .rodata.tlsf_create.str1.4 + 0x000000003c081c1c 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081c4e 0x2 + .rodata.tlsf_malloc.str1.4 + 0x000000003c081c50 0x1a7 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081df7 0x1 + .rodata.tlsf_free.str1.4 + 0x000000003c081df8 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x000000003c081f08 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f36 0x2 + .rodata.__func__$0 + 0x000000003c081f38 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x000000003c081f48 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f55 0x3 + .rodata.__func__$2 + 0x000000003c081f58 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f69 0x3 + .rodata.__func__$3 + 0x000000003c081f6c 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f79 0x3 + .rodata.__func__$5 + 0x000000003c081f7c 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f8d 0x3 + .rodata.__func__$6 + 0x000000003c081f90 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081f9a 0x2 + .rodata.__func__$8 + 0x000000003c081f9c 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x000000003c081fa8 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x000000003c081fb8 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081fcb 0x1 + .rodata.__func__$11 + 0x000000003c081fcc 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081fe2 0x2 + .rodata.__func__$12 + 0x000000003c081fe4 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c081ff6 0x2 + .rodata.__func__$14 + 0x000000003c081ff8 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c08200a 0x2 + .rodata.__func__$15 + 0x000000003c08200c 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c08201e 0x2 + .rodata.__func__$18 + 0x000000003c082020 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c082032 0x2 + .rodata.__func__$20 + 0x000000003c082034 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x000000003c08203f 0x1 + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003c082040 0x105 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003c082145 0x3 + .rodata.__func__$0 + 0x000000003c082148 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003c082163 0x1 + .rodata.soc_memory_region_count + 0x000000003c082164 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c082164 soc_memory_region_count + .rodata.soc_memory_regions + 0x000000003c082168 0xb0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c082168 soc_memory_regions + .rodata.str1.4 + 0x000000003c082218 0x47 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x4f (size before relaxing) + *fill* 0x000000003c08225f 0x1 + .rodata.soc_memory_types + 0x000000003c082260 0xa0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c082260 soc_memory_types + .rodata.esp_cpu_stall.str1.4 + 0x000000003c082300 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003c082352 0x2 + .rodata 0x000000003c082354 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x000000003c082368 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003c08237e 0x2 + .rodata.__func__$1 + 0x000000003c082380 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003c08238e 0x2 + .rodata.__func__$2 + 0x000000003c082390 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$3 + 0x000000003c0823a0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x000000003c0823ae 0x2 + .rodata.intr_desc_table + 0x000000003c0823b0 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x000000003c0825b0 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0825e9 0x3 + .rodata.is_vect_desc_usable.str1.4 + 0x000000003c0825ec 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c082635 0x3 + .rodata.esp_intr_alloc_intrstatus.str1.4 + 0x000000003c082638 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c08269a 0x2 + .rodata.esp_intr_free.str1.4 + 0x000000003c08269c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$0 + 0x000000003c0826a0 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0826b1 0x3 + .rodata.__func__$1 + 0x000000003c0826b4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0826c2 0x2 + .rodata.__func__$2 + 0x000000003c0826c4 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0826da 0x2 + .rodata.__func__$3 + 0x000000003c0826dc 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0826f5 0x3 + .rodata.__func__$5 + 0x000000003c0826f8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x000000003c08270c 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c082721 0x3 + .rodata.periph_module_enable.str1.4 + 0x000000003c082724 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003c08276e 0x2 + .rodata.__func__$0 + 0x000000003c082770 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x000000003c082784 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003c08279a 0x2 + .rodata.__func__$2 + 0x000000003c08279c 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x000000003c0827b1 0x3 + .rodata.set_ocode_by_efuse.str1.4 + 0x000000003c0827b4 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c08280e 0x2 + .rodata.get_dig1v3_dbias_by_efuse.str1.4 + 0x000000003c082810 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c082877 0x1 + .rodata.get_dig_dbias_by_efuse.str1.4 + 0x000000003c082878 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0828c2 0x2 + .rodata.get_rtc_dbias_by_efuse.str1.4 + 0x000000003c0828c4 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.calibrate_ocode.str1.4 + 0x000000003c082930 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c082961 0x3 + .rodata.rtc_init.str1.4 + 0x000000003c082964 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata 0x000000003c0829ac 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0829ba 0x2 + .rodata.__func__$0 + 0x000000003c0829bc 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0829d3 0x1 + .rodata.__func__$1 + 0x000000003c0829d4 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0829eb 0x1 + .rodata.__func__$2 + 0x000000003c0829ec 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c082a06 0x2 + .rodata.__func__$3 + 0x000000003c082a08 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c082a1b 0x1 + .rodata.s_sar_power_release.str1.4 + 0x000000003c082a1c 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x000000003c082a6b 0x1 + .rodata.__func__$0 + 0x000000003c082a6c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata 0x000000003c082a80 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.esp_mprot_set_prot.str1.4 + 0x000000003c082a9c 0x7a9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + *fill* 0x000000003c083245 0x3 + .rodata.sram_rg3_level_hlimits + 0x000000003c083248 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .rodata.vPortTaskWrapper.str1.4 + 0x000000003c083264 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.pxPortInitialiseStack.str1.4 + 0x000000003c0832bc 0x5d esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c083319 0x3 + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x000000003c08331c 0xa7 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe3 (size before relaxing) + *fill* 0x000000003c0833c3 0x1 + .rodata.vPortExitCritical.str1.4 + 0x000000003c0833c4 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003c0833f0 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$0 + 0x000000003c08342c 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c08343d 0x3 + .rodata.__func__$1 + 0x000000003c083440 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c083451 0x3 + .rodata.__func__$3 + 0x000000003c083454 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c08346a 0x6 + .rodata 0x000000003c083470 0x30 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003c083470 _xt_coproc_sa_offset + .rodata.vPortSetupTimer.str1.4 + 0x000000003c0834a0 0xc5 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + *fill* 0x000000003c083565 0x3 + .rodata 0x000000003c083568 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.__func__$0 + 0x000000003c083570 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003c083580 0x8f esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c08360f 0x1 + .rodata.xQueueGenericReset.str1.4 + 0x000000003c083610 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x43 (size before relaxing) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x000000003c083618 0xdf esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c0836f7 0x1 + .rodata.xQueueGenericCreate.str1.4 + 0x000000003c0836f8 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083786 0x2 + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x000000003c083788 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c0837b5 0x3 + .rodata.xQueueGenericSend.str1.4 + 0x000000003c0837b8 0x195 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c08394d 0x3 + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x000000003c083950 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x000000003c083958 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c0839d5 0x3 + .rodata.xQueueReceive.str1.4 + 0x000000003c0839d8 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083a3e 0x2 + .rodata.xQueueReceiveFromISR.str1.4 + 0x000000003c083a40 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083a92 0x2 + .rodata.uxQueueMessagesWaiting.str1.4 + 0x000000003c083a94 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083a9b 0x1 + .rodata.__func__$2 + 0x000000003c083a9c 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083aa9 0x3 + .rodata.__func__$5 + 0x000000003c083aac 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083ac3 0x1 + .rodata.__func__$7 + 0x000000003c083ac4 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083ad9 0x3 + .rodata.__func__$9 + 0x000000003c083adc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x000000003c083af0 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083afe 0x2 + .rodata.__func__$11 + 0x000000003c083b00 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b12 0x2 + .rodata.__func__$12 + 0x000000003c083b14 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b2d 0x3 + .rodata.__func__$13 + 0x000000003c083b30 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b4b 0x1 + .rodata.__func__$14 + 0x000000003c083b4c 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b5e 0x2 + .rodata.__func__$15 + 0x000000003c083b60 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b7e 0x2 + .rodata.__func__$17 + 0x000000003c083b80 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083b99 0x3 + .rodata.__func__$18 + 0x000000003c083b9c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083bb5 0x3 + .rodata.__func__$20 + 0x000000003c083bb8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$21 + 0x000000003c083bcc 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083be6 0x2 + .rodata.__func__$22 + 0x000000003c083be8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$23 + 0x000000003c083bfc 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c083c0f 0x1 + .rodata.prvDeleteTLS.str1.4 + 0x000000003c083c10 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083c4a 0x2 + .rodata.taskSelectHighestPriorityTaskSMP.str1.4 + 0x000000003c083c4c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083c65 0x3 + .rodata.prvDeleteTCB.str1.4 + 0x000000003c083c68 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083c9a 0x2 + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x000000003c083c9c 0x9d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083d39 0x3 + .rodata.xTaskGetIdleTaskHandleForCPU.str1.4 + 0x000000003c083d3c 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083d72 0x2 + .rodata.xTaskIncrementTick.str1.4 + 0x000000003c083d74 0x8e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e02 0x2 + .rodata.xTaskResumeAll.str1.4 + 0x000000003c083e04 0x29 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e2d 0x3 + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x000000003c083e30 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e3d 0x3 + .rodata.vTaskPlaceOnEventList.str1.4 + 0x000000003c083e40 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x000000003c083e4c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e5b 0x1 + .rodata.vTaskSetTimeOutState.str1.4 + 0x000000003c083e5c 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e66 0x2 + .rodata.xTaskCheckForTimeOut.str1.4 + 0x000000003c083e68 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e76 0x2 + .rodata.vTaskPrioritySet.str1.4 + 0x000000003c083e78 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083e93 0x1 + .rodata.vTaskSuspend.str1.4 + 0x000000003c083e94 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083ea3 0x1 + .rodata.vTaskDelete.str1.4 + 0x000000003c083ea4 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083ed5 0x3 + .rodata.xTaskPriorityDisinherit.str1.4 + 0x000000003c083ed8 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083f15 0x3 + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x000000003c083f18 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x000000003c083f40 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083f52 0x2 + .rodata.xTaskGenericNotify.str1.4 + 0x000000003c083f54 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c083feb 0x1 + .rodata.prvTaskPriorityRaise.str1.4 + 0x000000003c083fec 0x55 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084041 0x3 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003c084044 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c08405e 0x2 + .rodata.__func__$0 + 0x000000003c084060 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084075 0x3 + .rodata.__func__$2 + 0x000000003c084078 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084096 0x2 + .rodata.__func__$6 + 0x000000003c084098 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x000000003c0840b0 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$8 + 0x000000003c0840d4 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$9 + 0x000000003c0840ec 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084101 0x3 + .rodata.__func__$10 + 0x000000003c084104 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084121 0x3 + .rodata.__func__$12 + 0x000000003c084124 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084146 0x2 + .rodata.__func__$13 + 0x000000003c084148 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084161 0x3 + .rodata.__func__$15 + 0x000000003c084164 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084183 0x1 + .rodata.__func__$16 + 0x000000003c084184 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c08419a 0x2 + .rodata.__func__$17 + 0x000000003c08419c 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0841bd 0x3 + .rodata.ucExpectedStackBytes$18 + 0x000000003c0841c0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x000000003c0841d4 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0841f1 0x3 + .rodata.__func__$20 + 0x000000003c0841f4 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084207 0x1 + .rodata.__func__$23 + 0x000000003c084208 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084225 0x3 + .rodata.__func__$26 + 0x000000003c084228 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084236 0x2 + .rodata.__func__$27 + 0x000000003c084238 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084247 0x1 + .rodata.__func__$28 + 0x000000003c084248 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$32 + 0x000000003c08425c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084269 0x3 + .rodata.__func__$33 + 0x000000003c08426c 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c08427d 0x3 + .rodata.__func__$35 + 0x000000003c084280 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c08428b 0x1 + .rodata.__func__$37 + 0x000000003c08428c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c084299 0x3 + .rodata.__func__$38 + 0x000000003c08429c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0842a9 0x3 + .rodata.__func__$39 + 0x000000003c0842ac 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$43 + 0x000000003c0842b8 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0842d6 0x2 + .rodata.main_task.str1.4 + 0x000000003c0842d8 0xdd esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003c0843b5 0x3 + .rodata.esp_startup_start_app.str1.4 + 0x000000003c0843b8 0x7f esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003c084437 0x1 + .rodata.esp_startup_start_app_other_cores.str1.4 + 0x000000003c084438 0x34 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__$0 + 0x000000003c08446c 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003c084476 0x2 + .rodata.__func__$1 + 0x000000003c084478 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x000000003c08448e 0x2 + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x000000003c084490 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c0844ea 0x2 + .rodata.__func__$1 + 0x000000003c0844ec 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c08450a 0x2 + .rodata.str1.4 + 0x000000003c08450c 0x8d esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x91 (size before relaxing) + *fill* 0x000000003c084599 0x3 + .rodata.esp_newlib_locks_init.str1.4 + 0x000000003c08459c 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$4 + 0x000000003c084604 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c08461a 0x2 + .rodata.__func__$3 + 0x000000003c08461c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c08462f 0x1 + .rodata.__func__$2 + 0x000000003c084630 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c084645 0x3 + .rodata.__func__$1 + 0x000000003c084648 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c08465d 0x3 + .rodata.__func__$0 + 0x000000003c084660 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_unknown_msg + 0x000000003c08466c 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003c084672 0x2 + .rodata.str1.4 + 0x000000003c084674 0x1712 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003c085d86 0x2 + .rodata.esp_err_msg_table + 0x000000003c085d88 0x688 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x000000003c086410 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c086443 0x1 + .rodata.esp_timer_init.str1.4 + 0x000000003c086444 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c08644e 0x2 + .rodata.__func__$0 + 0x000000003c086450 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c08645d 0x3 + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x000000003c086460 0x51 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + *fill* 0x000000003c0864b1 0x3 + .rodata.str1.4 + 0x000000003c0864b4 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x000000003c086529 0x3 + .rodata 0x000000003c08652c 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003c086534 0x82 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x000000003c0865b6 0x2 + .rodata.__func__$0 + 0x000000003c0865b8 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .rodata.translate_path.str1.4 + 0x000000003c0865d4 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x5f (size before relaxing) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x000000003c08662f 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c08662f 0x1 + .rodata.__func__$0 + 0x000000003c086630 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.console_open.str1.4 + 0x000000003c08663f 0x2 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x000000003c08663f 0x1 + .rodata.console_access.str1.4 + 0x000000003c086640 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.esp_vfs_dev_console_register.str1.4 + 0x000000003c086644 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x000000003c086651 0x3 + .rodata.esp_vfs_console_register.str1.4 + 0x000000003c086654 0x10 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.vfs 0x000000003c086664 0xa4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.usb_serial_jtag_return_char.str1.4 + 0x000000003c086708 0x43 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + *fill* 0x000000003c08674b 0x1 + .rodata.__func__$0 + 0x000000003c08674c 0x1c esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .rodata.vfs 0x000000003c086768 0xa4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .rodata.event_handler.str1.4 + 0x000000003c08680c 0x9f esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x000000003c0868ab 0x1 + .rodata.wifi_init_sta.str1.4 + 0x000000003c0868ac 0x35d esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x000000003c086c09 0x3 + .rodata 0x000000003c086c0c 0x20 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.app_main.str1.4 + 0x000000003c086c2c 0x42 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x000000003c086c6e 0x2 + .rodata.__func__$0 + 0x000000003c086c70 0x9 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x000000003c086c79 0x3 + .rodata.__func__$1 + 0x000000003c086c7c 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x000000003c086c8a 0x2 + .rodata.ModBusSlave_accept.str1.4 + 0x000000003c086c8c 0x32 esp-idf/main/libmain.a(modbus-tcp.c.obj) + *fill* 0x000000003c086cbe 0x2 + .rodata.ModBusSlave_poll.str1.4 + 0x000000003c086cc0 0x42 esp-idf/main/libmain.a(modbus-tcp.c.obj) + *fill* 0x000000003c086d02 0x2 + .rodata.ModBusSlave_recv.str1.4 + 0x000000003c086d04 0x80 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .rodata.ModBusTCPSlave_init.str1.4 + 0x000000003c086d84 0x2e esp-idf/main/libmain.a(modbus-tcp.c.obj) + *fill* 0x000000003c086db2 0x2 + .rodata.ModbusSlaveProcess.str1.4 + 0x000000003c086db4 0x3bd esp-idf/main/libmain.a(ModbusS.c.obj) + *fill* 0x000000003c087171 0x3 + .rodata.auchCRCLo + 0x000000003c087174 0x100 esp-idf/main/libmain.a(ModbusS.c.obj) + .rodata.auchCRCHi + 0x000000003c087274 0x100 esp-idf/main/libmain.a(ModbusS.c.obj) + .rodata.bdc_motor_init.str1.4 + 0x000000003c087374 0xa8 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata.bdc_encoder_init.str1.4 + 0x000000003c08741c 0x40f esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c08782b 0x1 + .rodata.bdc_pid_init.str1.4 + 0x000000003c08782c 0x62 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c08788e 0x2 + .rodata.bdc_ctrl_timer_init.str1.4 + 0x000000003c087890 0x90 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata.bdc_motor_init_all.str1.4 + 0x000000003c087920 0x10b esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c087a2b 0x1 + .rodata.__func__$2 + 0x000000003c087a2c 0x13 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c087a3f 0x1 + .rodata.__func__$5 + 0x000000003c087a40 0x14 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .rodata.__func__$6 + 0x000000003c087a54 0xd esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c087a61 0x3 + .rodata.__func__$7 + 0x000000003c087a64 0x11 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c087a75 0x3 + .rodata.__func__$8 + 0x000000003c087a78 0xf esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + *fill* 0x000000003c087a87 0x1 + .rodata.pid_del_control_block.str1.4 + 0x000000003c087a88 0x3d esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x000000003c087ac5 0x3 + .rodata.pid_update_parameters.str1.4 + 0x000000003c087ac8 0x40 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .rodata.pid_new_control_block.str1.4 + 0x000000003c087b08 0x7b esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x000000003c087b83 0x1 + .rodata.__FUNCTION__$0 + 0x000000003c087b84 0x16 esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x000000003c087b9a 0x2 + .rodata.__FUNCTION__$1 + 0x000000003c087b9c 0xc esp-idf/main/libmain.a(pid_ctrl.c.obj) + .rodata.__FUNCTION__$3 + 0x000000003c087ba8 0x16 esp-idf/main/libmain.a(pid_ctrl.c.obj) + *fill* 0x000000003c087bbe 0x2 + .rodata.bdc_motor_enable.str1.4 + 0x000000003c087bc0 0xa esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x3d (size before relaxing) + *fill* 0x000000003c087bca 0x2 + .rodata.__FUNCTION__$4 + 0x000000003c087bcc 0x12 esp-idf/main/libmain.a(bdc_motor.c.obj) + *fill* 0x000000003c087bde 0x2 + .rodata.__FUNCTION__$5 + 0x000000003c087be0 0x14 esp-idf/main/libmain.a(bdc_motor.c.obj) + .rodata.__FUNCTION__$7 + 0x000000003c087bf4 0x11 esp-idf/main/libmain.a(bdc_motor.c.obj) + *fill* 0x000000003c087c05 0x3 + .rodata.bdc_motor_mcpwm_set_speed.str1.4 + 0x000000003c087c08 0x49 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c087c51 0x3 + .rodata.bdc_motor_mcpwm_brake.str1.4 + 0x000000003c087c54 0x80 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.bdc_motor_mcpwm_reverse.str1.4 + 0x000000003c087cd4 0x44 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.bdc_motor_mcpwm_forward.str1.4 + 0x000000003c087d18 0x44 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.bdc_motor_mcpwm_disable.str1.4 + 0x000000003c087d5c 0x69 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c087dc5 0x3 + .rodata.bdc_motor_mcpwm_enable.str1.4 + 0x000000003c087dc8 0x67 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c087e2f 0x1 + .rodata.bdc_motor_new_mcpwm_device.str1.4 + 0x000000003c087e30 0x16c esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x1a0 (size before relaxing) + .rodata.__FUNCTION__$0 + 0x000000003c087f9c 0x17 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c087fb3 0x1 + .rodata.__FUNCTION__$1 + 0x000000003c087fb4 0x18 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.__FUNCTION__$2 + 0x000000003c087fcc 0x18 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.__FUNCTION__$3 + 0x000000003c087fe4 0x18 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .rodata.__FUNCTION__$4 + 0x000000003c087ffc 0x16 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c088012 0x2 + .rodata.__FUNCTION__$5 + 0x000000003c088014 0x16 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c08802a 0x2 + .rodata.__FUNCTION__$6 + 0x000000003c08802c 0x1a esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c088046 0x2 + .rodata.__FUNCTION__$7 + 0x000000003c088048 0x1b esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + *fill* 0x000000003c088063 0x1 + .rodata.str1.4 + 0x000000003c088064 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x000000003c088087 0x1 + .rodata.DIG_DBIAS_HVT + 0x000000003c088088 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_DIG_DBIAS20 + 0x000000003c08808c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.V_RTC_DBIAS20 + 0x000000003c088090 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_DIG_LDO + 0x000000003c088094 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.K_RTC_LDO + 0x000000003c088098 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.OCODE 0x000000003c08809c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK_VERSION_MAJOR + 0x000000003c0880a0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY + 0x000000003c0880a4 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x000000003c0880bc 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c08811f 0x1 + .rodata.write_reg.str1.4 + 0x000000003c088120 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x000000003c0881a4 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c08820d 0x3 + .rodata.__func__$1 + 0x000000003c088210 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c08822b 0x1 + .rodata.__func__$4 + 0x000000003c08822c 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c088246 0x2 + .rodata.range_read_addr_blocks + 0x000000003c088248 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003c088248 range_read_addr_blocks + .rodata.gpio_input_enable.str1.4 + 0x000000003c0882a0 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0882de 0x2 + .rodata.gpio_sleep_output_enable.str1.4 + 0x000000003c0882e0 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0882fb 0x1 + .rodata.gpio_set_intr_type.str1.4 + 0x000000003c0882fc 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c088316 0x2 + .rodata.gpio_config.str1.4 + 0x000000003c088318 0xe0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$23 + 0x000000003c0883f8 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$24 + 0x000000003c088404 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x000000003c088414 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c088423 0x1 + .rodata.__FUNCTION__$26 + 0x000000003c088424 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x000000003c088438 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c08844b 0x1 + .rodata.__FUNCTION__$28 + 0x000000003c08844c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c08845f 0x1 + .rodata.__FUNCTION__$29 + 0x000000003c088460 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c088472 0x2 + .rodata.__FUNCTION__$33 + 0x000000003c088474 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c088486 0x2 + .rodata.__FUNCTION__$34 + 0x000000003c088488 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c088499 0x3 + .rodata.__FUNCTION__$35 + 0x000000003c08849c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0884af 0x1 + .rodata.__FUNCTION__$36 + 0x000000003c0884b0 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0884c2 0x2 + .rodata.__FUNCTION__$37 + 0x000000003c0884c4 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0884d5 0x3 + .rodata.__FUNCTION__$38 + 0x000000003c0884d8 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x000000003c0884e8 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c0884f7 0x1 + .rodata.rtc_gpio_init.str1.4 + 0x000000003c0884f8 0x3b esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003c088533 0x1 + .rodata.__FUNCTION__$15 + 0x000000003c088534 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.mcpwm_comparator_register_to_operator.str1.4 + 0x000000003c088544 0x4f esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c088593 0x1 + .rodata.mcpwm_comparator_destory.str1.4 + 0x000000003c088594 0x43 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c0885d7 0x1 + .rodata.mcpwm_new_comparator.str1.4 + 0x000000003c0885d8 0x73 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0xa7 (size before relaxing) + *fill* 0x000000003c08864b 0x1 + .rodata.mcpwm_del_comparator.str1.4 + 0x000000003c08864c 0x3a esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c088686 0x2 + .rodata.mcpwm_comparator_set_compare_value.str1.4 + 0x000000003c088688 0x83 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c08870b 0x1 + .rodata.__FUNCTION__$1 + 0x000000003c08870c 0x23 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c08872f 0x1 + .rodata.__FUNCTION__$2 + 0x000000003c088730 0x15 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c088745 0x3 + .rodata.__FUNCTION__$3 + 0x000000003c088748 0x19 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c088761 0x3 + .rodata.__FUNCTION__$4 + 0x000000003c088764 0x26 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c08878a 0x2 + .rodata.__FUNCTION__$5 + 0x000000003c08878c 0x15 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + *fill* 0x000000003c0887a1 0x3 + .rodata.mcpwm_generator_register_to_operator.str1.4 + 0x000000003c0887a4 0x46 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000003c0887ea 0x2 + .rodata.mcpwm_new_generator.str1.4 + 0x000000003c0887ec 0xab esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0xdf (size before relaxing) + *fill* 0x000000003c088897 0x1 + .rodata.mcpwm_del_generator.str1.4 + 0x000000003c088898 0x39 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000003c0888d1 0x3 + .rodata.mcpwm_generator_set_action_on_timer_event.str1.4 + 0x000000003c0888d4 0xe1 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000003c0889b5 0x3 + .rodata 0x000000003c0889b8 0x4 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$3 + 0x000000003c0889bc 0x2d esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000003c0889e9 0x3 + .rodata.__FUNCTION__$5 + 0x000000003c0889ec 0x2b esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000003c088a17 0x1 + .rodata.__FUNCTION__$7 + 0x000000003c088a18 0x20 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$8 + 0x000000003c088a38 0x14 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.__FUNCTION__$9 + 0x000000003c088a4c 0x25 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + *fill* 0x000000003c088a71 0x3 + .rodata.__FUNCTION__$10 + 0x000000003c088a74 0x14 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .rodata.mcpwm_operator_register_to_group.str1.4 + 0x000000003c088a88 0x78 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x80 (size before relaxing) + .rodata.mcpwm_operator_destory.str1.4 + 0x000000003c088b00 0x43 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_new_operator.str1.4 + 0x000000003c088b00 0xa1 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0xd5 (size before relaxing) + *fill* 0x000000003c088ba1 0x3 + .rodata.mcpwm_del_operator.str1.4 + 0x000000003c088ba4 0xec esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .rodata.mcpwm_operator_connect_timer.str1.4 + 0x000000003c088c90 0x53 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088ce3 0x1 + .rodata.__FUNCTION__$6 + 0x000000003c088ce4 0x1d esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088d01 0x3 + .rodata.__FUNCTION__$7 + 0x000000003c088d04 0x13 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088d17 0x1 + .rodata.__FUNCTION__$8 + 0x000000003c088d18 0x17 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088d2f 0x1 + .rodata.__FUNCTION__$10 + 0x000000003c088d30 0x21 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088d51 0x3 + .rodata.__FUNCTION__$11 + 0x000000003c088d54 0x13 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + *fill* 0x000000003c088d67 0x1 + .rodata.mcpwm_timer_register_to_group.str1.4 + 0x000000003c088d68 0x3c esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x7c (size before relaxing) + .rodata.mcpwm_timer_destory.str1.4 + 0x000000003c088da4 0x43 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.mcpwm_new_timer.str1.4 + 0x000000003c088da4 0x18a esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x1f2 (size before relaxing) + *fill* 0x000000003c088f2e 0x2 + .rodata.mcpwm_del_timer.str1.4 + 0x000000003c088f30 0xad esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c088fdd 0x3 + .rodata.mcpwm_timer_enable.str1.4 + 0x000000003c088fe0 0x6f esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c08904f 0x1 + .rodata.mcpwm_timer_disable.str1.4 + 0x000000003c089050 0x75 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c0890c5 0x3 + .rodata.__func__$1 + 0x000000003c0890c8 0x26 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c0890ee 0x2 + .rodata.__FUNCTION__$2 + 0x000000003c0890f0 0x17 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c089107 0x1 + .rodata.__FUNCTION__$3 + 0x000000003c089108 0x14 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__FUNCTION__$4 + 0x000000003c08911c 0x13 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c08912f 0x1 + .rodata.__FUNCTION__$7 + 0x000000003c089130 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__FUNCTION__$8 + 0x000000003c089140 0x14 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__func__$9 + 0x000000003c089154 0x1e esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c089172 0x2 + .rodata.__func__$10 + 0x000000003c089174 0x18 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.__func__$11 + 0x000000003c08918c 0x22 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c0891ae 0x2 + .rodata.__FUNCTION__$12 + 0x000000003c0891b0 0x1e esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + *fill* 0x000000003c0891ce 0x2 + .rodata.__FUNCTION__$13 + 0x000000003c0891d0 0x10 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .rodata.pcnt_release_group_handle.str1.4 + 0x000000003c0891e0 0x40 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.pcnt_register_to_group.str1.4 + 0x000000003c089220 0x35 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x6d (size before relaxing) + *fill* 0x000000003c089255 0x3 + .rodata.pcnt_destory.str1.4 + 0x000000003c089258 0x78 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.pcnt_new_unit.str1.4 + 0x000000003c0892d0 0xe5 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x119 (size before relaxing) + *fill* 0x000000003c0893b5 0x3 + .rodata.pcnt_del_unit.str1.4 + 0x000000003c0893b8 0xad esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089465 0x3 + .rodata.pcnt_unit_set_glitch_filter.str1.4 + 0x000000003c089468 0x3a esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0894a2 0x2 + .rodata.pcnt_unit_enable.str1.4 + 0x000000003c0894a4 0x78 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.pcnt_unit_start.str1.4 + 0x000000003c08951c 0x35 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089551 0x3 + .rodata.pcnt_unit_add_watch_point.str1.4 + 0x000000003c089554 0x75 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0895c9 0x3 + .rodata.pcnt_new_channel.str1.4 + 0x000000003c0895cc 0xe5 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0896b1 0x3 + .rodata.__FUNCTION__$0 + 0x000000003c0896b4 0x1e esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0896d2 0x2 + .rodata.__FUNCTION__$1 + 0x000000003c0896d4 0x1d esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0896f1 0x3 + .rodata.__FUNCTION__$3 + 0x000000003c0896f4 0x11 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089705 0x3 + .rodata.__FUNCTION__$5 + 0x000000003c089708 0x1a esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089722 0x2 + .rodata.__FUNCTION__$6 + 0x000000003c089724 0x23 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089747 0x1 + .rodata.__FUNCTION__$7 + 0x000000003c089748 0x14 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$8 + 0x000000003c08975c 0x16 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089772 0x2 + .rodata.__FUNCTION__$10 + 0x000000003c089774 0x10 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$12 + 0x000000003c089784 0x11 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089795 0x3 + .rodata.__FUNCTION__$13 + 0x000000003c089798 0x1c esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .rodata.__FUNCTION__$15 + 0x000000003c0897b4 0xd esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0897c1 0x3 + .rodata.__func__$16 + 0x000000003c0897c4 0x1a esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0897de 0x2 + .rodata.__FUNCTION__$17 + 0x000000003c0897e0 0x17 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c0897f7 0x1 + .rodata.__FUNCTION__$18 + 0x000000003c0897f8 0xe esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + *fill* 0x000000003c089806 0x2 + .rodata.mcpwm_select_periph_clock.str1.4 + 0x000000003c089808 0x99 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0xa1 (size before relaxing) + *fill* 0x000000003c0898a1 0x3 + .rodata.__FUNCTION__$0 + 0x000000003c0898a4 0x1a esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + *fill* 0x000000003c0898be 0x2 + .rodata.str1.4 + 0x000000003c0898c0 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x000000003c08993f 0x1 + .rodata.__func__$0 + 0x000000003c089940 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x000000003c08995b 0x1 + .rodata.__func__$1 + 0x000000003c08995c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.spi_flash_init_lock.str1.4 + 0x000000003c089984 0x45 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c0899c9 0x3 + .rodata.str1.4 + 0x000000003c0899cc 0x1a1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c089b6d 0x3 + .rodata.__func__$0 + 0x000000003c089b70 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c089ba1 0x3 + .rodata.__func__$1 + 0x000000003c089ba4 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c089bd6 0x2 + .rodata.__func__$2 + 0x000000003c089bd8 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x000000003c089bec 0x14a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c089d36 0x2 + .rodata.__func__$0 + 0x000000003c089d38 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c089d49 0x3 + .rodata.__func__$2 + 0x000000003c089d4c 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$3 + 0x000000003c089d68 0x12 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c089d7a 0x2 + .rodata.__func__$4 + 0x000000003c089d7c 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c089d95 0x3 + .rodata.__func__$5 + 0x000000003c089d98 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c089dad 0x3 + .rodata.str1.4 + 0x000000003c089db0 0x1f9 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c089fa9 0x3 + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x000000003c089fac 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c08a03e 0x2 + .rodata.__func__$0 + 0x000000003c08a040 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c08a05a 0x2 + .rodata.__func__$1 + 0x000000003c08a05c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$2 + 0x000000003c08a06c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c08a083 0x1 + .rodata.io_mode_str + 0x000000003c08a084 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.TAG 0x000000003c08a138 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c08a142 0x2 + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003c08a144 0xfc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x000000003c08a240 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003c08a24a 0x2 + .rodata.str1.4 + 0x000000003c08a24c 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c08a293 0x1 + .rodata.__func__$0 + 0x000000003c08a294 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c08a2ae 0x2 + .rodata.str1.4 + 0x000000003c08a2b0 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003c08a2f8 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c08a327 0x1 + .rodata.__func__$0 + 0x000000003c08a328 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c08a33f 0x1 + .rodata.__func__$1 + 0x000000003c08a340 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c08a357 0x1 + .rodata.str1.4 + 0x000000003c08a358 0x42 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003c08a39a 0x2 + .rodata.esp_ipc_init.str1.4 + 0x000000003c08a39c 0x6 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003c08a3a2 0x2 + .rodata.__func__$0 + 0x000000003c08a3a4 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003c08a3ad 0x3 + .rodata.__func__$1 + 0x000000003c08a3b0 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x000000003c08a3bd 0x3 + .rodata.add_entry.str1.4 + 0x000000003c08a3c0 0xc7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a487 0x1 + .rodata.delete_entry.str1.4 + 0x000000003c08a488 0x5f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a4e7 0x1 + .rodata.task_wdt_timeout_abort_xtensa.str1.4 + 0x000000003c08a4e8 0xd3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a5bb 0x1 + .rodata.task_wdt_isr.str1.4 + 0x000000003c08a5bc 0x107 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a6c3 0x1 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003c08a6c4 0x3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a6ff 0x1 + .rodata.subscribe_idle.str1.4 + 0x000000003c08a700 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.4 + 0x000000003c08a7a8 0xa4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$5 + 0x000000003c08a84c 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a85f 0x1 + .rodata.__FUNCTION__$7 + 0x000000003c08a860 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a86a 0x2 + .rodata.__FUNCTION__$8 + 0x000000003c08a86c 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a87d 0x3 + .rodata.__func__$12 + 0x000000003c08a880 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a88f 0x1 + .rodata.__func__$13 + 0x000000003c08a890 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a89d 0x3 + .rodata.__FUNCTION__$14 + 0x000000003c08a8a0 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a8b2 0x2 + .rodata.__func__$15 + 0x000000003c08a8b4 0x1e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c08a8d2 0x2 + .rodata.get_flash_clock_divider.str1.4 + 0x000000003c08a8d4 0x93 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x000000003c08a967 0x1 + .rodata.GPIO_PIN_MUX_REG + 0x000000003c08a968 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x000000003c08a968 GPIO_PIN_MUX_REG + .rodata.mcpwm_periph_signals + 0x000000003c08aa2c 0x88 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + 0x000000003c08aa2c mcpwm_periph_signals + .rodata.pcnt_periph_signals + 0x000000003c08aab4 0x48 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + 0x000000003c08aab4 pcnt_periph_signals + .rodata.rtc_io_desc + 0x000000003c08aafc 0x4d0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x000000003c08aafc rtc_io_desc + .rodata.rtc_io_num_map + 0x000000003c08afcc 0xc4 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x000000003c08afcc rtc_io_num_map + .rodata.temperature_sensor_power_release.str1.4 + 0x000000003c08b090 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x000000003c08b0ef 0x1 + .rodata.__func__$0 + 0x000000003c08b0f0 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + *fill* 0x000000003c08b111 0x3 + .rodata.xEventGroupCreateStatic.str1.4 + 0x000000003c08b114 0x70 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xab (size before relaxing) + .rodata.xEventGroupWaitBits.str1.4 + 0x000000003c08b184 0x49 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x9f (size before relaxing) + *fill* 0x000000003c08b1cd 0x3 + .rodata.xEventGroupClearBits.str1.4 + 0x000000003c08b1d0 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003c08b1f6 0x2 + .rodata.xEventGroupSetBits.str1.4 + 0x000000003c08b1f8 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.vEventGroupDelete.str1.4 + 0x000000003c08b21c 0x66 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003c08b282 0x2 + .rodata.__func__$0 + 0x000000003c08b284 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003c08b296 0x2 + .rodata.__func__$1 + 0x000000003c08b298 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003c08b2ab 0x1 + .rodata.__func__$2 + 0x000000003c08b2ac 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003c08b2c1 0x3 + .rodata.__func__$3 + 0x000000003c08b2c4 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$5 + 0x000000003c08b2d8 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.esp_event_loop_create_default.str1.4 + 0x000000003c08b2ec 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata 0x000000003c08b2f4 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.handler_instances_add.str1.4 + 0x000000003c08b308 0x48 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.base_node_add_handler.str1.4 + 0x000000003c08b350 0x35 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b385 0x3 + .rodata.loop_node_add_handler.str1.4 + 0x000000003c08b388 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b3c7 0x1 + .rodata.esp_event_loop_create.str1.4 + 0x000000003c08b3c8 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x139 (size before relaxing) + .rodata.esp_event_loop_run.str1.4 + 0x000000003c08b500 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b533 0x1 + .rodata.esp_event_loop_run_task.str1.4 + 0x000000003c08b534 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b567 0x1 + .rodata.esp_event_handler_register_with_internal.str1.4 + 0x000000003c08b568 0x9b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b603 0x1 + .rodata.esp_event_handler_unregister_with_internal.str1.4 + 0x000000003c08b604 0x61 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b665 0x3 + .rodata.__func__$1 + 0x000000003c08b668 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b67a 0x2 + .rodata.__func__$2 + 0x000000003c08b67c 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b6a7 0x1 + .rodata.__func__$3 + 0x000000003c08b6a8 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b6d1 0x3 + .rodata.__func__$5 + 0x000000003c08b6d4 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003c08b6e7 0x1 + .rodata.nvs_flash_init.str1.4 + 0x000000003c08b6e8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .rodata._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj.str1.4 + 0x000000003c08b6ec 0xbe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003c08b7aa 0x2 + .rodata._ZTVN3nvs9NVSHandleE + 0x000000003c08b7ac 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003c08b7ac vtable for nvs::NVSHandle + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x000000003c08b7e8 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003c08b7e8 vtable for nvs::NVSHandleSimple + .rodata._ZTVN3nvs9PartitionE + 0x000000003c08b824 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000003c08b824 vtable for nvs::Partition + .rodata._ZTVN3nvs12NVSPartitionE + 0x000000003c08b854 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x000000003c08b854 vtable for nvs::NVSPartition + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x000000003c08b884 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003c08b884 vtable for nvs::NVSPartitionManager + .rodata._ZN3nvs11PageManager4loadEPNS_9PartitionEmm.str1.4 + 0x000000003c08b894 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003c08b93a 0x2 + .rodata.mem_malloc.str1.4 + 0x000000003c08b93c 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003c08b989 0x3 + .rodata.mem_free.str1.4 + 0x000000003c08b98c 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$0 + 0x000000003c08b9b4 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003c08b9bd 0x3 + .rodata.__func__$1 + 0x000000003c08b9c0 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003c08b9cb 0x1 + .rodata.pbuf_add_header_impl.str1.4 + 0x000000003c08b9cc 0x2a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000003c08b9f6 0x2 + .rodata.pbuf_alloc_reference.str1.4 + 0x000000003c08b9f8 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08ba0a 0x2 + .rodata.pbuf_free.str1.4 + 0x000000003c08ba0c 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08ba5a 0x2 + .rodata.pbuf_alloc.str1.4 + 0x000000003c08ba5c 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bb07 0x1 + .rodata.pbuf_realloc.str1.4 + 0x000000003c08bb08 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.4 + 0x000000003c08bb54 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bb66 0x2 + .rodata.pbuf_cat.str1.4 + 0x000000003c08bb68 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bb95 0x3 + .rodata.pbuf_copy_partial_pbuf.str1.4 + 0x000000003c08bb98 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bbcb 0x1 + .rodata.pbuf_take.str1.4 + 0x000000003c08bbcc 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bbfa 0x2 + .rodata.pbuf_take_at.str1.4 + 0x000000003c08bbfc 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc13 0x1 + .rodata.pbuf_clone.str1.4 + 0x000000003c08bc14 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc25 0x3 + .rodata.__func__$0 + 0x000000003c08bc28 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc33 0x1 + .rodata.__func__$1 + 0x000000003c08bc34 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc41 0x3 + .rodata.__func__$2 + 0x000000003c08bc44 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc4e 0x2 + .rodata.__func__$3 + 0x000000003c08bc50 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc67 0x1 + .rodata.__func__$5 + 0x000000003c08bc68 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc71 0x3 + .rodata.__func__$6 + 0x000000003c08bc74 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc7d 0x3 + .rodata.__func__$7 + 0x000000003c08bc80 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc8a 0x2 + .rodata.__func__$8 + 0x000000003c08bc8c 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bc9f 0x1 + .rodata.__func__$9 + 0x000000003c08bca0 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bcb5 0x3 + .rodata.__func__$10 + 0x000000003c08bcb8 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bcc5 0x3 + .rodata.__func__$11 + 0x000000003c08bcc8 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bcdd 0x3 + .rodata.__func__$12 + 0x000000003c08bce0 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003c08bceb 0x1 + .rodata.tcp_remove_listener.str1.4 + 0x000000003c08bcec 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bd3d 0x3 + .rodata.tcp_listen_closed.str1.4 + 0x000000003c08bd40 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bd61 0x3 + .rodata.tcp_free_listen.str1.4 + 0x000000003c08bd64 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bd7d 0x3 + .rodata.tcp_free.str1.4 + 0x000000003c08bd80 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bd91 0x3 + .rodata.tcp_backlog_delayed.str1.4 + 0x000000003c08bd94 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bda9 0x3 + .rodata.tcp_listen_with_backlog_and_err.str1.4 + 0x000000003c08bdac 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bdd9 0x3 + .rodata.tcp_update_rcv_ann_wnd.str1.4 + 0x000000003c08bddc 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08be1a 0x2 + .rodata.tcp_recved.str1.4 + 0x000000003c08be1c 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08be42 0x2 + .rodata.tcp_seg_copy.str1.4 + 0x000000003c08be44 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08be5e 0x2 + .rodata.tcp_recv.str1.4 + 0x000000003c08be60 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08be87 0x1 + .rodata.tcp_sent.str1.4 + 0x000000003c08be88 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08beaf 0x1 + .rodata.tcp_err.str1.4 + 0x000000003c08beb0 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bed6 0x2 + .rodata.tcp_poll.str1.4 + 0x000000003c08bed8 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bef6 0x2 + .rodata.tcp_next_iss.str1.4 + 0x000000003c08bef8 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bf12 0x2 + .rodata.tcp_eff_send_mss_netif.str1.4 + 0x000000003c08bf14 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bf3b 0x1 + .rodata.tcp_pcb_remove.str1.4 + 0x000000003c08bf3c 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bfc3 0x1 + .rodata.tcp_abandon.str1.4 + 0x000000003c08bfc4 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08bff5 0x3 + .rodata.tcp_accept_null.str1.4 + 0x000000003c08bff8 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c015 0x3 + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 + 0x000000003c08c018 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_kill_state.str1.4 + 0x000000003c08c04c 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c05a 0x2 + .rodata.tcp_close_shutdown.str1.4 + 0x000000003c08c05c 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c095 0x3 + .rodata.tcp_slowtmr.str1.4 + 0x000000003c08c098 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c262 0x2 + .rodata.__func__$0 + 0x000000003c08c264 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c286 0x2 + .rodata.__func__$1 + 0x000000003c08c288 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c29f 0x1 + .rodata.__func__$2 + 0x000000003c08c2a0 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2ad 0x3 + .rodata.__func__$3 + 0x000000003c08c2b0 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2bf 0x1 + .rodata.__func__$4 + 0x000000003c08c2c0 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2c9 0x3 + .rodata.__func__$5 + 0x000000003c08c2cc 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$6 + 0x000000003c08c2d4 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2dd 0x3 + .rodata.__func__$7 + 0x000000003c08c2e0 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2e9 0x3 + .rodata.__func__$8 + 0x000000003c08c2ec 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c2fb 0x1 + .rodata.__func__$9 + 0x000000003c08c2fc 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c309 0x3 + .rodata.__func__$10 + 0x000000003c08c30c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$11 + 0x000000003c08c318 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c323 0x1 + .rodata.__func__$12 + 0x000000003c08c324 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c33b 0x1 + .rodata.__func__$13 + 0x000000003c08c33c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$14 + 0x000000003c08c34c 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$15 + 0x000000003c08c36c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$16 + 0x000000003c08c378 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c38f 0x1 + .rodata.__func__$17 + 0x000000003c08c390 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$18 + 0x000000003c08c3a0 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$19 + 0x000000003c08c3b4 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c3c6 0x2 + .rodata.__func__$20 + 0x000000003c08c3c8 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c3db 0x1 + .rodata.__func__$21 + 0x000000003c08c3dc 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c3f1 0x3 + .rodata.__func__$23 + 0x000000003c08c3f4 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c3fd 0x3 + .rodata.tcp_pcb_lists + 0x000000003c08c400 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003c08c400 tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x000000003c08c410 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c417 0x1 + .rodata.tcp_backoff + 0x000000003c08c418 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003c08c425 0x3 + .rodata.tcp_parseopt.str1.4 + 0x000000003c08c428 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input_delayed_close.str1.4 + 0x000000003c08c470 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c495 0x3 + .rodata.tcp_timewait_input.str1.4 + 0x000000003c08c498 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_listen_input.str1.4 + 0x000000003c08c4b8 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c4d6 0x2 + .rodata.tcp_oos_insert_segment.str1.4 + 0x000000003c08c4d8 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c4fd 0x3 + .rodata.tcp_free_acked_segments.str1.4 + 0x000000003c08c500 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_receive.str1.4 + 0x000000003c08c548 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c679 0x3 + .rodata.tcp_process.str1.4 + 0x000000003c08c67c 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c702 0x2 + .rodata.tcp_input.str1.4 + 0x000000003c08c704 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c876 0x2 + .rodata.__func__$0 + 0x000000003c08c878 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$1 + 0x000000003c08c890 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c8a7 0x1 + .rodata.__func__$2 + 0x000000003c08c8a8 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$3 + 0x000000003c08c8c0 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$4 + 0x000000003c08c8cc 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$5 + 0x000000003c08c8d8 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c8e5 0x3 + .rodata.__func__$6 + 0x000000003c08c8e8 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c8f9 0x3 + .rodata.__func__$7 + 0x000000003c08c8fc 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c90f 0x1 + .rodata.__func__$8 + 0x000000003c08c910 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003c08c91a 0x2 + .rodata.tcp_write_checks.str1.4 + 0x000000003c08c91c 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08c9da 0x2 + .rodata.tcp_output_segment_busy.str1.4 + 0x000000003c08c9dc 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08ca01 0x3 + .rodata.tcp_output_fill_options.str1.4 + 0x000000003c08ca04 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08ca3f 0x1 + .rodata.tcp_pbuf_prealloc.str1.4 + 0x000000003c08ca40 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_create_segment.str1.4 + 0x000000003c08ca98 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08caf1 0x3 + .rodata.tcp_output_alloc_header_common.str1.4 + 0x000000003c08caf4 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cb22 0x2 + .rodata.tcp_output_alloc_header.str1.4 + 0x000000003c08cb24 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cb49 0x3 + .rodata.tcp_output_segment.str1.4 + 0x000000003c08cb4c 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cbae 0x2 + .rodata.tcp_output_control_segment.str1.4 + 0x000000003c08cbb0 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cbd9 0x3 + .rodata.tcp_write.str1.4 + 0x000000003c08cbdc 0xfa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08ccd6 0x2 + .rodata.tcp_split_unsent_seg.str1.4 + 0x000000003c08ccd8 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cd3e 0x2 + .rodata.tcp_enqueue_flags.str1.4 + 0x000000003c08cd40 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.4 + 0x000000003c08ce60 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08ce7a 0x2 + .rodata.tcp_rexmit_rto_prepare.str1.4 + 0x000000003c08ce7c 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.4 + 0x000000003c08cea0 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.4 + 0x000000003c08ceb8 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08ced5 0x3 + .rodata.tcp_rst.str1.4 + 0x000000003c08ced8 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cf0f 0x1 + .rodata.tcp_send_empty_ack.str1.4 + 0x000000003c08cf10 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.4 + 0x000000003c08cf30 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cf87 0x1 + .rodata.tcp_rexmit_rto_commit.str1.4 + 0x000000003c08cf88 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cfab 0x1 + .rodata.tcp_rexmit_rto.str1.4 + 0x000000003c08cfac 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.4 + 0x000000003c08cfc8 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08cfe3 0x1 + .rodata.tcp_zero_window_probe.str1.4 + 0x000000003c08cfe4 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d007 0x1 + .rodata.__func__$0 + 0x000000003c08d008 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d01e 0x2 + .rodata.__func__$1 + 0x000000003c08d020 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d02e 0x2 + .rodata.__func__$2 + 0x000000003c08d030 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$3 + 0x000000003c08d048 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d05b 0x1 + .rodata.__func__$4 + 0x000000003c08d05c 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d077 0x1 + .rodata.__func__$5 + 0x000000003c08d078 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$6 + 0x000000003c08d090 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d0af 0x1 + .rodata.__func__$7 + 0x000000003c08d0b0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$8 + 0x000000003c08d0b8 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$9 + 0x000000003c08d0c8 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d0d3 0x1 + .rodata.__func__$10 + 0x000000003c08d0d4 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d0e3 0x1 + .rodata.__func__$11 + 0x000000003c08d0e4 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d0fa 0x2 + .rodata.__func__$12 + 0x000000003c08d0fc 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d113 0x1 + .rodata.__func__$13 + 0x000000003c08d114 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$14 + 0x000000003c08d12c 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d13f 0x1 + .rodata.__func__$15 + 0x000000003c08d140 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d14b 0x1 + .rodata.__func__$16 + 0x000000003c08d14c 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d15e 0x2 + .rodata.__func__$17 + 0x000000003c08d160 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d16d 0x3 + .rodata.__func__$18 + 0x000000003c08d170 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d185 0x3 + .rodata.__func__$19 + 0x000000003c08d188 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d19b 0x1 + .rodata.__func__$20 + 0x000000003c08d19c 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d1ae 0x2 + .rodata.__func__$21 + 0x000000003c08d1b0 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d1c1 0x3 + .rodata.__func__$22 + 0x000000003c08d1c4 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003c08d1ce 0x2 + .rodata.sys_timeout_abs.str1.4 + 0x000000003c08d1d0 0x6e esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003c08d23e 0x2 + .rodata.sys_timeout.str1.4 + 0x000000003c08d240 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003c08d276 0x2 + .rodata.sys_timeouts_sleeptime.str1.4 + 0x000000003c08d278 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003c08d28a 0x2 + .rodata.__func__$0 + 0x000000003c08d28c 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003c08d2a3 0x1 + .rodata.__func__$1 + 0x000000003c08d2a4 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$2 + 0x000000003c08d2b0 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x000000003c08d2c0 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003c08d2c0 lwip_cyclic_timers + .rodata.dhcp_option_short.str1.4 + 0x000000003c08d2e0 0x6b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d34b 0x1 + .rodata.dhcp_option.str1.4 + 0x000000003c08d34c 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d38e 0x2 + .rodata.dhcp_option_byte.str1.4 + 0x000000003c08d390 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d3c5 0x3 + .rodata.dhcp_option_long.str1.4 + 0x000000003c08d3c8 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d402 0x2 + .rodata.dhcp_create_msg.str1.4 + 0x000000003c08d404 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname.str1.4 + 0x000000003c08d444 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.4 + 0x000000003c08d460 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.4 + 0x000000003c08d484 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d4a9 0x3 + .rodata.dhcp_parse_reply.str1.4 + 0x000000003c08d4ac 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d4bd 0x3 + .rodata.dhcp_recv.str1.4 + 0x000000003c08d4c0 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.4 + 0x000000003c08d4dc 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_network_changed.str1.4 + 0x000000003c08d520 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$0 + 0x000000003c08d534 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d549 0x3 + .rodata.__func__$1 + 0x000000003c08d54c 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d55d 0x3 + .rodata.__func__$2 + 0x000000003c08d560 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d56a 0x2 + .rodata.__func__$3 + 0x000000003c08d56c 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d582 0x2 + .rodata.__func__$4 + 0x000000003c08d584 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d59a 0x2 + .rodata.__func__$5 + 0x000000003c08d59c 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d5a9 0x3 + .rodata.__func__$6 + 0x000000003c08d5ac 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7 + 0x000000003c08d5bc 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d5cd 0x3 + .rodata.__func__$8 + 0x000000003c08d5d0 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d5e5 0x3 + .rodata.__func__$9 + 0x000000003c08d5e8 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d5f9 0x3 + .rodata.__func__$10 + 0x000000003c08d5fc 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$11 + 0x000000003c08d608 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003c08d61a 0x2 + .rodata.__func__$13 + 0x000000003c08d61c 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x000000003c08d62c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.free_etharp_q.str1.4 + 0x000000003c08d630 0x4d esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d67d 0x3 + .rodata.etharp_find_entry.str1.4 + 0x000000003c08d680 0x95 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d715 0x3 + .rodata.etharp_update_arp_entry.str1.4 + 0x000000003c08d718 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.4 + 0x000000003c08d73c 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x85 (size before relaxing) + *fill* 0x000000003c08d7b1 0x3 + .rodata.etharp_get_entry.str1.4 + 0x000000003c08d7b4 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.4 + 0x000000003c08d7d4 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.4 + 0x000000003c08d804 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d856 0x2 + .rodata.__func__$0 + 0x000000003c08d858 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d865 0x3 + .rodata.__func__$1 + 0x000000003c08d868 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d883 0x1 + .rodata.__func__$2 + 0x000000003c08d884 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d892 0x2 + .rodata.__func__$3 + 0x000000003c08d894 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d89f 0x1 + .rodata.__func__$4 + 0x000000003c08d8a0 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6 + 0x000000003c08d8b8 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d8ca 0x2 + .rodata.__func__$8 + 0x000000003c08d8cc 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003c08d8da 0x2 + .rodata.ip4_output_if_opt_src.str1.4 + 0x000000003c08d8dc 0x69 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003c08d945 0x3 + .rodata.__func__$1 + 0x000000003c08d948 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003c08d95e 0x2 + .rodata.ip_addr_broadcast + 0x000000003c08d960 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003c08d960 ip_addr_broadcast + .rodata.ip_addr_any + 0x000000003c08d978 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003c08d978 ip_addr_any + .rodata.ip4_frag.str1.4 + 0x000000003c08d990 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003c08d9e3 0x1 + .rodata.__func__$0 + 0x000000003c08d9e4 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003c08d9ed 0x3 + .rodata.ip6_output_if_src.str1.4 + 0x000000003c08d9f0 0x5e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000003c08da4e 0x2 + .rodata.__func__$1 + 0x000000003c08da50 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000003c08da62 0x2 + .rodata.ip6_addr_any + 0x000000003c08da64 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x000000003c08da64 ip6_addr_any + .rodata.ip6_frag.str1.4 + 0x000000003c08da7c 0x4b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x6c (size before relaxing) + *fill* 0x000000003c08dac7 0x1 + .rodata.__func__$0 + 0x000000003c08dac8 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003c08dad1 0x3 + .rodata.nd6_process_autoconfig_prefix.str1.4 + 0x000000003c08dad4 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08db16 0x2 + .rodata.nd6_free_q.str1.4 + 0x000000003c08db18 0xd esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x29 (size before relaxing) + *fill* 0x000000003c08db25 0x3 + .rodata.nd6_send_na.str1.4 + 0x000000003c08db28 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_entry.str1.4 + 0x000000003c08db43 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08db43 0x1 + .rodata.nd6_find_route.str1.4 + 0x000000003c08db44 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08db6f 0x1 + .rodata.__func__$0 + 0x000000003c08db70 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08db87 0x1 + .rodata.__func__$2 + 0x000000003c08db88 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08db97 0x1 + .rodata.__func__$3 + 0x000000003c08db98 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$4 + 0x000000003c08dba0 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08dbab 0x1 + .rodata.__func__$5 + 0x000000003c08dbac 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003c08dbca 0x2 + .rodata.__func__$6 + 0x000000003c08dbcc 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7 + 0x000000003c08dbd8 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x000000003c08dbe4 0x63 esp-idf/lwip/liblwip.a(ethernet.c.obj) + *fill* 0x000000003c08dc47 0x1 + .rodata.__func__$0 + 0x000000003c08dc48 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x000000003c08dc58 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003c08dc58 ethzero + *fill* 0x000000003c08dc5e 0x2 + .rodata.ethbroadcast + 0x000000003c08dc60 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003c08dc60 ethbroadcast + *fill* 0x000000003c08dc66 0x2 + .rodata.sys_mutex_lock.str1.4 + 0x000000003c08dc68 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mutex_unlock.str1.4 + 0x000000003c08dcb8 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dcd1 0x3 + .rodata.sys_sem_new.str1.4 + 0x000000003c08dcd4 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dd1d 0x3 + .rodata.sys_sem_signal.str1.4 + 0x000000003c08dd20 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dd42 0x2 + .rodata.sys_arch_sem_wait.str1.4 + 0x000000003c08dd44 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.4 + 0x000000003c08dd5c 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dd6d 0x3 + .rodata.sys_arch_mbox_fetch.str1.4 + 0x000000003c08dd70 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dd82 0x2 + .rodata.sys_mbox_free.str1.4 + 0x000000003c08dd84 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dd9a 0x2 + .rodata.sys_init.str1.4 + 0x000000003c08dd9c 0x51 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dded 0x3 + .rodata.sys_thread_sem_init.str1.4 + 0x000000003c08ddf0 0x37 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08de27 0x1 + .rodata.sys_thread_tcpip.str1.4 + 0x000000003c08de28 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08de55 0x3 + .rodata.__func__$0 + 0x000000003c08de58 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08de69 0x3 + .rodata.__func__$2 + 0x000000003c08de6c 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08de7a 0x2 + .rodata.__func__$3 + 0x000000003c08de7c 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08de93 0x1 + .rodata.__func__$4 + 0x000000003c08de94 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6 + 0x000000003c08dea8 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08deb6 0x2 + .rodata.__func__$7 + 0x000000003c08deb8 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08deca 0x2 + .rodata.__func__$8 + 0x000000003c08decc 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08dedb 0x1 + .rodata.__func__$9 + 0x000000003c08dedc 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$10 + 0x000000003c08dee8 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08def9 0x3 + .rodata.__func__$11 + 0x000000003c08defc 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003c08df0b 0x1 + .rodata.esp_vfs_lwip_sockets_register.str1.4 + 0x000000003c08df0c 0x6f esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003c08df7b 0x1 + .rodata.__func__$0 + 0x000000003c08df7c 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003c08df9a 0x2 + .rodata.free_socket_locked.str1.4 + 0x000000003c08df9c 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.sock_inc_used_locked.str1.4 + 0x000000003c08dfdc 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08dfff 0x1 + .rodata.lwip_unlink_select_cb.str1.4 + 0x000000003c08e000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr.str1.4 + 0x000000003c08e030 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_selscan.str1.4 + 0x000000003c08e064 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_select_dec_sockets_used.str1.4 + 0x000000003c08e070 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e091 0x3 + .rodata.lwip_pollscan.str1.4 + 0x000000003c08e094 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e0ad 0x3 + .rodata.lwip_recv_tcp.str1.4 + 0x000000003c08e0b0 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x78 (size before relaxing) + .rodata.lwip_recvfrom_udp_raw.str1.4 + 0x000000003c08e11c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_close.str1.4 + 0x000000003c08e128 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e13f 0x1 + .rodata.lwip_recvfrom.str1.4 + 0x000000003c08e140 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e14e 0x2 + .rodata.__func__$6 + 0x000000003c08e150 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e16d 0x3 + .rodata.__func__$7 + 0x000000003c08e170 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e17d 0x3 + .rodata.__func__$8 + 0x000000003c08e180 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e196 0x2 + .rodata.__func__$9 + 0x000000003c08e198 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e1ad 0x3 + .rodata.__func__$10 + 0x000000003c08e1b0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$12 + 0x000000003c08e1bc 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e1d2 0x2 + .rodata.__func__$13 + 0x000000003c08e1d4 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$14 + 0x000000003c08e1e8 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e1f6 0x2 + .rodata.__func__$15 + 0x000000003c08e1f8 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e203 0x1 + .rodata.__func__$16 + 0x000000003c08e204 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$17 + 0x000000003c08e210 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e223 0x1 + .rodata.__func__$19 + 0x000000003c08e224 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003c08e232 0x2 + .rodata.tcpip_thread_handle_msg.str1.4 + 0x000000003c08e234 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e27e 0x2 + .rodata.tcpip_inpkt.str1.4 + 0x000000003c08e280 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e28d 0x3 + .rodata.tcpip_send_msg_wait_sem.str1.4 + 0x000000003c08e290 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e2aa 0x2 + .rodata.tcpip_init.str1.4 + 0x000000003c08e2ac 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$0 + 0x000000003c08e2d4 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$1 + 0x000000003c08e2ec 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e2f9 0x3 + .rodata.__func__$2 + 0x000000003c08e2fc 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e307 0x1 + .rodata.__func__$5 + 0x000000003c08e308 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e317 0x1 + .rodata.__func__$6 + 0x000000003c08e318 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7 + 0x000000003c08e330 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003c08e343 0x1 + .rodata.__func__$9 + 0x000000003c08e344 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.ip_addr_any_type + 0x000000003c08e350 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003c08e350 ip_addr_any_type + .rodata.do_memp_malloc_pool.str1.4 + 0x000000003c08e368 0x4e esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003c08e3b6 0x2 + .rodata.do_memp_free_pool.str1.4 + 0x000000003c08e3b8 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$0 + 0x000000003c08e3d8 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003c08e3ea 0x2 + .rodata.__func__$2 + 0x000000003c08e3ec 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_pools + 0x000000003c08e400 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e400 memp_pools + .rodata.memp_PBUF_POOL + 0x000000003c08e448 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e448 memp_PBUF_POOL + *fill* 0x000000003c08e44a 0x2 + .rodata.memp_PBUF + 0x000000003c08e44c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e44c memp_PBUF + *fill* 0x000000003c08e44e 0x2 + .rodata.memp_MLD6_GROUP + 0x000000003c08e450 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e450 memp_MLD6_GROUP + *fill* 0x000000003c08e452 0x2 + .rodata.memp_ND6_QUEUE + 0x000000003c08e454 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e454 memp_ND6_QUEUE + *fill* 0x000000003c08e456 0x2 + .rodata.memp_NETDB + 0x000000003c08e458 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e458 memp_NETDB + *fill* 0x000000003c08e45a 0x2 + .rodata.memp_SYS_TIMEOUT + 0x000000003c08e45c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e45c memp_SYS_TIMEOUT + *fill* 0x000000003c08e45e 0x2 + .rodata.memp_IGMP_GROUP + 0x000000003c08e460 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e460 memp_IGMP_GROUP + *fill* 0x000000003c08e462 0x2 + .rodata.memp_ARP_QUEUE + 0x000000003c08e464 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e464 memp_ARP_QUEUE + *fill* 0x000000003c08e466 0x2 + .rodata.memp_TCPIP_MSG_INPKT + 0x000000003c08e468 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e468 memp_TCPIP_MSG_INPKT + *fill* 0x000000003c08e46a 0x2 + .rodata.memp_TCPIP_MSG_API + 0x000000003c08e46c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e46c memp_TCPIP_MSG_API + *fill* 0x000000003c08e46e 0x2 + .rodata.memp_NETCONN + 0x000000003c08e470 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e470 memp_NETCONN + *fill* 0x000000003c08e472 0x2 + .rodata.memp_NETBUF + 0x000000003c08e474 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e474 memp_NETBUF + *fill* 0x000000003c08e476 0x2 + .rodata.memp_FRAG_PBUF + 0x000000003c08e478 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e478 memp_FRAG_PBUF + *fill* 0x000000003c08e47a 0x2 + .rodata.memp_TCP_SEG + 0x000000003c08e47c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e47c memp_TCP_SEG + *fill* 0x000000003c08e47e 0x2 + .rodata.memp_TCP_PCB_LISTEN + 0x000000003c08e480 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e480 memp_TCP_PCB_LISTEN + *fill* 0x000000003c08e482 0x2 + .rodata.memp_TCP_PCB + 0x000000003c08e484 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e484 memp_TCP_PCB + *fill* 0x000000003c08e486 0x2 + .rodata.memp_UDP_PCB + 0x000000003c08e488 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e488 memp_UDP_PCB + *fill* 0x000000003c08e48a 0x2 + .rodata.memp_RAW_PCB + 0x000000003c08e48c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003c08e48c memp_RAW_PCB + *fill* 0x000000003c08e48e 0x2 + .rodata.netif_loopif_init.str1.4 + 0x000000003c08e490 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e4df 0x1 + .rodata.netif_do_set_netmask.str1.4 + 0x000000003c08e4e0 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_issue_reports.str1.4 + 0x000000003c08e4f0 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e513 0x1 + .rodata.netif_poll.str1.4 + 0x000000003c08e514 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loop_output.str1.4 + 0x000000003c08e5ac 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_get_ip6_addr_match.str1.4 + 0x000000003c08e61c 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e66e 0x2 + .rodata.netif_add_ext_callback.str1.4 + 0x000000003c08e670 0x2f esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e69f 0x1 + .rodata.netif_remove_ext_callback.str1.4 + 0x000000003c08e6a0 0xd esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e6ad 0x3 + .rodata.netif_invoke_ext_callback.str1.4 + 0x000000003c08e6b0 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e6c6 0x2 + .rodata.netif_add.str1.4 + 0x000000003c08e6c8 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e70a 0x2 + .rodata.netif_ip6_addr_set_parts.str1.4 + 0x000000003c08e70c 0xe esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000003c08e71a 0x2 + .rodata.netif_ip6_addr_set.str1.4 + 0x000000003c08e71c 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e762 0x2 + .rodata.__func__$0 + 0x000000003c08e764 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e77e 0x2 + .rodata.__func__$1 + 0x000000003c08e780 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e79a 0x2 + .rodata.__func__$2 + 0x000000003c08e79c 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e7b3 0x1 + .rodata.__func__$5 + 0x000000003c08e7b4 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e7cd 0x3 + .rodata.__func__$6 + 0x000000003c08e7d0 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e7e9 0x3 + .rodata.__func__$7 + 0x000000003c08e7ec 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e805 0x3 + .rodata.__func__$8 + 0x000000003c08e808 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e81b 0x1 + .rodata.__func__$9 + 0x000000003c08e81c 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e827 0x1 + .rodata.__func__$10 + 0x000000003c08e828 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e83a 0x2 + .rodata.__func__$11 + 0x000000003c08e83c 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$12 + 0x000000003c08e84c 0x15 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e861 0x3 + .rodata.__func__$13 + 0x000000003c08e864 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$14 + 0x000000003c08e878 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$15 + 0x000000003c08e88c 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e896 0x2 + .rodata.__func__$17 + 0x000000003c08e898 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003c08e8aa 0x2 + .rodata.raw_input.str1.4 + 0x000000003c08e8ac 0x75 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003c08e921 0x3 + .rodata.raw_sendto_if_src.str1.4 + 0x000000003c08e924 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003c08e96e 0x2 + .rodata.__func__$0 + 0x000000003c08e970 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003c08e982 0x2 + .rodata.__func__$1 + 0x000000003c08e984 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003c08e98e 0x2 + .rodata.udp_input_local_match.str1.4 + 0x000000003c08e990 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08ea05 0x3 + .rodata.udp_input.str1.4 + 0x000000003c08ea08 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08ea57 0x1 + .rodata.udp_sendto_if_src.str1.4 + 0x000000003c08ea58 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08ea86 0x2 + .rodata.__func__$0 + 0x000000003c08ea88 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08ea9a 0x2 + .rodata.__func__$1 + 0x000000003c08ea9c 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08eab2 0x2 + .rodata.__func__$2 + 0x000000003c08eab4 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003c08eabe 0x2 + .rodata.icmp_send_response.str1.4 + 0x000000003c08eac0 0x5b esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003c08eb1b 0x1 + .rodata.icmp_input.str1.4 + 0x000000003c08eb1c 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003c08eb86 0x2 + .rodata.__func__$0 + 0x000000003c08eb88 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003c08eb9b 0x1 + .rodata.__func__$1 + 0x000000003c08eb9c 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003c08eba7 0x1 + .rodata.igmp_send.str1.4 + 0x000000003c08eba8 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003c08ec13 0x1 + .rodata.igmp_lookup_group.str1.4 + 0x000000003c08ec14 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003c08ec89 0x3 + .rodata.__func__$0 + 0x000000003c08ec8c 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003c08ec96 0x2 + .rodata.__func__$1 + 0x000000003c08ec98 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003c08ecaa 0x2 + .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 + 0x000000003c08ecac 0x5c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response.str1.4 + 0x000000003c08ed08 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$1 + 0x000000003c08ed2c 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003c08ed55 0x3 + .rodata.__func__$2 + 0x000000003c08ed58 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.4 + 0x000000003c08ed6c 0x89 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003c08edf5 0x3 + .rodata.netconn_write_vectors_partly.str1.4 + 0x000000003c08edf8 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv_data.str1.4 + 0x000000003c08ee1b 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003c08ee1b 0x1 + .rodata.__func__$1 + 0x000000003c08ee1c 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003c08ee39 0x3 + .rodata.__func__$3 + 0x000000003c08ee3c 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003c08ee4e 0x2 + .rodata.lwip_netconn_err_to_msg.str1.4 + 0x000000003c08ee50 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_tcp.str1.4 + 0x000000003c08ee8c 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08eeee 0x2 + .rodata.lwip_netconn_do_writemore.str1.4 + 0x000000003c08eef0 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08efbb 0x1 + .rodata.lwip_netconn_do_close_internal.str1.4 + 0x000000003c08efbc 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f047 0x1 + .rodata.lwip_netconn_is_err_msg.str1.4 + 0x000000003c08f048 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_free.str1.4 + 0x000000003c08f054 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.4 + 0x000000003c08f0fc 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f112 0x2 + .rodata.lwip_netconn_do_delconn.str1.4 + 0x000000003c08f114 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f163 0x1 + .rodata.lwip_netconn_do_write.str1.4 + 0x000000003c08f164 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.4 + 0x000000003c08f178 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f18d 0x3 + .rodata.lwip_netconn_do_close.str1.4 + 0x000000003c08f190 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$0 + 0x000000003c08f1b4 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f1ca 0x2 + .rodata.__func__$1 + 0x000000003c08f1cc 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$2 + 0x000000003c08f1e4 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f1fa 0x2 + .rodata.__func__$6 + 0x000000003c08f1fc 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7 + 0x000000003c08f214 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f222 0x2 + .rodata.__func__$8 + 0x000000003c08f224 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f231 0x3 + .rodata.__func__$11 + 0x000000003c08f234 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f23d 0x3 + .rodata.__func__$12 + 0x000000003c08f240 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f25f 0x1 + .rodata.__func__$13 + 0x000000003c08f260 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f27a 0x2 + .rodata.__func__$14 + 0x000000003c08f27c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003c08f285 0x3 + .rodata.__func__$15 + 0x000000003c08f288 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$16 + 0x000000003c08f2a0 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$19 + 0x000000003c08f2a8 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x000000003c08f2c0 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003c08f2c0 netconn_closed + .rodata.netconn_reset + 0x000000003c08f2c1 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003c08f2c1 netconn_reset + .rodata.netconn_aborted + 0x000000003c08f2c2 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003c08f2c2 netconn_aborted + .rodata.netconn_deleted + 0x000000003c08f2c3 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003c08f2c3 netconn_deleted + .rodata.err_to_errno_table + 0x000000003c08f2c4 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.4 + 0x000000003c08f308 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003c08f357 0x1 + .rodata.__func__$0 + 0x000000003c08f358 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003c08f365 0x3 + .rodata.esp_netif_list_unlock.str1.4 + 0x000000003c08f368 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003c08f3a3 0x1 + .rodata.esp_netif_remove_from_list.str1.4 + 0x000000003c08f3a4 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.esp_netif_next.str1.4 + 0x000000003c08f3bc 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003c08f40e 0x2 + .rodata.__func__$0 + 0x000000003c08f410 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003c08f42b 0x1 + .rodata.__func__$1 + 0x000000003c08f42c 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003c08f442 0x2 + .rodata.str1.4 + 0x000000003c08f444 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003c08f44d 0x3 + .rodata.esp_netif_config_sanity_check.str1.4 + 0x000000003c08f450 0x123 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f573 0x1 + .rodata.esp_netif_dhcps_cb.str1.4 + 0x000000003c08f574 0xa0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_nd6_cb.str1.4 + 0x000000003c08f614 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f659 0x3 + .rodata.esp_netif_ip_lost_timer.str1.4 + 0x000000003c08f65c 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f6a5 0x3 + .rodata.esp_netif_init_configuration.str1.4 + 0x000000003c08f6a8 0x5f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f707 0x1 + .rodata.esp_netif_dhcps_start_api.str1.4 + 0x000000003c08f708 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f73e 0x2 + .rodata.esp_netif_dhcpc_start_api.str1.4 + 0x000000003c08f740 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f771 0x3 + .rodata.esp_netif_start_api.str1.4 + 0x000000003c08f774 0x7a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f7ee 0x2 + .rodata.esp_netif_init.str1.4 + 0x000000003c08f7f0 0xbd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f8ad 0x3 + .rodata.esp_netif_new.str1.4 + 0x000000003c08f8b0 0x142 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08f9f2 0x2 + .rodata.esp_netif_attach.str1.4 + 0x000000003c08f9f4 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08fa3e 0x2 + .rodata.esp_netif_internal_dhcpc_cb.str1.4 + 0x000000003c08fa40 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08fa83 0x1 + .rodata.__func__$3 + 0x000000003c08fa84 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$4 + 0x000000003c08fa98 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003c08faa6 0x2 + .rodata.g_wifi_default_wpa_crypto_funcs + 0x000000003c08faa8 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x000000003c08faa8 g_wifi_default_wpa_crypto_funcs + .rodata.esp_wifi_config_info.str1.4 + 0x000000003c08fb14 0x180 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.s_set_default_wifi_log_level.str1.4 + 0x000000003c08fc94 0x23 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003c08fcb7 0x1 + .rodata.esp_wifi_deinit.str1.4 + 0x000000003c08fcb8 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003c08fd59 0x3 + .rodata.esp_wifi_init.str1.4 + 0x000000003c08fd5c 0xd2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003c08fe2e 0x2 + .rodata.str1.4 + 0x000000003c08fe30 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003c08fe3b 0x1 + .rodata.wifi_default_action_sta_got_ip.str1.4 + 0x000000003c08fe3c 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.wifi_start.str1.4 + 0x000000003c08fe94 0xbb esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003c08ff4f 0x1 + .rodata.create_and_attach.str1.4 + 0x000000003c08ff50 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003c08ff8f 0x1 + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x000000003c08ff90 0xa4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xac (size before relaxing) + .rodata.esp_netif_create_default_wifi_sta.str1.4 + 0x000000003c090034 0x51 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003c090085 0x3 + .rodata.__func__$2 + 0x000000003c090088 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003c0900aa 0x2 + .rodata.esp_wifi_create_if_driver.str1.4 + 0x000000003c0900ac 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.esp_wifi_register_if_rxcb.str1.4 + 0x000000003c0900fc 0xe8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.small_prime + 0x000000003c0901e4 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_cipher_definitions + 0x000000003c090484 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003c090484 mbedtls_cipher_definitions + .rodata.str1.4 + 0x000000003c090604 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_star_no_tag_info + 0x000000003c0908c8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_star_no_tag_info + 0x000000003c0908e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_star_no_tag_info + 0x000000003c090908 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_info + 0x000000003c090928 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_info + 0x000000003c090948 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_info + 0x000000003c090968 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aria_info + 0x000000003c090988 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_gcm_info + 0x000000003c0909b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_gcm_info + 0x000000003c0909d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_gcm_info + 0x000000003c0909f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aria_info + 0x000000003c090a14 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ctr_info + 0x000000003c090a40 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ctr_info + 0x000000003c090a60 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ctr_info + 0x000000003c090a80 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cfb128_info + 0x000000003c090aa0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cfb128_info + 0x000000003c090ac0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cfb128_info + 0x000000003c090ae0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cbc_info + 0x000000003c090b00 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cbc_info + 0x000000003c090b20 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cbc_info + 0x000000003c090b40 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ecb_info + 0x000000003c090b60 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ecb_info + 0x000000003c090b80 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ecb_info + 0x000000003c090ba0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_info + 0x000000003c090bc0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x000000003c090bec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x000000003c090c0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x000000003c090c2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x000000003c090c4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x000000003c090c6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x000000003c090c8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x000000003c090cac 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x000000003c090cd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x000000003c090cf8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x000000003c090d18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x000000003c090d38 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x000000003c090d64 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x000000003c090d84 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x000000003c090da4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x000000003c090dd0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x000000003c090df0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x000000003c090e10 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x000000003c090e30 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x000000003c090e50 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x000000003c090e70 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x000000003c090e90 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x000000003c090eb0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x000000003c090ed0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x000000003c090ef0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x000000003c090f10 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x000000003c090f30 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x000000003c090f50 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x000000003c090f70 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x000000003c090f90 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x000000003c090fb0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.mbedtls_md_info_from_string.str1.4 + 0x000000003c090fdc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x2f (size before relaxing) + .rodata.mbedtls_sha512_info + 0x000000003c090fe4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c090fe4 mbedtls_sha512_info + .rodata.mbedtls_sha384_info + 0x000000003c090ff0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c090ff0 mbedtls_sha384_info + .rodata.mbedtls_sha256_info + 0x000000003c090ffc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c090ffc mbedtls_sha256_info + .rodata.mbedtls_sha224_info + 0x000000003c091008 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c091008 mbedtls_sha224_info + .rodata.mbedtls_sha1_info + 0x000000003c091014 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c091014 mbedtls_sha1_info + .rodata.mbedtls_md5_info + 0x000000003c091020 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000003c091020 mbedtls_md5_info + .rodata.esp_aes_validate_input.str1.4 + 0x000000003c09102c 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c0910bb 0x1 + .rodata.esp_aes_isr_initialise.str1.4 + 0x000000003c0910bc 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_dma_wait_complete.str1.4 + 0x000000003c0910f4 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c091142 0x2 + .rodata.esp_aes_process_dma.str1.4 + 0x000000003c091144 0x11b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c09125f 0x1 + .rodata.esp_aes_crypt_cbc.str1.4 + 0x000000003c091260 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c091287 0x1 + .rodata.esp_aes_crypt_cfb128.str1.4 + 0x000000003c091288 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c0912b6 0x2 + .rodata.esp_aes_crypt_ctr.str1.4 + 0x000000003c0912b8 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x000000003c091341 0x3 + .rodata.__func__$0 + 0x000000003c091344 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_mpi_isr_initialise.str1.4 + 0x000000003c091358 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + *fill* 0x000000003c09135f 0x1 + .rodata.esp_mpi_wait_intr.str1.4 + 0x000000003c091360 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003c0913ae 0x2 + .rodata.mpi_mult_mpi_failover_mod_mult.str1.4 + 0x000000003c0913b0 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003c09141f 0x1 + .rodata.__func__$0 + 0x000000003c091420 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003c09143f 0x1 + .rodata.sha1_padding + 0x000000003c091440 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x000000003c091480 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x000000003c0914c0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.esp_aes_gcm_starts.str1.4 + 0x000000003c091540 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x63 (size before relaxing) + .rodata.esp_aes_gcm_update.str1.4 + 0x000000003c09154c 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0xbb (size before relaxing) + .rodata.last4 0x000000003c0915b0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata 0x000000003c091630 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is2 + 0x000000003c091660 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is1 + 0x000000003c091760 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb2 + 0x000000003c091860 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb1 + 0x000000003c091960 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.str1.4 + 0x000000003c091a60 0xc71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xc89 (size before relaxing) + *fill* 0x000000003c0926d1 0x3 + .rodata.oid_md_alg + 0x000000003c0926d4 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.crypto_shared_gdma_init.str1.4 + 0x000000003c092760 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + *fill* 0x000000003c0927b2 0x2 + .rodata 0x000000003c0927b4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata.esp_sha_dma_process.str1.4 + 0x000000003c0927cc 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003c09281f 0x1 + .rodata.esp_sha_512_t_init_hash.str1.4 + 0x000000003c092820 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma.str1.4 + 0x000000003c0928bc 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.str1.1 + 0x000000003c092946 0x1f0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata.str1.1 + 0x000000003c092b36 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata.ieee80211_ethbroadcast + 0x000000003c092b56 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x000000003c092b56 ieee80211_ethbroadcast + .rodata.str1.1 + 0x000000003c092b5c 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata.str1.1 + 0x000000003c092b6f 0x82 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0x92 (size before relaxing) + .rodata.str1.1 + 0x000000003c092bf1 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata.str1.1 + 0x000000003c092c10 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata 0x000000003c092c1f 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata.str1.1 + 0x000000003c092c2f 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .rodata.str1.1 + 0x000000003c092c2f 0xac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + *fill* 0x000000003c092cdb 0x1 + .rodata 0x000000003c092cdc 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$57 + 0x000000003c092cf8 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata.str1.1 + 0x000000003c092d1c 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x2b (size before relaxing) + .rodata.CSWTCH$132 + 0x000000003c092d3f 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$13549 + 0x000000003c092d43 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata.str1.1 + 0x000000003c092d59 0x203 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_set + 0x000000003c092f5c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_compare_cfg_diff + 0x000000003c092f7c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_load + 0x000000003c092f9c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata.str1.1 + 0x000000003c092fbc 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata 0x000000003c092fcf 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.info$11760 + 0x000000003c092fdd 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.s_ac_param$11765 + 0x000000003c092fe6 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.param$11766 + 0x000000003c093002 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata.str1.1 + 0x000000003c09300b 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x2b (size before relaxing) + *fill* 0x000000003c09302d 0x3 + .rodata.ieee80211_11g_table + 0x000000003c093030 0xd4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x000000003c093104 0xd4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_is_40mhz_valid_bw + 0x000000003c0931d8 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .rodata.str1.1 + 0x000000003c0931f4 0x3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .rodata.str1.1 + 0x000000003c0931f7 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata.str1.1 + 0x000000003c093208 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x59 (size before relaxing) + *fill* 0x000000003c093252 0x2 + .rodata.ieee80211_sta_new_state + 0x000000003c093254 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata 0x000000003c09326c 0x4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.state_desc$11716 + 0x000000003c093270 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x000000003c093294 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x000000003c0932e2 0x2 + .rodata.wifi_set_rx_policy + 0x000000003c0932e4 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$147 + 0x000000003c093310 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$10435 + 0x000000003c093316 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10456 + 0x000000003c09332c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10383 + 0x000000003c093344 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10389 + 0x000000003c09335c 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10395 + 0x000000003c093376 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10401 + 0x000000003c093393 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10407 + 0x000000003c0933a1 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10415 + 0x000000003c0933b6 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10423 + 0x000000003c0933c7 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10429 + 0x000000003c0933db 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10444 + 0x000000003c0933ef 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10450 + 0x000000003c0933fe 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10462 + 0x000000003c09340e 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10468 + 0x000000003c093429 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10486 + 0x000000003c093448 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10480 + 0x000000003c093466 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10474 + 0x000000003c093480 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10492 + 0x000000003c09349a 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata.str1.1 + 0x000000003c0934ac 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata.str1.1 + 0x000000003c0934b5 0x97 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0xa3 (size before relaxing) + .rodata.CSWTCH$151 + 0x000000003c09354c 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + *fill* 0x000000003c093556 0x2 + .rodata.CSWTCH$121 + 0x000000003c093558 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata.str1.1 + 0x000000003c093594 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .rodata.str1.1 + 0x000000003c0935a7 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata.str1.1 + 0x000000003c0935b0 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + *fill* 0x000000003c0935b7 0x1 + .rodata.lmacProcessTxComplete + 0x000000003c0935b8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10222 + 0x000000003c0935d0 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10176 + 0x000000003c0935dc 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10149 + 0x000000003c0935ef 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10131 + 0x000000003c093605 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10120 + 0x000000003c09361b 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10102 + 0x000000003c093631 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10073 + 0x000000003c09364a 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10056 + 0x000000003c093664 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$10012 + 0x000000003c09367a 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9948 + 0x000000003c09368f 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9910 + 0x000000003c0936b0 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.__FUNCTION__$9854 + 0x000000003c0936c5 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata.str1.1 + 0x000000003c0936de 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x12 (size before relaxing) + *fill* 0x000000003c0936e3 0x1 + .rodata 0x000000003c0936e4 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.CSWTCH$284 + 0x000000003c09375c 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata.CSWTCH$239 + 0x000000003c093765 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + *fill* 0x000000003c09376e 0x2 + .rodata.rcUpdateAMPDUParam + 0x000000003c093770 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.rcUpdatePhyMode + 0x000000003c0937b0 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.str1.1 + 0x000000003c0937cc 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$51 + 0x000000003c0937d2 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.CSWTCH$49 + 0x000000003c0937fd 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$12219 + 0x000000003c093828 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.__FUNCTION__$12132 + 0x000000003c09383a 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata.str1.1 + 0x000000003c093844 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata 0x000000003c09385f 0x6 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + *fill* 0x000000003c093865 0x3 + .rodata.g_spi_lock_main_flash_dev + 0x000000003c093868 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x000000003c093868 g_spi_lock_main_flash_dev + .rodata.load_partitions.str1.4 + 0x000000003c09386c 0x79 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c0938e5 0x3 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003c0938e8 0x36 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c09391e 0x2 + .rodata.esp_partition_next.str1.4 + 0x000000003c093920 0x2f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c09394f 0x1 + .rodata.esp_partition_get.str1.4 + 0x000000003c093950 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c093961 0x3 + .rodata.__func__$2 + 0x000000003c093964 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c093976 0x2 + .rodata.__func__$3 + 0x000000003c093978 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x000000003c09398b 0x1 + .rodata.esp_partition_write.str1.4 + 0x000000003c09398c 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003c0939d2 0x2 + .rodata.__func__$0 + 0x000000003c0939d4 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003c0939e7 0x1 + .rodata.__func__$1 + 0x000000003c0939e8 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003c093a02 0x2 + .rodata.__func__$2 + 0x000000003c093a04 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x000000003c093a1c 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003c093a33 0x1 + .rodata.__func__$4 + 0x000000003c093a34 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x000000003c093a48 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x000000003c093a5b 0x1 + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003c093a5c 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c093abb 0x1 + .rodata.__func__$1 + 0x000000003c093abc 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c093ada 0x2 + .rodata.temperature_sensor_attributes + 0x000000003c093adc 0x64 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + 0x000000003c093adc temperature_sensor_attributes + .rodata.esp_fill_random.str1.4 + 0x000000003c093b40 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x38 (size before relaxing) + .rodata.__func__$0 + 0x000000003c093b6c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.esp_base_mac_addr_set.str1.4 + 0x000000003c093b7c 0x77 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003c093bf3 0x1 + .rodata.esp_base_mac_addr_get.str1.4 + 0x000000003c093bf4 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_efuse_mac_get_custom.str1.4 + 0x000000003c093c28 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003c093c9e 0x2 + .rodata.esp_derive_local_mac.str1.4 + 0x000000003c093ca0 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003c093cd2 0x2 + .rodata.esp_read_mac.str1.4 + 0x000000003c093cd4 0xa1 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003c093d75 0x3 + .rodata.__func__$0 + 0x000000003c093d78 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x000000003c093d92 0x2 + .rodata.gdma_release_group_handle.str1.4 + 0x000000003c093d94 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000003c093dbb 0x1 + .rodata.gdma_release_pair_handle.str1.4 + 0x000000003c093dbc 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c093dd2 0x2 + .rodata.gdma_install_tx_interrupt.str1.4 + 0x000000003c093dd4 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c093e13 0x1 + .rodata.gdma_new_channel.str1.4 + 0x000000003c093e14 0x1ca esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x1fe (size before relaxing) + *fill* 0x000000003c093fde 0x2 + .rodata.gdma_connect.str1.4 + 0x000000003c093fe0 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c094075 0x3 + .rodata.gdma_disconnect.str1.4 + 0x000000003c094078 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c0940c2 0x2 + .rodata.gdma_set_transfer_ability.str1.4 + 0x000000003c0940c4 0x79 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c09413d 0x3 + .rodata.__FUNCTION__$3 + 0x000000003c094140 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c09414b 0x1 + .rodata.__FUNCTION__$9 + 0x000000003c09414c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c094166 0x2 + .rodata.__FUNCTION__$11 + 0x000000003c094168 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$12 + 0x000000003c094178 0xd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c094185 0x3 + .rodata.__FUNCTION__$13 + 0x000000003c094188 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .rodata.__FUNCTION__$14 + 0x000000003c09419c 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c0941ad 0x3 + .rodata.__func__$15 + 0x000000003c0941b0 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c0941ca 0x2 + .rodata.__func__$16 + 0x000000003c0941cc 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c0941e5 0x3 + .rodata.__func__$17 + 0x000000003c0941e8 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c0941f9 0x3 + .rodata.__FUNCTION__$18 + 0x000000003c0941fc 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + *fill* 0x000000003c09420d 0x3 + .rodata.ets_timer_setfn.str1.4 + 0x000000003c094210 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003c094299 0x3 + .rodata.str1.4 + 0x000000003c09429c 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003c094355 0x3 + .rodata.__func__$2 + 0x000000003c094358 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003c094366 0x2 + .rodata.__func__$1 + 0x000000003c094368 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003c094379 0x3 + .rodata.__func__$0 + 0x000000003c09437c 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.lib_printf.str1.4 + 0x000000003c09438c 0x1b esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x000000003c0943a7 0x1 + .rodata.phy_printf.str1.4 + 0x000000003c0943a8 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.pp_printf.str1.4 + 0x000000003c0943ac 0x3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x000000003c0943af 0x1 + .rodata.net80211_printf.str1.4 + 0x000000003c0943b0 0x9 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x000000003c0943b9 0x3 + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x000000003c0943bc 0x13d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c0944f9 0x3 + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x000000003c0944fc 0x10f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c09460b 0x1 + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x000000003c09460c 0x67 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6b (size before relaxing) + *fill* 0x000000003c094673 0x1 + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x000000003c094674 0x16a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c0947de 0x2 + .rodata.__func__$5 + 0x000000003c0947e0 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c0947fa 0x2 + .rodata.__func__$3 + 0x000000003c0947fc 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c094819 0x3 + .rodata.__func__$1 + 0x000000003c09481c 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c09483a 0x2 + .rodata.__func__$0 + 0x000000003c09483c 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x000000003c09485b 0x1 + .rodata.phy_init_data + 0x000000003c09485c 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.kill_oldest_dhcps_pool.str1.4 + 0x000000003c0948dc 0x57 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003c094933 0x1 + .rodata.dhcps_start.str1.4 + 0x000000003c094934 0x70 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.__func__$0 + 0x000000003c0949a4 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003c0949bb 0x1 + .rodata.magic_cookie + 0x000000003c0949bc 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.esp_netif_action_connected.str1.4 + 0x000000003c0949c0 0xba esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003c094a7a 0x2 + .rodata.esp_netif_action_got_ip.str1.4 + 0x000000003c094a7c 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003c094acb 0x1 + .rodata.__FUNCTION__$0 + 0x000000003c094acc 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003c094ae7 0x1 + .rodata.str1.4 + 0x000000003c094ae8 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_sta_config + 0x000000003c094b24 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003c094b24 _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x000000003c094b4c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.wlanif_init.str1.4 + 0x000000003c094b54 0x3a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000003c094b8e 0x2 + .rodata.__func__$0 + 0x000000003c094b90 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.wpa_group_init_gmk_and_counter.str1.4 + 0x000000003c094b9c 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003c094ba9 0x3 + .rodata.wpa_gtk_update.str1.4 + 0x000000003c094bac 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003c094bd3 0x1 + .rodata.wpa_derive_ptk.str1.4 + 0x000000003c094bd4 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003c094beb 0x1 + .rodata.wpa_group_config_group_keys.str1.4 + 0x000000003c094bec 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003c094bf3 0x1 + .rodata.sswu.str1.4 + 0x000000003c094bf4 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata 0x000000003c094d10 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_test_pwd_seed_ffc.str1.4 + 0x000000003c094d30 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ecc.str1.4 + 0x000000003c094d48 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x000000003c094d7e 0x2 + .rodata.sae_derive_pt_ffc.str1.4 + 0x000000003c094d80 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_keys.str1.4 + 0x000000003c094d9c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ecc.str1.4 + 0x000000003c094dac 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ffc.str1.4 + 0x000000003c094dc8 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.dragonfly_get_rand_1_to_p_1.str1.4 + 0x000000003c094dd1 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x2 (size before relaxing) + *fill* 0x000000003c094dd1 0x3 + .rodata 0x000000003c094dd4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.rsn_pmkid.str1.4 + 0x000000003c094de0 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.hmac_sha256_kdf.str1.4 + 0x000000003c094de9 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + *fill* 0x000000003c094de9 0x3 + .rodata.dh_groups + 0x000000003c094dec 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x000000003c094e0c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x000000003c094ecc 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x000000003c094f8c 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x000000003c094f8d 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003c094f8d 0x3 + .rodata.owe_process_assoc_resp.str1.4 + 0x000000003c094f90 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003c094fa3 0x1 + .rodata.wpa_gen_wpa_ie_rsn.str1.4 + 0x000000003c094fa4 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003c095002 0x2 + .rodata.wpa_gen_wpa_ie_wpa.str1.4 + 0x000000003c095004 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003c09502a 0x2 + .rodata.__func__$0 + 0x000000003c09502c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003c09503f 0x1 + .rodata.__func__$1 + 0x000000003c095040 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003c095053 0x1 + .rodata.ecp_x25519_bad_point_2 + 0x000000003c095054 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x000000003c095060 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x000000003c09506c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x000000003c09508c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.curve25519_n + 0x000000003c0950ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.curve25519_p + 0x000000003c0950cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T + 0x000000003c0950ec 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_Y + 0x000000003c09556c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_X + 0x000000003c0955ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_Y + 0x000000003c0955ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_X + 0x000000003c09562c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_Y + 0x000000003c09566c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_X + 0x000000003c0956ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_Y + 0x000000003c0956ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_X + 0x000000003c09572c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_Y + 0x000000003c09576c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_X + 0x000000003c0957ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_Y + 0x000000003c0957ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_X + 0x000000003c09582c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_Y + 0x000000003c09586c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_X + 0x000000003c0958ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_Y + 0x000000003c0958ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_X + 0x000000003c09592c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_Y + 0x000000003c09596c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_X + 0x000000003c0959ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_Y + 0x000000003c0959ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_X + 0x000000003c095a2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_Y + 0x000000003c095a6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_X + 0x000000003c095aac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_Y + 0x000000003c095aec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_X + 0x000000003c095b2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_Y + 0x000000003c095b6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_X + 0x000000003c095bac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_Y + 0x000000003c095bec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_X + 0x000000003c095c2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_Y + 0x000000003c095c6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_X + 0x000000003c095cac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_Y + 0x000000003c095cec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_X + 0x000000003c095d2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_Y + 0x000000003c095d6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_X + 0x000000003c095dac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_Y + 0x000000003c095dec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_X + 0x000000003c095e2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_Y + 0x000000003c095e6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_X + 0x000000003c095eac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_Y + 0x000000003c095eec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_X + 0x000000003c095f2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_Y + 0x000000003c095f6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_X + 0x000000003c095fac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_Y + 0x000000003c095fec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_X + 0x000000003c09602c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_Y + 0x000000003c09606c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_X + 0x000000003c0960ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_Y + 0x000000003c0960ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_X + 0x000000003c09612c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_Y + 0x000000003c09616c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_X + 0x000000003c0961ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_Y + 0x000000003c0961ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_X + 0x000000003c09622c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_Y + 0x000000003c09626c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_X + 0x000000003c0962ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_Y + 0x000000003c0962ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_X + 0x000000003c09632c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_Y + 0x000000003c09636c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_X + 0x000000003c0963ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_Y + 0x000000003c0963ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_X + 0x000000003c09642c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_Y + 0x000000003c09646c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_X + 0x000000003c0964ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_Y + 0x000000003c0964ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_X + 0x000000003c09652c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x000000003c09656c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x000000003c0965ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x000000003c0965ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x000000003c09662c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x000000003c09666c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x000000003c0966ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T + 0x000000003c0966ec 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_Y + 0x000000003c096b6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_X + 0x000000003c096b9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_Y + 0x000000003c096bcc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_X + 0x000000003c096bfc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_Y + 0x000000003c096c2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_X + 0x000000003c096c5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_Y + 0x000000003c096c8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_X + 0x000000003c096cbc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_Y + 0x000000003c096cec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_X + 0x000000003c096d1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_Y + 0x000000003c096d4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_X + 0x000000003c096d7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_Y + 0x000000003c096dac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_X + 0x000000003c096ddc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_Y + 0x000000003c096e0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_X + 0x000000003c096e3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_Y + 0x000000003c096e6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_X + 0x000000003c096e9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_Y + 0x000000003c096ecc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_X + 0x000000003c096efc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_Y + 0x000000003c096f2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_X + 0x000000003c096f5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_Y + 0x000000003c096f8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_X + 0x000000003c096fbc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_Y + 0x000000003c096fec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_X + 0x000000003c09701c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_Y + 0x000000003c09704c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_X + 0x000000003c09707c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_Y + 0x000000003c0970ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_X + 0x000000003c0970dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_Y + 0x000000003c09710c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_X + 0x000000003c09713c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_Y + 0x000000003c09716c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_X + 0x000000003c09719c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_Y + 0x000000003c0971cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_X + 0x000000003c0971fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_Y + 0x000000003c09722c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_X + 0x000000003c09725c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_Y + 0x000000003c09728c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_X + 0x000000003c0972bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_Y + 0x000000003c0972ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_X + 0x000000003c09731c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_Y + 0x000000003c09734c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_X + 0x000000003c09737c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_Y + 0x000000003c0973ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_X + 0x000000003c0973dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_Y + 0x000000003c09740c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_X + 0x000000003c09743c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_Y + 0x000000003c09746c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_X + 0x000000003c09749c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_Y + 0x000000003c0974cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_X + 0x000000003c0974fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_Y + 0x000000003c09752c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_X + 0x000000003c09755c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_Y + 0x000000003c09758c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_X + 0x000000003c0975bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_Y + 0x000000003c0975ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_X + 0x000000003c09761c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_Y + 0x000000003c09764c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_X + 0x000000003c09767c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_Y + 0x000000003c0976ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_X + 0x000000003c0976dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_Y + 0x000000003c09770c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_X + 0x000000003c09773c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x000000003c09776c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x000000003c09779c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x000000003c0977cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x000000003c0977fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x000000003c09782c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x000000003c09785c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T + 0x000000003c09788c 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_Y + 0x000000003c097acc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_X + 0x000000003c097aec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_Y + 0x000000003c097b0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_X + 0x000000003c097b2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_Y + 0x000000003c097b4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_X + 0x000000003c097b6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_Y + 0x000000003c097b8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_X + 0x000000003c097bac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_Y + 0x000000003c097bcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_X + 0x000000003c097bec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_Y + 0x000000003c097c0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_X + 0x000000003c097c2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_Y + 0x000000003c097c4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_X + 0x000000003c097c6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_Y + 0x000000003c097c8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_X + 0x000000003c097cac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_Y + 0x000000003c097ccc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_X + 0x000000003c097cec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_Y + 0x000000003c097d0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_X + 0x000000003c097d2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_Y + 0x000000003c097d4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_X + 0x000000003c097d6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_Y + 0x000000003c097d8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_X + 0x000000003c097dac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_Y + 0x000000003c097dcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_X + 0x000000003c097dec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_Y + 0x000000003c097e0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_X + 0x000000003c097e2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_Y + 0x000000003c097e4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_X + 0x000000003c097e6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_Y + 0x000000003c097e8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_X + 0x000000003c097eac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x000000003c097ecc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x000000003c097eec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x000000003c097f0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x000000003c097f2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x000000003c097f4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x000000003c097f6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T + 0x000000003c097f8c 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_Y + 0x000000003c0981cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_X + 0x000000003c0981ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_Y + 0x000000003c09820c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_X + 0x000000003c09822c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_Y + 0x000000003c09824c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_X + 0x000000003c09826c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_Y + 0x000000003c09828c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_X + 0x000000003c0982ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_Y + 0x000000003c0982cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_X + 0x000000003c0982ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_Y + 0x000000003c09830c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_X + 0x000000003c09832c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_Y + 0x000000003c09834c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_X + 0x000000003c09836c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_Y + 0x000000003c09838c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_X + 0x000000003c0983ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_Y + 0x000000003c0983cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_X + 0x000000003c0983ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_Y + 0x000000003c09840c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_X + 0x000000003c09842c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_Y + 0x000000003c09844c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_X + 0x000000003c09846c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_Y + 0x000000003c09848c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_X + 0x000000003c0984ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_Y + 0x000000003c0984cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_X + 0x000000003c0984ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_Y + 0x000000003c09850c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_X + 0x000000003c09852c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_Y + 0x000000003c09854c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_X + 0x000000003c09856c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_Y + 0x000000003c09858c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_X + 0x000000003c0985ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x000000003c0985cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x000000003c0985ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x000000003c09860c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x000000003c09862c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x000000003c098630 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x000000003c098634 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T + 0x000000003c098654 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_Y + 0x000000003c098894 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_X + 0x000000003c0988b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_Y + 0x000000003c0988d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_X + 0x000000003c0988f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_Y + 0x000000003c098914 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_X + 0x000000003c098934 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_Y + 0x000000003c098954 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_X + 0x000000003c098974 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_Y + 0x000000003c098994 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_X + 0x000000003c0989b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_Y + 0x000000003c0989d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_X + 0x000000003c0989f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_Y + 0x000000003c098a14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_X + 0x000000003c098a34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_Y + 0x000000003c098a54 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_X + 0x000000003c098a74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_Y + 0x000000003c098a94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_X + 0x000000003c098ab4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_Y + 0x000000003c098ad4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_X + 0x000000003c098af4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_Y + 0x000000003c098b14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_X + 0x000000003c098b34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_Y + 0x000000003c098b54 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_X + 0x000000003c098b74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_Y + 0x000000003c098b94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_X + 0x000000003c098bb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_Y + 0x000000003c098bd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_X + 0x000000003c098bf4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_Y + 0x000000003c098c14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_X + 0x000000003c098c34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_Y + 0x000000003c098c54 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_X + 0x000000003c098c74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x000000003c098c94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x000000003c098cb4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x000000003c098cd0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x000000003c098cec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x000000003c098cf0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x000000003c098cf4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T + 0x000000003c098d10 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_Y + 0x000000003c098f50 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_X + 0x000000003c098f68 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_Y + 0x000000003c098f80 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_X + 0x000000003c098f98 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_Y + 0x000000003c098fb0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_X + 0x000000003c098fc8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_Y + 0x000000003c098fe0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_X + 0x000000003c098ff8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_Y + 0x000000003c099010 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_X + 0x000000003c099028 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_Y + 0x000000003c099040 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_X + 0x000000003c099058 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_Y + 0x000000003c099070 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_X + 0x000000003c099088 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_Y + 0x000000003c0990a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_X + 0x000000003c0990b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_Y + 0x000000003c0990d0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_X + 0x000000003c0990e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_Y + 0x000000003c099100 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_X + 0x000000003c099118 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_Y + 0x000000003c099130 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_X + 0x000000003c099148 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_Y + 0x000000003c099160 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_X + 0x000000003c099178 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_Y + 0x000000003c099190 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_X + 0x000000003c0991a8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_Y + 0x000000003c0991c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_X + 0x000000003c0991d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_Y + 0x000000003c0991f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_X + 0x000000003c099208 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_Y + 0x000000003c099220 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_X + 0x000000003c099238 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x000000003c099250 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x000000003c099268 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x000000003c099280 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x000000003c099298 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x000000003c09929c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x000000003c0992a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T + 0x000000003c0992b8 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_Y + 0x000000003c099738 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_X + 0x000000003c099780 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_Y + 0x000000003c0997c8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_X + 0x000000003c099810 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_Y + 0x000000003c099858 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_X + 0x000000003c0998a0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_Y + 0x000000003c0998e8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_X + 0x000000003c099930 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_Y + 0x000000003c099978 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_X + 0x000000003c0999c0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_Y + 0x000000003c099a08 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_X + 0x000000003c099a50 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_Y + 0x000000003c099a98 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_X + 0x000000003c099ae0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_Y + 0x000000003c099b28 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_X + 0x000000003c099b70 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_Y + 0x000000003c099bb8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_X + 0x000000003c099c00 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_Y + 0x000000003c099c48 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_X + 0x000000003c099c90 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_Y + 0x000000003c099cd8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_X + 0x000000003c099d20 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_Y + 0x000000003c099d68 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_X + 0x000000003c099db0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_Y + 0x000000003c099df8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_X + 0x000000003c099e40 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_Y + 0x000000003c099e88 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_X + 0x000000003c099ed0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_Y + 0x000000003c099f18 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_X + 0x000000003c099f60 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_Y + 0x000000003c099fa8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_X + 0x000000003c099ff0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_Y + 0x000000003c09a038 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_X + 0x000000003c09a080 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_Y + 0x000000003c09a0c8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_X + 0x000000003c09a110 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_Y + 0x000000003c09a158 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_X + 0x000000003c09a1a0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_Y + 0x000000003c09a1e8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_X + 0x000000003c09a230 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_Y + 0x000000003c09a278 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_X + 0x000000003c09a2c0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_Y + 0x000000003c09a308 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_X + 0x000000003c09a350 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_Y + 0x000000003c09a398 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_X + 0x000000003c09a3e0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_Y + 0x000000003c09a428 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_X + 0x000000003c09a470 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_Y + 0x000000003c09a4b8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_X + 0x000000003c09a500 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_Y + 0x000000003c09a548 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_X + 0x000000003c09a590 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_Y + 0x000000003c09a5d8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_X + 0x000000003c09a620 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_Y + 0x000000003c09a668 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_X + 0x000000003c09a6b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_Y + 0x000000003c09a6f8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_X + 0x000000003c09a740 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_Y + 0x000000003c09a788 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_X + 0x000000003c09a7d0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_Y + 0x000000003c09a818 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_X + 0x000000003c09a860 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_Y + 0x000000003c09a8a8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_X + 0x000000003c09a8f0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x000000003c09a938 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x000000003c09a97c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x000000003c09a9c0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x000000003c09aa04 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x000000003c09aa48 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T + 0x000000003c09aa8c 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_Y + 0x000000003c09af0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_X + 0x000000003c09af3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_Y + 0x000000003c09af6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_X + 0x000000003c09af9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_Y + 0x000000003c09afcc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_X + 0x000000003c09affc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_Y + 0x000000003c09b02c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_X + 0x000000003c09b05c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_Y + 0x000000003c09b08c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_X + 0x000000003c09b0bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_Y + 0x000000003c09b0ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_X + 0x000000003c09b11c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_Y + 0x000000003c09b14c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_X + 0x000000003c09b17c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_Y + 0x000000003c09b1ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_X + 0x000000003c09b1dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_Y + 0x000000003c09b20c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_X + 0x000000003c09b23c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_Y + 0x000000003c09b26c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_X + 0x000000003c09b29c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_Y + 0x000000003c09b2cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_X + 0x000000003c09b2fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_Y + 0x000000003c09b32c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_X + 0x000000003c09b35c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_Y + 0x000000003c09b38c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_X + 0x000000003c09b3bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_Y + 0x000000003c09b3ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_X + 0x000000003c09b41c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_Y + 0x000000003c09b44c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_X + 0x000000003c09b47c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_Y + 0x000000003c09b4ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_X + 0x000000003c09b4dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_Y + 0x000000003c09b50c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_X + 0x000000003c09b53c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_Y + 0x000000003c09b56c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_X + 0x000000003c09b59c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_Y + 0x000000003c09b5cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_X + 0x000000003c09b5fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_Y + 0x000000003c09b62c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_X + 0x000000003c09b65c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_Y + 0x000000003c09b68c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_X + 0x000000003c09b6bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_Y + 0x000000003c09b6ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_X + 0x000000003c09b71c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_Y + 0x000000003c09b74c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_X + 0x000000003c09b77c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_Y + 0x000000003c09b7ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_X + 0x000000003c09b7dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_Y + 0x000000003c09b80c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_X + 0x000000003c09b83c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_Y + 0x000000003c09b86c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_X + 0x000000003c09b89c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_Y + 0x000000003c09b8cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_X + 0x000000003c09b8fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_Y + 0x000000003c09b92c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_X + 0x000000003c09b95c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_Y + 0x000000003c09b98c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_X + 0x000000003c09b9bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_Y + 0x000000003c09b9ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_X + 0x000000003c09ba1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_Y + 0x000000003c09ba4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_X + 0x000000003c09ba7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_Y + 0x000000003c09baac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_X + 0x000000003c09badc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x000000003c09bb0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x000000003c09bb3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x000000003c09bb6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x000000003c09bb9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x000000003c09bbcc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T + 0x000000003c09bbfc 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_Y + 0x000000003c09be3c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_X + 0x000000003c09be5c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_Y + 0x000000003c09be7c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_X + 0x000000003c09be9c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_Y + 0x000000003c09bebc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_X + 0x000000003c09bedc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_Y + 0x000000003c09befc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_X + 0x000000003c09bf1c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_Y + 0x000000003c09bf3c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_X + 0x000000003c09bf5c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_Y + 0x000000003c09bf7c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_X + 0x000000003c09bf9c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_Y + 0x000000003c09bfbc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_X + 0x000000003c09bfdc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_Y + 0x000000003c09bffc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_X + 0x000000003c09c01c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_Y + 0x000000003c09c03c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_X + 0x000000003c09c05c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_Y + 0x000000003c09c07c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_X + 0x000000003c09c09c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_Y + 0x000000003c09c0bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_X + 0x000000003c09c0dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_Y + 0x000000003c09c0fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_X + 0x000000003c09c11c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_Y + 0x000000003c09c13c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_X + 0x000000003c09c15c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_Y + 0x000000003c09c17c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_X + 0x000000003c09c19c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_Y + 0x000000003c09c1bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_X + 0x000000003c09c1dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_Y + 0x000000003c09c1fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_X + 0x000000003c09c21c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x000000003c09c23c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x000000003c09c25c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x000000003c09c27c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x000000003c09c29c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x000000003c09c2bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T + 0x000000003c09c2dc 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_Y + 0x000000003c09c51c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_X + 0x000000003c09c53c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_Y + 0x000000003c09c55c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_X + 0x000000003c09c57c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_Y + 0x000000003c09c59c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_X + 0x000000003c09c5bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_Y + 0x000000003c09c5dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_X + 0x000000003c09c5fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_Y + 0x000000003c09c61c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_X + 0x000000003c09c63c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_Y + 0x000000003c09c65c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_X + 0x000000003c09c67c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_Y + 0x000000003c09c69c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_X + 0x000000003c09c6bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_Y + 0x000000003c09c6dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_X + 0x000000003c09c6fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_Y + 0x000000003c09c71c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_X + 0x000000003c09c73c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_Y + 0x000000003c09c75c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_X + 0x000000003c09c77c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_Y + 0x000000003c09c79c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_X + 0x000000003c09c7bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_Y + 0x000000003c09c7dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_X + 0x000000003c09c7fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_Y + 0x000000003c09c81c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_X + 0x000000003c09c83c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_Y + 0x000000003c09c85c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_X + 0x000000003c09c87c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_Y + 0x000000003c09c89c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_X + 0x000000003c09c8bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_Y + 0x000000003c09c8dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_X + 0x000000003c09c8fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x000000003c09c91c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x000000003c09c938 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x000000003c09c954 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x000000003c09c970 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x000000003c09c98c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T + 0x000000003c09c9ac 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_Y + 0x000000003c09cbec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_X + 0x000000003c09cc04 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_Y + 0x000000003c09cc1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_X + 0x000000003c09cc34 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_Y + 0x000000003c09cc4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_X + 0x000000003c09cc64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_Y + 0x000000003c09cc7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_X + 0x000000003c09cc94 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_Y + 0x000000003c09ccac 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_X + 0x000000003c09ccc4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_Y + 0x000000003c09ccdc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_X + 0x000000003c09ccf4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_Y + 0x000000003c09cd0c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_X + 0x000000003c09cd24 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_Y + 0x000000003c09cd3c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_X + 0x000000003c09cd54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_Y + 0x000000003c09cd6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_X + 0x000000003c09cd84 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_Y + 0x000000003c09cd9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_X + 0x000000003c09cdb4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_Y + 0x000000003c09cdcc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_X + 0x000000003c09cde4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_Y + 0x000000003c09cdfc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_X + 0x000000003c09ce14 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_Y + 0x000000003c09ce2c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_X + 0x000000003c09ce44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_Y + 0x000000003c09ce5c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_X + 0x000000003c09ce74 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_Y + 0x000000003c09ce8c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_X + 0x000000003c09cea4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_Y + 0x000000003c09cebc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_X + 0x000000003c09ced4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x000000003c09ceec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x000000003c09cf04 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x000000003c09cf1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x000000003c09cf34 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x000000003c09cf4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.hash_table + 0x000000003c09cf64 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .rodata.rsa_debug.str1.4 + 0x000000003c09cfb8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000003c09cfc6 0x2 + .rodata.eckey_debug.str1.4 + 0x000000003c09cfc8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.4 + 0x000000003c09cfd0 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x20 (size before relaxing) + *fill* 0x000000003c09cfeb 0x1 + .rodata.mbedtls_ecdsa_info + 0x000000003c09cfec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003c09cfec mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x000000003c09d01c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003c09d01c mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x000000003c09d04c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003c09d04c mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x000000003c09d07c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003c09d07c mbedtls_rsa_info + .rodata 0x000000003c09d0ac 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.str1.1 + 0x000000003c09d0cd 0x5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0xd (size before relaxing) + *fill* 0x000000003c09d0d2 0x2 + .rodata.gdma_periph_signals + 0x000000003c09d0d4 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + 0x000000003c09d0d4 gdma_periph_signals + .rodata 0x000000003c09d100 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + 0x000000003c09d100 Xthal_intlevel + .rodata._ZSt7nothrow + 0x000000003c09d120 0x1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x000000003c09d120 std::nothrow + .rodata._ZTSSt9exception + 0x000000003c09d121 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x000000003c09d121 typeinfo name for std::exception + *fill* 0x000000003c09d12e 0x2 + .rodata._ZTISt9exception + 0x000000003c09d130 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x000000003c09d130 typeinfo for std::exception + .rodata._ZTSSt9bad_alloc + 0x000000003c09d138 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x000000003c09d138 typeinfo name for std::bad_alloc + *fill* 0x000000003c09d145 0x3 + .rodata._ZTISt9bad_alloc + 0x000000003c09d148 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x000000003c09d148 typeinfo for std::bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x000000003c09d154 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x000000003c09d154 vtable for __cxxabiv1::__si_class_type_info + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x000000003c09d180 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + *fill* 0x000000003c09d18f 0x1 + .rodata._ZTVSt9bad_alloc + 0x000000003c09d190 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x000000003c09d190 vtable for std::bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x000000003c09d1a4 0x2c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x000000003c09d1a4 vtable for __cxxabiv1::__class_type_info + .rodata._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv.str1.1 + 0x000000003c09d1d0 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .rodata._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv.str1.1 + 0x000000003c09d1f4 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .rodata._ZTSN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003c09d21a 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d21a typeinfo name for __gnu_cxx::__concurrence_lock_error + *fill* 0x000000003c09d241 0x3 + .rodata._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003c09d244 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d244 typeinfo for __gnu_cxx::__concurrence_lock_error + .rodata._ZTSN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003c09d250 0x29 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d250 typeinfo name for __gnu_cxx::__concurrence_unlock_error + *fill* 0x000000003c09d279 0x3 + .rodata._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003c09d27c 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d27c typeinfo for __gnu_cxx::__concurrence_unlock_error + .rodata._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x000000003c09d288 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d288 vtable for __gnu_cxx::__concurrence_lock_error + .rodata._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x000000003c09d29c 0x14 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c09d29c vtable for __gnu_cxx::__concurrence_unlock_error + .rodata 0x000000003c09d2b0 0x101 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + 0x000000003c09d2b0 _ctype_ + *fill* 0x000000003c09d3b1 0x3 + .rodata 0x000000003c09d3b4 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x000000003c09d3b4 __sf_fake_stderr + 0x000000003c09d3d4 __sf_fake_stdout + 0x000000003c09d3f4 __sf_fake_stdin + .rodata.str1.1 + 0x000000003c09d414 0x2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .rodata 0x000000003c09d414 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003c09d650 0x32 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x34 (size before relaxing) + *fill* 0x000000003c09d682 0x2 + .rodata 0x000000003c09d684 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003c09d8c0 0x34 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003c09d8c0 0xa5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0xa7 (size before relaxing) + .rodata.str1.1 + 0x000000003c09d965 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x99 (size before relaxing) + *fill* 0x000000003c09d9d6 0x2 + .rodata 0x000000003c09d9d8 0x128 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x000000003c09d9e8 __mprec_tinytens + 0x000000003c09da10 __mprec_bigtens + 0x000000003c09da38 __mprec_tens + .rodata 0x000000003c09db00 0x414 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x000000003c09dd3c __action_table + 0x000000003c09dda8 __state_table + 0x000000003c09de14 __chclass + .rodata.str1.1 + 0x000000003c09df14 0x22 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003c09df14 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003c09e150 0x22 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003c09e150 0xa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0xb (size before relaxing) + *fill* 0x000000003c09e15a 0x2 + .rodata 0x000000003c09e15c 0x16c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x000000003c09e15c __default_global_locale + *(.rodata_wlog_error .rodata_wlog_error.*) + .rodata_wlog_error.36 + 0x000000003c09e2c8 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.35 + 0x000000003c09e2eb 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.34 + 0x000000003c09e30a 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.18 + 0x000000003c09e32e 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.15 + 0x000000003c09e34f 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.13 + 0x000000003c09e370 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.8 + 0x000000003c09e38a 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.5 + 0x000000003c09e3ae 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.7 + 0x000000003c09e3c9 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_error.12 + 0x000000003c09e3e5 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.11 + 0x000000003c09e413 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.10 + 0x000000003c09e43a 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.9 + 0x000000003c09e44e 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.8 + 0x000000003c09e45b 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.7 + 0x000000003c09e489 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.6 + 0x000000003c09e4b0 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.5 + 0x000000003c09e4c4 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x000000003c09e4d1 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.3 + 0x000000003c09e4f8 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.30 + 0x000000003c09e4ff 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.22 + 0x000000003c09e506 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.19 + 0x000000003c09e51e 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.17 + 0x000000003c09e525 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.15 + 0x000000003c09e52c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.11 + 0x000000003c09e533 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.9 + 0x000000003c09e53a 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.8 + 0x000000003c09e541 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.7 + 0x000000003c09e548 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.67 + 0x000000003c09e54f 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.65 + 0x000000003c09e556 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.63 + 0x000000003c09e55d 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.62 + 0x000000003c09e564 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.61 + 0x000000003c09e56b 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.60 + 0x000000003c09e572 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.59 + 0x000000003c09e579 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.58 + 0x000000003c09e580 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.57 + 0x000000003c09e587 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.55 + 0x000000003c09e58e 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.54 + 0x000000003c09e595 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.51 + 0x000000003c09e59c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.46 + 0x000000003c09e5a3 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.44 + 0x000000003c09e5aa 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.43 + 0x000000003c09e5b1 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.42 + 0x000000003c09e5b8 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.41 + 0x000000003c09e5bf 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.35 + 0x000000003c09e5c6 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.26 + 0x000000003c09e5dc 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.25 + 0x000000003c09e5f3 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.22 + 0x000000003c09e607 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.21 + 0x000000003c09e60e 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.20 + 0x000000003c09e62a 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.19 + 0x000000003c09e646 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.18 + 0x000000003c09e65e 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.13 + 0x000000003c09e675 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.12 + 0x000000003c09e6bd 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.11 + 0x000000003c09e6df 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.10 + 0x000000003c09e702 0x64 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.9 + 0x000000003c09e766 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x000000003c09e789 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.7 + 0x000000003c09e7ad 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.5 + 0x000000003c09e7ca 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.4 + 0x000000003c09e7d1 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.2 + 0x000000003c09e7d8 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x000000003c09e7df 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.7 + 0x000000003c09e7e6 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.3 + 0x000000003c09e806 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.98 + 0x000000003c09e80d 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.83 + 0x000000003c09e828 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.53 + 0x000000003c09e838 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.46 + 0x000000003c09e859 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.45 + 0x000000003c09e886 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.44 + 0x000000003c09e899 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.43 + 0x000000003c09e8af 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.42 + 0x000000003c09e8de 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.41 + 0x000000003c09e8f3 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.40 + 0x000000003c09e91c 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.39 + 0x000000003c09e944 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.38 + 0x000000003c09e96d 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.37 + 0x000000003c09e995 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.36 + 0x000000003c09e9dd 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.35 + 0x000000003c09ea23 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.33 + 0x000000003c09ea47 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.32 + 0x000000003c09ea4e 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.30 + 0x000000003c09ea55 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.29 + 0x000000003c09ea5c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.22 + 0x000000003c09ea63 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.10 + 0x000000003c09eab9 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.16 + 0x000000003c09ead9 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.5 + 0x000000003c09eaf2 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.3 + 0x000000003c09eb13 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.2 + 0x000000003c09eb2d 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.47 + 0x000000003c09eb4b 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.45 + 0x000000003c09eb52 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.32 + 0x000000003c09eb59 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.30 + 0x000000003c09eb60 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.29 + 0x000000003c09eb67 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.28 + 0x000000003c09eb6e 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.26 + 0x000000003c09eb75 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.22 + 0x000000003c09eb7c 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.20 + 0x000000003c09eb83 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.19 + 0x000000003c09eb8a 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.17 + 0x000000003c09eb91 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.16 + 0x000000003c09eb98 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.14 + 0x000000003c09eb9f 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.13 + 0x000000003c09eba6 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.12 + 0x000000003c09ebe6 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.9 + 0x000000003c09ebed 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.8 + 0x000000003c09ebf4 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.7 + 0x000000003c09ebfb 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.6 + 0x000000003c09ec02 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.4 + 0x000000003c09ec09 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.3 + 0x000000003c09ec10 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.2 + 0x000000003c09ec2b 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.70 + 0x000000003c09ec32 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.68 + 0x000000003c09ec39 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.54 + 0x000000003c09ec40 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.53 + 0x000000003c09ec56 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.51 + 0x000000003c09ec6c 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.50 + 0x000000003c09ec82 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.48 + 0x000000003c09ec93 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.42 + 0x000000003c09ecb3 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.10 + 0x000000003c09ecba 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.80 + 0x000000003c09ecc1 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.79 + 0x000000003c09ece8 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.77 + 0x000000003c09ecfb 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.76 + 0x000000003c09ed55 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.59 + 0x000000003c09ed5c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.48 + 0x000000003c09ed6a 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.42 + 0x000000003c09ed8b 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.6 + 0x000000003c09ed92 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.5 + 0x000000003c09ed99 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.28 + 0x000000003c09eda0 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.27 + 0x000000003c09edbd 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.26 + 0x000000003c09edd9 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.25 + 0x000000003c09edfc 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.13 + 0x000000003c09ee22 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x000000003c09ee29 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.7 + 0x000000003c09ee3e 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_error.94 + 0x000000003c09ee4e 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.91 + 0x000000003c09ee55 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.62 + 0x000000003c09ee5c 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.55 + 0x000000003c09ee73 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.54 + 0x000000003c09ee7a 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.12 + 0x000000003c09ee94 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.2 + 0x000000003c09eeb1 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .rodata_wlog_error.4 + 0x000000003c09eeb8 0x71 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.3 + 0x000000003c09ef29 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x000000003c09ef77 0x57 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.8 + 0x000000003c09efce 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.6 + 0x000000003c09efe9 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.4 + 0x000000003c09f008 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_error.8 + 0x000000003c09f02f 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_error.51 + 0x000000003c09f049 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.50 + 0x000000003c09f053 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.49 + 0x000000003c09f05d 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.45 + 0x000000003c09f067 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.44 + 0x000000003c09f071 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.42 + 0x000000003c09f07b 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.41 + 0x000000003c09f085 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.40 + 0x000000003c09f08f 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.39 + 0x000000003c09f099 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.38 + 0x000000003c09f0a3 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.37 + 0x000000003c09f0ad 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.36 + 0x000000003c09f0b7 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.34 + 0x000000003c09f0c1 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.33 + 0x000000003c09f0cb 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.32 + 0x000000003c09f0d5 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.30 + 0x000000003c09f0df 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.25 + 0x000000003c09f0e9 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.24 + 0x000000003c09f0f3 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.23 + 0x000000003c09f0fd 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.16 + 0x000000003c09f107 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.13 + 0x000000003c09f111 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.5 + 0x000000003c09f11b 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.4 + 0x000000003c09f125 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.3 + 0x000000003c09f12f 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_error.53 + 0x000000003c09f139 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.45 + 0x000000003c09f140 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.44 + 0x000000003c09f168 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.43 + 0x000000003c09f18f 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.42 + 0x000000003c09f1b8 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.10 + 0x000000003c09f1e1 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.8 + 0x000000003c09f1f1 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_error.26 + 0x000000003c09f1f8 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.24 + 0x000000003c09f218 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.20 + 0x000000003c09f22e 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.17 + 0x000000003c09f249 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.16 + 0x000000003c09f253 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.15 + 0x000000003c09f278 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.14 + 0x000000003c09f282 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.13 + 0x000000003c09f28f 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.5 + 0x000000003c09f299 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.4 + 0x000000003c09f2c5 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.3 + 0x000000003c09f2f1 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_error.45 + 0x000000003c09f31d 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.37 + 0x000000003c09f337 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_error.33 + 0x000000003c09f363 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + *(.rodata_wlog_info .rodata_wlog_info.*) + .rodata_wlog_info.9 + 0x000000003c09f392 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.8 + 0x000000003c09f3c4 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.6 + 0x000000003c09f3ec 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.5 + 0x000000003c09f440 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.4 + 0x000000003c09f46e 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.3 + 0x000000003c09f499 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_info.2 + 0x000000003c09f4a5 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_info.38 + 0x000000003c09f4c6 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.36 + 0x000000003c09f50a 0x4d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.18 + 0x000000003c09f557 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.50 + 0x000000003c09f56f 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.49 + 0x000000003c09f59b 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.47 + 0x000000003c09f5d6 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.28 + 0x000000003c09f5f8 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_info.51 + 0x000000003c09f62d 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.50 + 0x000000003c09f647 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.49 + 0x000000003c09f65c 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.48 + 0x000000003c09f67f 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.31 + 0x000000003c09f699 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.2 + 0x000000003c09f6a3 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .rodata_wlog_info.58 + 0x000000003c09f6c6 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.57 + 0x000000003c09f6e3 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.13 + 0x000000003c09f6f8 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.88 + 0x000000003c09f705 0x43 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.86 + 0x000000003c09f748 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.82 + 0x000000003c09f788 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.78 + 0x000000003c09f793 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.66 + 0x000000003c09f7cc 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.64 + 0x000000003c09f7fd 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.63 + 0x000000003c09f839 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.62 + 0x000000003c09f875 0x51 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.61 + 0x000000003c09f8c6 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.30 + 0x000000003c09f8e5 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.2 + 0x000000003c09f905 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.22 + 0x000000003c09f91a 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.21 + 0x000000003c09f93d 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.20 + 0x000000003c09f95f 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.19 + 0x000000003c09f981 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.18 + 0x000000003c09f9a4 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.17 + 0x000000003c09f9c7 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.16 + 0x000000003c09f9ea 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.15 + 0x000000003c09fa0c 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.14 + 0x000000003c09fa2f 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.13 + 0x000000003c09fa52 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.12 + 0x000000003c09fa74 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.11 + 0x000000003c09fa97 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.10 + 0x000000003c09faba 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.9 + 0x000000003c09fad7 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.8 + 0x000000003c09fafa 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.7 + 0x000000003c09fb17 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.6 + 0x000000003c09fb3a 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.5 + 0x000000003c09fb5d 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.4 + 0x000000003c09fb80 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.3 + 0x000000003c09fba3 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.108 + 0x000000003c09fbc6 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.107 + 0x000000003c09fbe6 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.104 + 0x000000003c09fc39 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.102 + 0x000000003c09fc57 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.97 + 0x000000003c09fc75 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.96 + 0x000000003c09fcb1 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.93 + 0x000000003c09fcc1 0x59 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.92 + 0x000000003c09fd1a 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.80 + 0x000000003c09fd6a 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.79 + 0x000000003c09fd9d 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.53 + 0x000000003c09fdbd 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.51 + 0x000000003c09fdec 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.46 + 0x000000003c09fe21 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.41 + 0x000000003c09fe36 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.40 + 0x000000003c09fe45 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.13 + 0x000000003c09fe65 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.17 + 0x000000003c09fe95 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.16 + 0x000000003c09feb6 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.15 + 0x000000003c09fed3 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.14 + 0x000000003c09fef2 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.13 + 0x000000003c09ff10 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x000000003c09ff35 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.11 + 0x000000003c09ff65 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_info.10 + 0x000000003c09ff8f 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_info.54 + 0x000000003c09ff9b 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.35 + 0x000000003c09ffac 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.29 + 0x000000003c09ffb9 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_info.47 + 0x000000003c09ffcc 0x56 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.46 + 0x000000003c0a0022 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.45 + 0x000000003c0a0050 0x4c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.44 + 0x000000003c0a009c 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.15 + 0x000000003c0a00b0 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.14 + 0x000000003c0a00df 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.13 + 0x000000003c0a010d 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.12 + 0x000000003c0a0155 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.11 + 0x000000003c0a018f 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.10 + 0x000000003c0a01b3 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.9 + 0x000000003c0a01e1 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.8 + 0x000000003c0a0229 0x3a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.7 + 0x000000003c0a0263 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .rodata_wlog_info.46 + 0x000000003c0a028c 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.22 + 0x000000003c0a02bd 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.18 + 0x000000003c0a02cf 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_info.38 + 0x000000003c0a02e0 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.36 + 0x000000003c0a02fb 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.35 + 0x000000003c0a031a 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.34 + 0x000000003c0a0338 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.18 + 0x000000003c0a0357 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.17 + 0x000000003c0a036a 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_info.4 + 0x000000003c0a037c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .rodata_wlog_info.2 + 0x000000003c0a0388 0x53 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + .rodata_wlog_warning.17 + 0x000000003c0a03db 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.16 + 0x000000003c0a03eb 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.10 + 0x000000003c0a040c 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.9 + 0x000000003c0a042a 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.7 + 0x000000003c0a0446 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.6 + 0x000000003c0a0462 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.4 + 0x000000003c0a047c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.10 + 0x000000003c0a049c 0x5a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.3 + 0x000000003c0a04f6 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_warning.37 + 0x000000003c0a0514 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.35 + 0x000000003c0a0539 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.33 + 0x000000003c0a055e 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.32 + 0x000000003c0a059b 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.31 + 0x000000003c0a05b6 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.27 + 0x000000003c0a05f2 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.26 + 0x000000003c0a0613 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.25 + 0x000000003c0a0634 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.13 + 0x000000003c0a0652 0x5b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.12 + 0x000000003c0a06ad 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.10 + 0x000000003c0a06d0 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.6 + 0x000000003c0a06d7 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.4 + 0x000000003c0a06e0 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x000000003c0a06e9 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.66 + 0x000000003c0a0713 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.64 + 0x000000003c0a071c 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.56 + 0x000000003c0a0725 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.48 + 0x000000003c0a0737 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.23 + 0x000000003c0a0760 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.16 + 0x000000003c0a076f 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.15 + 0x000000003c0a0789 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.14 + 0x000000003c0a07a2 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.6 + 0x000000003c0a07af 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.3 + 0x000000003c0a07be 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.34 + 0x000000003c0a07d7 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.29 + 0x000000003c0a0800 0x52 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.27 + 0x000000003c0a0852 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.2 + 0x000000003c0a0873 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.101 + 0x000000003c0a0896 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.100 + 0x000000003c0a08b9 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.99 + 0x000000003c0a08de 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.85 + 0x000000003c0a091a 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.84 + 0x000000003c0a0925 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.52 + 0x000000003c0a0930 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.47 + 0x000000003c0a094a 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.21 + 0x000000003c0a097a 0x46 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.20 + 0x000000003c0a09c0 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.19 + 0x000000003c0a09df 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.18 + 0x000000003c0a09f6 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.17 + 0x000000003c0a0a0c 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.5 + 0x000000003c0a0a3d 0x39 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.15 + 0x000000003c0a0a76 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.14 + 0x000000003c0a0a95 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.13 + 0x000000003c0a0ac3 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.12 + 0x000000003c0a0ad9 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.11 + 0x000000003c0a0afd 0x27 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.10 + 0x000000003c0a0b24 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.9 + 0x000000003c0a0b3f 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.8 + 0x000000003c0a0b5a 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.4 + 0x000000003c0a0b75 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.49 + 0x000000003c0a0b8f 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.48 + 0x000000003c0a0b99 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.46 + 0x000000003c0a0bae 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.34 + 0x000000003c0a0bbf 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.33 + 0x000000003c0a0bca 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.31 + 0x000000003c0a0bdb 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.25 + 0x000000003c0a0be7 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.24 + 0x000000003c0a0bf5 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.23 + 0x000000003c0a0c01 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.21 + 0x000000003c0a0c0b 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.18 + 0x000000003c0a0c1f 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.15 + 0x000000003c0a0c33 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.10 + 0x000000003c0a0c47 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.4 + 0x000000003c0a0c51 0x47 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.3 + 0x000000003c0a0c98 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.2 + 0x000000003c0a0ca5 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.49 + 0x000000003c0a0cba 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.7 + 0x000000003c0a0cce 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.6 + 0x000000003c0a0ce0 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.3 + 0x000000003c0a0cfd 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.87 + 0x000000003c0a0d2b 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.85 + 0x000000003c0a0d50 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.67 + 0x000000003c0a0d75 0x44 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.60 + 0x000000003c0a0db9 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.24 + 0x000000003c0a0dd5 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.23 + 0x000000003c0a0de6 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.106 + 0x000000003c0a0def 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.70 + 0x000000003c0a0e15 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.2 + 0x000000003c0a0e36 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata_wlog_warning.10 + 0x000000003c0a0e73 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .rodata_wlog_warning.56 + 0x000000003c0a0e9b 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_warning.55 + 0x000000003c0a0ec6 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_warning.43 + 0x000000003c0a0ef0 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .rodata_wlog_warning.41 + 0x000000003c0a0f03 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.40 + 0x000000003c0a0f24 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.27 + 0x000000003c0a0f44 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.24 + 0x000000003c0a0f51 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .rodata_wlog_warning.6 + 0x000000003c0a0f6b 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .rodata_wlog_warning.5 + 0x000000003c0a0f7c 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .rodata_wlog_warning.22 + 0x000000003c0a0f85 0x7 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.21 + 0x000000003c0a0f8c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.7 + 0x000000003c0a0f9a 0x2e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.6 + 0x000000003c0a0fc8 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .rodata_wlog_warning.32 + 0x000000003c0a0ffa 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.21 + 0x000000003c0a100d 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .rodata_wlog_warning.3 + 0x000000003c0a1022 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .rodata_wlog_warning.2 + 0x000000003c0a102b 0x9 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .rodata_wlog_warning.3 + 0x000000003c0a1034 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .rodata_wlog_warning.2 + 0x000000003c0a1053 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003c0a105f __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *fill* 0x000000003c0a105f 0x1 + .gcc_except_table._ZnajRKSt9nothrow_t + 0x000000003c0a1060 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x000000003c0a1070 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x000000003c0a1074 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D___cxa_get_globals_fast + 0x000000003c0a1078 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x000000003c0a107c 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .gcc_except_table._ZN12_GLOBAL__N_14pool4freeEPv$constprop$0 + 0x000000003c0a108c 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table._ZN12_GLOBAL__N_14pool8allocateEj$constprop$0 + 0x000000003c0a1094 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_allocate_exception + 0x000000003c0a109c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table.__cxa_free_exception + 0x000000003c0a10a0 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table._GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv + 0x000000003c0a10a4 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .gcc_except_table._GLOBAL__sub_D__ZN9__gnu_cxx9__freeresEv + 0x000000003c0a10b4 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003c0a10b8 . = ((. + 0x3) & 0xfffffffffffffffc) + 0x000000003c0a10b8 __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003c0a10b8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .eh_frame 0x000000003c0a10b8 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .eh_frame 0x000000003c0a10f0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .eh_frame 0x000000003c0a1118 0x8c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .eh_frame 0x000000003c0a11a4 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .eh_frame 0x000000003c0a1214 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .eh_frame 0x000000003c0a123c 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .eh_frame 0x000000003c0a1264 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .eh_frame 0x000000003c0a12bc 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .eh_frame 0x000000003c0a12fc 0x134 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .eh_frame 0x000000003c0a1430 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .eh_frame 0x000000003c0a1488 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x000000003c0a14b0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x000000003c0a14d8 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x000000003c0a1500 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x000000003c0a1528 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x000000003c0a1530 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003c0a152c 0x4 + 0x000000003c0a1530 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x000000003c0a1530 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .ctors 0x000000003c0a1534 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .ctors 0x000000003c0a1538 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x000000003c0a153c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x000000003c0a1540 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .ctors 0x000000003c0a1544 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x000000003c0a1548 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003c0a1548 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + .dtors 0x000000003c0a154c 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .dtors 0x000000003c0a1550 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003c0a1554 0x4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x000000003c0a1554 __DTOR_END__ + 0x000000003c0a1558 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003c0a1558 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003c0a1558 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003c0a1558 0x28 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c0a1580 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003c0a1580 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.100 + 0x000000003c0a1580 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.200 + 0x000000003c0a1588 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003c0a1590 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x000000003c0a1590 _rodata_end = ABSOLUTE (.) + 0x000000003c0a1590 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003c0a1590 _lit4_end = ABSOLUTE (.) + 0x000000003c0a1590 . = ALIGN (0x4) + 0x000000003c0a1590 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x000000003c0a1590 _thread_local_end = ABSOLUTE (.) + 0x000000003c0a1590 . = ALIGN (0x4) + 0x0000000000000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x000000003c0a1590 0x1fd9 + 0x000000003c0a1590 _rodata_reserved_end = ABSOLUTE (.) + 0x000000003c0a1590 . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + .rodata_wlog_debug.28 + 0x000000003c0a1590 0x4a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.24 + 0x000000003c0a15da 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.23 + 0x000000003c0a1616 0x4e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.21 + 0x000000003c0a1664 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.20 + 0x000000003c0a1682 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.14 + 0x000000003c0a16a2 0x31 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.33 + 0x000000003c0a16d3 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.32 + 0x000000003c0a16f9 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.31 + 0x000000003c0a171d 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.30 + 0x000000003c0a173a 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.26 + 0x000000003c0a1746 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.25 + 0x000000003c0a1758 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.24 + 0x000000003c0a176a 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.23 + 0x000000003c0a177c 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.22 + 0x000000003c0a178e 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.21 + 0x000000003c0a17a0 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.20 + 0x000000003c0a17b9 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.19 + 0x000000003c0a17cb 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.18 + 0x000000003c0a17dc 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.17 + 0x000000003c0a17ec 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.16 + 0x000000003c0a17fe 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.15 + 0x000000003c0a1817 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.14 + 0x000000003c0a1829 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.13 + 0x000000003c0a183a 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.12 + 0x000000003c0a184c 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.11 + 0x000000003c0a185d 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.10 + 0x000000003c0a1872 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.9 + 0x000000003c0a1884 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.6 + 0x000000003c0a18ba 0xb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.5 + 0x000000003c0a18c5 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.4 + 0x000000003c0a1900 0x49 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.57 + 0x000000003c0a1949 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.56 + 0x000000003c0a195f 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.55 + 0x000000003c0a197a 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.54 + 0x000000003c0a198d 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.24 + 0x000000003c0a19a8 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.23 + 0x000000003c0a19c1 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.15 + 0x000000003c0a19da 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.14 + 0x000000003c0a19f3 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.13 + 0x000000003c0a1a0b 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.12 + 0x000000003c0a1a33 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.11 + 0x000000003c0a1a4d 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.9 + 0x000000003c0a1a65 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.4 + 0x000000003c0a1a71 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.3 + 0x000000003c0a1a85 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.84 + 0x000000003c0a1aa8 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.83 + 0x000000003c0a1ac5 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.82 + 0x000000003c0a1ae0 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.81 + 0x000000003c0a1b10 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.80 + 0x000000003c0a1b4c 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.79 + 0x000000003c0a1b83 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.78 + 0x000000003c0a1bac 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.69 + 0x000000003c0a1bd9 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.67 + 0x000000003c0a1bfc 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.66 + 0x000000003c0a1c14 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.65 + 0x000000003c0a1c4a 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.64 + 0x000000003c0a1c76 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.63 + 0x000000003c0a1c9c 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.62 + 0x000000003c0a1caa 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.61 + 0x000000003c0a1cb9 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.60 + 0x000000003c0a1cc8 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.59 + 0x000000003c0a1cd7 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.52 + 0x000000003c0a1d01 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.47 + 0x000000003c0a1d14 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.41 + 0x000000003c0a1d3d 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.40 + 0x000000003c0a1d4b 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.25 + 0x000000003c0a1d59 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.21 + 0x000000003c0a1d83 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.20 + 0x000000003c0a1d9c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.19 + 0x000000003c0a1da8 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.16 + 0x000000003c0a1dda 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.15 + 0x000000003c0a1e02 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.14 + 0x000000003c0a1e26 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.8 + 0x000000003c0a1e51 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.5 + 0x000000003c0a1e86 0x54 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.4 + 0x000000003c0a1eda 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.84 + 0x000000003c0a1ef3 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.83 + 0x000000003c0a1f0b 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.81 + 0x000000003c0a1f23 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.75 + 0x000000003c0a1f3c 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.74 + 0x000000003c0a1f53 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.73 + 0x000000003c0a1f7d 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.72 + 0x000000003c0a1f96 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.71 + 0x000000003c0a1fc3 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.70 + 0x000000003c0a1fdc 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.69 + 0x000000003c0a1ff2 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.68 + 0x000000003c0a2012 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.65 + 0x000000003c0a202f 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.58 + 0x000000003c0a2062 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.57 + 0x000000003c0a2085 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.56 + 0x000000003c0a20c3 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.55 + 0x000000003c0a20e6 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.54 + 0x000000003c0a2109 0x37 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.53 + 0x000000003c0a2140 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.52 + 0x000000003c0a214f 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.51 + 0x000000003c0a2166 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.50 + 0x000000003c0a2189 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.49 + 0x000000003c0a21a5 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.37 + 0x000000003c0a21bc 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.36 + 0x000000003c0a21d2 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.35 + 0x000000003c0a21eb 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.34 + 0x000000003c0a2203 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.33 + 0x000000003c0a2224 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.32 + 0x000000003c0a2260 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.31 + 0x000000003c0a2278 0x2f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.29 + 0x000000003c0a22a7 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.28 + 0x000000003c0a22bd 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.27 + 0x000000003c0a22d8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.26 + 0x000000003c0a22f0 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.25 + 0x000000003c0a230a 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.24 + 0x000000003c0a2322 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.23 + 0x000000003c0a233e 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.22 + 0x000000003c0a2352 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.21 + 0x000000003c0a236d 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.20 + 0x000000003c0a2386 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.19 + 0x000000003c0a23a6 0x29 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.18 + 0x000000003c0a23cf 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.17 + 0x000000003c0a23e9 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.16 + 0x000000003c0a2404 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.15 + 0x000000003c0a241e 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.14 + 0x000000003c0a2436 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.13 + 0x000000003c0a2440 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x000000003c0a246c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.11 + 0x000000003c0a2484 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.10 + 0x000000003c0a249c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x000000003c0a24b4 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.8 + 0x000000003c0a24d8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x000000003c0a24f0 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.6 + 0x000000003c0a2538 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.5 + 0x000000003c0a2550 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.4 + 0x000000003c0a2568 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.3 + 0x000000003c0a2580 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x000000003c0a25b0 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.4 + 0x000000003c0a25c2 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.3 + 0x000000003c0a25e5 0x4b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.111 + 0x000000003c0a2630 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.110 + 0x000000003c0a2648 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.109 + 0x000000003c0a2661 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.105 + 0x000000003c0a267a 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.103 + 0x000000003c0a26a0 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.101 + 0x000000003c0a26d6 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.100 + 0x000000003c0a26fc 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.99 + 0x000000003c0a2721 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.98 + 0x000000003c0a273f 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.95 + 0x000000003c0a2764 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.86 + 0x000000003c0a2779 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.85 + 0x000000003c0a27a5 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.84 + 0x000000003c0a27d1 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.83 + 0x000000003c0a27fc 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.82 + 0x000000003c0a2814 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.81 + 0x000000003c0a282c 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.78 + 0x000000003c0a2844 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.76 + 0x000000003c0a285d 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.75 + 0x000000003c0a286c 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.74 + 0x000000003c0a28a9 0x32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.73 + 0x000000003c0a28db 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.72 + 0x000000003c0a28e9 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.71 + 0x000000003c0a28f9 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.69 + 0x000000003c0a290e 0x3d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.68 + 0x000000003c0a294b 0x42 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.67 + 0x000000003c0a298d 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.66 + 0x000000003c0a29b2 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.65 + 0x000000003c0a29de 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.64 + 0x000000003c0a2a14 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.59 + 0x000000003c0a2a5c 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.58 + 0x000000003c0a2a72 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.57 + 0x000000003c0a2a9d 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.56 + 0x000000003c0a2ab3 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.52 + 0x000000003c0a2ae8 0x35 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.50 + 0x000000003c0a2b1d 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.49 + 0x000000003c0a2b36 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.48 + 0x000000003c0a2b4e 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.47 + 0x000000003c0a2b84 0x1b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.44 + 0x000000003c0a2b9f 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.43 + 0x000000003c0a2bb7 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.42 + 0x000000003c0a2be3 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.39 + 0x000000003c0a2bf9 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.38 + 0x000000003c0a2c11 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.37 + 0x000000003c0a2c2e 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.36 + 0x000000003c0a2c41 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.35 + 0x000000003c0a2c62 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.34 + 0x000000003c0a2c83 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.33 + 0x000000003c0a2c99 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.32 + 0x000000003c0a2cb0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.31 + 0x000000003c0a2cbe 0xa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.30 + 0x000000003c0a2cc8 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.29 + 0x000000003c0a2cd5 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.28 + 0x000000003c0a2ce6 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.27 + 0x000000003c0a2cf6 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.26 + 0x000000003c0a2d1a 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.16 + 0x000000003c0a2d32 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.15 + 0x000000003c0a2d50 0x23 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.14 + 0x000000003c0a2d73 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.11 + 0x000000003c0a2d93 0x36 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.10 + 0x000000003c0a2dc9 0x2a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x000000003c0a2df3 0x1f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.8 + 0x000000003c0a2e12 0x26 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x000000003c0a2e38 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.6 + 0x000000003c0a2e5d 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.5 + 0x000000003c0a2e7b 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.4 + 0x000000003c0a2e91 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.3 + 0x000000003c0a2ea1 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x000000003c0a2eb9 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.6 + 0x000000003c0a2ed2 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.5 + 0x000000003c0a2eeb 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.4 + 0x000000003c0a2f04 0x19 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + .rodata_wlog_verbose.53 + 0x000000003c0a2f1d 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.52 + 0x000000003c0a2f3d 0xf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.77 + 0x000000003c0a2f4c 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.76 + 0x000000003c0a2f5f 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.75 + 0x000000003c0a2f72 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.74 + 0x000000003c0a2f85 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.73 + 0x000000003c0a2f98 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.72 + 0x000000003c0a2fb0 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.71 + 0x000000003c0a2fc3 0x1e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.46 + 0x000000003c0a2fe1 0xd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x000000003c0a2fee 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.43 + 0x000000003c0a301b 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.39 + 0x000000003c0a3038 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.38 + 0x000000003c0a305d 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.37 + 0x000000003c0a3085 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.36 + 0x000000003c0a30ad 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.35 + 0x000000003c0a30dd 0x22 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.34 + 0x000000003c0a30ff 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.33 + 0x000000003c0a3120 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.32 + 0x000000003c0a313c 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.31 + 0x000000003c0a3161 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.30 + 0x000000003c0a3181 0x2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.29 + 0x000000003c0a31ad 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.28 + 0x000000003c0a31bd 0x1d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.27 + 0x000000003c0a31da 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.26 + 0x000000003c0a31f0 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.24 + 0x000000003c0a31fe 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.23 + 0x000000003c0a3218 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.22 + 0x000000003c0a3232 0x45 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.18 + 0x000000003c0a3277 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.17 + 0x000000003c0a328c 0x11 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.12 + 0x000000003c0a329d 0x13 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.11 + 0x000000003c0a32b0 0x1a E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.9 + 0x000000003c0a32ca 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.2 + 0x000000003c0a3305 0x3f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x000000003c0a3344 0x15 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.44 + 0x000000003c0a3359 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.43 + 0x000000003c0a337d 0x3e E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.40 + 0x000000003c0a33bb 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.39 + 0x000000003c0a33d2 0x14 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.38 + 0x000000003c0a33e6 0xe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.11 + 0x000000003c0a33f4 0x16 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.10 + 0x000000003c0a340a 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.9 + 0x000000003c0a3421 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.6 + 0x000000003c0a3438 0x2d E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.5 + 0x000000003c0a3465 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.4 + 0x000000003c0a3475 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.3 + 0x000000003c0a3485 0x17 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.2 + 0x000000003c0a349c 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.77 + 0x000000003c0a34bc 0x1c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.63 + 0x000000003c0a34d8 0x21 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.61 + 0x000000003c0a34f9 0x12 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.60 + 0x000000003c0a350b 0x33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.45 + 0x000000003c0a353e 0x2b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + +.ext_ram.dummy 0x000000003c000020 0xaffe0 + 0x000000003c0a1590 . = (ORIGIN (extern_ram_seg) + (_rodata_reserved_end - _flash_rodata_dummy_start)) + *fill* 0x000000003c000020 0xa1570 + 0x000000003c0b0000 . = ALIGN (0x10000) + *fill* 0x000000003c0a1590 0xea70 + +.ext_ram.bss 0x000000003c0b0000 0x0 + 0x000000003c0b0000 _ext_ram_bss_start = ABSOLUTE (.) + 0x000000003c0b0000 . = ALIGN (0x4) + 0x000000003c0b0000 _ext_ram_bss_end = ABSOLUTE (.) + +.iram0.text_end + 0x0000000040386913 0xed + *(.iram_end_test) + 0x0000000040386923 . = (. + _esp_memprot_prefetch_pad_size) + *fill* 0x0000000040386913 0x10 + 0x0000000040386a00 . = ALIGN (_esp_memprot_align_size) + *fill* 0x0000000040386923 0xdd + 0x0000000040386a00 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x0000000040386a00 0x0 + 0x0000000040386a00 . = ALIGN (0x4) + 0x0000000040386a00 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x0000000040386a00 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x0000000040386a00 _coredump_iram_end = ABSOLUTE (.) + 0x0000000040386a00 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x0000000040386a00 0x0 + 0x0000000040386a00 . = ALIGN (0x4) + 0x0000000040386a00 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x0000000040386a00 _iram_bss_end = ABSOLUTE (.) + 0x0000000040386a00 . = ALIGN (0x4) + 0x0000000040386a00 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003fca42f0 0x0 + 0x000000003fca42f0 . = ALIGN (0x8) + 0x000000003fca42f0 _heap_low_start = ABSOLUTE (.) + +.xt.prop 0x0000000000000000 0x79104 + *(.xt.prop .gnu.linkonce.prop.*) + .xt.prop 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + 0x24 (size before relaxing) + .xt.prop 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000030 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x150 (size before relaxing) + .xt.prop 0x000000000000003c 0x144 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x0000000000000180 0x498 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x0000000000000618 0x324 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x000000000000093c 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0000000000000960 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000000960 0x24 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x0000000000000984 0x30c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x318 (size before relaxing) + .xt.prop 0x0000000000000c90 0x78 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x0000000000000d08 0x18c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x0000000000000e94 0xa8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x0000000000000f3c 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x0000000000000f84 0xc0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x0000000000001044 0x1f8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000000000000123c 0x2ac esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00000000000014e8 0x2c4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x00000000000017ac 0x78 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0000000000001824 0x258 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x0000000000001a7c 0x84 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000001b00 0xc0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x0000000000001bc0 0x3e4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.prop 0x0000000000001fa4 0x384 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x0000000000002328 0x24 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000000234c 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x00000000000023f4 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x24 (size before relaxing) + .xt.prop 0x00000000000023f4 0x21c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x0000000000002610 0x318 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x0000000000002928 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000002958 0xf0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000000000002a48 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x54 (size before relaxing) + .xt.prop 0x0000000000002a48 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x0000000000002ac0 0xfc esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000002bbc 0x1f8 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000000000002db4 0x84 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000002e38 0x300 esp-idf/log/liblog.a(log.c.obj) + 0x360 (size before relaxing) + .xt.prop 0x0000000000003138 0x168 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000032a0 0x6c0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xda4 (size before relaxing) + .xt.prop 0x0000000000003960 0x21c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3cc (size before relaxing) + .xt.prop 0x0000000000003b7c 0x330 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x684 (size before relaxing) + .xt.prop 0x0000000000003eac 0x954 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xe4c (size before relaxing) + .xt.prop 0x0000000000004800 0x204 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x0000000000004a04 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x6c (size before relaxing) + .xt.prop 0x0000000000004a34 0x2dc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x3e4 (size before relaxing) + .xt.prop 0x0000000000004d10 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x0000000000004ed8 0xc24 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe4c (size before relaxing) + .xt.prop 0x0000000000005afc 0xe40 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xe58 (size before relaxing) + .xt.prop 0x000000000000693c 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x0000000000006b58 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x0000000000006bac 0x1a4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x0000000000006d50 0x8b8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xbac (size before relaxing) + .xt.prop 0x0000000000007608 0x408 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x0000000000007a10 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000007a70 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000007c8c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000007cb0 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000007e00 0x1b3c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2bec (size before relaxing) + .xt.prop 0x000000000000993c 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x0000000000009a14 0x39c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4ec (size before relaxing) + .xt.prop 0x0000000000009db0 0x120 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x0000000000009ed0 0x108 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.prop 0x0000000000009fd8 0x42c esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000000a404 0x150 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x000000000000a554 0xda4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x132c (size before relaxing) + .xt.prop 0x000000000000b2f8 0x1944 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2a24 (size before relaxing) + .xt.prop 0x000000000000cc3c 0x114 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x000000000000cd50 0xc esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xt.prop 0x000000000000cd5c 0x6c esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x78 (size before relaxing) + .xt.prop 0x000000000000cdc8 0x15c esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x000000000000cf24 0xe4 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x000000000000d008 0x48 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x000000000000d050 0x9c esp-idf/newlib/libnewlib.a(assert.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x000000000000d0ec 0x174 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000000d260 0x534 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x63c (size before relaxing) + .xt.prop 0x000000000000d794 0x48 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000000000000d7dc 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000000d80c 0x78 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x000000000000d884 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x21c (size before relaxing) + .xt.prop 0x000000000000d8e4 0x2d0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x000000000000dbb4 0x144 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x000000000000dcf8 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x240 (size before relaxing) + .xt.prop 0x000000000000dd1c 0x78 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x000000000000dd94 0x6cc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xb04 (size before relaxing) + .xt.prop 0x000000000000e460 0x9c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x000000000000e4fc 0x3c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000000000000e538 0x1a4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x000000000000e6dc 0x138 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x000000000000e814 0x9e4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x21cc (size before relaxing) + .xt.prop 0x000000000000f1f8 0x30c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x000000000000f504 0x594 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x798 (size before relaxing) + .xt.prop 0x000000000000fa98 0x144 esp-idf/main/libmain.a(station_example_main.c.obj) + .xt.prop 0x000000000000fbdc 0x18c esp-idf/main/libmain.a(modbus-tcp.c.obj) + .xt.prop 0x000000000000fd68 0x318 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x0000000000010080 0x1d4 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x0000000000010254 0x1f8 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x000000000001044c 0xfc esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0000000000010548 0x3fc esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x408 (size before relaxing) + .xt.prop 0x0000000000010944 0xfc esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x0000000000010a40 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x0000000000010a94 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0xcd8 (size before relaxing) + .xt.prop 0x0000000000010b54 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0000000000010c44 0x384 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x0000000000010fc8 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x0000000000010ff8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0xa08 (size before relaxing) + .xt.prop 0x0000000000010ff8 0x6b4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x16e0 (size before relaxing) + .xt.prop 0x00000000000116ac 0xcc esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x750 (size before relaxing) + .xt.prop 0x0000000000011778 0x330 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000011aa8 0x54c esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0xa80 (size before relaxing) + .xt.prop 0x0000000000011ff4 0x3c0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x7bc (size before relaxing) + .xt.prop 0x00000000000123b4 0x654 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x9c0 (size before relaxing) + .xt.prop 0x0000000000012a08 0xb58 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0xedc (size before relaxing) + .xt.prop 0x0000000000013560 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x0000000000013560 0x114 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x0000000000013674 0x6c esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + 0xb4 (size before relaxing) + .xt.prop 0x00000000000136e0 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x0000000000013890 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00000000000138b4 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000138d8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x168 (size before relaxing) + .xt.prop 0x0000000000013908 0xc0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00000000000139c8 0x174 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x21c (size before relaxing) + .xt.prop 0x0000000000013b3c 0x348 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x5b8 (size before relaxing) + .xt.prop 0x0000000000013e84 0x618 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x7bc (size before relaxing) + .xt.prop 0x000000000001449c 0x90 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x000000000001452c 0x984 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x111c (size before relaxing) + .xt.prop 0x0000000000014eb0 0x12c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x474 (size before relaxing) + .xt.prop 0x0000000000014fdc 0x2b8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x0000000000015294 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x0000000000015318 0x114 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000000000001542c 0x3f0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x000000000001581c 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x0000000000015834 0xaec esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xb70 (size before relaxing) + .xt.prop 0x0000000000016320 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x000000000001641c 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00000000000164f4 0x168 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x000000000001665c 0x2c4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x0000000000016920 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00000000000169b0 0x4d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x4f8 (size before relaxing) + .xt.prop 0x0000000000016e84 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000000000016f14 0x384 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x0000000000017298 0x60 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00000000000172f8 0x18c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x0000000000017484 0x1f8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x000000000001767c 0x6fc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc84 (size before relaxing) + .xt.prop 0x0000000000017d78 0x108 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x0000000000017e80 0x24 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000017ea4 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000000000017ea4 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000000000017eec 0x9c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x0000000000017f88 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x0000000000017f88 0x84 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x000000000001800c 0x234 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000000000018240 0x4f8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x57c (size before relaxing) + .xt.prop 0x0000000000018738 0x120 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x0000000000018858 0x240 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x300 (size before relaxing) + .xt.prop 0x0000000000018a98 0x48 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .xt.prop 0x0000000000018ae0 0x120 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000000000018c00 0x2d0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000018ed0 0xc esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x0000000000018edc 0xc esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .xt.prop 0x0000000000018ee8 0xc esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .xt.prop 0x0000000000018ef4 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x0000000000018f0c 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x0000000000018f0c 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000000000018f48 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x00000000000190e0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .xt.prop 0x0000000000019128 0x2f4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x000000000001941c 0x198 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000195b4 0xb40 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xe70 (size before relaxing) + .xt.prop 0x000000000001a0f4 0x678 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x102c (size before relaxing) + .xt.prop 0x000000000001a76c 0xc78 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xeac (size before relaxing) + .xt.prop 0x000000000001b3e4 0x39c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x510 (size before relaxing) + .xt.prop 0x000000000001b780 0x174 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000001b8f4 0x450 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4a4 (size before relaxing) + .xt.prop 0x000000000001bd44 0x294 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000001bfd8 0x129c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x15e4 (size before relaxing) + .xt.prop 0x000000000001d274 0x588 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x000000000001d7fc 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.prop 0x000000000001d880 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x90 (size before relaxing) + .xt.prop 0x000000000001d8ec 0x120 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000000000001da0c 0xc90 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x108c (size before relaxing) + .xt.prop 0x000000000001e69c 0x1ff8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2748 (size before relaxing) + .xt.prop 0x0000000000020694 0x16e0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x16ec (size before relaxing) + .xt.prop 0x0000000000021d74 0x10e0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10ec (size before relaxing) + .xt.prop 0x0000000000022e54 0x360 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00000000000231b4 0x147c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x159c (size before relaxing) + .xt.prop 0x0000000000024630 0x924 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xa50 (size before relaxing) + .xt.prop 0x0000000000024f54 0x54c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x00000000000254a0 0xa8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4f8 (size before relaxing) + .xt.prop 0x0000000000025548 0xe4 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x000000000002562c 0xc78 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xd2c (size before relaxing) + .xt.prop 0x00000000000262a4 0xc esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x00000000000262b0 0xd8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x0000000000026388 0x6fc esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x780 (size before relaxing) + .xt.prop 0x0000000000026a84 0x1b60 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c38 (size before relaxing) + .xt.prop 0x00000000000285e4 0x138 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x000000000002871c 0x90 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.prop 0x00000000000287ac 0x114 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00000000000288c0 0x6fc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8dc (size before relaxing) + .xt.prop 0x0000000000028fbc 0x180 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000002913c 0x11b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38b8 (size before relaxing) + .xt.prop 0x000000000002a2f4 0x3d8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x000000000002a6cc 0x54 esp-idf/lwip/liblwip.a(def.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x000000000002a720 0x84 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x1104 (size before relaxing) + .xt.prop 0x000000000002a7a4 0x1c8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x000000000002a96c 0x24 esp-idf/lwip/liblwip.a(init.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000002a990 0x6c esp-idf/lwip/liblwip.a(ip.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000002a9fc 0x240 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000002ac3c 0xca8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x111c (size before relaxing) + .xt.prop 0x000000000002b8e4 0xb04 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xf48 (size before relaxing) + .xt.prop 0x000000000002c3e8 0x1728 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x180c (size before relaxing) + .xt.prop 0x000000000002db10 0x180 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000000000002dc90 0x7ec esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x87c (size before relaxing) + .xt.prop 0x000000000002e47c 0x210 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x000000000002e68c 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x000000000002e68c 0x804 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x1014 (size before relaxing) + .xt.prop 0x000000000002ee90 0x1008 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c08 (size before relaxing) + .xt.prop 0x000000000002fe98 0x54 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x000000000002feec 0xf0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x000000000002ffdc 0x354 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x0000000000030330 0x14ac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2d00 (size before relaxing) + .xt.prop 0x00000000000317dc 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x000000000003189c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x000000000003195c 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00000000000319f8 0x4ec esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc3c (size before relaxing) + .xt.prop 0x0000000000031ee4 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x0000000000031f68 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x0000000000031fd4 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0000000000032070 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x000000000003213c 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x00000000000322d4 0x528 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xbb8 (size before relaxing) + .xt.prop 0x00000000000327fc 0x2d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x0000000000032acc 0x1b0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x0000000000032c7c 0x360 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x648 (size before relaxing) + .xt.prop 0x0000000000032fdc 0x234 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x0000000000033210 0xcd8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10b0 (size before relaxing) + .xt.prop 0x0000000000033ee8 0x1314 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1ce0 (size before relaxing) + .xt.prop 0x00000000000351fc 0x6f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xb4c (size before relaxing) + .xt.prop 0x00000000000358ec 0x828 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xffc (size before relaxing) + .xt.prop 0x0000000000036114 0x72c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8a0 (size before relaxing) + .xt.prop 0x0000000000036840 0x2dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x5ac (size before relaxing) + .xt.prop 0x0000000000036b1c 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x8f4 (size before relaxing) + .xt.prop 0x0000000000036ee8 0x9fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe64 (size before relaxing) + .xt.prop 0x00000000000378e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x0000000000037914 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0000000000037a04 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000037a7c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x0000000000037ac4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x0000000000037af4 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x0000000000037b3c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x0000000000037b84 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000000000037bcc 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x0000000000037e0c 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x0000000000037ee4 0x840 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xa8c (size before relaxing) + .xt.prop 0x0000000000038724 0x4a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x0000000000038bc8 0x36c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x474 (size before relaxing) + .xt.prop 0x0000000000038f34 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000039150 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x0000000000039360 0x2b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000039618 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x60c (size before relaxing) + .xt.prop 0x0000000000039900 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x00000000000399c0 0x474 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x7d4 (size before relaxing) + .xt.prop 0x0000000000039e34 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x7e0 (size before relaxing) + .xt.prop 0x0000000000039ffc 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x93c (size before relaxing) + .xt.prop 0x000000000003a284 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xcb4 (size before relaxing) + .xt.prop 0x000000000003a2f0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x000000000003a338 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000000000003a494 0x39c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x3e4 (size before relaxing) + .xt.prop 0x000000000003a830 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000000000003a854 0xe40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x4860 (size before relaxing) + .xt.prop 0x000000000003b694 0x564 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x66c (size before relaxing) + .xt.prop 0x000000000003bbf8 0x288 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x39c (size before relaxing) + .xt.prop 0x000000000003be80 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000003bec8 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000003bf58 0x84 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x15e4 (size before relaxing) + .xt.prop 0x000000000003bfdc 0x1668 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0x17c4 (size before relaxing) + .xt.prop 0x000000000003d644 0x15fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x1c98 (size before relaxing) + .xt.prop 0x000000000003ec40 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x168 (size before relaxing) + .xt.prop 0x000000000003eca0 0x1584 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x1668 (size before relaxing) + .xt.prop 0x0000000000040224 0x19bc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4248 (size before relaxing) + .xt.prop 0x0000000000041be0 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x2b8 (size before relaxing) + .xt.prop 0x0000000000041c70 0x948 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xad4 (size before relaxing) + .xt.prop 0x00000000000425b8 0x1ca4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x2820 (size before relaxing) + .xt.prop 0x000000000004425c 0x2a0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x300 (size before relaxing) + .xt.prop 0x00000000000444fc 0x498 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x594 (size before relaxing) + .xt.prop 0x0000000000044994 0x18c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x2c4 (size before relaxing) + .xt.prop 0x0000000000044b20 0x114 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + 0x1e0 (size before relaxing) + .xt.prop 0x0000000000044c34 0x2dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x414 (size before relaxing) + .xt.prop 0x0000000000044f10 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x138 (size before relaxing) + .xt.prop 0x0000000000044f7c 0x1854 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x1b48 (size before relaxing) + .xt.prop 0x00000000000467d0 0x1bc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0x1d04 (size before relaxing) + .xt.prop 0x0000000000048390 0x1074 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x1b18 (size before relaxing) + .xt.prop 0x0000000000049404 0x738 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0x990 (size before relaxing) + .xt.prop 0x0000000000049b3c 0x51c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x5dc (size before relaxing) + .xt.prop 0x000000000004a058 0x1e9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x2598 (size before relaxing) + .xt.prop 0x000000000004bef4 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x288 (size before relaxing) + .xt.prop 0x000000000004bf9c 0x4b0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x534 (size before relaxing) + .xt.prop 0x000000000004c44c 0x108 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x3fc (size before relaxing) + .xt.prop 0x000000000004c554 0x1c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1f8 (size before relaxing) + .xt.prop 0x000000000004c71c 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000004c7d0 0xd8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + 0xf0 (size before relaxing) + .xt.prop 0x000000000004c8a8 0xc0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0xcc (size before relaxing) + .xt.prop 0x000000000004c968 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x000000000004c9e0 0x360 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x5f4 (size before relaxing) + .xt.prop 0x000000000004cd40 0x9fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x153c (size before relaxing) + .xt.prop 0x000000000004d73c 0x10ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x1adc (size before relaxing) + .xt.prop 0x000000000004e828 0x1efc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x2ce8 (size before relaxing) + .xt.prop 0x0000000000050724 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + 0xfc (size before relaxing) + .xt.prop 0x000000000005076c 0x1428 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x2e38 (size before relaxing) + .xt.prop 0x0000000000051b94 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x3e4 (size before relaxing) + .xt.prop 0x0000000000051c48 0x30c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x390 (size before relaxing) + .xt.prop 0x0000000000051f54 0xb4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x18c (size before relaxing) + .xt.prop 0x0000000000052008 0xc9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x1f20 (size before relaxing) + .xt.prop 0x0000000000052ca4 0xd50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x1ae8 (size before relaxing) + .xt.prop 0x00000000000539f4 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x12c (size before relaxing) + .xt.prop 0x0000000000053a54 0x150 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x240 (size before relaxing) + .xt.prop 0x0000000000053ba4 0x270 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x2b8 (size before relaxing) + .xt.prop 0x0000000000053e14 0x6b4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0xc54 (size before relaxing) + .xt.prop 0x00000000000544c8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + 0xf0 (size before relaxing) + .xt.prop 0x00000000000544c8 0x378 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000054840 0x12c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x15c (size before relaxing) + .xt.prop 0x000000000005496c 0x69c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0xea0 (size before relaxing) + .xt.prop 0x0000000000055008 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x17f4 (size before relaxing) + .xt.prop 0x0000000000055008 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000055008 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xef4 (size before relaxing) + .xt.prop 0x0000000000055008 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x75c (size before relaxing) + .xt.prop 0x0000000000055014 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000005505c 0x3cc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x0000000000055428 0x45c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x0000000000055884 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xdf8 (size before relaxing) + .xt.prop 0x0000000000055908 0x2f4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x300 (size before relaxing) + .xt.prop 0x0000000000055bfc 0x1bc esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x0000000000055db8 0x78 esp-idf/soc/libsoc.a(lldesc.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x0000000000055e30 0x3c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.prop 0x0000000000055e6c 0xc esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .xt.prop 0x0000000000055e78 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x0000000000055f08 0x210 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x2c4 (size before relaxing) + .xt.prop 0x0000000000056118 0x840 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xd68 (size before relaxing) + .xt.prop 0x0000000000056958 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x0000000000056a24 0x168 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x0000000000056b8c 0xfc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0000000000056c88 0x4a4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x63c (size before relaxing) + .xt.prop 0x000000000005712c 0xc30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xef4 (size before relaxing) + .xt.prop 0x0000000000057d5c 0x12c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x0000000000057e88 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000000000057e94 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000000000057eac 0x1bc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x0000000000058068 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x0000000000058068 0x78 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x00000000000580e0 0x4ec esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5ac (size before relaxing) + .xt.prop 0x00000000000585cc 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x258 (size before relaxing) + .xt.prop 0x0000000000058794 0x4d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x528 (size before relaxing) + .xt.prop 0x0000000000058c68 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0000000000058cf8 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x0000000000058ec0 0x81c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x12e4 (size before relaxing) + .xt.prop 0x00000000000596dc 0x384 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x648 (size before relaxing) + .xt.prop 0x0000000000059a60 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x0000000000059b68 0x19bc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c98 (size before relaxing) + .xt.prop 0x000000000005b524 0x6b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x000000000005bbd8 0x174 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x000000000005bd4c 0x2148 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x23dc (size before relaxing) + .xt.prop 0x000000000005de94 0x264 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x438 (size before relaxing) + .xt.prop 0x000000000005e0f8 0xdc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xfd8 (size before relaxing) + .xt.prop 0x000000000005eec0 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.prop 0x000000000005ef68 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x000000000005eff8 0x1f8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x225c (size before relaxing) + .xt.prop 0x0000000000060f84 0x648 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x678 (size before relaxing) + .xt.prop 0x00000000000615cc 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00000000000616bc 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + 0x11d0 (size before relaxing) + .xt.prop 0x0000000000061710 0x1e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00000000000618f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + 0xb28 (size before relaxing) + .xt.prop 0x00000000000618f0 0x4e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + 0xfa8 (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + 0x8e8 (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + 0xe1c (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + 0xb28 (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + 0x12f0 (size before relaxing) + .xt.prop 0x0000000000061dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0000000000061dd0 0x528 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + 0x660 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x186c (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3b04 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x1500 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x1860 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x00000000000622f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x798 (size before relaxing) + .xt.prop 0x00000000000622f8 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x738 (size before relaxing) + .xt.prop 0x00000000000624c0 0x414 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8d0 (size before relaxing) + .xt.prop 0x00000000000628d4 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x6a8 (size before relaxing) + .xt.prop 0x0000000000062af0 0x438 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5e8 (size before relaxing) + .xt.prop 0x0000000000062f28 0x14e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x222c (size before relaxing) + .xt.prop 0x0000000000064410 0x2c94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2d0c (size before relaxing) + .xt.prop 0x00000000000670a4 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x00000000000672cc 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x000000000006732c 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x6d8 (size before relaxing) + .xt.prop 0x00000000000675c0 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8f4 (size before relaxing) + .xt.prop 0x0000000000067794 0x408 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x708 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x408 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x6d8c (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + 0x1044 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x678 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0xa38 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x6b4 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x480 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x0000000000067b9c 0x1014 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1ad0 (size before relaxing) + .xt.prop 0x0000000000068bb0 0x210 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x0000000000068dc0 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x51c (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2040 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1a04 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + 0x588 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + 0x558 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + 0xfc (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + 0xe4 (size before relaxing) + .xt.prop 0x0000000000068de4 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + 0x1008 (size before relaxing) + .xt.prop 0x0000000000068de4 0xfc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x168 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + 0x4c14 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + 0x444 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + 0xaf8 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + 0x37a4 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + 0x378 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + 0x744 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + 0x13a4 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + 0x4ec (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + 0x6b1c (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + 0x1860 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + 0x3108 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + 0x210 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + 0x510 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + 0x570 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x918 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x954 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0000000000068ee0 0x48 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xt.prop 0x0000000000068f28 0xc esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .xt.prop 0x0000000000068f34 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x0000000000068f88 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0000000000068f88 0xe4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0xf0 (size before relaxing) + .xt.prop 0x000000000006906c 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + 0x24 (size before relaxing) + .xt.prop 0x000000000006906c 0xc E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x0000000000069078 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x000000000006909c 0x24 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000000690c0 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000690e4 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0x30 (size before relaxing) + .xt.prop 0x0000000000069108 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x78 (size before relaxing) + .xt.prop 0x0000000000069144 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000691a4 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000691c8 0x114 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00000000000692dc 0x120 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x168 (size before relaxing) + .xt.prop 0x00000000000693fc 0xb4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x18c (size before relaxing) + .xt.prop 0x00000000000694b0 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .xt.prop 0x00000000000694bc 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x00000000000694e0 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .xt.prop 0x00000000000694ec 0x54 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .xt.prop 0x0000000000069540 0x12c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x15c (size before relaxing) + .xt.prop 0x000000000006966c 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000696b4 0x78 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x90 (size before relaxing) + .xt.prop 0x000000000006972c 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x174 (size before relaxing) + .xt.prop 0x0000000000069870 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0x30 (size before relaxing) + .xt.prop 0x0000000000069894 0x258 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x3b4 (size before relaxing) + .xt.prop 0x0000000000069aec 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + 0x1f8 (size before relaxing) + .xt.prop 0x0000000000069b10 0x84 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0xfc (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + 0x90 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + 0x6c (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + 0x198 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + 0x180 (size before relaxing) + .xt.prop 0x0000000000069b94 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + 0x138 (size before relaxing) + .xt.prop 0x0000000000069b94 0x78 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x384 (size before relaxing) + .xt.prop 0x0000000000069c0c 0x144 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x2e8 (size before relaxing) + .xt.prop 0x0000000000069d50 0x9c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x474 (size before relaxing) + .xt.prop 0x0000000000069dec 0x1bc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0x7ec (size before relaxing) + .xt.prop 0x0000000000069fa8 0x63c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x6e4 (size before relaxing) + .xt.prop 0x000000000006a5e4 0x4c8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x558 (size before relaxing) + .xt.prop 0x000000000006aaac 0x1ec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x2c4 (size before relaxing) + .xt.prop 0x000000000006ac98 0x18c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x228 (size before relaxing) + .xt.prop 0x000000000006ae24 0x5b8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x888 (size before relaxing) + .xt.prop 0x000000000006b3dc 0x474 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x54c (size before relaxing) + .xt.prop 0x000000000006b850 0x2ac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x318 (size before relaxing) + .xt.prop 0x000000000006bafc 0x6c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + 0xfc (size before relaxing) + .xt.prop 0x000000000006bb68 0x348 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x3fc (size before relaxing) + .xt.prop 0x000000000006beb0 0x120 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x294 (size before relaxing) + .xt.prop 0x000000000006bfd0 0x828 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x900 (size before relaxing) + .xt.prop 0x000000000006c7f8 0x3fc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x558 (size before relaxing) + .xt.prop 0x000000000006cbf4 0xd8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x198 (size before relaxing) + .xt.prop 0x000000000006cccc 0x15c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x228 (size before relaxing) + .xt.prop 0x000000000006ce28 0x258 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x27c (size before relaxing) + .xt.prop 0x000000000006d080 0x924 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0xbac (size before relaxing) + .xt.prop 0x000000000006d9a4 0xcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .xt.prop 0x000000000006da70 0xc0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + 0xcc (size before relaxing) + .xt.prop 0x000000000006db30 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006db30 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000006db30 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xt.prop 0x000000000006db60 0x108 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xt.prop 0x000000000006dc68 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + 0x84 (size before relaxing) + .xt.prop 0x000000000006dc68 0x21c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xt.prop 0x000000000006de84 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + 0xfc (size before relaxing) + .xt.prop 0x000000000006de84 0x210 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xt.prop 0x000000000006e094 0x90 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000006e124 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006e124 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000006e124 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + 0xfc (size before relaxing) + .xt.prop 0x000000000006e124 0x3c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006e160 0x2c4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xt.prop 0x000000000006e424 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006e424 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + 0x144 (size before relaxing) + .xt.prop 0x000000000006e424 0x210 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xt.prop 0x000000000006e634 0x9c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .xt.prop 0x000000000006e6d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000006e6d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000006e6d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + 0xb4 (size before relaxing) + .xt.prop 0x000000000006e6d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + 0x78 (size before relaxing) + .xt.prop 0x000000000006e6d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + 0x240 (size before relaxing) + .xt.prop 0x000000000006e6d0 0x108 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x114 (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + 0x84 (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + 0x6c (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + 0xd8 (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + 0x360 (size before relaxing) + .xt.prop 0x000000000006e7d8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + 0xc (size before relaxing) + .xt.prop 0x000000000006e7d8 0x54 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x60 (size before relaxing) + .xt.prop 0x000000000006e82c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + 0x60 (size before relaxing) + .xt.prop 0x000000000006e82c 0x9c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xt.prop 0x000000000006e8c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + 0x3b4 (size before relaxing) + .xt.prop 0x000000000006e8c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + 0x54 (size before relaxing) + .xt.prop 0x000000000006e8c8 0x108 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x114 (size before relaxing) + .xt.prop 0x000000000006e9d0 0x144 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xt.prop 0x000000000006eb14 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006eb14 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000006eb14 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000006eb14 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + 0x198 (size before relaxing) + .xt.prop 0x000000000006eb14 0xb4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000006ebc8 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .xt.prop 0x000000000006ec10 0xcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + 0x3c (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + 0x54 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + 0x120 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + 0x114 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + 0x9c (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + 0x3c (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + 0x3c (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + 0xa8 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + 0x90 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + 0xc0 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + 0x54 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + 0x1a4 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + 0x6c (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + 0x78 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + 0x1c8 (size before relaxing) + .xt.prop 0x000000000006ecdc 0x273c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x276c (size before relaxing) + .xt.prop 0x0000000000071418 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + 0x30 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + 0x108 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + 0x228 (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + 0xc (size before relaxing) + .xt.prop 0x0000000000071448 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + 0x78 (size before relaxing) + .xt.prop 0x0000000000071448 0x2838 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x2868 (size before relaxing) + .xt.prop 0x0000000000073c80 0x54 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x60 (size before relaxing) + .xt.prop 0x0000000000073cd4 0x78 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x84 (size before relaxing) + .xt.prop 0x0000000000073d4c 0xe4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0xf0 (size before relaxing) + .xt.prop 0x0000000000073e30 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000073e30 0x7c8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xt.prop 0x00000000000745f8 0xb4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .xt.prop 0x00000000000746ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + 0xcc (size before relaxing) + .xt.prop 0x00000000000746ac 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + 0x3c (size before relaxing) + .xt.prop 0x00000000000746ac 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xt.prop 0x000000000007470c 0x7e0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x7ec (size before relaxing) + .xt.prop 0x0000000000074eec 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + 0xb4 (size before relaxing) + .xt.prop 0x0000000000074eec 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xt.prop 0x0000000000074f34 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + 0x48 (size before relaxing) + .xt.prop 0x0000000000074f34 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + 0x81c (size before relaxing) + .xt.prop 0x0000000000074f34 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + 0x1a4 (size before relaxing) + .xt.prop 0x0000000000074f34 0x204c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x207c (size before relaxing) + .xt.prop 0x0000000000076f80 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + 0x1c2c (size before relaxing) + .xt.prop 0x0000000000076f80 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + 0x24 (size before relaxing) + .xt.prop 0x0000000000076f80 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + 0x198 (size before relaxing) + .xt.prop 0x0000000000076f80 0x20ac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0x20dc (size before relaxing) + .xt.prop 0x000000000007902c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + 0xe4 (size before relaxing) + .xt.prop 0x000000000007902c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + 0x48 (size before relaxing) + .xt.prop 0x000000000007902c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + 0x30 (size before relaxing) + .xt.prop 0x000000000007902c 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + 0x3c (size before relaxing) + .xt.prop 0x000000000007902c 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x78 (size before relaxing) + .xt.prop 0x0000000000079044 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + 0x6c (size before relaxing) + .xt.prop 0x0000000000079044 0x54 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x60 (size before relaxing) + .xt.prop 0x0000000000079098 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + 0xd8 (size before relaxing) + .xt.prop 0x0000000000079098 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + 0x1c8 (size before relaxing) + .xt.prop 0x0000000000079098 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + 0x1bc (size before relaxing) + .xt.prop 0x0000000000079098 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x6c (size before relaxing) + .xt.prop 0x00000000000790f8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + 0x288 (size before relaxing) + .xt.prop 0x00000000000790f8 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x84 (size before relaxing) + .xt.prop 0x0000000000079104 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + 0x30 (size before relaxing) + +.xt.lit 0x0000000000000000 0x3628 + *(.xt.lit .gnu.linkonce.p.*) + .xt.lit 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + 0x8 (size before relaxing) + .xt.lit 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x18 (size before relaxing) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x0000000000000018 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe8 (size before relaxing) + .xt.lit 0x0000000000000050 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000070 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000070 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000070 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000000070 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000000000000a0 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x00000000000000a8 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000000c0 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000000000d0 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x00000000000000d8 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x00000000000000f0 0x28 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000118 0x28 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000140 0x28 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000168 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000178 0x20 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000198 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x00000000000001a8 0x10 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000001b8 0x38 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.lit 0x00000000000001f0 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000208 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000208 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000218 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000238 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000268 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000270 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000290 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000290 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000298 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000298 0x10 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000002a8 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000002b8 0x28 esp-idf/log/liblog.a(log.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000002e0 0x10 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000002f0 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x0000000000000358 0x18 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000370 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000390 0x48 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000000000003d8 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.lit 0x00000000000003f8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000420 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000448 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000004b0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000004f8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000520 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000528 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000000540 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000000000005b0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000005e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000005f0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000600 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000600 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000610 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000000690 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000698 0x40 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000000000006d8 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x00000000000006e0 0x8 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.lit 0x00000000000006e8 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000006f0 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000700 0x78 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x130 (size before relaxing) + .xt.lit 0x0000000000000778 0x108 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2b0 (size before relaxing) + .xt.lit 0x0000000000000880 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x00000000000008a0 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000008a0 0x8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000008a8 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.lit 0x00000000000008b0 0x8 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000008b8 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000008c0 0x40 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000000900 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000900 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000908 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000910 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000910 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000938 0x10 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000948 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000948 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000000950 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000000000009a0 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x00000000000009b0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000009b0 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000009d0 0x10 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000009e0 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1a8 (size before relaxing) + .xt.lit 0x0000000000000a00 0x28 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000a28 0x38 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000000a60 0x18 esp-idf/main/libmain.a(station_example_main.c.obj) + .xt.lit 0x0000000000000a78 0x20 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .xt.lit 0x0000000000000a98 0x10 esp-idf/main/libmain.a(ModbusS.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000aa8 0x30 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000ad8 0x18 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000af0 0x18 esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000b08 0x40 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000000b48 0x18 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000b60 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000000b68 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000b80 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000b80 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000000b80 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x0000000000000bf0 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x0000000000000bf8 0x28 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000c20 0x30 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000c50 0x28 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000c78 0x38 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000000cb0 0x78 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000000d28 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000d28 0x10 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000d38 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000000d58 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000d58 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000d58 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000d60 0x10 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000d70 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000d78 0x38 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000000db0 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000000de0 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000de8 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000000e38 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000e48 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000000e68 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000e70 0x10 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000e80 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000000ea8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000000ed8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000ee8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000ee8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000000ef8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000000f00 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000f00 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000000f48 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000000f48 0x28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000000f70 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000000f80 0x18 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000000f98 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000000fb0 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x0000000000000ff8 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001000 0x8 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001008 0x18 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001020 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000001038 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001058 0x18 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001070 0x8 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .xt.lit 0x0000000000001078 0x8 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001080 0x18 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001098 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001098 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000010b8 0x28 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000010e0 0x10 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000010f0 0x48 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x0000000000001138 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1f0 (size before relaxing) + .xt.lit 0x0000000000001158 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000001188 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000001198 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000001198 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000011b0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000011b0 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00000000000011d8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000000000011e0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.lit 0x00000000000011e8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000011e8 0x10 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000011f8 0x70 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x0000000000001268 0xe8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x0000000000001350 0x50 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000013a0 0xb8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000001458 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000001488 0x88 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000001510 0x50 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000001560 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001578 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001578 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x0000000000001580 0x10 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000001590 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001590 0x8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x0000000000001598 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000000000015a0 0x60 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000001600 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x0000000000001610 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.lit 0x0000000000001620 0x8 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001628 0x70 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000001698 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000016a8 0x98 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x230 (size before relaxing) + .xt.lit 0x0000000000001740 0x40 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001780 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001788 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000001790 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001790 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001790 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001790 0x18 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000017a8 0x80 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000001828 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000001838 0x28 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000001860 0x10 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001870 0x28 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001898 0x10 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000018a8 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000018a8 0x48 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00000000000018f0 0x70 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000001960 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x0000000000001968 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000001970 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001998 0xd8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2f8 (size before relaxing) + .xt.lit 0x0000000000001a70 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001a70 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001a70 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001a70 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x0000000000001a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001a78 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001a78 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001a80 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001a90 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000001a90 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001ab0 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000001ad8 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000001af8 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1d0 (size before relaxing) + .xt.lit 0x0000000000001b18 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x170 (size before relaxing) + .xt.lit 0x0000000000001b28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x0000000000001b28 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x0000000000001b50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000001b50 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000001b58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000001b58 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000001b68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001b68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001b70 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001b80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001b88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001b88 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x0000000000001bd0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000001bf8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001c28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001c30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000001c38 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001c40 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000001c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001c50 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000001c60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001c60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000001c60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x0000000000001c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001c68 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001c78 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000001c90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000001c90 0x100 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x638 (size before relaxing) + .xt.lit 0x0000000000001d90 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + 0x90 (size before relaxing) + .xt.lit 0x0000000000001dd0 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000001df0 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000001df8 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .xt.lit 0x0000000000001e08 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + 0x120 (size before relaxing) + .xt.lit 0x0000000000001e08 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + 0xd8 (size before relaxing) + .xt.lit 0x0000000000001e90 0xe8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + 0x188 (size before relaxing) + .xt.lit 0x0000000000001f78 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000001f80 0x58 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + 0x88 (size before relaxing) + .xt.lit 0x0000000000001fd8 0xf0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + 0x4b0 (size before relaxing) + .xt.lit 0x00000000000020c8 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + 0x38 (size before relaxing) + .xt.lit 0x00000000000020d0 0x38 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000002108 0xe0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + 0x238 (size before relaxing) + .xt.lit 0x00000000000021e8 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002200 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + 0x70 (size before relaxing) + .xt.lit 0x0000000000002210 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002228 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002238 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + 0x78 (size before relaxing) + .xt.lit 0x0000000000002248 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002248 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + 0x160 (size before relaxing) + .xt.lit 0x00000000000022f0 0x98 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + 0xf0 (size before relaxing) + .xt.lit 0x0000000000002388 0x78 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + 0x318 (size before relaxing) + .xt.lit 0x0000000000002400 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + 0xe0 (size before relaxing) + .xt.lit 0x00000000000024a8 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + 0x98 (size before relaxing) + .xt.lit 0x00000000000024d8 0x140 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + 0x248 (size before relaxing) + .xt.lit 0x0000000000002618 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002620 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002640 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + 0x50 (size before relaxing) + .xt.lit 0x0000000000002658 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002660 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002660 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.lit 0x0000000000002670 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002678 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000002678 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + 0x60 (size before relaxing) + .xt.lit 0x00000000000026a8 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + 0x318 (size before relaxing) + .xt.lit 0x00000000000026e8 0xa8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + 0x1b0 (size before relaxing) + .xt.lit 0x0000000000002790 0x110 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + 0x370 (size before relaxing) + .xt.lit 0x00000000000028a0 0xc8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + 0x2e8 (size before relaxing) + .xt.lit 0x0000000000002968 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002970 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + 0x78 (size before relaxing) + .xt.lit 0x0000000000002990 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002998 0x88 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + 0x1b0 (size before relaxing) + .xt.lit 0x0000000000002a20 0x90 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + 0x2a0 (size before relaxing) + .xt.lit 0x0000000000002ab0 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002ac0 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002ae8 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002b10 0xb0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + 0x1a8 (size before relaxing) + .xt.lit 0x0000000000002bc0 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002bc0 0x48 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + 0x58 (size before relaxing) + .xt.lit 0x0000000000002c08 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002c20 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + 0x168 (size before relaxing) + .xt.lit 0x0000000000002c70 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x130 (size before relaxing) + .xt.lit 0x0000000000002c70 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000002c70 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x0000000000002c70 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002c70 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002c70 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x0000000000002c98 0x40 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x0000000000002cd8 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x0000000000002ce0 0x28 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002d08 0x38 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002d40 0x8 esp-idf/soc/libsoc.a(lldesc.c.obj) + .xt.lit 0x0000000000002d48 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x0000000000002d58 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002d78 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000002dd0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002de8 0x20 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000002e08 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x0000000000002e28 0x50 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000002e78 0x28 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000002ea0 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002eb0 0x8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002eb8 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002eb8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000002ec0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x0000000000002ee0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x0000000000002ef0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002f18 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002f20 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000002f28 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x190 (size before relaxing) + .xt.lit 0x0000000000002f30 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000002f60 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x0000000000002f60 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x0000000000002fd0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000002fd8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x0000000000002fd8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x188 (size before relaxing) + .xt.lit 0x0000000000003010 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x0000000000003018 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x0000000000003040 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.lit 0x0000000000003048 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003050 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1e0 (size before relaxing) + .xt.lit 0x00000000000030a0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000030b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000030b8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + 0x150 (size before relaxing) + .xt.lit 0x00000000000030c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000030c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00000000000030c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + 0x110 (size before relaxing) + .xt.lit 0x00000000000030c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000030c8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x308 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xe8 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000030d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000030d8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000030e0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x0000000000003108 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x258 (size before relaxing) + .xt.lit 0x0000000000003138 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000003170 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000003178 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003180 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x0000000000003188 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x0000000000003198 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x4f8 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000031c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000031c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x138 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x150 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + 0xb0 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + 0x78 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + 0x28 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + 0x18 (size before relaxing) + .xt.lit 0x00000000000031f8 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + 0x90 (size before relaxing) + .xt.lit 0x00000000000031f8 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + 0x3d8 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + 0xc0 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + 0x338 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + 0x58 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + 0x90 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + 0x488 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + 0x120 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + 0x190 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + 0x38 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000003208 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x0000000000003208 0x8 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xt.lit 0x0000000000003210 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x0000000000003218 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003218 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003218 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003218 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003218 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000003220 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003220 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003220 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003228 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003238 0x10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000003248 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003248 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .xt.lit 0x0000000000003250 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003258 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0x10 (size before relaxing) + .xt.lit 0x0000000000003258 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003260 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003268 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003268 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x48 (size before relaxing) + .xt.lit 0x0000000000003270 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003270 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x20 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003278 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xc8 (size before relaxing) + .xt.lit 0x0000000000003278 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + 0x68 (size before relaxing) + .xt.lit 0x0000000000003290 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + 0x48 (size before relaxing) + .xt.lit 0x00000000000032a0 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + 0xd8 (size before relaxing) + .xt.lit 0x00000000000032d0 0x40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + 0x60 (size before relaxing) + .xt.lit 0x0000000000003310 0x50 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + 0x88 (size before relaxing) + .xt.lit 0x0000000000003360 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003368 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + 0x40 (size before relaxing) + .xt.lit 0x0000000000003370 0xa0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + 0x110 (size before relaxing) + .xt.lit 0x0000000000003410 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + 0x90 (size before relaxing) + .xt.lit 0x0000000000003440 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + 0x28 (size before relaxing) + .xt.lit 0x0000000000003460 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003468 0x20 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + 0x60 (size before relaxing) + .xt.lit 0x0000000000003488 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + 0x50 (size before relaxing) + .xt.lit 0x00000000000034a0 0x60 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + 0x90 (size before relaxing) + .xt.lit 0x0000000000003500 0x30 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + 0x70 (size before relaxing) + .xt.lit 0x0000000000003530 0x8 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + 0x18 (size before relaxing) + .xt.lit 0x0000000000003538 0x18 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + 0x30 (size before relaxing) + .xt.lit 0x0000000000003550 0x10 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + 0x50 (size before relaxing) + .xt.lit 0x0000000000003560 0x28 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + 0x70 (size before relaxing) + .xt.lit 0x0000000000003588 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .xt.lit 0x0000000000003590 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003590 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003590 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003590 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xt.lit 0x0000000000003598 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xt.lit 0x00000000000035a0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035a0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xt.lit 0x00000000000035a8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035a8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xt.lit 0x00000000000035b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xt.lit 0x00000000000035b8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035b8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xt.lit 0x00000000000035c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035c8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xt.lit 0x00000000000035d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035d0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035d0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .xt.lit 0x00000000000035d8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035e0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .xt.lit 0x00000000000035e8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f0 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .xt.lit 0x00000000000035f8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f8 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x8 (size before relaxing) + .xt.lit 0x00000000000035f8 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xt.lit 0x0000000000003600 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003600 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003600 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xt.lit 0x0000000000003608 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .xt.lit 0x0000000000003610 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003610 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xt.lit 0x0000000000003618 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003618 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003618 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003618 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .xt.lit 0x0000000000003620 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003620 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003620 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x0000000000003628 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + 0x10 (size before relaxing) + 0x0000000000000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x0000000000000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x000000004000057c rtc_get_reset_reason = 0x4000057c + 0x0000000040000588 analog_super_wdt_reset_happened = 0x40000588 + 0x0000000040000594 jtag_cpu_reset_happened = 0x40000594 + 0x00000000400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x00000000400005ac rtc_select_apb_bridge = 0x400005ac + 0x00000000400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x00000000400005c4 ets_is_print_boot = 0x400005c4 + 0x00000000400005d0 ets_printf = 0x400005d0 + 0x00000000400005dc ets_install_putc1 = 0x400005dc + 0x00000000400005e8 ets_install_uart_printf = 0x400005e8 + 0x00000000400005f4 ets_install_putc2 = 0x400005f4 + 0x0000000040000600 PROVIDE (ets_delay_us = 0x40000600) + 0x000000004000060c ets_get_stack_info = 0x4000060c + 0x0000000040000618 ets_install_lock = 0x40000618 + 0x0000000040000624 ets_backup_dma_copy = 0x40000624 + 0x0000000040000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x000000004000063c UartRxString = 0x4000063c + 0x0000000040000648 uart_tx_one_char = 0x40000648 + 0x0000000040000654 uart_tx_one_char2 = 0x40000654 + 0x0000000040000660 uart_rx_one_char = 0x40000660 + 0x000000004000066c uart_rx_one_char_block = 0x4000066c + 0x0000000040000678 uart_rx_readbuff = 0x40000678 + 0x0000000040000684 uartAttach = 0x40000684 + 0x0000000040000690 uart_tx_flush = 0x40000690 + 0x000000004000069c uart_tx_wait_idle = 0x4000069c + 0x00000000400006a8 uart_div_modify = 0x400006a8 + 0x00000000400006b4 ets_write_char_uart = 0x400006b4 + 0x00000000400006c0 uart_tx_switch = 0x400006c0 + 0x00000000400006cc multofup = 0x400006cc + 0x00000000400006d8 software_reset = 0x400006d8 + 0x00000000400006e4 software_reset_cpu = 0x400006e4 + 0x00000000400006f0 assist_debug_clock_enable = 0x400006f0 + 0x00000000400006fc assist_debug_record_enable = 0x400006fc + 0x0000000040000708 clear_super_wdt_reset_flag = 0x40000708 + 0x0000000040000714 disable_default_watchdog = 0x40000714 + 0x0000000040000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x000000004000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x0000000040000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x0000000040000744 send_packet = 0x40000744 + 0x0000000040000750 recv_packet = 0x40000750 + 0x000000004000075c GetUartDevice = 0x4000075c + 0x0000000040000768 UartDwnLdProc = 0x40000768 + 0x0000000040000774 Uart_Init = 0x40000774 + 0x0000000040000780 ets_set_user_start = 0x40000780 + 0x000000003ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x000000003fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x000000004000078c mz_adler32 = 0x4000078c + 0x0000000040000798 mz_crc32 = 0x40000798 + 0x00000000400007a4 mz_free = 0x400007a4 + 0x00000000400007b0 tdefl_compress = 0x400007b0 + 0x00000000400007bc tdefl_compress_buffer = 0x400007bc + 0x00000000400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x00000000400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x00000000400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x00000000400007ec tdefl_get_adler32 = 0x400007ec + 0x00000000400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x0000000040000804 tdefl_init = 0x40000804 + 0x0000000040000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x000000004000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x0000000040000828 tinfl_decompress = 0x40000828 + 0x0000000040000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x0000000040000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x000000004000084c tinfl_decompress_mem_to_mem = 0x4000084c + [!provide] PROVIDE (jd_prepare = 0x40000858) + [!provide] PROVIDE (jd_decomp = 0x40000864) + 0x000000003fcefff8 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) + 0x0000000040000960 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) + [!provide] PROVIDE (SPI_write_enable = 0x40000a44) + [!provide] PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x0000000040000a68 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) + 0x0000000040000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x0000000040000aa4 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) + 0x000000003fceffe4 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) + 0x0000000040000dbc PROVIDE (wdt_hal_init = 0x40000dbc) + 0x0000000040000dc8 PROVIDE (wdt_hal_deinit = 0x40000dc8) + 0x0000000040000dd4 PROVIDE (wdt_hal_config_stage = 0x40000dd4) + 0x0000000040000de0 PROVIDE (wdt_hal_write_protect_disable = 0x40000de0) + 0x0000000040000dec PROVIDE (wdt_hal_write_protect_enable = 0x40000dec) + 0x0000000040000df8 PROVIDE (wdt_hal_enable = 0x40000df8) + 0x0000000040000e04 PROVIDE (wdt_hal_disable = 0x40000e04) + 0x0000000040000e10 PROVIDE (wdt_hal_handle_intr = 0x40000e10) + 0x0000000040000e1c PROVIDE (wdt_hal_feed = 0x40000e1c) + 0x0000000040000e28 PROVIDE (wdt_hal_set_flashboot_en = 0x40000e28) + 0x0000000040000e34 PROVIDE (wdt_hal_is_enabled = 0x40000e34) + [!provide] PROVIDE (systimer_hal_get_counter_value = 0x40000e40) + [!provide] PROVIDE (systimer_hal_get_time = 0x40000e4c) + [!provide] PROVIDE (systimer_hal_set_alarm_target = 0x40000e58) + [!provide] PROVIDE (systimer_hal_set_alarm_period = 0x40000e64) + [!provide] PROVIDE (systimer_hal_get_alarm_value = 0x40000e70) + [!provide] PROVIDE (systimer_hal_enable_alarm_int = 0x40000e7c) + [!provide] PROVIDE (systimer_hal_on_apb_freq_update = 0x40000e88) + [!provide] PROVIDE (systimer_hal_counter_value_advance = 0x40000e94) + [!provide] PROVIDE (systimer_hal_enable_counter = 0x40000ea0) + [!provide] PROVIDE (systimer_hal_init = 0x40000eac) + [!provide] PROVIDE (systimer_hal_select_alarm_mode = 0x40000eb8) + [!provide] PROVIDE (systimer_hal_connect_alarm_counter = 0x40000ec4) + [!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 (esp_flash_write = 0x40001140) + [!provide] PROVIDE (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) + [!provide] PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + 0x0000000040001608 PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + 0x0000000040001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x000000004000162c 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) + [!provide] 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) + 0x00000000400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + 0x00000000400016c8 PROVIDE (rom_Cache_WriteBack_Addr = 0x400016c8) + 0x00000000400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x00000000400016e0 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) + 0x0000000040001734 PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + 0x0000000040001740 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) + 0x000000004000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x0000000040001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x0000000040001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + 0x0000000040001890 PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x000000004000189c PROVIDE (rom_Cache_Suspend_ICache = 0x4000189c) + 0x00000000400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x00000000400018b4 PROVIDE (rom_Cache_Suspend_DCache = 0x400018b4) + 0x00000000400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + 0x00000000400018e4 PROVIDE (rom_Cache_Freeze_ICache_Enable = 0x400018e4) + 0x00000000400018f0 PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + 0x00000000400018fc PROVIDE (rom_Cache_Freeze_DCache_Enable = 0x400018fc) + 0x0000000040001908 PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x0000000040001914 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) + 0x0000000040001950 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) + 0x0000000040001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x000000004000198c 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) + 0x00000000400019bc 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) + 0x0000000040001a1c PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + 0x0000000040001a28 PROVIDE (rom_config_data_cache_mode = 0x40001a28) + 0x000000003fceffc8 PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x0000000040001a34 ets_get_apb_freq = 0x40001a34 + 0x0000000040001a40 ets_get_cpu_frequency = 0x40001a40 + 0x0000000040001a4c ets_update_cpu_frequency = 0x40001a4c + 0x0000000040001a58 ets_get_printf_channel = 0x40001a58 + 0x0000000040001a64 ets_get_xtal_div = 0x40001a64 + 0x0000000040001a70 ets_set_xtal_div = 0x40001a70 + 0x0000000040001a7c ets_get_xtal_freq = 0x40001a7c + 0x0000000040001a88 gpio_input_get = 0x40001a88 + 0x0000000040001a94 gpio_matrix_in = 0x40001a94 + 0x0000000040001aa0 gpio_matrix_out = 0x40001aa0 + 0x0000000040001aac gpio_output_disable = 0x40001aac + 0x0000000040001ab8 gpio_output_enable = 0x40001ab8 + 0x0000000040001ac4 gpio_output_set = 0x40001ac4 + 0x0000000040001ad0 gpio_pad_hold = 0x40001ad0 + 0x0000000040001adc gpio_pad_input_disable = 0x40001adc + 0x0000000040001ae8 gpio_pad_input_enable = 0x40001ae8 + 0x0000000040001af4 gpio_pad_pulldown = 0x40001af4 + 0x0000000040001b00 gpio_pad_pullup = 0x40001b00 + 0x0000000040001b0c gpio_pad_select_gpio = 0x40001b0c + 0x0000000040001b18 gpio_pad_set_drv = 0x40001b18 + 0x0000000040001b24 gpio_pad_unhold = 0x40001b24 + 0x0000000040001b30 gpio_pin_wakeup_disable = 0x40001b30 + 0x0000000040001b3c gpio_pin_wakeup_enable = 0x40001b3c + 0x0000000040001b48 gpio_bypass_matrix_in = 0x40001b48 + 0x0000000040001b54 intr_matrix_set = 0x40001b54 + 0x0000000040001b60 ets_intr_lock = 0x40001b60 + 0x0000000040001b6c ets_intr_unlock = 0x40001b6c + 0x0000000040001b78 ets_isr_attach = 0x40001b78 + 0x0000000040001b84 ets_isr_mask = 0x40001b84 + 0x0000000040001b90 ets_isr_unmask = 0x40001b90 + 0x0000000040001b9c xthal_bcopy = 0x40001b9c + 0x0000000040001ba8 xthal_memcpy = 0x40001ba8 + 0x0000000040001bb4 xthal_get_ccompare = 0x40001bb4 + 0x0000000040001bc0 xthal_set_ccompare = 0x40001bc0 + 0x0000000040001bcc xthal_get_ccount = 0x40001bcc + 0x0000000040001bd8 xthal_get_interrupt = 0x40001bd8 + 0x0000000040001be4 xthal_set_intclear = 0x40001be4 + 0x0000000040001bf0 _xtos_ints_off = 0x40001bf0 + 0x0000000040001bfc _xtos_ints_on = 0x40001bfc + 0x0000000040001c08 _xtos_restore_intlevel = 0x40001c08 + 0x0000000040001c14 _xtos_set_exception_handler = 0x40001c14 + 0x0000000040001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x0000000040001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x0000000040001c38 _xtos_set_intlevel = 0x40001c38 + 0x0000000040001c44 _xtos_set_vpri = 0x40001c44 + 0x0000000040001c50 md5_vector = 0x40001c50 + 0x0000000040001c5c MD5Init = 0x40001c5c + 0x0000000040001c68 MD5Update = 0x40001c68 + 0x0000000040001c74 MD5Final = 0x40001c74 + 0x0000000040001c80 hmac_md5_vector = 0x40001c80 + 0x0000000040001c8c hmac_md5 = 0x40001c8c + 0x0000000040001c98 crc32_le = 0x40001c98 + 0x0000000040001ca4 crc32_be = 0x40001ca4 + 0x0000000040001cb0 crc16_le = 0x40001cb0 + 0x0000000040001cbc crc16_be = 0x40001cbc + 0x0000000040001cc8 crc8_le = 0x40001cc8 + 0x0000000040001cd4 crc8_be = 0x40001cd4 + 0x0000000040001ce0 esp_crc8 = 0x40001ce0 + 0x0000000040001cec ets_sha_enable = 0x40001cec + 0x0000000040001cf8 ets_sha_disable = 0x40001cf8 + 0x0000000040001d04 ets_sha_get_state = 0x40001d04 + 0x0000000040001d10 ets_sha_init = 0x40001d10 + 0x0000000040001d1c ets_sha_process = 0x40001d1c + 0x0000000040001d28 ets_sha_starts = 0x40001d28 + 0x0000000040001d34 ets_sha_update = 0x40001d34 + 0x0000000040001d40 ets_sha_finish = 0x40001d40 + 0x0000000040001d4c ets_sha_clone = 0x40001d4c + 0x0000000040001d58 ets_hmac_enable = 0x40001d58 + 0x0000000040001d64 ets_hmac_disable = 0x40001d64 + 0x0000000040001d70 ets_hmac_calculate_message = 0x40001d70 + 0x0000000040001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x0000000040001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x0000000040001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x0000000040001da0 ets_aes_enable = 0x40001da0 + 0x0000000040001dac ets_aes_disable = 0x40001dac + 0x0000000040001db8 ets_aes_setkey = 0x40001db8 + 0x0000000040001dc4 ets_aes_block = 0x40001dc4 + 0x0000000040001dd0 ets_bigint_enable = 0x40001dd0 + 0x0000000040001ddc ets_bigint_disable = 0x40001ddc + 0x0000000040001de8 ets_bigint_multiply = 0x40001de8 + 0x0000000040001df4 ets_bigint_modmult = 0x40001df4 + 0x0000000040001e00 ets_bigint_modexp = 0x40001e00 + 0x0000000040001e0c ets_bigint_wait_finish = 0x40001e0c + 0x0000000040001e18 ets_bigint_getz = 0x40001e18 + 0x0000000040001e24 ets_ds_enable = 0x40001e24 + 0x0000000040001e30 ets_ds_disable = 0x40001e30 + 0x0000000040001e3c ets_ds_start_sign = 0x40001e3c + 0x0000000040001e48 ets_ds_is_busy = 0x40001e48 + 0x0000000040001e54 ets_ds_finish_sign = 0x40001e54 + 0x0000000040001e60 ets_ds_encrypt_params = 0x40001e60 + 0x0000000040001e6c ets_aes_setkey_dec = 0x40001e6c + 0x0000000040001e78 ets_aes_setkey_enc = 0x40001e78 + 0x0000000040001e84 ets_mgf1_sha256 = 0x40001e84 + 0x0000000040001e90 ets_efuse_read = 0x40001e90 + 0x0000000040001e9c ets_efuse_program = 0x40001e9c + 0x0000000040001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x0000000040001eb4 ets_efuse_write_key = 0x40001eb4 + 0x0000000040001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x0000000040001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x0000000040001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x0000000040001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x0000000040001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x0000000040001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x0000000040001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x0000000040001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x0000000040001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x0000000040001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x0000000040001f38 ets_efuse_find_purpose = 0x40001f38 + 0x0000000040001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x0000000040001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x0000000040001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x0000000040001f68 ets_efuse_get_mac = 0x40001f68 + 0x0000000040001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x0000000040001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x0000000040001f8c ets_efuse_usb_serial_jtag_print_is_disabled = 0x40001f8c + 0x0000000040001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x0000000040001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x0000000040001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x0000000040001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x0000000040001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x0000000040001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x0000000040001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x0000000040001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x0000000040001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x0000000040002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x0000000040002010 ets_efuse_ecc_en = 0x40002010 + 0x000000004000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x0000000040002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x0000000040002034 ets_ecc_flash_enable = 0x40002034 + 0x0000000040002040 ets_ecc_flash_enable_all = 0x40002040 + 0x000000004000204c ets_ecc_flash_disable = 0x4000204c + 0x0000000040002058 ets_ecc_flash_disable_all = 0x40002058 + 0x0000000040002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x0000000040002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x000000004000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x0000000040002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x0000000040002094 ets_ecc_set_flash_range = 0x40002094 + 0x00000000400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x00000000400020ac ets_ecc_sram_enable = 0x400020ac + 0x00000000400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x00000000400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x00000000400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x00000000400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x00000000400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x00000000400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x0000000040002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x000000004000210c ets_ecc_set_sram_range = 0x4000210c + 0x0000000040002118 ets_ecc_get_sram_range = 0x40002118 + 0x000000003fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x0000000040002124 ets_emsa_pss_verify = 0x40002124 + 0x0000000040002130 ets_rsa_pss_verify = 0x40002130 + 0x000000004000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x0000000040002148 ets_secure_boot_verify_signature = 0x40002148 + 0x0000000040002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x0000000040002160 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) + 0x000000003fceffb9 PROVIDE (g_uart_print = 0x3fceffb9) + 0x000000003fceffb8 PROVIDE (g_usb_print = 0x3fceffb8) + 0x0000000040002610 cdc_acm_class_handle_req = 0x40002610 + 0x000000004000261c cdc_acm_init = 0x4000261c + 0x0000000040002628 cdc_acm_fifo_fill = 0x40002628 + 0x0000000040002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x0000000040002640 cdc_acm_fifo_read = 0x40002640 + 0x000000004000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x0000000040002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x0000000040002664 cdc_acm_irq_state_enable = 0x40002664 + 0x0000000040002670 cdc_acm_irq_state_disable = 0x40002670 + 0x000000004000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x0000000040002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x0000000040002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x00000000400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x00000000400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x00000000400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x00000000400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x00000000400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x00000000400026dc cdc_acm_poll_out = 0x400026dc + 0x00000000400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x00000000400026f4 chip_usb_dw_init = 0x400026f4 + 0x0000000040002700 chip_usb_detach = 0x40002700 + 0x000000004000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x0000000040002718 chip_usb_get_persist_flags = 0x40002718 + 0x0000000040002724 chip_usb_set_persist_flags = 0x40002724 + 0x0000000040002730 cpio_start = 0x40002730 + 0x000000004000273c cpio_feed = 0x4000273c + 0x0000000040002748 cpio_done = 0x40002748 + 0x0000000040002754 cpio_destroy = 0x40002754 + 0x0000000040002760 dfu_flash_init = 0x40002760 + 0x000000004000276c dfu_flash_erase = 0x4000276c + 0x0000000040002778 dfu_flash_program = 0x40002778 + 0x0000000040002784 dfu_flash_read = 0x40002784 + 0x0000000040002790 dfu_flash_attach = 0x40002790 + 0x000000004000279c dfu_cpio_callback = 0x4000279c + 0x00000000400027a8 dfu_updater_get_err = 0x400027a8 + 0x00000000400027b4 dfu_updater_clear_err = 0x400027b4 + 0x00000000400027c0 dfu_updater_enable = 0x400027c0 + 0x00000000400027cc dfu_updater_begin = 0x400027cc + 0x00000000400027d8 dfu_updater_feed = 0x400027d8 + 0x00000000400027e4 dfu_updater_end = 0x400027e4 + 0x00000000400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x00000000400027fc dfu_updater_flash_read = 0x400027fc + 0x0000000040002808 usb_dc_prepare_persist = 0x40002808 + 0x0000000040002814 usb_dw_isr_handler = 0x40002814 + 0x0000000040002820 usb_dc_attach = 0x40002820 + 0x000000004000282c usb_dc_detach = 0x4000282c + 0x0000000040002838 usb_dc_reset = 0x40002838 + 0x0000000040002844 usb_dc_set_address = 0x40002844 + 0x0000000040002850 usb_dc_ep_check_cap = 0x40002850 + 0x000000004000285c usb_dc_ep_configure = 0x4000285c + 0x0000000040002868 usb_dc_ep_set_stall = 0x40002868 + 0x0000000040002874 usb_dc_ep_clear_stall = 0x40002874 + 0x0000000040002880 usb_dc_ep_halt = 0x40002880 + 0x000000004000288c usb_dc_ep_is_stalled = 0x4000288c + 0x0000000040002898 usb_dc_ep_enable = 0x40002898 + 0x00000000400028a4 usb_dc_ep_disable = 0x400028a4 + 0x00000000400028b0 usb_dc_ep_flush = 0x400028b0 + 0x00000000400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x00000000400028c8 usb_dc_ep_write = 0x400028c8 + 0x00000000400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x00000000400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x00000000400028ec usb_dc_ep_read = 0x400028ec + 0x00000000400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x0000000040002904 usb_dc_set_status_callback = 0x40002904 + 0x0000000040002910 usb_dc_ep_mps = 0x40002910 + 0x000000004000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x0000000040002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x0000000040002934 usb_set_current_descriptor = 0x40002934 + 0x0000000040002940 usb_get_descriptor = 0x40002940 + 0x000000004000294c usb_dev_resume = 0x4000294c + 0x0000000040002958 usb_dev_get_configuration = 0x40002958 + 0x0000000040002964 usb_set_config = 0x40002964 + 0x0000000040002970 usb_deconfig = 0x40002970 + 0x000000004000297c usb_enable = 0x4000297c + 0x0000000040002988 usb_disable = 0x40002988 + 0x0000000040002994 usb_write_would_block = 0x40002994 + 0x00000000400029a0 usb_write = 0x400029a0 + 0x00000000400029ac usb_read = 0x400029ac + 0x00000000400029b8 usb_ep_set_stall = 0x400029b8 + 0x00000000400029c4 usb_ep_clear_stall = 0x400029c4 + 0x00000000400029d0 usb_ep_read_wait = 0x400029d0 + 0x00000000400029dc usb_ep_read_continue = 0x400029dc + 0x00000000400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x00000000400029f4 usb_transfer = 0x400029f4 + 0x0000000040002a00 usb_cancel_transfer = 0x40002a00 + 0x0000000040002a0c usb_transfer_sync = 0x40002a0c + 0x0000000040002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x0000000040002a24 dfu_class_handle_req = 0x40002a24 + 0x0000000040002a30 dfu_status_cb = 0x40002a30 + 0x0000000040002a3c dfu_custom_handle_req = 0x40002a3c + 0x0000000040002a48 usb_dfu_init = 0x40002a48 + 0x0000000040002a54 usb_dfu_force_detach = 0x40002a54 + 0x0000000040002a60 usb_dev_deinit = 0x40002a60 + 0x0000000040002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x000000003fceffac rom_usb_osglue = 0x3fceffac + 0x0000000040002a78 bt_rf_coex_get_dft_cfg = 0x40002a78 + 0x0000000040002a84 bt_rf_coex_hooks_p_set = 0x40002a84 + 0x0000000040002a90 btdm_con_maxevtime_cal_impl = 0x40002a90 + 0x0000000040002a9c btdm_controller_get_compile_version_impl = 0x40002a9c + 0x0000000040002aa8 btdm_controller_rom_data_init = 0x40002aa8 + 0x0000000040002ab4 btdm_dis_privacy_err_report_impl = 0x40002ab4 + 0x0000000040002ac0 btdm_disable_adv_delay_impl = 0x40002ac0 + 0x0000000040002acc btdm_enable_scan_continue_impl = 0x40002acc + 0x0000000040002ad8 btdm_enable_scan_forever_impl = 0x40002ad8 + 0x0000000040002ae4 btdm_get_power_state_impl = 0x40002ae4 + 0x0000000040002af0 btdm_get_prevent_sleep_flag_impl = 0x40002af0 + 0x0000000040002afc btdm_power_state_active_impl = 0x40002afc + 0x0000000040002b08 btdm_switch_phy_coded_impl = 0x40002b08 + 0x0000000040002b14 hci_acl_data_handler = 0x40002b14 + 0x0000000040002b20 hci_disconnect_cmd_handler = 0x40002b20 + 0x0000000040002b2c hci_le_con_upd_cmd_handler = 0x40002b2c + 0x0000000040002b38 hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38 + 0x0000000040002b44 hci_le_ltk_req_reply_cmd_handler = 0x40002b44 + 0x0000000040002b50 hci_le_rd_chnl_map_cmd_handler = 0x40002b50 + 0x0000000040002b5c hci_le_rd_phy_cmd_handler = 0x40002b5c + 0x0000000040002b68 hci_le_rd_rem_feats_cmd_handler = 0x40002b68 + 0x0000000040002b74 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74 + 0x0000000040002b80 hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80 + 0x0000000040002b8c hci_le_set_data_len_cmd_handler = 0x40002b8c + 0x0000000040002b98 hci_le_set_phy_cmd_handler = 0x40002b98 + 0x0000000040002ba4 hci_le_start_enc_cmd_handler = 0x40002ba4 + 0x0000000040002bb0 hci_rd_auth_payl_to_cmd_handler = 0x40002bb0 + 0x0000000040002bbc hci_rd_rem_ver_info_cmd_handler = 0x40002bbc + 0x0000000040002bc8 hci_rd_rssi_cmd_handler = 0x40002bc8 + 0x0000000040002bd4 hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4 + 0x0000000040002be0 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0 + 0x0000000040002bec hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec + 0x0000000040002bf8 hci_wr_auth_payl_to_cmd_handler = 0x40002bf8 + 0x0000000040002c04 ll_channel_map_ind_handler = 0x40002c04 + 0x0000000040002c10 ll_connection_param_req_handler = 0x40002c10 + 0x0000000040002c1c ll_connection_param_rsp_handler = 0x40002c1c + 0x0000000040002c28 ll_connection_update_ind_handler = 0x40002c28 + 0x0000000040002c34 ll_enc_req_handler = 0x40002c34 + 0x0000000040002c40 ll_enc_rsp_handler = 0x40002c40 + 0x0000000040002c4c ll_feature_req_handler = 0x40002c4c + 0x0000000040002c58 ll_feature_rsp_handler = 0x40002c58 + 0x0000000040002c64 ll_length_req_handler = 0x40002c64 + 0x0000000040002c70 ll_length_rsp_handler = 0x40002c70 + 0x0000000040002c7c ll_min_used_channels_ind_handler = 0x40002c7c + 0x0000000040002c88 ll_pause_enc_req_handler = 0x40002c88 + 0x0000000040002c94 ll_pause_enc_rsp_handler = 0x40002c94 + 0x0000000040002ca0 ll_phy_req_handler = 0x40002ca0 + 0x0000000040002cac ll_phy_rsp_handler = 0x40002cac + 0x0000000040002cb8 ll_phy_update_ind_handler = 0x40002cb8 + 0x0000000040002cc4 ll_ping_req_handler = 0x40002cc4 + 0x0000000040002cd0 ll_ping_rsp_handler = 0x40002cd0 + 0x0000000040002cdc ll_slave_feature_req_handler = 0x40002cdc + 0x0000000040002ce8 ll_start_enc_req_handler = 0x40002ce8 + 0x0000000040002cf4 ll_start_enc_rsp_handler = 0x40002cf4 + 0x0000000040002d00 ll_terminate_ind_handler = 0x40002d00 + 0x0000000040002d0c ll_version_ind_handler = 0x40002d0c + 0x0000000040002d18 llc_auth_payl_nearly_to_handler = 0x40002d18 + 0x0000000040002d24 llc_auth_payl_real_to_handler = 0x40002d24 + 0x0000000040002d30 llc_encrypt_ind_handler = 0x40002d30 + 0x0000000040002d3c llc_hci_command_handler_wrapper = 0x40002d3c + 0x0000000040002d48 llc_ll_connection_param_req_pdu_send = 0x40002d48 + 0x0000000040002d54 llc_ll_connection_param_rsp_pdu_send = 0x40002d54 + 0x0000000040002d60 llc_ll_connection_update_ind_pdu_send = 0x40002d60 + 0x0000000040002d6c llc_ll_enc_req_pdu_send = 0x40002d6c + 0x0000000040002d78 llc_ll_enc_rsp_pdu_send = 0x40002d78 + 0x0000000040002d84 llc_ll_feature_req_pdu_send = 0x40002d84 + 0x0000000040002d90 llc_ll_feature_rsp_pdu_send = 0x40002d90 + 0x0000000040002d9c llc_ll_length_req_pdu_send = 0x40002d9c + 0x0000000040002da8 llc_ll_length_rsp_pdu_send = 0x40002da8 + 0x0000000040002db4 llc_ll_pause_enc_req_pdu_send = 0x40002db4 + 0x0000000040002dc0 llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0 + 0x0000000040002dcc llc_ll_phy_req_pdu_send = 0x40002dcc + 0x0000000040002dd8 llc_ll_phy_rsp_pdu_send = 0x40002dd8 + 0x0000000040002de4 llc_ll_ping_req_pdu_send = 0x40002de4 + 0x0000000040002df0 llc_ll_ping_rsp_pdu_send = 0x40002df0 + 0x0000000040002dfc llc_ll_start_enc_req_pdu_send = 0x40002dfc + 0x0000000040002e08 llc_ll_start_enc_rsp_pdu_send = 0x40002e08 + 0x0000000040002e14 llc_ll_terminate_ind_pdu_send = 0x40002e14 + 0x0000000040002e20 llc_ll_unknown_rsp_pdu_send = 0x40002e20 + 0x0000000040002e2c llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c + 0x0000000040002e38 llc_llcp_phy_upd_ind_pdu_send = 0x40002e38 + 0x0000000040002e44 llc_llcp_version_ind_pdu_send = 0x40002e44 + 0x0000000040002e50 llc_op_ch_map_upd_ind_handler = 0x40002e50 + 0x0000000040002e5c llc_op_con_upd_ind_handler = 0x40002e5c + 0x0000000040002e68 llc_op_disconnect_ind_handler = 0x40002e68 + 0x0000000040002e74 llc_op_dl_upd_ind_handler = 0x40002e74 + 0x0000000040002e80 llc_op_encrypt_ind_handler = 0x40002e80 + 0x0000000040002e8c llc_op_feats_exch_ind_handler = 0x40002e8c + 0x0000000040002e98 llc_op_le_ping_ind_handler = 0x40002e98 + 0x0000000040002ea4 llc_op_phy_upd_ind_handler = 0x40002ea4 + 0x0000000040002eb0 llc_op_ver_exch_ind_handler = 0x40002eb0 + 0x0000000040002ebc llc_stopped_ind_handler = 0x40002ebc + 0x0000000040002ec8 lld_acl_rx_ind_handler = 0x40002ec8 + 0x0000000040002ed4 lld_acl_tx_cfm_handler = 0x40002ed4 + 0x0000000040002ee0 lld_adv_end_ind_handler = 0x40002ee0 + 0x0000000040002eec lld_adv_rep_ind_handler = 0x40002eec + 0x0000000040002ef8 lld_ch_map_upd_cfm_handler = 0x40002ef8 + 0x0000000040002f04 lld_con_estab_ind_handler = 0x40002f04 + 0x0000000040002f10 lld_con_evt_sd_evt_time_set = 0x40002f10 + 0x0000000040002f1c lld_con_offset_upd_ind_handler = 0x40002f1c + 0x0000000040002f28 lld_con_param_upd_cfm_handler = 0x40002f28 + 0x0000000040002f34 lld_disc_ind_handler = 0x40002f34 + 0x0000000040002f40 lld_init_end_ind_handler = 0x40002f40 + 0x0000000040002f4c lld_llcp_rx_ind_handler_wrapper = 0x40002f4c + 0x0000000040002f58 lld_llcp_tx_cfm_handler = 0x40002f58 + 0x0000000040002f64 lld_per_adv_end_ind_handler = 0x40002f64 + 0x0000000040002f70 lld_per_adv_rep_ind_handler = 0x40002f70 + 0x0000000040002f7c lld_per_adv_rx_end_ind_handler = 0x40002f7c + 0x0000000040002f88 lld_phy_coded_500k_get = 0x40002f88 + 0x0000000040002f94 lld_phy_upd_cfm_handler = 0x40002f94 + 0x0000000040002fa0 lld_scan_end_ind_handler = 0x40002fa0 + 0x0000000040002fac lld_scan_req_ind_handler = 0x40002fac + 0x0000000040002fb8 lld_sync_start_req_handler = 0x40002fb8 + 0x0000000040002fc4 lld_test_end_ind_handler = 0x40002fc4 + 0x0000000040002fd0 lld_update_rxbuf_handler = 0x40002fd0 + 0x0000000040002fdc llm_ch_map_update_ind_handler = 0x40002fdc + 0x0000000040002fe8 llm_hci_command_handler_wrapper = 0x40002fe8 + 0x0000000040002ff4 llm_scan_period_to_handler = 0x40002ff4 + 0x0000000040003000 r_Add2SelfBigHex256 = 0x40003000 + 0x000000004000300c r_AddBigHex256 = 0x4000300c + 0x0000000040003018 r_AddBigHexModP256 = 0x40003018 + 0x0000000040003024 r_AddP256 = 0x40003024 + 0x0000000040003030 r_AddPdiv2_256 = 0x40003030 + 0x000000004000303c r_GF_Jacobian_Point_Addition256 = 0x4000303c + 0x0000000040003048 r_GF_Jacobian_Point_Double256 = 0x40003048 + 0x0000000040003054 r_GF_Point_Jacobian_To_Affine256 = 0x40003054 + 0x0000000040003060 r_MultiplyBigHexByUint32_256 = 0x40003060 + 0x000000004000306c r_MultiplyBigHexModP256 = 0x4000306c + 0x0000000040003078 r_MultiplyByU16ModP256 = 0x40003078 + 0x0000000040003084 r_SubtractBigHex256 = 0x40003084 + 0x0000000040003090 r_SubtractBigHexMod256 = 0x40003090 + 0x000000004000309c r_SubtractBigHexUint32_256 = 0x4000309c + 0x00000000400030a8 r_SubtractFromSelfBigHex256 = 0x400030a8 + 0x00000000400030b4 r_SubtractFromSelfBigHexSign256 = 0x400030b4 + 0x00000000400030c0 r_aes_alloc = 0x400030c0 + 0x00000000400030cc r_aes_ccm_continue = 0x400030cc + 0x00000000400030d8 r_aes_ccm_process_e = 0x400030d8 + 0x00000000400030e4 r_aes_ccm_xor_128_lsb = 0x400030e4 + 0x00000000400030f0 r_aes_ccm_xor_128_msb = 0x400030f0 + 0x00000000400030fc r_aes_cmac_continue = 0x400030fc + 0x0000000040003108 r_aes_cmac_start = 0x40003108 + 0x0000000040003114 r_aes_k1_continue = 0x40003114 + 0x0000000040003120 r_aes_k2_continue = 0x40003120 + 0x000000004000312c r_aes_k3_continue = 0x4000312c + 0x0000000040003138 r_aes_k4_continue = 0x40003138 + 0x0000000040003144 r_aes_shift_left_128 = 0x40003144 + 0x0000000040003150 r_aes_start = 0x40003150 + 0x000000004000315c r_aes_xor_128 = 0x4000315c + 0x0000000040003168 r_assert_err = 0x40003168 + 0x0000000040003174 r_assert_param = 0x40003174 + 0x0000000040003180 r_assert_warn = 0x40003180 + 0x000000004000318c r_bigHexInversion256 = 0x4000318c + 0x0000000040003198 r_ble_sw_cca_check_isr = 0x40003198 + 0x00000000400031a4 r_ble_util_buf_acl_tx_alloc = 0x400031a4 + 0x00000000400031b0 r_ble_util_buf_acl_tx_elt_get = 0x400031b0 + 0x00000000400031bc r_ble_util_buf_acl_tx_free = 0x400031bc + 0x00000000400031c8 r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8 + 0x00000000400031d4 r_ble_util_buf_adv_tx_alloc = 0x400031d4 + 0x00000000400031e0 r_ble_util_buf_adv_tx_free = 0x400031e0 + 0x00000000400031ec r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec + 0x00000000400031f8 r_ble_util_buf_env_deinit = 0x400031f8 + 0x0000000040003204 r_ble_util_buf_env_init = 0x40003204 + 0x0000000040003210 r_ble_util_buf_get_rx_buf_nb = 0x40003210 + 0x000000004000321c r_ble_util_buf_get_rx_buf_size = 0x4000321c + 0x0000000040003228 r_ble_util_buf_llcp_tx_alloc = 0x40003228 + 0x0000000040003234 r_ble_util_buf_llcp_tx_free = 0x40003234 + 0x0000000040003240 r_ble_util_buf_rx_alloc = 0x40003240 + 0x000000004000324c r_ble_util_buf_rx_alloc_in_isr = 0x4000324c + 0x0000000040003258 r_ble_util_buf_rx_free = 0x40003258 + 0x0000000040003264 r_ble_util_buf_rx_free_in_isr = 0x40003264 + 0x0000000040003270 r_ble_util_buf_set_rx_buf_nb = 0x40003270 + 0x000000004000327c r_ble_util_buf_set_rx_buf_size = 0x4000327c + 0x0000000040003288 r_ble_util_data_rx_buf_reset = 0x40003288 + 0x0000000040003294 r_bt_bb_get_intr_mask = 0x40003294 + 0x00000000400032a0 r_bt_bb_intr_clear = 0x400032a0 + 0x00000000400032ac r_bt_bb_intr_mask_set = 0x400032ac + 0x00000000400032c4 r_bt_rf_coex_cfg_set = 0x400032c4 + 0x00000000400032d0 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0 + 0x00000000400032e8 r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8 + 0x00000000400032f4 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4 + 0x0000000040003300 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300 + 0x000000004000330c r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c + 0x0000000040003318 r_bt_rf_coex_pti_table_get = 0x40003318 + 0x0000000040003324 r_bt_rf_coex_st_param_get = 0x40003324 + 0x0000000040003330 r_bt_rf_coex_st_param_set = 0x40003330 + 0x000000004000333c r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c + 0x0000000040003348 r_bt_rma_apply_rule_cs_fmt = 0x40003348 + 0x0000000040003354 r_bt_rma_apply_rule_cs_idx = 0x40003354 + 0x0000000040003360 r_bt_rma_configure = 0x40003360 + 0x000000004000336c r_bt_rma_deregister_rule_cs_fmt = 0x4000336c + 0x0000000040003378 r_bt_rma_deregister_rule_cs_idx = 0x40003378 + 0x0000000040003384 r_bt_rma_get_ant_by_act = 0x40003384 + 0x0000000040003390 r_bt_rma_init = 0x40003390 + 0x000000004000339c r_bt_rma_register_rule_cs_fmt = 0x4000339c + 0x00000000400033a8 r_bt_rma_register_rule_cs_idx = 0x400033a8 + 0x00000000400033b4 r_bt_rtp_apply_rule_cs_fmt = 0x400033b4 + 0x00000000400033c0 r_bt_rtp_apply_rule_cs_idx = 0x400033c0 + 0x00000000400033cc r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc + 0x00000000400033d8 r_bt_rtp_deregister_rule_cs_idx = 0x400033d8 + 0x00000000400033f0 r_bt_rtp_init = 0x400033f0 + 0x00000000400033fc r_bt_rtp_register_rule_cs_fmt = 0x400033fc + 0x0000000040003408 r_bt_rtp_register_rule_cs_idx = 0x40003408 + 0x0000000040003414 r_btdm_isr = 0x40003414 + 0x0000000040003444 r_cali_phase_match_p = 0x40003444 + 0x0000000040003450 r_cmp_abs_time = 0x40003450 + 0x000000004000345c r_cmp_dest_id = 0x4000345c + 0x0000000040003468 r_cmp_timer_id = 0x40003468 + 0x0000000040003474 r_co_bdaddr_compare = 0x40003474 + 0x0000000040003480 r_co_ble_pkt_dur_in_us = 0x40003480 + 0x000000004000348c r_co_list_extract = 0x4000348c + 0x0000000040003498 r_co_list_extract_after = 0x40003498 + 0x00000000400034a4 r_co_list_extract_sublist = 0x400034a4 + 0x00000000400034b0 r_co_list_find = 0x400034b0 + 0x00000000400034bc r_co_list_init = 0x400034bc + 0x00000000400034c8 r_co_list_insert_after = 0x400034c8 + 0x00000000400034d4 r_co_list_insert_before = 0x400034d4 + 0x00000000400034e0 r_co_list_merge = 0x400034e0 + 0x00000000400034ec r_co_list_pool_init = 0x400034ec + 0x00000000400034f8 r_co_list_pop_front = 0x400034f8 + 0x0000000040003504 r_co_list_push_back = 0x40003504 + 0x0000000040003510 r_co_list_push_back_sublist = 0x40003510 + 0x000000004000351c r_co_list_push_front = 0x4000351c + 0x0000000040003528 r_co_list_size = 0x40003528 + 0x0000000040003534 r_co_nb_good_le_channels = 0x40003534 + 0x0000000040003540 r_co_util_pack = 0x40003540 + 0x000000004000354c r_co_util_read_array_size = 0x4000354c + 0x0000000040003558 r_co_util_unpack = 0x40003558 + 0x0000000040003564 r_dbg_env_deinit = 0x40003564 + 0x0000000040003570 r_dbg_env_init = 0x40003570 + 0x000000004000357c r_dbg_platform_reset_complete = 0x4000357c + 0x0000000040003588 r_dl_upd_proc_start = 0x40003588 + 0x0000000040003594 r_dump_data = 0x40003594 + 0x00000000400035a0 r_ecc_abort_key256_generation = 0x400035a0 + 0x00000000400035ac r_ecc_gen_new_public_key = 0x400035ac + 0x00000000400035b8 r_ecc_gen_new_secret_key = 0x400035b8 + 0x00000000400035c4 r_ecc_generate_key256 = 0x400035c4 + 0x00000000400035d0 r_ecc_get_debug_Keys = 0x400035d0 + 0x00000000400035dc r_ecc_init = 0x400035dc + 0x00000000400035e8 r_ecc_is_valid_point = 0x400035e8 + 0x00000000400035f4 r_ecc_multiplication_event_handler = 0x400035f4 + 0x0000000040003600 r_ecc_point_multiplication_win_256 = 0x40003600 + 0x000000004000360c r_emi_alloc_em_mapping_by_offset = 0x4000360c + 0x0000000040003618 r_emi_base_reg_lut_show = 0x40003618 + 0x0000000040003624 r_emi_em_base_reg_show = 0x40003624 + 0x0000000040003630 r_emi_free_em_mapping_by_offset = 0x40003630 + 0x000000004000363c r_emi_get_em_mapping_idx_by_offset = 0x4000363c + 0x0000000040003648 r_emi_get_mem_addr_by_offset = 0x40003648 + 0x0000000040003654 r_emi_overwrite_em_mapping_by_offset = 0x40003654 + 0x0000000040003660 r_esp_vendor_hci_command_handler = 0x40003660 + 0x000000004000366c r_get_stack_usage = 0x4000366c + 0x0000000040003678 r_h4tl_acl_hdr_rx_evt_handler = 0x40003678 + 0x0000000040003684 r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684 + 0x0000000040003690 r_h4tl_cmd_pld_rx_evt_handler = 0x40003690 + 0x000000004000369c r_h4tl_eif_io_event_post = 0x4000369c + 0x00000000400036a8 r_h4tl_eif_register = 0x400036a8 + 0x00000000400036b4 r_h4tl_init = 0x400036b4 + 0x00000000400036c0 r_h4tl_out_of_sync = 0x400036c0 + 0x00000000400036cc r_h4tl_out_of_sync_check = 0x400036cc + 0x00000000400036d8 r_h4tl_read_hdr = 0x400036d8 + 0x00000000400036e4 r_h4tl_read_next_out_of_sync = 0x400036e4 + 0x00000000400036f0 r_h4tl_read_payl = 0x400036f0 + 0x00000000400036fc r_h4tl_read_start = 0x400036fc + 0x0000000040003708 r_h4tl_rx_acl_hdr_extract = 0x40003708 + 0x0000000040003714 r_h4tl_rx_cmd_hdr_extract = 0x40003714 + 0x0000000040003720 r_h4tl_rx_done = 0x40003720 + 0x000000004000372c r_h4tl_start = 0x4000372c + 0x0000000040003738 r_h4tl_stop = 0x40003738 + 0x0000000040003744 r_h4tl_tx_done = 0x40003744 + 0x0000000040003750 r_h4tl_tx_evt_handler = 0x40003750 + 0x000000004000375c r_h4tl_write = 0x4000375c + 0x0000000040003768 r_hci_acl_tx_data_alloc = 0x40003768 + 0x0000000040003774 r_hci_acl_tx_data_received = 0x40003774 + 0x0000000040003780 r_hci_basic_cmd_send_2_controller = 0x40003780 + 0x000000004000378c r_hci_ble_adv_report_filter_check = 0x4000378c + 0x0000000040003798 r_hci_ble_adv_report_tx_check = 0x40003798 + 0x00000000400037a4 r_hci_ble_conhdl_register = 0x400037a4 + 0x00000000400037b0 r_hci_ble_conhdl_unregister = 0x400037b0 + 0x00000000400037bc r_hci_build_acl_data = 0x400037bc + 0x00000000400037c8 r_hci_build_cc_evt = 0x400037c8 + 0x00000000400037d4 r_hci_build_cs_evt = 0x400037d4 + 0x00000000400037e0 r_hci_build_evt = 0x400037e0 + 0x00000000400037ec r_hci_build_le_evt = 0x400037ec + 0x00000000400037f8 r_hci_cmd_get_max_param_size = 0x400037f8 + 0x0000000040003804 r_hci_cmd_received = 0x40003804 + 0x0000000040003810 r_hci_cmd_reject = 0x40003810 + 0x000000004000381c r_hci_evt_mask_check = 0x4000381c + 0x0000000040003828 r_hci_evt_mask_set = 0x40003828 + 0x0000000040003834 r_hci_fc_acl_buf_size_set = 0x40003834 + 0x0000000040003840 r_hci_fc_acl_en = 0x40003840 + 0x000000004000384c r_hci_fc_acl_packet_sent = 0x4000384c + 0x0000000040003858 r_hci_fc_check_host_available_nb_acl_packets = 0x40003858 + 0x0000000040003864 r_hci_fc_host_nb_acl_pkts_complete = 0x40003864 + 0x0000000040003870 r_hci_fc_init = 0x40003870 + 0x000000004000387c r_hci_look_for_cmd_desc = 0x4000387c + 0x0000000040003888 r_hci_look_for_evt_desc = 0x40003888 + 0x0000000040003894 r_hci_look_for_le_evt_desc = 0x40003894 + 0x00000000400038a0 r_hci_look_for_le_evt_desc_esp = 0x400038a0 + 0x00000000400038ac r_hci_pack_bytes = 0x400038ac + 0x00000000400038c4 r_hci_send_2_controller = 0x400038c4 + 0x00000000400038d0 r_hci_send_2_host = 0x400038d0 + 0x00000000400038dc r_hci_tl_c2h_data_flow_on = 0x400038dc + 0x00000000400038e8 r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8 + 0x00000000400038f4 r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4 + 0x0000000040003900 r_hci_tl_get_pkt = 0x40003900 + 0x000000004000390c r_hci_tl_hci_pkt_handler = 0x4000390c + 0x0000000040003918 r_hci_tl_hci_tx_done_evt_handler = 0x40003918 + 0x0000000040003924 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924 + 0x0000000040003930 r_hci_tl_save_pkt = 0x40003930 + 0x000000004000393c r_hci_tl_send = 0x4000393c + 0x0000000040003948 r_hci_tx_done = 0x40003948 + 0x0000000040003954 r_hci_tx_start = 0x40003954 + 0x0000000040003960 r_hci_tx_trigger = 0x40003960 + 0x000000004000396c r_isValidSecretKey_256 = 0x4000396c + 0x0000000040003978 r_ke_check_malloc = 0x40003978 + 0x0000000040003984 r_ke_event_callback_set = 0x40003984 + 0x0000000040003990 r_ke_event_clear = 0x40003990 + 0x000000004000399c r_ke_event_flush = 0x4000399c + 0x00000000400039a8 r_ke_event_get = 0x400039a8 + 0x00000000400039b4 r_ke_event_get_all = 0x400039b4 + 0x00000000400039c0 r_ke_event_init = 0x400039c0 + 0x00000000400039cc r_ke_event_schedule = 0x400039cc + 0x00000000400039d8 r_ke_event_set = 0x400039d8 + 0x00000000400039e4 r_ke_flush = 0x400039e4 + 0x00000000400039f0 r_ke_free = 0x400039f0 + 0x00000000400039fc r_ke_handler_search = 0x400039fc + 0x0000000040003a08 r_ke_init = 0x40003a08 + 0x0000000040003a14 r_ke_is_free = 0x40003a14 + 0x0000000040003a20 r_ke_malloc = 0x40003a20 + 0x0000000040003a2c r_ke_mem_init = 0x40003a2c + 0x0000000040003a38 r_ke_mem_is_empty = 0x40003a38 + 0x0000000040003a44 r_ke_mem_is_in_heap = 0x40003a44 + 0x0000000040003a50 r_ke_msg_alloc = 0x40003a50 + 0x0000000040003a5c r_ke_msg_dest_id_get = 0x40003a5c + 0x0000000040003a68 r_ke_msg_discard = 0x40003a68 + 0x0000000040003a74 r_ke_msg_forward = 0x40003a74 + 0x0000000040003a80 r_ke_msg_forward_new_id = 0x40003a80 + 0x0000000040003a8c r_ke_msg_free = 0x40003a8c + 0x0000000040003a98 r_ke_msg_in_queue = 0x40003a98 + 0x0000000040003aa4 r_ke_msg_save = 0x40003aa4 + 0x0000000040003ab0 r_ke_msg_send = 0x40003ab0 + 0x0000000040003abc r_ke_msg_send_basic = 0x40003abc + 0x0000000040003ac8 r_ke_msg_src_id_get = 0x40003ac8 + 0x0000000040003ad4 r_ke_queue_extract = 0x40003ad4 + 0x0000000040003ae0 r_ke_queue_insert = 0x40003ae0 + 0x0000000040003aec r_ke_sleep_check = 0x40003aec + 0x0000000040003af8 r_ke_state_get = 0x40003af8 + 0x0000000040003b04 r_ke_state_set = 0x40003b04 + 0x0000000040003b10 r_ke_task_check = 0x40003b10 + 0x0000000040003b1c r_ke_task_create = 0x40003b1c + 0x0000000040003b28 r_ke_task_delete = 0x40003b28 + 0x0000000040003b34 r_ke_task_handler_get = 0x40003b34 + 0x0000000040003b40 r_ke_task_init = 0x40003b40 + 0x0000000040003b4c r_ke_task_msg_flush = 0x40003b4c + 0x0000000040003b58 r_ke_task_saved_update = 0x40003b58 + 0x0000000040003b70 r_ke_time = 0x40003b70 + 0x0000000040003b7c r_ke_time_cmp = 0x40003b7c + 0x0000000040003b88 r_ke_time_past = 0x40003b88 + 0x0000000040003b94 r_ke_timer_active = 0x40003b94 + 0x0000000040003ba0 r_ke_timer_adjust_all = 0x40003ba0 + 0x0000000040003bac r_ke_timer_clear = 0x40003bac + 0x0000000040003bb8 r_ke_timer_init = 0x40003bb8 + 0x0000000040003bc4 r_ke_timer_schedule = 0x40003bc4 + 0x0000000040003bd0 r_ke_timer_set = 0x40003bd0 + 0x0000000040003bdc r_led_init = 0x40003bdc + 0x0000000040003be8 r_led_set_all = 0x40003be8 + 0x0000000040003bf4 r_llc_aes_res_cb = 0x40003bf4 + 0x0000000040003c00 r_llc_ch_map_up_proc_err_cb = 0x40003c00 + 0x0000000040003c0c r_llc_cleanup = 0x40003c0c + 0x0000000040003c18 r_llc_cmd_cmp_send = 0x40003c18 + 0x0000000040003c24 r_llc_cmd_stat_send = 0x40003c24 + 0x0000000040003c30 r_llc_con_move_cbk = 0x40003c30 + 0x0000000040003c3c r_llc_con_plan_set_update = 0x40003c3c + 0x0000000040003c48 r_llc_con_upd_param_in_range = 0x40003c48 + 0x0000000040003c54 r_llc_disconnect = 0x40003c54 + 0x0000000040003c60 r_llc_disconnect_end = 0x40003c60 + 0x0000000040003c6c r_llc_disconnect_proc_continue = 0x40003c6c + 0x0000000040003c78 r_llc_disconnect_proc_err_cb = 0x40003c78 + 0x0000000040003c84 r_llc_dl_chg_check = 0x40003c84 + 0x0000000040003c90 r_llc_dle_proc_err_cb = 0x40003c90 + 0x0000000040003c9c r_llc_feats_exch_proc_err_cb = 0x40003c9c + 0x0000000040003ca8 r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8 + 0x0000000040003cc0 r_llc_hci_con_param_req_evt_send = 0x40003cc0 + 0x0000000040003ccc r_llc_hci_con_upd_info_send = 0x40003ccc + 0x0000000040003cd8 r_llc_hci_disconnected_dis = 0x40003cd8 + 0x0000000040003ce4 r_llc_hci_dl_upd_info_send = 0x40003ce4 + 0x0000000040003cf0 r_llc_hci_enc_evt_send = 0x40003cf0 + 0x0000000040003cfc r_llc_hci_feats_info_send = 0x40003cfc + 0x0000000040003d08 r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08 + 0x0000000040003d14 r_llc_hci_ltk_request_evt_send = 0x40003d14 + 0x0000000040003d20 r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20 + 0x0000000040003d2c r_llc_hci_version_info_send = 0x40003d2c + 0x0000000040003d38 r_llc_init_term_proc = 0x40003d38 + 0x0000000040003d44 r_llc_iv_skd_rand_gen = 0x40003d44 + 0x0000000040003d50 r_llc_le_ping_proc_continue = 0x40003d50 + 0x0000000040003d5c r_llc_le_ping_proc_err_cb = 0x40003d5c + 0x0000000040003d68 r_llc_le_ping_restart = 0x40003d68 + 0x0000000040003d74 r_llc_le_ping_set = 0x40003d74 + 0x0000000040003d80 r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80 + 0x0000000040003d8c r_llc_ll_reject_ind_ack_handler = 0x40003d8c + 0x0000000040003d98 r_llc_ll_reject_ind_pdu_send = 0x40003d98 + 0x0000000040003da4 r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4 + 0x0000000040003db0 r_llc_ll_terminate_ind_ack = 0x40003db0 + 0x0000000040003dbc r_llc_ll_unknown_ind_handler = 0x40003dbc + 0x0000000040003dc8 r_llc_llcp_send = 0x40003dc8 + 0x0000000040003dd4 r_llc_llcp_state_set = 0x40003dd4 + 0x0000000040003de0 r_llc_llcp_trans_timer_set = 0x40003de0 + 0x0000000040003dec r_llc_llcp_tx_check = 0x40003dec + 0x0000000040003df8 r_llc_loc_ch_map_proc_continue = 0x40003df8 + 0x0000000040003e10 r_llc_loc_con_upd_proc_err_cb = 0x40003e10 + 0x0000000040003e1c r_llc_loc_dl_upd_proc_continue = 0x40003e1c + 0x0000000040003e28 r_llc_loc_encrypt_proc_continue = 0x40003e28 + 0x0000000040003e34 r_llc_loc_encrypt_proc_err_cb = 0x40003e34 + 0x0000000040003e40 r_llc_loc_feats_exch_proc_continue = 0x40003e40 + 0x0000000040003e4c r_llc_loc_phy_upd_proc_continue = 0x40003e4c + 0x0000000040003e58 r_llc_loc_phy_upd_proc_err_cb = 0x40003e58 + 0x0000000040003e64 r_llc_msg_handler_tab_p_get = 0x40003e64 + 0x0000000040003e70 r_llc_pref_param_compute = 0x40003e70 + 0x0000000040003e7c r_llc_proc_collision_check = 0x40003e7c + 0x0000000040003e88 r_llc_proc_err_ind = 0x40003e88 + 0x0000000040003e94 r_llc_proc_get = 0x40003e94 + 0x0000000040003ea0 r_llc_proc_id_get = 0x40003ea0 + 0x0000000040003eac r_llc_proc_reg = 0x40003eac + 0x0000000040003eb8 r_llc_proc_state_get = 0x40003eb8 + 0x0000000040003ec4 r_llc_proc_state_set = 0x40003ec4 + 0x0000000040003ed0 r_llc_proc_timer_pause_set = 0x40003ed0 + 0x0000000040003edc r_llc_proc_timer_set = 0x40003edc + 0x0000000040003ee8 r_llc_proc_unreg = 0x40003ee8 + 0x0000000040003ef4 r_llc_rem_ch_map_proc_continue = 0x40003ef4 + 0x0000000040003f0c r_llc_rem_con_upd_proc_err_cb = 0x40003f0c + 0x0000000040003f18 r_llc_rem_dl_upd_proc = 0x40003f18 + 0x0000000040003f24 r_llc_rem_encrypt_proc_continue = 0x40003f24 + 0x0000000040003f30 r_llc_rem_encrypt_proc_err_cb = 0x40003f30 + 0x0000000040003f3c r_llc_rem_phy_upd_proc_continue = 0x40003f3c + 0x0000000040003f48 r_llc_rem_phy_upd_proc_err_cb = 0x40003f48 + 0x0000000040003f54 r_llc_role_get = 0x40003f54 + 0x0000000040003f60 r_llc_sk_gen = 0x40003f60 + 0x0000000040003f6c r_llc_start = 0x40003f6c + 0x0000000040003f78 r_llc_stop = 0x40003f78 + 0x0000000040003f84 r_llc_ver_exch_loc_proc_continue = 0x40003f84 + 0x0000000040003f90 r_llc_ver_proc_err_cb = 0x40003f90 + 0x0000000040003f9c r_llcp_pdu_handler_tab_p_get = 0x40003f9c + 0x0000000040003fa8 r_lld_aa_gen = 0x40003fa8 + 0x0000000040003fb4 r_lld_adv_adv_data_set = 0x40003fb4 + 0x0000000040003fc0 r_lld_adv_adv_data_update = 0x40003fc0 + 0x0000000040003fcc r_lld_adv_aux_ch_idx_set = 0x40003fcc + 0x0000000040003fd8 r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8 + 0x0000000040003fe4 r_lld_adv_aux_evt_start_cbk = 0x40003fe4 + 0x0000000040003ff0 r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0 + 0x0000000040003ffc r_lld_adv_coex_env_reset = 0x40003ffc + 0x0000000040004008 r_lld_adv_duration_update = 0x40004008 + 0x0000000040004014 r_lld_adv_dynamic_pti_process = 0x40004014 + 0x0000000040004020 r_lld_adv_end = 0x40004020 + 0x000000004000402c r_lld_adv_evt_canceled_cbk = 0x4000402c + 0x0000000040004038 r_lld_adv_evt_start_cbk = 0x40004038 + 0x0000000040004044 r_lld_adv_ext_chain_construct = 0x40004044 + 0x0000000040004050 r_lld_adv_ext_pkt_prepare = 0x40004050 + 0x000000004000405c r_lld_adv_frm_cbk = 0x4000405c + 0x0000000040004068 r_lld_adv_frm_isr = 0x40004068 + 0x0000000040004074 r_lld_adv_frm_skip_isr = 0x40004074 + 0x0000000040004080 r_lld_adv_init = 0x40004080 + 0x000000004000408c r_lld_adv_pkt_rx = 0x4000408c + 0x0000000040004098 r_lld_adv_pkt_rx_connect_ind = 0x40004098 + 0x00000000400040a4 r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4 + 0x00000000400040b0 r_lld_adv_rand_addr_update = 0x400040b0 + 0x00000000400040bc r_lld_adv_restart = 0x400040bc + 0x00000000400040c8 r_lld_adv_scan_rsp_data_set = 0x400040c8 + 0x00000000400040d4 r_lld_adv_scan_rsp_data_update = 0x400040d4 + 0x00000000400040e0 r_lld_adv_set_tx_power = 0x400040e0 + 0x00000000400040ec r_lld_adv_start = 0x400040ec + 0x00000000400040f8 r_lld_adv_stop = 0x400040f8 + 0x0000000040004104 r_lld_adv_sync_info_set = 0x40004104 + 0x0000000040004110 r_lld_adv_sync_info_update = 0x40004110 + 0x000000004000411c r_lld_calc_aux_rx = 0x4000411c + 0x0000000040004128 r_lld_cca_alloc = 0x40004128 + 0x0000000040004134 r_lld_cca_data_reset = 0x40004134 + 0x0000000040004140 r_lld_cca_free = 0x40004140 + 0x000000004000414c r_lld_ch_assess_data_get = 0x4000414c + 0x0000000040004158 r_lld_ch_idx_get = 0x40004158 + 0x0000000040004164 r_lld_ch_map_set = 0x40004164 + 0x0000000040004170 r_lld_channel_assess = 0x40004170 + 0x000000004000417c r_lld_con_activity_act_offset_compute = 0x4000417c + 0x0000000040004188 r_lld_con_activity_offset_compute = 0x40004188 + 0x0000000040004194 r_lld_con_ch_map_update = 0x40004194 + 0x00000000400041a0 r_lld_con_cleanup = 0x400041a0 + 0x00000000400041ac r_lld_con_current_tx_power_get = 0x400041ac + 0x00000000400041b8 r_lld_con_data_flow_set = 0x400041b8 + 0x00000000400041c4 r_lld_con_data_len_update = 0x400041c4 + 0x00000000400041d0 r_lld_con_data_tx = 0x400041d0 + 0x00000000400041dc r_lld_con_enc_key_load = 0x400041dc + 0x00000000400041e8 r_lld_con_event_counter_get = 0x400041e8 + 0x00000000400041f4 r_lld_con_evt_canceled_cbk = 0x400041f4 + 0x0000000040004200 r_lld_con_evt_duration_min_get = 0x40004200 + 0x000000004000420c r_lld_con_evt_max_eff_time_cal = 0x4000420c + 0x0000000040004218 r_lld_con_evt_sd_evt_time_get = 0x40004218 + 0x0000000040004224 r_lld_con_evt_start_cbk = 0x40004224 + 0x0000000040004230 r_lld_con_evt_time_update = 0x40004230 + 0x000000004000423c r_lld_con_free_all_tx_buf = 0x4000423c + 0x0000000040004248 r_lld_con_frm_cbk = 0x40004248 + 0x0000000040004254 r_lld_con_frm_isr = 0x40004254 + 0x0000000040004260 r_lld_con_frm_skip_isr = 0x40004260 + 0x000000004000426c r_lld_con_init = 0x4000426c + 0x0000000040004278 r_lld_con_llcp_tx = 0x40004278 + 0x0000000040004284 r_lld_con_max_lat_calc = 0x40004284 + 0x0000000040004290 r_lld_con_offset_get = 0x40004290 + 0x000000004000429c r_lld_con_param_update = 0x4000429c + 0x00000000400042a8 r_lld_con_phys_update = 0x400042a8 + 0x00000000400042b4 r_lld_con_pref_slave_evt_dur_set = 0x400042b4 + 0x00000000400042c0 r_lld_con_pref_slave_latency_set = 0x400042c0 + 0x00000000400042cc r_lld_con_rssi_get = 0x400042cc + 0x00000000400042d8 r_lld_con_rx = 0x400042d8 + 0x00000000400042e4 r_lld_con_rx_channel_assess = 0x400042e4 + 0x00000000400042f0 r_lld_con_rx_enc = 0x400042f0 + 0x00000000400042fc r_lld_con_rx_isr = 0x400042fc + 0x0000000040004308 r_lld_con_rx_link_info_check = 0x40004308 + 0x0000000040004314 r_lld_con_rx_llcp_check = 0x40004314 + 0x0000000040004320 r_lld_con_rx_sync_time_update = 0x40004320 + 0x0000000040004338 r_lld_con_set_tx_power = 0x40004338 + 0x0000000040004344 r_lld_con_start = 0x40004344 + 0x000000004000435c r_lld_con_tx = 0x4000435c + 0x0000000040004368 r_lld_con_tx_enc = 0x40004368 + 0x0000000040004374 r_lld_con_tx_isr = 0x40004374 + 0x0000000040004380 r_lld_con_tx_len_update = 0x40004380 + 0x000000004000438c r_lld_con_tx_len_update_for_intv = 0x4000438c + 0x0000000040004398 r_lld_con_tx_len_update_for_rate = 0x40004398 + 0x00000000400043a4 r_lld_con_tx_prog = 0x400043a4 + 0x00000000400043b0 r_lld_conn_dynamic_pti_process = 0x400043b0 + 0x00000000400043bc r_lld_continue_scan_rx_isr_end_process = 0x400043bc + 0x00000000400043c8 r_lld_ext_scan_dynamic_pti_process = 0x400043c8 + 0x00000000400043d4 r_lld_hw_cca_end_isr = 0x400043d4 + 0x00000000400043e0 r_lld_hw_cca_evt_handler = 0x400043e0 + 0x00000000400043ec r_lld_hw_cca_isr = 0x400043ec + 0x00000000400043f8 r_lld_init_cal_anchor_point = 0x400043f8 + 0x0000000040004404 r_lld_init_compute_winoffset = 0x40004404 + 0x0000000040004410 r_lld_init_connect_req_pack = 0x40004410 + 0x000000004000441c r_lld_init_end = 0x4000441c + 0x0000000040004428 r_lld_init_evt_canceled_cbk = 0x40004428 + 0x0000000040004434 r_lld_init_evt_start_cbk = 0x40004434 + 0x0000000040004440 r_lld_init_frm_cbk = 0x40004440 + 0x000000004000444c r_lld_init_frm_eof_isr = 0x4000444c + 0x0000000040004458 r_lld_init_frm_skip_isr = 0x40004458 + 0x0000000040004464 r_lld_init_init = 0x40004464 + 0x0000000040004470 r_lld_init_process_pkt_rx = 0x40004470 + 0x000000004000447c r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c + 0x0000000040004488 r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488 + 0x0000000040004494 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494 + 0x00000000400044a0 r_lld_init_process_pkt_tx = 0x400044a0 + 0x00000000400044ac r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac + 0x00000000400044b8 r_lld_init_sched = 0x400044b8 + 0x00000000400044c4 r_lld_init_set_tx_power = 0x400044c4 + 0x00000000400044d0 r_lld_init_start = 0x400044d0 + 0x00000000400044dc r_lld_init_stop = 0x400044dc + 0x00000000400044e8 r_lld_instant_proc_end = 0x400044e8 + 0x0000000040004500 r_lld_per_adv_ch_map_update = 0x40004500 + 0x000000004000450c r_lld_per_adv_chain_construct = 0x4000450c + 0x0000000040004518 r_lld_per_adv_cleanup = 0x40004518 + 0x0000000040004524 r_lld_per_adv_coex_env_reset = 0x40004524 + 0x0000000040004530 r_lld_per_adv_data_set = 0x40004530 + 0x000000004000453c r_lld_per_adv_data_update = 0x4000453c + 0x0000000040004548 r_lld_per_adv_dynamic_pti_process = 0x40004548 + 0x0000000040004554 r_lld_per_adv_evt_canceled_cbk = 0x40004554 + 0x0000000040004560 r_lld_per_adv_evt_start_cbk = 0x40004560 + 0x000000004000456c r_lld_per_adv_ext_pkt_prepare = 0x4000456c + 0x0000000040004578 r_lld_per_adv_frm_cbk = 0x40004578 + 0x0000000040004584 r_lld_per_adv_frm_isr = 0x40004584 + 0x0000000040004590 r_lld_per_adv_frm_skip_isr = 0x40004590 + 0x000000004000459c r_lld_per_adv_init = 0x4000459c + 0x00000000400045a8 r_lld_per_adv_init_info_get = 0x400045a8 + 0x00000000400045b4 r_lld_per_adv_list_add = 0x400045b4 + 0x00000000400045c0 r_lld_per_adv_list_rem = 0x400045c0 + 0x00000000400045d8 r_lld_per_adv_set_tx_power = 0x400045d8 + 0x00000000400045e4 r_lld_per_adv_start = 0x400045e4 + 0x00000000400045f0 r_lld_per_adv_stop = 0x400045f0 + 0x00000000400045fc r_lld_per_adv_sync_info_get = 0x400045fc + 0x0000000040004608 r_lld_process_cca_data = 0x40004608 + 0x0000000040004614 r_lld_ral_search = 0x40004614 + 0x0000000040004620 r_lld_read_clock = 0x40004620 + 0x000000004000462c r_lld_res_list_add = 0x4000462c + 0x0000000040004638 r_lld_res_list_clear = 0x40004638 + 0x0000000040004644 r_lld_res_list_is_empty = 0x40004644 + 0x0000000040004650 r_lld_res_list_local_rpa_get = 0x40004650 + 0x000000004000465c r_lld_res_list_peer_rpa_get = 0x4000465c + 0x0000000040004668 r_lld_res_list_peer_update = 0x40004668 + 0x0000000040004674 r_lld_res_list_priv_mode_update = 0x40004674 + 0x0000000040004680 r_lld_res_list_rem = 0x40004680 + 0x000000004000468c r_lld_reset_reg = 0x4000468c + 0x0000000040004698 r_lld_rpa_renew = 0x40004698 + 0x00000000400046a4 r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4 + 0x00000000400046b0 r_lld_rpa_renew_evt_start_cbk = 0x400046b0 + 0x00000000400046bc r_lld_rpa_renew_instant_cbk = 0x400046bc + 0x00000000400046c8 r_lld_rxdesc_check = 0x400046c8 + 0x00000000400046d4 r_lld_rxdesc_free = 0x400046d4 + 0x00000000400046e0 r_lld_scan_create_sync = 0x400046e0 + 0x00000000400046ec r_lld_scan_create_sync_cancel = 0x400046ec + 0x00000000400046f8 r_lld_scan_end = 0x400046f8 + 0x0000000040004704 r_lld_scan_evt_canceled_cbk = 0x40004704 + 0x0000000040004710 r_lld_scan_evt_start_cbk = 0x40004710 + 0x000000004000471c r_lld_scan_frm_cbk = 0x4000471c + 0x0000000040004728 r_lld_scan_frm_eof_isr = 0x40004728 + 0x0000000040004734 r_lld_scan_frm_rx_isr = 0x40004734 + 0x0000000040004740 r_lld_scan_frm_skip_isr = 0x40004740 + 0x000000004000474c r_lld_scan_init = 0x4000474c + 0x0000000040004758 r_lld_scan_params_update = 0x40004758 + 0x000000004000477c r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c + 0x0000000040004788 r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788 + 0x0000000040004794 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794 + 0x00000000400047a0 r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0 + 0x00000000400047ac r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac + 0x00000000400047b8 r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8 + 0x00000000400047c4 r_lld_scan_restart = 0x400047c4 + 0x00000000400047d0 r_lld_scan_sched = 0x400047d0 + 0x00000000400047dc r_lld_scan_set_tx_power = 0x400047dc + 0x00000000400047e8 r_lld_scan_start = 0x400047e8 + 0x00000000400047f4 r_lld_scan_stop = 0x400047f4 + 0x0000000040004800 r_lld_scan_sync_accept = 0x40004800 + 0x000000004000480c r_lld_scan_sync_info_unpack = 0x4000480c + 0x0000000040004818 r_lld_scan_trunc_ind = 0x40004818 + 0x0000000040004824 r_lld_sw_cca_evt_handler = 0x40004824 + 0x0000000040004830 r_lld_sw_cca_isr = 0x40004830 + 0x000000004000483c r_lld_sync_ch_map_update = 0x4000483c + 0x0000000040004848 r_lld_sync_cleanup = 0x40004848 + 0x0000000040004854 r_lld_sync_evt_canceled_cbk = 0x40004854 + 0x0000000040004860 r_lld_sync_evt_start_cbk = 0x40004860 + 0x000000004000486c r_lld_sync_frm_cbk = 0x4000486c + 0x0000000040004878 r_lld_sync_frm_eof_isr = 0x40004878 + 0x0000000040004884 r_lld_sync_frm_rx_isr = 0x40004884 + 0x0000000040004890 r_lld_sync_frm_skip_isr = 0x40004890 + 0x000000004000489c r_lld_sync_init = 0x4000489c + 0x00000000400048a8 r_lld_sync_process_pkt_rx = 0x400048a8 + 0x00000000400048b4 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4 + 0x00000000400048c0 r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0 + 0x00000000400048cc r_lld_sync_scan_dynamic_pti_process = 0x400048cc + 0x00000000400048d8 r_lld_sync_sched = 0x400048d8 + 0x00000000400048e4 r_lld_sync_start = 0x400048e4 + 0x00000000400048f0 r_lld_sync_stop = 0x400048f0 + 0x00000000400048fc r_lld_sync_trunc_ind = 0x400048fc + 0x0000000040004908 r_lld_test_cleanup = 0x40004908 + 0x0000000040004914 r_lld_test_evt_canceled_cbk = 0x40004914 + 0x0000000040004920 r_lld_test_evt_start_cbk = 0x40004920 + 0x000000004000492c r_lld_test_freq2chnl = 0x4000492c + 0x0000000040004938 r_lld_test_frm_cbk = 0x40004938 + 0x0000000040004944 r_lld_test_frm_isr = 0x40004944 + 0x0000000040004950 r_lld_test_init = 0x40004950 + 0x000000004000495c r_lld_test_rx_isr = 0x4000495c + 0x0000000040004968 r_lld_test_set_tx_power = 0x40004968 + 0x0000000040004974 r_lld_test_start = 0x40004974 + 0x0000000040004980 r_lld_test_stop = 0x40004980 + 0x000000004000498c r_lld_update_rxbuf = 0x4000498c + 0x0000000040004998 r_lld_update_rxbuf_isr = 0x40004998 + 0x00000000400049a4 r_lld_white_list_add = 0x400049a4 + 0x00000000400049b0 r_lld_white_list_rem = 0x400049b0 + 0x00000000400049bc r_llm_activity_free_get = 0x400049bc + 0x00000000400049c8 r_llm_activity_free_set = 0x400049c8 + 0x00000000400049d4 r_llm_activity_syncing_get = 0x400049d4 + 0x00000000400049e0 r_llm_adv_con_len_check = 0x400049e0 + 0x00000000400049ec r_llm_adv_hdl_to_id = 0x400049ec + 0x00000000400049f8 r_llm_adv_rep_flow_control_check = 0x400049f8 + 0x0000000040004a04 r_llm_adv_rep_flow_control_update = 0x40004a04 + 0x0000000040004a10 r_llm_adv_reports_list_check = 0x40004a10 + 0x0000000040004a1c r_llm_adv_set_all_release = 0x40004a1c + 0x0000000040004a28 r_llm_adv_set_dft_params = 0x40004a28 + 0x0000000040004a34 r_llm_adv_set_release = 0x40004a34 + 0x0000000040004a40 r_llm_aes_res_cb = 0x40004a40 + 0x0000000040004a4c r_llm_ble_update_adv_flow_control = 0x40004a4c + 0x0000000040004a58 r_llm_ch_map_update = 0x40004a58 + 0x0000000040004a64 r_llm_cmd_cmp_send = 0x40004a64 + 0x0000000040004a70 r_llm_cmd_stat_send = 0x40004a70 + 0x0000000040004a7c r_llm_dev_list_empty_entry = 0x40004a7c + 0x0000000040004a88 r_llm_dev_list_search = 0x40004a88 + 0x0000000040004a94 r_llm_env_adv_dup_filt_deinit = 0x40004a94 + 0x0000000040004aa0 r_llm_env_adv_dup_filt_init = 0x40004aa0 + 0x0000000040004aac r_llm_init_ble_adv_report_flow_contol = 0x40004aac + 0x0000000040004ab8 r_llm_is_dev_connected = 0x40004ab8 + 0x0000000040004ac4 r_llm_is_dev_synced = 0x40004ac4 + 0x0000000040004ad0 r_llm_is_non_con_act_ongoing_check = 0x40004ad0 + 0x0000000040004adc r_llm_is_wl_accessible = 0x40004adc + 0x0000000040004ae8 r_llm_le_evt_mask_check = 0x40004ae8 + 0x0000000040004b00 r_llm_link_disc = 0x40004b00 + 0x0000000040004b0c r_llm_master_ch_map_get = 0x40004b0c + 0x0000000040004b18 r_llm_msg_handler_tab_p_get = 0x40004b18 + 0x0000000040004b24 r_llm_no_activity = 0x40004b24 + 0x0000000040004b30 r_llm_per_adv_slot_dur = 0x40004b30 + 0x0000000040004b3c r_llm_plan_elt_get = 0x40004b3c + 0x0000000040004b48 r_llm_rx_path_comp_get = 0x40004b48 + 0x0000000040004b54 r_llm_scan_start = 0x40004b54 + 0x0000000040004b60 r_llm_scan_sync_acad_attach = 0x40004b60 + 0x0000000040004b6c r_llm_scan_sync_acad_detach = 0x40004b6c + 0x0000000040004b78 r_llm_send_adv_lost_event_to_host = 0x40004b78 + 0x0000000040004b84 r_llm_tx_path_comp_get = 0x40004b84 + 0x0000000040004b90 r_misc_deinit = 0x40004b90 + 0x0000000040004b9c r_misc_free_em_buf_in_isr = 0x40004b9c + 0x0000000040004ba8 r_misc_init = 0x40004ba8 + 0x0000000040004bb4 r_misc_msg_handler_tab_p_get = 0x40004bb4 + 0x0000000040004bc0 r_notEqual256 = 0x40004bc0 + 0x0000000040004bcc r_phy_upd_proc_start = 0x40004bcc + 0x0000000040004bd8 r_platform_reset = 0x40004bd8 + 0x0000000040004bf0 r_rf_em_init = 0x40004bf0 + 0x0000000040004bfc r_rf_force_agc_enable = 0x40004bfc + 0x0000000040004c08 r_rf_reg_rd = 0x40004c08 + 0x0000000040004c14 r_rf_reg_wr = 0x40004c14 + 0x0000000040004c20 r_rf_reset = 0x40004c20 + 0x0000000040004c2c r_rf_rssi_convert = 0x40004c2c + 0x0000000040004c38 r_rf_rw_v9_le_disable = 0x40004c38 + 0x0000000040004c44 r_rf_rw_v9_le_enable = 0x40004c44 + 0x0000000040004c50 r_rf_sleep = 0x40004c50 + 0x0000000040004c74 r_rf_util_cs_fmt_convert = 0x40004c74 + 0x0000000040004c80 r_rw_crypto_aes_ccm = 0x40004c80 + 0x0000000040004c8c r_rw_crypto_aes_encrypt = 0x40004c8c + 0x0000000040004c98 r_rw_crypto_aes_init = 0x40004c98 + 0x0000000040004ca4 r_rw_crypto_aes_k1 = 0x40004ca4 + 0x0000000040004cb0 r_rw_crypto_aes_k2 = 0x40004cb0 + 0x0000000040004cbc r_rw_crypto_aes_k3 = 0x40004cbc + 0x0000000040004cc8 r_rw_crypto_aes_k4 = 0x40004cc8 + 0x0000000040004cd4 r_rw_crypto_aes_rand = 0x40004cd4 + 0x0000000040004ce0 r_rw_crypto_aes_result_handler = 0x40004ce0 + 0x0000000040004cec r_rw_crypto_aes_s1 = 0x40004cec + 0x0000000040004cf8 r_rw_cryto_aes_cmac = 0x40004cf8 + 0x0000000040004d04 r_rw_v9_init_em_radio_table = 0x40004d04 + 0x0000000040004d1c r_rwble_sleep_enter = 0x40004d1c + 0x0000000040004d28 r_rwble_sleep_wakeup_end = 0x40004d28 + 0x0000000040004d34 r_rwbtdm_isr_wrapper = 0x40004d34 + 0x0000000040004d40 r_rwip_active_check = 0x40004d40 + 0x0000000040004d4c r_rwip_aes_encrypt = 0x40004d4c + 0x0000000040004d58 r_rwip_assert = 0x40004d58 + 0x0000000040004d64 r_rwip_crypt_evt_handler = 0x40004d64 + 0x0000000040004d70 r_rwip_crypt_isr_handler = 0x40004d70 + 0x0000000040004d7c r_rwip_eif_get = 0x40004d7c + 0x0000000040004d88 r_rwip_half_slot_2_lpcycles = 0x40004d88 + 0x0000000040004d94 r_rwip_hus_2_lpcycles = 0x40004d94 + 0x0000000040004da0 r_rwip_isr = 0x40004da0 + 0x0000000040004dac r_rwip_lpcycles_2_hus = 0x40004dac + 0x0000000040004db8 r_rwip_prevent_sleep_clear = 0x40004db8 + 0x0000000040004dc4 r_rwip_prevent_sleep_set = 0x40004dc4 + 0x0000000040004dd0 r_rwip_schedule = 0x40004dd0 + 0x0000000040004ddc r_rwip_sleep = 0x40004ddc + 0x0000000040004de8 r_rwip_sw_int_handler = 0x40004de8 + 0x0000000040004df4 r_rwip_sw_int_req = 0x40004df4 + 0x0000000040004e00 r_rwip_time_get = 0x40004e00 + 0x0000000040004e0c r_rwip_timer_10ms_handler = 0x40004e0c + 0x0000000040004e18 r_rwip_timer_10ms_set = 0x40004e18 + 0x0000000040004e24 r_rwip_timer_hs_handler = 0x40004e24 + 0x0000000040004e30 r_rwip_timer_hs_set = 0x40004e30 + 0x0000000040004e3c r_rwip_timer_hus_handler = 0x40004e3c + 0x0000000040004e48 r_rwip_timer_hus_set = 0x40004e48 + 0x0000000040004e54 r_rwip_wakeup = 0x40004e54 + 0x0000000040004e60 r_rwip_wakeup_end = 0x40004e60 + 0x0000000040004e6c r_rwip_wlcoex_set = 0x40004e6c + 0x0000000040004e78 r_sch_alarm_clear = 0x40004e78 + 0x0000000040004e84 r_sch_alarm_init = 0x40004e84 + 0x0000000040004e90 r_sch_alarm_prog = 0x40004e90 + 0x0000000040004e9c r_sch_alarm_set = 0x40004e9c + 0x0000000040004ea8 r_sch_alarm_timer_isr = 0x40004ea8 + 0x0000000040004eb4 r_sch_arb_conflict_check = 0x40004eb4 + 0x0000000040004ec0 r_sch_arb_elt_cancel = 0x40004ec0 + 0x0000000040004ed8 r_sch_arb_init = 0x40004ed8 + 0x0000000040004ee4 r_sch_arb_insert = 0x40004ee4 + 0x0000000040004ef0 r_sch_arb_prog_timer = 0x40004ef0 + 0x0000000040004efc r_sch_arb_remove = 0x40004efc + 0x0000000040004f08 r_sch_arb_sw_isr = 0x40004f08 + 0x0000000040004f14 r_sch_plan_chk = 0x40004f14 + 0x0000000040004f20 r_sch_plan_clock_wrap_offset_update = 0x40004f20 + 0x0000000040004f2c r_sch_plan_init = 0x40004f2c + 0x0000000040004f38 r_sch_plan_interval_req = 0x40004f38 + 0x0000000040004f44 r_sch_plan_offset_max_calc = 0x40004f44 + 0x0000000040004f50 r_sch_plan_offset_req = 0x40004f50 + 0x0000000040004f5c r_sch_plan_position_range_compute = 0x40004f5c + 0x0000000040004f68 r_sch_plan_rem = 0x40004f68 + 0x0000000040004f74 r_sch_plan_req = 0x40004f74 + 0x0000000040004f98 r_sch_prog_init = 0x40004f98 + 0x0000000040004fa4 r_sch_prog_push = 0x40004fa4 + 0x0000000040004fb0 r_sch_prog_rx_isr = 0x40004fb0 + 0x0000000040004fbc r_sch_prog_skip_isr = 0x40004fbc + 0x0000000040004fc8 r_sch_prog_tx_isr = 0x40004fc8 + 0x0000000040004fd4 r_sch_slice_bg_add = 0x40004fd4 + 0x0000000040004fe0 r_sch_slice_bg_remove = 0x40004fe0 + 0x0000000040004fec r_sch_slice_compute = 0x40004fec + 0x0000000040004ff8 r_sch_slice_fg_add = 0x40004ff8 + 0x0000000040005004 r_sch_slice_fg_remove = 0x40005004 + 0x0000000040005010 r_sch_slice_init = 0x40005010 + 0x000000004000501c r_sch_slice_per_add = 0x4000501c + 0x0000000040005028 r_sch_slice_per_remove = 0x40005028 + 0x0000000040005034 r_sdk_config_get_bt_sleep_enable = 0x40005034 + 0x0000000040005040 r_sdk_config_get_hl_derived_opts = 0x40005040 + 0x000000004000504c r_sdk_config_get_opts = 0x4000504c + 0x0000000040005058 r_sdk_config_get_priv_opts = 0x40005058 + 0x0000000040005064 r_sdk_config_set_bt_sleep_enable = 0x40005064 + 0x0000000040005070 r_sdk_config_set_hl_derived_opts = 0x40005070 + 0x000000004000507c r_sdk_config_set_opts = 0x4000507c + 0x0000000040005088 r_specialModP256 = 0x40005088 + 0x0000000040005094 r_unloaded_area_init = 0x40005094 + 0x00000000400050a0 r_vhci_flow_off = 0x400050a0 + 0x00000000400050ac r_vhci_flow_on = 0x400050ac + 0x00000000400050b8 r_vhci_notify_host_send_available = 0x400050b8 + 0x00000000400050c4 r_vhci_send_to_host = 0x400050c4 + 0x00000000400050d0 r_vnd_hci_command_handler = 0x400050d0 + 0x00000000400050dc r_vshci_init = 0x400050dc + 0x00000000400050e8 vnd_hci_command_handler_wrapper = 0x400050e8 + 0x00000000400050f4 r_lld_legacy_adv_dynamic_pti_get = 0x400050f4 + 0x0000000040005100 r_lld_legacy_adv_dynamic_pti_process = 0x40005100 + 0x000000004000510c r_lld_ext_adv_dynamic_pti_get = 0x4000510c + 0x0000000040005118 r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118 + 0x0000000040005124 r_lld_ext_adv_dynamic_pti_process = 0x40005124 + 0x0000000040005130 r_lld_adv_ext_pkt_prepare_set = 0x40005130 + 0x0000000040005148 r_lld_adv_ext_chain_connectable_construct = 0x40005148 + 0x0000000040005160 r_lld_adv_pkt_rx_connect_post = 0x40005160 + 0x000000004000516c r_lld_adv_start_init_evt_param = 0x4000516c + 0x0000000040005178 r_lld_adv_start_set_cs = 0x40005178 + 0x0000000040005184 r_lld_adv_start_update_filter_policy = 0x40005184 + 0x0000000040005190 r_lld_adv_start_schedule_asap = 0x40005190 + 0x000000004000519c r_lld_con_tx_prog_new_packet_coex = 0x4000519c + 0x00000000400051b4 r_lld_per_adv_dynamic_pti_get = 0x400051b4 + 0x00000000400051c0 r_lld_per_adv_evt_start_chm_upd = 0x400051c0 + 0x00000000400051cc r_lld_ext_scan_dynamic_pti_get = 0x400051cc + 0x00000000400051d8 r_lld_scan_try_sched = 0x400051d8 + 0x00000000400051e4 r_lld_sync_insert = 0x400051e4 + 0x00000000400051f0 r_sch_prog_ble_push = 0x400051f0 + 0x00000000400051fc r_sch_prog_bt_push = 0x400051fc + 0x0000000040005208 r_lld_init_evt_end_type_set = 0x40005208 + 0x0000000040005214 r_lld_init_evt_end_type_get = 0x40005214 + 0x0000000040005220 r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220 + 0x000000004000522c r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c + 0x0000000040005238 r_lld_init_evt_end_type_check_state_set = 0x40005238 + 0x0000000040005244 r_lld_init_evt_end_type_check_state_get = 0x40005244 + 0x000000003fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x000000003fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x000000003fceffa0 btdm_env_p = 0x3fceffa0 + 0x000000003fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x000000003fceff98 g_rw_init_sem = 0x3fceff98 + 0x000000003fceff94 g_rw_schd_queue = 0x3fceff94 + 0x000000003fceff90 lld_init_env = 0x3fceff90 + 0x000000003fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x000000003fceff88 lld_scan_env = 0x3fceff88 + 0x000000003fceff84 lld_scan_sync_env = 0x3fceff84 + 0x000000003fceff80 lld_test_env = 0x3fceff80 + 0x000000003fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x000000003fceff78 p_lld_env = 0x3fceff78 + 0x000000003fceff74 p_llm_env = 0x3fceff74 + 0x000000003fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x000000003fceff6c r_hli_funcs_p = 0x3fceff6c + 0x000000003fceff68 r_ip_funcs_p = 0x3fceff68 + 0x000000003fceff64 r_modules_funcs_p = 0x3fceff64 + 0x000000003fceff60 r_osi_funcs_p = 0x3fceff60 + 0x000000003fceff5c r_plf_funcs_p = 0x3fceff5c + 0x000000003fceff58 vhci_env_p = 0x3fceff58 + 0x000000003fceff54 aa_gen = 0x3fceff54 + 0x000000003fceff48 aes_env = 0x3fceff48 + 0x000000003fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x000000003fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x000000003fcefef0 btdm_slp_err = 0x3fcefef0 + 0x000000003fcefee8 ecc_env = 0x3fcefee8 + 0x000000003fcefee0 esp_handler = 0x3fcefee0 + 0x000000003fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x000000003fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x000000003fcefed0 g_conflict_elt = 0x3fcefed0 + 0x000000003fcefec0 g_eif_api = 0x3fcefec0 + 0x000000003fcefeb4 g_event_empty = 0x3fcefeb4 + 0x000000003fcefeaa g_llc_state = 0x3fcefeaa + 0x000000003fcefea9 g_llm_state = 0x3fcefea9 + 0x000000003fcefea7 g_max_evt_env = 0x3fcefea7 + 0x000000003fcefea6 g_misc_state = 0x3fcefea6 + 0x000000003fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x000000003fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x000000003fcefe6d g_scan_forever = 0x3fcefe6d + 0x000000003fcefe6c g_time_msb = 0x3fcefe6c + 0x000000003fcefe44 h4tl_env = 0x3fcefe44 + 0x000000003fcefe21 hci_env = 0x3fcefe21 + 0x000000003fcefe20 hci_ext_host = 0x3fcefe20 + 0x000000003fcefe18 hci_fc_env = 0x3fcefe18 + 0x000000003fcefdec hci_tl_env = 0x3fcefdec + 0x000000003fcefdbc ke_env = 0x3fcefdbc + 0x000000003fcefd7c ke_event_env = 0x3fcefd7c + 0x000000003fcefd00 ke_task_env = 0x3fcefd00 + 0x000000003fcefcd8 llc_env = 0x3fcefcd8 + 0x000000003fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x000000003fcefc88 lld_con_env = 0x3fcefc88 + 0x000000003fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x000000003fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x000000003fcefc30 lld_sync_env = 0x3fcefc30 + 0x000000003fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x000000003fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x000000003fcefc18 rwble_env = 0x3fcefc18 + 0x000000003fcefbfc rwip_env = 0x3fcefbfc + 0x000000003fcefbf0 rwip_param = 0x3fcefbf0 + 0x000000003fcefbec rwip_prog_delay = 0x3fcefbec + 0x000000003fcefbb4 rwip_rf = 0x3fcefbb4 + 0x000000003fcefbac sch_alarm_env = 0x3fcefbac + 0x000000003fcefb98 sch_arb_env = 0x3fcefb98 + 0x000000003fcefb90 sch_plan_env = 0x3fcefb90 + 0x000000003fcefa8c sch_prog_env = 0x3fcefa8c + 0x000000003fcefa2c sch_slice_env = 0x3fcefa2c + 0x000000003fcefa24 sch_slice_params = 0x3fcefa24 + 0x000000003fcefa1c timer_env = 0x3fcefa1c + 0x000000003fcefa18 unloaded_area = 0x3fcefa18 + 0x000000003fcefa14 vshci_state = 0x3fcefa14 + 0x000000003fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x000000003fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x000000003fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x000000003fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x000000003fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x000000003fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x000000003fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x000000003fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x000000003fcef9a0 privacy_en = 0x3fcef9a0 + 0x000000003fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x000000003ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x000000003ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x000000003ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x000000003ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x000000003ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x000000003ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x000000003ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x000000003ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x000000003ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x000000003ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x000000003ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x000000003ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x000000003ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x000000003ff1f741 aes_k2_salt = 0x3ff1f741 + 0x000000003ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x000000003ff1f72c aes_k3_salt = 0x3ff1f72c + 0x000000003ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x000000003ff1f718 aes_k4_salt = 0x3ff1f718 + 0x000000003ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x000000003ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x000000003ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x000000003ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x000000003ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x000000003ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x000000003ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x000000003ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x000000003ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x000000003ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x000000003ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x000000003ff1f680 coef_B = 0x3ff1f680 + 0x000000003ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x000000003ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x000000003ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x000000003ff1f51e fixed_tx_time = 0x3ff1f51e + 0x000000003ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x000000003ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x000000003ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x000000003ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x000000003ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x000000003ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x000000003ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x000000003ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x000000003ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x000000003ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x000000003ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x000000003ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x000000003ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x000000003ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x000000003ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x000000003ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x000000003ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x000000003ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x000000003ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x000000003ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x000000003ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x000000003ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x000000003ff1eec3 one_bits = 0x3ff1eec3 + 0x000000003ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x000000003ff1eea8 rwip_priority = 0x3ff1eea8 + 0x000000003ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x0000000040001c60 r_llc_loc_encrypt_proc_continue_hook = 0x40001c60 + 0x0000000040001c64 r_llc_loc_phy_upd_proc_continue_hook = 0x40001c64 + 0x0000000040001c68 r_llc_rem_phy_upd_proc_continue_hook = 0x40001c68 + 0x0000000040001c6c r_lld_scan_frm_eof_isr_hook = 0x40001c6c + 0x0000000040001c70 r_lld_scan_evt_start_cbk_hook = 0x40001c70 + 0x0000000040001c78 r_lld_scan_process_pkt_rx_ext_adv_hook = 0x40001c78 + 0x0000000040001c7c r_lld_scan_sched_hook = 0x40001c7c + 0x0000000040001c84 r_lld_adv_evt_start_cbk_hook = 0x40001c84 + 0x0000000040001c88 r_lld_adv_aux_evt_start_cbk_hook = 0x40001c88 + 0x0000000040001c8c r_lld_adv_frm_isr_hook = 0x40001c8c + 0x0000000040001c90 r_lld_adv_start_init_evt_param_hook = 0x40001c90 + 0x0000000040001c94 r_lld_con_evt_canceled_cbk_hook = 0x40001c94 + 0x0000000040001c98 r_lld_con_frm_isr_hook = 0x40001c98 + 0x0000000040001c9c r_lld_con_tx_hook = 0x40001c9c + 0x0000000040001ca0 r_lld_con_rx_hook = 0x40001ca0 + 0x0000000040001ca4 r_lld_con_evt_start_cbk_hook = 0x40001ca4 + 0x0000000040001cac r_lld_con_tx_prog_new_packet_hook = 0x40001cac + 0x0000000040001cb0 r_lld_init_frm_eof_isr_hook = 0x40001cb0 + 0x0000000040001cb4 r_lld_init_evt_start_cbk_hook = 0x40001cb4 + 0x0000000040001cbc r_lld_init_sched_hook = 0x40001cbc + 0x0000000040001cc0 r_lld_init_process_pkt_tx_hook = 0x40001cc0 + 0x0000000040001cc4 r_lld_per_adv_evt_start_cbk_hook = 0x40001cc4 + 0x0000000040001cc8 r_lld_per_adv_frm_isr_hook = 0x40001cc8 + 0x0000000040001ccc r_lld_per_adv_start_hook = 0x40001ccc + 0x0000000040001cd0 r_lld_sync_frm_eof_isr_hook = 0x40001cd0 + 0x0000000040001cd4 r_lld_sync_evt_start_cbk_hook = 0x40001cd4 + 0x0000000040001cd8 r_lld_sync_start_hook = 0x40001cd8 + 0x0000000040001cdc r_lld_sync_process_pkt_rx_pkt_check_hook = 0x40001cdc + 0x0000000040001ce0 r_sch_arb_insert_hook = 0x40001ce0 + 0x0000000040001ce4 r_sch_plan_offset_req_hook = 0x40001ce4 + 0x0000000040005250 esp_pp_rom_version_get = 0x40005250 + 0x000000004000525c RC_GetBlockAckTime = 0x4000525c + 0x0000000040005268 ebuf_list_remove = 0x40005268 + 0x0000000040005274 esf_buf_alloc = 0x40005274 + 0x0000000040005280 esf_buf_alloc_dynamic = 0x40005280 + 0x0000000040005298 GetAccess = 0x40005298 + 0x00000000400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x00000000400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x00000000400052c8 ic_get_trc = 0x400052c8 + 0x00000000400052e0 ic_mac_init = 0x400052e0 + 0x00000000400052ec ic_interface_enabled = 0x400052ec + 0x00000000400052f8 is_lmac_idle = 0x400052f8 + 0x0000000040005304 lmacAdjustTimestamp = 0x40005304 + 0x0000000040005310 lmacDiscardAgedMSDU = 0x40005310 + 0x0000000040005328 lmacEndFrameExchangeSequence = 0x40005328 + 0x0000000040005334 lmacIsIdle = 0x40005334 + 0x0000000040005340 lmacIsLongFrame = 0x40005340 + 0x000000004000534c lmacMSDUAged = 0x4000534c + 0x0000000040005358 lmacPostTxComplete = 0x40005358 + 0x0000000040005364 lmacProcessAllTxTimeout = 0x40005364 + 0x0000000040005370 lmacProcessCollisions = 0x40005370 + 0x000000004000537c lmacProcessRxSucData = 0x4000537c + 0x0000000040005388 lmacReachLongLimit = 0x40005388 + 0x0000000040005394 lmacReachShortLimit = 0x40005394 + 0x00000000400053a0 lmacRecycleMPDU = 0x400053a0 + 0x00000000400053ac lmacRxDone = 0x400053ac + 0x00000000400053c4 lmacTxDone = 0x400053c4 + 0x00000000400053dc mac_tx_set_duration = 0x400053dc + 0x00000000400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x000000004000540c mac_tx_set_plcp2 = 0x4000540c + 0x0000000040005418 pm_check_state = 0x40005418 + 0x0000000040005424 pm_disable_dream_timer = 0x40005424 + 0x0000000040005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x000000004000543c pm_dream = 0x4000543c + 0x0000000040005448 pm_mac_wakeup = 0x40005448 + 0x0000000040005454 pm_mac_sleep = 0x40005454 + 0x0000000040005460 pm_enable_active_timer = 0x40005460 + 0x000000004000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x0000000040005478 pm_local_tsf_process = 0x40005478 + 0x0000000040005484 pm_set_beacon_filter = 0x40005484 + 0x0000000040005490 pm_is_in_wifi_slice_threshold = 0x40005490 + 0x000000004000549c pm_is_waked = 0x4000549c + 0x00000000400054a8 pm_keep_alive = 0x400054a8 + 0x00000000400054c0 pm_on_data_rx = 0x400054c0 + 0x00000000400054cc pm_on_tbtt = 0x400054cc + 0x00000000400054e4 pm_process_tim = 0x400054e4 + 0x00000000400054fc pm_rx_data_process = 0x400054fc + 0x0000000040005514 pm_sleep_for = 0x40005514 + 0x000000004000552c ppAMPDU2Normal = 0x4000552c + 0x0000000040005538 ppAssembleAMPDU = 0x40005538 + 0x0000000040005544 ppCalFrameTimes = 0x40005544 + 0x0000000040005550 ppCalSubFrameLength = 0x40005550 + 0x000000004000555c ppCalTxAMPDULength = 0x4000555c + 0x0000000040005568 ppCheckTxAMPDUlength = 0x40005568 + 0x0000000040005574 ppDequeueRxq_Locked = 0x40005574 + 0x0000000040005580 ppDequeueTxQ = 0x40005580 + 0x000000004000558c ppEmptyDelimiterLength = 0x4000558c + 0x0000000040005598 ppEnqueueRxq = 0x40005598 + 0x00000000400055a4 ppEnqueueTxDone = 0x400055a4 + 0x00000000400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x00000000400055bc ppGetTxframe = 0x400055bc + 0x00000000400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x00000000400055ec ppProcessTxQ = 0x400055ec + 0x00000000400055f8 ppRecordBarRRC = 0x400055f8 + 0x0000000040005604 lmacRequestTxopQueue = 0x40005604 + 0x0000000040005610 lmacReleaseTxopQueue = 0x40005610 + 0x000000004000561c ppRecycleAmpdu = 0x4000561c + 0x0000000040005628 ppRecycleRxPkt = 0x40005628 + 0x0000000040005634 ppResortTxAMPDU = 0x40005634 + 0x0000000040005640 ppResumeTxAMPDU = 0x40005640 + 0x0000000040005658 ppRxPkt = 0x40005658 + 0x0000000040005664 ppRxProtoProc = 0x40005664 + 0x0000000040005670 ppSearchTxQueue = 0x40005670 + 0x000000004000567c ppSearchTxframe = 0x4000567c + 0x0000000040005688 ppSelectNextQueue = 0x40005688 + 0x0000000040005694 ppSubFromAMPDU = 0x40005694 + 0x00000000400056ac ppTxPkt = 0x400056ac + 0x00000000400056b8 ppTxProtoProc = 0x400056b8 + 0x00000000400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x00000000400056d0 pp_coex_tx_request = 0x400056d0 + 0x00000000400056dc pp_hdrsize = 0x400056dc + 0x00000000400056e8 pp_post = 0x400056e8 + 0x00000000400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x0000000040005700 rcGetAmpduSched = 0x40005700 + 0x000000004000570c rcUpdateRxDone = 0x4000570c + 0x0000000040005718 rc_get_trc = 0x40005718 + 0x0000000040005724 rc_get_trc_by_index = 0x40005724 + 0x0000000040005730 rcAmpduLowerRate = 0x40005730 + 0x000000004000573c rcampduuprate = 0x4000573c + 0x0000000040005748 rcClearCurAMPDUSched = 0x40005748 + 0x0000000040005754 rcClearCurSched = 0x40005754 + 0x0000000040005760 rcClearCurStat = 0x40005760 + 0x0000000040005778 rcLowerSched = 0x40005778 + 0x0000000040005784 rcSetTxAmpduLimit = 0x40005784 + 0x000000004000579c rcUpdateAckSnr = 0x4000579c + 0x00000000400057a8 rcUpdateRate = 0x400057a8 + 0x00000000400057c0 rcUpdateTxDoneAmpdu2 = 0x400057c0 + 0x00000000400057cc rcUpSched = 0x400057cc + 0x00000000400057d8 rssi_margin = 0x400057d8 + 0x00000000400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x00000000400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x00000000400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x0000000040005808 trc_calc_duration = 0x40005808 + 0x0000000040005814 trc_isTxAmpduOperational = 0x40005814 + 0x0000000040005820 trc_onAmpduOp = 0x40005820 + 0x000000004000582c TRC_PER_IS_GOOD = 0x4000582c + 0x0000000040005838 trc_SetTxAmpduState = 0x40005838 + 0x0000000040005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x0000000040005850 trcAmpduSetState = 0x40005850 + 0x000000004000585c wDevCheckBlockError = 0x4000585c + 0x0000000040005868 wDev_AppendRxBlocks = 0x40005868 + 0x0000000040005874 wDev_DiscardFrame = 0x40005874 + 0x0000000040005880 wDev_GetNoiseFloor = 0x40005880 + 0x000000004000588c wDev_IndicateAmpdu = 0x4000588c + 0x0000000040005898 wDev_IndicateFrame = 0x40005898 + 0x00000000400058a4 wdev_bank_store = 0x400058a4 + 0x00000000400058b0 wdev_bank_load = 0x400058b0 + 0x00000000400058bc wdev_mac_reg_load = 0x400058bc + 0x00000000400058c8 wdev_mac_reg_store = 0x400058c8 + 0x00000000400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x00000000400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x00000000400058ec wdev_mac_wakeup = 0x400058ec + 0x00000000400058f8 wdev_mac_sleep = 0x400058f8 + 0x0000000040005904 hal_mac_is_dma_enable = 0x40005904 + 0x000000004000591c wDev_ProcessRxSucData = 0x4000591c + 0x0000000040005928 wdevProcessRxSucDataAll = 0x40005928 + 0x0000000040005934 wdev_csi_len_align = 0x40005934 + 0x0000000040005940 ppDequeueTxDone_Locked = 0x40005940 + 0x0000000040005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x0000000040005970 ppMapWaitTxq = 0x40005970 + 0x000000004000597c ppProcessWaitingQueue = 0x4000597c + 0x0000000040005988 ppDisableQueue = 0x40005988 + 0x0000000040005994 pm_allow_tx = 0x40005994 + 0x00000000400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x00000000400059ac ppProcTxCallback = 0x400059ac + 0x000000003ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x000000003fcef954 pTxRx = 0x3fcef954 + 0x000000003fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x000000003fcef94c our_wait_eb = 0x3fcef94c + 0x000000003fcef948 our_tx_eb = 0x3fcef948 + 0x000000003fcef944 pp_wdev_funcs = 0x3fcef944 + 0x000000003fcef940 g_osi_funcs_p = 0x3fcef940 + 0x000000003fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x000000003ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x000000003fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x000000003fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x000000003ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x000000003fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x000000003fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x000000003fcef928 s_fragment_ptr = 0x3fcef928 + 0x000000003fcef924 if_ctrl_ptr = 0x3fcef924 + 0x000000003fcef920 g_intr_lock_mux = 0x3fcef920 + 0x000000003fcef91c g_wifi_global_lock = 0x3fcef91c + 0x000000003fcef918 s_wifi_queue = 0x3fcef918 + 0x000000003fcef914 pp_task_hdl = 0x3fcef914 + 0x000000003fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x000000003fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x000000003fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x000000003fcef904 xphyQueue = 0x3fcef904 + 0x000000003fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x000000003fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x000000003fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x000000003fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x000000003fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x000000003fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x000000003fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x000000003fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x000000003fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x000000003fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x000000003fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x000000003fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x000000003fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x000000003fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x000000003fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x000000003fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x000000003fcef8c0 g_config_func = 0x3fcef8c0 + 0x000000003fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x000000003fcef8b8 g_timer_func = 0x3fcef8b8 + 0x000000003fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x000000003fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x000000003fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x000000003fcef860 g_per_conn_trc = 0x3fcef860 + 0x000000003fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x00000000400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x00000000400059c4 ampdu_dispatch = 0x400059c4 + 0x00000000400059d0 ampdu_dispatch_all = 0x400059d0 + 0x00000000400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x00000000400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x00000000400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x0000000040005a00 chm_is_at_home_channel = 0x40005a00 + 0x0000000040005a0c cnx_node_is_existing = 0x40005a0c + 0x0000000040005a18 cnx_node_search = 0x40005a18 + 0x0000000040005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x0000000040005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x0000000040005a3c ic_reset_rx_ba = 0x40005a3c + 0x0000000040005a48 ieee80211_align_eb = 0x40005a48 + 0x0000000040005a54 ieee80211_ampdu_reorder = 0x40005a54 + 0x0000000040005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x0000000040005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x0000000040005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x0000000040005a90 ieee80211_output_process = 0x40005a90 + 0x0000000040005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x0000000040005ab4 wifi_get_macaddr = 0x40005ab4 + 0x0000000040005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x0000000040005acc wifi_rf_phy_enable = 0x40005acc + 0x0000000040005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x0000000040005ae4 ieee80211_classify = 0x40005ae4 + 0x0000000040005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x0000000040005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x0000000040005b08 ieee80211_search_node = 0x40005b08 + 0x0000000040005b14 roundup2 = 0x40005b14 + 0x0000000040005b20 ieee80211_crypto_encap = 0x40005b20 + 0x0000000040005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x0000000040005b50 wifi_is_started = 0x40005b50 + 0x0000000040005b5c ieee80211_gettid = 0x40005b5c + 0x000000003fcef858 net80211_funcs = 0x3fcef858 + 0x000000003fcef854 g_scan = 0x3fcef854 + 0x000000003fcef850 g_chm = 0x3fcef850 + 0x000000003fcef84c g_ic_ptr = 0x3fcef84c + 0x000000003fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x000000003fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x000000003fcef840 s_netstack_free = 0x3fcef840 + 0x000000003fcef83c mesh_rxcb = 0x3fcef83c + 0x000000003fcef838 sta_rxcb = 0x3fcef838 + 0x0000000040005b68 esp_coex_rom_version_get = 0x40005b68 + 0x0000000040005b74 coex_bt_release = 0x40005b74 + 0x0000000040005b80 coex_bt_request = 0x40005b80 + 0x0000000040005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x0000000040005b98 coex_core_event_duration_get = 0x40005b98 + 0x0000000040005ba4 coex_core_pti_get = 0x40005ba4 + 0x0000000040005bb0 coex_core_release = 0x40005bb0 + 0x0000000040005bbc coex_core_request = 0x40005bbc + 0x0000000040005bc8 coex_core_status_get = 0x40005bc8 + 0x0000000040005be0 coex_event_duration_get = 0x40005be0 + 0x0000000040005bec coex_hw_timer_disable = 0x40005bec + 0x0000000040005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x0000000040005c04 coex_hw_timer_set = 0x40005c04 + 0x0000000040005c10 coex_schm_interval_set = 0x40005c10 + 0x0000000040005c1c coex_schm_lock = 0x40005c1c + 0x0000000040005c28 coex_schm_unlock = 0x40005c28 + 0x0000000040005c34 coex_status_get = 0x40005c34 + 0x0000000040005c40 coex_wifi_release = 0x40005c40 + 0x0000000040005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x000000003fcef834 coex_env_ptr = 0x3fcef834 + 0x000000003fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x000000003fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x000000003fcef828 coexist_funcs = 0x3fcef828 + 0x000000003fcef824 g_coa_funcs_p = 0x3fcef824 + 0x000000003fcef820 g_coex_param_ptr = 0x3fcef820 + 0x0000000040005c58 phy_get_romfuncs = 0x40005c58 + 0x0000000040005c64 rom_abs_temp = 0x40005c64 + 0x0000000040005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x0000000040005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x0000000040005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x0000000040005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x0000000040005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x0000000040005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x0000000040005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x0000000040005cc4 rom_check_noise_floor = 0x40005cc4 + 0x0000000040005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x0000000040005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x0000000040005ce8 rom_dc_iq_est = 0x40005ce8 + 0x0000000040005cf4 rom_disable_agc = 0x40005cf4 + 0x0000000040005d00 rom_en_pwdet = 0x40005d00 + 0x0000000040005d0c rom_enable_agc = 0x40005d0c + 0x0000000040005d18 rom_get_bbgain_db = 0x40005d18 + 0x0000000040005d24 rom_get_data_sat = 0x40005d24 + 0x0000000040005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x0000000040005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x0000000040005d48 rom_i2c_readReg = 0x40005d48 + 0x0000000040005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x0000000040005d60 rom_i2c_writeReg = 0x40005d60 + 0x0000000040005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x0000000040005d78 rom_index_to_txbbgain = 0x40005d78 + 0x0000000040005d84 rom_iq_est_disable = 0x40005d84 + 0x0000000040005d90 rom_iq_est_enable = 0x40005d90 + 0x0000000040005d9c rom_linear_to_db = 0x40005d9c + 0x0000000040005da8 rom_loopback_mode_en = 0x40005da8 + 0x0000000040005db4 rom_mhz2ieee = 0x40005db4 + 0x0000000040005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x0000000040005dcc rom_pbus_debugmode = 0x40005dcc + 0x0000000040005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x0000000040005de4 rom_pbus_force_test = 0x40005de4 + 0x0000000040005df0 rom_pbus_rd = 0x40005df0 + 0x0000000040005dfc rom_pbus_rd_addr = 0x40005dfc + 0x0000000040005e08 rom_pbus_rd_shift = 0x40005e08 + 0x0000000040005e14 rom_pbus_set_dco = 0x40005e14 + 0x0000000040005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x0000000040005e2c rom_pbus_workmode = 0x40005e2c + 0x0000000040005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x0000000040005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x0000000040005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x0000000040005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x0000000040005e68 rom_phy_byte_to_word = 0x40005e68 + 0x0000000040005e74 rom_phy_disable_cca = 0x40005e74 + 0x0000000040005e80 rom_phy_enable_cca = 0x40005e80 + 0x0000000040005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x0000000040005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x0000000040005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x0000000040005eb0 rom_pow_usr = 0x40005eb0 + 0x0000000040005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x0000000040005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x0000000040005ed4 rom_read_sar_dout = 0x40005ed4 + 0x0000000040005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x0000000040005eec rom_set_chan_cal_interp = 0x40005eec + 0x0000000040005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x0000000040005f04 rom_set_noise_floor = 0x40005f04 + 0x0000000040005f10 rom_set_rxclk_en = 0x40005f10 + 0x0000000040005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x0000000040005f28 rom_set_txcap_reg = 0x40005f28 + 0x0000000040005f34 rom_set_txclk_en = 0x40005f34 + 0x0000000040005f40 rom_spur_cal = 0x40005f40 + 0x0000000040005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x0000000040005f58 rom_target_power_add_backoff = 0x40005f58 + 0x0000000040005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x0000000040005f70 rom_txbbgain_to_index = 0x40005f70 + 0x0000000040005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x0000000040005f88 rom_write_gain_mem = 0x40005f88 + 0x0000000040005f94 chip728_phyrom_version = 0x40005f94 + 0x0000000040005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x0000000040005fac rom_enable_wifi_agc = 0x40005fac + 0x0000000040005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x0000000040005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x0000000040005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x0000000040005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x0000000040005fe8 rom_set_cca = 0x40005fe8 + 0x0000000040005ff4 rom_tx_paon_set = 0x40005ff4 + 0x0000000040006000 rom_i2cmst_reg_init = 0x40006000 + 0x000000004000600c rom_iq_corr_enable = 0x4000600c + 0x0000000040006018 rom_fe_reg_init = 0x40006018 + 0x0000000040006024 rom_agc_reg_init = 0x40006024 + 0x0000000040006030 rom_bb_reg_init = 0x40006030 + 0x000000004000603c rom_mac_enable_bb = 0x4000603c + 0x0000000040006048 rom_bb_wdg_cfg = 0x40006048 + 0x0000000040006054 rom_force_txon = 0x40006054 + 0x0000000040006060 rom_fe_txrx_reset = 0x40006060 + 0x000000004000606c rom_set_rx_comp = 0x4000606c + 0x0000000040006078 rom_set_pbus_reg = 0x40006078 + 0x0000000040006084 rom_write_chan_freq = 0x40006084 + 0x0000000040006090 rom_phy_xpd_rf = 0x40006090 + 0x000000004000609c rom_set_xpd_sar = 0x4000609c + 0x00000000400060a8 rom_get_target_power_offset = 0x400060a8 + 0x00000000400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x00000000400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x00000000400060cc rom_get_rate_target_power = 0x400060cc + 0x00000000400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x00000000400060e4 rom_read_sar2_code = 0x400060e4 + 0x00000000400060f0 rom_get_sar2_vol = 0x400060f0 + 0x00000000400060fc rom_get_pll_vol = 0x400060fc + 0x0000000040006108 rom_get_phy_target_power = 0x40006108 + 0x0000000040006114 rom_temp_to_power = 0x40006114 + 0x0000000040006120 rom_phy_track_pll_cap = 0x40006120 + 0x000000004000612c rom_phy_pwdet_always_en = 0x4000612c + 0x0000000040006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x0000000040006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x0000000040006150 rom_get_i2c_hostid = 0x40006150 + 0x000000004000615c rom_enter_critical_phy = 0x4000615c + 0x0000000040006168 rom_exit_critical_phy = 0x40006168 + 0x0000000040006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x0000000040006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x000000004000618c rom_i2c_paral_set_read = 0x4000618c + 0x0000000040006198 rom_i2c_paral_read = 0x40006198 + 0x00000000400061a4 rom_i2c_paral_write = 0x400061a4 + 0x00000000400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x00000000400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x00000000400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x00000000400061d4 rom_chan_to_freq = 0x400061d4 + 0x00000000400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x00000000400061ec rom_dac_rate_set = 0x400061ec + 0x00000000400061f8 rom_tsens_read_init = 0x400061f8 + 0x0000000040006204 rom_tsens_code_read = 0x40006204 + 0x0000000040006210 rom_tsens_index_to_dac = 0x40006210 + 0x000000004000621c rom_tsens_index_to_offset = 0x4000621c + 0x0000000040006228 rom_tsens_dac_cal = 0x40006228 + 0x0000000040006234 rom_code_to_temp = 0x40006234 + 0x0000000040006240 rom_write_pll_cap_mem = 0x40006240 + 0x000000004000624c rom_pll_correct_dcap = 0x4000624c + 0x0000000040006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x0000000040006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x0000000040006270 rom_pll_vol_cal = 0x40006270 + 0x000000004000627c rom_wrtie_pll_cap = 0x4000627c + 0x0000000040006288 rom_set_tx_gain_mem = 0x40006288 + 0x0000000040006294 rom_bt_tx_dig_gain = 0x40006294 + 0x00000000400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x00000000400062ac rom_get_chan_target_power = 0x400062ac + 0x00000000400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x00000000400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x00000000400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x00000000400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x00000000400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x00000000400062f4 rom_i2c_master_reset = 0x400062f4 + 0x0000000040006300 rom_bt_filter_reg = 0x40006300 + 0x000000004000630c rom_phy_bbpll_cal = 0x4000630c + 0x0000000040006318 rom_i2c_sar2_init_code = 0x40006318 + 0x0000000040006324 rom_phy_param_addr = 0x40006324 + 0x0000000040006330 rom_phy_reg_init = 0x40006330 + 0x000000004000633c rom_set_chan_reg = 0x4000633c + 0x0000000040006348 rom_phy_wakeup_init = 0x40006348 + 0x0000000040006354 rom_phy_i2c_init1 = 0x40006354 + 0x0000000040006360 rom_tsens_temp_read = 0x40006360 + 0x000000004000636c rom_bt_track_pll_cap = 0x4000636c + 0x0000000040006378 rom_wifi_track_pll_cap = 0x40006378 + 0x0000000040006384 rom_wifi_set_tx_gain = 0x40006384 + 0x0000000040006390 rom_txpwr_cal_track = 0x40006390 + 0x000000004000639c rom_tx_pwctrl_background = 0x4000639c + 0x00000000400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x00000000400063b4 rom_noise_check_loop = 0x400063b4 + 0x00000000400063c0 rom_phy_close_rf = 0x400063c0 + 0x00000000400063cc rom_phy_xpd_tsens = 0x400063cc + 0x00000000400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x00000000400063e4 rom_phy_ant_init = 0x400063e4 + 0x00000000400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x00000000400063fc rom_wifi_track_tx_power = 0x400063fc + 0x0000000040006408 rom_phy_dig_reg_backup = 0x40006408 + 0x0000000040006414 chip728_phyrom_version_num = 0x40006414 + 0x0000000040006420 rom_mac_tx_chan_offset = 0x40006420 + 0x000000004000642c rom_rx_gain_force = 0x4000642c + 0x000000003fcef81c phy_param_rom = 0x3fcef81c + 0x0000000040001c98 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) + 0x0000000040001b0c PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x0000000040001b00 PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x0000000040001a94 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x0000000040001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x0000000040001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x0000000040001fa4 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) + 0x0000000040000648 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + 0x000000004000069c PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x0000000040000660 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + 0x00000000400006c0 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) + 0x0000000040001c5c PROVIDE (esp_rom_md5_init = MD5Init) + 0x0000000040001c68 PROVIDE (esp_rom_md5_update = MD5Update) + 0x0000000040001c74 PROVIDE (esp_rom_md5_final = MD5Final) + 0x00000000400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x0000000040000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x000000004000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x0000000040001b54 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x0000000040001a40 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_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) + 0x0000000040005d48 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x0000000040005d54 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x0000000040005d60 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x0000000040005d6c PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x000000004000216c __absvdi2 = 0x4000216c + 0x0000000040002178 __absvsi2 = 0x40002178 + 0x0000000040002184 __adddf3 = 0x40002184 + 0x0000000040002190 __addsf3 = 0x40002190 + 0x000000004000219c __addvdi3 = 0x4000219c + 0x00000000400021a8 __addvsi3 = 0x400021a8 + 0x00000000400021b4 __ashldi3 = 0x400021b4 + 0x00000000400021c0 __ashrdi3 = 0x400021c0 + 0x00000000400021cc __bswapdi2 = 0x400021cc + 0x00000000400021d8 __bswapsi2 = 0x400021d8 + 0x00000000400021e4 __clear_cache = 0x400021e4 + 0x00000000400021f0 __clrsbdi2 = 0x400021f0 + 0x00000000400021fc __clrsbsi2 = 0x400021fc + 0x0000000040002208 __clzdi2 = 0x40002208 + 0x0000000040002214 __clzsi2 = 0x40002214 + 0x0000000040002220 __cmpdi2 = 0x40002220 + 0x000000004000222c __ctzdi2 = 0x4000222c + 0x0000000040002238 __ctzsi2 = 0x40002238 + 0x0000000040002244 __divdc3 = 0x40002244 + 0x0000000040002250 __divdf3 = 0x40002250 + 0x000000004000225c __divdi3 = 0x4000225c + 0x0000000040002268 __divsc3 = 0x40002268 + 0x0000000040002274 __divsf3 = 0x40002274 + 0x0000000040002280 __divsi3 = 0x40002280 + 0x000000004000228c __eqdf2 = 0x4000228c + 0x0000000040002298 __eqsf2 = 0x40002298 + 0x00000000400022a4 __extendsfdf2 = 0x400022a4 + 0x00000000400022b0 __ffsdi2 = 0x400022b0 + 0x00000000400022bc __ffssi2 = 0x400022bc + 0x00000000400022c8 __fixdfdi = 0x400022c8 + 0x00000000400022d4 __fixdfsi = 0x400022d4 + 0x00000000400022e0 __fixsfdi = 0x400022e0 + 0x00000000400022ec __fixsfsi = 0x400022ec + 0x00000000400022f8 __fixunsdfsi = 0x400022f8 + 0x0000000040002304 __fixunssfdi = 0x40002304 + 0x0000000040002310 __fixunssfsi = 0x40002310 + 0x000000004000231c __floatdidf = 0x4000231c + 0x0000000040002328 __floatdisf = 0x40002328 + 0x0000000040002334 __floatsidf = 0x40002334 + 0x0000000040002340 __floatsisf = 0x40002340 + 0x000000004000234c __floatundidf = 0x4000234c + 0x0000000040002358 __floatundisf = 0x40002358 + 0x0000000040002364 __floatunsidf = 0x40002364 + 0x0000000040002370 __floatunsisf = 0x40002370 + 0x000000004000237c __gcc_bcmp = 0x4000237c + 0x0000000040002388 __gedf2 = 0x40002388 + 0x0000000040002394 __gesf2 = 0x40002394 + 0x00000000400023a0 __gtdf2 = 0x400023a0 + 0x00000000400023ac __gtsf2 = 0x400023ac + 0x00000000400023b8 __ledf2 = 0x400023b8 + 0x00000000400023c4 __lesf2 = 0x400023c4 + 0x00000000400023d0 __lshrdi3 = 0x400023d0 + 0x00000000400023dc __ltdf2 = 0x400023dc + 0x00000000400023e8 __ltsf2 = 0x400023e8 + 0x00000000400023f4 __moddi3 = 0x400023f4 + 0x0000000040002400 __modsi3 = 0x40002400 + 0x000000004000240c __muldc3 = 0x4000240c + 0x0000000040002418 __muldf3 = 0x40002418 + 0x0000000040002424 __muldi3 = 0x40002424 + 0x0000000040002430 __mulsc3 = 0x40002430 + 0x000000004000243c __mulsf3 = 0x4000243c + 0x0000000040002448 __mulsi3 = 0x40002448 + 0x0000000040002454 __mulvdi3 = 0x40002454 + 0x0000000040002460 __mulvsi3 = 0x40002460 + 0x000000004000246c __nedf2 = 0x4000246c + 0x0000000040002478 __negdf2 = 0x40002478 + 0x0000000040002484 __negdi2 = 0x40002484 + 0x0000000040002490 __negsf2 = 0x40002490 + 0x000000004000249c __negvdi2 = 0x4000249c + 0x00000000400024a8 __negvsi2 = 0x400024a8 + 0x00000000400024b4 __nesf2 = 0x400024b4 + 0x00000000400024c0 __paritysi2 = 0x400024c0 + 0x00000000400024cc __popcountdi2 = 0x400024cc + 0x00000000400024d8 __popcountsi2 = 0x400024d8 + 0x00000000400024e4 __powidf2 = 0x400024e4 + 0x00000000400024f0 __powisf2 = 0x400024f0 + 0x00000000400024fc __subdf3 = 0x400024fc + 0x0000000040002508 __subsf3 = 0x40002508 + 0x0000000040002514 __subvdi3 = 0x40002514 + 0x0000000040002520 __subvsi3 = 0x40002520 + 0x000000004000252c __truncdfsf2 = 0x4000252c + 0x0000000040002538 __ucmpdi2 = 0x40002538 + 0x0000000040002544 __udivdi3 = 0x40002544 + 0x0000000040002550 __udivmoddi4 = 0x40002550 + 0x000000004000255c __udivsi3 = 0x4000255c + 0x0000000040002568 __udiv_w_sdiv = 0x40002568 + 0x0000000040002574 __umoddi3 = 0x40002574 + 0x0000000040002580 __umodsi3 = 0x40002580 + 0x000000004000258c __unorddf2 = 0x4000258c + 0x0000000040002598 __unordsf2 = 0x40002598 + 0x00000000400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x00000000400011e8 memset = 0x400011e8 + 0x00000000400011f4 memcpy = 0x400011f4 + 0x0000000040001200 memmove = 0x40001200 + 0x000000004000120c memcmp = 0x4000120c + 0x0000000040001218 strcpy = 0x40001218 + 0x0000000040001224 strncpy = 0x40001224 + 0x0000000040001230 strcmp = 0x40001230 + 0x000000004000123c strncmp = 0x4000123c + 0x0000000040001248 strlen = 0x40001248 + 0x0000000040001254 strstr = 0x40001254 + 0x0000000040001260 bzero = 0x40001260 + 0x0000000040001278 sbrk = 0x40001278 + 0x0000000040001284 isalnum = 0x40001284 + 0x0000000040001290 isalpha = 0x40001290 + 0x000000004000129c isascii = 0x4000129c + 0x00000000400012a8 isblank = 0x400012a8 + 0x00000000400012b4 iscntrl = 0x400012b4 + 0x00000000400012c0 isdigit = 0x400012c0 + 0x00000000400012cc islower = 0x400012cc + 0x00000000400012d8 isgraph = 0x400012d8 + 0x00000000400012e4 isprint = 0x400012e4 + 0x00000000400012f0 ispunct = 0x400012f0 + 0x00000000400012fc isspace = 0x400012fc + 0x0000000040001308 isupper = 0x40001308 + 0x0000000040001314 toupper = 0x40001314 + 0x0000000040001320 tolower = 0x40001320 + 0x000000004000132c toascii = 0x4000132c + 0x0000000040001338 memccpy = 0x40001338 + 0x0000000040001344 memchr = 0x40001344 + 0x0000000040001350 memrchr = 0x40001350 + 0x000000004000135c strcasecmp = 0x4000135c + 0x0000000040001368 strcasestr = 0x40001368 + 0x0000000040001374 strcat = 0x40001374 + 0x0000000040001380 strdup = 0x40001380 + 0x000000004000138c strchr = 0x4000138c + 0x0000000040001398 strcspn = 0x40001398 + 0x00000000400013a4 strcoll = 0x400013a4 + 0x00000000400013b0 strlcat = 0x400013b0 + 0x00000000400013bc strlcpy = 0x400013bc + 0x00000000400013c8 strlwr = 0x400013c8 + 0x00000000400013d4 strncasecmp = 0x400013d4 + 0x00000000400013e0 strncat = 0x400013e0 + 0x00000000400013ec strndup = 0x400013ec + 0x00000000400013f8 strnlen = 0x400013f8 + 0x0000000040001404 strrchr = 0x40001404 + 0x0000000040001410 strsep = 0x40001410 + 0x000000004000141c strspn = 0x4000141c + 0x0000000040001428 strtok_r = 0x40001428 + 0x0000000040001434 strupr = 0x40001434 + 0x0000000040001440 longjmp = 0x40001440 + 0x000000004000144c setjmp = 0x4000144c + 0x0000000040001458 abs = 0x40001458 + 0x0000000040001464 div = 0x40001464 + 0x0000000040001470 labs = 0x40001470 + 0x000000004000147c ldiv = 0x4000147c + 0x0000000040001488 qsort = 0x40001488 + 0x0000000040001494 rand_r = 0x40001494 + 0x00000000400014a0 rand = 0x400014a0 + 0x00000000400014ac srand = 0x400014ac + 0x00000000400014b8 utoa = 0x400014b8 + 0x00000000400014c4 itoa = 0x400014c4 + 0x00000000400014d0 atoi = 0x400014d0 + 0x00000000400014dc atol = 0x400014dc + 0x00000000400014e8 strtol = 0x400014e8 + 0x00000000400014f4 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) + 0x0000000040001554 __swbuf = 0x40001554 + 0x000000003fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x000000003fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x0000000040000570 _rom_chip_id = 0x40000570 + 0x0000000040000574 _rom_eco_version = 0x40000574 + [!provide] PROVIDE (UART0 = 0x60000000) + 0x0000000060002000 PROVIDE (SPIMEM1 = 0x60002000) + 0x0000000060003000 PROVIDE (SPIMEM0 = 0x60003000) + 0x0000000060004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SDM = 0x60004f00) + 0x0000000060007000 PROVIDE (EFUSE = 0x60007000) + 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000) + 0x0000000060008400 PROVIDE (RTCIO = 0x60008400) + 0x0000000060008800 PROVIDE (SENS = 0x60008800) + [!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 (UHCI1 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + 0x0000000060017000 PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + 0x000000006001e000 PROVIDE (MCPWM0 = 0x6001e000) + 0x000000006002c000 PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x000000006001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x0000000060020000 PROVIDE (TIMERG1 = 0x60020000) + 0x0000000060023000 PROVIDE (SYSTIMER = 0x60023000) + 0x0000000060024000 PROVIDE (GPSPI2 = 0x60024000) + 0x0000000060025000 PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + [!provide] PROVIDE (GPSPI4 = 0x60037000) + 0x000000006003f000 PROVIDE (GDMA = 0x6003f000) + [!provide] PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + [!provide] PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + 0x0000000060038000 PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USB_DWC = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) + [!provide] PROVIDE (WORLD_CONTROLLER = 0x600d0000) +OUTPUT(wifi_station.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/wifi_station.elf.dir/project_elf_src_esp32s3.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_writeback_esp32s3.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(ModbusS.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(bdc_motor.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_efuse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(lldesc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .xtensa.info 0x0000000000000038 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x86 + .comment 0x0000000000000000 0x26 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o + 0x27 (size before relaxing) + .comment 0x0000000000000026 0x27 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(cache_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(tlsf.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(station_example_main.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(ModbusS.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(bdc_motor.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000026 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .comment 0x0000000000000026 0x3b E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 0x3c (size before relaxing) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + .comment 0x0000000000000061 0x27 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/soc/libsoc.a(lldesc.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x0000000000000061 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + .comment 0x0000000000000061 0x27 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .comment 0x0000000000000061 0x27 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x0000000000000061 0x25 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + 0x26 (size before relaxing) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x0000000000000086 0x27 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + .comment 0x0000000000000086 0x3c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000086 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + +.xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs9NVSHandleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + +.xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + +.xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZTVN3nvs9PartitionE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs9PartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.prop._ZTVN3nvs12NVSPartitionE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + +.xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZTISt9exception + 0x0000000000000000 0xc + .xt.prop._ZTISt9exception + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + +.xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc + .xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + +.xt.lit._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x0 + .xt.lit._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + +.xt.prop._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x30 + .xt.prop._ZNKSt9type_infoeqERKS_ + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x3c (size before relaxing) + +.xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + +.xt.prop._ZTVSt9bad_alloc + 0x0000000000000000 0xc + .xt.prop._ZTVSt9bad_alloc + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + +.xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + +.xt.lit._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x8 + .xt.lit._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.lit._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x8 + .xt.lit._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.lit._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x8 + .xt.lit._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x30 + .xt.prop._ZNK9__gnu_cxx24__concurrence_lock_error4whatEv + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x30 + .xt.prop._ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD5Ev + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0xc + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD5Ev + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x30 + .xt.prop._ZN9__gnu_cxx7__mutex4lockEv + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x30 + .xt.prop._ZN9__gnu_cxx7__mutex6unlockEv + 0x0000000000000000 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD2Ev + 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev + 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx24__concurrence_lock_errorD0Ev + 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev + 0x0000000000000000 0x24 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTIN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTIN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTVN9__gnu_cxx24__concurrence_lock_errorE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.xt.prop._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc + .xt.prop._ZTVN9__gnu_cxx26__concurrence_unlock_errorE + 0x0000000000000000 0xc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + +.debug_frame 0x0000000000000000 0x1af28 + .debug_frame 0x0000000000000000 0x58 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x0000000000000058 0x3e8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x0000000000000440 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x0000000000000528 0xd0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x00000000000005f8 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000000000007e8 0xa0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x0000000000000888 0x70 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000000000008f8 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x0000000000000938 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x0000000000000990 0xe8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x0000000000000a78 0xe8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x0000000000000b60 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x0000000000000c30 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x0000000000000c88 0xa0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_frame 0x0000000000000d28 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x0000000000000d68 0x58 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_frame 0x0000000000000dc0 0x100 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x0000000000000ec0 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x0000000000000f48 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x0000000000001030 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000001130 0x118 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x0000000000001248 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x0000000000001288 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_frame 0x0000000000001328 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x0000000000001380 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x0000000000001450 0xa0 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_frame 0x00000000000014f0 0x58 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x0000000000001548 0xb8 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x0000000000001600 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x00000000000016a0 0x328 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00000000000019c8 0xa0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x0000000000001a68 0x238 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x0000000000001ca0 0x268 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x0000000000001f08 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x0000000000001f90 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00000000000020a8 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x00000000000021c0 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x0000000000002410 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x0000000000002528 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x00000000000025f8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x0000000000002668 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x0000000000002768 0x328 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000000000002a90 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x0000000000002b78 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000002c30 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x0000000000002d30 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x0000000000002d58 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x0000000000002e70 0x2f8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_frame 0x0000000000003168 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_frame 0x00000000000031d8 0x1a8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x0000000000003380 0x58 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x00000000000033d8 0x3d0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00000000000037a8 0x868 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000004010 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x0000000000004080 0x70 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00000000000040f0 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x0000000000004178 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x00000000000041a0 0x58 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x00000000000041f8 0x190 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x0000000000004388 0x250 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x00000000000045d8 0x88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x0000000000004660 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x00000000000046a0 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x00000000000046e0 0xd0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00000000000047b0 0x148 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00000000000048f8 0xb8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00000000000049b0 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x0000000000004a68 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000000000004aa8 0x268 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x0000000000004d10 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x0000000000004d68 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x0000000000004dd8 0x118 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x0000000000004ef0 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x0000000000004fa8 0x520 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00000000000054c8 0x190 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_frame 0x0000000000005658 0x238 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_frame 0x0000000000005890 0x58 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_frame 0x00000000000058e8 0x88 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_frame 0x0000000000005970 0x88 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_frame 0x00000000000059f8 0xd0 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_frame 0x0000000000005ac8 0xa0 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_frame 0x0000000000005b68 0xd0 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_frame 0x0000000000005c38 0xe8 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_frame 0x0000000000005d20 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x0000000000005d90 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000005f08 0x238 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000006140 0x88 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000000061c8 0x4d8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x00000000000066a0 0x208 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x00000000000068a8 0xd0 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_frame 0x0000000000006978 0x148 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_frame 0x0000000000006ac0 0x118 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_frame 0x0000000000006bd8 0x130 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_frame 0x0000000000006d08 0x220 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_frame 0x0000000000006f28 0x58 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_frame 0x0000000000006f80 0x88 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_frame 0x0000000000007008 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000000000071c8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x00000000000071f0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x0000000000007290 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x0000000000007318 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x0000000000007370 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_frame 0x0000000000007488 0x1c0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000000000007648 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000000000007790 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000007830 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000007b28 0xb8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000007be0 0x1c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000007da0 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000007e28 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_frame 0x0000000000007ef8 0x190 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_frame 0x0000000000008088 0x2f8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x0000000000008380 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00000000000083f0 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x0000000000008448 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00000000000084d0 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00000000000085b8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x00000000000085f8 0x190 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_frame 0x0000000000008788 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_frame 0x00000000000087c8 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x00000000000088f8 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000000000008950 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000000000008a20 0x88 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x0000000000008aa8 0x238 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000000000008ce0 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x0000000000008d98 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_frame 0x0000000000008dd8 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x0000000000008e00 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x0000000000008e40 0x88 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x0000000000008ec8 0x1c0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000000000009088 0xa0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000000000009128 0x160 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_frame 0x0000000000009288 0x28 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_frame 0x00000000000092b0 0x88 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_frame 0x0000000000009338 0xd0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000000000009408 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x0000000000009460 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_frame 0x00000000000094e8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_frame 0x0000000000009528 0x118 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x0000000000009640 0xd0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x0000000000009710 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x0000000000009948 0x760 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x000000000000a0a8 0x238 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x000000000000a2e0 0x1d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x000000000000a4b8 0x118 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x000000000000a5d0 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x000000000000a6d0 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x000000000000a788 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x000000000000aa68 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x000000000000aad8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x000000000000ab00 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x000000000000ab58 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x000000000000abe0 0x3a0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x000000000000af80 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x000000000000b4b8 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x000000000000b5d0 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x000000000000b820 0x118 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x000000000000b938 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x000000000000bcf0 0x178 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x000000000000be68 0x100 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x000000000000bf68 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x000000000000c008 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x000000000000c030 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x000000000000c100 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x000000000000c158 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x000000000000c180 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x000000000000c2e0 0x2f8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x000000000000c5d8 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x000000000000c618 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_frame 0x000000000000c658 0x70 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_frame 0x000000000000c6c8 0x2c8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x000000000000c990 0xb8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x000000000000ca48 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x000000000000d100 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x000000000000d2a8 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x000000000000d348 0x238 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x000000000000d580 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x000000000000d698 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x000000000000d6c0 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x000000000000d730 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x000000000000d800 0x3b8 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x000000000000dbb8 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x000000000000dd18 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x000000000000dec0 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x000000000000df18 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x000000000000e0f0 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x000000000000e1d8 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x000000000000e500 0x388 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x000000000000e888 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x000000000000e8b0 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x000000000000e998 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x000000000000ea80 0xad8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x000000000000f558 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_frame 0x000000000000f5e0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_frame 0x000000000000f620 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_frame 0x000000000000f648 0x3b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x000000000000fa00 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x000000000000fa28 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x000000000000fa50 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x000000000000fa78 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x000000000000fb00 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x000000000000fbd0 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x000000000000fe20 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x000000000000ff08 0xa0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x000000000000ffa8 0x220 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x00000000000101c8 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x00000000000102e0 0x850 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x0000000000010b30 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0000000000010ff0 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_frame 0x00000000000112d0 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x00000000000115b0 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x0000000000011890 0x250 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_frame 0x0000000000011ae0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_frame 0x0000000000011c28 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x0000000000011e30 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x0000000000011e70 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x0000000000011ef8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x0000000000011f80 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x0000000000012050 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x0000000000012090 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x0000000000012100 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x0000000000012170 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x00000000000121b0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x0000000000012268 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x00000000000122d8 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x00000000000124b0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x00000000000125f8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x00000000000126f8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x00000000000127f8 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x00000000000128e0 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x0000000000012a10 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x0000000000012ba0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_frame 0x0000000000012c58 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_frame 0x0000000000012da0 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x0000000000012f60 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x0000000000013138 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x00000000000133e8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_frame 0x0000000000013428 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_frame 0x0000000000013480 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000013568 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_frame 0x0000000000013590 0x1d8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x0000000000013768 0x148 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x00000000000138b0 0x118 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x00000000000139c8 0x100 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x0000000000013ac8 0x2b0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x0000000000013d78 0xa0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x0000000000013e18 0xd0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x0000000000013ee8 0x40 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_frame 0x0000000000013f28 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x0000000000013f50 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x0000000000013f90 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x0000000000014030 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_frame 0x0000000000014280 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x0000000000014350 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x0000000000014420 0x148 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x0000000000014568 0x1f0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x0000000000014758 0x298 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x00000000000149f0 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x0000000000014ad8 0xa0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_frame 0x0000000000014b78 0x40 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_frame 0x0000000000014bb8 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x0000000000014dc0 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_frame 0x0000000000014ed8 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x0000000000014fc0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_frame 0x0000000000015018 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x0000000000015070 0x550 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_frame 0x00000000000155c0 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_frame 0x0000000000015708 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x0000000000015808 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x0000000000015db8 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x0000000000015e88 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_frame 0x0000000000015fa0 0x580 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x0000000000016520 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_frame 0x00000000000165f0 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x0000000000016828 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_frame 0x0000000000016850 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x00000000000168a8 0x5f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x0000000000016ea0 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x0000000000016f58 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x0000000000017070 0x418 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_frame 0x0000000000017488 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x00000000000175a0 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_frame 0x0000000000017808 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x0000000000017980 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x0000000000017b70 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x0000000000017d48 0x250 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x0000000000017f98 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x0000000000018140 0x760 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x00000000000188a0 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x0000000000018a60 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x0000000000018bd8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_frame 0x0000000000018c48 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x0000000000018dd8 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x0000000000018fb0 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x0000000000019260 0x400 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x0000000000019660 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_frame 0x00000000000196e8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x0000000000019710 0x28 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_frame 0x0000000000019738 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x0000000000019760 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_frame 0x0000000000019788 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_frame 0x00000000000197b0 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_frame 0x00000000000197f0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_frame 0x0000000000019818 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_frame 0x0000000000019840 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_frame 0x00000000000198c8 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_frame 0x0000000000019950 0xd0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_frame 0x0000000000019a20 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_frame 0x0000000000019a48 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_frame 0x0000000000019a70 0xa0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_frame 0x0000000000019b10 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_frame 0x0000000000019b98 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_frame 0x0000000000019bf0 0xd0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_frame 0x0000000000019cc0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_frame 0x0000000000019ce8 0x1c0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_frame 0x0000000000019ea8 0x130 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_frame 0x0000000000019fd8 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_frame 0x000000000001a048 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x000000000001a070 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_frame 0x000000000001a098 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x000000000001a0c0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x000000000001a0e8 0x268 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x000000000001a350 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_frame 0x000000000001a378 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_frame 0x000000000001a3a0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_frame 0x000000000001a3c8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_frame 0x000000000001a408 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_frame 0x000000000001a460 0x160 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_frame 0x000000000001a5c0 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_frame 0x000000000001a600 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_frame 0x000000000001a640 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_frame 0x000000000001a680 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_frame 0x000000000001a6a8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_frame 0x000000000001a6e8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_frame 0x000000000001a728 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_frame 0x000000000001a768 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_frame 0x000000000001a7a8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_frame 0x000000000001a7e8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_frame 0x000000000001a828 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_frame 0x000000000001a868 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_frame 0x000000000001a8a8 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_frame 0x000000000001a930 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_frame 0x000000000001a970 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_frame 0x000000000001a998 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_frame 0x000000000001aa08 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_frame 0x000000000001aa48 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_frame 0x000000000001aa88 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_frame 0x000000000001aab0 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_frame 0x000000000001aaf0 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_frame 0x000000000001ab18 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_frame 0x000000000001ab70 0x1d8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_frame 0x000000000001ad48 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_frame 0x000000000001ad70 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_frame 0x000000000001adc8 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_frame 0x000000000001ae50 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_frame 0x000000000001aea8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x000000000001aee8 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_info 0x0000000000000000 0x2649f8 + .debug_info 0x0000000000000000 0x365 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x0000000000000365 0x21d7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x000000000000253c 0x9a5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000000000002ee1 0x968 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x0000000000003849 0xe53 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x000000000000469c 0x15f1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x0000000000005c8d 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x0000000000005cb1 0x55d1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x000000000000b282 0x753 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x000000000000b9d5 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x000000000000b9f8 0x50a6 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x0000000000010a9e 0x4cf esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x0000000000010f6d 0x7714 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x0000000000018681 0x52f6 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x000000000001d977 0x45a esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x000000000001ddd1 0x497 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_info 0x000000000001e268 0x4d56 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x0000000000022fbe 0x27f esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_info 0x000000000002323d 0xd2b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x0000000000023f68 0x8de esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x0000000000024846 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x0000000000024869 0xfb5 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x000000000002581e 0x8b6 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x00000000000260d4 0x6156 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x000000000002c22a 0x16e esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x000000000002c398 0x551 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_info 0x000000000002c8e9 0x1b5b esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000000000002e444 0x1ff6 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000000000003043a 0x5ba esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_info 0x00000000000309f4 0x3cd3 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00000000000346c7 0xab2 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x0000000000035179 0x763 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00000000000358dc 0x1e3d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0000000000037719 0xd2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0000000000038445 0x1539 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x000000000003997e 0x6fc1 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x000000000004093f 0x8b4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00000000000411f3 0x350 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x0000000000041543 0x9da esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x0000000000041f1d 0x92d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x000000000004284a 0x22e5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0000000000044b2f 0xe68 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0000000000045997 0x452a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0000000000049ec1 0x1770 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x000000000004b631 0xb7c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x000000000004c1ad 0x2893 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x000000000004ea40 0x2e18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x0000000000051858 0x6e7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x0000000000051f3f 0x74c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x000000000005268b 0x1b9 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x0000000000052844 0x2348 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x0000000000054b8c 0x6c3e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_info 0x000000000005b7ca 0x238 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_info 0x000000000005ba02 0x16ca esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x000000000005d0cc 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x000000000005d0f0 0x24 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_info 0x000000000005d114 0x22 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_info 0x000000000005d136 0x18ec esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x000000000005ea22 0x3f01 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0000000000062923 0x95ee esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x000000000006bf11 0x8b4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x000000000006c7c5 0x89 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_info 0x000000000006c84e 0x23 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_info 0x000000000006c871 0xeb2 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x000000000006d723 0x2ec esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x000000000006da0f 0x2b6 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x000000000006dcc5 0x4d3 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x000000000006e198 0xe33 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x000000000006efcb 0x1102 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x00000000000700cd 0x347 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x0000000000070414 0xac1 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x0000000000070ed5 0x14f2 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x00000000000723c7 0xe8d esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x0000000000073254 0x11de esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x0000000000074432 0x641 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x0000000000074a73 0x3131 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x0000000000077ba4 0x3be esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x0000000000077f62 0x1f6f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x0000000000079ed1 0x27c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x000000000007a14d 0x25c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x000000000007a3a9 0x1dbd esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x000000000007c166 0x239 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x000000000007c39f 0x580b esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0000000000081baa 0x19ac esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_info 0x0000000000083556 0x2c0e esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_info 0x0000000000086164 0x26cc esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_info 0x0000000000088830 0x1030 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_info 0x0000000000089860 0x9e6 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_info 0x000000000008a246 0x2348 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_info 0x000000000008c58e 0x7da esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_info 0x000000000008cd68 0x6eb esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_info 0x000000000008d453 0x196a esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_info 0x000000000008edbd 0x590 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x000000000008f34d 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x000000000008f370 0x1c8c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x0000000000090ffc 0xf4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000091f46 0x14bc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000093402 0x996 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000093d98 0x5885 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x000000000009961d 0x55cf esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x000000000009ebec 0x3dfc esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_info 0x00000000000a29e8 0x4bb1 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_info 0x00000000000a7599 0x4e28 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_info 0x00000000000ac3c1 0x537d esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_info 0x00000000000b173e 0x4ad0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_info 0x00000000000b620e 0x3185 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_info 0x00000000000b9393 0xc89 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_info 0x00000000000ba01c 0x443c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00000000000be458 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00000000000be4f7 0xb6e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x00000000000bf065 0x451 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00000000000bf4b6 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x00000000000bf693 0x55f esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_info 0x00000000000bfbf2 0x153d esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00000000000c112f 0x15f5 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00000000000c2724 0x3b7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00000000000c2adb 0x4566 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00000000000c7041 0x68b7 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000000cd8f8 0x11e9 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000000ceae1 0xa11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000000cf4f2 0x332 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_info 0x00000000000cf824 0xb1b esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_info 0x00000000000d033f 0xc85 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000000d0fc4 0x25de esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00000000000d35a2 0x102e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x00000000000d45d0 0xf1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x00000000000d54ef 0x10cd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00000000000d65bc 0x14c4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x00000000000d7a80 0xf0a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_info 0x00000000000d898a 0x18c3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_info 0x00000000000da24d 0xf0a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_info 0x00000000000db157 0x5467 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00000000000e05be 0x376 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x00000000000e0934 0x9fa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x00000000000e132e 0xbbc esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x00000000000e1eea 0x2592 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x00000000000e447c 0x5449 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x00000000000e98c5 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x00000000000e98e8 0xb0 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_info 0x00000000000e9998 0x257 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x00000000000e9bef 0xe9b esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x00000000000eaa8a 0x4ef5 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x00000000000ef97f 0x6396 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x00000000000f5d15 0x4af esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x00000000000f61c4 0x19e3 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_info 0x00000000000f7ba7 0x86d esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_info 0x00000000000f8414 0x26d1 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_info 0x00000000000faae5 0x5870 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x0000000000100355 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x000000000010042d 0x56c esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .debug_info 0x0000000000100999 0x4d8 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .debug_info 0x0000000000100e71 0x1bd esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x000000000010102e 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x000000000010116e 0x227f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_info 0x00000000001033ed 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_info 0x00000000001034ca 0x13d7 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x00000000001048a1 0x6bf esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x0000000000104f60 0x2e4b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x0000000000107dab 0xd16d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x0000000000114f18 0xc923 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x000000000012183b 0x72aa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x0000000000128ae5 0x158d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x000000000012a072 0x954a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x00000000001335bc 0x4179 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x0000000000137735 0x8143 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x000000000013f878 0x7baa esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x0000000000147422 0xca6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x00000000001480c8 0x2e21 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x000000000014aee9 0x383 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x000000000014b26c 0x28b4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x000000000014db20 0x387d esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x000000000015139d 0x2c24 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x0000000000153fc1 0x348f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x0000000000157450 0x10f3 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x0000000000158543 0x39f1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x000000000015bf34 0x1de4 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x000000000015dd18 0x1780 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x000000000015f498 0xa8d esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x000000000015ff25 0xaf3 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x0000000000160a18 0x19fb esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x0000000000162413 0x5c7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x00000000001629da 0xb5d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x0000000000163537 0x154c esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x0000000000164a83 0x3188 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x0000000000167c0b 0xbdb esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x00000000001687e6 0x63c esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_info 0x0000000000168e22 0xb25 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_info 0x0000000000169947 0x15b4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x000000000016aefb 0x16c3 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x000000000016c5be 0x7c01 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x00000000001741bf 0x1655 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x0000000000175814 0x445 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x0000000000175c59 0x1f00 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x0000000000177b59 0xb08 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x0000000000178661 0x168 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x00000000001787c9 0xb9a esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x0000000000179363 0x7ba esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x0000000000179b1d 0x2bdb esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x000000000017c6f8 0x15ea esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x000000000017dce2 0x1b88 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x000000000017f86a 0xff0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x000000000018085a 0x150d esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x0000000000181d67 0x142c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x0000000000183193 0x2bb0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x0000000000185d43 0x4673 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x000000000018a3b6 0x101 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x000000000018a4b7 0x80f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x000000000018acc6 0x879 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x000000000018b53f 0x7b41 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x0000000000193080 0xd2b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x0000000000193dab 0x538 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_info 0x00000000001942e3 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_info 0x0000000000194653 0x29b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x0000000000197003 0x232 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x0000000000197235 0x378 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x00000000001975ad 0x330 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x00000000001978dd 0x36e esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x0000000000197c4b 0xfad esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x0000000000198bf8 0x1204 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x0000000000199dfc 0xcf7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x000000000019aaf3 0x1c33 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x000000000019c726 0x1d30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x000000000019e456 0x9b0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x000000000019ee06 0x356e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x00000000001a2374 0x47f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x00000000001a6b6b 0x1d27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_info 0x00000000001a8892 0x23ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x00000000001aac3f 0x2107 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x00000000001acd46 0x1681 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_info 0x00000000001ae3c7 0x1cef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_info 0x00000000001b00b6 0x2176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x00000000001b222c 0x4d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x00000000001b26fe 0x15c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x00000000001b3cc5 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x00000000001b3f0a 0x387 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x00000000001b4291 0x687 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x00000000001b4918 0x804 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x00000000001b511c 0x829 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x00000000001b5945 0x15b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x00000000001b5aa0 0x77b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00000000001b621b 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x00000000001b64a3 0x2538 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x00000000001b89db 0x1843 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x00000000001ba21e 0xe58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x00000000001bb076 0x88a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00000000001bb900 0x7db esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x00000000001bc0db 0x9bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x00000000001bca9a 0x1419 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x00000000001bdeb3 0x3e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_info 0x00000000001be294 0x1e03 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_info 0x00000000001c0097 0xd97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x00000000001c0e2e 0x1da2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x00000000001c2bd0 0x14b7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x00000000001c4087 0x2a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_info 0x00000000001c432f 0x1e9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_info 0x00000000001c61cb 0xd39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x00000000001c6f04 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_info 0x00000000001c716e 0x2393 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x00000000001c9501 0xa5c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000001c9f5d 0x1a4d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x00000000001cb9aa 0x12ff esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x00000000001ccca9 0x2504 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x00000000001cf1ad 0x7d6 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x00000000001cf983 0x7c9 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x00000000001d014c 0x2bf esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_info 0x00000000001d040b 0xe7 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x00000000001d04f2 0xb7 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_info 0x00000000001d05a9 0x31d esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x00000000001d08c6 0x974 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x00000000001d123a 0x59d0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_info 0x00000000001d6c0a 0x23b esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x00000000001d6e45 0x7d1 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x00000000001d7616 0x750 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x00000000001d7d66 0x1752 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x00000000001d94b8 0x25dc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x00000000001dba94 0xc9a esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x00000000001dc72e 0x3e0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x00000000001dcb0e 0x883 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x00000000001dd391 0xb4a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_info 0x00000000001ddedb 0x40c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_info 0x00000000001de2e7 0x4605 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x00000000001e28ec 0x1649 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_info 0x00000000001e3f35 0x13d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x00000000001e530d 0xeb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_info 0x00000000001e61be 0x1be5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x00000000001e7da3 0x43de esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_info 0x00000000001ec181 0x1da7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_info 0x00000000001edf28 0xdd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x00000000001eed01 0x5848 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x00000000001f4549 0x17e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x00000000001f5d2b 0x1236 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_info 0x00000000001f6f61 0x7afd esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x00000000001fea5e 0xe6d esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_info 0x00000000001ff8cb 0x1981 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x000000000020124c 0x3fa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_info 0x0000000000201646 0x6f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x0000000000201d3a 0x6fc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x0000000000208d03 0x197d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x000000000020a680 0xde0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x000000000020b460 0x4300 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_info 0x000000000020f760 0x10d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x0000000000210830 0x11cb esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_info 0x00000000002119fb 0x1989 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x0000000000213384 0x10ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x0000000000214471 0x2147 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x00000000002165b8 0x16c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x0000000000217c80 0x213a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x0000000000219dba 0x84e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x00000000002222a2 0x64ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x000000000022875c 0x1c19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x000000000022a375 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_info 0x000000000022a5e9 0x1e09 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x000000000022c3f2 0x15fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x000000000022d9f0 0x20d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x000000000022fac3 0x5236 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x0000000000234cf9 0x115a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_info 0x0000000000235e53 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x0000000000235f6d 0x1745 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_info 0x00000000002376b2 0x446 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_info 0x0000000000237af8 0x846 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x000000000023833e 0x84 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_info 0x00000000002383c2 0x9d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_info 0x000000000023845f 0x142 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_info 0x00000000002385a1 0x11d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_info 0x00000000002386be 0x5a9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_info 0x0000000000238c67 0xdfb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_info 0x0000000000239a62 0x1013 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_info 0x000000000023aa75 0xad0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_info 0x000000000023b545 0x3a2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_info 0x000000000023b8e7 0xa3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_info 0x000000000023b98a 0x88e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_info 0x000000000023c218 0x8b6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_info 0x000000000023cace 0x9d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_info 0x000000000023d4a3 0x559 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_info 0x000000000023d9fc 0x27a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_info 0x000000000023dc76 0xa17 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_info 0x000000000023e68d 0x9d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_info 0x000000000023e72a 0x2552 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_info 0x0000000000240c7c 0x960 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_info 0x00000000002415dc 0xa18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_info 0x0000000000241ff4 0x6bb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000002426af 0x722 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x0000000000242dd1 0x681 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x0000000000243452 0x6ef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x0000000000243b41 0x1a30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x0000000000245571 0x20e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_info 0x000000000024577f 0x20e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_info 0x000000000024598d 0xb9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_info 0x0000000000245a46 0x42 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_info 0x0000000000245a88 0x834 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_info 0x00000000002462bc 0xb0a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_info 0x0000000000246dc6 0xbe3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_info 0x00000000002479a9 0x1148 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_info 0x0000000000248af1 0xb93 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_info 0x0000000000249684 0x98f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_info 0x000000000024a013 0xfa4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_info 0x000000000024afb7 0xc63 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_info 0x000000000024bc1a 0x958 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_info 0x000000000024c572 0xbdc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_info 0x000000000024d14e 0x9ba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_info 0x000000000024db08 0xb63 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_info 0x000000000024e66b 0x9fa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_info 0x000000000024f065 0xabc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_info 0x000000000024fb21 0x9ef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_info 0x0000000000250510 0x9b6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_info 0x0000000000250ec6 0xb40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_info 0x0000000000251a06 0x285c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_info 0x0000000000254262 0x8e5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_info 0x0000000000254b47 0x2c15 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_info 0x000000000025775c 0x992 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_info 0x00000000002580ee 0x9b1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_info 0x0000000000258a9f 0x98f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_info 0x000000000025942e 0x1924 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_info 0x000000000025ad52 0x882 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_info 0x000000000025b5d4 0xbef e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_info 0x000000000025c1c3 0x1e52 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_info 0x000000000025e015 0x1dc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_info 0x000000000025e1f1 0x2047 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_info 0x0000000000260238 0x2318 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_info 0x0000000000262550 0xd0c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_info 0x000000000026325c 0xbe9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_info 0x0000000000263e45 0xbb3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_abbrev 0x0000000000000000 0x4973c + .debug_abbrev 0x0000000000000000 0x1c1 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000000000001c1 0x51b esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x00000000000006dc 0x31d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x00000000000009f9 0x247 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x0000000000000c40 0x2dd esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x0000000000000f1d 0x44a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x0000000000001367 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x000000000000137b 0x43c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x00000000000017b7 0x1d3 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x000000000000198a 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000000000000199e 0x2f8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000001c96 0x281 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x0000000000001f17 0x4f2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x0000000000002409 0x44f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x0000000000002858 0x215 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x0000000000002a6d 0x1f2 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_abbrev 0x0000000000002c5f 0x315 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x0000000000002f74 0x180 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_abbrev 0x00000000000030f4 0x2c6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x00000000000033ba 0x270 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x000000000000362a 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x000000000000363e 0x359 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x0000000000003997 0x27a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000000000003c11 0x51e esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x000000000000412f 0xf4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x0000000000004223 0x210 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_abbrev 0x0000000000004433 0x1f7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000000000000462a 0x35d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x0000000000004987 0x1f4 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_abbrev 0x0000000000004b7b 0x221 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x0000000000004d9c 0x438 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00000000000051d4 0x2a6 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x000000000000547a 0x447 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x00000000000058c1 0x36a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000000000005c2b 0x3c2 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000005fed 0x484 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x0000000000006471 0x2ad esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x000000000000671e 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x000000000000680b 0x2f9 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x0000000000006b04 0x2e3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x0000000000006de7 0x546 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x000000000000732d 0x294 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x00000000000075c1 0x3a8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x0000000000007969 0x390 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x0000000000007cf9 0x2cf esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000000000007fc8 0x557 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x000000000000851f 0x492 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x00000000000089b1 0x264 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000000000008c15 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000000000008e31 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000000000008f21 0x37a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x000000000000929b 0x536 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_abbrev 0x00000000000097d1 0xd9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_abbrev 0x00000000000098aa 0x5bd esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000000000009e67 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000000000009e7b 0x14 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_abbrev 0x0000000000009e8f 0x12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_abbrev 0x0000000000009ea1 0x3d8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x000000000000a279 0x438 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x000000000000a6b1 0x5ae esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x000000000000ac5f 0x32b esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x000000000000af8a 0x40 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_abbrev 0x000000000000afca 0x14 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_abbrev 0x000000000000afde 0x2d1 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x000000000000b2af 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x000000000000b3b5 0x1ab esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x000000000000b560 0x231 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x000000000000b791 0x2be esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x000000000000ba4f 0x3c4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x000000000000be13 0x1bd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x000000000000bfd0 0x251 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x000000000000c221 0x2e6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x000000000000c507 0x308 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000000000000c80f 0x38d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x000000000000cb9c 0x1d7 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x000000000000cd73 0x63a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x000000000000d3ad 0x1d6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x000000000000d583 0x538 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x000000000000dabb 0x189 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x000000000000dc44 0x171 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x000000000000ddb5 0x4a6 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x000000000000e25b 0x10b esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x000000000000e366 0x582 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x000000000000e8e8 0x2c4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_abbrev 0x000000000000ebac 0x567 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_abbrev 0x000000000000f113 0x3a3 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_abbrev 0x000000000000f4b6 0x2fb esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_abbrev 0x000000000000f7b1 0x229 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_abbrev 0x000000000000f9da 0x320 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_abbrev 0x000000000000fcfa 0x23b esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_abbrev 0x000000000000ff35 0x177 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_abbrev 0x00000000000100ac 0x24c esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_abbrev 0x00000000000102f8 0x25a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x0000000000010552 0x14 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x0000000000010566 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x000000000001065b 0x2be esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000010919 0x3a1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000010cba 0x245 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000010eff 0x5b2 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x00000000000114b1 0x3ad esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x000000000001185e 0x4b7 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_abbrev 0x0000000000011d15 0x4d6 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_abbrev 0x00000000000121eb 0x540 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_abbrev 0x000000000001272b 0x5de esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_abbrev 0x0000000000012d09 0x5c3 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_abbrev 0x00000000000132cc 0x3f3 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_abbrev 0x00000000000136bf 0x20d esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_abbrev 0x00000000000138cc 0x548 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000000000013e14 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x0000000000013e76 0x287 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00000000000140fd 0x1df esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x00000000000142dc 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x0000000000014406 0x25d esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_abbrev 0x0000000000014663 0x485 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x0000000000014ae8 0x473 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x0000000000014f5b 0x223 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x000000000001517e 0x59e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x000000000001571c 0x597 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0000000000015cb3 0x3cd esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000000000016080 0x25d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x00000000000162dd 0x1d7 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_abbrev 0x00000000000164b4 0x375 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_abbrev 0x0000000000016829 0x142 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000000000001696b 0x493 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x0000000000016dfe 0x254 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000000000017052 0x20e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0000000000017260 0x268 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00000000000174c8 0x2b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000000000001777e 0x1d8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x0000000000017956 0x376 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_abbrev 0x0000000000017ccc 0x1d8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_abbrev 0x0000000000017ea4 0x465 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x0000000000018309 0x183 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x000000000001848c 0x2c4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000018750 0x360 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x0000000000018ab0 0x4aa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x0000000000018f5a 0x33b esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x0000000000019295 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x00000000000192a9 0x55 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_abbrev 0x00000000000192fe 0x12b esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x0000000000019429 0x1e5 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x000000000001960e 0x41f esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000019a2d 0x4a7 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000000000019ed4 0x20f esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x000000000001a0e3 0x37a esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_abbrev 0x000000000001a45d 0x17d esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_abbrev 0x000000000001a5da 0x2ec esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_abbrev 0x000000000001a8c6 0x451 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x000000000001ad17 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x000000000001ad87 0xac esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .debug_abbrev 0x000000000001ae33 0xbd esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .debug_abbrev 0x000000000001aef0 0xa1 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x000000000001af91 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x000000000001b049 0x3a5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_abbrev 0x000000000001b3ee 0x9b esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_abbrev 0x000000000001b489 0x3dd esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x000000000001b866 0x15b esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x000000000001b9c1 0x485 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x000000000001be46 0xf5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x000000000001cda4 0xf61 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x000000000001dd05 0xc03 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x000000000001e908 0x512 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x000000000001ee1a 0xe44 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x000000000001fc5e 0x8c2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x0000000000020520 0xc97 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x00000000000211b7 0xd8e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x0000000000021f45 0x3e7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x000000000002232c 0x61a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x0000000000022946 0x213 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x0000000000022b59 0x3cb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x0000000000022f24 0x441 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x0000000000023365 0x3d1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x0000000000023736 0x3ef esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x0000000000023b25 0x3b5 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x0000000000023eda 0x43c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x0000000000024316 0x39a esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x00000000000246b0 0x3a7 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x0000000000024a57 0x308 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x0000000000024d5f 0x26d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x0000000000024fcc 0x370 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x000000000002533c 0x229 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x0000000000025565 0x260 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x00000000000257c5 0x3cf esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x0000000000025b94 0x410 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x0000000000025fa4 0x2fc esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x00000000000262a0 0x211 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_abbrev 0x00000000000264b1 0x265 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_abbrev 0x0000000000026716 0x37f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x0000000000026a95 0x2b0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x0000000000026d45 0x3f7 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x000000000002713c 0x41d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x0000000000027559 0x17c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x00000000000276d5 0x3b8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x0000000000027a8d 0x25f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0000000000027cec 0xbb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x0000000000027da7 0x247 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x0000000000027fee 0x2e1 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x00000000000282cf 0x43c esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x000000000002870b 0x3ce esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x0000000000028ad9 0x3fb esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0000000000028ed4 0x320 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x00000000000291f4 0x402 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x00000000000295f6 0x301 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x00000000000298f7 0x43e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x0000000000029d35 0x4be esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x000000000002a1f3 0x93 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x000000000002a286 0x242 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x000000000002a4c8 0x2a1 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x000000000002a769 0x61b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x000000000002ad84 0x1c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x000000000002af4b 0x1e1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_abbrev 0x000000000002b12c 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_abbrev 0x000000000002b2bc 0x435 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x000000000002b6f1 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x000000000002b7fd 0x16b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x000000000002b968 0x149 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x000000000002bab1 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x000000000002bc57 0x2fe esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x000000000002bf55 0x32d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x000000000002c282 0x201 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x000000000002c483 0x302 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x000000000002c785 0x47c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x000000000002cc01 0x284 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x000000000002ce85 0x58e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x000000000002d413 0x473 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x000000000002d886 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_abbrev 0x000000000002dbaa 0x4b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x000000000002e05c 0x38a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x000000000002e3e6 0x337 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_abbrev 0x000000000002e71d 0x43e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_abbrev 0x000000000002eb5b 0x3b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x000000000002ef0c 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x000000000002f094 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x000000000002f470 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x000000000002f642 0x14b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x000000000002f78d 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x000000000002f942 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x000000000002fb24 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x000000000002fd06 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x000000000002fdfe 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x000000000003001a 0x169 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x0000000000030183 0x500 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x0000000000030683 0x3f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x0000000000030a79 0x2af esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x0000000000030d28 0x22e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0000000000030f56 0x212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000031168 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x0000000000031412 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x000000000003179d 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_abbrev 0x00000000000318eb 0x2f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_abbrev 0x0000000000031be0 0x2d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x0000000000031eb8 0x404 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x00000000000322bc 0x254 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x0000000000032510 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_abbrev 0x00000000000326b6 0x3f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_abbrev 0x0000000000032aac 0x3bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000032e6b 0x177 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_abbrev 0x0000000000032fe2 0x443 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0000000000033425 0x2ad esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x00000000000336d2 0x379 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x0000000000033a4b 0x2a4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x0000000000033cef 0x3f9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x00000000000340e8 0x220 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x0000000000034308 0x26d esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x0000000000034575 0x19f esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_abbrev 0x0000000000034714 0x8c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x00000000000347a0 0x90 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_abbrev 0x0000000000034830 0x1e1 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x0000000000034a11 0x212 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x0000000000034c23 0x5ca esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_abbrev 0x00000000000351ed 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x00000000000352dd 0x225 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x0000000000035502 0x1bf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x00000000000356c1 0x3e0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x0000000000035aa1 0x43d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x0000000000035ede 0x241 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x000000000003611f 0xec esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x000000000003620b 0x1ba esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x00000000000363c5 0x2be esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_abbrev 0x0000000000036683 0x1c0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_abbrev 0x0000000000036843 0x507 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x0000000000036d4a 0x386 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_abbrev 0x00000000000370d0 0x36d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x000000000003743d 0x243 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_abbrev 0x0000000000037680 0x347 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x00000000000379c7 0x451 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_abbrev 0x0000000000037e18 0x4a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_abbrev 0x00000000000382bb 0x2d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x000000000003858f 0x60e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x0000000000038b9d 0x3e4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x0000000000038f81 0x38a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_abbrev 0x000000000003930b 0x50e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x0000000000039819 0x26f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_abbrev 0x0000000000039a88 0x326 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x0000000000039dae 0x17c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_abbrev 0x0000000000039f2a 0x262 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x000000000003a18c 0x61e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x000000000003a7aa 0x3c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x000000000003ab72 0x33a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x000000000003aeac 0x6df esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_abbrev 0x000000000003b58b 0x2cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x000000000003b856 0x2d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_abbrev 0x000000000003bb29 0x477 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x000000000003bfa0 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x000000000003c220 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x000000000003c66a 0x350 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x000000000003c9ba 0x38a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x000000000003cd44 0x3f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x000000000003d13c 0x3a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x000000000003d4e5 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x000000000003d8b1 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_abbrev 0x000000000003d9bb 0x42b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x000000000003dde6 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x000000000003e1d2 0x3eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x000000000003e5bd 0x401 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x000000000003e9be 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x000000000003ebfe 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x000000000003ecce 0x1de esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_abbrev 0x000000000003eeac 0xac esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_abbrev 0x000000000003ef58 0x1ef esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x000000000003f147 0x8b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_abbrev 0x000000000003f1d2 0xa5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_abbrev 0x000000000003f277 0x157 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_abbrev 0x000000000003f3ce 0x124 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_abbrev 0x000000000003f4f2 0x190 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_abbrev 0x000000000003f682 0x4d6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_abbrev 0x000000000003fb58 0x53c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_abbrev 0x0000000000040094 0x42d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00000000000404c1 0x265 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x0000000000040726 0xa3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_abbrev 0x00000000000407c9 0x323 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x0000000000040aec 0x30e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_abbrev 0x0000000000040dfa 0x459 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0000000000041253 0x307 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_abbrev 0x000000000004155a 0x1f8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_abbrev 0x0000000000041752 0x44e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_abbrev 0x0000000000041ba0 0xa5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_abbrev 0x0000000000041c45 0x9ed e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_abbrev 0x0000000000042632 0x411 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_abbrev 0x0000000000042a43 0x4cd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_abbrev 0x0000000000042f10 0x1ab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000000430bb 0x1a6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000043261 0x18f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000000433f0 0x19e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x000000000004358e 0x42d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x00000000000439bb 0x123 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_abbrev 0x0000000000043ade 0x123 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_abbrev 0x0000000000043c01 0x62 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_abbrev 0x0000000000043c63 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000043c9b 0x196 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_abbrev 0x0000000000043e31 0x2c6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_abbrev 0x00000000000440f7 0x310 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_abbrev 0x0000000000044407 0x40b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_abbrev 0x0000000000044812 0x2b9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_abbrev 0x0000000000044acb 0x258 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_abbrev 0x0000000000044d23 0x322 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_abbrev 0x0000000000045045 0x243 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000045288 0x1c7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_abbrev 0x000000000004544f 0x286 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_abbrev 0x00000000000456d5 0x274 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_abbrev 0x0000000000045949 0x2aa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_abbrev 0x0000000000045bf3 0x247 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_abbrev 0x0000000000045e3a 0x25a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_abbrev 0x0000000000046094 0x27a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_abbrev 0x000000000004630e 0x256 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_abbrev 0x0000000000046564 0x231 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_abbrev 0x0000000000046795 0x47d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x0000000000046c12 0x1e1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x0000000000046df3 0x4f1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x00000000000472e4 0x25c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_abbrev 0x0000000000047540 0x260 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_abbrev 0x00000000000477a0 0x225 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_abbrev 0x00000000000479c5 0x35a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_abbrev 0x0000000000047d1f 0x1d8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_abbrev 0x0000000000047ef7 0x28a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_abbrev 0x0000000000048181 0x442 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_abbrev 0x00000000000485c3 0x157 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x000000000004871a 0x3fd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x0000000000048b17 0x491 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x0000000000048fa8 0x2f9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_abbrev 0x00000000000492a1 0x25a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x00000000000494fb 0x241 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_loc 0x0000000000000000 0xc0e5f + .debug_loc 0x0000000000000000 0x196 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000000000000196 0x117f esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x0000000000001315 0x504 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0000000000001819 0x38c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x0000000000001ba5 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x0000000000001d42 0x364 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00000000000020a6 0x230 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00000000000022d6 0x199 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x000000000000246f 0x3f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x00000000000024ae 0x185 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x0000000000002633 0x131 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x0000000000002764 0x29d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x0000000000002a01 0x3f esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_loc 0x0000000000002a40 0x193 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_loc 0x0000000000002bd3 0xe7 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x0000000000002cba 0x34 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_loc 0x0000000000002cee 0x358 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x0000000000003046 0x4aa esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x00000000000034f0 0x3d2 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x00000000000038c2 0x3fb esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x0000000000003cbd 0x24d esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x0000000000003f0a 0x42c esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_loc 0x0000000000004336 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x000000000000437b 0x16a esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00000000000044e5 0x365 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_loc 0x000000000000484a 0x4a esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x0000000000004894 0x4ab esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x0000000000004d3f 0xdc esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x0000000000004e1b 0xec3 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000000000005cde 0x812 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x00000000000064f0 0x7d4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x0000000000006cc4 0x7801 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x000000000000e4c5 0x33b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x000000000000e800 0x5c7 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x000000000000edc7 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x000000000000ef2b 0x166e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0000000000010599 0x102d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x00000000000115c6 0x3ba esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x0000000000011980 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x0000000000011bc2 0x2b3 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0000000000011e75 0xb47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x00000000000129bc 0x5ca esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x0000000000012f86 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x000000000001301f 0x3af esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00000000000133ce 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0000000000013498 0x93c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_loc 0x000000000001c860 0x29e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_loc 0x000000000001cafe 0x7cd esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x000000000001d2cb 0x26d esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x000000000001d538 0x2262 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x000000000001f79a 0x414d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x00000000000238e7 0xd2 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x00000000000239b9 0x1c0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x0000000000023b79 0xdd esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x0000000000023c56 0x8a esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x0000000000023ce0 0x1da esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x0000000000023eba 0x235 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x00000000000240ef 0x46d esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x000000000002455c 0x94 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x00000000000245f0 0x1be esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x00000000000247ae 0x287 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x0000000000024a35 0x576 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x0000000000024fab 0x94 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x000000000002503f 0x316 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0000000000025355 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x0000000000025439 0xe4f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x0000000000026288 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x000000000002629d 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000000262b7 0x2bf esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x0000000000026576 0x3a93 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x000000000002a009 0x310 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_loc 0x000000000002a319 0x608 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_loc 0x000000000002a921 0x2ac esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_loc 0x000000000002abcd 0x224 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_loc 0x000000000002adf1 0x86a esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_loc 0x000000000002b65b 0x72d esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_loc 0x000000000002bd88 0x378 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_loc 0x000000000002c100 0x210 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_loc 0x000000000002c310 0x87b esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_loc 0x000000000002cb8b 0x223 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x000000000002cdae 0x54e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x000000000002d2fc 0xc17 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000000000002df13 0x38a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000000000002e29d 0x2923 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0000000000030bc0 0x829 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x00000000000313e9 0xcab esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_loc 0x0000000000032094 0x1e58 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_loc 0x0000000000033eec 0x1e7c esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_loc 0x0000000000035d68 0x1ef1 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_loc 0x0000000000037c59 0x25d6 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_loc 0x000000000003a22f 0x30a esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_loc 0x000000000003a539 0xb9 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_loc 0x000000000003a5f2 0x911 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x000000000003af03 0x224 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x000000000003b127 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x000000000003b1a1 0x62 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_loc 0x000000000003b203 0x43f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x000000000003b642 0x114b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x000000000003c78d 0x131 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x000000000003c8be 0x178b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x000000000003e049 0x563 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x000000000003e5ac 0x536 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x000000000003eae2 0x103 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x000000000003ebe5 0x1b0 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_loc 0x000000000003ed95 0x3ac esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_loc 0x000000000003f141 0x1226 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0000000000040367 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00000000000404e3 0x105 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x00000000000405e8 0x222 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x000000000004080a 0x6d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x0000000000040ede 0x11d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x0000000000040ffb 0x7cf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_loc 0x00000000000417ca 0x11d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_loc 0x00000000000418e7 0x535 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x0000000000041e1c 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0000000000041e32 0x1a8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0000000000041fda 0x1e6 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x00000000000421c0 0xe48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x0000000000043008 0x346 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x000000000004334e 0x11f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x000000000004346d 0x240 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x00000000000436ad 0x384 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x0000000000043a31 0x1198 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0000000000044bc9 0x179 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0000000000044d42 0xac3 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_loc 0x0000000000045805 0x757 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_loc 0x0000000000045f5c 0xc4d esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x0000000000046ba9 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x0000000000046c43 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_loc 0x0000000000046d93 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_loc 0x0000000000046deb 0x75c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x0000000000047547 0x1b6 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x00000000000476fd 0x1947 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x0000000000049044 0x2460 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x000000000004b4a4 0x31fd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x000000000004e6a1 0x4d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x000000000004eb71 0x1e2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x000000000004ed53 0x10b5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x000000000004fe08 0x7e6 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x00000000000505ee 0x3d40 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x000000000005432e 0x156a esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x0000000000055898 0xb3 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x000000000005594b 0x159 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x0000000000055aa4 0x74 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x0000000000055b18 0x197c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x0000000000057494 0x193f esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x0000000000058dd3 0xb4e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x0000000000059921 0x186d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x000000000005b18e 0x366 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x000000000005b4f4 0x191f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x000000000005ce13 0x1175 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x000000000005df88 0x88d esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x000000000005e815 0x60f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x000000000005ee24 0x2f8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x000000000005f11c 0x1012 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x000000000006012e 0x725 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x0000000000060853 0x20d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x0000000000060a60 0x70a esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x000000000006116a 0x218c esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x00000000000632f6 0x149 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x000000000006343f 0x108 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_loc 0x0000000000063547 0x269 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_loc 0x00000000000637b0 0x731 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x0000000000063ee1 0xae esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x0000000000063f8f 0x4ede esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x0000000000068e6d 0x309 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x0000000000069176 0x47d esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x00000000000695f3 0x1a71 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x000000000006b064 0x8f3 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x000000000006b957 0x154 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x000000000006baab 0x173 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x000000000006bc1e 0x10a8 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x000000000006ccc6 0x975 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x000000000006d63b 0xf92 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x000000000006e5cd 0x22d esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x000000000006e7fa 0x7cd esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x000000000006efc7 0x2a1 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x000000000006f268 0x1224 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x000000000007048c 0x14ec esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x0000000000071978 0x25 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x000000000007199d 0x1fe esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x0000000000071b9b 0x362 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x0000000000071efd 0x4276 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x0000000000076173 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_loc 0x00000000000761e2 0x2df esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_loc 0x00000000000764c1 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_loc 0x0000000000076618 0xe58 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x0000000000077470 0x215 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x0000000000077685 0x1da esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x000000000007785f 0x222 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x0000000000077a81 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x0000000000077ae0 0xd25 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x0000000000078805 0x11f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00000000000799fd 0x6ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x000000000007a0aa 0x8f esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x000000000007a139 0x673 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x000000000007a7ac 0x34b esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x000000000007aaf7 0x7a7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x000000000007b29e 0x284f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x000000000007daed 0x1cc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_loc 0x000000000007f7b3 0x17d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x0000000000080f88 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x00000000000813a8 0xe38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_loc 0x00000000000821e0 0xea2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_loc 0x0000000000083082 0xe97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x0000000000083f19 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x0000000000083fe4 0x755 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x0000000000084739 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x00000000000847a9 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_loc 0x000000000008483b 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x000000000008498c 0x209 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x0000000000084b95 0x209 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x0000000000084d9e 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x0000000000084dc3 0x4d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x0000000000085293 0xed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x0000000000085380 0x139e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x000000000008671e 0xa30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x000000000008714e 0xbc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x0000000000087d16 0x351 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x0000000000088067 0x361 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x00000000000883c8 0x416 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x00000000000887de 0x909 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x00000000000890e7 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_loc 0x000000000008917b 0x1252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_loc 0x000000000008a3cd 0x8db esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x000000000008aca8 0xc97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x000000000008b93f 0x1122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x000000000008ca61 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_loc 0x000000000008caab 0x1de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_loc 0x000000000008cc89 0x978 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x000000000008d601 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_loc 0x000000000008d626 0x1a6c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x000000000008f092 0x18f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x000000000008f221 0x7b2 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x000000000008f9d3 0x5d3 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x000000000008ffa6 0x11f9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x000000000009119f 0x795 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0000000000091934 0x267 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x0000000000091b9b 0x15d esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_loc 0x0000000000091cf8 0x23 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x0000000000091d1b 0xd3 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x0000000000091dee 0x374 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x0000000000092162 0x2ade esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_loc 0x0000000000094c40 0x10e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x0000000000094d4e 0x317 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_loc 0x0000000000095065 0x3d4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x0000000000095439 0x1e41 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x000000000009727a 0x1e4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x000000000009745e 0x236 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_loc 0x0000000000097694 0x81 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_loc 0x0000000000097715 0x479 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x0000000000097b8e 0x253 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_loc 0x0000000000097de1 0x674 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x0000000000098455 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_loc 0x00000000000984b2 0x11f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x00000000000985d1 0x1ff4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_loc 0x000000000009a5c5 0xa14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_loc 0x000000000009afd9 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x000000000009b41b 0x1f2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x000000000009d345 0xe80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x000000000009e1c5 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_loc 0x000000000009e462 0x55f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x00000000000a3a52 0x790 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_loc 0x00000000000a41e2 0x184f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x00000000000a5a31 0x185 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_loc 0x00000000000a5bb6 0x20c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x00000000000a5dc2 0x3808 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x00000000000a95ca 0x104a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x00000000000aa614 0x76e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x00000000000aad82 0x14f7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_loc 0x00000000000ac279 0x287 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x00000000000ac500 0x7b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_loc 0x00000000000accb7 0x7d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x00000000000ad48b 0xf37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x00000000000ae3c2 0xc5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x00000000000af01e 0x7c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x00000000000af7e7 0xd6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x00000000000b0556 0x521e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x00000000000b5774 0x4a6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x00000000000ba1e2 0x832 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x00000000000baa14 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_loc 0x00000000000bab44 0x93d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x00000000000bb481 0xa07 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x00000000000bbe88 0xab1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x00000000000bc939 0x3d76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x00000000000c06af 0x70f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_loc 0x00000000000c0dbe 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x00000000000c0de3 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + +.debug_aranges 0x0000000000000000 0xaa88 + .debug_aranges + 0x0000000000000000 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x0000000000000030 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x0000000000000190 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000000000001f0 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x0000000000000248 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x0000000000000300 0x48 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x0000000000000348 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x0000000000000368 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000000000003a0 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x00000000000003c8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000000000003e8 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000000418 0x60 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x0000000000000478 0x60 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x00000000000004d8 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x0000000000000530 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x0000000000000560 0x48 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_aranges + 0x00000000000005a8 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x00000000000005d0 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_aranges + 0x0000000000000600 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x0000000000000668 0x40 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000000000006a8 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000000000006c8 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x0000000000000728 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x0000000000000790 0x70 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x0000000000000800 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x0000000000000828 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_aranges + 0x0000000000000870 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000000000008a0 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000000000008f8 0x48 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_aranges + 0x0000000000000940 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x0000000000000970 0x50 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000000000009c0 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000000a08 0x120 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000000b28 0x48 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000000b70 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x0000000000000c40 0xe0 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x0000000000000d20 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x0000000000000d60 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x0000000000000d78 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x0000000000000de8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x0000000000000e58 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000000f30 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x0000000000000fa0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x0000000000000ff8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x0000000000001030 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x0000000000001098 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00000000000011b8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000001218 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x0000000000001268 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x00000000000012d0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x00000000000012f0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x0000000000001360 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_aranges + 0x0000000000001470 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_aranges + 0x00000000000014a8 0xa0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x0000000000001548 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x0000000000001568 0x20 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_aranges + 0x0000000000001588 0x70 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00000000000015f8 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x0000000000001628 0x158 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x0000000000001780 0x2e0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x0000000000001a60 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x0000000000001a98 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_aranges + 0x0000000000001ab0 0x20 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_aranges + 0x0000000000001ad0 0x38 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x0000000000001b08 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x0000000000001b48 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x0000000000001b68 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x0000000000001b98 0x98 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x0000000000001c30 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001d08 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x0000000000001d48 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x0000000000001d70 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x0000000000001d98 0x58 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001df0 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x0000000000001e70 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x0000000000001ec0 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x0000000000001f10 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x0000000000001f38 0xe0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x0000000000002018 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x0000000000002048 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x0000000000002080 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x00000000000020f0 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x0000000000002140 0x1c8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x0000000000002308 0x98 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_aranges + 0x00000000000023a0 0xd0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_aranges + 0x0000000000002470 0x30 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_aranges + 0x00000000000024a0 0x40 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_aranges + 0x00000000000024e0 0x40 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_aranges + 0x0000000000002520 0x58 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_aranges + 0x0000000000002578 0x48 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_aranges + 0x00000000000025c0 0x58 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_aranges + 0x0000000000002618 0x60 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_aranges + 0x0000000000002678 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x00000000000026b0 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x00000000000026d0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000000026e8 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000002778 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000002848 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000002888 0x1b0 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x0000000000002a38 0xc0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x0000000000002af8 0x58 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_aranges + 0x0000000000002b50 0x80 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_aranges + 0x0000000000002bd0 0x70 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_aranges + 0x0000000000002c40 0x78 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_aranges + 0x0000000000002cb8 0xc8 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_aranges + 0x0000000000002d80 0x30 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_aranges + 0x0000000000002db0 0x40 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_aranges + 0x0000000000002df0 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000002e98 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x0000000000002eb8 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x0000000000002f00 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x0000000000002f40 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x0000000000002f70 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_aranges + 0x0000000000002fe0 0xa8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x0000000000003088 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000003108 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x0000000000003150 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x0000000000003260 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000000000032b0 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x0000000000003358 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x0000000000003398 0x58 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_aranges + 0x00000000000033f0 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_aranges + 0x0000000000003488 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00000000000034a0 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000000000035b0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000000000035e8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x0000000000003618 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x0000000000003658 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000000000036b8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00000000000036e0 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_aranges + 0x0000000000003778 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_aranges + 0x00000000000037a0 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x0000000000003818 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x0000000000003848 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00000000000038a0 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x00000000000038e0 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00000000000039b0 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x0000000000003a00 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x0000000000003a20 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_aranges + 0x0000000000003a48 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x0000000000003a68 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x0000000000003a90 0x40 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x0000000000003ad0 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x0000000000003b78 0x48 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x0000000000003bc0 0x88 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_aranges + 0x0000000000003c48 0x20 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_aranges + 0x0000000000003c68 0x40 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_aranges + 0x0000000000003ca8 0x58 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x0000000000003d00 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x0000000000003d18 0x18 esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .debug_aranges + 0x0000000000003d30 0x18 esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .debug_aranges + 0x0000000000003d48 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x0000000000003d60 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x0000000000003d90 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_aranges + 0x0000000000003dd0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_aranges + 0x0000000000003df8 0x70 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x0000000000003e68 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x0000000000003ec0 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x0000000000003f90 0x288 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x0000000000004218 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x00000000000042e8 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x0000000000004398 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x0000000000004408 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x0000000000004470 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00000000000044c0 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x00000000000045c8 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x0000000000004600 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x0000000000004620 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x0000000000004650 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x0000000000004690 0x148 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x00000000000047d8 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x00000000000049a8 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x0000000000004a18 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x0000000000004af0 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x0000000000004b60 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x0000000000004cb0 0x90 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x0000000000004d40 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x0000000000004da8 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x0000000000004df0 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x0000000000004e10 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x0000000000004e68 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x0000000000004e98 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x0000000000004eb8 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x0000000000004f40 0x110 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x0000000000005050 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x0000000000005078 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_aranges + 0x00000000000050a0 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_aranges + 0x00000000000050d8 0x100 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x00000000000051d8 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x0000000000005228 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x0000000000005478 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x0000000000005518 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x0000000000005560 0xd0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x0000000000005630 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x00000000000056a0 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x00000000000056c0 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x00000000000056f8 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x0000000000005750 0x150 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x00000000000058a0 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x0000000000005928 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x00000000000059c8 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x00000000000059f8 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x0000000000005aa8 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x0000000000005b08 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x0000000000005c28 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x0000000000005d68 0x20 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x0000000000005d88 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x0000000000005de8 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x0000000000005e48 0x3b0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x00000000000061f8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x0000000000006238 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_aranges + 0x0000000000006260 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_aranges + 0x0000000000006280 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x00000000000063d0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x00000000000063f0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x0000000000006410 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x0000000000006430 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x0000000000006470 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x00000000000064c8 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x00000000000065a0 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x0000000000006600 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x0000000000006648 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x0000000000006710 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x0000000000006780 0x2d8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x0000000000006a58 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x0000000000006c00 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_aranges + 0x0000000000006d08 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x0000000000006e10 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x0000000000006f18 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_aranges + 0x0000000000006ff0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_aranges + 0x0000000000007070 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x0000000000007130 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x0000000000007158 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x0000000000007198 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x00000000000071d8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x0000000000007230 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x0000000000007258 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x0000000000007290 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x00000000000072c8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x00000000000072f0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x0000000000007340 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x0000000000007378 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x0000000000007428 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x00000000000074a8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x0000000000007510 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x0000000000007578 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00000000000075d8 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x0000000000007650 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x00000000000076e8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_aranges + 0x0000000000007738 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_aranges + 0x00000000000077b8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x0000000000007860 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x0000000000007910 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x0000000000007a08 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_aranges + 0x0000000000007a30 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_aranges + 0x0000000000007a60 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000000000007ac0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_aranges + 0x0000000000007ae0 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x0000000000007b90 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x0000000000007c10 0x70 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x0000000000007c80 0x68 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x0000000000007ce8 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x0000000000007de0 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x0000000000007e28 0x58 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x0000000000007e80 0x28 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_aranges + 0x0000000000007ea8 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x0000000000007ec8 0x18 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_aranges + 0x0000000000007ee0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x0000000000007f08 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x0000000000007f50 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_aranges + 0x0000000000008028 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x0000000000008080 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00000000000080d8 0x80 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x0000000000008158 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x0000000000008210 0xf0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x0000000000008300 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x0000000000008360 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x0000000000008378 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x0000000000008390 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_aranges + 0x00000000000083d8 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_aranges + 0x0000000000008400 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x00000000000084c0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_aranges + 0x0000000000008530 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x0000000000008590 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_aranges + 0x00000000000085c0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x00000000000085f0 0x1d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_aranges + 0x00000000000087c8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_aranges + 0x0000000000008848 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x00000000000088b0 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x0000000000008aa8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x0000000000008b00 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_aranges + 0x0000000000008b70 0x1e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x0000000000008d58 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_aranges + 0x0000000000008db0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x0000000000008e80 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_aranges + 0x0000000000008ea0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x0000000000008ed0 0x210 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x00000000000090e0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x0000000000009130 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x00000000000091a0 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_aranges + 0x0000000000009310 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x0000000000009380 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_aranges + 0x0000000000009460 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x00000000000094f0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x00000000000095a8 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x0000000000009658 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x0000000000009730 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x00000000000097d0 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x0000000000009a58 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x0000000000009b00 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x0000000000009b90 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_aranges + 0x0000000000009bc8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x0000000000009c60 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x0000000000009d10 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x0000000000009e08 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x0000000000009f70 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x0000000000009fb0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x0000000000009fd0 0x20 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_aranges + 0x0000000000009ff0 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_aranges + 0x000000000000a008 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x000000000000a028 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_aranges + 0x000000000000a048 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_aranges + 0x000000000000a068 0x28 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_aranges + 0x000000000000a090 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_aranges + 0x000000000000a0b0 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_aranges + 0x000000000000a0d0 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_aranges + 0x000000000000a110 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_aranges + 0x000000000000a150 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_aranges + 0x000000000000a1a8 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x000000000000a1c0 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_aranges + 0x000000000000a1e0 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x000000000000a1f8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_aranges + 0x000000000000a218 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x000000000000a260 0x40 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_aranges + 0x000000000000a2a0 0x30 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_aranges + 0x000000000000a2d0 0x58 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_aranges + 0x000000000000a328 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_aranges + 0x000000000000a348 0xa8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_aranges + 0x000000000000a3f0 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_aranges + 0x000000000000a460 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_aranges + 0x000000000000a498 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x000000000000a4b8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x000000000000a4d8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x000000000000a4f8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x000000000000a518 0xe0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x000000000000a5f8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_aranges + 0x000000000000a618 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_aranges + 0x000000000000a638 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_aranges + 0x000000000000a650 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_aranges + 0x000000000000a668 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_aranges + 0x000000000000a688 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_aranges + 0x000000000000a6a8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_aranges + 0x000000000000a6c8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_aranges + 0x000000000000a6e8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_aranges + 0x000000000000a708 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_aranges + 0x000000000000a728 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_aranges + 0x000000000000a748 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x000000000000a768 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_aranges + 0x000000000000a788 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_aranges + 0x000000000000a7a8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_aranges + 0x000000000000a7c8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_aranges + 0x000000000000a7e8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_aranges + 0x000000000000a808 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_aranges + 0x000000000000a828 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_aranges + 0x000000000000a848 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_aranges + 0x000000000000a868 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_aranges + 0x000000000000a888 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x000000000000a8a8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x000000000000a8c8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x000000000000a8e8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_aranges + 0x000000000000a908 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_aranges + 0x000000000000a928 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_aranges + 0x000000000000a948 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_aranges + 0x000000000000a968 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_aranges + 0x000000000000a988 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_aranges + 0x000000000000a9a8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_aranges + 0x000000000000a9c8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x000000000000a9e8 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x000000000000aa08 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x000000000000aa28 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_aranges + 0x000000000000aa48 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x000000000000aa68 0x20 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_ranges 0x0000000000000000 0xad08 + .debug_ranges 0x0000000000000000 0x20 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000020 0x198 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00000000000001b8 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000228 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x0000000000000270 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x0000000000000318 0x50 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x0000000000000368 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x0000000000000390 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x00000000000003a8 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00000000000003c8 0x68 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x0000000000000430 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x0000000000000480 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000000000004c8 0x20 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x00000000000004e8 0x38 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_ranges 0x0000000000000520 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x0000000000000538 0x20 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_ranges 0x0000000000000558 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000000000005c8 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00000000000005f8 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x0000000000000648 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x00000000000006b8 0x60 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x0000000000000718 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x0000000000000730 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_ranges 0x0000000000000768 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x0000000000000788 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000000000007e8 0x38 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_ranges 0x0000000000000820 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x0000000000000840 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x0000000000000880 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x00000000000008b8 0x1d0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x0000000000000a88 0x98 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000000b20 0xc0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000000be0 0x1e8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x0000000000000dc8 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000000e20 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x0000000000000e98 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x0000000000000f10 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x0000000000001050 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x00000000000010b0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x00000000000010f8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x0000000000001120 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x0000000000001178 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00000000000012b0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x0000000000001300 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000001340 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00000000000013b0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x00000000000013c0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x0000000000001420 0x2e0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_ranges 0x0000000000001700 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_ranges 0x0000000000001728 0xf0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x0000000000001818 0x68 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_ranges 0x0000000000001880 0x20 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00000000000018a0 0x1a8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x0000000000001a48 0x3c0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000001e08 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x0000000000001e30 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x0000000000001e58 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x0000000000001e88 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x0000000000001e98 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x0000000000001ed0 0x88 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x0000000000001f58 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x0000000000002020 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x0000000000002050 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x0000000000002098 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x00000000000020b0 0x48 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x00000000000020f8 0x70 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000002168 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x00000000000021a8 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00000000000021e8 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x0000000000002200 0x130 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x0000000000002330 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x0000000000002350 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x0000000000002378 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00000000000023d8 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x0000000000002418 0x218 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x0000000000002630 0x88 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_ranges 0x00000000000026b8 0xf0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_ranges 0x00000000000027a8 0x20 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_ranges 0x00000000000027c8 0x30 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_ranges 0x00000000000027f8 0x30 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_ranges 0x0000000000002828 0x48 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_ranges 0x0000000000002870 0x38 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_ranges 0x00000000000028a8 0x48 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_ranges 0x00000000000028f0 0x50 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_ranges 0x0000000000002940 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x0000000000002968 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000002a00 0x108 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000002b08 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000002b68 0x1c8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000002d30 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000002de0 0x48 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_ranges 0x0000000000002e28 0x88 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_ranges 0x0000000000002eb0 0xb8 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_ranges 0x0000000000002f68 0xe0 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_ranges 0x0000000000003048 0x1d0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_ranges 0x0000000000003218 0x20 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_ranges 0x0000000000003238 0x30 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_ranges 0x0000000000003268 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000003300 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000003310 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x0000000000003378 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x00000000000033a8 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00000000000033c8 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_ranges 0x0000000000003428 0x98 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00000000000034c0 0xd0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x0000000000003590 0x38 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00000000000035c8 0x148 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000003710 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x0000000000003790 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000003828 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x0000000000003858 0x48 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_ranges 0x00000000000038a0 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_ranges 0x0000000000003958 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000003a70 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x0000000000003a98 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x0000000000003ab8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x0000000000003ae8 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x0000000000003b38 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x0000000000003b50 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_ranges 0x0000000000003bd8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_ranges 0x0000000000003bf0 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x0000000000003c58 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x0000000000003c78 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x0000000000003cc0 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x0000000000003cf0 0xd8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x0000000000003dc8 0x40 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x0000000000003e08 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_ranges 0x0000000000003e20 0x10 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x0000000000003e30 0x18 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x0000000000003e48 0x48 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x0000000000003e90 0x98 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000003f28 0x38 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x0000000000003f60 0x78 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_ranges 0x0000000000003fd8 0x10 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_ranges 0x0000000000003fe8 0x30 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_ranges 0x0000000000004018 0x48 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x0000000000004060 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x0000000000004080 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_ranges 0x00000000000040b0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_ranges 0x00000000000040c8 0x78 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x0000000000004140 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x0000000000004188 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x00000000000042a8 0x290 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x0000000000004538 0x1d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x0000000000004708 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x00000000000047a8 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x0000000000004808 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000000000004878 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00000000000048e8 0x5a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000000000004e88 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x0000000000004f18 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x0000000000004f28 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x0000000000004f48 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x0000000000004f78 0x198 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x0000000000005110 0x220 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x0000000000005330 0x60 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x0000000000005390 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x0000000000005488 0x60 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x00000000000054e8 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x0000000000005670 0xc8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x0000000000005738 0xd0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x0000000000005808 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x0000000000005840 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x0000000000005850 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x00000000000058b0 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x00000000000058d0 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x00000000000058e0 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x0000000000005970 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x0000000000005a88 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x0000000000005aa0 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_ranges 0x0000000000005ab8 0x28 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_ranges 0x0000000000005ae0 0xf0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x0000000000005bd0 0x40 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x0000000000005c10 0x358 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x0000000000005f68 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x0000000000005ff8 0x98 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x0000000000006090 0xf0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x0000000000006180 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x00000000000061e0 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x00000000000061f0 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x0000000000006218 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x0000000000006260 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x00000000000063a0 0x90 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x0000000000006430 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x00000000000064c0 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x00000000000064e0 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x0000000000006580 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x00000000000065d0 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x0000000000006740 0x190 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x00000000000068d0 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x00000000000068e0 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x0000000000006930 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x0000000000006980 0x3e8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x0000000000006d68 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_ranges 0x0000000000006d98 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_ranges 0x0000000000006db0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_ranges 0x0000000000006dc0 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x0000000000006f00 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x0000000000006f10 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x0000000000006f20 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x0000000000006f30 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x0000000000006f60 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x0000000000006fa8 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x00000000000070c0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000000000007110 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x0000000000007148 0xb8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000000000007200 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x0000000000007260 0x2c8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x0000000000007528 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x00000000000076c0 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_ranges 0x00000000000078f8 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x0000000000007a50 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x0000000000007b48 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_ranges 0x0000000000007c28 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_ranges 0x0000000000007c98 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x0000000000007d48 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x0000000000007d60 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x0000000000007d90 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x0000000000007dc0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x0000000000007e08 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x0000000000007e20 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x0000000000007e48 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x0000000000007e70 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x0000000000007e88 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x0000000000007ee8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x0000000000007f10 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x0000000000007fb0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x0000000000008020 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x0000000000008078 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x00000000000080d0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000000000008120 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x0000000000008188 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x0000000000008210 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_ranges 0x0000000000008250 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_ranges 0x00000000000082c0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x0000000000008370 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x0000000000008410 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x0000000000008518 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_ranges 0x0000000000008530 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_ranges 0x0000000000008550 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x00000000000085d0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_ranges 0x00000000000085e0 0x100 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x00000000000086e0 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000008750 0xa0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x00000000000087f0 0x58 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x0000000000008848 0x180 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00000000000089c8 0x38 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x0000000000008a00 0x48 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x0000000000008a48 0x18 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_ranges 0x0000000000008a60 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x0000000000008a70 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x0000000000008a88 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x0000000000008ac0 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_ranges 0x0000000000008c30 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x0000000000008c78 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x0000000000008cc0 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_ranges 0x0000000000008d30 0xa8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x0000000000008dd8 0xe0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x0000000000008eb8 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x0000000000008f08 0x38 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_ranges 0x0000000000008f40 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_ranges 0x0000000000008f58 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x0000000000009008 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_ranges 0x0000000000009068 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x00000000000090b8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_ranges 0x00000000000090d8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x00000000000090f8 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_ranges 0x00000000000092c0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_ranges 0x0000000000009330 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x0000000000009388 0x230 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x00000000000095b8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x0000000000009600 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_ranges 0x0000000000009660 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x00000000000098b0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_ranges 0x00000000000098f8 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x00000000000099e8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_ranges 0x00000000000099f8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x0000000000009a18 0x270 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x0000000000009c88 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x0000000000009cc8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x0000000000009d40 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_ranges 0x0000000000009ed0 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x0000000000009f30 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_ranges 0x000000000000a000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x000000000000a080 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x000000000000a140 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x000000000000a1e0 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x000000000000a2a8 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x000000000000a338 0x278 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x000000000000a5b0 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x000000000000a768 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x000000000000a7e8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_ranges 0x000000000000a810 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x000000000000a8b0 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x000000000000a950 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x000000000000aa38 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x000000000000abd8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x000000000000ac08 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x000000000000ac18 0x10 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_ranges 0x000000000000ac28 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x000000000000ac38 0xd0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + +.debug_line 0x0000000000000000 0x1c0285 + .debug_line 0x0000000000000000 0x51f esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x000000000000051f 0x24d5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x00000000000029f4 0xbf3 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x00000000000035e7 0xb1e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x0000000000004105 0x7a8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x00000000000048ad 0x14de esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x0000000000005d8b 0x1b9 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x0000000000005f44 0xb8e esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x0000000000006ad2 0x695 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000000000007167 0x16d esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x00000000000072d4 0x6b4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000000000007988 0x992 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x000000000000831a 0x122c esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000000000009546 0xc8c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x000000000000a1d2 0x64f esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x000000000000a821 0x5fa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + .debug_line 0x000000000000ae1b 0x71c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x000000000000b537 0x3a2 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_line 0x000000000000b8d9 0xd1f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x000000000000c5f8 0xbaa esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x000000000000d1a2 0xc9 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x000000000000d26b 0xe2d esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x000000000000e098 0xb0e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x000000000000eba6 0xe5c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x000000000000fa02 0x11b esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x000000000000fb1d 0x6a4 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + .debug_line 0x00000000000101c1 0x3cc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000000000001058d 0x8f1 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0000000000010e7e 0x7e9 esp-idf/hal/libhal.a(cache_hal.c.obj) + .debug_line 0x0000000000011667 0x38b esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x00000000000119f2 0xab5 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00000000000124a7 0x98c esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x0000000000012e33 0x1f29 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0000000000014d5c 0xfb7 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0000000000015d13 0x1248 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x0000000000016f5b 0x69e9 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x000000000001d944 0xb0b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x000000000001e44f 0x24e esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x000000000001e69d 0xbed esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x000000000001f28a 0x9c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x000000000001fc52 0x2bf0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0000000000022842 0x12cd esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x0000000000023b0f 0xa85 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x0000000000024594 0xc5a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00000000000251ee 0xa9f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x0000000000025c8d 0x20e1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0000000000027d6e 0x1d3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0000000000029aac 0xf2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x000000000002a9da 0xc0b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x000000000002b5e5 0x397 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x000000000002b97c 0xa21 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x000000000002c39d 0x82c5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + .debug_line 0x0000000000034662 0x452 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + .debug_line 0x0000000000034ab4 0x1589 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x000000000003603d 0x3f7 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x0000000000036434 0x3b0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_line 0x00000000000367e4 0x940 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_line 0x0000000000037124 0xa3b esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x0000000000037b5f 0x3899 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000000000003b3f8 0x9ca2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x000000000004509a 0xb07 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x0000000000045ba1 0x6f esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_line 0x0000000000045c10 0xf4 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_line 0x0000000000045d04 0x79a esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x000000000004649e 0x61c esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0000000000046aba 0x499 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x0000000000046f53 0x6d0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x0000000000047623 0x735 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0000000000047d58 0xd7b esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x0000000000048ad3 0x3d6 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x0000000000048ea9 0x681 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x000000000004952a 0x4ce esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x00000000000499f8 0x731 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x000000000004a129 0xfd6 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000000000004b0ff 0x598 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x000000000004b697 0xebd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x000000000004c554 0x43f esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000000000004c993 0x1e8c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x000000000004e81f 0x54d esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000000000004ed6c 0x35d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x000000000004f0c9 0xdcc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x000000000004fe95 0x3c2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x0000000000050257 0x5755 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x00000000000559ac 0x9f8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_line 0x00000000000563a4 0x13e0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + .debug_line 0x0000000000057784 0xf0b esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_line 0x000000000005868f 0x898 esp-idf/main/libmain.a(modbus-tcp.c.obj) + .debug_line 0x0000000000058f27 0x18c6 esp-idf/main/libmain.a(ModbusS.c.obj) + .debug_line 0x000000000005a7ed 0x1ab5 esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + .debug_line 0x000000000005c2a2 0xc57 esp-idf/main/libmain.a(pid_ctrl.c.obj) + .debug_line 0x000000000005cef9 0x7f9 esp-idf/main/libmain.a(bdc_motor.c.obj) + .debug_line 0x000000000005d6f2 0x1759 esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + .debug_line 0x000000000005ee4b 0x6b6 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x000000000005f501 0xe9 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x000000000005f5ea 0x234 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x000000000005f81e 0x11e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000060a00 0x172f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000000000006212f 0xe0b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000062f3a 0x4d81 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x0000000000067cbb 0x1bb6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x0000000000069871 0x1a03 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + .debug_line 0x000000000006b274 0x31a9 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + .debug_line 0x000000000006e41d 0x2d9b esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + .debug_line 0x00000000000711b8 0x3387 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + .debug_line 0x000000000007453f 0x4ad0 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + .debug_line 0x000000000007900f 0xc29 esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + .debug_line 0x0000000000079c38 0x599 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_line 0x000000000007a1d1 0x1678 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x000000000007b849 0xf4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000000000007b93d 0x1137 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x000000000007ca74 0x4fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x000000000007cf70 0x293 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x000000000007d203 0x6ae esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + .debug_line 0x000000000007d8b1 0x12af esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000000000007eb60 0x1c45 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x00000000000807a5 0x512 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x0000000000080cb7 0x3ab2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x0000000000084769 0x1451 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x0000000000085bba 0xf97 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0000000000086b51 0x515 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0000000000087066 0x577 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + .debug_line 0x00000000000875dd 0xbc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + .debug_line 0x00000000000881a5 0x3c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0000000000088565 0x25c3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x000000000008ab28 0x4c1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x000000000008afe9 0x4ad esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x000000000008b496 0x5df esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x000000000008ba75 0xc38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x000000000008c6ad 0x3ee esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_line 0x000000000008ca9b 0x1450 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + .debug_line 0x000000000008deeb 0x3ec esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + .debug_line 0x000000000008e2d7 0xec4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x000000000008f19b 0x42b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x000000000008f5c6 0x894 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x000000000008fe5a 0x940 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x000000000009079a 0x2afb esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x0000000000093295 0x881 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x0000000000093b16 0x117 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x0000000000093c2d 0x1b9 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + .debug_line 0x0000000000093de6 0x326 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x000000000009410c 0x439 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x0000000000094545 0xa53 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x0000000000094f98 0x1db4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0000000000096d4c 0x5b6 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0000000000097302 0xd36 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_line 0x0000000000098038 0x251 esp-idf/hal/libhal.a(pcnt_hal.c.obj) + .debug_line 0x0000000000098289 0xb03 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + .debug_line 0x0000000000098d8c 0x14fe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x000000000009a28a 0x1c1 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x000000000009a44b 0x21e esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + .debug_line 0x000000000009a669 0x21c esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + .debug_line 0x000000000009a885 0x1c5 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x000000000009aa4a 0x241 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x000000000009ac8b 0xab9 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + .debug_line 0x000000000009b744 0x1e7 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + .debug_line 0x000000000009b92b 0x1263 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x000000000009cb8e 0x654 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x000000000009d1e2 0x2de6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x000000000009ffc8 0x3e0b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x00000000000a3dd3 0x4024 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x00000000000a7df7 0x1100 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x00000000000a8ef7 0x952 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x00000000000a9849 0x1bc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x00000000000ab411 0x1265 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x00000000000ac676 0x4b52 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x00000000000b11c8 0x23e7 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x00000000000b35af 0x701 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x00000000000b3cb0 0x9a6 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x00000000000b4656 0x4bd esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x00000000000b4b13 0x2a0e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x00000000000b7521 0x55eb esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x00000000000bcb0c 0x4a43 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x00000000000c154f 0x3976 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x00000000000c4ec5 0xcd7 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x00000000000c5b9c 0x46cb esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x00000000000ca267 0x1f2f esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x00000000000cc196 0x16ad esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00000000000cd843 0xcb4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x00000000000ce4f7 0x74e esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x00000000000cec45 0x25ce esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00000000000d1213 0xf92 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x00000000000d21a5 0x730 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x00000000000d28d5 0x1630 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x00000000000d3f05 0x5736 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x00000000000d963b 0x7d6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x00000000000d9e11 0x5a5 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_line 0x00000000000da3b6 0x8c6 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_line 0x00000000000dac7c 0x1435 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00000000000dc0b1 0x7bd esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x00000000000dc86e 0xa50f esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x00000000000e6d7d 0x1002 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x00000000000e7d7f 0x835 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x00000000000e85b4 0x2e0b esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x00000000000eb3bf 0xfe7 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x00000000000ec3a6 0x29e esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x00000000000ec644 0x5ab esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x00000000000ecbef 0x767 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x00000000000ed356 0x36d1 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x00000000000f0a27 0x1f23 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x00000000000f294a 0x308b esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x00000000000f59d5 0xafd esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x00000000000f64d2 0x18a3 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x00000000000f7d75 0xa8e esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x00000000000f8803 0x2cac esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00000000000fb4af 0x4cc2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x0000000000100171 0x27d esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x00000000001003ee 0xa1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x0000000000100e09 0xccb esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x0000000000101ad4 0x81a0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x0000000000109c74 0x4c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x000000000010a139 0x66f esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_line 0x000000000010a7a8 0x4f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_line 0x000000000010ac9e 0x1974 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x000000000010c612 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x000000000010cb77 0x4d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x000000000010d048 0x537 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x000000000010d57f 0x4a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x000000000010da25 0x13bd esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x000000000010ede2 0x1d61 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x0000000000110b43 0xc9b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x00000000001117de 0xc32 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x0000000000112410 0x16d8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x0000000000113ae8 0xa11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x00000000001144f9 0x1f0e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x0000000000116407 0x5c99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x000000000011c0a0 0x23c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_line 0x000000000011e467 0x277a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x0000000000120be1 0xabf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x00000000001216a0 0x19ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_line 0x000000000012304c 0x163c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_line 0x0000000000124688 0x19b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x000000000012603c 0x55c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x0000000000126598 0xcca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x0000000000127262 0x2d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x0000000000127534 0x4cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x00000000001279ff 0x674 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x0000000000128073 0x7d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x0000000000128845 0x7d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x0000000000129017 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x00000000001292c1 0xa9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x0000000000129d5e 0x441 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x000000000012a19f 0x2779 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x000000000012c918 0x152c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x000000000012de44 0x1147 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x000000000012ef8b 0xa35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x000000000012f9c0 0xa0d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x00000000001303cd 0xbeb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x0000000000130fb8 0x182f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x00000000001327e7 0x481 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_line 0x0000000000132c68 0x2d9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_line 0x0000000000135a03 0x1317 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x0000000000136d1a 0x18d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x00000000001385ee 0x101b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x0000000000139609 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + .debug_line 0x000000000013995d 0xa6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_line 0x000000000013a3c7 0x1141 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x000000000013b508 0x313 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_line 0x000000000013b81b 0x2131 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x000000000013d94c 0xace esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x000000000013e41a 0x1643 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000000000013fa5d 0xc5e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x00000000001406bb 0x2aca esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0000000000143185 0x99e esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x0000000000143b23 0x8e5 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x0000000000144408 0x455 esp-idf/soc/libsoc.a(lldesc.c.obj) + .debug_line 0x000000000014485d 0x211 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x0000000000144a6e 0xdc esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + .debug_line 0x0000000000144b4a 0x56d esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x00000000001450b7 0xbfa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x0000000000145cb1 0x4691 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + .debug_line 0x000000000014a342 0x26a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x000000000014a5ac 0x6aa esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x000000000014ac56 0x858 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x000000000014b4ae 0x1833 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x000000000014cce1 0x3003 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x000000000014fce4 0x9d4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x00000000001506b8 0x25d esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x0000000000150915 0x3d9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x0000000000150cee 0x8c9 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_line 0x00000000001515b7 0x41c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_line 0x00000000001519d3 0x1257 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x0000000000152c2a 0x9d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_line 0x00000000001535fa 0xfa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x000000000015459a 0x5bc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_line 0x0000000000154b56 0xbd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x000000000015572a 0x2faa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_line 0x00000000001586d4 0x169f esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_line 0x0000000000159d73 0xcb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x000000000015aa2b 0x56c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00000000001600f0 0x2030 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x0000000000162120 0xa9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_line 0x0000000000162bbc 0x7842 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x000000000016a3fe 0xc65 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_line 0x000000000016b063 0x27d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x000000000016d839 0x5a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_line 0x000000000016ddd9 0x8a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x000000000016e67f 0x67aa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x0000000000174e29 0x2280 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x00000000001770a9 0xd78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x0000000000177e21 0x3059 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + .debug_line 0x000000000017ae7a 0x9e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x000000000017b85f 0xdd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_line 0x000000000017c631 0x1654 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x000000000017dc85 0x18b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x000000000017f537 0x16eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x0000000000180c22 0xe6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x0000000000181a8f 0x14d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x0000000000182f61 0x7a31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x000000000018a992 0x6009 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x000000000019099b 0x133d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x0000000000191cd8 0x455 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + .debug_line 0x000000000019212d 0x125c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x0000000000193389 0x10e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x0000000000194469 0x103d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x00000000001954a6 0x518d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x000000000019a633 0x1206 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_line 0x000000000019b839 0x192 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x000000000019b9cb 0x251 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_line 0x000000000019bc1c 0x11b esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_line 0x000000000019bd37 0x49f esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x000000000019c1d6 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_line 0x000000000019c251 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_line 0x000000000019c2cc 0xcc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_line 0x000000000019c398 0xab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line 0x000000000019c443 0x91 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_line 0x000000000019c4d4 0x48c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_line 0x000000000019c960 0x416 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_line 0x000000000019cd76 0x2b1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line 0x000000000019d027 0x7c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line 0x000000000019d0a3 0x81 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_line 0x000000000019d124 0x8a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line 0x000000000019d1ae 0x157 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_line 0x000000000019d305 0x3ba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line 0x000000000019d6bf 0x18b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_line 0x000000000019d84a 0xdc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line 0x000000000019d926 0x421 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_line 0x000000000019dd47 0x7b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_line 0x000000000019ddc2 0xd3b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_line 0x000000000019eafd 0x244 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_line 0x000000000019ed41 0x3fa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_line 0x000000000019f13b 0x88b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x000000000019f9c6 0x930 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000001a02f6 0x7ae e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000001a0aa4 0x8ad e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000001a1351 0x80e esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x00000000001a1b5f 0x3be e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_line 0x00000000001a1f1d 0x3b3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_line 0x00000000001a22d0 0x3a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_line 0x00000000001a230a 0x3a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_line 0x00000000001a2344 0x86 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_line 0x00000000001a23ca 0x389 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_line 0x00000000001a2753 0x6cc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_line 0x00000000001a2e1f 0x81a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_line 0x00000000001a3639 0x2aa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_line 0x00000000001a38e3 0xed e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_line 0x00000000001a39d0 0xa87 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_line 0x00000000001a4457 0x999 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_line 0x00000000001a4df0 0x252 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_line 0x00000000001a5042 0x3a6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_line 0x00000000001a53e8 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_line 0x00000000001a5624 0x30c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_line 0x00000000001a5930 0x352 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_line 0x00000000001a5c82 0x4b6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_line 0x00000000001a6138 0x3c7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_line 0x00000000001a64ff 0x23c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_line 0x00000000001a673b 0x254 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_line 0x00000000001a698f 0x5c6f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_line 0x00000000001ac5fe 0xab e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_line 0x00000000001ac6a9 0x6032 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_line 0x00000000001b26db 0x172 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_line 0x00000000001b284d 0x235 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_line 0x00000000001b2a82 0x31e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_line 0x00000000001b2da0 0x24ea e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_line 0x00000000001b528a 0x1c9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_line 0x00000000001b5453 0x1a0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_line 0x00000000001b55f3 0x26db e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_line 0x00000000001b7cce 0x23b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_line 0x00000000001b7f09 0x3f1d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_line 0x00000000001bbe26 0x3fda e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_line 0x00000000001bfe00 0x18f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_line 0x00000000001bff8f 0x177 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_line 0x00000000001c0106 0x17f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_str 0x0000000000000000 0x5c6e3 + .debug_str 0x0000000000000000 0x269 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x2ef (size before relaxing) + .debug_str 0x0000000000000269 0xa13 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xd24 (size before relaxing) + .debug_str 0x0000000000000c7c 0x1d7 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x502 (size before relaxing) + .debug_str 0x0000000000000e53 0x1f4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x58a (size before relaxing) + .debug_str 0x0000000000001047 0x4a5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x6a6 (size before relaxing) + .debug_str 0x00000000000014ec 0x1783 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1aaf (size before relaxing) + .debug_str 0x0000000000002c6f 0x6a esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0xa9 (size before relaxing) + .debug_str 0x0000000000002cd9 0x3507 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x3ed3 (size before relaxing) + .debug_str 0x00000000000061e0 0x162 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0xd67 (size before relaxing) + .debug_str 0x0000000000006342 0x64 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0xb1 (size before relaxing) + .debug_str 0x00000000000063a6 0xe9 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3f3a (size before relaxing) + .debug_str 0x000000000000648f 0x1cb esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x50f (size before relaxing) + .debug_str 0x000000000000665a 0x1b52 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4ff8 (size before relaxing) + .debug_str 0x00000000000081ac 0x329 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x35b1 (size before relaxing) + .debug_str 0x00000000000084d5 0x23e esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x481 (size before relaxing) + .debug_str 0x0000000000008713 0x2f2 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + 0x815 (size before relaxing) + .debug_str 0x0000000000008a05 0x101 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x31c9 (size before relaxing) + .debug_str 0x0000000000008b06 0xd0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x2ea (size before relaxing) + .debug_str 0x0000000000008bd6 0x199 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x528 (size before relaxing) + .debug_str 0x0000000000008d6f 0x12f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x3ee (size before relaxing) + .debug_str 0x0000000000008e9e 0x62 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0xaf (size before relaxing) + .debug_str 0x0000000000008f00 0x364 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0xfe4 (size before relaxing) + .debug_str 0x0000000000009264 0x1f8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x4a3 (size before relaxing) + .debug_str 0x000000000000945c 0x955 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ee8 (size before relaxing) + .debug_str 0x0000000000009db1 0xc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x260 (size before relaxing) + .debug_str 0x0000000000009e73 0x225 esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + 0x46c (size before relaxing) + .debug_str 0x000000000000a098 0xfa esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x191e (size before relaxing) + .debug_str 0x000000000000a192 0x3c7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c1c (size before relaxing) + .debug_str 0x000000000000a559 0x122 esp-idf/hal/libhal.a(cache_hal.c.obj) + 0x453 (size before relaxing) + .debug_str 0x000000000000a67b 0x76 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x2906 (size before relaxing) + .debug_str 0x000000000000a6f1 0x287 esp-idf/log/liblog.a(log.c.obj) + 0x58d (size before relaxing) + .debug_str 0x000000000000a978 0x12f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x518 (size before relaxing) + .debug_str 0x000000000000aaa7 0x640 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x981 (size before relaxing) + .debug_str 0x000000000000b0e7 0x259 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x67a (size before relaxing) + .debug_str 0x000000000000b340 0x48a esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x890 (size before relaxing) + .debug_str 0x000000000000b7ca 0x51f esp-idf/heap/libheap.a(tlsf.c.obj) + 0x96e (size before relaxing) + .debug_str 0x000000000000bce9 0x4c8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x812 (size before relaxing) + .debug_str 0x000000000000c1b1 0x232 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x4a1 (size before relaxing) + .debug_str 0x000000000000c3e3 0x36d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x60c (size before relaxing) + .debug_str 0x000000000000c750 0x1fe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xade (size before relaxing) + .debug_str 0x000000000000c94e 0x504 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xa0e (size before relaxing) + .debug_str 0x000000000000ce52 0x24e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x84b (size before relaxing) + .debug_str 0x000000000000d0a0 0x169 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3571 (size before relaxing) + .debug_str 0x000000000000d209 0xa85 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xf55 (size before relaxing) + .debug_str 0x000000000000dc8e 0x1ea esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x519 (size before relaxing) + .debug_str 0x000000000000de78 0x818 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1d47 (size before relaxing) + .debug_str 0x000000000000e690 0x722 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x24d9 (size before relaxing) + .debug_str 0x000000000000edb2 0x22a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x5ea (size before relaxing) + .debug_str 0x000000000000efdc 0x246 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x64c (size before relaxing) + .debug_str 0x000000000000f222 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x2d7 (size before relaxing) + .debug_str 0x000000000000f285 0xd9f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x150b (size before relaxing) + .debug_str 0x0000000000010024 0x1a34 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + 0x2869 (size before relaxing) + .debug_str 0x0000000000011a58 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) + 0x462 (size before relaxing) + .debug_str 0x0000000000011afc 0x45e esp-idf/freertos/libfreertos.a(port.c.obj) + 0xa25 (size before relaxing) + .debug_str 0x0000000000011f5a 0x65 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xb2 (size before relaxing) + .debug_str 0x0000000000011fbf 0x6c esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0xb9 (size before relaxing) + .debug_str 0x000000000001202b 0x6c esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0xb9 (size before relaxing) + .debug_str 0x0000000000012097 0x9ab esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x19e5 (size before relaxing) + .debug_str 0x0000000000012a42 0x8d1 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xdd2 (size before relaxing) + .debug_str 0x0000000000013313 0x1172 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1f50 (size before relaxing) + .debug_str 0x0000000000014485 0x154 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x587 (size before relaxing) + .debug_str 0x00000000000145d9 0x60 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x1db (size before relaxing) + .debug_str 0x0000000000014639 0x74 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0xc1 (size before relaxing) + .debug_str 0x00000000000146ad 0x127 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x862 (size before relaxing) + .debug_str 0x00000000000147d4 0x93 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x320 (size before relaxing) + .debug_str 0x0000000000014867 0x4a esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x252 (size before relaxing) + .debug_str 0x00000000000148b1 0xb0 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x2eb (size before relaxing) + .debug_str 0x0000000000014961 0x1f3 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x75f (size before relaxing) + .debug_str 0x0000000000014b54 0x374 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8b9 (size before relaxing) + .debug_str 0x0000000000014ec8 0xd2 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x347 (size before relaxing) + .debug_str 0x0000000000014f9a 0x72 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x611 (size before relaxing) + .debug_str 0x000000000001500c 0x224 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0xb41 (size before relaxing) + .debug_str 0x0000000000015230 0x111 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x847 (size before relaxing) + .debug_str 0x0000000000015341 0x24e esp-idf/newlib/libnewlib.a(time.c.obj) + 0xa20 (size before relaxing) + .debug_str 0x000000000001558f 0xd5 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x971 (size before relaxing) + .debug_str 0x0000000000015664 0x10fb esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x1a9e (size before relaxing) + .debug_str 0x000000000001675f 0x2ff esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x4bc (size before relaxing) + .debug_str 0x0000000000016a5e 0x49f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd2b (size before relaxing) + .debug_str 0x0000000000016efd 0x5e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x394 (size before relaxing) + .debug_str 0x0000000000016f5b 0xbb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x319 (size before relaxing) + .debug_str 0x0000000000017016 0x1fa esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x1c22 (size before relaxing) + .debug_str 0x0000000000017210 0x177 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x37d (size before relaxing) + .debug_str 0x0000000000017387 0x7fc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1311 (size before relaxing) + .debug_str 0x0000000000017b83 0x1f8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x9f8 (size before relaxing) + .debug_str 0x0000000000017d7b 0x412 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + 0x15fb (size before relaxing) + .debug_str 0x000000000001818d 0x16c5 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x1cde (size before relaxing) + .debug_str 0x0000000000019852 0x4a9 esp-idf/main/libmain.a(modbus-tcp.c.obj) + 0x9d8 (size before relaxing) + .debug_str 0x0000000000019cfb 0x10e esp-idf/main/libmain.a(ModbusS.c.obj) + 0x391 (size before relaxing) + .debug_str 0x0000000000019e09 0x8de esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + 0xcd4 (size before relaxing) + .debug_str 0x000000000001a6e7 0x110 esp-idf/main/libmain.a(pid_ctrl.c.obj) + 0x471 (size before relaxing) + .debug_str 0x000000000001a7f7 0x9c esp-idf/main/libmain.a(bdc_motor.c.obj) + 0x35c (size before relaxing) + .debug_str 0x000000000001a893 0x81a esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + 0xcda (size before relaxing) + .debug_str 0x000000000001b0ad 0xd4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x35e (size before relaxing) + .debug_str 0x000000000001b181 0x4b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x98 (size before relaxing) + .debug_str 0x000000000001b1cc 0xe36 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x1b16 (size before relaxing) + .debug_str 0x000000000001c002 0x383 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x82b (size before relaxing) + .debug_str 0x000000000001c385 0x3cb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x9c7 (size before relaxing) + .debug_str 0x000000000001c750 0x158 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x71e (size before relaxing) + .debug_str 0x000000000001c8a8 0xadd esp-idf/driver/libdriver.a(gpio.c.obj) + 0x22c8 (size before relaxing) + .debug_str 0x000000000001d385 0x880 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2977 (size before relaxing) + .debug_str 0x000000000001dc05 0x1b04 esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 0x2730 (size before relaxing) + .debug_str 0x000000000001f709 0x532 esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + 0x2cd6 (size before relaxing) + .debug_str 0x000000000001fc3b 0x651 esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + 0x2b81 (size before relaxing) + .debug_str 0x000000000002028c 0x473 esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + 0x2ab4 (size before relaxing) + .debug_str 0x00000000000206ff 0xae1 esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + 0x1cc1 (size before relaxing) + .debug_str 0x00000000000211e0 0xef esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + 0x252c (size before relaxing) + .debug_str 0x00000000000212cf 0x187 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + 0x7ef (size before relaxing) + .debug_str 0x0000000000021456 0x1d3f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x28aa (size before relaxing) + .debug_str 0x0000000000023195 0x5a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x20d (size before relaxing) + .debug_str 0x00000000000231ef 0x44f esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xa2f (size before relaxing) + .debug_str 0x000000000002363e 0x1ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x5ec (size before relaxing) + .debug_str 0x00000000000237eb 0x96 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x31d (size before relaxing) + .debug_str 0x0000000000023881 0x35a esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + 0x629 (size before relaxing) + .debug_str 0x0000000000023bdb 0x79f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xd70 (size before relaxing) + .debug_str 0x000000000002437a 0x379 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x864 (size before relaxing) + .debug_str 0x00000000000246f3 0x1d1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x5ad (size before relaxing) + .debug_str 0x00000000000248c4 0xd85 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1d11 (size before relaxing) + .debug_str 0x0000000000025649 0x59e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3b7f (size before relaxing) + .debug_str 0x0000000000025be7 0x307 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xbca (size before relaxing) + .debug_str 0x0000000000025eee 0xaa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x77a (size before relaxing) + .debug_str 0x0000000000025f98 0xe2 esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + 0x3fa (size before relaxing) + .debug_str 0x000000000002607a 0x571 esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + 0x9da (size before relaxing) + .debug_str 0x00000000000265eb 0x114 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x951 (size before relaxing) + .debug_str 0x00000000000266ff 0x8fb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x134b (size before relaxing) + .debug_str 0x0000000000026ffa 0xed esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xc62 (size before relaxing) + .debug_str 0x00000000000270e7 0xa9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0xbac (size before relaxing) + .debug_str 0x0000000000027190 0x16f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xc94 (size before relaxing) + .debug_str 0x00000000000272ff 0x10a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xd3f (size before relaxing) + .debug_str 0x0000000000027409 0x89 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0xbc1 (size before relaxing) + .debug_str 0x0000000000027492 0x2c0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic_opi.c.obj) + 0xe2d (size before relaxing) + .debug_str 0x0000000000027752 0x83 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) + 0xbb9 (size before relaxing) + .debug_str 0x00000000000277d5 0x4b1 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x3028 (size before relaxing) + .debug_str 0x0000000000027c86 0xba esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x2c6 (size before relaxing) + .debug_str 0x0000000000027d40 0x173 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0xe3c (size before relaxing) + .debug_str 0x0000000000027eb3 0x15d esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x635 (size before relaxing) + .debug_str 0x0000000000028010 0x494 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xbbe (size before relaxing) + .debug_str 0x00000000000284a4 0x99 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x406f (size before relaxing) + .debug_str 0x000000000002853d 0x62 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xaf (size before relaxing) + .debug_str 0x000000000002859f 0x51 esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + 0x1fd (size before relaxing) + .debug_str 0x00000000000285f0 0xab esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x2aa (size before relaxing) + .debug_str 0x000000000002869b 0x72 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x7b5 (size before relaxing) + .debug_str 0x000000000002870d 0x172 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x2c1a (size before relaxing) + .debug_str 0x000000000002887f 0x567 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x2ff4 (size before relaxing) + .debug_str 0x0000000000028de6 0x20d esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4b8 (size before relaxing) + .debug_str 0x0000000000028ff3 0x237 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0xd6f (size before relaxing) + .debug_str 0x000000000002922a 0x4f esp-idf/hal/libhal.a(pcnt_hal.c.obj) + 0x74d (size before relaxing) + .debug_str 0x0000000000029279 0x213 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + 0x1981 (size before relaxing) + .debug_str 0x000000000002948c 0x28e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x2cd6 (size before relaxing) + .debug_str 0x000000000002971a 0x4c esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x1fb (size before relaxing) + .debug_str 0x0000000000029766 0x4d esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + 0xf79 (size before relaxing) + .debug_str 0x00000000000297b3 0x4c esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + 0xf39 (size before relaxing) + .debug_str 0x00000000000297ff 0x4e esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x252 (size before relaxing) + .debug_str 0x000000000002984d 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x22e (size before relaxing) + .debug_str 0x00000000000298ce 0x1e2 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + 0x1629 (size before relaxing) + .debug_str 0x0000000000029ab0 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) + 0x207 (size before relaxing) + .debug_str 0x0000000000029b09 0x271 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x857 (size before relaxing) + .debug_str 0x0000000000029d7a 0x24a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x54a (size before relaxing) + .debug_str 0x0000000000029fc4 0x55d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x1014 (size before relaxing) + .debug_str 0x000000000002a521 0x7345 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x90a3 (size before relaxing) + .debug_str 0x0000000000031866 0x2d67 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8abb (size before relaxing) + .debug_str 0x00000000000345cd 0x4bd esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x7121 (size before relaxing) + .debug_str 0x0000000000034a8a 0x365 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xfe3 (size before relaxing) + .debug_str 0x0000000000034def 0x17af esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8783 (size before relaxing) + .debug_str 0x000000000003659e 0x6c2 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x29c6 (size before relaxing) + .debug_str 0x0000000000036c60 0x6da esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x39c6 (size before relaxing) + .debug_str 0x000000000003733a 0x64f esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x59c9 (size before relaxing) + .debug_str 0x0000000000037989 0x67 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0xb8c (size before relaxing) + .debug_str 0x00000000000379f0 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x1aa2 (size before relaxing) + .debug_str 0x0000000000037a3e 0xa5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x29c (size before relaxing) + .debug_str 0x0000000000037ae3 0x527 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xe84 (size before relaxing) + .debug_str 0x000000000003800a 0x89f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x12a0 (size before relaxing) + .debug_str 0x00000000000388a9 0x3a9 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x108c (size before relaxing) + .debug_str 0x0000000000038c52 0x24a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xeff (size before relaxing) + .debug_str 0x0000000000038e9c 0x211 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xa22 (size before relaxing) + .debug_str 0x00000000000390ad 0xa03 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1480 (size before relaxing) + .debug_str 0x0000000000039ab0 0x48f esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xcfb (size before relaxing) + .debug_str 0x0000000000039f3f 0x2ce esp-idf/lwip/liblwip.a(ip4.c.obj) + 0xd98 (size before relaxing) + .debug_str 0x000000000003a20d 0x9c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x768 (size before relaxing) + .debug_str 0x000000000003a2a9 0x8c esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x6be (size before relaxing) + .debug_str 0x000000000003a335 0x260 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xb40 (size before relaxing) + .debug_str 0x000000000003a595 0x128 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x3e4 (size before relaxing) + .debug_str 0x000000000003a6bd 0x65 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x712 (size before relaxing) + .debug_str 0x000000000003a722 0x307 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xcea (size before relaxing) + .debug_str 0x000000000003aa29 0x6d9 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x13c8 (size before relaxing) + .debug_str 0x000000000003b102 0xa7 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x904 (size before relaxing) + .debug_str 0x000000000003b1a9 0xff esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x5ad (size before relaxing) + .debug_str 0x000000000003b2a8 0x6d esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x89d (size before relaxing) + .debug_str 0x000000000003b315 0x36e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xa27 (size before relaxing) + .debug_str 0x000000000003b683 0x119 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x937 (size before relaxing) + .debug_str 0x000000000003b79c 0x1020 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1f0f (size before relaxing) + .debug_str 0x000000000003c7bc 0x262 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0xc14 (size before relaxing) + .debug_str 0x000000000003ca1e 0x9e esp-idf/lwip/liblwip.a(def.c.obj) + 0x2ae (size before relaxing) + .debug_str 0x000000000003cabc 0x3df esp-idf/lwip/liblwip.a(dns.c.obj) + 0xc17 (size before relaxing) + .debug_str 0x000000000003ce9b 0x13e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x44d (size before relaxing) + .debug_str 0x000000000003cfd9 0x69 esp-idf/lwip/liblwip.a(init.c.obj) + 0x242 (size before relaxing) + .debug_str 0x000000000003d042 0x64 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8ff (size before relaxing) + .debug_str 0x000000000003d0a6 0x1a6 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x5ff (size before relaxing) + .debug_str 0x000000000003d24c 0x4f4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xf71 (size before relaxing) + .debug_str 0x000000000003d740 0x111 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xc73 (size before relaxing) + .debug_str 0x000000000003d851 0x171 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xe0c (size before relaxing) + .debug_str 0x000000000003d9c2 0xb3 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x8a2 (size before relaxing) + .debug_str 0x000000000003da75 0x17a esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xa57 (size before relaxing) + .debug_str 0x000000000003dbef 0x14e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xb27 (size before relaxing) + .debug_str 0x000000000003dd3d 0x3d6 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x127b (size before relaxing) + .debug_str 0x000000000003e113 0x25e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1882 (size before relaxing) + .debug_str 0x000000000003e371 0x5d esp-idf/lwip/liblwip.a(err.c.obj) + 0x200 (size before relaxing) + .debug_str 0x000000000003e3ce 0x95 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x5e5 (size before relaxing) + .debug_str 0x000000000003e463 0x16a esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4dc (size before relaxing) + .debug_str 0x000000000003e5cd 0x1df8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30d7 (size before relaxing) + .debug_str 0x00000000000403c5 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x68a (size before relaxing) + .debug_str 0x00000000000404e9 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x2d2 (size before relaxing) + .debug_str 0x0000000000040590 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x27e (size before relaxing) + .debug_str 0x00000000000405f1 0x1419 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x17fb (size before relaxing) + .debug_str 0x0000000000041a0a 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x228 (size before relaxing) + .debug_str 0x0000000000041a61 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x25e (size before relaxing) + .debug_str 0x0000000000041ab8 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x25b (size before relaxing) + .debug_str 0x0000000000041b11 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x2ef (size before relaxing) + .debug_str 0x0000000000041bad 0x13b esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x3a4 (size before relaxing) + .debug_str 0x0000000000041ce8 0x202 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x517 (size before relaxing) + .debug_str 0x0000000000041eea 0xf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x361 (size before relaxing) + .debug_str 0x0000000000041fdb 0x252 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x1342 (size before relaxing) + .debug_str 0x000000000004222d 0x584 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1168 (size before relaxing) + .debug_str 0x00000000000427b1 0x11a esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x601 (size before relaxing) + .debug_str 0x00000000000428cb 0xb29 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x2145 (size before relaxing) + .debug_str 0x00000000000433f4 0x61a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0b (size before relaxing) + .debug_str 0x0000000000043a0e 0x447 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x86d (size before relaxing) + .debug_str 0x0000000000043e55 0x79d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x1714 (size before relaxing) + .debug_str 0x00000000000445f2 0x828 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a10 (size before relaxing) + .debug_str 0x0000000000044e1a 0x370 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x831 (size before relaxing) + .debug_str 0x000000000004518a 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x1252 (size before relaxing) + .debug_str 0x0000000000045412 0x4ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xd67 (size before relaxing) + .debug_str 0x0000000000045901 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x316 (size before relaxing) + .debug_str 0x0000000000045998 0x204 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x132d (size before relaxing) + .debug_str 0x0000000000045b9c 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x2d7 (size before relaxing) + .debug_str 0x0000000000045cae 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x316 (size before relaxing) + .debug_str 0x0000000000045db6 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x402 (size before relaxing) + .debug_str 0x0000000000045e53 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x4a3 (size before relaxing) + .debug_str 0x0000000000045f61 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x4bd (size before relaxing) + .debug_str 0x0000000000046036 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x230 (size before relaxing) + .debug_str 0x000000000004607f 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3a8 (size before relaxing) + .debug_str 0x000000000004614d 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x294 (size before relaxing) + .debug_str 0x00000000000461bc 0x53f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x175e (size before relaxing) + .debug_str 0x00000000000466fb 0x29a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x115a (size before relaxing) + .debug_str 0x0000000000046995 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7ac (size before relaxing) + .debug_str 0x0000000000046a97 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4c4 (size before relaxing) + .debug_str 0x0000000000046bee 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4ac (size before relaxing) + .debug_str 0x0000000000046c71 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x556 (size before relaxing) + .debug_str 0x0000000000046d51 0xef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x68a (size before relaxing) + .debug_str 0x0000000000046e40 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x308 (size before relaxing) + .debug_str 0x0000000000046e9b 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4ee (size before relaxing) + .debug_str 0x0000000000046ff2 0x28c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x536 (size before relaxing) + .debug_str 0x000000000004727e 0x1fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1339 (size before relaxing) + .debug_str 0x0000000000047478 0x684 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1353 (size before relaxing) + .debug_str 0x0000000000047afc 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) + 0x39b (size before relaxing) + .debug_str 0x0000000000047c76 0x8fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + 0xf18 (size before relaxing) + .debug_str 0x0000000000048570 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x99d (size before relaxing) + .debug_str 0x00000000000486fe 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + 0x383 (size before relaxing) + .debug_str 0x0000000000048759 0x474 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0xa28 (size before relaxing) + .debug_str 0x0000000000048bcd 0x414 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x932 (size before relaxing) + .debug_str 0x0000000000048fe1 0x2cd esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xff6 (size before relaxing) + .debug_str 0x00000000000492ae 0x1a3 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe18 (size before relaxing) + .debug_str 0x0000000000049451 0x6f7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1341 (size before relaxing) + .debug_str 0x0000000000049b48 0x18b esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x48c (size before relaxing) + .debug_str 0x0000000000049cd3 0x228 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x57e (size before relaxing) + .debug_str 0x0000000000049efb 0x79 esp-idf/soc/libsoc.a(lldesc.c.obj) + 0x296 (size before relaxing) + .debug_str 0x0000000000049f74 0x55 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x202 (size before relaxing) + .debug_str 0x0000000000049fc9 0x5a esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) + 0x1b7 (size before relaxing) + .debug_str 0x000000000004a023 0x79 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x2ef (size before relaxing) + .debug_str 0x000000000004a09c 0xed esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x5da (size before relaxing) + .debug_str 0x000000000004a189 0x828 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + 0x1b71 (size before relaxing) + .debug_str 0x000000000004a9b1 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x2d7 (size before relaxing) + .debug_str 0x000000000004aab1 0xa5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x47f (size before relaxing) + .debug_str 0x000000000004ab56 0xef esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x354 (size before relaxing) + .debug_str 0x000000000004ac45 0x44d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xc51 (size before relaxing) + .debug_str 0x000000000004b092 0x40b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x15e5 (size before relaxing) + .debug_str 0x000000000004b49d 0xf8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x851 (size before relaxing) + .debug_str 0x000000000004b595 0xab esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x708 (size before relaxing) + .debug_str 0x000000000004b640 0x10c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x875 (size before relaxing) + .debug_str 0x000000000004b74c 0xa4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x6e3 (size before relaxing) + .debug_str 0x000000000004b7f0 0x96 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x3ba (size before relaxing) + .debug_str 0x000000000004b886 0x27f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x372e (size before relaxing) + .debug_str 0x000000000004e078 0x455 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x116c (size before relaxing) + .debug_str 0x000000000004e4cd 0x4e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xb9d (size before relaxing) + .debug_str 0x000000000004e9b0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xae3 (size before relaxing) + .debug_str 0x000000000004ea40 0x2d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18c9 (size before relaxing) + .debug_str 0x000000000004ed13 0xcfc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1612 (size before relaxing) + .debug_str 0x000000000004fa0f 0x293 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xf03 (size before relaxing) + .debug_str 0x000000000004fca2 0x169 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xaca (size before relaxing) + .debug_str 0x000000000004fe0b 0xa99 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20ef (size before relaxing) + .debug_str 0x00000000000508a4 0x212 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc67 (size before relaxing) + .debug_str 0x0000000000050ab6 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0xe0d (size before relaxing) + .debug_str 0x0000000000050c1a 0x894 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1122 (size before relaxing) + .debug_str 0x00000000000514ae 0x149 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x560 (size before relaxing) + .debug_str 0x00000000000515f7 0x1da esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x780 (size before relaxing) + .debug_str 0x00000000000517d1 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x298 (size before relaxing) + .debug_str 0x000000000005183a 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x3a1 (size before relaxing) + .debug_str 0x000000000005190b 0xb02 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x239d (size before relaxing) + .debug_str 0x000000000005240d 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xb14 (size before relaxing) + .debug_str 0x0000000000052492 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x3b4 (size before relaxing) + .debug_str 0x0000000000052553 0x157f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + 0x2bc3 (size before relaxing) + .debug_str 0x0000000000053ad2 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xb0e (size before relaxing) + .debug_str 0x0000000000053bb8 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x6ae (size before relaxing) + .debug_str 0x0000000000053c7c 0x1b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc20 (size before relaxing) + .debug_str 0x0000000000053e2d 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x572 (size before relaxing) + .debug_str 0x000000000005406d 0x27f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xa91 (size before relaxing) + .debug_str 0x00000000000542ec 0x385 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x9ab (size before relaxing) + .debug_str 0x0000000000054671 0x312 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xb58 (size before relaxing) + .debug_str 0x0000000000054983 0x605 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1112 (size before relaxing) + .debug_str 0x0000000000054f88 0x28f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2e21 (size before relaxing) + .debug_str 0x0000000000057880 0x218 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xaf3 (size before relaxing) + .debug_str 0x0000000000057a98 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + 0x34d (size before relaxing) + .debug_str 0x0000000000057b94 0x203 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xafb (size before relaxing) + .debug_str 0x0000000000057d97 0x478 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x9c8 (size before relaxing) + .debug_str 0x000000000005820f 0x430 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xe65 (size before relaxing) + .debug_str 0x000000000005863f 0x54c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe45 (size before relaxing) + .debug_str 0x0000000000058b8b 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x469 (size before relaxing) + .debug_str 0x0000000000058bfa 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x207 (size before relaxing) + .debug_str 0x0000000000058c48 0x41 esp-idf/hal/libhal.a(gdma_hal.c.obj) + 0xa1d (size before relaxing) + .debug_str 0x0000000000058c89 0x4c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + 0xe92 (size before relaxing) + .debug_str 0x0000000000058cd5 0x53 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x688 (size before relaxing) + .debug_str 0x0000000000058d28 0x91 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0xc8 (size before relaxing) + .debug_str 0x0000000000058db9 0x8b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0xc1 (size before relaxing) + .debug_str 0x0000000000058e44 0xfb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x14f (size before relaxing) + .debug_str 0x0000000000058f3f 0xb4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0x10a (size before relaxing) + .debug_str 0x0000000000058ff3 0x89 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x271 (size before relaxing) + .debug_str 0x000000000005907c 0x401 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0xab7 (size before relaxing) + .debug_str 0x000000000005947d 0x241 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0xbfd (size before relaxing) + .debug_str 0x00000000000596be 0x20f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x8a9 (size before relaxing) + .debug_str 0x00000000000598cd 0x92 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + 0x609 (size before relaxing) + .debug_str 0x000000000005995f 0x90 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0xc7 (size before relaxing) + .debug_str 0x00000000000599ef 0x92 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + 0x70f (size before relaxing) + .debug_str 0x0000000000059a81 0x1bc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x3fb (size before relaxing) + .debug_str 0x0000000000059c3d 0x764 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x910 (size before relaxing) + .debug_str 0x000000000005a3a1 0x20b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0x469 (size before relaxing) + .debug_str 0x000000000005a5ac 0xe2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x1c3 (size before relaxing) + .debug_str 0x000000000005a68e 0x293 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x88b (size before relaxing) + .debug_str 0x000000000005a921 0x8a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0xbd (size before relaxing) + .debug_str 0x000000000005a9ab 0x8d4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x19e4 (size before relaxing) + .debug_str 0x000000000005b27f 0x3b1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + 0x923 (size before relaxing) + .debug_str 0x000000000005b630 0x1ac e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0xa72 (size before relaxing) + .debug_str 0x000000000005b7dc 0xfb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + 0x1b9 (size before relaxing) + .debug_str 0x000000000005b8d7 0x1b9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_str 0x000000000005b8d7 0x1ba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x000000000005b8d7 0x1ba e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x000000000005b8d7 0x3a6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xf8c (size before relaxing) + .debug_str 0x000000000005bc7d 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + 0x13c (size before relaxing) + .debug_str 0x000000000005bcf1 0x13d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_str 0x000000000005bcf1 0xda e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_str 0x000000000005bcf1 0x4a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_str 0x000000000005bcf1 0x49a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_str 0x000000000005bcf1 0x96 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x5c4 (size before relaxing) + .debug_str 0x000000000005bd87 0x36 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x5b9 (size before relaxing) + .debug_str 0x000000000005bdbd 0x148 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x7c1 (size before relaxing) + .debug_str 0x000000000005bf05 0x22 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x5bd (size before relaxing) + .debug_str 0x000000000005bf27 0x11 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x4be (size before relaxing) + .debug_str 0x000000000005bf38 0x34 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x727 (size before relaxing) + .debug_str 0x000000000005bf6c 0x56 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x543 (size before relaxing) + .debug_str 0x000000000005bfc2 0xf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + 0x4b8 (size before relaxing) + .debug_str 0x000000000005bfd1 0x27 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x63d (size before relaxing) + .debug_str 0x000000000005bff8 0x16 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x4fc (size before relaxing) + .debug_str 0x000000000005c00e 0x8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x5c2 (size before relaxing) + .debug_str 0x000000000005c016 0x1d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x4cb (size before relaxing) + .debug_str 0x000000000005c033 0x12 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x54c (size before relaxing) + .debug_str 0x000000000005c045 0x19 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x505 (size before relaxing) + .debug_str 0x000000000005c05e 0xb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + 0x4f7 (size before relaxing) + .debug_str 0x000000000005c069 0xb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x50e (size before relaxing) + .debug_str 0x000000000005c074 0x382 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0xc3d (size before relaxing) + .debug_str 0x000000000005c3f6 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x50a (size before relaxing) + .debug_str 0x000000000005c409 0x1f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0xd80 (size before relaxing) + .debug_str 0x000000000005c428 0xb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x504 (size before relaxing) + .debug_str 0x000000000005c433 0xd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x507 (size before relaxing) + .debug_str 0x000000000005c440 0x50f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_str 0x000000000005c440 0x121 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0x85a (size before relaxing) + .debug_str 0x000000000005c561 0x5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x49a (size before relaxing) + .debug_str 0x000000000005c566 0x5b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x6e5 (size before relaxing) + .debug_str 0x000000000005c5c1 0x61 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x7b5 (size before relaxing) + .debug_str 0x000000000005c622 0x15 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x140 (size before relaxing) + .debug_str 0x000000000005c637 0xe e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0xb59 (size before relaxing) + .debug_str 0x000000000005c645 0x17 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0xc77 (size before relaxing) + .debug_str 0x000000000005c65c 0x6c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x739 (size before relaxing) + .debug_str 0x000000000005c6c8 0xa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x6c7 (size before relaxing) + .debug_str 0x000000000005c6d2 0x11 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x6ce (size before relaxing) + +.debug_rnglists + 0x0000000000000000 0x775 + .debug_rnglists + 0x0000000000000000 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + .debug_rnglists + 0x0000000000000013 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + .debug_rnglists + 0x0000000000000026 0x19 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_rnglists + 0x000000000000003f 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x0000000000000052 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + .debug_rnglists + 0x0000000000000065 0x46 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_rnglists + 0x00000000000000ab 0x37 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_rnglists + 0x00000000000000e2 0x3d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x000000000000011f 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_rnglists + 0x0000000000000132 0x1f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_rnglists + 0x0000000000000151 0x3e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x000000000000018f 0x2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_rnglists + 0x00000000000001ba 0x1f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x00000000000001d9 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_rnglists + 0x0000000000000225 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + .debug_rnglists + 0x0000000000000238 0x109 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_rnglists + 0x0000000000000341 0x4f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_rnglists + 0x0000000000000390 0x25 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_rnglists + 0x00000000000003b5 0x57 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x000000000000040c 0x32 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_rnglists + 0x000000000000043e 0x57 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x0000000000000495 0x47 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000000004dc 0x19 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_rnglists + 0x00000000000004f5 0x18 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_rnglists + 0x000000000000050d 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_rnglists + 0x0000000000000529 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_rnglists + 0x000000000000053c 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_rnglists + 0x000000000000054f 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_rnglists + 0x000000000000056b 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_rnglists + 0x000000000000057e 0x13 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_rnglists + 0x0000000000000591 0x4c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_rnglists + 0x00000000000005dd 0x76 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_rnglists + 0x0000000000000653 0x1c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_rnglists + 0x000000000000066f 0x1a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_rnglists + 0x0000000000000689 0x2d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_rnglists + 0x00000000000006b6 0x21 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_rnglists + 0x00000000000006d7 0x47 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_rnglists + 0x000000000000071e 0x57 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + +.debug_line_str + 0x0000000000000000 0x2b41 + .debug_line_str + 0x0000000000000000 0x231 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + 0x347 (size before relaxing) + .debug_line_str + 0x0000000000000231 0x76 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + 0x34a (size before relaxing) + .debug_line_str + 0x00000000000002a7 0x79 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + 0x353 (size before relaxing) + .debug_line_str + 0x0000000000000320 0x77 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + 0x34d (size before relaxing) + .debug_line_str + 0x0000000000000397 0x217 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + 0x4e3 (size before relaxing) + .debug_line_str + 0x00000000000005ae 0x165 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + 0x5d8 (size before relaxing) + .debug_line_str + 0x0000000000000713 0x1c0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + 0x71d (size before relaxing) + .debug_line_str + 0x00000000000008d3 0x7a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + 0x5e4 (size before relaxing) + .debug_line_str + 0x000000000000094d 0x7d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + 0x567 (size before relaxing) + .debug_line_str + 0x00000000000009ca 0x75 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + 0x347 (size before relaxing) + .debug_line_str + 0x0000000000000a3f 0x7d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + 0x5ed (size before relaxing) + .debug_line_str + 0x0000000000000abc 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + 0x58c (size before relaxing) + .debug_line_str + 0x0000000000000b30 0x88 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4a3 (size before relaxing) + .debug_line_str + 0x0000000000000bb8 0x73 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + 0x47c (size before relaxing) + .debug_line_str + 0x0000000000000c2b 0x77 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + 0x3f2 (size before relaxing) + .debug_line_str + 0x0000000000000ca2 0x7d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + 0x49a (size before relaxing) + .debug_line_str + 0x0000000000000d1f 0x75 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + 0x347 (size before relaxing) + .debug_line_str + 0x0000000000000d94 0x12d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + 0x7e7 (size before relaxing) + .debug_line_str + 0x0000000000000ec1 0x8a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + 0x4d7 (size before relaxing) + .debug_line_str + 0x0000000000000f4b 0x91 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + 0x56d (size before relaxing) + .debug_line_str + 0x0000000000000fdc 0x14e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + 0x242 (size before relaxing) + .debug_line_str + 0x000000000000112a 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_line_str + 0x000000000000112a 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x000000000000112a 0x242 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x000000000000112a 0x2bc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + 0x3ce (size before relaxing) + .debug_line_str + 0x00000000000013e6 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + 0x3d1 (size before relaxing) + .debug_line_str + 0x0000000000001457 0x102 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + 0x266 (size before relaxing) + .debug_line_str + 0x0000000000001559 0x166 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + 0x26d (size before relaxing) + .debug_line_str + 0x00000000000016bf 0x1e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + 0x379 (size before relaxing) + .debug_line_str + 0x00000000000018a5 0x172 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x401 (size before relaxing) + .debug_line_str + 0x0000000000001a17 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x401 (size before relaxing) + .debug_line_str + 0x0000000000001a88 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x40a (size before relaxing) + .debug_line_str + 0x0000000000001af9 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x3fd (size before relaxing) + .debug_line_str + 0x0000000000001b69 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x3e3 (size before relaxing) + .debug_line_str + 0x0000000000001bd9 0x8f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x4bb (size before relaxing) + .debug_line_str + 0x0000000000001c68 0x7c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x405 (size before relaxing) + .debug_line_str + 0x0000000000001ce4 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + 0x3e3 (size before relaxing) + .debug_line_str + 0x0000000000001d54 0x72 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x4ab (size before relaxing) + .debug_line_str + 0x0000000000001dc6 0x85 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x3fa (size before relaxing) + .debug_line_str + 0x0000000000001e4b 0x6f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x3fd (size before relaxing) + .debug_line_str + 0x0000000000001eba 0x161 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x3e4 (size before relaxing) + .debug_line_str + 0x000000000000201b 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x3f7 (size before relaxing) + .debug_line_str + 0x000000000000208c 0x73 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x408 (size before relaxing) + .debug_line_str + 0x00000000000020ff 0x72 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + 0x405 (size before relaxing) + .debug_line_str + 0x0000000000002171 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x3f3 (size before relaxing) + .debug_line_str + 0x00000000000021e1 0x118 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x564 (size before relaxing) + .debug_line_str + 0x00000000000022f9 0x175 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x493 (size before relaxing) + .debug_line_str + 0x000000000000246e 0x56e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_line_str + 0x000000000000246e 0x72 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x3fd (size before relaxing) + .debug_line_str + 0x00000000000024e0 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + 0x40b (size before relaxing) + .debug_line_str + 0x0000000000002554 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x3f7 (size before relaxing) + .debug_line_str + 0x00000000000025c5 0xf4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0x513 (size before relaxing) + .debug_line_str + 0x00000000000026b9 0x70 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x371 (size before relaxing) + .debug_line_str + 0x0000000000002729 0x169 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x40c (size before relaxing) + .debug_line_str + 0x0000000000002892 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x516 (size before relaxing) + .debug_line_str + 0x0000000000002903 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x3d1 (size before relaxing) + .debug_line_str + 0x0000000000002974 0x552 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_line_str + 0x0000000000002974 0x55c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_line_str + 0x0000000000002974 0xe5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x495 (size before relaxing) + .debug_line_str + 0x0000000000002a59 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x482 (size before relaxing) + .debug_line_str + 0x0000000000002acd 0x74 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x482 (size before relaxing) + +.debug_loclists + 0x0000000000000000 0xf02f + .debug_loclists + 0x0000000000000000 0x39 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + .debug_loclists + 0x0000000000000039 0x23 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + .debug_loclists + 0x000000000000005c 0x1c9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000000000000225 0x12e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + .debug_loclists + 0x0000000000000353 0x60 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + .debug_loclists + 0x00000000000003b3 0x23 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + .debug_loclists + 0x00000000000003d6 0x80 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + .debug_loclists + 0x0000000000000456 0x19d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x00000000000005f3 0x7e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + .debug_loclists + 0x0000000000000671 0x23 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + .debug_loclists + 0x0000000000000694 0xe7 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + .debug_loclists + 0x000000000000077b 0x3d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + .debug_loclists + 0x0000000000000b50 0x7c e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + .debug_loclists + 0x0000000000000bcc 0x158 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + .debug_loclists + 0x0000000000000d24 0x5e6 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x000000000000130a 0x500 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + .debug_loclists + 0x000000000000180a 0x5f4 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x0000000000001dfe 0x5f8 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000000023f6 0x155 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + .debug_loclists + 0x000000000000254b 0x14b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + .debug_loclists + 0x0000000000002696 0x9a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_loclists + 0x0000000000002730 0x1a0 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_loclists + 0x00000000000028d0 0xdb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_loclists + 0x00000000000029ab 0x81 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_loclists + 0x0000000000002a2c 0x50 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_loclists + 0x0000000000002a7c 0x1de e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_loclists + 0x0000000000002c5a 0x3cc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_loclists + 0x0000000000003026 0x7d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_loclists + 0x00000000000030a3 0xdf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_loclists + 0x0000000000003182 0x48 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_loclists + 0x00000000000031ca 0x93 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_loclists + 0x000000000000325d 0x2a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_loclists + 0x0000000000003287 0xbf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_loclists + 0x0000000000003346 0xc1 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_loclists + 0x0000000000003407 0x71 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + .debug_loclists + 0x0000000000003478 0xaa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_loclists + 0x0000000000003522 0x2f0a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_loclists + 0x000000000000642c 0x1e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_loclists + 0x000000000000644a 0x2f98 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_loclists + 0x00000000000093e2 0x38 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_loclists + 0x000000000000941a 0x6d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + .debug_loclists + 0x0000000000009487 0x4e e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_loclists + 0x00000000000094d5 0x114a e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_loclists + 0x000000000000a61f 0x97 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_loclists + 0x000000000000a6b6 0x42 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_loclists + 0x000000000000a6f8 0x10b9 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_loclists + 0x000000000000b7b1 0xb2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_loclists + 0x000000000000b863 0x1ccc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_loclists + 0x000000000000d52f 0x19d5 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_loclists + 0x000000000000ef04 0x4b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_loclists + 0x000000000000ef4f 0x7f e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_loclists + 0x000000000000efce 0x61 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +Cross Reference Table + +Symbol File +APRecvBcnStartTick E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ApFreqCalTimer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +BAROFDMSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +BasicOFDMSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BasicOFDMSched_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BcnInterval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +BcnSendTick E:/Espressif/frameworks/esp-idf-v5.0.4/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/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +Cache_Freeze_DCache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +Cache_Freeze_ICache_Disable esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +Cache_Freeze_ICache_Enable esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +Cache_Get_DCache_Line_Size esp-idf/esp_rom/libesp_rom.a(esp_rom_cache_esp32s2_esp32s3.c.obj) +Cache_Get_DROM_MMU_End esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Get_IROM_MMU_End esp-idf/esp_rom/libesp_rom.a(esp_rom_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Invalidate_Addr esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Invalidate_DCache_All esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Invalidate_ICache_All esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.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(spi_flash_os_func_noos.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(spi_flash_os_func_noos.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(spi_flash_os_func_noos.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(spi_flash_os_func_noos.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) +CanDoFreqCal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +CurFreeSigIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +CurSigIdxToBeUse E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +DefFreqCalTimer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +DefFreqCalTimerCB E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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-idf/esp_system/libesp_system.a(startup.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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BTLC_GPIO_ENABLE 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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_CAN 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_USB 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_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_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_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_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_HARD_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_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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_MAC_FACTORY 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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_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_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_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_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_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_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_SYS_DATA_PART2 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_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_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_D_D0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 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-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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_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_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_GROUP_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_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_KEY0_PURPOSE 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_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_KEY1_PURPOSE 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_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_KEY2_PURPOSE 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_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_KEY3_PURPOSE 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_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_KEY4_PURPOSE 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_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_KEY5_PURPOSE 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_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.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_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_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_SYS_DATA_PART2 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_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +FreqCalCntForScan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +GDMA esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.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/driver/libdriver.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/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +HighestFreqOffsetInOneChk E:/Espressif/frameworks/esp-idf-v5.0.4/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(station_example_main.c.obj) +LowestFreqOffsetInOneChk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +MCPWM0 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) +MCPWM1 esp-idf/hal/libhal.a(mcpwm_hal.c.obj) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) +ModBusBitWriteHook esp-idf/main/libmain.a(ModbusS.c.obj) +ModBusTCPSlave_init esp-idf/main/libmain.a(modbus-tcp.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +ModBusTcpMonitor esp-idf/main/libmain.a(modbus-tcp.c.obj) +ModBusWordWriteHook esp-idf/main/libmain.a(ModbusS.c.obj) +ModbusSlaveProcess esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) +NVSHandleEntry::s_nvs_next_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NoiseTimerInterval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +PCNT esp-idf/hal/libhal.a(pcnt_hal.c.obj) +RC_GetAckRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +RC_GetAckTime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetBlockAckTime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetCtsTime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +RC_GetRtsRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +RC_SetBasicRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +RFChannelSel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +RTCCNTL esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +RTCIO esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +RxNodeNum E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SENS esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +SPIMEM0 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/soc/libsoc.a(spi_periph.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/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) +SigInMacISR E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SigSpaceFree E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +SigSpaceMalloc E:/Espressif/frameworks/esp-idf-v5.0.4/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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +TIMERG1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +TRC_AMPDU_PER_DOWN_THRESHOLD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TRC_AMPDU_PER_UP_THRESHOLD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TRC_PER_IS_GOOD E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +TestStaFreqCalValInput E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +TmpSTAAPCloseAP E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +TxNodeNum E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +TxRxCxt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +USB_SERIAL_JTAG esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(station_example_main.c.obj) +WIFI_MESH_EVENT E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +Xthal_intlevel E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +_Bfree e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +_DebugExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_PathLocale e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +_UserExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +__DTOR_END__ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__TMC_END__ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtend.o + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__action_table e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__adddf3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) +__any_on e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__ascii_mbtowc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__ascii_wctomb e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__assert esp-idf/newlib/libnewlib.a(assert.c.obj) +__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + esp-idf/hal/libhal.a(mmu_hal.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/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.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(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(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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(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(icmp6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.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(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(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.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(pbuf.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.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_timing_config.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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(gpio.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/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(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.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.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(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.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.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.c.obj) +__b2d e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__chclass e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__copybits e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__cxa_allocate_dependent_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__cxa_allocate_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +__cxa_begin_catch e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_end_catch e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_free_dependent_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__cxa_free_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__cxa_get_exception_ptr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals_fast e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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_init_primary_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__cxa_pure_virtual e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +__cxa_rethrow e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__cxa_throw e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__terminate(void (*)()) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__cxxabiv1::__terminate_handler e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected(void (*)()) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected_handler e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +__d2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__default_global_locale e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__divdf3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdf3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +__divdi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divdi3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__divsf3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_divsf3.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +__env_lock e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +__env_unlock e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +__eqdf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__errno e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +__extendsfdf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_extendsfdf2.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +__ffsdi2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +__fixdfsi e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_fixdfsi.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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/hal/libhal.a(spi_flash_hal.c.obj) +__floatdisf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) +__floatsidf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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/hal/libhal.a(spi_flash_hal.c.obj) +__floatundisf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatdisf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +__floatunsidf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_floatsidf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__fp_lock_all e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__fp_unlock_all e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__gedf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.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(heap.c.obj) +__gettzinfo e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__global_locale_ptr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) +__gnu_cxx::__concurrence_lock_error::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_lock_error::~__concurrence_lock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_unlock_error::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__concurrence_unlock_error::~__concurrence_unlock_error() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__freeres() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__mutex::lock() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gnu_cxx::__mutex::unlock() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__gtdf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) +__hi0bits e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +__i2b e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) +__ledf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__lo0bits e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__locale_mb_cur_max e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__localeconv_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) +__lshift e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__ltdf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__mcmp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mdiff e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__moddi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_moddi3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__mprec_bigtens e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mprec_tens e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mprec_tinytens e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__muldf3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_muldf3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) +__multadd e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__multiply e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__nedf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__popcountsi2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_popcountsi2.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__ratio e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__sccl e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__sclose e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__seofread e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +__sf_fake_stderr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sf_fake_stdin e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sf_fake_stdout e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sflags e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sflush_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sfmoreglue e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__sfp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sfp_lock_acquire e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sfp_lock_release e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sfvwrite_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) +__sinit e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +__sinit_lock_acquire e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__sinit_lock_release e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__smakebuf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +__sprint_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) +__sread e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__srefill_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) +__sseek e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__ssprint_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__ssrefill_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__ssvfiscanf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +__state_table e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__subdf3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_addsubdf3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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) +__submore e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__swbuf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) +__swbuf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) +__swhatbuf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) +__swrite e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__swsetup_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +__tz_lock e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__tz_unlock e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__tzcalc_limits e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_udivdi3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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(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) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__umoddi3 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_umoddi3.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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) +__unorddf2 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti\libgcc.a(_cmpdf2.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__utoa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +__wrap__Unwind_SetEnableExceptionFdeSorting 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_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crtbegin.o +__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) +_atoi_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cleanup e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_cleanup_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cnx_start_connect_without_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +_ctype_ e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + 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) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +_do_wifi_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.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/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +_fgets_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) +_findenv_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +_fini e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +_fprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) +_fputs_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) +_fread_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.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/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_fseek_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +_fseeko_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftell_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) +_ftello_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) +_fwalk e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_fwalk_reent e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +_fwrite_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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_ppp_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_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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_init e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/no-rtti/crti.o +_invalid_pc_placeholder 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(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(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(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_localeconv_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.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_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.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(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_mbtowc_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) +_mesh_check_roots_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +_mesh_remove_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_mprec_log10 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_print_roots_count E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_printf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) +_putc_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) +_putchar_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) +_puts_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_remove_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rodata_reserved_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_force_fast_end 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) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +_sfread_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_siscanf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +_snprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) +_sprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) +_start e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_strdup_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) +_strerror_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) +_strtol_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) +_strtoll_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_strtoul_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_strtoull_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_sungetc_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_svfiprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) +_svfprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzname e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzset_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzset_unlocked e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) +_ungetc_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) +_vfprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) +_vprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) +_vsnprintf_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) +_wctomb_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc E:/Espressif/frameworks/esp-idf-v5.0.4/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(syscalls.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_xt_alloca_exc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.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/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/freertos/libfreertos.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/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/freertos/libfreertos.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_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_interrupt_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_medint2_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_user_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel 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) + esp-idf/freertos/libfreertos.a(port.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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_term_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/esp_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_ipc.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_timing_config.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_timing_tuning.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.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(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(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.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) +adc2_wifi_acquire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +adc2_wifi_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +add_mic_ie_bip E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +addba_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(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(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) +aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.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.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.c.obj) +aes_hal_wait_done esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ampdu_alloc_rx_ba_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_all E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_as_many_as_possible E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_movement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_dispatch_upto E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ampdu_free_rx_ba_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ant_btrx_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +ant_bttx_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +ant_dft_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ant_wifirx_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(wpa_auth.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) +ap_no_lr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ap_no_lr_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ap_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ap_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ap_sa_query_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +app_main esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +assoc_ie_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +atoi e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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/lwip/liblwip.a(netif.c.obj) +bars E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +bb_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +bb_intr_handl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +bbpll_en_usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) +bdc_control_main esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_ctrl_timer_init esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_encoder_init esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_motor_brake esp-idf/main/libmain.a(bdc_motor.c.obj) +bdc_motor_coast esp-idf/main/libmain.a(bdc_motor.c.obj) +bdc_motor_del esp-idf/main/libmain.a(bdc_motor.c.obj) +bdc_motor_disable esp-idf/main/libmain.a(bdc_motor.c.obj) +bdc_motor_enable esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_motor_forward esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_motor_init esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_motor_init_all esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +bdc_motor_new_mcpwm_device esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_motor_reverse esp-idf/main/libmain.a(bdc_motor.c.obj) +bdc_motor_set_speed esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bdc_pid_init esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +bias_reg_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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_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_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) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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_hpm_enable.c.obj) +bootloader_flash_qe_support_list 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) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_system/libesp_system.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) +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_wrap_set esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_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_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) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_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) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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_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) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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_system/libesp_system.a(brownout.c.obj) +brownout_hal_intr_clear esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +brownout_hal_intr_enable esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +bt_chan_pwr_interp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +bt_track_pll_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +bt_tx_gain_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +bt_tx_pwctrl_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txdc_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txiq_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +bt_txpwr_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) +bzero e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.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/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/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal.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(cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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) +call_user_start esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.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(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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(sae.c.obj) + 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(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_wpa_main.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.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.c.obj) +candidate_monitor_timer_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +cannel_scan_connect_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ccmp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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) +ceil e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_ceil.o) + esp-idf/hal/libhal.a(spi_flash_hal.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +chan14_mic_enable E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +chip7_phy_init_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +chip_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chip_v7_set_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +chip_v7_set_chan_ana E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +chip_v7_set_chan_misc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +chip_v7_set_chan_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +chm_acquire_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_cancel_op E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chm_end_op E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +chm_get_chan_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +chm_get_current_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_get_home_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +chm_mhz2num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +chm_release_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_return_home_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_set_current_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_set_home_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +chm_start_op E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +cipher_map_net80211_to_public_cipher E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.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_wpa_main.c.obj) +cleanup_glue e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) +clear_bss_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_auth_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +cnx_auth_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_bss_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_clear_blacklist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +cnx_coexist_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_coexist_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_connect_next_ap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_connect_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_get_authtype_strength E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +cnx_node_alloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +cnx_node_join E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +cnx_node_remove E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_node_search E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +cnx_obss_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_rc_search E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_age E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +cnx_remove_from_blacklist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_remove_rc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_remove_rc_except E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_sta_associated E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_sta_leave E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +cnx_sta_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +cnx_sta_scan_cmd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +cnx_validate_owe_bss E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +coex_bt_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_bt_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_condition_dissatisfy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_condition_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_ble_conn_dyn_prio_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_core_condition_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_core_condition_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_core_condition_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_event_duration_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_pre_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_pti_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_pti_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_register_start_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_status_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_core_timer_idx_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +coex_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +coex_env E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_env_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_event_duration_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_hw_timer_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_hw_timer_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_hw_timer_force E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) +coex_hw_timer_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_hw_timer_unforce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_hw.o) +coex_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_is_in_isr_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_pre_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_preference_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_pti_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_pti_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_pti_tab E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_pti_tab_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_register_start_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_register_wifi_channel_change_callback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_rom_data_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_rom_osi_funcs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_rom_osi_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_schm_all_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_idle_bt_idle_wifi_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_curr_period_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_idx_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_curr_phase_idx_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_env E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_schm_env_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_schm_get_phase_by_idx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +coex_schm_interval_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_interval_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_schm_register_btdm_callback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_status_bit_clear E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_schm_status_bit_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_schm_status_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_schm_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coex_status_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_update_lpclk_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_version_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_wifi_channel_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_wifi_channel_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) +coex_wifi_register_update_lpclk_callback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_wifi_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coex_wifi_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +coexist_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +coexist_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +config_get_wifi_ampdu_rx_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_ampdu_tx_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_amsdu_tx_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_beacon_max_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +config_get_wifi_cache_tx_buffer_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +config_get_wifi_coexist_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +config_get_wifi_csi_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +config_get_wifi_dynamic_rx_buffer_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +config_get_wifi_dynamic_tx_buffer_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +config_get_wifi_espnow_max_encrypt_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +config_get_wifi_feature_capabilities E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +config_get_wifi_mgmt_sbuf_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +config_get_wifi_nvs_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +config_get_wifi_pm_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +config_get_wifi_rx_baw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_sta_disconnected_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +config_get_wifi_static_rx_buffer_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_static_tx_buffer_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_task_core_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +config_get_wifi_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +config_get_wifi_timer_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +config_get_wifi_tx_buffer_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +config_get_wifi_wpa2_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +config_get_wifi_wps_task_stack_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +config_is_cache_tx_buf_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +connect_scan_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +console_access esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_close esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_end_select esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fcntl esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fstat esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fsync esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_open esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_read esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcdrain esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcflush esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcgetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcsetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_write esp-idf/vfs/libvfs.a(vfs_console.c.obj) +core_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +correct_rfpll_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +country_info_24ghz E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) +crc16 esp-idf/main/libmain.a(ModbusS.c.obj) +crc32_le E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.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) +crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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) +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(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_ec_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_free_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_gen_keypair esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_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_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_public_key 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_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.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_set_pubkey_point esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_edcsa_sign_verify 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_key_compare 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) +ctx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +current_task_is_wifi_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_cnt_lmac_drop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +dbg_ebuf_loc_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_event_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_int_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_hmac_rxtx_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) +dbg_hmac_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_lmac_diag_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_get_acs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +dbg_lmac_hw_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +dbg_lmac_ps_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_ps_statis_reset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +dbg_lmac_rxtx_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_lmac_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +dbg_perf_path_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_perf_path_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +dbg_perf_throughput_cal E:/Espressif/frameworks/esp-idf-v5.0.4/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) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.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) +dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_arp_reply esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(etharp.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 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_rx_options_given esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_val 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) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_setserver 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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +discnx_reason_id2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +div e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-div.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mktime.o) +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) +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) +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) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +dutytype2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +eap_allowed_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_deinit_prev_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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) +eap_peer_blob_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +eap_peer_blob_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +eap_peer_config_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +eap_peer_config_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.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_wpa2.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) +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_wpa2.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_wpa2.c.obj) +eap_sm_allowMethod esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +eap_sm_build_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.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_wpa2.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) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +eb_txdesc_space E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +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/esp_system/libesp_system.a(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_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) +eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.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(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.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) +emul_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) +esf_buf_alloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esf_buf_alloc_default_handler E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_alloc_dynamic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_alloc_dynamic_default_handler E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_free_static E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +esf_buf_recycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esf_buf_recycle_default_handler E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +esf_buf_setdown E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +esf_buf_setup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +esf_buf_setup_for_mesh E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esf_buf_setup_static E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +esf_buf_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(ctr_drbg.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(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_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.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.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(ctr_drbg.c.obj) + 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/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(ctr_drbg.c.obj) + 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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.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(ctr_drbg.c.obj) + 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/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_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_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_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.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-idf/esp_system/libesp_system.a(startup.c.obj) +esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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_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_system/libesp_system.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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_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_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_cache_op_lock_init esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cache_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.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/driver/libdriver.a(pulse_cnt.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_system/libesp_system.a(startup.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_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.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_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_coex_adapter_funcs_md5_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +esp_coex_adapter_register E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +esp_coex_external_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_coex_external_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_coex_rom_version_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +esp_coex_status_bit_clear E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +esp_coex_status_bit_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +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/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu.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(cpu.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-idf/esp_system/libesp_system.a(system_internal.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_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_crt_bundle_attach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +esp_crt_bundle_detach 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_ds_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_ds_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_hmac_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_hmac_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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.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-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.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_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/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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/esp_system/libesp_system.a(cpu_start.c.obj) +esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.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/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_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_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_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/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/esp_hw_support/libesp_hw_support.a(mac_addr.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-idf/esp_hw_support/libesp_hw_support.a(rtc_init.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_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_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_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_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_system/libesp_system.a(esp_err.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(station_example_main.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-idf/main/libmain.a(station_example_main.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) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_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) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_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_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.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_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_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/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_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_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.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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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.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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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_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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_write_encrypted 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/bootloader_support/libbootloader_support.a(bootloader_flash.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_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.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.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.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.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_init_app_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.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_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(gpio.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_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-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.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/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.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.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_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/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.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.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/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(gpio.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/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_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/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.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_asm_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_asm_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_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.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_ipc_isr_stall_pause esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_stall_resume esp-idf/esp_system/libesp_system.a(esp_ipc_isr.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_log_default_level esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.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_hpm_enable.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(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.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(regi2c_ctrl.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/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_log_early_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_level_get esp-idf/log/liblog.a(log.c.obj) +esp_log_level_set esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log.c.obj) +esp_log_system_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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/esp_netif/libesp_netif.a(esp_netif_objects.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(sar_periph_ctrl_common.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_hpm_enable.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(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) + esp-idf/main/libmain.a(station_example_main.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/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(port.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(regi2c_ctrl.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/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/pthread/libpthread.a(pthread.c.obj) +esp_log_write esp-idf/log/liblog.a(log.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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/esp_netif/libesp_netif.a(esp_netif_objects.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(sar_periph_ctrl_common.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/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(bdc_motor.c.obj) + esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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_mbo_update_non_pref_chan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_appie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_best_effort_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_check_multi_redundant_ack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_clear_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_compute_my_votes E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_conn_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_create_context E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_create_mbox E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_decrypt_vnd_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_group_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_group_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_delete_sub_children E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_disable_ps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_discard_context E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_enable_ps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_encrypt_vnd_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_fix_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_flush_scan_result E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_flush_upstream_packets E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_force_txupQ_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_forward_check_active E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_forward_packet E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_free_context E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_free_mbox E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_active_duty_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ap_connections E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_attempts E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_capacity_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_child_idx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_child_idx_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_group_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_ie_crypto_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_max_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_network_duty_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_non_mesh_connections E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_optlen E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_root_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_router_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_routing_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_routing_table_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_running_active_duty_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +esp_mesh_get_rx_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_self_organized E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_get_storage E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_topology E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_total_children_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_get_total_node_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_tsf_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_get_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ie_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ie_monitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_insert_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_io_sem_signal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_is_device_active E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_my_group E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_nwk_running E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_ps_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_root_conflicts_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_root_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_is_roots_found E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_rt_change_debug E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_is_same_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_mesh_is_scan_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_start_pm_now E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_is_switch_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_lookup_route E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_lookup_sub_route E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_mesh_map_probe_response E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_match_self E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_mcast_cover_node E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nvs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nvs_operate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_nvs_set_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_nwk_redundant_route E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_nwk_task_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_pack_multi_routing_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parent_select E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_parse_ps_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_wake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_rx_beacon_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tbtt_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_data_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_null_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_print_scan_result E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_print_txQ_waiting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_mcast E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_options E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_process_ps_awake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_process_ps_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_process_redundant_subchildren E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_ps_control_check_awake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_ps_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_duty_cycle_get_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_set_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_ext_get_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_signaling E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_get_duties E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_ps_get_ext_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_push_to_ack_state_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_push_to_ps_tx_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_push_to_rx_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_push_to_tx_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_quick_funcs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_recv E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_recv_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_recv_toDS E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_recv_xon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_children E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_revote_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_root_process_duty_duration_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_route_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_route_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_rt_change_debug E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_rx_task_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_scan_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_send E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_add_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_block_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_block_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_send_block_time E:/Espressif/frameworks/esp-idf-v5.0.4/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_mgmt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_send_stop_vote E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_send_xon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esp_mesh_set_active_duty_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_announce_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_assoc_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_set_ap_authmode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_connections E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ap_password E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_attempts E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_capacity_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_group_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_max_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_network_duty_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_network_duty_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_mesh_set_non_mesh_connections E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_router_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_set_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_topology E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_set_xon_qsize E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_sta_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_sta_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_stop_parent_reconnection E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_switch_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +esp_mesh_sync_interface_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +esp_mesh_tx_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_tx_task_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +esp_mesh_txupQ_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_mesh_waive_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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.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.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_read_result_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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_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_net80211_rom_version_get E:/Espressif/frameworks/esp-idf-v5.0.4/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 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(station_example_main.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_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_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_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(station_example_main.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_list_lock 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_list_unlock 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_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_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 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_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_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_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_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_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_reconfigure_wdts 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_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +esp_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_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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +esp_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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_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_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_is_initialized 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_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_dump_locks esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_lock_acquire esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +esp_pm_lock_create esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_lock_delete esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +esp_pm_lock_release esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +esp_pp_rom_version_get E:/Espressif/frameworks/esp-idf-v5.0.4/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-idf/esp_system/libesp_system.a(startup.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.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(igmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp.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_recover_efuse_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +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-idf/esp_system/libesp_system.a(startup.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.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/esp_system/libesp_system.a(cpu_start.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system.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_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +esp_rom_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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_hpm_enable.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/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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_freertos.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_system/libesp_system.a(reset_reason.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/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(gpio.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_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/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.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_hpm_enable.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(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(port.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(regi2c_ctrl.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(brownout.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_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.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_spiflash_config_clk 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/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_uart_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_set_as_console esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_uart_tx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_tx_wait_idle esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_rrm_send_neighbor_rep_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_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.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_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_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.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(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_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_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_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_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.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_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_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_system_abort esp-idf/esp_system/libesp_system.a(esp_system.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_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_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_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/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_init 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_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.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_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.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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.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(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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.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_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.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_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_tx_state_out E:/Espressif/frameworks/esp-idf-v5.0.4/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/vfs/libvfs.a(vfs_console.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_vfs_dev_console_register esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_dev_usb_serial_jtag_register esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) +esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) +esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.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_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_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-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.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_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_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.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_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fd 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/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_usb_serial_jtag_use_driver esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) +esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.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_wifi_80211_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_action_tx_req E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ap_deauth_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_wifi_ap_get_max_sta_conn E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_sta_aid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_aid_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_list E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_auth_done_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_beacon_monitor_configure E:/Espressif/frameworks/esp-idf-v5.0.4/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_clear_ap_list E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_11b_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_config_espnow_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_connectionless_module_set_wake_interval E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_deauthenticate_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_disarm_sta_connection_timer_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_eb_tx_status_success_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_enable_sta_privacy_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ftm_end_session E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_initiate_session E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_assoc_bssid_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_get_auto_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_wifi_get_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_config_channel_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country_code E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_event_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_inactive_time_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_key_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_max_tx_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_negotiated_bw_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_pmf_config_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_get_spp_attrubute_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_get_user_init_flag_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_get_wps_status_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_wifi_get_wps_type_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_improve_contention_ability E:/Espressif/frameworks/esp-idf-v5.0.4/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(station_example_main.c.obj) +esp_wifi_init_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_configure_wake_window E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_crypto_funcs_md5_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_get_negotiated_bandwidth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_ioctl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_is_tsf_active E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_issue_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_internal_on_coex_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +esp_wifi_internal_osi_funcs_md5_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_netstack_buf_cb E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_mac_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_retry_counter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_internal_set_spp_amsdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_sta_ip E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_tx_is_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_light_sleep_default_params E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_light_sleep_wake_ahead_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_type_md5_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_is_btm_enabled_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_ft_enabled_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_rm_enabled_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_mesh_reg_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_register_eapol_txdonecb_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_register_wpa2_cb_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_restart E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_ap_records E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_cur_ap_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_wifi_scan_get_cur_ap_record E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_wifi_scan_sort_ap_records E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_scan_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_send_deauth_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_send_mgmt_frm_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_11b_tx_plcp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +esp_wifi_set_ant E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +esp_wifi_set_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_set_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +esp_wifi_set_country_code E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/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_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_event_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_inactive_time_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_keep_alive_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_key_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_set_non_mesh_connections E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_set_promiscuous E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_set_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_sleep_delay_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_sta_key_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_tx_done_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_set_wps_cb_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_start_flag_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_status_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +esp_wifi_set_wps_type_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_skip_supp_pmkcaching E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_disable_wpa2_authmode_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_get_aid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_aid_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info_prof_pmk_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_pwe_h2e_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_wifi_sta_get_group_cipher_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_negotiated_phymode_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_pairwise_cipher_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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_param_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_use_h2e_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_pmf_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/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_rsn_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_send_mgmt_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_set_reset_param_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_clear_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_clear_cert_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_clear_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_clear_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_clear_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_clear_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_disable_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_disable_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_enable_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_enable_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_get_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_cert_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_fast_phase1_params esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_ttls_phase2_method esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_ent_set_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_set_suiteb_192bit_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_sta_wpa2_use_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_statis_dump E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_unregister_wpa2_cb_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_unregister_wpa_cb_internal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_common.c.obj) +esp_wifi_update_tsf_tick_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_lora_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +esp_wifi_vnd_roots_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.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_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(dhcp.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ets_delay_us E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +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_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_wifi/libesp_wifi.a(esp_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_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_done 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_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_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_update_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +fclose e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.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(hmac_drbg.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(md.c.obj) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ferror e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +fflush e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) +fgets e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +floor e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a(lib_a-s_floor.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +fopen e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.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(hmac_drbg.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(md.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +force_txrx_off E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) +forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +fpm_allow_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +fpm_close E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) +fpm_do_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) +fpm_do_wakeup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +fpm_is_open E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) +fpm_open E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) +fpm_rf_is_closed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm_for_bcn_only_mode.o) +fprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fputs e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fread e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.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(hmac_drbg.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(md.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.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_wpa2.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(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.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_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_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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_page.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/freertos/libfreertos.a(event_groups.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/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) + esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.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(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.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.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.c.obj) +free_bss_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +freq_get_i2c_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +freq_i2c_data_write E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +freq_i2c_write_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +frexp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +fseek e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +ftell e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) +ftm_add_resp_session E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_create_responder_session E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_free_resp_session E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_get_estimated_dist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_get_resp_session_for_peer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initator_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_end_session_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_initiator_new_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_initiator_post_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_is_initiator_supported E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_is_responder_supported E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ftm_is_supported E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ftm_map_bw_param_to_phybw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_offchan_end E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_offchan_tx_req E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_parse_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_record_t1t4_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_record_t2t3_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_request_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_allocate_para E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_ctx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_get_burst_inst_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_resp_get_burst_slot E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_responder_set_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftm_send_msmt_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_send_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_session_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_set_t1t4_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ftm_start_initiator_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ftm_validate_initiator_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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_timer/libesp_timer.a(esp_timer.c.obj) +gBitVar esp-idf/main/libmain.a(ModbusS.c.obj) +gChmCxt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +gScanStruct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +gWordVar esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +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_wpa2.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) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_beacon_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +g_beacon_idx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +g_chm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_cnxMgr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_cnx_probe_rc_list_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +g_coa_funcs_p E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_scheme.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +g_coex_adapter_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +g_coex_adapter_funcs_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +g_coex_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_core.o) +g_coex_param_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_param.o) +g_config_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.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_eb_list_desc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_eb_list_desc_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_esp_mesh_quick_funcs_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_esp_wifi_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.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_ftm_report_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +g_ftm_report_num_valid_entries E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +g_hmac_cnt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_hmac_cnt_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_ic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_ic_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_intr_lock_mux E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_is_mesh_started E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +g_is_root_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_is_standalone_sta E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +g_is_wifi_connected E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_is_wifi_connecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_is_wifi_disconnecting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_lmac_cnt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) +g_lmac_cnt_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_log_level E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_log_mod E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mac_sleep_en E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mac_sleep_en_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_ann_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_mesh_cfg_vote_percent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_chain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_conn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +g_mesh_current_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_dfs_compensation_ms E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +g_mesh_ext_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +g_mesh_ext_vote_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +g_mesh_init_ps_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_init_ps_type_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_root_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_started E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_is_started_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_manual_nwk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +g_mesh_max_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +g_mesh_monitor_parent_beacon_count E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_nvs_settings E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_packet_lifetime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +g_mesh_passive_scan_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +g_mesh_self_map_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_self_organized E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +g_mesh_self_sta_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +g_mesh_stop_event_group E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +g_mesh_topology E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_topology_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_mesh_xon_cfg_qsize E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +g_misc_nvs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +g_net80211_tx_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_no_null_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +g_osi_funcs_p E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_config.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.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_per_conn_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +g_phyFuns E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +g_pm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +g_pm_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +g_pm_cfg_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pm_cnt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +g_pm_cnt_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pm_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_pp_timer_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.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_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_spi_lock_main_flash_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +g_sta_connected_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +g_ticks_per_us_app esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +g_ticks_per_us_pro esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +g_timer_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_timer_info E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_tx_done_cb_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +g_txop_queue_status E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_txop_queue_status_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_csi_rx_ctx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_last_desc_reset_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_wdev_record_t1t4_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_record_t2t3_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wdev_set_t1t4_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wifi_crypto_funcs_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/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(station_example_main.c.obj) +g_wifi_event_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +g_wifi_feature_caps esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +g_wifi_global_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_menuconfig E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wifi_menuconfig_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +g_wifi_nvs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.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(station_example_main.c.obj) +g_wifi_osi_funcs_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +g_wpa_anonymous_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +g_wpa_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +g_wpa_client_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.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_wpa2.c.obj) +g_wpa_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +g_wpa_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.c.obj) +g_wpa_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +g_wpa_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +g_wpa_phase1_options esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +g_wpa_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_wpa2.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_wpa2.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_wpa2.c.obj) +g_wpa_suiteb_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +g_wpa_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.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_wpa2.c.obj) +g_wpa_username esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +g_wpa_username_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +gcmp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +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_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_get_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_get_free_m2m_trig_id_mask esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_hal_init esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) +gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_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_transfer_ability 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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +get_chip_version E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_dc_value E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +get_fm_sar_dout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) +get_iav_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +get_iq_value E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +get_param esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +get_phy_version_str E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +get_power_atten E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_power_db E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_rc_dout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +get_rf_freq_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +get_rf_freq_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +get_rfcal_rxiq_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +get_rfrx_sat E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +get_sar_sig_ref E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +get_tone_sar_dout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +get_total_scan_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +get_tx_gain_value E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +get_txcap_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) +get_wifi_internal_state E:/Espressif/frameworks/esp-idf-v5.0.4/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) +getle32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +gettimeofday e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +global_hapd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +gmtime e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +gmtime_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) +gpio_config esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +gpio_deep_sleep_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_force_hold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_force_unhold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_install_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_enable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_iomux_in esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_iomux_out esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_isr_handler_add esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_isr_handler_remove esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_isr_register esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pulldown_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pulldown_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_reset_pin esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +gpio_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_set_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_intr_type esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_sleep_sel_dis esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_sel_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_uninstall_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/driver/libdriver.a(gpio.c.obj) +hal_agreement_add_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_agreement_clr_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_agreement_del_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_attenna_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_ba_session_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_ba_session_store E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_beacon_ie_crc_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_beacon_ie_crc_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_clear_rx_beacon_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_coex_pti_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_coex_set_wait_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) +hal_crypto_clr_key_entry E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_crypto_get_key_entry E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_crypto_get_using_key_idx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) +hal_crypto_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_crypto_is_key_valid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_crypto_mgmt_rx_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_crypto_set_key_entry E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_disable_extern_coex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_disable_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_disable_sta_beacon_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_disable_sta_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_disable_sta_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_disable_tsf_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_enable_extern_coex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_enable_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_enable_sta_beacon_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_enable_sta_dump_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_enable_sta_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_enable_sta_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +hal_enable_tsf_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_get_sta_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_get_sta_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_get_time_to_sta_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_get_tsf_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +hal_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_is_sta_tsf_active E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_clr_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_clr_txq_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_disable_low_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_enable_low_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_fill_hwtxop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) +hal_mac_ftm_get_t3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_get_txq_pmd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_get_txq_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_interrupt_clr_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_interrupt_clr_watchdog E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_interrupt_get_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_is_dma_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_is_low_rate_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +hal_mac_is_txq_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_rate_autoack_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_mac_rx_get_end_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) +hal_mac_rx_get_end_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) +hal_mac_rx_get_last_dscr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_is_dscr_reload E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrlast E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrnext E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_base E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_dscr_reload E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_rx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_rx_set_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_csi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_rxq_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_mac_set_txq_invalid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tsf_get_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_tsf_reset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_tsf_set_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_mac_tx_config_edca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_config_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_get_blockack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_is_cbw40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_set_cca E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_tx_set_ppdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_txq_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_mac_txq_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +hal_pwr_interrupt_clr_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_pwr_interrupt_get_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_random E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_rx_disable_bssid_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_rx_enable_bssid_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_extern_coex_gpio E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_extern_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_rx_ack_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_rx_active_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_rx_beacon_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_beacon_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_light_sleep_wake_ahead_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_sta_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tbtt_ahead_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tbtt_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_sta_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +hal_set_sta_tsf_wakeup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +hal_set_tsf_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +hal_set_tx_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_set_wifi_default_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_coex.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +hal_sniffer_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_rx_clr_statistics E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) +hal_sniffer_rx_set_promis E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_sniffer_set_promis_misc_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_sniffer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +hal_timer_update_by_rtc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +has_ctrl_char esp-idf/wpa_supplicant/libwpa_supplicant.a(common.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) +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/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.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_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_get_allocated_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/esp_system/libesp_system.a(esp_system.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/esp_system/libesp_system.a(esp_system.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) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(spi_common.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/esp_wifi/libesp_wifi.a(esp_adapter.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/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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_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) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.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) +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) +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(wpa.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +hmac_md5 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) +hmac_md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha256 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(wpa_common.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(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(sha256-prf.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_auth_open E:/Espressif/frameworks/esp-idf-v5.0.4/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_delete_ptk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_deliver_data E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +hostap_recv_ctl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +hostap_recv_mgmt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +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_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_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) +hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +i2c_bbpll_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ic_add_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_beacon_monitor_configure E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_connectionless_module_set_wake_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_create_wifi_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_csi_set_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_del_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_del_key_all E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_del_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_disable_crypto E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_ebuf_alloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_ebuf_recycle_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_ebuf_recycle_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_enable_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_80211_tx_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_get_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_get_default_sched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_get_espnow_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ic_get_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ic_get_random E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ic_get_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_get_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_interface_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_is_mgmt_hwdecr_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_is_pure_sta E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_is_sta_tsf_active E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_mac_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_mac_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_obtain_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ic_pp_post E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_register_config_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_ftm_callbacks E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_register_michael_mic_failure_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_register_net80211_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_pp_tx_done_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_promis_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_register_timer_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_reset_rx_ba E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_reset_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_rx_disable_bssid_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_rx_enable_bssid_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_set_80211_tx_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_ac_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ic_set_bar_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_beacon_int E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +ic_set_espnow_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_extern_coex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ic_set_keep_alive_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_promis_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_sleep_delay_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_set_sta E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ic_set_vif E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ic_stop_extern_coex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_stop_hw_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_trc_update_def_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_trc_update_ifx_phy_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ic_tx_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ic_txq_empty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ic_update_light_sleep_default_params E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_update_light_sleep_wake_ahead_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ic_update_sta_tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ic_update_tsf_tick_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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(udp.c.obj) + esp-idf/lwip/liblwip.a(ip4.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_assoc_req_ies E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_assoc_resp_ies E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_beacon_app_ies E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_countryie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_csa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_extcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap_vendor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_body E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_add_htinfo_vendor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_duty_signaling E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ps_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_add_probe_req_ies E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_probe_resp_app_ies E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_rates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_wme_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_alloc_action_vendor_spec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_tx_buf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_ampdu_age_all E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ampdu_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ampdu_start_age_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ampdu_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_amsdu_adjust_head E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_adjust_last_length E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_encap_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_length_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_negotiate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_amsdu_send_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_req_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_resp_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_auth_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_beacon_alloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_beacon_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_better_rsn_pairwise_cipher E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_ccmp_decrypt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ccmp_encrypt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_classify E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_cnx_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_copy_eb_header E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_crypto_aes_128_cmac_decrypt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_aes_128_cmac_encrypt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_crypto_available E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_decap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_crypto_encap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_crypto_gmac_decrypt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_setkey E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee80211_deauth_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_decap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_decap1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_decrypt_espnow_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_disassoc_construct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_empty_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_amsdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_encap_esfbuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_encap_null_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_find_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_free_beacon_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_inside_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_attach esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_detach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ftm_measurement_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_ftm_req_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_ftm_request_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_ftm_sess_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_get_chan_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_get_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_mac_addr_from_frame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_ptk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_spp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_getbcnframe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_gettid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_gcmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_gpsq_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_hostapd_beacon_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ieee80211_hostapd_data_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ht_deattach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_ht_node_cleanup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_ht_node_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_ifattach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_is_40mhz_valid_bw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_bufferable_mmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_is_ht_cipher E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_is_support_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_is_tx_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_iserp_rateset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_mlme_connect_bss E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask_zero E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_set_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_node_pwrsave E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_output E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_do E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_output_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_output_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_output_raw_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_parse_action E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wapi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_phy_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_phy_mode_show E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_pm_tx_null_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_post_hmac_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) +ieee80211_proto_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_psq_cleanup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) +ieee80211_public_action_recv_mesh_awake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_public_action_send_mesh_awake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_pwrsave E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_pwrsave_node_cleanup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_pwrsave_txcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_recv_action_unregister E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_spec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_mesh_duty_signaling E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_recycle_cache_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_reg_encap_amsdu_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_reg_netstack_buf_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_max_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_min_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_chan_in_range E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_chan_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_get_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_max_tx_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_min_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_register_ftm_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_register_hostap_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_register_wapi_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_rfid_locp_recv E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_scan_deattach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_search_node E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_send_action E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_send_action_register E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_send_action_unregister E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_send_deauth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_ftmr_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_send_mgmt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_send_nulldata E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ieee80211_send_proberesp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_appie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_gtk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_phy_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_set_sta_gtk_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_tx_desc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_set_tx_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +ieee80211_set_user_sup_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_lr_rates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_setup_rates E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_sta_new_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_scan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +ieee80211_tx_ftm_msmt_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +ieee80211_tx_mgt_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_unregister_wapi_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ieee80211_update_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +ieee80211_update_phy_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_user_ie_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +ieee80211_wme_initparams E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +ieee80211w_get_active_igtk_key_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +ieee80211w_get_igtk_from_keyidx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) +if_ctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +if_ctrl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/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) +in_blacklist_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +in_rssi_adjust E:/Espressif/frameworks/esp-idf-v5.0.4/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(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.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) +internal_semphr_delete_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +io_cfg2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +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(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.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(ip.c.obj) + esp-idf/lwip/liblwip.a(ethernet.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(raw.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.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) +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(raw.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) +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(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.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(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.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(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.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(ip.c.obj) + esp-idf/lwip/liblwip.a(ethernet.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(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.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(raw.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) +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(raw.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.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(api_lib.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/main/libmain.a(modbus-tcp.c.obj) +ip_addr_any_type esp-idf/lwip/liblwip.a(ip.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) + esp-idf/lwip/liblwip.a(dns.c.obj) +ip_addr_broadcast esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.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(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.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(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.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) +ipaddr_ntoa esp-idf/lwip/liblwip.a(ip.c.obj) +ipaddr_ntoa_r esp-idf/lwip/liblwip.a(ip.c.obj) +isBitHI esp-idf/main/libmain.a(ModbusS.c.obj) +is_esp_mesh_assoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +is_esp_mesh_duty_signaling E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_esp_mesh_ext_assoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_esp_mesh_ps E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +is_lmac_idle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +is_mesh_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +is_mesh_last_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +is_my_ie_encrypted E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +is_self_mac_greater E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +iswspace e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +iswspace_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) +itoa e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) +libcoexist_reversion_git E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) +libcore_reversion_git E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) +libmesh_reversion_git E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +libnet80211_reversion_git E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +libpp_reversion_git E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lldesc_get_received_len esp-idf/soc/libsoc.a(lldesc.c.obj) +lldesc_setup_link_constrained esp-idf/soc/libsoc.a(lldesc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +lmacAdjustTimestamp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacConfMib E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacConfMib_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacDisableTransmit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacDiscardAgedMSDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacDiscardFrameExchangeSequence E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacDiscardMSDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacEndFrameExchangeSequence E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacEndRetryAMPDUFail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacGetTxFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacInit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacInitAc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacIsIdle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacIsLongFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacMSDUAged E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacPostTxComplete E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessAckTimeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessAllTxTimeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessCollision E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessCollisions E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessCollisions_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessCtsTimeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessLongRetryFail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessRxSucData E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacProcessShortRetryFail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxComplete E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessTxError E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxRtsError E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxSuccess E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxTimeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacProcessTxopQComplete E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxopSuccess E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacProcessTxseckiderr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +lmacReachLongLimit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacReachShortLimit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacRecycleMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacReleaseTxopQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacRequestTxopQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmacRetryTxFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacRxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacSetAcParam E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmacSetTxFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacTxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmacTxFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +lmac_record_txtime E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +lmac_stop_hw_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +lmac_update_tx_statistic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +local esp-idf/main/libmain.a(ModbusS.c.obj) +localeconv e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) +localtime_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_bind esp-idf/lwip/liblwip.a(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) +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_getpeername esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockname esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockopt esp-idf/lwip/liblwip.a(sockets.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_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(icmp6.c.obj) + esp-idf/lwip/liblwip.a(netif.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(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) +lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.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(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.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/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) +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) +lwip_recvfrom esp-idf/lwip/liblwip.a(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) +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) +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) +lwip_socket esp-idf/lwip/liblwip.a(sockets.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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_rxbuf_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_rxbuf_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_duration E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_htsig E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp0 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_plcp2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_pti E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_tx_set_txop_q E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac_tx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +mac_txrx_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +main e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.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(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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/esp_netif/libesp_netif.a(esp_netif_lwip.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_page.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/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.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) +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(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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) +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/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_mpi 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(ecdsa.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/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/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/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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.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.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.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/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(md.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) +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_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/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.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/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.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_aead.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(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.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(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.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(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.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(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.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_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_base64_dec_value esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_ct_base64_enc_char esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_ct_hmac 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(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.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/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ct_memcpy_if_eq esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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_mpi_uint_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_mpi_uint_lt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_mpi_uint_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_rsaes_pkcs1_v15_unpadding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ct_size_bool_eq esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_size_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_size_mask_ge esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_uint_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_ct_uint_mask esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.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/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +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_of_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_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_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_copy 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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_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(ecdh.c.obj) +mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_keypair_free 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_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_keypair_init 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_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_mul 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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_point_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(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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) +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(psa_crypto_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) +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) +mbedtls_ecp_self_test 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 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(pkwrite.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) +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/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(rsa.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_ecp.c.obj) + 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(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.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/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(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_get_unaligned_uint16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_get_unaligned_uint32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_get_unaligned_uint64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.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_hash_info_get_block_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) +mbedtls_hash_info_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.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(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) +mbedtls_hash_info_md_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.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) +mbedtls_hash_info_psa_from_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hash_info.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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) +mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_info 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/libmbedcrypto.a(constant_time.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(pkcs12.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(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/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(rsa.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/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(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/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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(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/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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/libmbedcrypto.a(pkcs5.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(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/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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) +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(pkcs12.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(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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(pkcs12.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(pkcs12.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(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_add_mpi 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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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) +mbedtls_mpi_bitlen 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(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) + 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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.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/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(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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) +mbedtls_mpi_cmp_mpi 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) + 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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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) +mbedtls_mpi_copy 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(pkparse.c.obj) + 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) + 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) +mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.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(constant_time.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(constant_time.c.obj) +mbedtls_mpi_core_exp_mod 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) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.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) +mbedtls_mpi_core_montmul_init 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_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) +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/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_mpi_exp_mod 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/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.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.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/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(pkwrite.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(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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/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/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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) +mbedtls_mpi_init 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) + 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(pkwrite.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(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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/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/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(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.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/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/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(bignum_core.c.obj) +mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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/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(ecdsa.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(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/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(ecdsa.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.c.obj) +mbedtls_mpi_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_mpi_read_binary 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(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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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(asn1parse.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(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_shift_l 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(esp_bignum.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/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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.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/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(pkparse.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(asn1write.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) +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/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_mpi_sub_mpi 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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.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) +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/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(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.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/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_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_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_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.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/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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_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_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/mbedtls/library/libmbedx509.a(x509_crt.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/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.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_type 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/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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(crypto_mbedtls-ec.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.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) +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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.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/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_psa_rsa_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.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 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2 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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.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/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.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_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.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(hmac_drbg.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/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/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_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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/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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.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_driver_wrappers.c.obj) +mbedtls_psa_random_state 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_ecp.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +mbedtls_put_unaligned_uint16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_put_unaligned_uint32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbedtls_put_unaligned_uint64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.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) +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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.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(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) +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_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) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.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_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) +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_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) +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_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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_info 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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.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/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha224_info 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/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha384_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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(entropy.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(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_free 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(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_init 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(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_update 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(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.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) +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) +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) +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) +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) +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) +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) +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) +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) +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) +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) +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) +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_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) +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) +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) +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) +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) +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_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) +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) +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) +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_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.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) +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/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.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/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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) +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_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_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_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_xor esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) +mbrtowc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) +mcpwm_acquire_group_handle esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_comparator_register_event_callbacks esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) +mcpwm_comparator_set_compare_value esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_del_comparator esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_del_generator esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_del_operator esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_del_timer esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_generator_set_action_on_brake_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_generator_set_action_on_compare_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_generator_set_action_on_timer_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_generator_set_actions_on_brake_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_generator_set_actions_on_compare_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_generator_set_actions_on_timer_event esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_generator_set_dead_time esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_generator_set_force_level esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_hal_deinit esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) +mcpwm_hal_generator_reset esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) +mcpwm_hal_init esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) +mcpwm_hal_operator_reset esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_hal_timer_reset esp-idf/hal/libhal.a(mcpwm_hal.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +mcpwm_new_comparator esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_new_generator esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_new_operator esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_new_timer esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_operator_apply_carrier esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_operator_connect_timer esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_operator_recover_from_fault esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_operator_register_event_callbacks esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_operator_set_brake_on_fault esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_periph_signals esp-idf/soc/libsoc.a(mcpwm_periph.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) +mcpwm_release_group_handle esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) +mcpwm_select_periph_clock esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +mcpwm_timer_disable esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_timer_enable esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +mcpwm_timer_get_phase esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +mcpwm_timer_register_event_callbacks esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +mcpwm_timer_set_phase_on_sync esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) +mcpwm_timer_start_stop esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/main/libmain.a(bdc_motor_mcpwm_impl.c.obj) +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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +meas_tone_pwr_db E:/Espressif/frameworks/esp-idf-v5.0.4/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(memp.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/main/libmain.a(modbus-tcp.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(memp.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/main/libmain.a(modbus-tcp.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) +memcmp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.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(pem.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(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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(asn1write.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(pmksa_cache.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(wpa.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(sta_info.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/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) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.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(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.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(ethernet.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +memcpy e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + esp-idf/lwip/liblwip.a(ethip6.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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.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(psa_crypto_cipher.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(rsa_alt_helpers.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(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_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.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(hmac_drbg.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(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.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/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.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(pmksa_cache.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(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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(sta_info.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_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_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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ie_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.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(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_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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/esp_wifi/libesp_wifi.a(esp_adapter.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(ccmp.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(crypto_mbedtls.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/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.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(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(pbuf.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 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/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/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(ModbusS.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.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(cpu.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/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.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/pthread/libpthread.a(pthread.c.obj) +memmove e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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(igmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.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(igmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(etharp.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(pbuf.c.obj) +memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) +memset e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.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(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.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(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_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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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(ecdsa.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/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(md4-internal.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_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(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_wpa2.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(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/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 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_aes_common.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(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.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/esp_wifi/libesp_wifi.a(esp_adapter.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-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(dns.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(tcp.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/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_add_option E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_chain_header_add_ttl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_check_conflict_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_check_rc_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_check_tid_mbox_full E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_child_clr_ps_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_child_set_ps_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_conn_leave E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_conn_mutex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_connect_to_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_connect_to_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_construct_rmv_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_create_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_deinit_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_encrypt_ie_plain_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_fill_rmv_sub_child E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_find_root_competitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_flush_txQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_free E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_get_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_get_tx_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_ie_type2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_init_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_init_rcandidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ioctl_sem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_is_better_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_is_ie_ignored E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_new_root_found E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_is_yield_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_look_for_network E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_malloc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_common.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_malloc_rmv_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_multi_recv_ack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_multi_send_ack E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_mutex_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_mutex_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_myself_mbox E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_node_process_cycle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_node_process_healing E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_duty_check_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_check_duration_expire E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_master_identity E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_remaining E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_master_is_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_post_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_process_remaining E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_master_identity E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_remaining E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_nwk_find_conflict_roots E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_io_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_nwk_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_pack_rmv_announcement E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_parent_check_root_conflict E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parent_select_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_parse_option E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_parse_ps_entire_rule E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_parse_ps_uplink_rule E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_pm_set_null E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_pm_tbtt_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_post_parent_assoc_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_child_macconnected E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_process_parent_organized E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +mesh_process_root_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_process_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_get_min_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_set_awake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_set_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_ps_get_duties E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_ps_keep_cnx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +mesh_ps_set_new_duty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_ps_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_recv E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_recv_add_option E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_recv_process_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_register_timer_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_root_connect_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_rx_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +mesh_rx_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) +mesh_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +mesh_scan_done_process_weak E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_select_set_ignore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_self_xonseq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_block_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_block_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_process_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_send_process_topo E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_send_roots_fixed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_roots_gone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_roots_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_send_stop_vote E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_io_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +mesh_set_parent_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_set_router E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_set_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_sta_auth_expire_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_stop_recv E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_switch_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_tcpip_mbox E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_do_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_timer_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_ps_control E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_root_connect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_route_announce E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_timer_rt_change E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +mesh_topo_get_ttl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_wifi.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +mesh_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_tx_task_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_tx_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_update_current_parent E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_update_route_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +mesh_vote_root_candidate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_waive_root E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_wifi_event_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_wifi_event_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_xmit_state_mbox E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +mesh_xon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_process_no_wnd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mesh_xon_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +misc_nvs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +misc_nvs_load E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) +misc_nvs_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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(sockets.c.obj) + esp-idf/lwip/liblwip.a(nd6.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(sockets.c.obj) + esp-idf/lwip/liblwip.a(nd6.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_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +motor_control esp-idf/main/libmain.a(mcpwm_bdc_control.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.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) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.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_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_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.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.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_block_owner 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_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_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.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.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_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_funcs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +net80211_softap_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/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_aborted esp-idf/lwip/liblwip.a(api_msg.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_closed esp-idf/lwip/liblwip.a(api_msg.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_deleted esp-idf/lwip/liblwip.a(api_msg.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) +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_reset esp-idf/lwip/liblwip.a(api_msg.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(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(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.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(udp.c.obj) + esp-idf/lwip/liblwip.a(mld6.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(igmp.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(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) +newlib_include_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) +newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +newlib_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) +newlib_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +noise_check_loop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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::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::Lock::mSemaphore esp-idf/nvs_flash/libnvs_flash.a(nvs_api.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::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_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_partition_lookup.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.cpp.obj) +nvs::NVSPartition::erase_range(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::get_address() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::get_partition_name() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::get_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_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) +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) +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::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Page::Header::calculateCrc32() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterPageState(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::calcEntries(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::copyItems(nvs::Page&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::debugDump() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::erase() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::eraseEntryAndSpan(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +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) +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::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::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::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::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_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_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_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(station_example_main.c.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_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 E:/Espressif/frameworks/esp-idf-v5.0.4/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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) +offchan_in_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_recv_action E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +offchan_send_action_tx_status E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +offchan_txop_end E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +offchan_txop_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +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) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +operator delete(void*) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) +operator delete(void*, unsigned int) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_ops.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +operator delete[](void*) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opv.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +operator delete[](void*, unsigned int) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +operator new(unsigned int) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) +operator new[](unsigned int) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opv.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) +operator new[](unsigned int, std::nothrow_t const&) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +opt_type2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_main.o) +optype2str E:/Espressif/frameworks/esp-idf-v5.0.4/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(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(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(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_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.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) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(rate_control.o) +our_instances_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +our_tx_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +our_wait_eb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +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_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.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.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_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_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(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.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(tcp_out.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(netbuf.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.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(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.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(netif.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.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(udp.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.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(sockets.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) +pbuf_copy_partial_pbuf esp-idf/lwip/liblwip.a(pbuf.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(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.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(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(tcp.c.obj) + esp-idf/main/libmain.a(modbus-tcp.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(udp.c.obj) + esp-idf/lwip/liblwip.a(ip4.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(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.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(tcp_in.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(icmp6.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +pbus_rx_dco_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +pbus_rx_dco_cal_1step E:/Espressif/frameworks/esp-idf-v5.0.4/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/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pcnt_channel_set_edge_action esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_channel_set_level_action esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_del_channel esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_del_unit esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_hal_init esp-idf/hal/libhal.a(pcnt_hal.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_new_channel esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_new_unit esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_periph_signals esp-idf/soc/libsoc.a(pcnt_periph.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_unit_add_watch_point esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_clear_count esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_disable esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_unit_enable esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_get_count esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_register_event_callbacks esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_remove_watch_point esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +pcnt_unit_set_glitch_filter esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_start esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pcnt_unit_stop esp-idf/driver/libdriver.a(pulse_cnt.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +periph_module_disable 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/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +periph_module_enable 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/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.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_system/libesp_system.a(int_wdt.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) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) +phy_11p_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +phy_analog_delay_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) +phy_bbpll_en_usb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_bbpll_i2c E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_bt_power_track E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_cal_print E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_chan_dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_chan_dump_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +phy_chan_filt_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +phy_change_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) +phy_close_pa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_close_rf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_dig_ldo_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_dig_reg_backup E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +phy_enable_low_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_fft_scale_force E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_force_rx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_freq_correct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +phy_freq_mem_backup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_ftm_comp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_adc_rand E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_fetx_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_get_i2c_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_mac_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_most_tpw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +phy_get_rf_cal_version E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_romfunc_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_romfuncs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_get_rx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_get_txpwr_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +phy_get_vdd33 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_i2c_check E:/Espressif/frameworks/esp-idf-v5.0.4/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +phy_i2c_init2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_init_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_internal_delay E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_param_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_param_track E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_reg_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_rfcal_data_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rfcal_data_sub E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_rx11blr_cfg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_rx_band_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_rx_rifs_en E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_rx_sense_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +phy_rxbb_dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_rxrf_dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_set_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +phy_set_mac_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_set_most_tpw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +phy_set_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +phy_set_tsens_range E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +phy_set_wifi_mode_only E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_tsens_attribute E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +phy_tx_gain_print E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_txpwr_backoff E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_txtone_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_txtone_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +phy_version_print E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_version_str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +phy_wakeup_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_xpd_tsens E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +pid_compute esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pid_del_control_block esp-idf/main/libmain.a(pid_ctrl.c.obj) +pid_new_control_block esp-idf/main/libmain.a(pid_ctrl.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) +pid_update_parameters esp-idf/main/libmain.a(pid_ctrl.c.obj) +pll_cap_mem_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +pm_active_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_allow_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_beacon_misc_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_beacon_monitor_configure E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_beacon_monitor_tbtt_allowed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_beacon_monitor_tbtt_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_beacon_monitor_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_beacon_timestamp_statistic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_check_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_coex_schm_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_schm_process_restart E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_schm_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_coex_separate_connectionless_window E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_coex_slice_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_coex_tbtt_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_connectionless_module_set_wake_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_connectionless_wake_interval_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_connectionless_wake_window_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_deattach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_disable_disconnected_sleep_delay_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_disable_dream_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_disable_sleep_delay_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_disconnected_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_disconnected_sleep_delay_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_disconnected_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_wake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_dream E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_dream_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_enable_active_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_disconnected_sleep_delay_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_enable_dream_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_sleep_delay_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_enable_sta_disconnected_power_management E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_force_scan_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_get_connectionless_status E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_idle_wait_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_get_sleep_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_go_to_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_go_to_wake E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_hmac_rx_data_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_is_dream E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_is_in_wifi_slice_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_is_open E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +pm_is_sleeping E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_is_waked E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_keep_alive E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_local_tsf_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_mac_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_mac_sleep_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_mac_sleep_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +pm_mac_wakeup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_mesh_set_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_noise_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_noise_check_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_off_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +pm_on_beacon_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +pm_on_coex_schm_process_restart E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_status_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +pm_on_coex_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_on_data_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_data_tx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_data_tx_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_probe_resp_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_on_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_on_tsf_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_parse_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_pend_noise_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_process_tim E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_register_connectionless_wake_window E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_register_pm_tx_null_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_rx_beacon_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_rx_data_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_scan_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_scan_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_send_nullfunc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_send_probe_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_send_probe_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +pm_send_sleep_null_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_send_wake_null_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_set_beacon_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_set_keep_alive_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_set_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_set_sleep_delay_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_set_sleep_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_sleep_delay_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_sleep_for E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pm_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +pm_tbtt_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) +pm_try_scan_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_tx_data_done_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_tx_data_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_tx_null_data_done_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) +pm_unregister_connectionless_wake_window E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pm_update_by_connectionless_status E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pm_update_light_sleep_default_params E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_update_next_tbtt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_update_params E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pm_update_tsf_tick_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pm_wake_done E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +pm_wake_up E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.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_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) +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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/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(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +power_cal_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ppAMPDU2Normal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppAdd2AMPDUTail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppAddTimCount E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppAssembleAMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppAssembleMicHdr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalFrameTimes E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppCalSubFrameLength E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTkipMic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTxAMPDULength E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCalTxopDur E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppCheckIsConnTraffic E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppCheckTxAMPDUlength E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppCheckTxConnTrafficIdle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppCheckTxIdle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +ppCheckTxQIdle E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppClearRxFragment E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +ppClearTxq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppDequeueRxq_Locked E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDequeueTxDone_Locked E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDequeueTxQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppDirectRecycleAmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppDisableQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppDiscardMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppEmptyDelimiterLength E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppEnableQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppEnqueueRxq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppEnqueueTxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppFetchTxQFirstAvail E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppFillAMPDUBar E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppGetTaskHdl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppGetTxframe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppInitTxq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppInstallKey E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +ppMapTxQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppMapWaitTxq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppMessageInQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppPauseTxAMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppPrepareBarFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppProcTxCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcTxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcTxSecFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppProcessRxPktHdr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppProcessTxQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppProcessWaitQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppProcessWaitingQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +ppReSendBar E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecordBarRRC E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecycleAmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppRecycleRxPkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRecycleTxBuf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppRegisterPromisRxCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegisterRxCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegisterTxCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegisterTxDoneUserActionCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppRegressAmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppResortTxAMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppResumeTxAMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRollBackTxQ E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +ppRxFragmentProc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRxPkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppRxProtoProc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSearchTxQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSearchTxframe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSelectNextQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppSetBarRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppSetInterface E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppSubFromAMPDU E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxFragmentProc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxPkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +ppTxProtoProc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +ppTxqEmpty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +ppUnregisterTxCallback E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_allow_cut_sevt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_attach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_can_cut_evt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_can_cut_sevt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_coex_tx_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_coex_tx_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_create_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_deattach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_default_event_handler E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_delete_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_gettid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_hdrsize E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_need_cut_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_post E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +pp_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_process_hmac_waiting_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_register_config_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_timer_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_register_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_set_cut_rx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_sig_cnt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_sig_cnt_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +pp_stop_sw_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_task_hdl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_timer_do_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +pp_timer_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +pp_timer_register_post_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +pp_wdev_funcs E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +print_roots_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +print_sta_pmk E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +printf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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/esp_ringbuf/libesp_ringbuf.a(ringbuf.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(md5.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/spi_flash/libspi_flash.a(flash_mmap.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) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.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_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_driver_pake_get_cipher_suite esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_password esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_password_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_peer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_peer_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_role esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_user esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_driver_pake_get_user_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_init 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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.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_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_key_buffer_size_from_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_pake_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_pake_get_implicit_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_input esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_output esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_driver_wrapper_pake_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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) +psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.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_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.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_empty_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) +psa_get_key_domain_parameters esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.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_wrap.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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_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_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_pake_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_get_implicit_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_input esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_output esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_password_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_peer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_role esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_set_user esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_pake_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.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_wrap.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_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) +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_set_key_domain_parameters esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +psa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_unlock_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_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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers.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_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/newlib/libnewlib.a(pthread.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_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.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_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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fread.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fgets.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ferror.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/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) +putc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putc.o) +putchar e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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(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(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +putle32 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +puts e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.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/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) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + 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(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.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) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +pwdet_ref_code E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +pwdet_tone_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) +pwr_limit_force E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +pwrsave_flushq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +pxCurrentTCB esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.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) +pxTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_agc_reg_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +ram_bb_reg_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +ram_bt_get_tx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_bt_set_tx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_bt_track_pll_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ram_bt_track_tx_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_check_noise_floor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +ram_chip_i2c_readReg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_chip_i2c_writeReg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_disable_wifi_agc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_enable_wifi_agc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_fe_i2c_reg_renew E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_get_chan_target_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +ram_get_i2c_hostid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_get_rate_fcc_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +ram_i2c_master_reset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_pbus_force_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +ram_phy_close_rf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_phy_dis_hw_set_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_en_hw_set_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_i2c_init1 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_phy_wakeup_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_pll_vol_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_read_sar2_code E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_chan_cal_interp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_noise_floor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_set_pbus_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_temp_to_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_tester_bt_cali E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) +ram_tester_wifi_cali E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) +ram_tsens_code_read E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_tsens_temp_read E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_tsens_temp_read_new E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +ram_tx_pwctrl_background E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +ram_txpwr_cal_track E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_get_tx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_set_tx_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_track_tx_power E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_tx_dig_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +ram_wifi_tx_dig_gain_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +ram_write_pll_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rand e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11BSchedTbl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11GSchedTbl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc11NSchedTbl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rc11NSchedTbl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +rcAmpduLowerRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcAttach E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcClearCurAMPDUSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcClearCurSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcClearCurStat E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcGet11BHighestRateIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGet11GHighestRateIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGet11NHighestRateIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetAmpduSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcGetDefaultHigestRateIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetHighestRateIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcGetRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcGetSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcLoRaRate2SchedIdx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcLoRaSchedTbl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcLoRaSchedTbl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcLowerSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcP2P11GSchedTbl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcP2P11NSchedTbl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rcReachRetryLimit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcSetBarRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcSetTxAmpduLimit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcTxUpdatePer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpSched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdateAMPDUParam E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rcUpdateAckSnr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdatePhyMode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rcUpdateRate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rcUpdateRxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rcUpdateTxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rc_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rc_disable_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_enable_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_default_sched E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_get_sta_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_get_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_trc_by_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_get_trc_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_only_sta_trc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +rc_set_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +rc_set_per_conn_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) +read_hw_noisefloor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) +read_pll_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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) +reconnect_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +reconnect_type2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) +regi2c_analog_cali_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_analog_cali_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.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/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.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(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/hal/libhal.a(brownout_hal.c.obj) +regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +register_chipv7_phy E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +register_ieee80211_action_vendor_get_key_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_action_vendor_spec_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_rfid_locp_recv_cb E:/Espressif/frameworks/esp-idf-v5.0.4/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.c.obj) +remove e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +rename e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +request_f E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +restart_cal E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rf_cal_data_recovery E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rf_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rfcal_pwrctrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfcal_rxiq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rfcal_txcap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfcal_txiq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +rfpll_cap_correct E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +rfpll_cap_init_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +rfpll_cap_track E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +rfpll_set_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +rfrx_sat_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rfrx_sat_rst E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +roc_op_end E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +roc_op_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_bt_filter_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_bt_tx_dig_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_cache_op_cb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) +rom_index_to_txbbgain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_noise_check_loop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rom_open_i2c_xpd E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_pbus_xpd_tx_on E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +rom_phy_ant_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_phy_bbpll_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_phy_dig_reg_backup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +rom_phy_freq_mem_backup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +rom_phy_param_addr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_reg_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_xpd_rf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rom_phy_xpd_tsens E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_read_hw_noisefloor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +rom_rx_gain_force E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +rom_set_chan_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) +rom_set_tx_dig_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_set_tx_gain_mem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_set_txcap_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_i2c.o) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_hpm_enable.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_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.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) +rom_txbbgain_to_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) +rom_wifi_agc_sat_gain E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +rom_wifi_track_pll_cap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +rom_write_txrate_power_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +roots_type2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +rotl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +rotr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +roundup2 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) +route_announce_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_timer.o) +route_announce_timer_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +route_announce_timer_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +routetype2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_route.o) +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(wpa_auth.c.obj) +rssi_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +rssi_margin E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rssi_saved E:/Espressif/frameworks/esp-idf-v5.0.4/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_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_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) + 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(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(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(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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) +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_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(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_deep_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_init esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_is_valid_gpio esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_isolate esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.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/driver/libdriver.a(rtc_io.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/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_number_get esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.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_system/libesp_system.a(brownout.c.obj) +rtc_light_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.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_set_wakeup_time esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) + esp-idf/driver/libdriver.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(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) +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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtcio_hal_isolate esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rx11NRate2AMPDULimit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +rx_11b_opt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +rx_blocking_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +rx_chan_dc_sort E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxdc_est_min E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_cover_mg_mp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_get_mis E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +rxiq_set_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) +s_eapol_txdone_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +s_encap_amsdu_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_fix_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +s_fix_rate_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +s_fragment E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +s_fragment_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +s_is_6m E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_map E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +s_mesh_running_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +s_mesh_send_mutex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +s_mesh_stop_mutex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +s_michael_mic_failure_cb E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_netstack_ref E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +s_pp_task_create_sem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_pp_task_del_sem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_spinlock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +s_tx_cacheq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_api_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_nvs E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +s_wifi_queue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +s_wifi_task_hdl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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) +sae_deinit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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(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) +sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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(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(esp_wpa3.c.obj) +sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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(esp_wpa3.c.obj) +sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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) +sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.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) +sc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +scan_add_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_build_chan_list E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_cancel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_check_hidden E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_connect_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +scan_freq_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_get_apnum E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +scan_get_owe_channel_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_get_scan_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +scan_get_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_hidden_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_profile_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_result_print E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +scan_set_act_duration E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_desChan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_home_chan_dwell_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_pas_duration E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_set_scan_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +scan_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +scan_status2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +scan_update_scan_history E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scan_validate_owe_scenarios E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +scannum E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +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) +send_ap_probe E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +set_adc_rand E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_basic.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_chan_freq_sw_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +set_chanfreq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +set_channel_rfpll_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +set_pbus_mem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_rf_freq_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +set_rfpll_freq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +set_rx_gain_cal_dc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_cal_iq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) +set_rx_gain_table E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +set_rx_sense E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +setbuf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.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(hmac_drbg.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(md.c.obj) +setlocale e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +setvbuf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setvbuf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-setbuf.o) +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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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(crypto_ops.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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(wpa.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_sha512_init_hash esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +sms4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +snprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.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(psa_its_file.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(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_wpa2.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/log/liblog.a(log_freertos.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/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_get_attr esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_init_lock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_lock_acquire_end esp-idf/driver/libdriver.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/driver/libdriver.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/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_check_dev_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_clear_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_entry esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_exit esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_req_exist esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_request esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_get_acquiring_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_get_by_id esp-idf/driver/libdriver.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/driver/libdriver.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/driver/libdriver.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/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_touch esp-idf/driver/libdriver.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/driver/libdriver.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/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_main_set_lock esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_register_destroy_func esp-idf/driver/libdriver.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_system/libesp_system.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) +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_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_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_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_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_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_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) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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_enable_list 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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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) +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/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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.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_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_timing_change_speed_mode_cache_safe esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +spi_timing_config_get_core_clock esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_config_get_cs_timing esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) +spi_timing_config_get_flash_clock_reg esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) +spi_timing_config_set_core_clock esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_config_set_flash_clock esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_config_set_psram_clock esp-idf/spi_flash/libspi_flash.a(spi_timing_config.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_enter_mspi_high_speed_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_enter_mspi_low_speed_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_flash_tuning esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +spi_timing_get_flash_timing_param esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_timing_is_tuned esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_timing_psram_tuning esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spi_timing_set_pin_drive_strength esp-idf/spi_flash/libspi_flash.a(spi_flash_timing_tuning.c.obj) +spicommon_bus_free_io_cfg esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_initialize_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_using_iomux esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spicommon_cs_free_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_cs_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_alloc esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqdma_source_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqsource_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_claim esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) +sprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sprintf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) +srand e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-rand.o) +sta_auth_ft E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_open E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_sae E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_auth_shared E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_bip_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_con_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +sta_csa_timer E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +sta_eapol_txdone_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_get_owe_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) +sta_input E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_is_wpa3_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) +sta_michael_mic_failure E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +sta_recv_assoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +sta_recv_ctl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_recv_mgmt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_reset_beacon_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +sta_retry_assoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +sta_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +sta_rx_csa E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +sta_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) +start_tx_tone_step E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +std::bad_alloc::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +std::bad_alloc::~bad_alloc() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_exception::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::exception::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) +std::get_new_handler() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +std::get_terminate() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +std::get_unexpected() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) +std::nothrow e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +std::set_new_handler(void (*)()) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_handler.o) +std::set_terminate(void (*)()) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +std::set_unexpected(void (*)()) e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +std::terminate() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_throw.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_unex_handler.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_globals.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__is_function_p() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::operator==(std::type_info const&) const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) +std::type_info::~type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) +std::type_info::~type_info() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) +std::uncaught_exception() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) +std::uncaught_exceptions() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_catch.o) +std::unexpected() e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_terminate.o) +stop_tx_tone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) +str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcat e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strchr.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.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(common.c.obj) +strcmp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.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/log/liblog.a(log.c.obj) +strcpy e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strdup e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +strerror e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +strerror_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +strerror_r e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.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/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strdup_r.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.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/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/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(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.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/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.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(def.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/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.c.obj) +strncmp e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcoexist.a(coexist_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +strnlen e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strnlen.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_network.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_io.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +strrchr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strstr e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_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/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(common.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +strtol e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-atoi.o) +strtol_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) +strtoll e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) +strtoll_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) +strtoul e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +strtoul_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) +strtoull e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) +strtoull_l e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_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(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(mem.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(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(mem.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_set_owner esp-idf/lwip/liblwip.a(sys_arch.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) +sys_sem_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.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(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.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(igmp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.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(igmp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.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/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_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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +taskYIELD_OTHER_CORE esp-idf/freertos/libfreertos.a(tasks.c.obj) +task_wdt_timeout_abort_xtensa 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) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-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) + esp-idf/main/libmain.a(modbus-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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-tcp.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) + esp-idf/main/libmain.a(modbus-tcp.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_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) + esp-idf/main/libmain.a(modbus-tcp.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_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(netif.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-time.o) + 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) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +tkip_decap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_tkip.o) +tkip_encap E:/Espressif/frameworks/esp-idf-v5.0.4/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_wpa2.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) +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_wpa2.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_align_size 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_block_size_max esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_block_size_min esp-idf/heap/libheap.a(tlsf.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_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_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) +transaction clone for std::bad_exception::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::what() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::~exception() const e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +trcAmpduSetState E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_NeedRTS E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_SetTxAmpduState E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_calc_duration E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_ctl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_ctl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +trc_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_get_espnow_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_isAmpduOn E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_isTxAmpduOperational E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +trc_onAmpduOp E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_onDisconnect E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_onPPTxDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +trc_onScanDone E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_onScanStart E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) +trc_set_80211_tx_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_set_espnow_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_set_per_pkt_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_tid_isTxAmpduOperational E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +trc_update_def_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +trc_update_ifx_phy_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_dac_cal_new E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +tsens_dac_to_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) +tsens_read_init_new E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tsens.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tsf_hal_get_counter_value E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_get_tbtt_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_get_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_get_timer_target E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_is_tsf_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_counter_value E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_modem_wakeup_early_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_early_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_intr_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_intr_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_soc_wakeup_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_soc_wakeup_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tbtt_start_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_time E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_timer_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_intr_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_intr_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_soc_wakeup_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_soc_wakeup_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_timer_target E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +tsf_hal_set_tsf_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tsf_hal_set_tsf_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_tsf.o) +tx_cap_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_gain_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_msg_id2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +tx_pwctrl_background E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +tx_pwctrl_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +tx_pwctrl_init_cal E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +tx_state_id2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) +tx_state_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_feature.o) +tx_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +tx_wifi_err2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) +txcal_debuge_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txcal_work_mode E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pbus.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txdc_cal_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txdc_cal_v70 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_cal_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txiq_cover E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_get_mis_pwr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txiq_set_reg E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +txopstart_index E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +txpwr_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) +txq_opr2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +txtone_linear_pwr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_pwdet.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tx_cal.o) +typeinfo for __gnu_cxx::__concurrence_lock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +typeinfo for __gnu_cxx::__concurrence_unlock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +typeinfo for std::bad_alloc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +typeinfo for std::exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +typeinfo name for __gnu_cxx::__concurrence_lock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +typeinfo name for __gnu_cxx::__concurrence_unlock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +typeinfo name for std::bad_alloc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +tzset e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) +udp_bind 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(dns.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(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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.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) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulp_code_track E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ulp_ext_code_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +ungetc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) +unregister_ieee80211_action_vendor_get_key_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_action_vendor_spec_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_rfid_locp_recv_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_rfid.o) +usb_serial_jtag_driver_install esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) +usb_serial_jtag_driver_uninstall esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) +usb_serial_jtag_read_bytes esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) +usb_serial_jtag_write_bytes esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) + esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.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/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(FreeRTOS-openocd.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/main/libmain.a(station_example_main.c.obj) +vEventGroupSetBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.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) +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_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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(cache_utils.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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(sar_periph_ctrl.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_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/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) + esp-idf/pthread/libpthread.a(pthread_cond_var.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.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortReleaseTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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) +vPortStoreTaskMPUSettings 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) +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/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) +vTaskAllocateMPURegions esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.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/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(mcpwm_bdc_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.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/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.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) +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/freertos/libfreertos.a(queue.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.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/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskReleaseEventListLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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) +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/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(esp_system.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +vTaskTakeEventListLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.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 e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) +vfprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vote_done2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +vote_start2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +vprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +vsnprintf e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +vtable for __cxxabiv1::__class_type_info e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +vtable for __cxxabiv1::__forced_unwind e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(si_class_type_info.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +vtable for __gnu_cxx::__concurrence_lock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +vtable for __gnu_cxx::__concurrence_unlock_error e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_alloc.o) +vtable for nvs::NVSHandle esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSHandleSimple esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +vtable for nvs::NVSPartitionManager esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::Partition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +vtable for std::bad_alloc e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(bad_alloc.o) + e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(new_op.o) +vtable for std::bad_exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::exception e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::type_info e:/espressif/tools/xtensa-esp32s3-elf/esp-2022r1-11.2.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/11.2.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a(tinfo.o) +wDevCheckBlockError E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wDevCtrl E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDevCtrl_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDevMacSleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDevMacSleep_ptr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_AppendRxBlocks E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wDev_Crypto_Disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_DiscardFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_FetchFirstDesc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_GetNoiseFloor E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Get_Next_TBTT E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_IndicateAmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_IndicateCtrlFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_IndicateFrame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Insert_KeyEntry E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Mesh_Disable_Tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Enable_Tsf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Set_TBTT E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) +wDev_ProcessFiq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_ProcessRxSucData E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_Reset_TBTT E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_SetAuthed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_SetCurChannel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wDev_SnifferRxAmpdu E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_SnifferRxData E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_disable_low_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) +wDev_ftm_record_t1t4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +wDev_ftm_record_t2t3 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_ftm_set_t1t4 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) +wDev_is_low_rate_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_record_ftm_data E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_record_ftm_data_local E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wDev_remove_KeyEntry E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wDev_reset_bcnSendTick E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_mac.o) +wait_hw_freq_busy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_track.o) +wait_rfpll_cal_end E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +wapi_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wdevProcessRxSucDataAll E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +wdev_bank_load E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_bank_store E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_hw_bug_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_len_align E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_csi_rx_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_data_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_ftm_set_callbacks E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_funcs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wdev_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wdev_get_promis_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_get_promis_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_is_data_in_rxlist E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_is_mgmt_hwdecr_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_mac_reg_load E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_reg_store E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_sleep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_sleep_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_sleep_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_mac_special_reg_load E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_special_reg_store E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_mac_wakeup E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wdev_set_csi_rx_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_set_promis_filter E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) +wdev_set_promis_misc_pkt E:/Espressif/frameworks/esp-idf-v5.0.4/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_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(int_wdt.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_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.c.obj) +wdt_hal_enable 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) +wdt_hal_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.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) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +wdt_hal_init 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(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_is_enabled 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_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(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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_write_protect_enable 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(system_internal.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(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wep E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wep_decap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) +wep_encap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_wep.o) +wifi_action_tx_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_ant_config_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update_empty_func E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_ap_pmf_enabled E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_reg_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_apb80m_release E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_apb80m_request E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_api_lock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_cali_offset E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_tester_cali.o) +wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_check_chan_param E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +wifi_clear_ap_list_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_window_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_connect_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_create_softap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_create_sta E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_crypto_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deauth_sta_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_deinit_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_destroy_sta E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_disable_pmf_config_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_disconnect_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_event_id2str E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_utilities.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_parent.o) +wifi_event_post E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) +wifi_ftm_start_initiator_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_wpa2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +wifi_get_ap_info_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_ap_list_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_bw_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_channel_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_init_state E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action_vendor.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_protocol_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_sta_list_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_tsf_time_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_get_user_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_hmac_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_init_completed E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_init_key E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_init_sta esp-idf/main/libmain.a(station_example_main.c.obj) +wifi_internal_ioctl_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_ioctl_ht2040_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_is_started E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_is_stop_in_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_log E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_sleep.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libcore.a(misc_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(hal_ampdu.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(trc.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(lmac.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(esf_buf.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_sms4.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto_ccmp.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_action.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_offchan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_chm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_timer.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_reg_db.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_proto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_power.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_phy.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_output.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_input.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ht.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ftm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ets.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_act_duty_signaling_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_event_post E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_quick.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_mesh_ie_crypto_funcs_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_crypto_key_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_deinit_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_init_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_is_roots_found_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_map_deauth_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_clear_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_get_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_set_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_ext_get_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_root_conflicts_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_get_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_set_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_set_beacon_interval_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_sta_disassoc E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mesh_switch_channel_progress E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_mode_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_nvs_ap_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_compare_cfg_diff E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_deinit E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_nvs_get_sta_listen_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) +wifi_nvs_init E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_reset_current_ap_info E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +wifi_nvs_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_sta_restore E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) +wifi_on_coex_start_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_osi_funcs_register E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_osi_ready E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211.o) +wifi_register_mgmt_frame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_register_user_ie_manufacturer_recv_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_reset_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_restore_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_disable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_enable E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pm.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_rifs_mode_en E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_reg.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +wifi_roc_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_scan_start_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_scan_stop_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_send_mgmt_frame E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_ant E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_ant_gpio E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_appie_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_auto_connect_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_bw_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_chan_range E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_channel_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_config_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_country E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_csi E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_default_ssid E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_nvs.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_event_mask E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_fix_rate_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_gpio_debug_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp_debug.o) +wifi_set_home_channel_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_log_mod_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_mac_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_max_tpw E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_mode_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_phy_2nd_chan_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_promis_filter_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_promis_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_protocol_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_ps_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_rssi_threshold E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_rx_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(if_hwctrl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_user_ie E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_set_wps_cb_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_start_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_type_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_softap_cacl_mac E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_cur_max_ap_bss_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_deauth E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_get_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_max_support_num E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_set_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_softap_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_hostap.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_softap_toomany_deny E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_sta_ap_change_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_disconnect E:/Espressif/frameworks/esp-idf-v5.0.4/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_wpa2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +wifi_sta_get_prof_password E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +wifi_sta_reg_eapol_txdone_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_reg_rxcb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(wdev.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_sta_set_ap_num_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_ap_check E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_station_get_config E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_get_config_default E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_get_current_ap_id E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_scan.o) +wifi_station_save_ap_channel E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_station_start E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_station_stop E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_stop_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_stop_sw_txq E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_txband E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +wifi_txband_ht40 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_init.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_analog_cal.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_api.o) +wifi_txq_empty E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_update_tsf_tick_interval_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_ent_enable_process E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_is_started E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wifi_wps_is_started E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) +wl_clear_ap_no_lr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_sta.o) +wl_is_ap_no_lr E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/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_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_get_eap_state esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa2_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.c.obj) +wpa2_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wpa2_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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_join esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.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_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_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) +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) +wpa_auth_sta_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.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(wpa_auth.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_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) +wpa_cipher_valid_pairwise esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.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) +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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_crypto.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(ieee80211_ioctl.o) +wpa_crypto_funcs_init E:/Espressif/frameworks/esp-idf-v5.0.4/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) +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_wpa2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.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_wpa2.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) +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) +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) +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) +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_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.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_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_wpa2.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_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_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.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) +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_wpa2.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) +wpa_supplicant_clr_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.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_validate_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_write_rsn_ie 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(eap_common.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(esp_wpa3.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_wpa2.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) +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) +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) +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(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa2.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(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.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_common.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(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.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) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wps_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wr_rf_freq_mem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +wr_rx_gain_mem E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rx_gain.o) + E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +write_freq_mem_all E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_hw_freq.o) +write_rfpll_sdm E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_phy/lib/esp32s3\libphy.a(phy_rfpll.o) +wrong_password_flag E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libnet80211.a(wl_cnx.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) +xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetBitsFromISR 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/main/libmain.a(station_example_main.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/main/libmain.a(station_example_main.c.obj) +xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortEnterCriticalTimeout esp-idf/freertos/libfreertos.a(port.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/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.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(cache_utils.c.obj) + esp-idf/driver/libdriver.a(mcpwm_com.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_oper.c.obj) + esp-idf/driver/libdriver.a(mcpwm_gen.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.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(sar_periph_ctrl.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_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/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) + esp-idf/pthread/libpthread.a(pthread_cond_var.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.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.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/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(pulse_cnt.c.obj) + esp-idf/driver/libdriver.a(mcpwm_timer.c.obj) + esp-idf/driver/libdriver.a(mcpwm_cmpr.c.obj) + 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_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_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/log/liblog.a(log_freertos.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(app_startup.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.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_cond_var.c.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/nvs_flash/libnvs_flash.a(nvs_api.cpp.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/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.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) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.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) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/vfs/libvfs.a(vfs.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/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.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/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.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/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.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) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetMaxItemSize 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) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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/driver/libdriver.a(usb_serial_jtag.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.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/driver/libdriver.a(usb_serial_jtag.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/driver/libdriver.a(usb_serial_jtag.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/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.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_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreateRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCreateRestrictedStatic esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCPU 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) +xTaskGetIdleTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.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_freertos.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_freertos.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) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.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/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) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) +xon_task_main E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libmesh.a(mesh_schedule.o) +xphyQueue E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +xswap E:/Espressif/frameworks/esp-idf-v5.0.4/components/esp_wifi/lib/esp32s3/libpp.a(pp.o) +xt_debugexception esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint5 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.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) + esp-idf/esp_system/libesp_system.a(esp_system.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/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.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_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_save_extra_nw E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_set_intclear E:/Espressif/frameworks/esp-idf-v5.0.4/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 E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) +xthal_window_spill E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw E:/Espressif/frameworks/esp-idf-v5.0.4/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/build/x509_crt_bundle.S b/build/x509_crt_bundle.S new file mode 100644 index 0000000..251e116 --- /dev/null +++ b/build/x509_crt_bundle.S @@ -0,0 +1,4135 @@ +/* * Data converted from E:/Espressif/frameworks/esp-idf-v5.0.4/app/ESP32S3_WHEEL/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +.section .rodata.embedded + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x00, 0x8d, 0x00, 0x36, 0x01, 0x26, 0x30, 0x34, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 +.byte 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 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, 0xc8, 0x68, 0xf1 +.byte 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec, 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26 +.byte 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40, 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8 +.byte 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69, 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd +.byte 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec, 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b +.byte 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81, 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3 +.byte 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96, 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31 +.byte 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5, 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56 +.byte 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc, 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2 +.byte 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48, 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6 +.byte 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32, 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78 +.byte 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7, 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c +.byte 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77, 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87 +.byte 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a, 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18 +.byte 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26, 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4 +.byte 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb, 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62 +.byte 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a, 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x39, 0x02, 0x26, 0x30, 0x37, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f +.byte 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 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 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26, 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16 +.byte 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d, 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0 +.byte 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d, 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c +.byte 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac, 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a +.byte 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8, 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30 +.byte 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae, 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b +.byte 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e, 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe +.byte 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34, 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f +.byte 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36, 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18 +.byte 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d, 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35 +.byte 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09, 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c +.byte 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72, 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d +.byte 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1, 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53 +.byte 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80, 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd +.byte 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a, 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5 +.byte 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc, 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc +.byte 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d, 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb +.byte 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16, 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17 +.byte 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d, 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e +.byte 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3, 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3 +.byte 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26, 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32 +.byte 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68, 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a +.byte 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2, 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53 +.byte 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36, 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d +.byte 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd, 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07 +.byte 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7, 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17 +.byte 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea, 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f +.byte 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b, 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51 +.byte 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc, 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f +.byte 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58, 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16 +.byte 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a, 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3 +.byte 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9, 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3a, 0x02, 0x26, 0x30, 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49, 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e +.byte 0x63, 0x6f, 0x6d, 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, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e, 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65 +.byte 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe, 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5 +.byte 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7, 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72 +.byte 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1, 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56 +.byte 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d, 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3 +.byte 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26, 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb +.byte 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78, 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e +.byte 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d, 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2 +.byte 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68, 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e +.byte 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55, 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1 +.byte 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5, 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2 +.byte 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90, 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e +.byte 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0, 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4 +.byte 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09, 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f +.byte 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39, 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9 +.byte 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a, 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3 +.byte 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9, 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69 +.byte 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b, 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50 +.byte 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a, 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad +.byte 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b, 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47 +.byte 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53, 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb +.byte 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7, 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c +.byte 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0, 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3 +.byte 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c, 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f +.byte 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9, 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f +.byte 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5, 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb +.byte 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6, 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04 +.byte 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a, 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2 +.byte 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf, 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad +.byte 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82, 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e +.byte 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3, 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72 +.byte 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae, 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16 +.byte 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b, 0x01, 0x26, 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, 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, 0xb2, 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5 +.byte 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68 +.byte 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43 +.byte 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36 +.byte 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0 +.byte 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56 +.byte 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa +.byte 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f +.byte 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30 +.byte 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66 +.byte 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d +.byte 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2 +.byte 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d +.byte 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38 +.byte 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f +.byte 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24 +.byte 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b +.byte 0x02, 0x26, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a +.byte 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61 +.byte 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 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, 0xad, 0x96 +.byte 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51 +.byte 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c +.byte 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a +.byte 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a +.byte 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac, 0x37, 0x44, 0x79, 0x85, 0x81 +.byte 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7 +.byte 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e +.byte 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8 +.byte 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a +.byte 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3 +.byte 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65 +.byte 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f +.byte 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c +.byte 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0 +.byte 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51 +.byte 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f +.byte 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b +.byte 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57 +.byte 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4 +.byte 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57 +.byte 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92 +.byte 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20 +.byte 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e +.byte 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86 +.byte 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36 +.byte 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47 +.byte 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72 +.byte 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62 +.byte 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5 +.byte 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98 +.byte 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59 +.byte 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x3b, 0x00, 0x5b, 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, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7 +.byte 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d +.byte 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b +.byte 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45 +.byte 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb, 0x66, 0xde, 0x00, 0x3b, 0x00 +.byte 0x78, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f +.byte 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a +.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x34, 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, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b +.byte 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2 +.byte 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81 +.byte 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0 +.byte 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88 +.byte 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0 +.byte 0x1e, 0xfa, 0x2e, 0x5c, 0x00, 0x3d, 0x02, 0x26, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d +.byte 0x54, 0x2d, 0x52, 0x43, 0x4d, 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, 0xba, 0x71, 0x80, 0x7a, 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13 +.byte 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c, 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9 +.byte 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6, 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7 +.byte 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17, 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17 +.byte 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4, 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91 +.byte 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77, 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43 +.byte 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0, 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71 +.byte 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13, 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1 +.byte 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde, 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21 +.byte 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30, 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10 +.byte 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17, 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b +.byte 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf, 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0 +.byte 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa, 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe +.byte 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b, 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22 +.byte 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4, 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01 +.byte 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d, 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9 +.byte 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c, 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5 +.byte 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8, 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a +.byte 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e, 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb +.byte 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68, 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c +.byte 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a, 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08 +.byte 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9, 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e +.byte 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9, 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d +.byte 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49, 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07 +.byte 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d, 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1 +.byte 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90, 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59 +.byte 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd, 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e +.byte 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35, 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c +.byte 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02, 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5 +.byte 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa, 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71 +.byte 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3, 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2 +.byte 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27, 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9 +.byte 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3d, 0x01, 0x26, 0x30 +.byte 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11 +.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47 +.byte 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x63, 0x65, 0x72, 0x74 +.byte 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xb7, 0x33, 0xb9 +.byte 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b, 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22 +.byte 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61, 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54 +.byte 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b, 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f +.byte 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1, 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24 +.byte 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3, 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee +.byte 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c, 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5 +.byte 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed, 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6 +.byte 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a, 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d +.byte 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb, 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30 +.byte 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed, 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e +.byte 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0, 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33 +.byte 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e, 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28 +.byte 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b, 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82 +.byte 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7, 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0 +.byte 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b, 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e +.byte 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac, 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x3e, 0x01, 0x26, 0x30, 0x3c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 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, 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, 0x95, 0x85, 0x3b, 0x97, 0x6f, 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6 +.byte 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9, 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47 +.byte 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8, 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35 +.byte 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62, 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7 +.byte 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95, 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14 +.byte 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6, 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69 +.byte 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74, 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73 +.byte 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03, 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02 +.byte 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5, 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3 +.byte 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74, 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35 +.byte 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2, 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d +.byte 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1, 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99 +.byte 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc, 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e +.byte 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f, 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f +.byte 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91, 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55 +.byte 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f, 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0 +.byte 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3f, 0x02, 0x26, 0x30, 0x3d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x55, 0x43, 0x41, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 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, 0xc5, 0xe6 +.byte 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24, 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99 +.byte 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b, 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5 +.byte 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed, 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78 +.byte 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93, 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5 +.byte 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec, 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae +.byte 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b, 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c +.byte 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d, 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7 +.byte 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11, 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a +.byte 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c, 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f +.byte 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82, 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52 +.byte 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d, 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d +.byte 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f, 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60 +.byte 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71, 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a +.byte 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d, 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1 +.byte 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed, 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32 +.byte 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e, 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20 +.byte 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7, 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec +.byte 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1, 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62 +.byte 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73, 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8 +.byte 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f, 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba +.byte 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0, 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c +.byte 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21, 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5 +.byte 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e, 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17 +.byte 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18, 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0 +.byte 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1, 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc +.byte 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4, 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2 +.byte 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6, 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57 +.byte 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29, 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e +.byte 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a, 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d +.byte 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f, 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39 +.byte 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47, 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc +.byte 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15, 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x3f, 0x00, 0x78, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x45, 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, 0xde, 0x6f +.byte 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1, 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97 +.byte 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68, 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24 +.byte 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34, 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0 +.byte 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd, 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29 +.byte 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd, 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8 +.byte 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9, 0x44, 0x8d, 0xe4, 0x76, 0x00, 0x3f +.byte 0x02, 0x26, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74 +.byte 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11 +.byte 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52 +.byte 0x31, 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, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4, 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0 +.byte 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c, 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03 +.byte 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf, 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf +.byte 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02, 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd +.byte 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb, 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7 +.byte 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc, 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e +.byte 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5, 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b +.byte 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03, 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71 +.byte 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a, 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0 +.byte 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36, 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c +.byte 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8, 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f +.byte 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01, 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17 +.byte 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36, 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0 +.byte 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2, 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a +.byte 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7, 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e +.byte 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9, 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69 +.byte 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1, 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc +.byte 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1, 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d +.byte 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49, 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc +.byte 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89, 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85 +.byte 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78, 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37 +.byte 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11, 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b +.byte 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91, 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4 +.byte 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b, 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56 +.byte 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76, 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a +.byte 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b, 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f +.byte 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43, 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60 +.byte 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e, 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35 +.byte 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc, 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49 +.byte 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2, 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf +.byte 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10, 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a +.byte 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7, 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9 +.byte 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x41, 0x01, 0x26, 0x30, 0x3f, 0x31, 0x24, 0x30 +.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20 +.byte 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x43, 0x6f, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53 +.byte 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 0x33, 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, 0xdf, 0xaf, 0xe9 +.byte 0x97, 0x50, 0x08, 0x83, 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c +.byte 0x6b, 0x30, 0xca, 0x5b, 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8 +.byte 0x33, 0x76, 0x49, 0x2a, 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb +.byte 0x65, 0xee, 0xfc, 0xd3, 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77 +.byte 0xb0, 0x12, 0x7b, 0xb5, 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06 +.byte 0x32, 0x83, 0xa2, 0x7e, 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a +.byte 0x31, 0xfd, 0x50, 0xbd, 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea +.byte 0x4b, 0x61, 0x81, 0xec, 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e +.byte 0x0c, 0xda, 0x09, 0x8e, 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab +.byte 0x2e, 0xbd, 0x70, 0xad, 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34 +.byte 0xd6, 0x30, 0x89, 0xff, 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c +.byte 0x92, 0x1e, 0x3d, 0x64, 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5 +.byte 0x26, 0xec, 0x38, 0x55, 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5 +.byte 0x9a, 0x9b, 0x8d, 0x1d, 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab +.byte 0xda, 0x6e, 0xf1, 0x3e, 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b +.byte 0x19, 0x2a, 0xb6, 0x29, 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x43, 0x45, 0x52, 0x54, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52 +.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d +.byte 0x44, 0x74, 0x74, 0x87, 0xfe, 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91 +.byte 0xe7, 0x0b, 0x6f, 0xce, 0x3b, 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7 +.byte 0x5e, 0x8f, 0x57, 0xeb, 0xd3, 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6 +.byte 0x0f, 0xa9, 0x88, 0xd8, 0x2e, 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5 +.byte 0x16, 0x5f, 0x6b, 0x5b, 0x00, 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f +.byte 0x1d, 0x42, 0xe5, 0x8f, 0xcf, 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22 +.byte 0x67, 0xe4, 0x69, 0xb0, 0x68, 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef +.byte 0xc4, 0xec, 0x4b, 0xbd, 0x6a, 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab +.byte 0xab, 0x35, 0x9a, 0x4c, 0xe4, 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0 +.byte 0x29, 0xd3, 0x5c, 0xf9, 0xc6, 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38 +.byte 0x40, 0xb0, 0xfe, 0x82, 0x44, 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15 +.byte 0xd3, 0xb6, 0x11, 0x69, 0x7b, 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23 +.byte 0x59, 0x9b, 0xc9, 0x22, 0x84, 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb +.byte 0xa6, 0x65, 0xf3, 0x69, 0x75, 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6 +.byte 0xd1, 0x4e, 0xa8, 0xd9, 0x8a, 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9 +.byte 0xae, 0xe5, 0xcf, 0x0d, 0x6e, 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3 +.byte 0x20, 0x2f, 0x7f, 0xfb, 0x14, 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3 +.byte 0x62, 0x5f, 0xeb, 0x35, 0x4b, 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e +.byte 0x86, 0xe2, 0xa3, 0x76, 0x8f, 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06 +.byte 0xff, 0x12, 0x46, 0xac, 0x78, 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15 +.byte 0x4f, 0x16, 0x89, 0x5b, 0xbd, 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb +.byte 0x1f, 0x67, 0xc5, 0x45, 0x8e, 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b +.byte 0x3d, 0xff, 0x51, 0x77, 0x76, 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9 +.byte 0x50, 0x1f, 0x1f, 0x7a, 0x99, 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7 +.byte 0x9c, 0x61, 0xb3, 0x35, 0x98, 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92 +.byte 0xcf, 0xd9, 0x12, 0x14, 0x64, 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3 +.byte 0xc9, 0xfa, 0x99, 0xf7, 0x46, 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c +.byte 0x50, 0xd8, 0x83, 0x65, 0x83, 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97 +.byte 0x6b, 0xd6, 0x5d, 0x13, 0xd3, 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d +.byte 0x1e, 0xcb, 0x9f, 0xa5, 0xa6, 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29 +.byte 0x13, 0x3e, 0xa3, 0xfd, 0x4f, 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44 +.byte 0x4b, 0x8a, 0x88, 0x44, 0x9c, 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x13, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50 +.byte 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 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, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd +.byte 0xf5, 0x9f, 0x8a, 0xe3, 0xf6, 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0 +.byte 0x33, 0x2a, 0xdc, 0x8d, 0x20, 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68 +.byte 0xcf, 0x8e, 0x51, 0xa3, 0x85, 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1 +.byte 0x97, 0x57, 0xd8, 0x48, 0x29, 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18 +.byte 0x9a, 0x1e, 0x24, 0xa2, 0x4f, 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4 +.byte 0x58, 0xee, 0x26, 0x4d, 0xc9, 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15 +.byte 0xe5, 0xf8, 0x8c, 0xc8, 0xd9, 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25 +.byte 0xb7, 0xba, 0xaa, 0x55, 0x41, 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf +.byte 0x66, 0xc7, 0xe9, 0xff, 0x2b, 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89 +.byte 0xf8, 0x7a, 0x00, 0x56, 0xde, 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf +.byte 0x0b, 0x77, 0x32, 0xeb, 0x62, 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06 +.byte 0x7a, 0x30, 0xc8, 0x29, 0xbf, 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f +.byte 0xbc, 0x53, 0x12, 0x17, 0x9c, 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25 +.byte 0x49, 0x9d, 0x18, 0xf2, 0xee, 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc +.byte 0xef, 0x2e, 0x92, 0x90, 0x05, 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a +.byte 0xd8, 0xf9, 0x73, 0xa7, 0x2c, 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68 +.byte 0x09, 0x2f, 0xb8, 0xf8, 0xdc, 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a +.byte 0xa7, 0x38, 0x48, 0x6c, 0xb3, 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78 +.byte 0x77, 0xba, 0x43, 0xea, 0x48, 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c +.byte 0x58, 0x5c, 0xf1, 0xee, 0xa4, 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd +.byte 0x3c, 0xb3, 0xd3, 0x48, 0x4b, 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65 +.byte 0x3e, 0xa4, 0x1e, 0xc1, 0x07, 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55 +.byte 0x21, 0xef, 0xba, 0xdc, 0x4c, 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47 +.byte 0x46, 0xd2, 0x08, 0x99, 0x16, 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01 +.byte 0x1e, 0x3c, 0x48, 0x56, 0x49, 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1 +.byte 0x6f, 0x66, 0xe9, 0x72, 0x47, 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c +.byte 0xc5, 0x94, 0x7e, 0x61, 0xc4, 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77 +.byte 0xb3, 0xbc, 0x60, 0x69, 0x56, 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd +.byte 0x48, 0xed, 0x84, 0x1f, 0x7e, 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53 +.byte 0x90, 0x78, 0x4e, 0x2d, 0x1a, 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0 +.byte 0x00, 0xe2, 0x2e, 0x6b, 0xea, 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8 +.byte 0xdc, 0xf6, 0xb2, 0x79, 0x8a, 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x44, 0x02, 0x26 +.byte 0x30, 0x42, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43 +.byte 0x56, 0x52, 0x41, 0x49, 0x5a, 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x07, 0x50, 0x4b, 0x49, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x04, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x45, 0x53, 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, 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66 +.byte 0x9a, 0x74, 0x5f, 0xd0, 0xd9, 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33 +.byte 0xc2, 0x44, 0xa3, 0xdf, 0x9a, 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f +.byte 0xbb, 0xc8, 0x0c, 0x8e, 0x6a, 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c +.byte 0xf0, 0x63, 0xb3, 0x90, 0x5a, 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1 +.byte 0x01, 0x72, 0x84, 0xb0, 0x7d, 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6 +.byte 0x0e, 0x82, 0xd2, 0x45, 0x85, 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1 +.byte 0xc2, 0xcb, 0x03, 0xbe, 0x8c, 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a +.byte 0xe8, 0xe9, 0x37, 0xa7, 0x18, 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17 +.byte 0x84, 0x18, 0xa5, 0xc8, 0xda, 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a +.byte 0x9d, 0x0a, 0xa1, 0x57, 0x43, 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b +.byte 0xd8, 0xbc, 0x4c, 0x8d, 0x28, 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae +.byte 0xed, 0xae, 0x03, 0x22, 0xb8, 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce +.byte 0x0a, 0x66, 0x9d, 0xd1, 0x40, 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f +.byte 0xc0, 0xf2, 0x9f, 0xf8, 0x7b, 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23 +.byte 0xab, 0xc6, 0xc1, 0x0f, 0x92, 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45 +.byte 0x13, 0x84, 0xe6, 0x26, 0x5e, 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06 +.byte 0xb8, 0xf0, 0x63, 0x84, 0x02, 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83 +.byte 0x25, 0xea, 0xd6, 0xc7, 0x97, 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10 +.byte 0x3e, 0x97, 0x3e, 0x6e, 0x29, 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa +.byte 0xa4, 0xc6, 0x42, 0xeb, 0x41, 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b +.byte 0xf3, 0x23, 0x36, 0xc7, 0xfe, 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff +.byte 0x08, 0x8f, 0x80, 0xbf, 0xc0, 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3 +.byte 0x31, 0xb3, 0x40, 0xf1, 0xe8, 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58 +.byte 0x9b, 0x7c, 0xfa, 0xd4, 0xf3, 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1 +.byte 0xf5, 0xcd, 0x5a, 0x19, 0xfc, 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8 +.byte 0xf9, 0xb4, 0x8b, 0x50, 0xa3, 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87 +.byte 0xfa, 0xd5, 0x2d, 0x29, 0x2a, 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb +.byte 0xce, 0x49, 0xf5, 0x8d, 0x1f, 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93 +.byte 0x86, 0x61, 0xd6, 0xe1, 0x75, 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25 +.byte 0xd6, 0x0a, 0x5a, 0x7a, 0x93, 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde +.byte 0x4f, 0xdc, 0xe0, 0xb3, 0xac, 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0 +.byte 0x29, 0x71, 0x0a, 0xc0, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x45, 0x02, 0x26, 0x30, 0x43 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69 +.byte 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xbd, 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae +.byte 0x6c, 0xb7, 0x70, 0xb4, 0x41, 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b +.byte 0xb0, 0x66, 0x8b, 0x6c, 0x48, 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23 +.byte 0x59, 0xc9, 0x8e, 0xbc, 0x58, 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63 +.byte 0x5a, 0xba, 0x9f, 0xa3, 0x0b, 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb +.byte 0xcf, 0x6e, 0x6c, 0x80, 0x87, 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5 +.byte 0x6a, 0xac, 0x13, 0x2c, 0x33, 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b +.byte 0xad, 0x00, 0x52, 0x7f, 0xcf, 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe +.byte 0x96, 0x4c, 0x43, 0x7e, 0x55, 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95 +.byte 0x6b, 0x2a, 0xb0, 0x94, 0x77, 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7 +.byte 0xcb, 0x5b, 0x9a, 0x70, 0xec, 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb +.byte 0x05, 0xc6, 0x14, 0x27, 0x2f, 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7 +.byte 0x0b, 0x1e, 0x58, 0xd1, 0x27, 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60 +.byte 0xfc, 0x4c, 0xbc, 0x35, 0x53, 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c +.byte 0xf5, 0xef, 0x5e, 0xc2, 0x6c, 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb +.byte 0x4c, 0xe8, 0xb0, 0x09, 0xc2, 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac +.byte 0xf5, 0x06, 0xa0, 0xf7, 0x36, 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea +.byte 0xe9, 0x1a, 0x0a, 0xc8, 0x0d, 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22 +.byte 0x90, 0x27, 0x3d, 0x2a, 0xe8, 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde +.byte 0x65, 0x24, 0xa4, 0x5d, 0xea, 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94 +.byte 0x36, 0x01, 0x73, 0xca, 0x06, 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a +.byte 0xc9, 0x44, 0x47, 0xb8, 0x51, 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a +.byte 0x7f, 0xbc, 0xa6, 0xef, 0x1f, 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19 +.byte 0x66, 0x3c, 0x27, 0x62, 0x29, 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4 +.byte 0xe2, 0x8e, 0x48, 0x5a, 0x00, 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9 +.byte 0x39, 0x4f, 0xf6, 0x6f, 0x04, 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59 +.byte 0xb4, 0xd8, 0x8e, 0x33, 0x84, 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c +.byte 0x68, 0xf9, 0xee, 0xd5, 0x17, 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d +.byte 0xaf, 0xd1, 0xee, 0x3c, 0x17, 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05 +.byte 0x07, 0xdc, 0x34, 0x42, 0x12, 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6 +.byte 0x48, 0xd1, 0xb3, 0x9b, 0xf3, 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76 +.byte 0x63, 0xe6, 0x02, 0xc6, 0x22, 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0 +.byte 0x3c, 0x29, 0xcf, 0x57, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x02, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e +.byte 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x10, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x76, 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, 0xb2, 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2 +.byte 0x77, 0x69, 0xe7, 0xce, 0x9d, 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c +.byte 0x27, 0xac, 0x8e, 0x00, 0xba, 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e +.byte 0xb2, 0xaf, 0xc7, 0xd5, 0x62, 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2 +.byte 0x36, 0xe9, 0x0c, 0x85, 0xf6, 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33 +.byte 0xa5, 0xcb, 0x31, 0xb8, 0x3a, 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea +.byte 0xf4, 0x7b, 0x03, 0xad, 0x68, 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d +.byte 0xcd, 0x63, 0xc3, 0xa3, 0xf6, 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9 +.byte 0x3d, 0xa5, 0x74, 0x96, 0xfe, 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44 +.byte 0xf1, 0x0c, 0x77, 0x15, 0x92, 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1 +.byte 0xa0, 0xb3, 0x96, 0xb2, 0x3a, 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62 +.byte 0xc4, 0x58, 0xb3, 0x79, 0xc5, 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61 +.byte 0x38, 0xf1, 0x59, 0x3d, 0x8e, 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9 +.byte 0x02, 0x65, 0xb4, 0x8e, 0x5c, 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3 +.byte 0x7f, 0x99, 0x45, 0x99, 0x15, 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc +.byte 0x69, 0x12, 0x86, 0xc2, 0x17, 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92 +.byte 0x66, 0xce, 0xa4, 0x53, 0xe5, 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8 +.byte 0xe3, 0x7c, 0xde, 0xe3, 0xff, 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9 +.byte 0x25, 0x05, 0xeb, 0x48, 0xf8, 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c +.byte 0x44, 0xca, 0x26, 0xe1, 0x73, 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6 +.byte 0xb9, 0x24, 0xb3, 0x6b, 0x44, 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c +.byte 0xb6, 0x33, 0x57, 0x7a, 0x95, 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02 +.byte 0x05, 0x86, 0x2e, 0x7c, 0x2d, 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f +.byte 0xde, 0x20, 0xd8, 0x5b, 0x7e, 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d +.byte 0x37, 0xa2, 0x0e, 0x2e, 0x3d, 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e +.byte 0xdc, 0xc6, 0xe9, 0x12, 0x4e, 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6 +.byte 0xa6, 0xc9, 0xf2, 0x2d, 0xb9, 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa +.byte 0xc0, 0xad, 0x1d, 0x98, 0x14, 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d +.byte 0xb7, 0x1b, 0x30, 0x19, 0xc4, 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8 +.byte 0x05, 0xba, 0xf1, 0xaa, 0x1c, 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8 +.byte 0x76, 0x62, 0x47, 0x8b, 0x10, 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05 +.byte 0xcb, 0xdc, 0xc1, 0x4a, 0x5e, 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb +.byte 0xc1, 0xca, 0x42, 0xd5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63 +.byte 0x69, 0x61, 0x6c, 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, 0xf6, 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb +.byte 0x1f, 0x01, 0xb2, 0xe3, 0x73, 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce +.byte 0xc3, 0xb7, 0xab, 0x2c, 0x4f, 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2 +.byte 0x8f, 0x1f, 0x1e, 0x86, 0x19, 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85 +.byte 0x35, 0x79, 0x32, 0x2d, 0xbb, 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71 +.byte 0x5f, 0xe9, 0x42, 0xbe, 0x94, 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6 +.byte 0x2b, 0x6d, 0xad, 0x05, 0xf0, 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b +.byte 0x47, 0xa5, 0x23, 0x5b, 0x7a, 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1 +.byte 0xd6, 0x28, 0x89, 0xcf, 0x94, 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0 +.byte 0x0b, 0x31, 0xe2, 0x2b, 0x26, 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a +.byte 0x05, 0xf3, 0xbd, 0x9b, 0x69, 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07 +.byte 0x02, 0xc9, 0x37, 0xfd, 0xc7, 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4 +.byte 0xb5, 0xc8, 0x7a, 0x79, 0xd9, 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66 +.byte 0x81, 0x35, 0xaf, 0x44, 0xba, 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e +.byte 0x50, 0x4e, 0x7a, 0xe3, 0x3a, 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a +.byte 0xab, 0x57, 0x03, 0x22, 0x28, 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3 +.byte 0xdc, 0x0e, 0x79, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b +.byte 0x69, 0x6e, 0x67, 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, 0xb4, 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52 +.byte 0xa0, 0xeb, 0xa3, 0xcf, 0x79, 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65 +.byte 0x8f, 0x67, 0x64, 0xe2, 0x06, 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d +.byte 0xf2, 0x60, 0x9d, 0x30, 0x4e, 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab +.byte 0x33, 0x77, 0x35, 0x44, 0xd8, 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47 +.byte 0xa1, 0x6a, 0x69, 0x8b, 0xd9, 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb +.byte 0x9a, 0x90, 0x23, 0x6b, 0x9a, 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa +.byte 0xab, 0x53, 0x2b, 0xdc, 0xbb, 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c +.byte 0xd4, 0x6a, 0xad, 0x22, 0xba, 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24 +.byte 0x4b, 0x40, 0x44, 0xb1, 0x1b, 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8 +.byte 0xfc, 0xf1, 0xf1, 0x23, 0x53, 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d +.byte 0xbd, 0x95, 0xd4, 0xce, 0xbe, 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00 +.byte 0x29, 0xeb, 0x3c, 0x46, 0xf0, 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e +.byte 0x14, 0x37, 0x42, 0x04, 0xa3, 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c +.byte 0x0a, 0xe3, 0xa9, 0x66, 0x89, 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77 +.byte 0x46, 0xc8, 0x7d, 0xf6, 0xf4, 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c +.byte 0x16, 0xbd, 0xb4, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 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, 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29 +.byte 0x8a, 0xf0, 0x0f, 0x81, 0xc8, 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85 +.byte 0xf3, 0x2f, 0x81, 0xad, 0x32, 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e +.byte 0x1c, 0x18, 0x3a, 0x5c, 0x9c, 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54 +.byte 0x11, 0xcb, 0xed, 0xab, 0xe0, 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b +.byte 0x2d, 0xfd, 0xe9, 0x3e, 0xef, 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d +.byte 0xfd, 0xa4, 0xda, 0xff, 0x9e, 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba +.byte 0x5b, 0x2b, 0x1c, 0x7a, 0x35, 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60 +.byte 0x2b, 0xef, 0xd7, 0x60, 0xc3, 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11 +.byte 0x13, 0xc4, 0x9c, 0x77, 0x76, 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2 +.byte 0x05, 0xe6, 0xb9, 0x56, 0xc1, 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07 +.byte 0x95, 0x8a, 0x4b, 0xdf, 0x8f, 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab +.byte 0x0c, 0xf9, 0x85, 0xeb, 0x44, 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5 +.byte 0x73, 0xaf, 0x6b, 0xb4, 0x7e, 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95 +.byte 0x2d, 0x42, 0x87, 0xd7, 0xd5, 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4 +.byte 0xf8, 0x89, 0x3f, 0xd1, 0x75, 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc +.byte 0x6d, 0xde, 0x89, 0xc2, 0x65, 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac +.byte 0x92, 0xdb, 0xea, 0xfe, 0x79, 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b +.byte 0xe5, 0x1f, 0xfb, 0x9a, 0x9f, 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9 +.byte 0xb4, 0x76, 0x06, 0x52, 0xe6, 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b +.byte 0x20, 0x19, 0x02, 0xe8, 0x74, 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67 +.byte 0xc1, 0x0e, 0x61, 0x60, 0x88, 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1 +.byte 0x23, 0x54, 0xdf, 0x44, 0x76, 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf +.byte 0x35, 0x1d, 0xdc, 0xa1, 0x77, 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff +.byte 0xe5, 0x80, 0xd7, 0x0b, 0x63, 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97 +.byte 0xb3, 0xd2, 0xa2, 0xb5, 0xbe, 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37 +.byte 0xb9, 0x86, 0x73, 0x33, 0xd7, 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1 +.byte 0xd1, 0xba, 0x67, 0x5f, 0x95, 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a +.byte 0x4c, 0xb2, 0x04, 0xd2, 0xab, 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9 +.byte 0x91, 0xda, 0x0c, 0x8f, 0x64, 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d +.byte 0x3a, 0xd6, 0xfe, 0x7d, 0x5b, 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3 +.byte 0x44, 0x32, 0x35, 0x09, 0x62, 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21 +.byte 0xe3, 0xf8, 0xeb, 0x1d, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73 +.byte 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x33, 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, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3 +.byte 0x4d, 0xee, 0xfe, 0xed, 0xc7, 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb +.byte 0x0d, 0x59, 0x91, 0x74, 0xcf, 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d +.byte 0x91, 0x68, 0xd8, 0x20, 0x0e, 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7 +.byte 0x3f, 0x99, 0x1a, 0xcd, 0xeb, 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f +.byte 0xfc, 0xfd, 0x70, 0x8f, 0x0b, 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29 +.byte 0x76, 0xff, 0xb1, 0x56, 0x79, 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68 +.byte 0xa4, 0x01, 0x4f, 0x0f, 0xa4, 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab +.byte 0x58, 0x57, 0xe7, 0x54, 0x86, 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c +.byte 0xa3, 0x3e, 0xda, 0xfb, 0x82, 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce +.byte 0xd0, 0x13, 0x4e, 0xff, 0xbf, 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55 +.byte 0xeb, 0xb1, 0xbb, 0x9d, 0xfb, 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5 +.byte 0xcb, 0xa1, 0x3f, 0x42, 0x69, 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61 +.byte 0x91, 0xfd, 0xa6, 0xae, 0x4e, 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04 +.byte 0xd0, 0xc8, 0x9c, 0x88, 0xdb, 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78 +.byte 0xb6, 0xee, 0xdc, 0x80, 0xb1, 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d +.byte 0xb7, 0xd5, 0xce, 0x9c, 0xc2, 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f +.byte 0xae, 0x7d, 0x9f, 0xf8, 0xde, 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1 +.byte 0x5f, 0x26, 0xe1, 0x88, 0x4d, 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7 +.byte 0x3b, 0x84, 0x89, 0x93, 0xc4, 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2 +.byte 0xee, 0x7b, 0xba, 0x52, 0x42, 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97 +.byte 0xfc, 0x9d, 0x3f, 0x0a, 0x29, 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf +.byte 0x8b, 0x99, 0xbe, 0xac, 0x9b, 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8 +.byte 0xf6, 0xc7, 0xee, 0x97, 0x14, 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60 +.byte 0x84, 0xa6, 0xe9, 0x2a, 0x76, 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0 +.byte 0x73, 0x63, 0xd9, 0x6a, 0x92, 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30 +.byte 0xfc, 0x09, 0xed, 0x68, 0x22, 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f +.byte 0x2a, 0xdd, 0xca, 0xe1, 0x90, 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93 +.byte 0xa0, 0x9c, 0x8c, 0x19, 0xff, 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1 +.byte 0x70, 0x8f, 0x2c, 0x0a, 0xe5, 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32 +.byte 0xe6, 0x13, 0x5c, 0x6b, 0xfe, 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba +.byte 0x7d, 0x48, 0x3e, 0xa8, 0x69, 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d +.byte 0x25, 0x4b, 0xda, 0xff, 0x40, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30 +.byte 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16 +.byte 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x47, 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, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e +.byte 0xa9, 0x50, 0x2d, 0x16, 0x44, 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13 +.byte 0x2a, 0xbc, 0x65, 0x57, 0x82, 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f +.byte 0xfc, 0xef, 0xa2, 0xd0, 0xc0, 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28 +.byte 0x58, 0x00, 0xa3, 0x47, 0xc7, 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55 +.byte 0xcc, 0x8b, 0xc1, 0x57, 0x1f, 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae +.byte 0x7e, 0x6d, 0xba, 0x81, 0x1c, 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84 +.byte 0xdb, 0x52, 0x2c, 0xf3, 0x0e, 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e +.byte 0xd8, 0x3e, 0xe6, 0x18, 0x37, 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f +.byte 0x9c, 0xe9, 0xb3, 0x3c, 0x2b, 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60 +.byte 0xbd, 0xdd, 0xb5, 0x99, 0x64, 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c +.byte 0xe0, 0x62, 0x10, 0x02, 0x9f, 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba +.byte 0x84, 0x7a, 0x60, 0x3c, 0x6a, 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5 +.byte 0x50, 0x86, 0xcb, 0xb4, 0xaf, 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c +.byte 0xa8, 0xee, 0xbe, 0xa6, 0xe5, 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22 +.byte 0x5d, 0x32, 0x6a, 0x97, 0x97, 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a +.byte 0xc5, 0x52, 0x89, 0xf9, 0x24, 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69 +.byte 0x2b, 0xd1, 0x02, 0x24, 0xf2, 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7 +.byte 0x6d, 0x30, 0x37, 0x90, 0x2a, 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5 +.byte 0xcb, 0x34, 0x89, 0x92, 0xf1, 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb +.byte 0x0c, 0x0c, 0x0b, 0x7c, 0x0b, 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d +.byte 0xb2, 0x32, 0xcc, 0xd8, 0x17, 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd +.byte 0x97, 0x3e, 0x29, 0x75, 0xe7, 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d +.byte 0xbc, 0x0d, 0x50, 0xca, 0x03, 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf +.byte 0x72, 0x14, 0x69, 0x0e, 0xa5, 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b +.byte 0x62, 0x20, 0x10, 0x67, 0x39, 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20 +.byte 0x83, 0xb5, 0x8c, 0x4a, 0x56, 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3 +.byte 0xe2, 0x68, 0x6e, 0x7d, 0x8d, 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80 +.byte 0xae, 0xaa, 0x56, 0x97, 0x6f, 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91 +.byte 0xb6, 0x1c, 0x8c, 0x26, 0xda, 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c +.byte 0x4c, 0x80, 0x8f, 0x77, 0x7b, 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e +.byte 0x54, 0x6d, 0x98, 0xe0, 0xe1, 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47 +.byte 0x19, 0x9d, 0xeb, 0xe6, 0x6b, 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x00, 0x78 +.byte 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17 +.byte 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d +.byte 0x69, 0x75, 0x6d, 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, 0x0d +.byte 0x30, 0x5e, 0x1b, 0x15, 0x9d, 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca +.byte 0x15, 0x1c, 0xcd, 0x62, 0xf3, 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc +.byte 0x12, 0xea, 0xf4, 0x14, 0x5f, 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43 +.byte 0x78, 0xac, 0xd0, 0x37, 0xc3, 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8 +.byte 0x3d, 0x2e, 0x2f, 0x78, 0xc4, 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95 +.byte 0x1d, 0x4e, 0x18, 0x42, 0x95, 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x00 +.byte 0x48, 0x00, 0x78, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 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, 0x9c, 0x0e, 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5 +.byte 0x46, 0xa7, 0xad, 0x32, 0x19, 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a +.byte 0x10, 0xc7, 0xda, 0x89, 0xb0, 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea +.byte 0xbe, 0xb2, 0x80, 0x2b, 0xcd, 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70 +.byte 0x08, 0x00, 0x75, 0xea, 0x93, 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec +.byte 0x92, 0x2f, 0x53, 0x84, 0xdb, 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a +.byte 0x81, 0x3c, 0x20, 0x00, 0x48, 0x02, 0x26, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73 +.byte 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 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 0xac, 0xac, 0x74, 0x32, 0xe8, 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d +.byte 0x45, 0xba, 0x29, 0x88, 0xb2, 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39 +.byte 0xa1, 0x55, 0xe9, 0x67, 0x34, 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b +.byte 0x5e, 0xe1, 0x1d, 0xa9, 0xb7, 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60 +.byte 0x40, 0x1f, 0xa6, 0xb0, 0xb6, 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc +.byte 0x62, 0x05, 0x02, 0x16, 0xbf, 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2 +.byte 0xcb, 0xd5, 0xa6, 0xbb, 0x0c, 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab +.byte 0x74, 0x42, 0xef, 0xf0, 0x74, 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf +.byte 0x5e, 0x87, 0x0a, 0x40, 0xfb, 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1 +.byte 0x8f, 0xd6, 0xae, 0xd5, 0x7f, 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b +.byte 0x27, 0xd0, 0x86, 0xd0, 0x1c, 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2 +.byte 0xad, 0xef, 0xf3, 0x84, 0x4b, 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b +.byte 0xd6, 0x27, 0x71, 0x27, 0xed, 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a +.byte 0xcc, 0x3f, 0x0a, 0xfa, 0x46, 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb +.byte 0x5d, 0xf6, 0xb4, 0x6a, 0xb3, 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14 +.byte 0xf9, 0x81, 0xed, 0x65, 0x16, 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3 +.byte 0x2b, 0xc0, 0x9d, 0xf9, 0x14, 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd +.byte 0x78, 0x38, 0x9a, 0xeb, 0x42, 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6 +.byte 0x82, 0xb5, 0xf3, 0x96, 0xdd, 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b +.byte 0x2c, 0xd4, 0x72, 0x73, 0x43, 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9 +.byte 0xc0, 0x90, 0x60, 0x37, 0x45, 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74 +.byte 0x5d, 0x42, 0xbe, 0x06, 0xf5, 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07 +.byte 0x4d, 0x40, 0x7e, 0x24, 0xc5, 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23 +.byte 0xfa, 0x27, 0x71, 0xc9, 0xdf, 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c +.byte 0x5f, 0x29, 0x63, 0x31, 0x59, 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d +.byte 0x53, 0xa6, 0x7e, 0x15, 0xfc, 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7 +.byte 0x6b, 0x19, 0xcb, 0xf3, 0x7b, 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d +.byte 0x1c, 0xa6, 0x6e, 0x0e, 0xe9, 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f +.byte 0xb1, 0x54, 0x7b, 0xfe, 0x6a, 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07 +.byte 0x21, 0x6b, 0x81, 0x8f, 0xdb, 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b +.byte 0x36, 0x93, 0xe8, 0x3d, 0xbd, 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf +.byte 0x98, 0xa8, 0x06, 0xc2, 0xf8, 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20 +.byte 0x47, 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, 0xc4, 0xf1, 0x87, 0x7f, 0xd3, 0x78, 0x31, 0xf7, 0x38, 0xc9, 0xf8, 0xc3, 0x99 +.byte 0x43, 0xbc, 0xc7, 0xf7, 0xbc, 0x37, 0xe7, 0x4e, 0x71, 0xba, 0x4b, 0x8f, 0xa5, 0x73, 0x1d, 0x5c +.byte 0x6e, 0x98, 0xae, 0x03, 0x57, 0xae, 0x38, 0x37, 0x43, 0x2f, 0x17, 0x3d, 0x1f, 0xc8, 0xce, 0x68 +.byte 0x10, 0xc1, 0x78, 0xae, 0x19, 0x03, 0x2b, 0x10, 0xfa, 0x2c, 0x79, 0x83, 0xf6, 0xe8, 0xb9, 0x68 +.byte 0xb9, 0x55, 0xf2, 0x04, 0x44, 0xa7, 0x39, 0xf9, 0xfc, 0x04, 0x8b, 0x1e, 0xf1, 0xa2, 0x4d, 0x27 +.byte 0xf9, 0x61, 0x7b, 0xba, 0xb7, 0xe5, 0xa2, 0x13, 0xb6, 0xeb, 0x61, 0x3e, 0xd0, 0x6c, 0xd1, 0xe6 +.byte 0xfb, 0xfa, 0x5e, 0xed, 0x1d, 0xb4, 0x9e, 0xa0, 0x35, 0x5b, 0xa1, 0x92, 0xcb, 0xf0, 0x49, 0x92 +.byte 0xfe, 0x85, 0x0a, 0x05, 0x3e, 0xe6, 0xd9, 0x0b, 0xe2, 0x4f, 0xbb, 0xdc, 0x95, 0x37, 0xfc, 0x91 +.byte 0xe9, 0x32, 0x35, 0x22, 0xd1, 0x1f, 0x3a, 0x4e, 0x27, 0x85, 0x9d, 0xb0, 0x15, 0x94, 0x32, 0xda +.byte 0x61, 0x0d, 0x47, 0x4d, 0x60, 0x42, 0xae, 0x92, 0x47, 0xe8, 0x83, 0x5a, 0x50, 0x58, 0xe9, 0x8a +.byte 0x8b, 0xb9, 0x5d, 0xa1, 0xdc, 0xdd, 0x99, 0x4a, 0x1f, 0x36, 0x67, 0xbb, 0x48, 0xe4, 0x83, 0xb6 +.byte 0x37, 0xeb, 0x48, 0x3a, 0xaf, 0x0f, 0x67, 0x8f, 0x17, 0x07, 0xe8, 0x04, 0xca, 0xef, 0x6a, 0x31 +.byte 0x87, 0xd4, 0xc0, 0xb6, 0xf9, 0x94, 0x71, 0x7b, 0x67, 0x64, 0xb8, 0xb6, 0x91, 0x4a, 0x42, 0x7b +.byte 0x65, 0x2e, 0x30, 0x6a, 0x0c, 0xf5, 0x90, 0xee, 0x95, 0xe6, 0xf2, 0xcd, 0x82, 0xec, 0xd9, 0xa1 +.byte 0x4a, 0xec, 0xf6, 0xb2, 0x4b, 0xe5, 0x45, 0x85, 0xe6, 0x6d, 0x78, 0x93, 0x04, 0x2e, 0x9c, 0x82 +.byte 0x6d, 0x36, 0xa9, 0xc4, 0x31, 0x64, 0x1f, 0x86, 0x83, 0x0b, 0x2a, 0xf4, 0x35, 0x0a, 0x78, 0xc9 +.byte 0x55, 0xcf, 0x41, 0xb0, 0x47, 0xe9, 0x30, 0x9f, 0x99, 0xbe, 0x61, 0xa8, 0x06, 0x84, 0xb9, 0x28 +.byte 0x7a, 0x5f, 0x38, 0xd9, 0x1b, 0xa9, 0x38, 0xb0, 0x83, 0x7f, 0x73, 0xc1, 0xc3, 0x3b, 0x48, 0x2a +.byte 0x82, 0x0f, 0x21, 0x9b, 0xb8, 0xcc, 0xa8, 0x35, 0xc3, 0x84, 0x1b, 0x83, 0xb3, 0x3e, 0xbe, 0xa4 +.byte 0x95, 0x69, 0x01, 0x3a, 0x89, 0x00, 0x78, 0x04, 0xd9, 0xc9, 0xf4, 0x99, 0x19, 0xab, 0x56, 0x7e +.byte 0x5b, 0x8b, 0x86, 0x39, 0x15, 0x91, 0xa4, 0x10, 0x2c, 0x09, 0x32, 0x80, 0x60, 0xb3, 0x93, 0xc0 +.byte 0x2a, 0xb6, 0x18, 0x0b, 0x9d, 0x7e, 0x8d, 0x49, 0xf2, 0x10, 0x4a, 0x7f, 0xf9, 0xd5, 0x46, 0x2f +.byte 0x19, 0x92, 0xa3, 0x99, 0xa7, 0x26, 0xac, 0xbb, 0x8c, 0x3c, 0xe6, 0x0e, 0xbc, 0x47, 0x07, 0xdc +.byte 0x73, 0x51, 0xf1, 0x70, 0x64, 0x2f, 0x08, 0xf9, 0xb4, 0x47, 0x1d, 0x30, 0x6c, 0x44, 0xea, 0x29 +.byte 0x37, 0x85, 0x92, 0x68, 0x66, 0xbc, 0x83, 0x38, 0xfe, 0x7b, 0x39, 0x2e, 0xd3, 0x50, 0xf0, 0x1f +.byte 0xfb, 0x5e, 0x60, 0xb6, 0xa9, 0xa6, 0xfa, 0x27, 0x41, 0xf1, 0x9b, 0x18, 0x72, 0xf2, 0xf5, 0x84 +.byte 0x74, 0x4a, 0xc9, 0x67, 0xc4, 0x54, 0xae, 0x48, 0x64, 0xdf, 0x8c, 0xd1, 0x6e, 0xb0, 0x1d, 0xe1 +.byte 0x07, 0x8f, 0x08, 0x1e, 0x99, 0x9c, 0x71, 0xe9, 0x4c, 0xd8, 0xa5, 0xf7, 0x47, 0x12, 0x1f, 0x74 +.byte 0xd1, 0x51, 0x9e, 0x86, 0xf3, 0xc2, 0xa2, 0x23, 0x40, 0x0b, 0x73, 0xdb, 0x4b, 0xa6, 0xe7, 0x73 +.byte 0x06, 0x8c, 0xc1, 0xa0, 0xe9, 0xc1, 0x59, 0xac, 0x46, 0xfa, 0xe6, 0x2f, 0xf8, 0xcf, 0x71, 0x9c +.byte 0x46, 0x6d, 0xb9, 0xc4, 0x15, 0x8d, 0x38, 0x79, 0x03, 0x45, 0x48, 0xef, 0xc4, 0x5d, 0xd7, 0x08 +.byte 0xee, 0x87, 0x39, 0x22, 0x86, 0xb2, 0x0d, 0x0f, 0x58, 0x43, 0xf7, 0x71, 0xa9, 0x48, 0x2e, 0xfd +.byte 0xea, 0xd6, 0x1f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74 +.byte 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xa9, 0x09, 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64 +.byte 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91, 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00 +.byte 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5, 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58 +.byte 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c, 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8 +.byte 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb, 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e +.byte 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f, 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60 +.byte 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52, 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84 +.byte 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf, 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01 +.byte 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa, 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae +.byte 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85, 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c +.byte 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15, 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32 +.byte 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f, 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1 +.byte 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f, 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3 +.byte 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e, 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8 +.byte 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93, 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94 +.byte 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf, 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98 +.byte 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62, 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f +.byte 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80, 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7 +.byte 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3, 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54 +.byte 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33, 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a +.byte 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62, 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a +.byte 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70, 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48 +.byte 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67, 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4 +.byte 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef, 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b +.byte 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3, 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1 +.byte 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29, 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94 +.byte 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95, 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b +.byte 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8, 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08 +.byte 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5, 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0 +.byte 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f, 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f +.byte 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69, 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d +.byte 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba, 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8 +.byte 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30 +.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c +.byte 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68 +.byte 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a, 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe +.byte 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42, 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b +.byte 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf, 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b +.byte 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf, 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42 +.byte 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe, 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7 +.byte 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b, 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10 +.byte 0x00, 0x49, 0x01, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x48, 0x4b, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f +.byte 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50 +.byte 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 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, 0xac, 0xff +.byte 0x38, 0xb6, 0xe9, 0x66, 0x02, 0x49, 0xe3, 0xa2, 0xb4, 0xe1, 0x90, 0xf9, 0x40, 0x8f, 0x79, 0xf9 +.byte 0xe2, 0xbd, 0x79, 0xfe, 0x02, 0xbd, 0xee, 0x24, 0x92, 0x1d, 0x22, 0xf6, 0xda, 0x85, 0x72, 0x69 +.byte 0xfe, 0xd7, 0x3f, 0x09, 0xd4, 0xdd, 0x91, 0xb5, 0x02, 0x9c, 0xd0, 0x8d, 0x5a, 0xe1, 0x55, 0xc3 +.byte 0x50, 0x86, 0xb9, 0x29, 0x26, 0xc2, 0xe3, 0xd9, 0xa0, 0xf1, 0x69, 0x03, 0x28, 0x20, 0x80, 0x45 +.byte 0x22, 0x2d, 0x56, 0xa7, 0x3b, 0x54, 0x95, 0x56, 0x22, 0x59, 0x1f, 0x28, 0xdf, 0x1f, 0x20, 0x3d +.byte 0x6d, 0xa2, 0x36, 0xbe, 0x23, 0xa0, 0xb1, 0x6e, 0xb5, 0xb1, 0x27, 0x3f, 0x39, 0x53, 0x09, 0xea +.byte 0xab, 0x6a, 0xe8, 0x74, 0xb2, 0xc2, 0x65, 0x5c, 0x8e, 0xbf, 0x7c, 0xc3, 0x78, 0x84, 0xcd, 0x9e +.byte 0x16, 0xfc, 0xf5, 0x2e, 0x4f, 0x20, 0x2a, 0x08, 0x9f, 0x77, 0xf3, 0xc5, 0x1e, 0xc4, 0x9a, 0x52 +.byte 0x66, 0x1e, 0x48, 0x5e, 0xe3, 0x10, 0x06, 0x8f, 0x22, 0x98, 0xe1, 0x65, 0x8e, 0x1b, 0x5d, 0x23 +.byte 0x66, 0x3b, 0xb8, 0xa5, 0x32, 0x51, 0xc8, 0x86, 0xaa, 0xa1, 0xa9, 0x9e, 0x7f, 0x76, 0x94, 0xc2 +.byte 0xa6, 0x6c, 0xb7, 0x41, 0xf0, 0xd5, 0xc8, 0x06, 0x38, 0xe6, 0xd4, 0x0c, 0xe2, 0xf3, 0x3b, 0x4c +.byte 0x6d, 0x50, 0x8c, 0xc4, 0x83, 0x27, 0xc1, 0x13, 0x84, 0x59, 0x3d, 0x9e, 0x75, 0x74, 0xb6, 0xd8 +.byte 0x02, 0x5e, 0x3a, 0x90, 0x7a, 0xc0, 0x42, 0x36, 0x72, 0xec, 0x6a, 0x4d, 0xdc, 0xef, 0xc4, 0x00 +.byte 0xdf, 0x13, 0x18, 0x57, 0x5f, 0x26, 0x78, 0xc8, 0xd6, 0x0a, 0x79, 0x77, 0xbf, 0xf7, 0xaf, 0xb7 +.byte 0x76, 0xb9, 0xa5, 0x0b, 0x84, 0x17, 0x5d, 0x10, 0xea, 0x6f, 0xe1, 0xab, 0x95, 0x11, 0x5f, 0x6d +.byte 0x3c, 0xa3, 0x5c, 0x4d, 0x83, 0x5b, 0xf2, 0xb3, 0x19, 0x8a, 0x80, 0x8b, 0x0b, 0x87, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 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, 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, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e, 0xb7 +.byte 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6, 0x8c +.byte 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6, 0xb1 +.byte 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc, 0x12 +.byte 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb, 0xd7 +.byte 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10, 0x33 +.byte 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d, 0x64 +.byte 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87, 0xbb +.byte 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6, 0xaf +.byte 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c, 0x19 +.byte 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad, 0x0f +.byte 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a, 0x88 +.byte 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56, 0x64 +.byte 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b, 0x5c +.byte 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92, 0xd3 +.byte 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48, 0xf9 +.byte 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa, 0x38 +.byte 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87, 0xfa +.byte 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb, 0x16 +.byte 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b, 0x29 +.byte 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce, 0x49 +.byte 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f, 0x7d +.byte 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3, 0x8e +.byte 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d, 0xb1 +.byte 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91, 0x22 +.byte 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6, 0x16 +.byte 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7, 0x57 +.byte 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6, 0xa9 +.byte 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0, 0x7e +.byte 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c, 0xc4 +.byte 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed, 0x1b +.byte 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18, 0x05 +.byte 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07, 0x06 +.byte 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b, 0xa4 +.byte 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52, 0x9f +.byte 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01, 0x6c +.byte 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04, 0xbf +.byte 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1, 0xe6 +.byte 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff, 0x83 +.byte 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf, 0xc1 +.byte 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a, 0x48 +.byte 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90, 0xb8 +.byte 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e, 0xc8 +.byte 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52, 0x84 +.byte 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8, 0xb1 +.byte 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6, 0xfe +.byte 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c, 0xda +.byte 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb, 0x55 +.byte 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b, 0x48 +.byte 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75, 0x13 +.byte 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b, 0x3c +.byte 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32, 0x46 +.byte 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2, 0x30 +.byte 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07, 0xaa +.byte 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b, 0x96 +.byte 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23, 0x32 +.byte 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78, 0x97 +.byte 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67, 0xad +.byte 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25, 0x69 +.byte 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb, 0xee +.byte 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde, 0x2e +.byte 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f, 0x70 +.byte 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5, 0xab +.byte 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03, 0xb2 +.byte 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30, 0x47, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43 +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 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, 0x1f, 0x4f +.byte 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea, 0x56 +.byte 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2, 0x9f +.byte 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1, 0x7e +.byte 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26, 0x7f +.byte 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c, 0x91 +.byte 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x00, 0x49 +.byte 0x00, 0x78, 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, 0x34, 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, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5, 0x81 +.byte 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5, 0x61 +.byte 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85, 0x7c +.byte 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73, 0xe9 +.byte 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f, 0xa1 +.byte 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4, 0xab +.byte 0xd1, 0x1d, 0x8a, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56 +.byte 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 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, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40, 0xb4, 0x04, 0x9c, 0x85, 0xb9 +.byte 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55, 0xc1, 0xe7, 0x58, 0x30, 0x1d +.byte 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d, 0xdf, 0x82, 0xe6, 0x4f, 0xad +.byte 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f, 0xec, 0x87, 0xac, 0x7f, 0x82 +.byte 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e, 0xac, 0xda, 0xf0, 0x53, 0xc9 +.byte 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8, 0x02, 0x46, 0xaf, 0xa4, 0x1c +.byte 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5, 0xf0, 0xcf, 0xcc, 0xfa, 0xf9 +.byte 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35, 0xeb, 0xc5, 0xdf, 0xbb, 0x0e +.byte 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e, 0xc7, 0xab, 0xe0, 0x13, 0x9c +.byte 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23, 0xd3, 0xcf, 0xd5, 0xc4, 0x27 +.byte 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21, 0xe0, 0xfc, 0x39, 0xaa, 0x53 +.byte 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04, 0xcf, 0xa1, 0x4a, 0x8f, 0x8b +.byte 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90, 0x36, 0x07, 0x81, 0x9b, 0x3e +.byte 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9, 0x52, 0x1b, 0x52, 0xb5, 0x92 +.byte 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6, 0xdd, 0x25, 0xc2, 0x03, 0x66 +.byte 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f, 0xe5, 0x83, 0xa0, 0x27, 0x84 +.byte 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8, 0x69, 0xbc, 0x38, 0x9b, 0xa4 +.byte 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb, 0xc4, 0x51, 0x34, 0xea, 0x0c +.byte 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a, 0xa7, 0xd2, 0xe9, 0x2a, 0x78 +.byte 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c, 0xde, 0xc5, 0xf9, 0x90, 0x22 +.byte 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d, 0x3d, 0x98, 0x7c, 0x5e, 0xf6 +.byte 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f, 0xaa, 0x22, 0x76, 0x2d, 0xc9 +.byte 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6, 0x2a, 0xe6, 0xd7, 0xf5, 0x9a +.byte 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5, 0x98, 0x23, 0xec, 0x08, 0x77 +.byte 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a, 0x91, 0x9a, 0xef, 0x21, 0xaa +.byte 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad, 0x85, 0xf6, 0xd9, 0xc5, 0xb1 +.byte 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c, 0x49, 0x1f, 0x33, 0x85, 0x59 +.byte 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71, 0x7d, 0xf0, 0xdf, 0xc4, 0x4c +.byte 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e, 0x4e, 0x4d, 0x24, 0xfb, 0x5e +.byte 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99, 0x7a, 0xd7, 0x5c, 0x09, 0x20 +.byte 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42, 0x1b, 0x11, 0xb7, 0xe7, 0x91 +.byte 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad, 0xcc, 0x28, 0xef, 0xa5, 0x47 +.byte 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15 +.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x20, 0x47, 0x33, 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, 0xa1, 0xae, 0x25, 0xb2, 0x01, 0x18, 0xdc, 0x57, 0x88, 0x3f +.byte 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1, 0x61, 0x66, 0x21, 0x5f, 0xaa +.byte 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50, 0xb0, 0x53, 0x77, 0xbd, 0x78 +.byte 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a, 0x8e, 0xad, 0xff, 0x1f, 0x15 +.byte 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1, 0xdf, 0x36, 0xb3, 0x16, 0x9f +.byte 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28, 0x46, 0xfc, 0xa7, 0xc9, 0xf0 +.byte 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3, 0xa9, 0xda, 0x7d, 0xa1, 0x7d +.byte 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe, 0x6e, 0xfb, 0xdc, 0xa6, 0x73 +.byte 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3, 0x88, 0xad, 0xad, 0xa0, 0x8c +.byte 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb, 0xb8, 0x35, 0x81, 0x0c, 0xa3 +.byte 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d, 0xf8, 0x49, 0xab, 0x3e, 0x3b +.byte 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5, 0x5e, 0x60, 0x2a, 0x31, 0xa0 +.byte 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc, 0x09, 0x1d, 0xd3, 0x9e, 0x8e +.byte 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53, 0xa6, 0xe9, 0x14, 0x35, 0xa3 +.byte 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf, 0x4a, 0xb8, 0xfa, 0xd5, 0x8c +.byte 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d, 0xf2, 0x84, 0x56, 0xef, 0xa5 +.byte 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb, 0x5b, 0x01, 0xdd, 0x23, 0x21 +.byte 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3, 0x12, 0x2b, 0x80, 0xdc, 0x67 +.byte 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4, 0xf2, 0xca, 0x14, 0x07, 0x8d +.byte 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53, 0x5e, 0xb0, 0xd2, 0xaa, 0x21 +.byte 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac, 0x19, 0xa8, 0x55, 0xa6, 0x45 +.byte 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11, 0xf0, 0x3b, 0x4f, 0xca, 0x6d +.byte 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae, 0x23, 0x60, 0x85, 0x73, 0xf1 +.byte 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c, 0xe0, 0x39, 0xda, 0xb4, 0x39 +.byte 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7, 0x31, 0xdf, 0x7a, 0x21, 0x6e +.byte 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72, 0xcf, 0xe3, 0x77, 0xa1, 0xbc +.byte 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3, 0xeb, 0x15, 0x6e, 0xf8, 0xa4 +.byte 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02, 0x8a, 0x2c, 0x14, 0x24, 0xf9 +.byte 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38, 0x7d, 0x53, 0x2d, 0xe5, 0xed +.byte 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88, 0xc5, 0x60, 0x35, 0x92, 0xc0 +.byte 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf, 0x3e, 0x04, 0x10, 0x45, 0x65 +.byte 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c, 0x0d, 0x90, 0x02, 0xc6, 0x70 +.byte 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30 +.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19 +.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69 +.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xcb, 0x0e, 0x10, 0x67, 0x8e +.byte 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68, 0x4c, 0xc7, 0xb3, 0x6f, 0x3a +.byte 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3, 0x76, 0x9d, 0x7a, 0xe9, 0x8b +.byte 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5, 0xa5, 0x1a, 0x79, 0x3c, 0x8a +.byte 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b, 0x44, 0xde, 0xca, 0xdb, 0x8c +.byte 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89, 0xfb, 0x16, 0x16, 0x38, 0x7e +.byte 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a, 0xdd, 0x49, 0xb3, 0x57, 0xd2 +.byte 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32, 0xf3, 0x01, 0x39, 0x20, 0x43 +.byte 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82, 0x3e, 0x16, 0xb5, 0x28, 0x46 +.byte 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a, 0x86, 0xf5, 0x59, 0x47, 0xbe +.byte 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca, 0x10, 0x39, 0x09, 0xca, 0x13 +.byte 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f, 0x34, 0xff, 0xfa, 0x20, 0x69 +.byte 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37, 0x23, 0x86, 0x72, 0x61, 0x45 +.byte 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07, 0x4d, 0x6f, 0xaf, 0xce, 0xc4 +.byte 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87, 0x69, 0xb1, 0x0e, 0xef, 0xc3 +.byte 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc, 0xd6, 0x03, 0x0b, 0x9e, 0x26 +.byte 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea, 0x75, 0x81, 0xda, 0x2d, 0xcd +.byte 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90, 0xc5, 0x02, 0x90, 0x93, 0x66 +.byte 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55, 0x8f, 0xb5, 0xa2, 0x2f, 0xc0 +.byte 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb, 0x47, 0xfb, 0xe6, 0x58, 0xb9 +.byte 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40, 0x62, 0x2d, 0x3b, 0x48, 0x69 +.byte 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda, 0xa8, 0x30, 0x98, 0xcf, 0x80 +.byte 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08, 0x03, 0x21, 0x65, 0xae, 0xb7 +.byte 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7, 0xc0, 0x74, 0xe8, 0x71, 0xde +.byte 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57, 0x1a, 0xab, 0x6b, 0x75, 0x0b +.byte 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67, 0x4f, 0xe5, 0xec, 0x3c, 0x4c +.byte 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8, 0xc7, 0xdf, 0xc0, 0xcc, 0x77 +.byte 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde, 0xed, 0x41, 0x2e, 0x14, 0x05 +.byte 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22, 0xce, 0x57, 0x3d, 0xde, 0xc9 +.byte 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5, 0xc1, 0xb2, 0x3e, 0x88, 0x6c +.byte 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39, 0x07, 0x04, 0xfa, 0x75, 0x80 +.byte 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb, 0x80, 0x7e, 0xdb, 0xb6, 0xd0 +.byte 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb, 0x84, 0xf5, 0x9a, 0xef, 0x42 +.byte 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03, 0x84, 0xd4, 0x76, 0x93, 0x25 +.byte 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb, 0x74, 0xf6, 0x12, 0xce, 0xe8 +.byte 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd, 0x16, 0x71, 0xcb, 0xbf, 0x92 +.byte 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83, 0x78, 0x94, 0x67, 0x67, 0xa3 +.byte 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d, 0xc7, 0x0c, 0xb4, 0x41, 0x52 +.byte 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x00, 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31 +.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53 +.byte 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 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, 0xf1, 0x0b, 0xdd, 0x86, 0x43 +.byte 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22, 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26 +.byte 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5, 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27 +.byte 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3, 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5 +.byte 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5, 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca +.byte 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75, 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6 +.byte 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61, 0x42, 0x7b, 0x49, 0xad, 0x00, 0x4a, 0x01, 0x26, 0x30 +.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 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, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd +.byte 0xf5, 0xf6, 0x14, 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d +.byte 0x99, 0x40, 0x24, 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89 +.byte 0xd1, 0xfc, 0x24, 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb +.byte 0xf8, 0xde, 0xa7, 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e +.byte 0xb8, 0x94, 0xed, 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c +.byte 0x57, 0xd7, 0x06, 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b +.byte 0x5d, 0xa3, 0xba, 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01 +.byte 0x99, 0x6d, 0xfd, 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb +.byte 0xf3, 0x19, 0x34, 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf +.byte 0xde, 0xa0, 0xc2, 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63 +.byte 0xde, 0x66, 0xac, 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7 +.byte 0x0e, 0x2f, 0x81, 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3 +.byte 0x59, 0x3f, 0xba, 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42 +.byte 0x26, 0x9d, 0xa9, 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85 +.byte 0x0e, 0x66, 0xa9, 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54 +.byte 0xc7, 0x93, 0xe0, 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x4c, 0x02, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65 +.byte 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1e, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65 +.byte 0x72, 0x63, 0x69, 0x61, 0x6c, 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 0xa7, 0x50, 0x19, 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2 +.byte 0xa9, 0x4f, 0x8f, 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff +.byte 0xae, 0x95, 0x43, 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74 +.byte 0xd1, 0x81, 0x0d, 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3 +.byte 0x09, 0x8a, 0x1f, 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98 +.byte 0xd2, 0xaf, 0x71, 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32 +.byte 0x30, 0x88, 0x4b, 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b +.byte 0xbf, 0x24, 0x1f, 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88 +.byte 0x22, 0xfc, 0x99, 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73 +.byte 0xbf, 0x02, 0x58, 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19 +.byte 0x16, 0xf5, 0xfd, 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca +.byte 0x24, 0xdc, 0x74, 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd +.byte 0x02, 0x5d, 0x9f, 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f +.byte 0x5b, 0x02, 0xf3, 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74 +.byte 0x17, 0xa8, 0xd1, 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1 +.byte 0xda, 0x98, 0x1e, 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab +.byte 0xa5, 0x60, 0x9d, 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a +.byte 0x23, 0x76, 0x3b, 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc +.byte 0x7e, 0x93, 0x39, 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1 +.byte 0x18, 0xcc, 0xf2, 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d +.byte 0x8b, 0x3b, 0xc1, 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a +.byte 0xdf, 0x62, 0x2e, 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7 +.byte 0x89, 0x5c, 0x9c, 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f +.byte 0x4e, 0x0c, 0x5c, 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34 +.byte 0x1a, 0x28, 0xf3, 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb +.byte 0xe8, 0x1e, 0xf2, 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33 +.byte 0x0b, 0x74, 0xbe, 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46 +.byte 0x4e, 0x96, 0xa7, 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7 +.byte 0x32, 0x5e, 0x9f, 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12 +.byte 0x90, 0x78, 0x7a, 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1 +.byte 0x6e, 0x70, 0x04, 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d +.byte 0x94, 0x2a, 0xb1, 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4c, 0x01, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43 +.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x43, 0x41, 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, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71 +.byte 0xe5, 0x13, 0x68, 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89 +.byte 0x03, 0xe9, 0xbd, 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a +.byte 0x02, 0xeb, 0x31, 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba +.byte 0x32, 0x98, 0xe1, 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc +.byte 0x51, 0xed, 0x68, 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63 +.byte 0x2e, 0xe0, 0xfe, 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e +.byte 0x1e, 0xa4, 0x5f, 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e +.byte 0x72, 0x05, 0x1e, 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1 +.byte 0x17, 0x2c, 0x95, 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60 +.byte 0x04, 0x10, 0x96, 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e +.byte 0x65, 0xf9, 0x93, 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35 +.byte 0x33, 0xfa, 0x4b, 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b +.byte 0xd7, 0xda, 0xce, 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0 +.byte 0x5c, 0xd4, 0x9c, 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef +.byte 0x39, 0x54, 0xba, 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62 +.byte 0xd1, 0x73, 0xe7, 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4e, 0x01, 0x26, 0x30 +.byte 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d +.byte 0x20, 0x52, 0x33, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 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, 0xcc, 0x25 +.byte 0x76, 0x90, 0x79, 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd +.byte 0x05, 0x76, 0x11, 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04 +.byte 0x5f, 0x24, 0xcb, 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70 +.byte 0x6c, 0xdd, 0x64, 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7 +.byte 0xb6, 0x14, 0x86, 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a +.byte 0x62, 0x2f, 0x1f, 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e +.byte 0xc9, 0xcb, 0x26, 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef +.byte 0x5b, 0x8b, 0xd2, 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28 +.byte 0x91, 0xe5, 0x9d, 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72 +.byte 0x2f, 0x2e, 0x9c, 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b +.byte 0xae, 0x53, 0xa6, 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1 +.byte 0xe9, 0xb2, 0x4f, 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5 +.byte 0x38, 0x26, 0x60, 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad +.byte 0x40, 0x15, 0x48, 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64 +.byte 0x9a, 0x7a, 0xbf, 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16 +.byte 0xa9, 0x03, 0xda, 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x4e, 0x02, 0x26, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 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, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca +.byte 0x7b, 0x3c, 0xf7, 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b +.byte 0x3c, 0xae, 0x83, 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0 +.byte 0x88, 0x6b, 0xc5, 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a +.byte 0xdd, 0x1b, 0x5a, 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92 +.byte 0x80, 0xca, 0x44, 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8 +.byte 0x12, 0x50, 0x6d, 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80 +.byte 0xb7, 0x19, 0x81, 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d +.byte 0x3c, 0x8a, 0xc5, 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32 +.byte 0x06, 0xa6, 0x1e, 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0 +.byte 0x18, 0x89, 0xdf, 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7 +.byte 0xbc, 0x93, 0xbb, 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77 +.byte 0x61, 0x7e, 0xe0, 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d +.byte 0xfd, 0x8c, 0xb2, 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a +.byte 0xf7, 0x5d, 0x3a, 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd +.byte 0x57, 0x92, 0xfa, 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36 +.byte 0xb2, 0x39, 0xe4, 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde +.byte 0xb2, 0xf8, 0xe2, 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1 +.byte 0x6f, 0x54, 0x8a, 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee +.byte 0xa3, 0xc5, 0x38, 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30 +.byte 0xbc, 0x71, 0x37, 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5 +.byte 0xd9, 0x91, 0x97, 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb +.byte 0x83, 0xf2, 0x5e, 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2 +.byte 0x08, 0xb3, 0x61, 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd +.byte 0xc9, 0xda, 0x28, 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a +.byte 0x86, 0x05, 0x00, 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76 +.byte 0x39, 0x5b, 0xea, 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85 +.byte 0xcf, 0x33, 0x48, 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49 +.byte 0xc5, 0x95, 0x64, 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42 +.byte 0x45, 0x79, 0x6e, 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13 +.byte 0xe9, 0x0d, 0x6f, 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00 +.byte 0x19, 0x70, 0x83, 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8 +.byte 0x14, 0x63, 0x3c, 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30 +.byte 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23 +.byte 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65 +.byte 0x72, 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47 +.byte 0x6d, 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c +.byte 0x4f, 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 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, 0xae +.byte 0x2e, 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f +.byte 0x84, 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b +.byte 0x8a, 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b +.byte 0xae, 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b +.byte 0x73, 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8 +.byte 0xe2, 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92 +.byte 0x87, 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e +.byte 0xcc, 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e +.byte 0x95, 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f +.byte 0xfd, 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9 +.byte 0x95, 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11 +.byte 0x83, 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d +.byte 0xe7, 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8 +.byte 0xc2, 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24 +.byte 0x52, 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe +.byte 0xe0, 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7 +.byte 0x43, 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78 +.byte 0xf4, 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4 +.byte 0xc9, 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3 +.byte 0x91, 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3 +.byte 0x5e, 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8 +.byte 0xed, 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39 +.byte 0xd0, 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e +.byte 0xd0, 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80 +.byte 0x1d, 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46 +.byte 0x70, 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88 +.byte 0x0c, 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43 +.byte 0xf9, 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5 +.byte 0x68, 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17 +.byte 0x0f, 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04 +.byte 0xab, 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a +.byte 0x79, 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x01, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75 +.byte 0x9b, 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb +.byte 0x00, 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35 +.byte 0xb3, 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3 +.byte 0x48, 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91 +.byte 0x52, 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f +.byte 0x5b, 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92 +.byte 0x1e, 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d +.byte 0x19, 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56 +.byte 0x09, 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4 +.byte 0x1a, 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13 +.byte 0xb5, 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1 +.byte 0xff, 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3 +.byte 0xa7, 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5 +.byte 0x31, 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca +.byte 0x96, 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5 +.byte 0x5f, 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02 +.byte 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49 +.byte 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20 +.byte 0x53, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 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, 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4 +.byte 0xf2, 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b +.byte 0xa8, 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a +.byte 0xf8, 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee +.byte 0x08, 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73 +.byte 0x41, 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d +.byte 0xe4, 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f +.byte 0x9c, 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7 +.byte 0x2d, 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b +.byte 0x9a, 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53 +.byte 0x77, 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48 +.byte 0x48, 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83 +.byte 0x72, 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac +.byte 0x66, 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50 +.byte 0xb2, 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66 +.byte 0xe4, 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e +.byte 0x06, 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4 +.byte 0xd5, 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50 +.byte 0x3d, 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e +.byte 0x7b, 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc +.byte 0x7d, 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9 +.byte 0xbc, 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c +.byte 0x8b, 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92 +.byte 0x8e, 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea +.byte 0xdc, 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54 +.byte 0xab, 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef +.byte 0x88, 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69 +.byte 0x46, 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c +.byte 0x90, 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2 +.byte 0xab, 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44 +.byte 0xe4, 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d +.byte 0x5f, 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01 +.byte 0xe7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39 +.byte 0x36, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 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, 0xd0, 0xf4, 0xc9, 0x79, 0x11 +.byte 0x9d, 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e +.byte 0x2e, 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd +.byte 0x6c, 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72 +.byte 0xe5, 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89 +.byte 0x16, 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0 +.byte 0x45, 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42 +.byte 0xfe, 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c +.byte 0x38, 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74 +.byte 0x9b, 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23 +.byte 0xd0, 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93 +.byte 0xe9, 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8 +.byte 0x6d, 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80 +.byte 0xcf, 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f +.byte 0x70, 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef +.byte 0xcd, 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5 +.byte 0xe2, 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd +.byte 0xef, 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe +.byte 0x29, 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac +.byte 0x0a, 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7 +.byte 0xce, 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04 +.byte 0xc8, 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79 +.byte 0x30, 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2 +.byte 0xcf, 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83 +.byte 0xf2, 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c +.byte 0x28, 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f +.byte 0xfd, 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f +.byte 0x4d, 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79 +.byte 0x4b, 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f +.byte 0xce, 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8 +.byte 0xc2, 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5 +.byte 0x0c, 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11 +.byte 0x39, 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79 +.byte 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32 +.byte 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70 +.byte 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4 +.byte 0xf4, 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7 +.byte 0x75, 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0 +.byte 0xdc, 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b +.byte 0x64, 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73 +.byte 0x30, 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3 +.byte 0xf1, 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87 +.byte 0xa3, 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92 +.byte 0x3e, 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06 +.byte 0x13, 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44 +.byte 0x50, 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23 +.byte 0x36, 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e +.byte 0xbc, 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73 +.byte 0xfb, 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c +.byte 0xe1, 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69 +.byte 0x17, 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7 +.byte 0xaa, 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b +.byte 0x2e, 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6 +.byte 0x0a, 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e +.byte 0x9c, 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11 +.byte 0x68, 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e +.byte 0xe9, 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e +.byte 0xc4, 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f +.byte 0x49, 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33 +.byte 0xe0, 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01 +.byte 0x52, 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3 +.byte 0x37, 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7 +.byte 0x52, 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61 +.byte 0x42, 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b +.byte 0xa2, 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7 +.byte 0x5f, 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30 +.byte 0x68, 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32 +.byte 0xb8, 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41 +.byte 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c +.byte 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xa5, 0xda +.byte 0x0a, 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1 +.byte 0x10, 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc +.byte 0x9a, 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0 +.byte 0xa8, 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33 +.byte 0x87, 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77 +.byte 0x28, 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4 +.byte 0x8a, 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc +.byte 0xb7, 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39 +.byte 0xc3, 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d +.byte 0xbe, 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d +.byte 0x45, 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32 +.byte 0x6a, 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27 +.byte 0x14, 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52 +.byte 0xc7, 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70 +.byte 0x13, 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0 +.byte 0xf5, 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb +.byte 0x17, 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10 +.byte 0xf3, 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4 +.byte 0x52, 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef +.byte 0xb9, 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c +.byte 0x34, 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79 +.byte 0x19, 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82 +.byte 0x13, 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55 +.byte 0x10, 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32 +.byte 0x5e, 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a +.byte 0x25, 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c +.byte 0x45, 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef +.byte 0xc3, 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30 +.byte 0x4b, 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0 +.byte 0xf1, 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60 +.byte 0x0f, 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64 +.byte 0xb1, 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x50, 0x00, 0x78, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 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, 0xc1 +.byte 0x44, 0xa1, 0xcf, 0x11, 0x97, 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18 +.byte 0x9d, 0xd2, 0xf1, 0x7f, 0x77, 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8 +.byte 0xec, 0xfa, 0x7b, 0x6b, 0x58, 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb +.byte 0x09, 0xec, 0xc8, 0x13, 0xf5, 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a +.byte 0x3c, 0x61, 0x10, 0x42, 0x29, 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce +.byte 0x9b, 0x63, 0x9f, 0x84, 0xb5, 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x00 +.byte 0x51, 0x02, 0x26, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75 +.byte 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f +.byte 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd, 0x13 +.byte 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4, 0x7c +.byte 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5, 0xe8 +.byte 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf, 0x8d +.byte 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77, 0x5c +.byte 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd, 0x94 +.byte 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7, 0x24 +.byte 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80, 0xe0 +.byte 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb, 0x87 +.byte 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd, 0x52 +.byte 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c, 0xc0 +.byte 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c, 0xa1 +.byte 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82, 0xeb +.byte 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89, 0x60 +.byte 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a, 0xdb +.byte 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45, 0x44 +.byte 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e, 0xd4 +.byte 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0, 0xa6 +.byte 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6, 0x33 +.byte 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81, 0x5d +.byte 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41, 0xaf +.byte 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d, 0x31 +.byte 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b, 0xf2 +.byte 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59, 0x15 +.byte 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3, 0x0e +.byte 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd, 0x3f +.byte 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9, 0x23 +.byte 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98, 0xbd +.byte 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02, 0x09 +.byte 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf, 0x65 +.byte 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa, 0x72 +.byte 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85, 0xdd +.byte 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x02, 0x26, 0x30, 0x4f +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30 +.byte 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74 +.byte 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 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 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe +.byte 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2 +.byte 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6 +.byte 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33 +.byte 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1 +.byte 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22 +.byte 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f +.byte 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e +.byte 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21 +.byte 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2 +.byte 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0 +.byte 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee +.byte 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07, 0x94 +.byte 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c +.byte 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1 +.byte 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98 +.byte 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1 +.byte 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9 +.byte 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17 +.byte 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e +.byte 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5 +.byte 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51 +.byte 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15 +.byte 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12 +.byte 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f +.byte 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48 +.byte 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83 +.byte 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c +.byte 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d +.byte 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2 +.byte 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e +.byte 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x00, 0x78, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72 +.byte 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53 +.byte 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 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, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a, 0x3e +.byte 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a, 0x8b +.byte 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf, 0xf7 +.byte 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38, 0x8b +.byte 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8, 0x0a +.byte 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07, 0x0c +.byte 0x1f, 0xea, 0x00, 0x52, 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c +.byte 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30, 0x28 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20, 0x32 +.byte 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba, 0x2f +.byte 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97, 0xd2 +.byte 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda, 0x15 +.byte 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac, 0xa1 +.byte 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8, 0x0f +.byte 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f, 0x4c +.byte 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64, 0x1e +.byte 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f, 0x12 +.byte 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7, 0xf5 +.byte 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf, 0x8b +.byte 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d, 0x0d +.byte 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1, 0x14 +.byte 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2, 0xfb +.byte 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70, 0xad +.byte 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c, 0xee +.byte 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27, 0xfa +.byte 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52 +.byte 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a +.byte 0x50, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x45, 0x43, 0x4f +.byte 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43 +.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x43, 0x41, 0x31, 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, 0xb3, 0xb3, 0xfe, 0x7f, 0xd3, 0x6d, 0xb1, 0xef, 0x16, 0x7c, 0x57 +.byte 0xa5, 0x0c, 0x6d, 0x76, 0x8a, 0x2f, 0x4b, 0xbf, 0x64, 0xfb, 0x4c, 0xee, 0x8a, 0xf0, 0xf3, 0x29 +.byte 0x7c, 0xf5, 0xff, 0xee, 0x2a, 0xe0, 0xe9, 0xe9, 0xba, 0x5b, 0x64, 0x22, 0x9a, 0x9a, 0x6f, 0x2c +.byte 0x3a, 0x26, 0x69, 0x51, 0x05, 0x99, 0x26, 0xdc, 0xd5, 0x1c, 0x6a, 0x71, 0xc6, 0x9a, 0x7d, 0x1e +.byte 0x9d, 0xdd, 0x7c, 0x6c, 0xc6, 0x8c, 0x67, 0x67, 0x4a, 0x3e, 0xf8, 0x71, 0xb0, 0x19, 0x27, 0xa9 +.byte 0x09, 0x0c, 0xa6, 0x95, 0xbf, 0x4b, 0x8c, 0x0c, 0xfa, 0x55, 0x98, 0x3b, 0xd8, 0xe8, 0x22, 0xa1 +.byte 0x4b, 0x71, 0x38, 0x79, 0xac, 0x97, 0x92, 0x69, 0xb3, 0x89, 0x7e, 0xea, 0x21, 0x68, 0x06, 0x98 +.byte 0x14, 0x96, 0x87, 0xd2, 0x61, 0x36, 0xbc, 0x6d, 0x27, 0x56, 0x9e, 0x57, 0xee, 0xc0, 0xc0, 0x56 +.byte 0xfd, 0x32, 0xcf, 0xa4, 0xd9, 0x8e, 0xc2, 0x23, 0xd7, 0x8d, 0xa8, 0xf3, 0xd8, 0x25, 0xac, 0x97 +.byte 0xe4, 0x70, 0x38, 0xf4, 0xb6, 0x3a, 0xb4, 0x9d, 0x3b, 0x97, 0x26, 0x43, 0xa3, 0xa1, 0xbc, 0x49 +.byte 0x59, 0x72, 0x4c, 0x23, 0x30, 0x87, 0x01, 0x58, 0xf6, 0x4e, 0xbe, 0x1c, 0x68, 0x56, 0x66, 0xaf +.byte 0xcd, 0x41, 0x5d, 0xc8, 0xb3, 0x4d, 0x2a, 0x55, 0x46, 0xab, 0x1f, 0xda, 0x1e, 0xe2, 0x40, 0x3d +.byte 0xdb, 0xcd, 0x7d, 0xb9, 0x92, 0x80, 0x9c, 0x37, 0xdd, 0x0c, 0x96, 0x64, 0x9d, 0xdc, 0x22, 0xf7 +.byte 0x64, 0x8b, 0xdf, 0x61, 0xde, 0x15, 0x94, 0x52, 0x15, 0xa0, 0x7d, 0x52, 0xc9, 0x4b, 0xa8, 0x21 +.byte 0xc9, 0xc6, 0xb1, 0xed, 0xcb, 0xc3, 0x95, 0x60, 0xd1, 0x0f, 0xf0, 0xab, 0x70, 0xf8, 0xdf, 0xcb +.byte 0x4d, 0x7e, 0xec, 0xd6, 0xfa, 0xab, 0xd9, 0xbd, 0x7f, 0x54, 0xf2, 0xa5, 0xe9, 0x79, 0xfa, 0xd9 +.byte 0xd6, 0x76, 0x24, 0x28, 0x73, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52, 0x00, 0x5b, 0x30, 0x50 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f +.byte 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09 +.byte 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1 +.byte 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18 +.byte 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x00, 0x52, 0x00, 0x78, 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, 0x35, 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, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d +.byte 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59 +.byte 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97 +.byte 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f +.byte 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9 +.byte 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f +.byte 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64 +.byte 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f +.byte 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e +.byte 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38 +.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, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0 +.byte 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2 +.byte 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4 +.byte 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71 +.byte 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9 +.byte 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37 +.byte 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50 +.byte 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02 +.byte 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7 +.byte 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4 +.byte 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b +.byte 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f +.byte 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92 +.byte 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86 +.byte 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87 +.byte 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19 +.byte 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38 +.byte 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf +.byte 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4 +.byte 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96 +.byte 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8 +.byte 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3 +.byte 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2 +.byte 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24 +.byte 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01 +.byte 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca +.byte 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d +.byte 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64 +.byte 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b +.byte 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6 +.byte 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b +.byte 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30 +.byte 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x20, 0x46 +.byte 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20 +.byte 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38, 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, 0xca, 0x96 +.byte 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0, 0xc3, 0x52, 0xd7 +.byte 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2, 0xca, 0x1c, 0x5d +.byte 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4, 0x8b, 0x0f, 0xe6 +.byte 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71, 0x38, 0xd9, 0x04 +.byte 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9, 0xbf, 0x94, 0x6f +.byte 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37, 0x4a, 0x5c, 0xca +.byte 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50, 0xf4, 0xb1, 0xe7 +.byte 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02, 0xaa, 0x36, 0x98 +.byte 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7, 0x81, 0x2d, 0xe5 +.byte 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4, 0x40, 0xcf, 0x5e +.byte 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b, 0x25, 0x6c, 0x93 +.byte 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f, 0x20, 0x05, 0x19 +.byte 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92, 0x3c, 0x20, 0xcf +.byte 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86, 0x61, 0x33, 0x3e +.byte 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87, 0x26, 0x6f, 0x41 +.byte 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19, 0x8f, 0xb2, 0xed +.byte 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38, 0x23, 0xc9, 0x2f +.byte 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf, 0x4f, 0xa4, 0xf3 +.byte 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4, 0x9c, 0xc8, 0x90 +.byte 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96, 0x31, 0x1f, 0xba +.byte 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8, 0xdf, 0xfd, 0xab +.byte 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3, 0xe7, 0x8a, 0xb8 +.byte 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2, 0xd8, 0x9f, 0x8e +.byte 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24, 0x10, 0xad, 0x2f +.byte 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01, 0xdb, 0xf4, 0x7f +.byte 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca, 0x6e, 0x97, 0xfb +.byte 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d, 0xd5, 0x45, 0xf3 +.byte 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64, 0xae, 0x7b, 0x0b +.byte 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b, 0x87, 0x0c, 0x6e +.byte 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6, 0x8f, 0x96, 0x1d +.byte 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b, 0x80, 0x89, 0x45 +.byte 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30, 0xbb, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x53, 0x01, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x1f, 0x4b, 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f +.byte 0x7a, 0x6c, 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e +.byte 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49 +.byte 0x52, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 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, 0xb7, 0xbc, 0x3e, 0x50, 0xa8 +.byte 0x4b, 0xcd, 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa +.byte 0xb5, 0x7b, 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20 +.byte 0x3d, 0x85, 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee +.byte 0xeb, 0x53, 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e +.byte 0x0d, 0x92, 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02 +.byte 0xbd, 0x4a, 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d +.byte 0xb3, 0xb0, 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36 +.byte 0x84, 0xda, 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f +.byte 0x75, 0xb6, 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d +.byte 0x6a, 0xfa, 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7 +.byte 0x72, 0x3b, 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95 +.byte 0x9e, 0xc1, 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5 +.byte 0xd6, 0xf9, 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d +.byte 0x9d, 0x02, 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88 +.byte 0x00, 0xdc, 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca +.byte 0x41, 0xcd, 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41 +.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e +.byte 0x8a, 0x21, 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97 +.byte 0xc5, 0xd7, 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74 +.byte 0xa4, 0x31, 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7 +.byte 0xb8, 0x79, 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4 +.byte 0xb3, 0xd0, 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b +.byte 0x32, 0x39, 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47 +.byte 0x25, 0x91, 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0 +.byte 0xa1, 0x30, 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91 +.byte 0x43, 0x8f, 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b +.byte 0xca, 0xea, 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36 +.byte 0xc7, 0xcc, 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa +.byte 0x71, 0x7c, 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11 +.byte 0xf7, 0x05, 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26 +.byte 0xdc, 0xe3, 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71 +.byte 0xa5, 0x15, 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44 +.byte 0xfd, 0x56, 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b +.byte 0x76, 0xc8, 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22 +.byte 0x82, 0xee, 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64 +.byte 0x00, 0x26, 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90 +.byte 0xa2, 0x95, 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa +.byte 0x29, 0x7e, 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09 +.byte 0x67, 0xde, 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6 +.byte 0x0f, 0xa0, 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0 +.byte 0x6f, 0xde, 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67 +.byte 0xd5, 0x98, 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4 +.byte 0x00, 0x04, 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d +.byte 0xc0, 0xb7, 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e +.byte 0xef, 0xbc, 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7 +.byte 0x04, 0xa9, 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1 +.byte 0x90, 0x8c, 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a +.byte 0x42, 0xb1, 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2 +.byte 0x26, 0xe1, 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x54, 0x02 +.byte 0x26, 0x30, 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69 +.byte 0x73, 0x6c, 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a +.byte 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d +.byte 0x14, 0xf6, 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50 +.byte 0xe0, 0xc1, 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8 +.byte 0x97, 0x02, 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f +.byte 0x64, 0xd4, 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f +.byte 0xba, 0xbe, 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda +.byte 0x4c, 0xce, 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00 +.byte 0x16, 0x3c, 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5 +.byte 0xe1, 0x66, 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6 +.byte 0x80, 0x6a, 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4 +.byte 0xe1, 0x25, 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14 +.byte 0x61, 0x2d, 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b +.byte 0x04, 0x5a, 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6 +.byte 0x57, 0xcc, 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78 +.byte 0x4d, 0x9e, 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf +.byte 0xea, 0xc0, 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2 +.byte 0x46, 0x90, 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97 +.byte 0x84, 0x8e, 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3 +.byte 0xf3, 0xc1, 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a +.byte 0xe4, 0x17, 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c +.byte 0x34, 0xd8, 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08 +.byte 0x65, 0xd4, 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d +.byte 0x66, 0xdd, 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a +.byte 0x1c, 0xe7, 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60 +.byte 0xb2, 0xc2, 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8 +.byte 0xe7, 0x11, 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd +.byte 0xcf, 0x80, 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b +.byte 0xe4, 0x44, 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b +.byte 0xe4, 0x32, 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6 +.byte 0x7e, 0xb2, 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37 +.byte 0x1f, 0x11, 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33 +.byte 0x7d, 0xb0, 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e +.byte 0xc4, 0x03, 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x02, 0x26, 0x30 +.byte 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30 +.byte 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46 +.byte 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20 +.byte 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05 +.byte 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b +.byte 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e +.byte 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae +.byte 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71 +.byte 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a +.byte 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d +.byte 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e +.byte 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8 +.byte 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41 +.byte 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8 +.byte 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca +.byte 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f +.byte 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50 +.byte 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0 +.byte 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b +.byte 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05 +.byte 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4 +.byte 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7 +.byte 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e +.byte 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39 +.byte 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37 +.byte 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d +.byte 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e +.byte 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99 +.byte 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a +.byte 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04 +.byte 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa +.byte 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08 +.byte 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78 +.byte 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e +.byte 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72 +.byte 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x01 +.byte 0x26, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99 +.byte 0x05, 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f +.byte 0x2c, 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79 +.byte 0x39, 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9 +.byte 0x1d, 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf +.byte 0xac, 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73 +.byte 0xdc, 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47 +.byte 0xdc, 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38 +.byte 0x58, 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f +.byte 0x0b, 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7 +.byte 0x18, 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce +.byte 0xa6, 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16 +.byte 0xde, 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c +.byte 0xc5, 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34 +.byte 0x12, 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89 +.byte 0xac, 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5 +.byte 0x6b, 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x59, 0x01, 0x26, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31 +.byte 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x53, 0x69, 0x67, 0x6e, 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, 0xda, 0x0e, 0xe6 +.byte 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48 +.byte 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf +.byte 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab +.byte 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15 +.byte 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc +.byte 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41 +.byte 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b +.byte 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89 +.byte 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7 +.byte 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2 +.byte 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b +.byte 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab +.byte 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16 +.byte 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64 +.byte 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3 +.byte 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x5a, 0x01, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x22 +.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31, 0x31 +.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, 0xfd, 0x77, 0xaa, 0xa5, 0x1c, 0x90, 0x05, 0x3b, 0xcb, 0x4c, 0x9b, 0x33, 0x8b, 0x5a, 0x14 +.byte 0x45, 0xa4, 0xe7, 0x90, 0x16, 0xd1, 0xdf, 0x57, 0xd2, 0x21, 0x10, 0xa4, 0x17, 0xfd, 0xdf, 0xac +.byte 0xd6, 0x1f, 0xa7, 0xe4, 0xdb, 0x7c, 0xf7, 0xec, 0xdf, 0xb8, 0x03, 0xda, 0x94, 0x58, 0xfd, 0x5d +.byte 0x72, 0x7c, 0x8c, 0x3f, 0x5f, 0x01, 0x67, 0x74, 0x15, 0x96, 0xe3, 0x02, 0x3c, 0x87, 0xdb, 0xae +.byte 0xcb, 0x01, 0x8e, 0xc2, 0xf3, 0x66, 0xc6, 0x85, 0x45, 0xf4, 0x02, 0xc6, 0x3a, 0xb5, 0x62, 0xb2 +.byte 0xaf, 0xfa, 0x9c, 0xbf, 0xa4, 0xe6, 0xd4, 0x80, 0x30, 0x98, 0xf3, 0x0d, 0xb6, 0x93, 0x8f, 0xa9 +.byte 0xd4, 0xd8, 0x36, 0xf2, 0xb0, 0xfc, 0x8a, 0xca, 0x2c, 0xa1, 0x15, 0x33, 0x95, 0x31, 0xda, 0xc0 +.byte 0x1b, 0xf2, 0xee, 0x62, 0x99, 0x86, 0x63, 0x3f, 0xbf, 0xdd, 0x93, 0x2a, 0x83, 0xa8, 0x76, 0xb9 +.byte 0x13, 0x1f, 0xb7, 0xce, 0x4e, 0x42, 0x85, 0x8f, 0x22, 0xe7, 0x2e, 0x1a, 0xf2, 0x95, 0x09, 0xb2 +.byte 0x05, 0xb5, 0x44, 0x4e, 0x77, 0xa1, 0x20, 0xbd, 0xa9, 0xf2, 0x4e, 0x0a, 0x7d, 0x50, 0xad, 0xf5 +.byte 0x05, 0x0d, 0x45, 0x4f, 0x46, 0x71, 0xfd, 0x28, 0x3e, 0x53, 0xfb, 0x04, 0xd8, 0x2d, 0xd7, 0x65 +.byte 0x1d, 0x4a, 0x1b, 0xfa, 0xcf, 0x3b, 0xb0, 0x31, 0x9a, 0x35, 0x6e, 0xc8, 0x8b, 0x06, 0xd3, 0x00 +.byte 0x91, 0xf2, 0x94, 0x08, 0x65, 0x4c, 0xb1, 0x34, 0x06, 0x00, 0x7a, 0x89, 0xe2, 0xf0, 0xc7, 0x03 +.byte 0x59, 0xcf, 0xd5, 0xd6, 0xe8, 0xa7, 0x32, 0xb3, 0xe6, 0x98, 0x40, 0x86, 0xc5, 0xcd, 0x27, 0x12 +.byte 0x8b, 0xcc, 0x7b, 0xce, 0xb7, 0x11, 0x3c, 0x62, 0x60, 0x07, 0x23, 0x3e, 0x2b, 0x40, 0x6e, 0x94 +.byte 0x80, 0x09, 0x6d, 0xb6, 0xb3, 0x6f, 0x77, 0x6f, 0x35, 0x08, 0x50, 0xfb, 0x02, 0x87, 0xc5, 0x3e +.byte 0x89, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5a, 0x02, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x15, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e, 0x65 +.byte 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x20, 0x53, 0x74, 0x61, 0x61, 0x74, 0x20, 0x64, 0x65, 0x72, 0x20, 0x4e, 0x65 +.byte 0x64, 0x65, 0x72, 0x6c, 0x61, 0x6e, 0x64, 0x65, 0x6e, 0x20, 0x45, 0x56, 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, 0xe3, 0xc7, 0x7e, 0x89, 0xf9, 0x24, 0x4b, 0x3a, 0xd2, 0x33, 0x83 +.byte 0x35, 0x2c, 0x69, 0xec, 0xdc, 0x09, 0xa4, 0xe3, 0x51, 0xa8, 0x25, 0x2b, 0x79, 0xb8, 0x08, 0x3d +.byte 0xe0, 0x91, 0xba, 0x84, 0x85, 0xc6, 0x85, 0xa4, 0xca, 0xe6, 0xc9, 0x2e, 0x53, 0xa4, 0xc9, 0x24 +.byte 0x1e, 0xfd, 0x55, 0x66, 0x71, 0x5d, 0x2c, 0xc5, 0x60, 0x68, 0x04, 0xb7, 0xd9, 0xc2, 0x52, 0x26 +.byte 0x38, 0x88, 0xa4, 0xd6, 0x3b, 0x40, 0xa6, 0xc2, 0xcd, 0x3f, 0xcd, 0x98, 0x93, 0xb3, 0x54, 0x14 +.byte 0x58, 0x96, 0x55, 0xd5, 0x50, 0xfe, 0x86, 0xad, 0xa4, 0x63, 0x7f, 0x5c, 0x87, 0xf6, 0x8e, 0xe6 +.byte 0x27, 0x92, 0x67, 0x17, 0x92, 0x02, 0x03, 0x2c, 0xdc, 0xd6, 0x66, 0x74, 0xed, 0xdd, 0x67, 0xff +.byte 0xc1, 0x61, 0x8d, 0x63, 0x4f, 0x0f, 0x9b, 0x6d, 0x17, 0x30, 0x26, 0xef, 0xab, 0xd2, 0x1f, 0x10 +.byte 0xa0, 0xf9, 0xc5, 0x7f, 0x16, 0x69, 0x81, 0x03, 0x47, 0xed, 0x1e, 0x68, 0x8d, 0x72, 0xa1, 0x4d +.byte 0xb2, 0x26, 0xc6, 0xba, 0x6c, 0x5f, 0x6d, 0xd6, 0xaf, 0xd1, 0xb1, 0x13, 0x8e, 0xa9, 0xad, 0xf3 +.byte 0x5e, 0x69, 0x75, 0x26, 0x18, 0x3e, 0x41, 0x2b, 0x21, 0x7f, 0xee, 0x8b, 0x5d, 0x07, 0x06, 0x9d +.byte 0x43, 0xc4, 0x29, 0x0a, 0x2b, 0xfc, 0x2a, 0x3e, 0x86, 0xcb, 0x3c, 0x83, 0x3a, 0xf9, 0xc9, 0x0d +.byte 0xda, 0xc5, 0x99, 0xe2, 0xbc, 0x78, 0x41, 0x33, 0x76, 0xe1, 0xbf, 0x2f, 0x5d, 0xe5, 0xa4, 0x98 +.byte 0x50, 0x0c, 0x15, 0xdd, 0xe0, 0xfa, 0x9c, 0x7f, 0x38, 0x68, 0xd0, 0xb2, 0xa6, 0x7a, 0xa7, 0xd1 +.byte 0x31, 0xbd, 0x7e, 0x8a, 0x58, 0x27, 0x43, 0xb3, 0xba, 0x33, 0x91, 0xd3, 0xa7, 0x98, 0x15, 0x5c +.byte 0x9a, 0xe6, 0xd3, 0x0f, 0x75, 0xd9, 0xfc, 0x41, 0x98, 0x97, 0x3e, 0xaa, 0x25, 0xdb, 0x8f, 0x92 +.byte 0x2e, 0xb0, 0x7b, 0x0c, 0x5f, 0xf1, 0x63, 0xa9, 0x37, 0xf9, 0x9b, 0x75, 0x69, 0x4c, 0x28, 0x26 +.byte 0x25, 0xda, 0xd5, 0xf2, 0x12, 0x70, 0x45, 0x55, 0xe3, 0xdf, 0x73, 0x5e, 0x37, 0xf5, 0x21, 0x6c +.byte 0x90, 0x8e, 0x35, 0x5a, 0xc9, 0xd3, 0x23, 0xeb, 0xd3, 0xc0, 0xbe, 0x78, 0xac, 0x42, 0x28, 0x58 +.byte 0x66, 0xa5, 0x46, 0x6d, 0x70, 0x02, 0xd7, 0x10, 0xf9, 0x4b, 0x54, 0xfc, 0x5d, 0x86, 0x4a, 0x87 +.byte 0xcf, 0x7f, 0xca, 0x45, 0xac, 0x11, 0x5a, 0xb5, 0x20, 0x51, 0x8d, 0x2f, 0x88, 0x47, 0x97, 0x39 +.byte 0xc0, 0xcf, 0xba, 0xc0, 0x42, 0x01, 0x40, 0x99, 0x48, 0x21, 0x0b, 0x6b, 0xa7, 0xd2, 0xfd, 0x96 +.byte 0xd5, 0xd1, 0xbe, 0x46, 0x9d, 0x49, 0xe0, 0x0b, 0xa6, 0xa0, 0x22, 0x4e, 0x38, 0xd0, 0xc1, 0x3c +.byte 0x30, 0xbc, 0x70, 0x8f, 0x2c, 0x75, 0xcc, 0xd0, 0xc5, 0x8c, 0x51, 0x3b, 0x3d, 0x94, 0x08, 0x64 +.byte 0x26, 0x61, 0x7d, 0xb9, 0xc3, 0x65, 0x8f, 0x14, 0x9c, 0x21, 0xd0, 0xaa, 0xfd, 0x17, 0x72, 0x03 +.byte 0x8f, 0xbd, 0x9b, 0x8c, 0xe6, 0x5e, 0x53, 0x9e, 0xb9, 0x9d, 0xef, 0x82, 0xbb, 0xe1, 0xbc, 0xe2 +.byte 0x72, 0x41, 0x5b, 0x21, 0x94, 0xd3, 0x45, 0x37, 0x94, 0xd1, 0xdf, 0x09, 0x39, 0x5d, 0xe7, 0x23 +.byte 0xaa, 0x9a, 0x1d, 0xca, 0x6d, 0xa8, 0x0a, 0x86, 0x85, 0x8a, 0x82, 0xbe, 0x42, 0x07, 0xd6, 0xf2 +.byte 0x38, 0x82, 0x73, 0xda, 0x87, 0x5b, 0xe5, 0x3c, 0xd3, 0x9e, 0x3e, 0xa7, 0x3b, 0x9e, 0xf4, 0x03 +.byte 0xb3, 0xf9, 0xf1, 0x7d, 0x13, 0x74, 0x02, 0xff, 0xbb, 0xa1, 0xe5, 0xfa, 0x00, 0x79, 0x1c, 0xa6 +.byte 0x66, 0x41, 0x88, 0x5c, 0x60, 0x57, 0xa6, 0x2e, 0x09, 0xc4, 0xba, 0xfd, 0x9a, 0xcf, 0xa7, 0x1f +.byte 0x40, 0xc3, 0xbb, 0xcc, 0x5a, 0x0a, 0x55, 0x4b, 0x3b, 0x38, 0x76, 0x51, 0xb8, 0x63, 0x8b, 0x84 +.byte 0x94, 0x16, 0xe6, 0x56, 0xf3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69 +.byte 0x73, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x13, 0x30, 0x30, 0x30, 0x32 +.byte 0x20, 0x34, 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30, 0x30, 0x30, 0x33, 0x36, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67 +.byte 0x6e, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xcd, 0x18, 0x39, 0x65, 0x1a +.byte 0x59, 0xb1, 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c, 0x83, 0xd3, 0xc5, 0x39, 0x26 +.byte 0xdc, 0x0c, 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42, 0x7f, 0x82, 0xca, 0xed, 0xcd +.byte 0x5b, 0xdb, 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9, 0xb3, 0xcb, 0xd6, 0x17, 0x52 +.byte 0x72, 0x28, 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e, 0x84, 0x9a, 0x4d, 0x76, 0xde +.byte 0x22, 0x29, 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9, 0x74, 0xa3, 0x92, 0x56, 0x1c +.byte 0xa1, 0x6f, 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6, 0xda, 0x2c, 0xe4, 0x1d, 0x2c +.byte 0xdc, 0xb3, 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1, 0x54, 0x40, 0x9e, 0xe6, 0xe5 +.byte 0x05, 0xa0, 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a, 0x1a, 0x84, 0x08, 0x1e, 0xb7 +.byte 0x68, 0x23, 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10, 0xee, 0xa1, 0x7a, 0xc2, 0xd1 +.byte 0x22, 0x31, 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c, 0x25, 0x7a, 0xc9, 0x84, 0x5c +.byte 0x0b, 0xac, 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89, 0xcb, 0x90, 0xb2, 0xd0, 0xee +.byte 0x23, 0xba, 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64, 0x7b, 0x7c, 0x98, 0xfa, 0xa3 +.byte 0x48, 0x9e, 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e, 0x03, 0x45, 0xaf, 0xf0, 0x74 +.byte 0xf8, 0x2a, 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29, 0xf1, 0xf1, 0xf5, 0x6c, 0xcc +.byte 0x7e, 0x02, 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53, 0xe2, 0xcf, 0x7d, 0xa9, 0x2c +.byte 0x7c, 0x58, 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28, 0xd2, 0x40, 0xc5, 0x51, 0x8a +.byte 0x8c, 0xc3, 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16, 0xc5, 0xaa, 0xe0, 0xd6, 0x0a +.byte 0xa6, 0x40, 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84, 0xbc, 0xd1, 0xd1, 0xa7, 0x06 +.byte 0xcf, 0x01, 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad, 0x04, 0x8c, 0x93, 0xe3, 0xad +.byte 0xfc, 0xf0, 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac, 0x9a, 0x99, 0x36, 0x30, 0x41 +.byte 0x7b, 0x76, 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9, 0x70, 0xee, 0xae, 0x87, 0x87 +.byte 0x95, 0x1b, 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99, 0xff, 0xbe, 0x48, 0xec, 0x75 +.byte 0xf5, 0x78, 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1, 0x92, 0xfb, 0xcf, 0xc8, 0x3c +.byte 0xd6, 0xc5, 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce, 0x59, 0x98, 0x8a, 0x09, 0x95 +.byte 0x77, 0x32, 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4, 0x2f, 0xbe, 0xd7, 0x6c, 0x9b +.byte 0xa2, 0xca, 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79, 0x52, 0x08, 0x09, 0x99, 0x07 +.byte 0x24, 0x2d, 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd, 0x74, 0x4d, 0x6b, 0x97, 0x7a +.byte 0x41, 0xbd, 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9, 0x2d, 0xd5, 0xc5, 0xdb, 0xee +.byte 0xaa, 0x85, 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6, 0x36, 0x4c, 0x9b, 0x90, 0x57 +.byte 0xec, 0x23, 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86, 0x2a, 0x28, 0x4d, 0xe2, 0x74 +.byte 0xc0, 0xda, 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce, 0x24, 0x59, 0x74, 0x31, 0xda +.byte 0x7f, 0xfd, 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x5c, 0x01, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x49, 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x42, 0x61 +.byte 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x0a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22, 0x30, 0x20 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65 +.byte 0x20, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.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, 0xa3, 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5, 0x79, 0xd4 +.byte 0x29, 0xe2, 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a, 0x64, 0xdf +.byte 0xa1, 0x5d, 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62, 0xfe, 0xb4 +.byte 0x88, 0xda, 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b, 0x88, 0x77 +.byte 0xd3, 0x1c, 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11, 0x40, 0xa7 +.byte 0xd1, 0xcc, 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50, 0xc3, 0x28 +.byte 0xea, 0xf5, 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c, 0xd5, 0xf7 +.byte 0xf9, 0x52, 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca, 0x06, 0xcb +.byte 0x9a, 0xe1, 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44, 0x42, 0x48 +.byte 0x13, 0xd2, 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4, 0xdd, 0x07 +.byte 0x59, 0x02, 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d, 0x5d, 0xb2 +.byte 0x06, 0x7a, 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff, 0x15, 0xed +.byte 0x69, 0xbc, 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90, 0x2c, 0xb9 +.byte 0x3d, 0xe5, 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29, 0xbd, 0xc6 +.byte 0x3a, 0xec, 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18, 0x31, 0xf0 +.byte 0x78, 0x8d, 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc, 0x27, 0x1a +.byte 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x00, 0x78, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61 +.byte 0x20, 0x49, 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65 +.byte 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x43, 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, 0xfd, 0xa5 +.byte 0x61, 0xae, 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae, 0x06, 0xf4, 0x81, 0xb3, 0xb1 +.byte 0x42, 0x71, 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9, 0xf2, 0x97, 0x35, 0x92, 0x36 +.byte 0x46, 0x0e, 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf, 0xd0, 0xfe, 0xc8, 0x07, 0x41 +.byte 0x3c, 0xbb, 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81, 0x89, 0x02, 0x70, 0x7d, 0x48 +.byte 0xc5, 0x4a, 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42, 0x0c, 0xaf, 0x77, 0x9c, 0x23 +.byte 0xa6, 0x7d, 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe, 0xf5, 0xf2, 0xa9, 0x00, 0x5f +.byte 0x01, 0x26, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a +.byte 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f +.byte 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20 +.byte 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d +.byte 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41 +.byte 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5, 0x59, 0x82, 0xc4, 0x5d, 0x52 +.byte 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb, 0x36, 0x97, 0xd6, 0xa6, 0x64 +.byte 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d, 0x4b, 0xae, 0xf6, 0x5d, 0xec +.byte 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9, 0x3e, 0x36, 0x34, 0xa0, 0x3b +.byte 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5, 0xf9, 0x89, 0x99, 0xca, 0xe5 +.byte 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6, 0x42, 0x89, 0xc2, 0xbf, 0xf4 +.byte 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83, 0x7b, 0x14, 0x65, 0xd6, 0xdc +.byte 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe, 0x3a, 0x56, 0xa6, 0x5a, 0x6f +.byte 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d, 0x52, 0xd0, 0x2d, 0x0a, 0x6b +.byte 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00, 0x37, 0x47, 0xe4, 0x7e, 0x57 +.byte 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53, 0x55, 0xb2, 0x91, 0xc4, 0x7d +.byte 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa, 0x85, 0xf5, 0x4a, 0x91, 0xa1 +.byte 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f, 0x28, 0x3f, 0x8b, 0xfc, 0x40 +.byte 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde, 0x59, 0x6a, 0x3b, 0xfc, 0x6f +.byte 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a, 0xac, 0x27, 0x0c, 0x53, 0xf1 +.byte 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16, 0xdd, 0x44, 0x34, 0x27, 0x1a +.byte 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x60, 0x02, 0x26, 0x30, 0x5e, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65 +.byte 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31 +.byte 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65, 0x50, 0x4b, 0x49, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 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, 0xe1, 0x25, 0x0f, 0xee +.byte 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a, 0x4e, 0x6d, 0x9d, 0xd3, 0x2f +.byte 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84, 0x50, 0x07, 0x4b, 0x26, 0x5b +.byte 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60, 0x69, 0x8f, 0xcc, 0xf0, 0x22 +.byte 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2, 0xe0, 0xfe, 0x00, 0x6a, 0x43 +.byte 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22, 0x70, 0x21, 0x8a, 0x31, 0xf2 +.byte 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12, 0xa2, 0x95, 0x3c, 0xda, 0xe9 +.byte 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef, 0x97, 0xf4, 0xf6, 0xf5, 0xd7 +.byte 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc, 0xcd, 0xd7, 0x0d, 0x9a, 0x13 +.byte 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a, 0x33, 0xf7, 0x00, 0x86, 0xce +.byte 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a, 0x5c, 0x10, 0x83, 0x51, 0x21 +.byte 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81, 0x82, 0x35, 0x4c, 0x19, 0xec +.byte 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3, 0x21, 0x27, 0x94, 0x10, 0x0a +.byte 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97, 0x3c, 0xd8, 0xd7, 0xd7, 0x6a +.byte 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7, 0x07, 0x49, 0x7f, 0x37, 0x2a +.byte 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80, 0x0e, 0x91, 0x43, 0xc1, 0xd6 +.byte 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59, 0xbf, 0x72, 0x38, 0xb2, 0x36 +.byte 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69, 0xf7, 0xc0, 0xb2, 0x04, 0x45 +.byte 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8, 0x3c, 0xa3, 0x31, 0xd2, 0xa9 +.byte 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06, 0x94, 0x14, 0x81, 0x55, 0xc6 +.byte 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b, 0xfb, 0x94, 0x58, 0x7d, 0x7e +.byte 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09, 0x68, 0x3e, 0x7f, 0x6c, 0xf6 +.byte 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22, 0x42, 0x41, 0x1e, 0x6f, 0x99 +.byte 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01, 0x92, 0xd2, 0x9d, 0x3d, 0x08 +.byte 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d, 0xb3, 0x7a, 0x9a, 0xfb, 0x07 +.byte 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a, 0x74, 0x2a, 0xe5, 0x1c, 0x98 +.byte 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3, 0x6a, 0x47, 0x76, 0x65, 0xf6 +.byte 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a, 0xd2, 0x83, 0x1e, 0x21, 0xc7 +.byte 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78, 0x4d, 0x8d, 0xce, 0x67, 0xe5 +.byte 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34, 0x98, 0xa9, 0x36, 0x2b, 0x8a +.byte 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89, 0x5c, 0x5a, 0xb6, 0x2f, 0x8c +.byte 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2, 0x66, 0x8d, 0x63, 0x0e, 0x25 +.byte 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54, 0x31, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x61, 0x01, 0x26, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54 +.byte 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 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, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7 +.byte 0xde, 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11 +.byte 0x10, 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8 +.byte 0x53, 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33 +.byte 0x22, 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e +.byte 0x10, 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0 +.byte 0x80, 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37 +.byte 0x63, 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9 +.byte 0x56, 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87 +.byte 0x30, 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99 +.byte 0x45, 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25 +.byte 0x9a, 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06 +.byte 0xbf, 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93 +.byte 0x9a, 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9 +.byte 0xc7, 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe +.byte 0x0f, 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c +.byte 0x58, 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x02, 0x26 +.byte 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31 +.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65 +.byte 0x20, 0x4e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63 +.byte 0x74, 0x72, 0x6f, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x10, 0x54, 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5 +.byte 0x88, 0x2e, 0x05, 0x4b, 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8 +.byte 0x73, 0xda, 0xf6, 0x06, 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0 +.byte 0x7e, 0x06, 0xd4, 0xec, 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4 +.byte 0xa3, 0x0a, 0xb2, 0x6c, 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec +.byte 0x34, 0xe5, 0x30, 0xc4, 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80 +.byte 0x45, 0x9c, 0x39, 0xad, 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a +.byte 0x6b, 0xcd, 0x29, 0x67, 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa +.byte 0x7a, 0x43, 0xda, 0x7e, 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72 +.byte 0xec, 0x11, 0xbb, 0x35, 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56 +.byte 0xd7, 0xcc, 0x4e, 0xa0, 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97 +.byte 0xd7, 0xca, 0xa3, 0x65, 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f +.byte 0xf5, 0x8a, 0x2c, 0x47, 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29 +.byte 0xcc, 0x00, 0x58, 0x97, 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2 +.byte 0x8b, 0x10, 0x84, 0xc3, 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92 +.byte 0x94, 0x60, 0x5c, 0xc7, 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2 +.byte 0xa9, 0x83, 0xad, 0x58, 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81 +.byte 0x6e, 0x07, 0xdb, 0x60, 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9 +.byte 0x3e, 0xa2, 0x5b, 0x23, 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2 +.byte 0x51, 0xf8, 0x66, 0xbf, 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99 +.byte 0x1d, 0xb2, 0x8f, 0x0c, 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37 +.byte 0xf3, 0xcd, 0x3a, 0x24, 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6 +.byte 0xc8, 0xf1, 0x56, 0x3f, 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2 +.byte 0xdf, 0x7b, 0xf6, 0x5d, 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c +.byte 0xc2, 0x1d, 0x3f, 0xad, 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23 +.byte 0xf9, 0xb8, 0x58, 0x41, 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc +.byte 0x91, 0x6d, 0x58, 0xa7, 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac +.byte 0x0d, 0x7c, 0x54, 0xe6, 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4 +.byte 0x83, 0xc2, 0x80, 0xb9, 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f +.byte 0xd2, 0x28, 0x42, 0x01, 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5 +.byte 0x34, 0xa1, 0xec, 0x2c, 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14 +.byte 0x35, 0x43, 0x5d, 0x27, 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad +.byte 0x44, 0xd3, 0x00, 0x97, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30, 0x61, 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, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.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, 0xe2, 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f +.byte 0x0b, 0x77, 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01 +.byte 0x93, 0xa7, 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22 +.byte 0xdd, 0x87, 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71 +.byte 0x46, 0xe2, 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d +.byte 0xee, 0xb7, 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d +.byte 0x1f, 0xbc, 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85 +.byte 0x68, 0x6e, 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77 +.byte 0x10, 0xbf, 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5 +.byte 0xd1, 0xa2, 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4 +.byte 0x5f, 0xb4, 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76 +.byte 0x5e, 0xa0, 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb +.byte 0xfe, 0xcd, 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3 +.byte 0x0b, 0x42, 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d +.byte 0x58, 0x3f, 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16 +.byte 0xf2, 0x4c, 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf +.byte 0x27, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63 +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64 +.byte 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 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, 0xbb, 0x37 +.byte 0xcd, 0x34, 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21 +.byte 0x0a, 0x08, 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91 +.byte 0x3c, 0x7a, 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba +.byte 0x62, 0x9a, 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c +.byte 0x63, 0x1a, 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb +.byte 0x94, 0x83, 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f +.byte 0xe4, 0xa9, 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92 +.byte 0x60, 0xff, 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba +.byte 0xe9, 0xb4, 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab +.byte 0x95, 0x04, 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49 +.byte 0x4b, 0xb4, 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0 +.byte 0xf6, 0xa9, 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82 +.byte 0x9d, 0xcd, 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe +.byte 0x17, 0xa1, 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28 +.byte 0xf6, 0x73, 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f +.byte 0x45, 0x0c, 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69 +.byte 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 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, 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe +.byte 0xbe, 0x73, 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6 +.byte 0xf0, 0xcc, 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63 +.byte 0x0c, 0x17, 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d +.byte 0x3b, 0xad, 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72 +.byte 0xde, 0xae, 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3 +.byte 0xe2, 0x3e, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29 +.byte 0x47, 0x55, 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49 +.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59 +.byte 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55 +.byte 0x54, 0x48, 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd9, 0xa3, 0x16, 0xf0, 0xc8 +.byte 0x74, 0x74, 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76 +.byte 0x86, 0x12, 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd +.byte 0x34, 0x2c, 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c +.byte 0xb0, 0xe9, 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2 +.byte 0x9c, 0x8f, 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7 +.byte 0x5b, 0xbd, 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a +.byte 0xec, 0x5f, 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b +.byte 0x56, 0xa2, 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6 +.byte 0x6e, 0xec, 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86 +.byte 0x3d, 0x72, 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1 +.byte 0x2d, 0x08, 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a +.byte 0x45, 0x44, 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82 +.byte 0x8e, 0x17, 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9 +.byte 0x5a, 0x66, 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f +.byte 0xfb, 0xc5, 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39 +.byte 0x18, 0x23, 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26 +.byte 0x50, 0xf2, 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb +.byte 0x6e, 0x07, 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3 +.byte 0x91, 0xe4, 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18 +.byte 0xc0, 0xf3, 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47 +.byte 0xa7, 0xe5, 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17 +.byte 0xcc, 0x2b, 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d +.byte 0xbd, 0xdf, 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80 +.byte 0xb7, 0x53, 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1 +.byte 0x82, 0xec, 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65 +.byte 0x64, 0x92, 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8 +.byte 0xbc, 0xd1, 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8 +.byte 0xf8, 0xa1, 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30 +.byte 0xa0, 0x2f, 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97 +.byte 0x06, 0xe0, 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed +.byte 0xa5, 0x8d, 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70 +.byte 0x06, 0x21, 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72 +.byte 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18 +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 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, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb +.byte 0xe4, 0x5d, 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21 +.byte 0x3d, 0xf2, 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae +.byte 0x7b, 0x1b, 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97 +.byte 0x6d, 0x1d, 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f +.byte 0x52, 0x1f, 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf +.byte 0x68, 0x93, 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10 +.byte 0x2e, 0xdf, 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee +.byte 0x20, 0xd5, 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21 +.byte 0x61, 0x9b, 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac +.byte 0x34, 0x40, 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54 +.byte 0x58, 0x8e, 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad +.byte 0xc9, 0x4f, 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda +.byte 0xb6, 0x91, 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38 +.byte 0x03, 0x10, 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91 +.byte 0x70, 0xab, 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21 +.byte 0x4c, 0xd4, 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33 +.byte 0x40, 0xbf, 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc +.byte 0xa1, 0x4f, 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69 +.byte 0x88, 0x76, 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0 +.byte 0xe0, 0xa2, 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6 +.byte 0xd4, 0xef, 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44 +.byte 0x19, 0x2b, 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04 +.byte 0x00, 0xcc, 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2 +.byte 0xd5, 0x8c, 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e +.byte 0xf6, 0x80, 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43 +.byte 0xa4, 0x18, 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25 +.byte 0x89, 0x6c, 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a +.byte 0xac, 0x5f, 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31 +.byte 0xc5, 0xca, 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4 +.byte 0x20, 0x51, 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc +.byte 0xa1, 0x1e, 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98 +.byte 0x1d, 0x2d, 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x64 +.byte 0x01, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x4e, 0x65, 0x74, 0x77 +.byte 0x6f, 0x72, 0x6b, 0x20, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x4c, 0x2e +.byte 0x4c, 0x2e, 0x43, 0x2e, 0x31, 0x30, 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x27, 0x4e +.byte 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x53, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xe4, 0xbc, 0x7e, 0x92, 0x30, 0x6d, 0xc6, 0xd8, 0x8e +.byte 0x2b, 0x0b, 0xbc, 0x46, 0xce, 0xe0, 0x27, 0x96, 0xde, 0xde, 0xf9, 0xfa, 0x12, 0xd3, 0x3c, 0x33 +.byte 0x73, 0xb3, 0x04, 0x2f, 0xbc, 0x71, 0x8c, 0xe5, 0x9f, 0xb6, 0x22, 0x60, 0x3e, 0x5f, 0x5d, 0xce +.byte 0x09, 0xff, 0x82, 0x0c, 0x1b, 0x9a, 0x51, 0x50, 0x1a, 0x26, 0x89, 0xdd, 0xd5, 0x61, 0x5d, 0x19 +.byte 0xdc, 0x12, 0x0f, 0x2d, 0x0a, 0xa2, 0x43, 0x5d, 0x17, 0xd0, 0x34, 0x92, 0x20, 0xea, 0x73, 0xcf +.byte 0x38, 0x2c, 0x06, 0x26, 0x09, 0x7a, 0x72, 0xf7, 0xfa, 0x50, 0x32, 0xf8, 0xc2, 0x93, 0xd3, 0x69 +.byte 0xa2, 0x23, 0xce, 0x41, 0xb1, 0xcc, 0xe4, 0xd5, 0x1f, 0x36, 0xd1, 0x8a, 0x3a, 0xf8, 0x8c, 0x63 +.byte 0xe2, 0x14, 0x59, 0x69, 0xed, 0x0d, 0xd3, 0x7f, 0x6b, 0xe8, 0xb8, 0x03, 0xe5, 0x4f, 0x6a, 0xe5 +.byte 0x98, 0x63, 0x69, 0x48, 0x05, 0xbe, 0x2e, 0xff, 0x33, 0xb6, 0xe9, 0x97, 0x59, 0x69, 0xf8, 0x67 +.byte 0x19, 0xae, 0x93, 0x61, 0x96, 0x44, 0x15, 0xd3, 0x72, 0xb0, 0x3f, 0xbc, 0x6a, 0x7d, 0xec, 0x48 +.byte 0x7f, 0x8d, 0xc3, 0xab, 0xaa, 0x71, 0x2b, 0x53, 0x69, 0x41, 0x53, 0x34, 0xb5, 0xb0, 0xb9, 0xc5 +.byte 0x06, 0x0a, 0xc4, 0xb0, 0x45, 0xf5, 0x41, 0x5d, 0x6e, 0x89, 0x45, 0x7b, 0x3d, 0x3b, 0x26, 0x8c +.byte 0x74, 0xc2, 0xe5, 0xd2, 0xd1, 0x7d, 0xb2, 0x11, 0xd4, 0xfb, 0x58, 0x32, 0x22, 0x9a, 0x80, 0xc9 +.byte 0xdc, 0xfd, 0x0c, 0xe9, 0x7f, 0x5e, 0x03, 0x97, 0xce, 0x3b, 0x00, 0x14, 0x87, 0x27, 0x70, 0x38 +.byte 0xa9, 0x8e, 0x6e, 0xb3, 0x27, 0x76, 0x98, 0x51, 0xe0, 0x05, 0xe3, 0x21, 0xab, 0x1a, 0xd5, 0x85 +.byte 0x22, 0x3c, 0x29, 0xb5, 0x9a, 0x16, 0xc5, 0x80, 0xa8, 0xf4, 0xbb, 0x6b, 0x30, 0x8f, 0x2f, 0x46 +.byte 0x02, 0xa2, 0xb1, 0x0c, 0x22, 0xe0, 0xd3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x65, 0x01, 0x24 +.byte 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f +.byte 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20 +.byte 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01 +.byte 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb +.byte 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3 +.byte 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63 +.byte 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81 +.byte 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20 +.byte 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27 +.byte 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72 +.byte 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0 +.byte 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d +.byte 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04 +.byte 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f +.byte 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03 +.byte 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe +.byte 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07 +.byte 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba +.byte 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f +.byte 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x00, 0x67, 0x01, 0x26, 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, 0x43, 0x41, 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, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3 +.byte 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20 +.byte 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1 +.byte 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7 +.byte 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c +.byte 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1 +.byte 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1 +.byte 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f +.byte 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16 +.byte 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda +.byte 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a +.byte 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13 +.byte 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17 +.byte 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1 +.byte 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2 +.byte 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb +.byte 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x67, 0x01, 0x26, 0x30, 0x65 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77 +.byte 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31 +.byte 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88 +.byte 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf +.byte 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa +.byte 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00 +.byte 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd +.byte 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf +.byte 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52 +.byte 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b +.byte 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74 +.byte 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29 +.byte 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3 +.byte 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe +.byte 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1 +.byte 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02, 0x77, 0x44 +.byte 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87 +.byte 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa +.byte 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x67, 0x00, 0x78, 0x30 +.byte 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10 +.byte 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 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, 0x19, 0xe7 +.byte 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d +.byte 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f +.byte 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9 +.byte 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6 +.byte 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f +.byte 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39, 0x00, 0x67 +.byte 0x00, 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 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, 0xd4, 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51 +.byte 0x2f, 0x6a, 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51 +.byte 0xa2, 0x03, 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79 +.byte 0xa6, 0x2f, 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63, 0x04, 0x66, 0x99 +.byte 0xf8, 0xfa, 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b +.byte 0x84, 0x60, 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78 +.byte 0xc0, 0x00, 0x67, 0x02, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 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, 0xca, 0x5b, 0xbe +.byte 0x94, 0x33, 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99 +.byte 0x36, 0xdf, 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67 +.byte 0x50, 0x33, 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c +.byte 0x48, 0x40, 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4 +.byte 0x65, 0xd0, 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b +.byte 0x43, 0x1d, 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9 +.byte 0x6c, 0xb3, 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5 +.byte 0x1c, 0xb5, 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae +.byte 0x60, 0xa4, 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2 +.byte 0xde, 0x4b, 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66 +.byte 0x80, 0x64, 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78 +.byte 0x33, 0x5b, 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82 +.byte 0x3e, 0x76, 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9 +.byte 0x8c, 0x49, 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe +.byte 0x78, 0xa8, 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89 +.byte 0xad, 0xba, 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c +.byte 0x68, 0x30, 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85 +.byte 0x3b, 0x3e, 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2 +.byte 0x5e, 0x44, 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86 +.byte 0x61, 0xa4, 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13 +.byte 0x2b, 0x8f, 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1 +.byte 0x48, 0x27, 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba +.byte 0x5b, 0xa2, 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22 +.byte 0x98, 0xf4, 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac +.byte 0xfc, 0x38, 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a +.byte 0x50, 0x6b, 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae +.byte 0x57, 0x22, 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e +.byte 0x0e, 0xd3, 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07 +.byte 0xf8, 0x52, 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2 +.byte 0x81, 0xe1, 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54 +.byte 0xd4, 0x14, 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90 +.byte 0x5b, 0x98, 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x69, 0x01, 0x26, 0x30, 0x67, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a +.byte 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 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 0x93, 0x4b, 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3 +.byte 0xe7, 0x9e, 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b +.byte 0x20, 0xc6, 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3 +.byte 0x76, 0xbd, 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29 +.byte 0xdd, 0x16, 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a +.byte 0xfe, 0x3c, 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b +.byte 0xaa, 0xcd, 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32 +.byte 0x16, 0xd3, 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b +.byte 0xd9, 0x4e, 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3 +.byte 0xfa, 0xa2, 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62 +.byte 0xe2, 0xab, 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68 +.byte 0x85, 0x6d, 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96 +.byte 0xd1, 0x13, 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40 +.byte 0x1c, 0x3e, 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2 +.byte 0x86, 0x60, 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79 +.byte 0x4e, 0x34, 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6a, 0x01, 0x24, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 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, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 +.byte 0x65, 0x6c, 0x64, 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, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11 +.byte 0x64, 0xdf, 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f +.byte 0xf0, 0xc3, 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0 +.byte 0x9e, 0xe8, 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0 +.byte 0xc8, 0xaf, 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d +.byte 0xfa, 0x5a, 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25 +.byte 0x14, 0x54, 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a +.byte 0xff, 0xad, 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34 +.byte 0x5f, 0xdb, 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a +.byte 0x3e, 0x10, 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51 +.byte 0x3c, 0x30, 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a +.byte 0x2b, 0x85, 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8 +.byte 0x36, 0x3d, 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64 +.byte 0x8d, 0x17, 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0 +.byte 0xd5, 0x6e, 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea +.byte 0x3e, 0xbb, 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2 +.byte 0x44, 0xa0, 0x01, 0xab, 0x02, 0x01, 0x03, 0x00, 0x6b, 0x02, 0x26, 0x30, 0x69, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e +.byte 0x45, 0x53, 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72 +.byte 0x70, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56 +.byte 0x45, 0x52, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xb6, 0xd4, 0xf1, 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a +.byte 0xab, 0x0d, 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65 +.byte 0x5a, 0x29, 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a +.byte 0x31, 0x65, 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7 +.byte 0x6a, 0xe9, 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91 +.byte 0xb1, 0xca, 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02 +.byte 0xe5, 0xda, 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84 +.byte 0x93, 0x18, 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9 +.byte 0x02, 0x1d, 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54 +.byte 0xf7, 0x34, 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a +.byte 0xdd, 0xfe, 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9 +.byte 0x66, 0xd3, 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69 +.byte 0xa7, 0x29, 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b +.byte 0x92, 0x8d, 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69 +.byte 0xed, 0x6f, 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc +.byte 0x44, 0xaa, 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f +.byte 0x0c, 0x0b, 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03 +.byte 0xa0, 0xa0, 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9 +.byte 0xf1, 0x6d, 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d +.byte 0xf3, 0x54, 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2 +.byte 0xd5, 0x09, 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c +.byte 0x53, 0x70, 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e +.byte 0x5f, 0x1b, 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f +.byte 0xa9, 0xb0, 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce +.byte 0xbf, 0x5d, 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb +.byte 0x3e, 0x9c, 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17 +.byte 0x61, 0x96, 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5 +.byte 0x5b, 0x3e, 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90 +.byte 0x62, 0xb4, 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9 +.byte 0x5e, 0x04, 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80 +.byte 0x6b, 0xed, 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01 +.byte 0xc9, 0xb8, 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9 +.byte 0x74, 0x84, 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6d, 0x00, 0x78 +.byte 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31 +.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65 +.byte 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67 +.byte 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2 +.byte 0xdd, 0xe2, 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74 +.byte 0xec, 0xbb, 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14 +.byte 0xa8, 0x4a, 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06 +.byte 0xd0, 0x86, 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6 +.byte 0xa5, 0x63, 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82 +.byte 0x64, 0x7d, 0x16, 0x93, 0xd1, 0x00, 0x6d, 0x02, 0x26, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41 +.byte 0x2e, 0x2f, 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5 +.byte 0x18, 0xc5, 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a +.byte 0xc2, 0x1c, 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08 +.byte 0x83, 0xd5, 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16 +.byte 0xd5, 0x5f, 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a +.byte 0x69, 0x4d, 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58 +.byte 0xee, 0xdc, 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d +.byte 0xf5, 0x41, 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e +.byte 0x86, 0x54, 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0 +.byte 0x7d, 0x13, 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b +.byte 0x3a, 0xbd, 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07 +.byte 0x37, 0x08, 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd +.byte 0x2a, 0xed, 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3 +.byte 0x3d, 0xd0, 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30 +.byte 0x26, 0xfc, 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f +.byte 0x99, 0xd3, 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6 +.byte 0xa3, 0x18, 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21 +.byte 0xc5, 0xe3, 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9 +.byte 0xdd, 0xc4, 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b +.byte 0x2e, 0xb6, 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7 +.byte 0x4a, 0x97, 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c +.byte 0xff, 0x18, 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14 +.byte 0x4f, 0x59, 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b +.byte 0x6f, 0xfb, 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a +.byte 0x8f, 0x4a, 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35 +.byte 0x7c, 0x4c, 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7 +.byte 0x17, 0x06, 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d +.byte 0x6d, 0xe0, 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f +.byte 0xe6, 0xdf, 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58 +.byte 0xf0, 0x12, 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b +.byte 0xb2, 0xfe, 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3 +.byte 0x56, 0x8d, 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b +.byte 0xd9, 0xb2, 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6e, 0x00, 0x78 +.byte 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31 +.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e +.byte 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20 +.byte 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43 +.byte 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 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, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf +.byte 0x49, 0x3a, 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88 +.byte 0x84, 0xfc, 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55 +.byte 0x87, 0xfc, 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9 +.byte 0xf2, 0x96, 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75 +.byte 0xd3, 0x72, 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58 +.byte 0x90, 0x15, 0x72, 0xa7, 0xa1, 0xb7, 0x00, 0x6e, 0x02, 0x26, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61 +.byte 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20 +.byte 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52 +.byte 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 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, 0x8b, 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05 +.byte 0x67, 0x96, 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84 +.byte 0x7f, 0x77, 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25 +.byte 0x09, 0x97, 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51 +.byte 0x82, 0xff, 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b +.byte 0x4c, 0xbf, 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98 +.byte 0xe2, 0x23, 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda +.byte 0x1f, 0xd3, 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0 +.byte 0xd6, 0x69, 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa +.byte 0xe3, 0xa4, 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3 +.byte 0x9f, 0xae, 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5 +.byte 0x30, 0x94, 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4 +.byte 0x5a, 0xd9, 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f +.byte 0x8e, 0x0b, 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99 +.byte 0xca, 0x88, 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70 +.byte 0xc0, 0x5a, 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e +.byte 0xd1, 0xf2, 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22 +.byte 0x38, 0x80, 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f +.byte 0x35, 0xab, 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5 +.byte 0x11, 0xd1, 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba +.byte 0xb3, 0x50, 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70 +.byte 0xa3, 0x09, 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea, 0x81, 0x00, 0x63 +.byte 0x14, 0xb9, 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4 +.byte 0xa7, 0x02, 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0 +.byte 0xde, 0x3c, 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad +.byte 0x77, 0x4c, 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f +.byte 0x20, 0x8a, 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a +.byte 0x83, 0x50, 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68 +.byte 0xe3, 0x26, 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a +.byte 0x72, 0x61, 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe +.byte 0xb3, 0x50, 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84 +.byte 0x5e, 0x68, 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27 +.byte 0x65, 0x2e, 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6e +.byte 0x01, 0x26, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75 +.byte 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.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, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5 +.byte 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a +.byte 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41 +.byte 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82 +.byte 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab +.byte 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92 +.byte 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e +.byte 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b +.byte 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13 +.byte 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79 +.byte 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd +.byte 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c +.byte 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12 +.byte 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca +.byte 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e +.byte 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b +.byte 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x26, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e +.byte 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31 +.byte 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20 +.byte 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 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, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24 +.byte 0x2a, 0xd6, 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98 +.byte 0x4e, 0x27, 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31 +.byte 0xbb, 0xa8, 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79 +.byte 0xd6, 0x32, 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87 +.byte 0x4a, 0x0b, 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf +.byte 0x9e, 0x15, 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50 +.byte 0xff, 0xba, 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1 +.byte 0x6b, 0x6e, 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23 +.byte 0xfc, 0xc9, 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42 +.byte 0x8e, 0x69, 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7 +.byte 0xd4, 0xa8, 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77 +.byte 0x3f, 0x9d, 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a +.byte 0x16, 0x0d, 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29 +.byte 0xda, 0x8e, 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b +.byte 0xc8, 0x8b, 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58 +.byte 0x93, 0xad, 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x6f, 0x00, 0x78, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53 +.byte 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f +.byte 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20 +.byte 0x43, 0x41, 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, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f +.byte 0x72, 0x18, 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54 +.byte 0x24, 0xdb, 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82 +.byte 0x81, 0x0d, 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d +.byte 0xf1, 0xdb, 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1 +.byte 0x87, 0x78, 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13 +.byte 0x4d, 0xa4, 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x00, 0x71, 0x02, 0x26, 0x30, 0x6f +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e +.byte 0x67, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67 +.byte 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d +.byte 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30 +.byte 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67 +.byte 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 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 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f, 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc +.byte 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1, 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60 +.byte 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4, 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef +.byte 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc, 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53 +.byte 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13, 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca +.byte 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13, 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd +.byte 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88, 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31 +.byte 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89, 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0 +.byte 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5, 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e +.byte 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f, 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12 +.byte 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb, 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4 +.byte 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda, 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06 +.byte 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50, 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff +.byte 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e, 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d +.byte 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2, 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08 +.byte 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c, 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f +.byte 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42, 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46 +.byte 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41, 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01 +.byte 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b, 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76 +.byte 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d, 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e +.byte 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72, 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55 +.byte 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d, 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63 +.byte 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c, 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50 +.byte 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95, 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3 +.byte 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39, 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21 +.byte 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0, 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c +.byte 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed, 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc +.byte 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d, 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93 +.byte 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48, 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79 +.byte 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42, 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab +.byte 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f, 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3 +.byte 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d, 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x73, 0x00, 0x5b, 0x30, 0x71, 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, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c +.byte 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41 +.byte 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33, 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6 +.byte 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3, 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59 +.byte 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e, 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53 +.byte 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6, 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b +.byte 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a, 0xda, 0x00, 0x76, 0x00, 0x78, 0x30, 0x74, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61 +.byte 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x10, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43 +.byte 0x41, 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, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a +.byte 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4, 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82 +.byte 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1, 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d +.byte 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60, 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02 +.byte 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11, 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7 +.byte 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55, 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0 +.byte 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53, 0xad, 0xeb, 0xc2, 0x00, 0x7a, 0x00, 0x78, 0x30, 0x78, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31 +.byte 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31 +.byte 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d +.byte 0x51, 0x32, 0x38, 0x32, 0x36, 0x30, 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54 +.byte 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20 +.byte 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f, 0x53, 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, 0xf6 +.byte 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab, 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67 +.byte 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e, 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00 +.byte 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb, 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c +.byte 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9, 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69 +.byte 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5, 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf +.byte 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43, 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x00 +.byte 0x7c, 0x02, 0x26, 0x30, 0x7a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73 +.byte 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73 +.byte 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e +.byte 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 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 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36, 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4 +.byte 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82, 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba +.byte 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c, 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01 +.byte 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8, 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf +.byte 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf, 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8 +.byte 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2, 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e +.byte 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f, 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72 +.byte 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08, 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4 +.byte 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1, 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe +.byte 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d, 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03 +.byte 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a, 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd +.byte 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32, 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba +.byte 0x60, 0x13, 0xca, 0x65, 0x95, 0x67, 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27 +.byte 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a, 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42 +.byte 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90, 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e +.byte 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9, 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28 +.byte 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79, 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a +.byte 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7, 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87 +.byte 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e, 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17 +.byte 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e, 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a +.byte 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d, 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b +.byte 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d, 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04 +.byte 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72, 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8 +.byte 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b, 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2 +.byte 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1, 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c +.byte 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59, 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa +.byte 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57, 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb +.byte 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4, 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f +.byte 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30, 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c +.byte 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0, 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd +.byte 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08, 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca +.byte 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5, 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7d, 0x01, 0x26, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68 +.byte 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41 +.byte 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87 +.byte 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f +.byte 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5 +.byte 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb +.byte 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3 +.byte 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef +.byte 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76 +.byte 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91 +.byte 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56 +.byte 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32 +.byte 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f +.byte 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e +.byte 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01 +.byte 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5 +.byte 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a +.byte 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3 +.byte 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7e, 0x00, 0x78 +.byte 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f +.byte 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 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, 0x45, 0x43, 0x43, 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, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f +.byte 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22, 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2 +.byte 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9, 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed +.byte 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb, 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b +.byte 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41, 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34 +.byte 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f, 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09 +.byte 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3, 0x00, 0x7e, 0x02, 0x26, 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, 0x52, 0x53, 0x41, 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, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb +.byte 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85, 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf +.byte 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91, 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd +.byte 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16, 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85 +.byte 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd, 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e +.byte 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97, 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f +.byte 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c, 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61 +.byte 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d, 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65 +.byte 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02, 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe +.byte 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1, 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92 +.byte 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8, 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d +.byte 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37, 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34 +.byte 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7, 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1 +.byte 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9, 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29 +.byte 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1, 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54 +.byte 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38, 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c +.byte 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28, 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11 +.byte 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5, 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75 +.byte 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a, 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c +.byte 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03, 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85 +.byte 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4, 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8 +.byte 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e, 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42 +.byte 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27, 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c +.byte 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c, 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00 +.byte 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4, 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37 +.byte 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe, 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc +.byte 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc, 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc +.byte 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb, 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb +.byte 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b, 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27 +.byte 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26, 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84 +.byte 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78, 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73 +.byte 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22, 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1 +.byte 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2, 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x80 +.byte 0x01, 0x26, 0x30, 0x7e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50 +.byte 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a +.byte 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73 +.byte 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e +.byte 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 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, 0xe3, 0xfb, 0x7d, 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b +.byte 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07, 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a +.byte 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32, 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02 +.byte 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1, 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac +.byte 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2, 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2 +.byte 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae, 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3 +.byte 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59, 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c +.byte 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9, 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15 +.byte 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39, 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4 +.byte 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76, 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c +.byte 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f, 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba +.byte 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25, 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e +.byte 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e, 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48 +.byte 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39, 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf +.byte 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11, 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7 +.byte 0x69, 0xde, 0x07, 0x33, 0x28, 0xca, 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45 +.byte 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x81, 0x00, 0x78, 0x30, 0x7f, 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, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x2b, 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, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa, 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07 +.byte 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21 +.byte 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8 +.byte 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08 +.byte 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd +.byte 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1 +.byte 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x00, 0x83, 0x02, 0x26, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68 +.byte 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20 +.byte 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32, 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, 0xbd, 0xf9, 0x78 +.byte 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e +.byte 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9 +.byte 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7 +.byte 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef +.byte 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85 +.byte 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3 +.byte 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f +.byte 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3 +.byte 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda +.byte 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52 +.byte 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27 +.byte 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34 +.byte 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23 +.byte 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73 +.byte 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0 +.byte 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99 +.byte 0x32, 0x75, 0x02, 0x31, 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37 +.byte 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d +.byte 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99 +.byte 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56 +.byte 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43 +.byte 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d +.byte 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6 +.byte 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac +.byte 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d +.byte 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda +.byte 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a +.byte 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9 +.byte 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6 +.byte 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83 +.byte 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c +.byte 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x83, 0x00, 0x78, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13 +.byte 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x45, 0x42, 0x47, 0x20, 0x41, 0x2e +.byte 0x53, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x14, 0x45, 0x2d, 0x54 +.byte 0x75, 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65 +.byte 0x72, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x45, 0x2d, 0x54, 0x75 +.byte 0x67, 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x76, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x8e, 0x98, 0x29, 0xbf, 0xc7, 0x10, 0x1e, 0x27, 0xdb, 0xab, 0x03, 0xcc, 0x28, 0x2c, 0xd8 +.byte 0x5e, 0x48, 0x19, 0x10, 0x29, 0xcc, 0xcb, 0x59, 0x81, 0xcc, 0x8c, 0xb8, 0x92, 0x17, 0x89, 0x83 +.byte 0x2a, 0x92, 0xf6, 0xc3, 0xa4, 0x1d, 0x4c, 0x62, 0xd5, 0x9f, 0xd6, 0xa0, 0x46, 0xdc, 0x1c, 0xbc +.byte 0x76, 0xc1, 0xe3, 0x47, 0xd0, 0x5b, 0x13, 0xda, 0xe7, 0xa5, 0xb3, 0x66, 0x48, 0xe7, 0x21, 0x9a +.byte 0x4a, 0x4f, 0x86, 0x0a, 0x7d, 0x6c, 0xea, 0x4d, 0x32, 0x80, 0x0a, 0xb2, 0x7a, 0x09, 0x9b, 0x69 +.byte 0x4b, 0x98, 0x81, 0xe2, 0x2e, 0xec, 0x02, 0x70, 0x96, 0x1f, 0xfd, 0xf5, 0x46, 0xce, 0xca, 0xdc +.byte 0x82, 0x00, 0x83, 0x02, 0x26, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06 +.byte 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x45, 0x42, 0x47, 0x20, 0x41, 0x2e, 0x53 +.byte 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x14, 0x45, 0x2d, 0x54, 0x75 +.byte 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72 +.byte 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67 +.byte 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x52, 0x53, 0x41, 0x20, 0x76, 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, 0xa2, 0x66, 0xf0, 0x89, 0xb7, 0x72, 0x7b +.byte 0xee, 0x09, 0xc9, 0x63, 0xd2, 0xd3, 0x43, 0xdd, 0x5e, 0xc3, 0xa6, 0x84, 0x38, 0x4a, 0xf1, 0x8d +.byte 0x81, 0xbb, 0x14, 0xbd, 0x47, 0xe8, 0x40, 0x17, 0xf3, 0x3d, 0xc3, 0x78, 0x45, 0x72, 0xa6, 0x2e +.byte 0x90, 0xde, 0x9a, 0x3a, 0xd4, 0x20, 0x71, 0xca, 0xbc, 0x9f, 0x1d, 0x4b, 0x97, 0x0a, 0xc7, 0x31 +.byte 0xba, 0x3e, 0xd7, 0xfe, 0x25, 0xa9, 0x2a, 0x8e, 0x36, 0xf4, 0xd1, 0x2f, 0xc7, 0xb7, 0xa9, 0x5d +.byte 0x33, 0xdc, 0x30, 0x70, 0xf8, 0x40, 0x6c, 0x4b, 0xb2, 0xa6, 0x31, 0x61, 0xd1, 0x34, 0x3c, 0x3d +.byte 0x31, 0x7a, 0xc7, 0xaf, 0xc4, 0xa7, 0xa7, 0x84, 0xe1, 0x97, 0xa4, 0xe8, 0x4b, 0xf6, 0x17, 0x7c +.byte 0xee, 0x3c, 0x07, 0xed, 0xe2, 0x8a, 0x57, 0xdc, 0xb6, 0xfb, 0xf8, 0x43, 0x25, 0x50, 0xea, 0x27 +.byte 0x81, 0xa8, 0x86, 0xbc, 0x8f, 0x52, 0x4a, 0x96, 0x3a, 0x60, 0x1a, 0x96, 0xbb, 0xfd, 0x73, 0xf4 +.byte 0x85, 0xfd, 0x83, 0xfd, 0x7f, 0x84, 0x6d, 0x34, 0x6c, 0x7f, 0x6a, 0xb7, 0x4b, 0x01, 0x03, 0xbf +.byte 0xad, 0x69, 0xb7, 0xd7, 0x32, 0xd9, 0xf5, 0x57, 0x6a, 0xe9, 0x86, 0x82, 0x3e, 0xa5, 0x66, 0x31 +.byte 0xb3, 0x16, 0x3d, 0xc2, 0xf3, 0x26, 0x60, 0x32, 0xd3, 0x52, 0x1e, 0xb0, 0x6c, 0xa4, 0x37, 0x3e +.byte 0xf4, 0xf5, 0xaf, 0xeb, 0xe1, 0xdf, 0x80, 0x06, 0xcf, 0x2a, 0x41, 0xe7, 0x66, 0x09, 0xe1, 0x4b +.byte 0x97, 0xe7, 0x77, 0xbd, 0x21, 0x6d, 0x29, 0xb6, 0x67, 0xc3, 0x2d, 0x7e, 0xed, 0xd6, 0x79, 0x65 +.byte 0xd1, 0xcf, 0x3a, 0xb6, 0xd1, 0xb1, 0x5e, 0x56, 0x61, 0x50, 0x7a, 0x5a, 0xce, 0x4e, 0x50, 0x31 +.byte 0x80, 0x03, 0x98, 0x47, 0xe7, 0xe4, 0x18, 0x7c, 0x44, 0x5a, 0xc6, 0xa4, 0xb3, 0x3b, 0xc6, 0xc6 +.byte 0xc3, 0x3a, 0xf0, 0x6c, 0xc3, 0x8b, 0xc8, 0xa4, 0x91, 0x05, 0xf3, 0xf5, 0xd9, 0xb6, 0xaa, 0x06 +.byte 0xa1, 0xb7, 0xab, 0xe4, 0xb1, 0xea, 0x21, 0x14, 0x5c, 0x83, 0xa4, 0xfc, 0xff, 0xb6, 0x50, 0xd3 +.byte 0x8c, 0x12, 0x26, 0x99, 0x76, 0x70, 0xe9, 0xc0, 0x0f, 0xa6, 0x74, 0xfc, 0xbb, 0xd0, 0x1b, 0x78 +.byte 0xce, 0x72, 0x92, 0xe2, 0x28, 0x9c, 0xbc, 0xe6, 0xe9, 0x09, 0xd8, 0x3a, 0xd3, 0x89, 0xe6, 0xbe +.byte 0x2e, 0x77, 0xdf, 0x01, 0x0a, 0x6f, 0x96, 0xf6, 0xe5, 0x8d, 0x3c, 0x4d, 0x52, 0x76, 0x1a, 0x56 +.byte 0xe1, 0x73, 0x7e, 0x17, 0xac, 0x3d, 0xad, 0x6c, 0xa3, 0x52, 0x12, 0x18, 0x70, 0xe6, 0x80, 0x4e +.byte 0x33, 0xf2, 0x7e, 0x26, 0x32, 0xac, 0x05, 0x8d, 0x38, 0xa4, 0xe6, 0x76, 0x3c, 0x9f, 0x10, 0x69 +.byte 0x0e, 0x6d, 0x9d, 0xd2, 0xc1, 0x79, 0x20, 0x6b, 0x5b, 0xcf, 0x33, 0x8d, 0xd1, 0x94, 0x76, 0x35 +.byte 0xe7, 0x5d, 0x55, 0xc7, 0xb7, 0xac, 0x28, 0xab, 0x46, 0xcc, 0xe7, 0x3b, 0x21, 0xb5, 0x0a, 0x0a +.byte 0xe4, 0x4a, 0x59, 0xdc, 0x81, 0x35, 0x4b, 0x44, 0x95, 0x12, 0x0a, 0x67, 0xa5, 0xa1, 0xff, 0x5b +.byte 0x00, 0x07, 0xd2, 0xc0, 0xcc, 0xf9, 0x3f, 0xfc, 0x9f, 0x33, 0xf2, 0x00, 0xf8, 0x8c, 0x6c, 0x87 +.byte 0x9d, 0x06, 0x2d, 0xf1, 0xef, 0xe3, 0xe6, 0x06, 0xfa, 0xc5, 0x66, 0x13, 0x5b, 0xfc, 0x50, 0x07 +.byte 0x9e, 0x71, 0x86, 0xb2, 0xda, 0x6f, 0x74, 0x30, 0xcf, 0x93, 0x53, 0xe8, 0xdc, 0x22, 0xd6, 0xde +.byte 0x20, 0x1f, 0x61, 0x8d, 0xa3, 0x2e, 0xa3, 0x78, 0x32, 0x90, 0x6c, 0xdc, 0xac, 0x32, 0xb5, 0x05 +.byte 0xe4, 0xf5, 0x3c, 0x33, 0x0d, 0xd6, 0xe0, 0x87, 0x77, 0x17, 0x4c, 0x9d, 0xb0, 0xd8, 0x09, 0xa8 +.byte 0x0d, 0x57, 0xf7, 0x44, 0x85, 0xf0, 0xc8, 0x04, 0xbe, 0x5c, 0x5d, 0x5a, 0xe3, 0x17, 0x8e, 0x54 +.byte 0x63, 0x69, 0x7f, 0x49, 0x74, 0x64, 0x05, 0x8c, 0xa3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x84 +.byte 0x01, 0x26, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 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, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72 +.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f +.byte 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 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, 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7 +.byte 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb +.byte 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb +.byte 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8 +.byte 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44 +.byte 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1 +.byte 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c +.byte 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f +.byte 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66 +.byte 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9 +.byte 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d +.byte 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1 +.byte 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe +.byte 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50 +.byte 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e +.byte 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e +.byte 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26 +.byte 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45 +.byte 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20 +.byte 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d +.byte 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53 +.byte 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c +.byte 0x61, 0x73, 0x73, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda +.byte 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b +.byte 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f +.byte 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02 +.byte 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66 +.byte 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48 +.byte 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91 +.byte 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e +.byte 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5 +.byte 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe +.byte 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f +.byte 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c +.byte 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26 +.byte 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81 +.byte 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c +.byte 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e +.byte 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30 +.byte 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31 +.byte 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74 +.byte 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73 +.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65 +.byte 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61 +.byte 0x73, 0x73, 0x20, 0x33, 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, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a +.byte 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78 +.byte 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52 +.byte 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03 +.byte 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61 +.byte 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5 +.byte 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8 +.byte 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b +.byte 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b +.byte 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f +.byte 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8 +.byte 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b +.byte 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4 +.byte 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44 +.byte 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31 +.byte 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d +.byte 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81 +.byte 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11 +.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73 +.byte 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53 +.byte 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09 +.byte 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f +.byte 0x2e, 0x68, 0x75, 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, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42 +.byte 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33 +.byte 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a +.byte 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf +.byte 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75 +.byte 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1 +.byte 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75 +.byte 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6 +.byte 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28 +.byte 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff +.byte 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0 +.byte 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e +.byte 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae +.byte 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa +.byte 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9 +.byte 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff +.byte 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x02, 0x26, 0x30, 0x81, 0x82 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30 +.byte 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31 +.byte 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f +.byte 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 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, 0x20, 0x52, 0x53, 0x41, 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, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda +.byte 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78 +.byte 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83 +.byte 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2 +.byte 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda +.byte 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9 +.byte 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9 +.byte 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd +.byte 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf +.byte 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad +.byte 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd +.byte 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0 +.byte 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05 +.byte 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba +.byte 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13 +.byte 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35 +.byte 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d +.byte 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12 +.byte 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa +.byte 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78 +.byte 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53 +.byte 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8 +.byte 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53 +.byte 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa +.byte 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86 +.byte 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4 +.byte 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66 +.byte 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e +.byte 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79 +.byte 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9 +.byte 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67 +.byte 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b +.byte 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70 +.byte 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61 +.byte 0x6d, 0x70, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x82, 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, 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38 +.byte 0x0b, 0x69, 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e +.byte 0x23, 0x74, 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2 +.byte 0x9b, 0x5b, 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d +.byte 0x98, 0x6d, 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3 +.byte 0x31, 0x7e, 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36 +.byte 0x60, 0xa4, 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f +.byte 0x61, 0x5a, 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d +.byte 0x34, 0x7c, 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94 +.byte 0xb0, 0x4d, 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d +.byte 0xeb, 0xc8, 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a +.byte 0x3e, 0x86, 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04 +.byte 0x08, 0x8a, 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6 +.byte 0x68, 0x1d, 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5 +.byte 0x7a, 0x0d, 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed +.byte 0x45, 0x83, 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd +.byte 0xd4, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x86, 0x01, 0x26, 0x30, 0x81, 0x83, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61 +.byte 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44 +.byte 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31 +.byte 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64 +.byte 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7 +.byte 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6 +.byte 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32 +.byte 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab +.byte 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9 +.byte 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2 +.byte 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8 +.byte 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36 +.byte 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd +.byte 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92 +.byte 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf +.byte 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30 +.byte 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25 +.byte 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88 +.byte 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8 +.byte 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3 +.byte 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x87, 0x02, 0x26, 0x30, 0x81, 0x84, 0x31, 0x12 +.byte 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33, 0x32, 0x38, 0x37, 0x35 +.byte 0x31, 0x30, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75 +.byte 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 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, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4 +.byte 0x19, 0x01, 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b +.byte 0x96, 0x0b, 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8 +.byte 0x9e, 0x1d, 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61 +.byte 0x4e, 0xb6, 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78 +.byte 0xf5, 0xad, 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed +.byte 0x68, 0x4c, 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57 +.byte 0x72, 0xf3, 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7 +.byte 0x3b, 0xa4, 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07 +.byte 0x65, 0x52, 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56 +.byte 0xc3, 0x39, 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84 +.byte 0x4b, 0x2f, 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32 +.byte 0xca, 0x6f, 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd +.byte 0xa8, 0x0f, 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58 +.byte 0x65, 0x17, 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f +.byte 0x10, 0x77, 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54 +.byte 0x4c, 0x57, 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d +.byte 0xfa, 0x7c, 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab +.byte 0x8c, 0x61, 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8 +.byte 0xb5, 0xa3, 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8 +.byte 0x06, 0x4c, 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5 +.byte 0x87, 0x74, 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23 +.byte 0x8b, 0xf5, 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82 +.byte 0x2c, 0x7e, 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e +.byte 0xe7, 0xb4, 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2 +.byte 0x61, 0x89, 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb +.byte 0x10, 0x0a, 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01 +.byte 0x02, 0x2f, 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91 +.byte 0xd4, 0x03, 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98 +.byte 0x80, 0x6e, 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae +.byte 0xa2, 0x84, 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca +.byte 0x39, 0xbf, 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd +.byte 0x90, 0x49, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x88, 0x00, 0x78, 0x30, 0x81, 0x85, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d +.byte 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 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, 0x03, 0x47, 0x7b, 0x2f +.byte 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e +.byte 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee +.byte 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03 +.byte 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4 +.byte 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99 +.byte 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x00, 0x88, 0x02, 0x26 +.byte 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74 +.byte 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31 +.byte 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f +.byte 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41 +.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, 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, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56 +.byte 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23 +.byte 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd +.byte 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61 +.byte 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34 +.byte 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7 +.byte 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4 +.byte 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89 +.byte 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8 +.byte 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6 +.byte 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5 +.byte 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e +.byte 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4 +.byte 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72 +.byte 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee +.byte 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33 +.byte 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8 +.byte 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9 +.byte 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9 +.byte 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb +.byte 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a +.byte 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5 +.byte 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2 +.byte 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70 +.byte 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55 +.byte 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47 +.byte 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50 +.byte 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40 +.byte 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63 +.byte 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3 +.byte 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b +.byte 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc +.byte 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b +.byte 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c +.byte 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64 +.byte 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb9, 0x5d +.byte 0x51, 0x28, 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab +.byte 0xcf, 0x0a, 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61 +.byte 0xdf, 0xf2, 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf +.byte 0x08, 0x00, 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17, 0x18, 0x80, 0xed, 0x88 +.byte 0xb2, 0xb4, 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06 +.byte 0x56, 0x89, 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89 +.byte 0xba, 0x88, 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28 +.byte 0xcb, 0xa3, 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4 +.byte 0xe7, 0xa0, 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36 +.byte 0xe6, 0x40, 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe +.byte 0x92, 0x44, 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e +.byte 0xf5, 0x8b, 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3 +.byte 0x7e, 0x98, 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4 +.byte 0x62, 0xc2, 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3 +.byte 0xc9, 0x3e, 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe +.byte 0x3a, 0xc2, 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10 +.byte 0xe1, 0x58, 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13 +.byte 0x8f, 0x0c, 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee +.byte 0xcd, 0x69, 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd +.byte 0xb6, 0x50, 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75 +.byte 0xd8, 0xb2, 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15 +.byte 0x72, 0x7c, 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75 +.byte 0x57, 0x04, 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee +.byte 0x66, 0xe2, 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c +.byte 0xf5, 0x39, 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd +.byte 0x1a, 0x6f, 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72 +.byte 0xc4, 0xf6, 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d +.byte 0xce, 0xe6, 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4 +.byte 0x0b, 0x91, 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41 +.byte 0x7d, 0x35, 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98 +.byte 0x4c, 0xe5, 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe +.byte 0xe4, 0xad, 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x8b, 0x00, 0x78, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69 +.byte 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65 +.byte 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f +.byte 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45 +.byte 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 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, 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9 +.byte 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6 +.byte 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8 +.byte 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79 +.byte 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab +.byte 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1 +.byte 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x00, 0x8b, 0x02, 0x26, 0x30, 0x81 +.byte 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72 +.byte 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65 +.byte 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53 +.byte 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53 +.byte 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e +.byte 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50 +.byte 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d +.byte 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47 +.byte 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6 +.byte 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e +.byte 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88 +.byte 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e +.byte 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33 +.byte 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8 +.byte 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0 +.byte 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9 +.byte 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7 +.byte 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01 +.byte 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73 +.byte 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60 +.byte 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67 +.byte 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33 +.byte 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32 +.byte 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37 +.byte 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf +.byte 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1 +.byte 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9 +.byte 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3 +.byte 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09 +.byte 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c +.byte 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4 +.byte 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1 +.byte 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa +.byte 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67 +.byte 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e +.byte 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c +.byte 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x92, 0x01, 0x26, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72 +.byte 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a +.byte 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54 +.byte 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72 +.byte 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1 +.byte 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47 +.byte 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd +.byte 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa +.byte 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc +.byte 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4 +.byte 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8 +.byte 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4 +.byte 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62 +.byte 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf +.byte 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc +.byte 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7 +.byte 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0 +.byte 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa +.byte 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1 +.byte 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde +.byte 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x94, 0x00, 0x5b, 0x30 +.byte 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f +.byte 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69 +.byte 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67 +.byte 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 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, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 +.byte 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb +.byte 0x6c, 0xe6, 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18 +.byte 0xb0, 0x78, 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97 +.byte 0x06, 0x38, 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91 +.byte 0x2e, 0x81, 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6, 0x3f, 0xad, 0x00, 0x94 +.byte 0x00, 0x78, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c +.byte 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07 +.byte 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64 +.byte 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda +.byte 0x0d, 0x75, 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a +.byte 0xf8, 0x10, 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf +.byte 0x97, 0x82, 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac +.byte 0x58, 0x04, 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd +.byte 0x39, 0x25, 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28 +.byte 0xa9, 0xd3, 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38, 0x65, 0xa0, 0x00, 0x9b +.byte 0x01, 0x26, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69 +.byte 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53 +.byte 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65 +.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66 +.byte 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 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, 0xd5, 0x0c +.byte 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f +.byte 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76 +.byte 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6 +.byte 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d +.byte 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14 +.byte 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47 +.byte 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04 +.byte 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6 +.byte 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2 +.byte 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d +.byte 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a +.byte 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b +.byte 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e +.byte 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf +.byte 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f +.byte 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x9f, 0x01, 0x26, 0x30, 0x81, 0x9c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x41, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f +.byte 0x72, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65, 0x20 +.byte 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72 +.byte 0x20, 0x45, 0x43, 0x41, 0x2d, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0x8f, 0xe0, 0x11, 0xb5, 0x9f, 0xa8, 0x76, 0x76 +.byte 0xdb, 0xdf, 0x0f, 0x54, 0xef, 0x73, 0x63, 0x29, 0x82, 0xad, 0x47, 0xc6, 0xa3, 0x6b, 0xed, 0xfe +.byte 0x5f, 0x33, 0xf8, 0x43, 0x51, 0xe9, 0x1a, 0x33, 0x91, 0x31, 0x17, 0xa0, 0x74, 0xc4, 0xd4, 0xa7 +.byte 0x01, 0xe6, 0xb2, 0x92, 0x3e, 0x6a, 0x9d, 0xed, 0x0e, 0xf9, 0x74, 0x98, 0x40, 0xd3, 0x3f, 0x03 +.byte 0x80, 0x06, 0x82, 0x40, 0xe8, 0xb1, 0xe2, 0xa7, 0x51, 0xa7, 0x1d, 0x83, 0x26, 0x6b, 0xab, 0xde +.byte 0xfa, 0x17, 0x91, 0x2b, 0xd8, 0xc6, 0xac, 0x1e, 0xb1, 0x9e, 0x19, 0x01, 0xd5, 0x97, 0xa6, 0xea +.byte 0x0d, 0xb7, 0xc4, 0x55, 0x1f, 0x27, 0x7c, 0xd2, 0x08, 0xd5, 0x76, 0x1f, 0x29, 0x15, 0x87, 0x40 +.byte 0x39, 0xdd, 0x38, 0x45, 0x11, 0x75, 0xd0, 0x9a, 0xa7, 0x34, 0xe0, 0xbf, 0xcd, 0xc8, 0x52, 0x1d +.byte 0xb9, 0x47, 0x7e, 0x0d, 0xb8, 0xbb, 0xc6, 0x0c, 0xf6, 0x73, 0x57, 0x16, 0x5a, 0x7e, 0x43, 0x91 +.byte 0x1f, 0x55, 0x3a, 0xc6, 0x6d, 0x44, 0x04, 0xaa, 0x9c, 0xa9, 0x9c, 0xa7, 0x4c, 0x89, 0x17, 0x83 +.byte 0xae, 0xa3, 0x04, 0x5e, 0x52, 0x80, 0x8b, 0x1e, 0x12, 0x25, 0x11, 0x19, 0xd7, 0x0c, 0x7d, 0x7d +.byte 0x31, 0x44, 0x41, 0xea, 0xdb, 0xaf, 0xb0, 0x1c, 0xef, 0x81, 0xd0, 0x2c, 0xc5, 0x9a, 0x21, 0x9b +.byte 0x3d, 0xed, 0x42, 0x3b, 0x50, 0x26, 0xf2, 0xec, 0xce, 0x71, 0x61, 0x06, 0x62, 0x21, 0x54, 0x4e +.byte 0x7f, 0xc1, 0x9d, 0x3e, 0x7f, 0x20, 0x8c, 0x80, 0xcb, 0x2a, 0xd8, 0x97, 0x62, 0xc8, 0x83, 0x33 +.byte 0x91, 0x7d, 0xb0, 0xa2, 0x5a, 0x0f, 0x57, 0xe8, 0x3b, 0xcc, 0xf2, 0x25, 0xb2, 0xd4, 0x7c, 0x2f +.byte 0xec, 0x4d, 0xc6, 0xa1, 0x3a, 0x15, 0x7a, 0xe7, 0xb6, 0x5d, 0x35, 0xf5, 0xf6, 0x48, 0x4a, 0x36 +.byte 0x45, 0x66, 0xd4, 0xba, 0x98, 0x58, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa7, 0x01, 0x26 +.byte 0x30, 0x81, 0xa4, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x41 +.byte 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61, 0x6d +.byte 0x61, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e, 0x61 +.byte 0x6d, 0x61, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65, 0x20, 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x16, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x43, 0x41, 0x2d, 0x31, 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, 0xbf, 0x8e, 0xb7, 0x95, 0xe2, 0xc2, 0x26, 0x12 +.byte 0x6b, 0x33, 0x19, 0xc7, 0x40, 0x58, 0x0a, 0xab, 0x59, 0xaa, 0x8d, 0x00, 0xa3, 0xfc, 0x80, 0xc7 +.byte 0x50, 0x7b, 0x8e, 0xd4, 0x20, 0x26, 0xba, 0x32, 0x12, 0xd8, 0x23, 0x54, 0x49, 0x25, 0x10, 0x22 +.byte 0x98, 0x9d, 0x46, 0xd2, 0xc1, 0xc9, 0x9e, 0x4e, 0x1b, 0x2e, 0x2c, 0x0e, 0x38, 0xf3, 0x1a, 0x25 +.byte 0x68, 0x1c, 0xa6, 0x5a, 0x05, 0xe6, 0x1e, 0x8b, 0x48, 0xbf, 0x98, 0x96, 0x74, 0x3e, 0x69, 0xca +.byte 0xe9, 0xb5, 0x78, 0xa5, 0x06, 0xbc, 0xd5, 0x00, 0x5e, 0x09, 0x0a, 0xf2, 0x27, 0x7a, 0x52, 0xfc +.byte 0x2d, 0xd5, 0xb1, 0xea, 0xb4, 0x89, 0x61, 0x24, 0xf3, 0x1a, 0x13, 0xdb, 0xa9, 0xcf, 0x52, 0xed +.byte 0x0c, 0x24, 0xba, 0xb9, 0x9e, 0xec, 0x7e, 0x00, 0x74, 0xfa, 0x93, 0xad, 0x6c, 0x29, 0x92, 0xae +.byte 0x51, 0xb4, 0xbb, 0xd3, 0x57, 0xbf, 0xb3, 0xf3, 0xa8, 0x8d, 0x9c, 0xf4, 0x24, 0x4b, 0x2a, 0xd6 +.byte 0x99, 0x9e, 0xf4, 0x9e, 0xfe, 0xc0, 0x7e, 0x42, 0x3a, 0xe7, 0x0b, 0x95, 0x53, 0xda, 0xb7, 0x68 +.byte 0x0e, 0x90, 0x4c, 0xfb, 0x70, 0x3f, 0x8f, 0x4a, 0x2c, 0x94, 0xf3, 0x26, 0xdd, 0x63, 0x69, 0xa9 +.byte 0x94, 0xd8, 0x10, 0x4e, 0xc5, 0x47, 0x08, 0x90, 0x99, 0x1b, 0x17, 0x4d, 0xb9, 0x6c, 0x6e, 0xef +.byte 0x60, 0x95, 0x11, 0x8e, 0x21, 0x80, 0xb5, 0xbd, 0xa0, 0x73, 0xd8, 0xd0, 0xb2, 0x77, 0xc4, 0x45 +.byte 0xea, 0x5a, 0x26, 0xfb, 0x66, 0x76, 0x76, 0xf8, 0x06, 0x1f, 0x61, 0x6d, 0x0f, 0x55, 0xc5, 0x83 +.byte 0xb7, 0x10, 0x56, 0x72, 0x06, 0x07, 0xa5, 0xf3, 0xb1, 0x1a, 0x03, 0x05, 0x64, 0x0e, 0x9d, 0x5a +.byte 0x8a, 0xd6, 0x86, 0x70, 0x1b, 0x24, 0xde, 0xfe, 0x28, 0x8a, 0x2b, 0xd0, 0x6a, 0xb0, 0xfc, 0x7a +.byte 0xa2, 0xdc, 0xb2, 0x79, 0x0e, 0x8b, 0x65, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa7, 0x02 +.byte 0x26, 0x30, 0x81, 0xa4, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50 +.byte 0x41, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x06, 0x50, 0x61, 0x6e, 0x61 +.byte 0x6d, 0x61, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x0b, 0x50, 0x61, 0x6e +.byte 0x61, 0x6d, 0x61, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x53, 0x79, 0x73, 0x74 +.byte 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x20, 0x64, 0x65, 0x20, 0x52, 0x2e, 0x4c, 0x2e, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f +.byte 0x72, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x16, 0x54, 0x72, 0x75, 0x73, 0x74, 0x43, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x43, 0x41, 0x2d, 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, 0xa7, 0x20, 0x6e, 0xc2, 0x2a, 0xa2, 0x62 +.byte 0x24, 0x95, 0x90, 0x76, 0xc8, 0x38, 0x7e, 0x80, 0xd2, 0xab, 0xc1, 0x9b, 0x65, 0x05, 0x94, 0xf4 +.byte 0xc1, 0x0a, 0x10, 0xd5, 0x02, 0xac, 0xed, 0x9f, 0x93, 0xc7, 0x87, 0xc8, 0xb0, 0x27, 0x2b, 0x42 +.byte 0x0c, 0x3d, 0x0a, 0x3e, 0x41, 0x5a, 0x9e, 0x75, 0xdd, 0x8d, 0xca, 0xe0, 0x9b, 0xec, 0x68, 0x32 +.byte 0xa4, 0x69, 0x92, 0x68, 0x8c, 0x0b, 0x81, 0x0e, 0x56, 0xa0, 0x3e, 0x1a, 0xdd, 0x2c, 0x25, 0x14 +.byte 0x82, 0x2f, 0x97, 0xd3, 0x64, 0x46, 0xf4, 0x54, 0xa9, 0xdc, 0x3a, 0x54, 0x2d, 0x31, 0x2b, 0x99 +.byte 0x82, 0xf2, 0xd9, 0x2a, 0xd7, 0xef, 0x71, 0x00, 0xb8, 0x31, 0xa4, 0xbe, 0x7a, 0x24, 0x07, 0xc3 +.byte 0x42, 0x20, 0xf2, 0x8a, 0xd4, 0x92, 0x04, 0x1b, 0x65, 0x56, 0x4c, 0x6c, 0xd4, 0xfb, 0xb6, 0x61 +.byte 0x5a, 0x47, 0x23, 0xb4, 0xd8, 0x69, 0xb4, 0xb7, 0x3a, 0xd0, 0x74, 0x3c, 0x0c, 0x75, 0xa1, 0x8c +.byte 0x4e, 0x76, 0xa1, 0xe9, 0xdb, 0x2a, 0xa5, 0x3b, 0xfa, 0xce, 0xb0, 0xff, 0x7e, 0x6a, 0x28, 0xfd +.byte 0x27, 0x1c, 0xc8, 0xb1, 0xe9, 0x29, 0xf1, 0x57, 0x6e, 0x64, 0xb4, 0xd0, 0xc1, 0x15, 0x6d, 0x0e +.byte 0xbe, 0x2e, 0x0e, 0x46, 0xc8, 0x5e, 0xf4, 0x51, 0xfe, 0xef, 0x0e, 0x63, 0x3a, 0x3b, 0x71, 0xba +.byte 0xcf, 0x6f, 0x59, 0xca, 0x0c, 0xe3, 0x9b, 0x5d, 0x49, 0xb8, 0x4c, 0xe2, 0x57, 0xb1, 0x98, 0x8a +.byte 0x42, 0x57, 0x9c, 0x76, 0xef, 0xef, 0xbd, 0xd1, 0x68, 0xa8, 0xd2, 0xf4, 0x09, 0xbb, 0x77, 0x35 +.byte 0xbe, 0x25, 0x82, 0x08, 0xc4, 0x16, 0x2c, 0x44, 0x20, 0x56, 0xa9, 0x44, 0x11, 0x77, 0xef, 0x5d +.byte 0xb4, 0x1d, 0xaa, 0x5e, 0x6b, 0x3e, 0x8b, 0x32, 0xf6, 0x07, 0x2f, 0x57, 0x04, 0x92, 0xca, 0xf5 +.byte 0xfe, 0x9d, 0xc2, 0xe9, 0xe8, 0xb3, 0x8e, 0x4c, 0x4b, 0x02, 0x31, 0xd9, 0xe4, 0x3c, 0x48, 0x82 +.byte 0x27, 0xf7, 0x18, 0x82, 0x76, 0x48, 0x3a, 0x71, 0xb1, 0x13, 0xa1, 0x39, 0xd5, 0x2e, 0xc5, 0x34 +.byte 0xc2, 0x1d, 0x62, 0x85, 0xdf, 0x03, 0xfe, 0x4d, 0xf4, 0xaf, 0x3d, 0xdf, 0x5c, 0x5b, 0x8d, 0xfa +.byte 0x70, 0xe1, 0xa5, 0x7e, 0x27, 0xc7, 0x86, 0x2e, 0x6a, 0x8f, 0x12, 0xc6, 0x84, 0x5e, 0x43, 0x51 +.byte 0x50, 0x9c, 0x19, 0x9b, 0x78, 0xe6, 0xfc, 0xf6, 0xed, 0x47, 0x7e, 0x7b, 0x3d, 0x66, 0xef, 0x13 +.byte 0x13, 0x88, 0x5f, 0x3c, 0xa1, 0x63, 0xfb, 0xf9, 0xac, 0x87, 0x35, 0x9f, 0xf3, 0x82, 0x9e, 0xa4 +.byte 0x3f, 0x0a, 0x9c, 0x31, 0x69, 0x8b, 0x99, 0xa4, 0x88, 0x4a, 0x8e, 0x6e, 0x66, 0x4d, 0xef, 0x16 +.byte 0xc4, 0x0f, 0x79, 0x28, 0x21, 0x60, 0x0d, 0x85, 0x16, 0x7d, 0xd7, 0x54, 0x38, 0xf1, 0x92, 0x56 +.byte 0xfd, 0xb5, 0x33, 0x4c, 0x83, 0xdc, 0xd7, 0x10, 0x9f, 0x4b, 0xfd, 0xc6, 0xf8, 0x42, 0xbd, 0xba +.byte 0x7c, 0x73, 0x02, 0xe0, 0xff, 0x7d, 0xcd, 0x5b, 0xe1, 0xd4, 0xac, 0x61, 0x7b, 0x57, 0xd5, 0x4a +.byte 0x7b, 0x5b, 0xd4, 0x85, 0x58, 0x27, 0x5d, 0xbf, 0xf8, 0x2b, 0x60, 0xac, 0xa0, 0x26, 0xae, 0x14 +.byte 0x21, 0x27, 0xc6, 0x77, 0x9a, 0x33, 0x80, 0x3c, 0x5e, 0x46, 0x3f, 0xf7, 0xc3, 0xb1, 0xa3, 0x86 +.byte 0x33, 0xc6, 0xe8, 0x5e, 0x0d, 0xb9, 0x35, 0x2c, 0xaa, 0x46, 0xc1, 0x85, 0x02, 0x75, 0x80, 0xa0 +.byte 0xeb, 0x24, 0xfb, 0x15, 0xaa, 0xe4, 0x67, 0x7f, 0x6e, 0x77, 0x3f, 0xf4, 0x04, 0x8a, 0x2f, 0x7c +.byte 0x7b, 0xe3, 0x17, 0x61, 0xf0, 0xdd, 0x09, 0xa9, 0x20, 0xc8, 0xbe, 0x09, 0xa4, 0xd0, 0x7e, 0x44 +.byte 0xc3, 0xb2, 0x30, 0x4a, 0x38, 0xaa, 0xa9, 0xec, 0x18, 0x9a, 0x07, 0x82, 0x2b, 0xdb, 0xb8, 0x9c +.byte 0x18, 0xad, 0xda, 0xe0, 0x46, 0x17, 0xac, 0xcf, 0x5d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa9 +.byte 0x02, 0x26, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68 +.byte 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65 +.byte 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20 +.byte 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73 +.byte 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61 +.byte 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 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, 0xc2, 0xf8, 0xa9, 0x3f +.byte 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a, 0x79, 0x3c, 0x66 +.byte 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23, 0x53, 0xb7, 0x90 +.byte 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec, 0xae, 0x21, 0x41 +.byte 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f, 0x99, 0xe1, 0xf2 +.byte 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b, 0x31, 0xaf, 0xf0 +.byte 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24, 0x28, 0x0a, 0x02 +.byte 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb, 0x53, 0xbc, 0x13 +.byte 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3, 0x96, 0x5e, 0x3a +.byte 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7, 0x7c, 0xaf, 0x27 +.byte 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc, 0x88, 0x65, 0x65 +.byte 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84, 0x8c, 0x4c, 0x50 +.byte 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd, 0x14, 0xf4, 0x1f +.byte 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6, 0xcb, 0x26, 0xe6 +.byte 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39, 0x58, 0x7a, 0x92 +.byte 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc, 0xd9, 0x70, 0x52 +.byte 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68, 0xcf, 0x20, 0x14 +.byte 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7, 0x11, 0x08, 0xb7 +.byte 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17, 0xcb, 0x92, 0x36 +.byte 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41, 0xfd, 0x45, 0x19 +.byte 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53, 0x12, 0xe5, 0xb1 +.byte 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b, 0x29, 0x30, 0x4e +.byte 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb, 0x9d, 0xe0, 0xf8 +.byte 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51, 0x51, 0x7d, 0x2d +.byte 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04, 0x7a, 0x50, 0xbd +.byte 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47, 0x66, 0x20, 0x3f +.byte 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d, 0x18, 0x87, 0xd9 +.byte 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d, 0x68, 0x51, 0xaa +.byte 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47, 0xc1, 0x09, 0x08 +.byte 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19, 0xb6, 0x12, 0x46 +.byte 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea, 0x6b, 0xdc, 0x1f +.byte 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f, 0xe4, 0xf0, 0x03 +.byte 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0xaa, 0x01, 0x26, 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08 +.byte 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66, 0x74, 0x2e, 0x31 +.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e, 0xc3, 0xba, 0x73 +.byte 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3, 0xb3, 0x6b, 0x20 +.byte 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x6e, 0x79 +.byte 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29, 0x20, 0x46, 0xc5 +.byte 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 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 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97, 0x90, 0x6e, 0xd2 +.byte 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca, 0x30, 0xca, 0x83 +.byte 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d, 0xbf, 0x30, 0x4f +.byte 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f, 0xf5, 0x7f, 0x43 +.byte 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e, 0x9b, 0xed, 0xc3 +.byte 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30, 0xa9, 0x7e, 0xe1 +.byte 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16, 0x90, 0xff, 0xb0 +.byte 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6, 0x9e, 0x56, 0xd0 +.byte 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15, 0x41, 0x94, 0x01 +.byte 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7, 0x5c, 0xeb, 0xfe +.byte 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60, 0x2e, 0x87, 0x25 +.byte 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde, 0x48, 0xdb, 0x96 +.byte 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b, 0x2f, 0xbb, 0x19 +.byte 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9, 0xb6, 0xa6, 0x03 +.byte 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d, 0x00, 0x34, 0xc7 +.byte 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42, 0x76, 0xc0, 0x1b +.byte 0x02, 0x03, 0x00, 0xa8, 0x8b, 0x00, 0xad, 0x00, 0x78, 0x30, 0x81, 0xaa, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63 +.byte 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 +.byte 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65 +.byte 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64 +.byte 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74 +.byte 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x92, 0xa0 +.byte 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64, 0x4e, 0x09, 0x25 +.byte 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64, 0x6b, 0x8d, 0x6b +.byte 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76, 0x95, 0x02, 0x5a +.byte 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c, 0x25, 0x29, 0xe8 +.byte 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a, 0x42, 0x9c, 0x6a +.byte 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1, 0x46, 0x00, 0xb3 +.byte 0x01, 0x26, 0x30, 0x81, 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6f +.byte 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x65 +.byte 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16 +.byte 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6, 0x6d, 0x2a, 0x6f +.byte 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68, 0x36, 0xed, 0xec +.byte 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e, 0x4d, 0x1e, 0x1a +.byte 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b, 0x33, 0x03, 0xdb +.byte 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8, 0xe0, 0xb9, 0x40 +.byte 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62, 0x15, 0xdb, 0x47 +.byte 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb, 0x90, 0x80, 0x50 +.byte 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd, 0x2a, 0x59, 0x9a +.byte 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c, 0x98, 0xfe, 0x48 +.byte 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68, 0x45, 0xd1, 0x86 +.byte 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88, 0xad, 0xbe, 0xbc +.byte 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8, 0x4e, 0x4d, 0x9f +.byte 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f, 0x90, 0xdd, 0x7d +.byte 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2, 0xf7, 0x80, 0xe4 +.byte 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e, 0x9e, 0x7f, 0x57 +.byte 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8, 0xe7, 0xa2, 0x04 +.byte 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb5, 0x02, 0x26, 0x30 +.byte 0x81, 0xb2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31 +.byte 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61 +.byte 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x37, 0x45, 0x2d, 0x54, 0x75, 0xc4 +.byte 0x9f, 0x72, 0x61, 0x20, 0x45, 0x42, 0x47, 0x20, 0x42, 0x69, 0x6c, 0x69, 0xc5, 0x9f, 0x69, 0x6d +.byte 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x76 +.byte 0x65, 0x20, 0x48, 0x69, 0x7a, 0x6d, 0x65, 0x74, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x41, 0x2e, 0xc5 +.byte 0x9e, 0x2e, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1d, 0x45, 0x2d, 0x54 +.byte 0x75, 0x67, 0x72, 0x61, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79 +.byte 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x1f, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 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, 0xe2, 0xf5, 0x3f, 0x93, 0x05, 0x51, 0x1e, 0x85, 0x62, 0x54, 0x5e +.byte 0x7a, 0x0b, 0xf5, 0x18, 0x07, 0x83, 0xae, 0x7e, 0xaf, 0x7c, 0xf7, 0xd4, 0x8a, 0x6b, 0xa5, 0x63 +.byte 0x43, 0x39, 0xb9, 0x4b, 0xf7, 0xc3, 0xc6, 0x64, 0x89, 0x3d, 0x94, 0x2e, 0x54, 0x80, 0x52, 0x39 +.byte 0x39, 0x07, 0x4b, 0x4b, 0xdd, 0x85, 0x07, 0x76, 0x87, 0xcc, 0xbf, 0x2f, 0x95, 0x4c, 0xcc, 0x7d +.byte 0xa7, 0x3d, 0xbc, 0x47, 0x0f, 0x98, 0x70, 0xf8, 0x8c, 0x85, 0x1e, 0x74, 0x8e, 0x92, 0x6d, 0x1b +.byte 0x40, 0xd1, 0x99, 0x0d, 0xbb, 0x75, 0x6e, 0xc8, 0xa9, 0x6b, 0x9a, 0xc0, 0x84, 0x31, 0xaf, 0xca +.byte 0x43, 0xcb, 0xeb, 0x2b, 0x34, 0xe8, 0x8f, 0x97, 0x6b, 0x01, 0x9b, 0xd5, 0x0e, 0x4a, 0x08, 0xaa +.byte 0x5b, 0x92, 0x74, 0x85, 0x43, 0xd3, 0x80, 0xae, 0xa1, 0x88, 0x5b, 0xae, 0xb3, 0xea, 0x5e, 0xcb +.byte 0x16, 0x9a, 0x77, 0x44, 0xc8, 0xa1, 0xf6, 0x54, 0x68, 0xce, 0xde, 0x8f, 0x97, 0x2b, 0xba, 0x5b +.byte 0x40, 0x02, 0x0c, 0x64, 0x17, 0xc0, 0xb5, 0x93, 0xcd, 0xe1, 0xf1, 0x13, 0x66, 0xce, 0x0c, 0x79 +.byte 0xef, 0xd1, 0x91, 0x28, 0xab, 0x5f, 0xa0, 0x12, 0x52, 0x30, 0x73, 0x19, 0x8e, 0x8f, 0xe1, 0x8c +.byte 0x07, 0xa2, 0xc3, 0xbb, 0x4a, 0xf0, 0xea, 0x1f, 0x15, 0xa8, 0xee, 0x25, 0xcc, 0xa4, 0x46, 0xf8 +.byte 0x1b, 0x22, 0xef, 0xb3, 0x0e, 0x43, 0xba, 0x2c, 0x24, 0xb8, 0xc5, 0x2c, 0x5c, 0xd4, 0x1c, 0xf8 +.byte 0x5d, 0x64, 0xbd, 0xc3, 0x93, 0x5e, 0x28, 0xa7, 0x3f, 0x27, 0xf1, 0x8e, 0x1e, 0xd3, 0x2a, 0x50 +.byte 0x05, 0xa3, 0x55, 0xd9, 0xcb, 0xe7, 0x39, 0x53, 0xc0, 0x98, 0x9e, 0x8c, 0x54, 0x62, 0x8b, 0x26 +.byte 0xb0, 0xf7, 0x7d, 0x8d, 0x7c, 0xe4, 0xc6, 0x9e, 0x66, 0x42, 0x55, 0x82, 0x47, 0xe7, 0xb2, 0x58 +.byte 0x8d, 0x66, 0xf7, 0x07, 0x7c, 0x2e, 0x36, 0xe6, 0x50, 0x1c, 0x3f, 0xdb, 0x43, 0x24, 0xc5, 0xbf +.byte 0x86, 0x47, 0x79, 0xb3, 0x79, 0x1c, 0xf7, 0x5a, 0xf4, 0x13, 0xec, 0x6c, 0xf8, 0x3f, 0xe2, 0x59 +.byte 0x1f, 0x95, 0xee, 0x42, 0x3e, 0xb9, 0xad, 0xa8, 0x32, 0x85, 0x49, 0x97, 0x46, 0xfe, 0x4b, 0x31 +.byte 0x8f, 0x5a, 0xcb, 0xad, 0x74, 0x47, 0x1f, 0xe9, 0x91, 0xb7, 0xdf, 0x28, 0x04, 0x22, 0xa0, 0xd4 +.byte 0x0f, 0x5d, 0xe2, 0x79, 0x4f, 0xea, 0x6c, 0x85, 0x86, 0xbd, 0xa8, 0xa6, 0xce, 0xe4, 0xfa, 0xc3 +.byte 0xe1, 0xb3, 0xae, 0xde, 0x3c, 0x51, 0xee, 0xcb, 0x13, 0x7c, 0x01, 0x7f, 0x84, 0x0e, 0x5d, 0x51 +.byte 0x94, 0x9e, 0x13, 0x0c, 0xb6, 0x2e, 0xa5, 0x4c, 0xf9, 0x39, 0x70, 0x36, 0x6f, 0x96, 0xca, 0x2e +.byte 0x0c, 0x44, 0x55, 0xc5, 0xca, 0xfa, 0x5d, 0x02, 0xa3, 0xdf, 0xd6, 0x64, 0x8c, 0x5a, 0xb3, 0x01 +.byte 0x0a, 0xa9, 0xb5, 0x0a, 0x47, 0x17, 0xff, 0xef, 0x91, 0x40, 0x2a, 0x8e, 0xa1, 0x46, 0x3a, 0x31 +.byte 0x98, 0xe5, 0x11, 0xfc, 0xcc, 0xbb, 0x49, 0x56, 0x8a, 0xfc, 0xb9, 0xd0, 0x61, 0x9a, 0x6f, 0x65 +.byte 0x6c, 0xe6, 0xc3, 0xcb, 0x3e, 0x75, 0x49, 0xfe, 0x8f, 0xa7, 0xe2, 0x89, 0xc5, 0x67, 0xd7, 0x9d +.byte 0x46, 0x13, 0x4e, 0x31, 0x76, 0x3b, 0x24, 0xb3, 0x9e, 0x11, 0x65, 0x86, 0xab, 0x7f, 0xef, 0x1d +.byte 0xd4, 0xf8, 0xbc, 0xe7, 0xac, 0x5a, 0x5c, 0xb7, 0x5a, 0x47, 0x5c, 0x55, 0xce, 0x55, 0xb4, 0x22 +.byte 0x71, 0x5b, 0x5b, 0x0b, 0xf0, 0xcf, 0xdc, 0xa0, 0x61, 0x64, 0xea, 0xa9, 0xd7, 0x68, 0x0a, 0x63 +.byte 0xa7, 0xe0, 0x0d, 0x3f, 0xa0, 0xaf, 0xd3, 0xaa, 0xd2, 0x7e, 0xef, 0x51, 0xa0, 0xe6, 0x51, 0x2b +.byte 0x55, 0x92, 0x15, 0x17, 0x53, 0xcb, 0xb7, 0x66, 0x0e, 0x66, 0x4c, 0xf8, 0xf9, 0x75, 0x4c, 0x90 +.byte 0xe7, 0x12, 0x70, 0xc7, 0x45, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb7, 0x01, 0x26, 0x30, 0x81 +.byte 0xb4, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x45, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x14, 0x37, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65 +.byte 0x74, 0x2f, 0x43, 0x50, 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72 +.byte 0x70, 0x2e, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28, 0x6c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x73, 0x20, 0x6c, 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x1c, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39, 0x20, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 +.byte 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2e, 0x6e, 0x65, 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, 0x28 +.byte 0x32, 0x30, 0x34, 0x38, 0x29, 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, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86, 0xb2, 0xea, 0xa3, 0x20 +.byte 0x07, 0x15, 0x16, 0x64, 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d, 0x8e, 0xed, 0x80, 0x76 +.byte 0xa5, 0x67, 0xb7, 0x78, 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb, 0x53, 0x2b, 0xdd, 0x5e +.byte 0xb8, 0x76, 0x98, 0x35, 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e, 0x1f, 0x5b, 0xb7, 0x1e +.byte 0xcf, 0xe5, 0x24, 0x14, 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc, 0x6b, 0x4b, 0x03, 0xf1 +.byte 0x02, 0x0c, 0xdc, 0xab, 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1, 0x9d, 0x08, 0x29, 0xb3 +.byte 0x88, 0x0b, 0xf5, 0x87, 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7, 0x6a, 0x64, 0xab, 0x85 +.byte 0x14, 0x86, 0x95, 0x5b, 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66, 0x0c, 0xe3, 0xfc, 0xbd +.byte 0xb8, 0x49, 0xc1, 0x76, 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89, 0xa3, 0x67, 0x2f, 0xc6 +.byte 0x9f, 0xbc, 0x71, 0x19, 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76, 0x66, 0x7b, 0x94, 0xe2 +.byte 0xaf, 0x78, 0xd6, 0x65, 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29, 0x03, 0xf9, 0x2f, 0xa4 +.byte 0x50, 0xb2, 0xd4, 0x48, 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64, 0x4c, 0x0e, 0xe4, 0x98 +.byte 0x07, 0x75, 0xdb, 0x7f, 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29, 0xf9, 0x7b, 0x48, 0xa4 +.byte 0x69, 0x86, 0xe3, 0x35, 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd, 0xef, 0x00, 0x8e, 0x15 +.byte 0x22, 0x54, 0x17, 0x00, 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91, 0xbf, 0xf8, 0x47, 0xd3 +.byte 0x9d, 0x95, 0x42, 0xc1, 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18, 0x21, 0x62, 0x66, 0x43 +.byte 0x70, 0xd6, 0xd5, 0xc0, 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc1, 0x01, 0x26, 0x30 +.byte 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d +.byte 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20 +.byte 0x32, 0x30, 0x30, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x47, 0x32 +.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, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76 +.byte 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82 +.byte 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72 +.byte 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45 +.byte 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd +.byte 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3 +.byte 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49 +.byte 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a +.byte 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3 +.byte 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc +.byte 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48 +.byte 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e +.byte 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb +.byte 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5 +.byte 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62 +.byte 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4 +.byte 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc1, 0x02, 0x26, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65 +.byte 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74 +.byte 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x35, 0x20 +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20 +.byte 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75 +.byte 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x47, 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, 0xb1, 0xec, 0x2c, 0x42 +.byte 0xee, 0xe2, 0xd1, 0x30, 0xff, 0xa5, 0x92, 0x47, 0xe2, 0x2d, 0xc3, 0xba, 0x64, 0x97, 0x6d, 0xca +.byte 0xf7, 0x0d, 0xb5, 0x59, 0xc1, 0xb3, 0xcb, 0xa8, 0x68, 0x19, 0xd8, 0xaf, 0x84, 0x6d, 0x30, 0x70 +.byte 0x5d, 0x7e, 0xf3, 0x2e, 0xd2, 0x53, 0x99, 0xe1, 0xfe, 0x1f, 0x5e, 0xd9, 0x48, 0xaf, 0x5d, 0x13 +.byte 0x8d, 0xdb, 0xff, 0x63, 0x33, 0x4d, 0xd3, 0x00, 0x02, 0xbc, 0xc4, 0xf8, 0xd1, 0x06, 0x08, 0x94 +.byte 0x79, 0x58, 0x8a, 0x15, 0xde, 0x29, 0xb3, 0xfd, 0xfd, 0xc4, 0x4f, 0xe8, 0xaa, 0xe2, 0xa0, 0x3b +.byte 0x79, 0xcd, 0xbf, 0x6b, 0x43, 0x32, 0xdd, 0xd9, 0x74, 0x10, 0xb9, 0xf7, 0xf4, 0x68, 0xd4, 0xbb +.byte 0xd0, 0x87, 0xd5, 0xaa, 0x4b, 0x8a, 0x2a, 0x6f, 0x2a, 0x04, 0xb5, 0xb2, 0xa6, 0xc7, 0xa0, 0x7a +.byte 0xe6, 0x48, 0xab, 0xd2, 0xd1, 0x59, 0xcc, 0xd6, 0x7e, 0x23, 0xe6, 0x97, 0x6c, 0xf0, 0x42, 0xe5 +.byte 0xdc, 0x51, 0x4b, 0x15, 0x41, 0xed, 0x49, 0x4a, 0xc9, 0xde, 0x10, 0x97, 0xd6, 0x76, 0xc1, 0xef +.byte 0xa5, 0xb5, 0x36, 0x14, 0x97, 0x35, 0xd8, 0x78, 0x22, 0x35, 0x52, 0xef, 0x43, 0xbd, 0xdb, 0x27 +.byte 0xdb, 0x61, 0x56, 0x82, 0x34, 0xdc, 0xcb, 0x88, 0x60, 0x0c, 0x0b, 0x5a, 0xe5, 0x2c, 0x01, 0xc6 +.byte 0x54, 0xaf, 0xd7, 0xaa, 0xc1, 0x10, 0x7b, 0xd2, 0x05, 0x5a, 0xb8, 0x40, 0x9e, 0x86, 0xa7, 0xc3 +.byte 0x90, 0x86, 0x02, 0x56, 0x52, 0x09, 0x7a, 0x9c, 0xd2, 0x27, 0x82, 0x53, 0x4a, 0x65, 0x52, 0x6a +.byte 0xf5, 0x3c, 0xe7, 0xa8, 0xf2, 0x9c, 0xaf, 0x8b, 0xbd, 0xd3, 0x0e, 0xd4, 0xd4, 0x5e, 0x6e, 0x87 +.byte 0x9e, 0x6a, 0x3d, 0x45, 0x1d, 0xd1, 0x5d, 0x1b, 0xf4, 0xe9, 0x0a, 0xac, 0x60, 0x99, 0xfb, 0x89 +.byte 0xb4, 0xff, 0x98, 0x2c, 0xcf, 0x7c, 0x1d, 0xe9, 0x02, 0xaa, 0x04, 0x9a, 0x1e, 0xb8, 0xdc, 0x88 +.byte 0x6e, 0x25, 0xb3, 0x6c, 0x66, 0xf7, 0x3c, 0x90, 0xf3, 0x57, 0xc1, 0xb3, 0x2f, 0xf5, 0x6d, 0xf2 +.byte 0xfb, 0xca, 0xa1, 0xf8, 0x29, 0x9d, 0x46, 0x8b, 0xb3, 0x6a, 0xf6, 0xe6, 0x67, 0x07, 0xbe, 0x2c +.byte 0x67, 0x0a, 0x2a, 0x1f, 0x5a, 0xb2, 0x3e, 0x57, 0xc4, 0xd3, 0x21, 0x21, 0x63, 0x65, 0x52, 0x91 +.byte 0x1b, 0xb1, 0x99, 0x8e, 0x79, 0x7e, 0xe6, 0xeb, 0x8d, 0x00, 0xd9, 0x5a, 0xaa, 0xea, 0x73, 0xe8 +.byte 0xa4, 0x82, 0x02, 0x47, 0x96, 0xfe, 0x5b, 0x8e, 0x54, 0x61, 0xa3, 0xeb, 0x2f, 0x4b, 0x30, 0xb0 +.byte 0x8b, 0x23, 0x75, 0x72, 0x7c, 0x21, 0x3c, 0xc8, 0xf6, 0xf1, 0x74, 0xd4, 0x1c, 0x7b, 0xa3, 0x05 +.byte 0x55, 0xee, 0xbb, 0x4d, 0x3b, 0x32, 0xbe, 0x9a, 0x77, 0x66, 0x9e, 0xac, 0x69, 0x90, 0x22, 0x07 +.byte 0x1f, 0x61, 0x3a, 0x96, 0xbe, 0xe5, 0x9a, 0x4f, 0xcc, 0x05, 0x3c, 0x28, 0x59, 0xd3, 0xc1, 0x0c +.byte 0x54, 0xa8, 0x59, 0x61, 0xbd, 0xc8, 0x72, 0x4c, 0xe8, 0xdc, 0x9f, 0x87, 0x7f, 0xbd, 0x9c, 0x48 +.byte 0x36, 0x5e, 0x95, 0xa3, 0x0e, 0xb9, 0x38, 0x24, 0x55, 0xfc, 0x75, 0x66, 0xeb, 0x02, 0xe3, 0x08 +.byte 0x34, 0x29, 0x4a, 0xc6, 0xe3, 0x2b, 0x2f, 0x33, 0xa0, 0xda, 0xa3, 0x86, 0xa5, 0x12, 0x97, 0xfd +.byte 0x80, 0x2b, 0xda, 0x14, 0x42, 0xe3, 0x92, 0xbd, 0x3e, 0xf2, 0x5d, 0x5e, 0x67, 0x74, 0x2e, 0x1c +.byte 0x88, 0x47, 0x29, 0x34, 0x5f, 0xe2, 0x32, 0xa8, 0x9c, 0x25, 0x37, 0x8c, 0xba, 0x98, 0x00, 0x97 +.byte 0x8b, 0x49, 0x96, 0x1e, 0xfd, 0x25, 0x8a, 0xac, 0xdc, 0xda, 0xd8, 0x5d, 0x74, 0x6e, 0x66, 0xb0 +.byte 0xff, 0x44, 0xdf, 0xa1, 0x18, 0xc6, 0xbe, 0x48, 0x2f, 0x37, 0x94, 0x78, 0xf8, 0x95, 0x4a, 0x3f +.byte 0x7f, 0x13, 0x5e, 0x5d, 0x59, 0xfd, 0x74, 0x86, 0x43, 0x63, 0x73, 0x49, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0xc2, 0x00, 0x78, 0x30, 0x81, 0xbf, 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, 0x28, 0x30 +.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e +.byte 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61 +.byte 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e +.byte 0x6c, 0x79, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x45, 0x43, 0x31, 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, 0x84 +.byte 0x13, 0xc9, 0xd0, 0xba, 0x6d, 0x41, 0x7b, 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a +.byte 0x24, 0xf4, 0x5b, 0x89, 0x69, 0x47, 0xe3, 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0 +.byte 0xf6, 0x5b, 0xd5, 0x8b, 0x06, 0x19, 0x86, 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0 +.byte 0xf8, 0xd5, 0x47, 0x19, 0x61, 0x4c, 0x7d, 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96 +.byte 0x09, 0xfe, 0x63, 0xec, 0x70, 0x5d, 0x36, 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44 +.byte 0x3a, 0xa2, 0x63, 0x51, 0x1f, 0xf5, 0xe3, 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0x00 +.byte 0xd5, 0x01, 0x26, 0x30, 0x81, 0xd2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65 +.byte 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b, 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30 +.byte 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20 +.byte 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65, 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61 +.byte 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75, 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41 +.byte 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75 +.byte 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d +.byte 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20, 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d +.byte 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54 +.byte 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b +.byte 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d +.byte 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20, 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, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b +.byte 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9, 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b +.byte 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42, 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01 +.byte 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7, 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e +.byte 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18, 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8 +.byte 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a, 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc +.byte 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce, 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37 +.byte 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec, 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f +.byte 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c, 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd +.byte 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c, 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61 +.byte 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e, 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e +.byte 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8, 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54 +.byte 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80, 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89 +.byte 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd, 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d +.byte 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c, 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90 +.byte 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5, 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00 +.byte 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec, 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 + +.global _binary_x509_crt_bundle_end +_binary_x509_crt_bundle_end: /* for objcopy compatibility */ + + +.global x509_crt_bundle_length +x509_crt_bundle_length: +.word 65870 diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..e064b95 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "can_network.c" "mcpwm_bdc_control.c" "station_example_main.c" "modbus-tcp.c" "ModbusS.c " "pid_ctrl.c" "bdc_motor.c" "bdc_motor_interface.h" "bdc_motor_mcpwm_impl.c" + INCLUDE_DIRS ".") diff --git a/main/Kconfig.projbuild b/main/Kconfig.projbuild new file mode 100644 index 0000000..7403f8f --- /dev/null +++ b/main/Kconfig.projbuild @@ -0,0 +1,20 @@ +menu "Example Configuration" + + config ESP_WIFI_SSID + string "WiFi SSID" + default "myssid" + help + SSID (network name) for the example to connect to. + + config ESP_WIFI_PASSWORD + string "WiFi Password" + default "mypassword" + help + WiFi password (WPA or WPA2) for the example to use. + + config ESP_MAXIMUM_RETRY + int "Maximum retry" + default 5 + help + Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent. +endmenu diff --git a/main/ModbusS.c b/main/ModbusS.c new file mode 100644 index 0000000..6252c42 --- /dev/null +++ b/main/ModbusS.c @@ -0,0 +1,407 @@ +#include "ModbusS.h" +#include "esp_log.h" + +#include + +// #include "lsapi_device.h" +// #include "lsapi_menu.h" +// #include "lsapi_os.h" +// #include "lsapi_sys.h" +// #include "lsapi_types.h" +// #include "osi_api.h" +const uint8_t local = 1; +static const char *TAG = "modbus"; + +static const uint8_t auchCRCHi[] = { + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, + 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40}; +/* CRC??????*/ +static const uint8_t auchCRCLo[] = { + 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06, 0x07, 0xC7, 0x05, 0xC5, 0xC4, 0x04, + 0xCC, 0x0C, 0x0D, 0xCD, 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09, 0x08, 0xC8, + 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA, 0x1A, 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC, + 0x14, 0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0x12, 0x13, 0xD3, 0x11, 0xD1, 0xD0, 0x10, + 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3, 0xF2, 0x32, 0x36, 0xF6, 0xF7, 0x37, 0xF5, 0x35, 0x34, 0xF4, + 0x3C, 0xFC, 0xFD, 0x3D, 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A, 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, + 0x28, 0xE8, 0xE9, 0x29, 0xEB, 0x2B, 0x2A, 0xEA, 0xEE, 0x2E, 0x2F, 0xEF, 0x2D, 0xED, 0xEC, 0x2C, + 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26, 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, + 0xA0, 0x60, 0x61, 0xA1, 0x63, 0xA3, 0xA2, 0x62, 0x66, 0xA6, 0xA7, 0x67, 0xA5, 0x65, 0x64, 0xA4, + 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F, 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, 0x69, 0xA9, 0xA8, 0x68, + 0x78, 0xB8, 0xB9, 0x79, 0xBB, 0x7B, 0x7A, 0xBA, 0xBE, 0x7E, 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, + 0xB4, 0x74, 0x75, 0xB5, 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71, 0x70, 0xB0, + 0x50, 0x90, 0x91, 0x51, 0x93, 0x53, 0x52, 0x92, 0x96, 0x56, 0x57, 0x97, 0x55, 0x95, 0x94, 0x54, + 0x9C, 0x5C, 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, 0x5A, 0x9A, 0x9B, 0x5B, 0x99, 0x59, 0x58, 0x98, + 0x88, 0x48, 0x49, 0x89, 0x4B, 0x8B, 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C, + 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42, 0x43, 0x83, 0x41, 0x81, 0x80, 0x40}; + +uint16_t crc16(uint8_t *puchMsg, uint16_t usDataLen) { + uint8_t uchCRCHi = 0xFF; /* ?CRC????? */ + uint8_t uchCRCLo = 0xFF; /* ?CRC ????? */ + uint32_t uIndex; /* CRC?????? */ + while (usDataLen--) /* ??????? */ + { + uIndex = uchCRCHi ^ *puchMsg++; /* ??CRC */ + uchCRCHi = uchCRCLo ^ auchCRCHi[uIndex]; + uchCRCLo = auchCRCLo[uIndex]; + } + return (uchCRCHi << 8 | uchCRCLo); +} // uint16 crc16(uint8 *puchMsg, uint16 usDataLen) + +uint16_t gWordVar[gWORD_SIZE]; + + + +// extern uint16_t *gWordVar; +uint8_t gBitVar[(gBIT_SIZE + 7) / 8]; + +int isBitHI(uint16_t Add) { + if (gBitVar[(Add) >> 3] & (1 << ((Add)&0x07))) { + return 1; + } else { + return 0; + } +} + +void ModBusBitWriteHook(uint16_t addr, uint16_t length) { +} +void ModBusWordWriteHook(uint16_t addr, uint16_t length) { + // zb_ModBusWordWriteHook(addr, length); +} +// uint16_t add_tlv(TLV *temp_tlv,uint8_t *txbuf) +// { +// static uint16_t distance1_last,distance2_last; +// uint8_t cnt = 0; +// if(temp_tlv->distance[0].is_effective) +// { +// if(abs(distance1_last - temp_tlv->distance[0].uwb.distance) >= flash_data.uwb_limit)//cm +// { +// cnt += +// tlv_fill_data((txbuf+cnt),TAG_DISTANCE_1,&temp_tlv->distance[0].uwb,sizeof(temp_tlv->distance[0].uwb)); +// } +// distance1_last = temp_tlv->distance[0].uwb.distance; +// } +// if(temp_tlv->distance[1].is_effective) +// { +// if(abs(distance2_last - temp_tlv->distance[1].uwb.distance) >= flash_data.uwb_limit)//cm +// { +// cnt += +// tlv_fill_data((txbuf+cnt),TAG_DISTANCE_2,&temp_tlv->distance[1].uwb,sizeof(temp_tlv->distance[1].uwb)); +// } +// distance2_last = temp_tlv->distance[1].uwb.distance; +// } +// if(temp_tlv->heartbeat.is_effective) +// { +// cnt += +// tlv_fill_data((txbuf+cnt),TAG_HEARBEAT,&temp_tlv->heartbeat.heartbeat,sizeof(temp_tlv->heartbeat.heartbeat)); +// } +// if(temp_tlv->shock.is_effective) +// { +// cnt += +// tlv_fill_data((txbuf+cnt),TAG_SHOCK,&temp_tlv->shock.shock,sizeof(temp_tlv->shock.shock)); +// } +// if(temp_tlv->voltage.is_effective) +// { +// cnt += +// tlv_fill_data((txbuf+cnt),TAG_VOLTAGE,&temp_tlv->voltage.voltage,sizeof(temp_tlv->voltage.voltage)); +// } + +// cnt += tlv_fill_data((txbuf+cnt),TAG_MAC_ADDR,&mac_addr.addr,sizeof(mac_addr.addr)); + +// temp_tlv->distance[0].is_effective = false; +// temp_tlv->distance[1].is_effective = false; +// temp_tlv->heartbeat.is_effective = false; +// temp_tlv->shock.is_effective = false; +// temp_tlv->shock.shock.is_shock = false; +// temp_tlv->voltage.is_effective = false; +// return cnt; +// } +int ModbusSlaveProcess(uint8_t *txbuf, uint8_t *rxbuf, uint16_t rxLen, int is_crc) { + uint16_t crcData, crcChk; + uint8_t Offset, ByteAdd; + uint16_t ByteNumber; + uint16_t add; + uint16_t length; + uint16_t temp_cnt; + int out_len = 0; + int i; + uint8_t *pDat; + uint8_t *pVar; + uint16_t *pWordVar; + uint8_t tlv_len = 0; + + ESP_LOGI(TAG, "ModbusSlaveProcess()---------------------------"); + + if (rxLen < 4) + { + ESP_LOGI(TAG, "err:rxlen less 4"); + return 0; + } + + ESP_LOGI(TAG, "check id..."); + if ((rxbuf[0] == local) || (rxbuf[0] == 255)) { + ESP_LOGI(TAG, "ok"); + if (is_crc != 0) { + ESP_LOGI(TAG, "check crc..."); + crcData = rxbuf[rxLen - 1] + (rxbuf[rxLen - 2] << 8); + crcChk = crc16(rxbuf, rxLen - 2); + if (crcData != crcChk) { + ESP_LOGI(TAG, "fault"); + return 0; + } + ESP_LOGI(TAG, "ok"); + } + + add = ((uint16_t)rxbuf[2] << 8) + rxbuf[3]; + // if(Length != + length = (rxbuf[4] << 8) | rxbuf[5]; + ESP_LOGI(TAG, "add: %d, length: %d", add, length); + txbuf[0] = rxbuf[0]; + switch (rxbuf[1]) { + case 0x01: // Read Coils + ESP_LOGI(TAG, "Read Coils"); + if ((add + length) > gBIT_SIZE) { + txbuf[1] = 0x81; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + out_len = 3; + ESP_LOGI(TAG, "err: add + length > gBIT_SIZE"); + break; + } + txbuf[1] = 0x01; + ByteNumber = (length + 7) / 8; + txbuf[2] = ByteNumber; + ByteAdd = add >> 3; // add/8 + Offset = add & 0x07; // add%8 + for (i = 0; i < (ByteNumber - 1); i++) { + txbuf[3 + i] = gBitVar[ByteAdd + i] >> Offset; + txbuf[3 + i] |= gBitVar[ByteAdd + i + 1] << (8 - Offset); + } + txbuf[3 + ByteNumber - 1] = gBitVar[ByteAdd + ByteNumber - 1] >> Offset; + txbuf[3 + ByteNumber - 1] &= 0xff >> Offset; + out_len = ByteNumber + 3; + break; + case 0x03: + case 0x04: // Read Holding Registers + ESP_LOGI(TAG, "Read Holding Registers"); + if ((add + length) > gWORD_SIZE) { + txbuf[1] = 0x80 + rxbuf[1]; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + out_len = 3; + ESP_LOGI(TAG, "err: add + length > gWORD_SIZE"); + break; + } + if (length > 512) { + length = 512; + } + if (rxbuf[1] == 4) { + add += 64; + } + txbuf[1] = rxbuf[1]; + ByteNumber = length * 2; + txbuf[2] = ByteNumber & 0xff; + pDat = &txbuf[3]; + pWordVar = &gWordVar[add]; + for (i = 0; i < length; i++) { + *pDat++ = *pWordVar >> 8; + *pDat++ = *pWordVar & 0xff; + pWordVar++; + } + out_len = ByteNumber + 3; + break; + case 0x05: // Write Single Coil + ESP_LOGI(TAG, "Write Single Coil"); + if (add >= gBIT_SIZE) { + ESP_LOGI(TAG, "err: add >= gBIT_SIZE"); + txbuf[1] = 0x85; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + out_len = 3; + break; + } + ByteAdd = add >> 3; // same add/8 + Offset = add & 0x07; // same add%8 + if (rxbuf[4] == 0) { + ESP_LOGI(TAG, "clearBit"); + clrBit(add); + } else if (rxbuf[4] == 0xff) { + ESP_LOGI(TAG, "setBit"); + setBit(add); + } else { + ESP_LOGI(TAG, "err: rxbuf[4] != 0x00 && rxbuf[4] != 0xff"); + txbuf[1] = 0x85; + txbuf[2] = 0x03; // ILLEGAL DATA VALUE + out_len = 3; + break; + } + memcpy(txbuf, rxbuf, 6); + ModBusBitWriteHook(add, 1); + out_len = 6; + break; + case 0x06: // Write Single Register + ESP_LOGI(TAG, "Write Single Register"); + if (add >= gWORD_SIZE) { + ESP_LOGI(TAG, "err: add >= gWORD_SIZE"); + txbuf[1] = 0x86; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + out_len = 3; + break; + } + gWordVar[add] = (rxbuf[4] << 8) + rxbuf[5]; + ESP_LOGI(TAG, "gwordvar[%d]=%d", add, gWordVar[add]); + memcpy(txbuf, rxbuf, 6); + ModBusWordWriteHook(add, 1); + out_len = 6; + break; + case 0x0F: // Write Multiple Coil + ESP_LOGI(TAG, "Write Multiple Coil"); + if ((add + length) > gBIT_SIZE) { + txbuf[1] = 0x8F; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + out_len = 3; + } + txbuf[1] = 0x0F; + txbuf[2] = rxbuf[2]; + txbuf[3] = rxbuf[3]; + txbuf[4] = 0; + txbuf[5] = length & 0xff; + pDat = rxbuf + 7; + for (i = 0; i < length; i++) { + if (*(pDat + (i >> 3)) & (1 << (i & 0x07))) + setBit(i + add); + else + clrBit(i + add); + } + ModBusBitWriteHook(add, length); + out_len = 6; + break; + case 0x10: // Write Multiple registers + ESP_LOGI(TAG, "Write Multiple registers"); + if ((add + length) > gWORD_SIZE) { + txbuf[1] = 0x90; + txbuf[2] = 0x02; // ILLEGAL DATA ADDRESS + crcChk = crc16(txbuf, 3); + txbuf[3] = crcChk >> 8; + txbuf[4] = crcChk; + out_len = 3; + } + txbuf[1] = 0x10; + txbuf[2] = rxbuf[2]; + txbuf[3] = rxbuf[3]; + txbuf[4] = 0; + txbuf[5] = length & 0xff; + pDat = rxbuf + 7; + pWordVar = &gWordVar[add]; + for (i = 0; i < length; i++) { + *pWordVar++ = (*pDat << 8) | *(pDat + 1); + pDat += 2; + } + ModBusWordWriteHook(add, length); + out_len = 6; + break; + case 33: + + // txbuf[1] = 33; + // txbuf[2] = add_tlv(&t_tlv,&txbuf[3]); + // out_len = txbuf[2]+3; + // sys_para.normal_mode_para.gprs_timeout_cnt = 0; + + // if(DEBUG_FLG) + // NRF_LOG_INFO("modbus "); + break; + } // switch(rxbuf[1]) + + if (is_crc && out_len > 0) { + crcChk = crc16(txbuf, out_len); + txbuf[out_len++] = crcChk >> 8; + txbuf[out_len++] = crcChk & 0xff; + } + } + return out_len; +} +// static input_str[512]; +// static LSAPI_Device_t *gDeviceUart = NULL; +// static LSAPI_Device_t *en = NULL; + +// void menu_uart_evt_cb(void *param, uint32_t evt) { +// int len; +// uint32_t rs485_en = 1; +// LSAPI_OSI_Event_t *waitevent = (LSAPI_OSI_Event_t *)param; +// memset(input_str, 0, 512); +// LSAPI_Log_Debug("uart2 event"); +// if (evt == LS_UART_EVENT_TX_COMPLETE) { +// LSAPI_Device_Write(en, (void *)&rs485_en, 1); +// } +// if (evt == LS_UART_EVENT_RX_ARRIVED) { +// if (LSAPI_Device_ReadAvail(gDeviceUart)) { +// len = LSAPI_Device_Read(gDeviceUart, input_str, 512); +// LSAPI_Log_Debug("rec->%d", len); +// } +// } +// } + +// void modbus(void) { +// /*****************************************************************/ +// // 485 uart cfg +// LSAPI_Device_UartConfig_t uart_cfg = { +// .name = LSAPI_DEV_UART2, +// .baud = 115200, +// .format = LSAPI_DEVICE_FORMAT_8N1, +// .parity = LSAPI_DEVICE_PARITY_ODD, +// // .rts_enable = 1, +// // .cts_enable = 1, +// .event_cb = menu_uart_evt_cb, +// .event_cb_ctx = NULL, +// }; +// gDeviceUart = LSAPI_Device_UartCreate(&uart_cfg); +// if (gDeviceUart == NULL) { +// LSAPI_Log_Debug("uart create fail"); +// return; +// } +// LSAPI_Device_Open(gDeviceUart); +// // LSAPI_Device_Write(gDeviceUart,"hello",5); +// LSAPI_Log_Debug("------reg--->%8x ", *((uint32_t *)(0x0881700c))); +// /*****************************************************************/ +// // 485 en cfg + +// // LSAPI_GpioConfig_t gpioConfig = {0}; + +// // gpioConfig.id = 5; // gpio2, just for exmaple, +// // gpioConfig.mode = LS_GPIO_OUTPUT; +// // gpioConfig.out_level = 1; + +// // // create instance +// // en = LSAPI_Device_GPIOCreate(&gpioConfig); +// // if (NULL == en) +// // { +// // // error +// // LSAPI_Log_Debug("LSAPI_Device_GPIOCreate error."); +// // return; +// // } + +// // // open GPIO 2 +// // LSAPI_Device_Open(en); + +// en = LSAPI_Device_LedCreate(LS_LED_1); +// LSAPI_Device_Open(en); + +// uint32_t write_value = 0; +// LSAPI_Device_Write(en, (void *)&write_value, 1); +// } + +// void rs485_send(void *buf, uint16_t len) { +// uint32_t rs485_en = 0; +// LSAPI_Device_Write(en, (void *)&rs485_en, 1); +// LSAPI_Device_Write(gDeviceUart, buf, len); +// } \ No newline at end of file diff --git a/main/ModbusS.h b/main/ModbusS.h new file mode 100644 index 0000000..d4e9d77 --- /dev/null +++ b/main/ModbusS.h @@ -0,0 +1,29 @@ +#ifndef _MODBUS_H +#define _MODBUS_H +#include +#define uint8_t unsigned char +#define uint16_t unsigned short +#define uint32 unsigned int + +#define setBit(Add) gBitVar[(Add) >> 3] |= (1 << ((Add)&0x07)) +#define clrBit(Add) gBitVar[(Add) >> 3] &= ~(1 << ((Add)&0x07)) +//#define ModBusTxData uart1_tx + +extern uint16_t crc16(uint8_t *puchMsg, uint16_t usDataLen); +extern int ModbusSlaveProcess(uint8_t *txbuf, uint8_t *rxbuf, uint16_t rxLen, int is_crc); + + + +int isBitHI(uint16_t Add); +void xorBit(uint16_t Add); + +void WriteBit(uint16_t Add, uint8_t bit_value); +#define gBIT_SIZE 128 +#define gWORD_SIZE 12288 +extern uint8_t gBitVar[(gBIT_SIZE + 7) / 8]; +extern uint16_t gWordVar[gWORD_SIZE]; + +void modbus(void); +void rs485_send(void *buf, uint16_t len); + +#endif diff --git a/main/bdc_motor.c b/main/bdc_motor.c new file mode 100644 index 0000000..fbbc440 --- /dev/null +++ b/main/bdc_motor.c @@ -0,0 +1,62 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#include +#include +#include +#include "esp_log.h" +#include "esp_check.h" +#include "bdc_motor.h" +#include "bdc_motor_interface.h" + +static const char *TAG = "bdc_motor"; + +esp_err_t bdc_motor_enable(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->enable(motor); +} + +esp_err_t bdc_motor_disable(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->disable(motor); +} + +esp_err_t bdc_motor_set_speed(bdc_motor_handle_t motor, uint32_t speed) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->set_speed(motor, speed); +} + +esp_err_t bdc_motor_forward(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->forward(motor); +} + +esp_err_t bdc_motor_reverse(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->reverse(motor); +} + +esp_err_t bdc_motor_coast(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->coast(motor); +} + +esp_err_t bdc_motor_brake(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->brake(motor); +} + +esp_err_t bdc_motor_del(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->del(motor); +} diff --git a/main/bdc_motor.h b/main/bdc_motor.h new file mode 100644 index 0000000..1b102d9 --- /dev/null +++ b/main/bdc_motor.h @@ -0,0 +1,145 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#pragma once + +#include +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief Brushed DC Motor handle + */ +typedef struct bdc_motor_t *bdc_motor_handle_t; + +/** + * @brief Enable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Enable motor successfully + * - ESP_ERR_INVALID_ARG: Enable motor failed because of invalid parameters + * - ESP_FAIL: Enable motor failed because other error occurred + */ +esp_err_t bdc_motor_enable(bdc_motor_handle_t motor); + +/** + * @brief Disable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Disable motor successfully + * - ESP_ERR_INVALID_ARG: Disable motor failed because of invalid parameters + * - ESP_FAIL: Disable motor failed because other error occurred + */ +esp_err_t bdc_motor_disable(bdc_motor_handle_t motor); + +/** + * @brief Set speed for bdc motor + * + * @param motor: BDC Motor handle + * @param speed: BDC speed + * + * @return + * - ESP_OK: Set motor speed successfully + * - ESP_ERR_INVALID_ARG: Set motor speed failed because of invalid parameters + * - ESP_FAIL: Set motor speed failed because other error occurred + */ +esp_err_t bdc_motor_set_speed(bdc_motor_handle_t motor, uint32_t speed); + +/** + * @brief Forward BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Forward motor successfully + * - ESP_FAIL: Forward motor failed because some other error occurred + */ +esp_err_t bdc_motor_forward(bdc_motor_handle_t motor); + +/** + * @brief Reverse BDC Motor + * + * @param strip: BDC Motor handle + * + * @return + * - ESP_OK: Reverse motor successfully + * - ESP_FAIL: Reverse motor failed because some other error occurred + */ +esp_err_t bdc_motor_reverse(bdc_motor_handle_t motor); + +/** + * @brief Stop motor in a coast way (a.k.a Fast Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ +esp_err_t bdc_motor_coast(bdc_motor_handle_t motor); + +/** + * @brief Stop motor in a brake way (a.k.a Slow Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ +esp_err_t bdc_motor_brake(bdc_motor_handle_t motor); + +/** + * @brief Free BDC Motor resources + * + * @param strip: BDC Motor handle + * + * @return + * - ESP_OK: Free resources successfully + * - ESP_FAIL: Free resources failed because error occurred + */ +esp_err_t bdc_motor_del(bdc_motor_handle_t motor); + +/** + * @brief BDC Motor Configuration + */ +typedef struct { + uint32_t pwma_gpio_num; /*!< BDC Motor PWM A gpio number */ + uint32_t pwmb_gpio_num; /*!< BDC Motor PWM B gpio number */ + uint32_t pwm_freq_hz; /*!< PWM frequency, in Hz */ +} bdc_motor_config_t; + +/** + * @brief BDC Motor MCPWM specific configuration + */ +typedef struct { + int group_id; /*!< MCPWM group number */ + uint32_t resolution_hz; /*!< MCPWM timer resolution */ +} bdc_motor_mcpwm_config_t; + +/** + * @brief Create BDC Motor based on MCPWM peripheral + * + * @param motor_config: BDC Motor configuration + * @param mcpwm_config: MCPWM specific configuration + * @param ret_motor Returned BDC Motor handle + * @return + * - ESP_OK: Create BDC Motor handle successfully + * - ESP_ERR_INVALID_ARG: Create BDC Motor handle failed because of invalid argument + * - ESP_ERR_NO_MEM: Create BDC Motor handle failed because of out of memory + * - ESP_FAIL: Create BDC Motor handle failed because some other error + */ +esp_err_t bdc_motor_new_mcpwm_device(const bdc_motor_config_t *motor_config, const bdc_motor_mcpwm_config_t *mcpwm_config, bdc_motor_handle_t *ret_motor); + +#ifdef __cplusplus +} +#endif diff --git a/main/bdc_motor_interface.h b/main/bdc_motor_interface.h new file mode 100644 index 0000000..35e9697 --- /dev/null +++ b/main/bdc_motor_interface.h @@ -0,0 +1,116 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#pragma once + +#include +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct bdc_motor_t bdc_motor_t; /*!< Type of BDC motor */ + +/** + * @brief BDC motor interface definition + */ +struct bdc_motor_t { + /** + * @brief Enable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Enable motor successfully + * - ESP_ERR_INVALID_ARG: Enable motor failed because of invalid parameters + * - ESP_FAIL: Enable motor failed because other error occurred + */ + esp_err_t (*enable)(bdc_motor_t *motor); + + /** + * @brief Disable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Disable motor successfully + * - ESP_ERR_INVALID_ARG: Disable motor failed because of invalid parameters + * - ESP_FAIL: Disable motor failed because other error occurred + */ + esp_err_t (*disable)(bdc_motor_t *motor); + + /** + * @brief Set speed for bdc motor + * + * @param motor: BDC Motor handle + * @param speed: BDC speed + * + * @return + * - ESP_OK: Set motor speed successfully + * - ESP_ERR_INVALID_ARG: Set motor speed failed because of invalid parameters + * - ESP_FAIL: Set motor speed failed because other error occurred + */ + esp_err_t (*set_speed)(bdc_motor_t *motor, uint32_t speed); + + /** + * @brief Forward BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Forward motor successfully + * - ESP_FAIL: Forward motor failed because some other error occurred + */ + esp_err_t (*forward)(bdc_motor_t *motor); + + /** + * @brief Reverse BDC Motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Reverse motor successfully + * - ESP_FAIL: Reverse motor failed because some other error occurred + */ + esp_err_t (*reverse)(bdc_motor_t *motor); + + /** + * @brief Stop motor in a coast way (a.k.a Fast Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ + esp_err_t (*coast)(bdc_motor_t *motor); + + /** + * @brief Stop motor in a brake way (a.k.a Slow Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ + esp_err_t (*brake)(bdc_motor_t *motor); + + /** + * @brief Free BDC Motor handle resources + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Free resources successfully + * - ESP_FAIL: Free resources failed because error occurred + */ + esp_err_t (*del)(bdc_motor_t *motor); +}; + +#ifdef __cplusplus +} +#endif diff --git a/main/bdc_motor_mcpwm_impl.c b/main/bdc_motor_mcpwm_impl.c new file mode 100644 index 0000000..2b502a6 --- /dev/null +++ b/main/bdc_motor_mcpwm_impl.c @@ -0,0 +1,185 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#include +#include +#include +#include "esp_log.h" +#include "esp_check.h" +#include "driver/mcpwm_prelude.h" +#include "bdc_motor.h" +#include "bdc_motor_interface.h" + +static const char *TAG = "bdc_motor_mcpwm"; + +typedef struct { + bdc_motor_t base; + mcpwm_timer_handle_t timer; + mcpwm_oper_handle_t operator; + mcpwm_cmpr_handle_t cmpa; + mcpwm_cmpr_handle_t cmpb; + mcpwm_gen_handle_t gena; + mcpwm_gen_handle_t genb; +} bdc_motor_mcpwm_obj; + +static esp_err_t bdc_motor_mcpwm_set_speed(bdc_motor_t *motor, uint32_t speed) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_comparator_set_compare_value(mcpwm_motor->cmpa, speed), TAG, "set compare value failed"); + ESP_RETURN_ON_ERROR(mcpwm_comparator_set_compare_value(mcpwm_motor->cmpb, speed), TAG, "set compare value failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_enable(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_timer_enable(mcpwm_motor->timer), TAG, "enable timer failed"); + ESP_RETURN_ON_ERROR(mcpwm_timer_start_stop(mcpwm_motor->timer, MCPWM_TIMER_START_NO_STOP), TAG, "start timer failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_disable(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_timer_start_stop(mcpwm_motor->timer, MCPWM_TIMER_STOP_EMPTY), TAG, "stop timer failed"); + ESP_RETURN_ON_ERROR(mcpwm_timer_disable(mcpwm_motor->timer), TAG, "disable timer failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_forward(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, -1, true), TAG, "disable force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 0, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_reverse(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, -1, true), TAG, "disable force level for genb failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 0, true), TAG, "set force level for gena failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_coast(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 0, true), TAG, "set force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 0, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_brake(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 1, true), TAG, "set force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 1, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_del(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + mcpwm_del_generator(mcpwm_motor->gena); + mcpwm_del_generator(mcpwm_motor->genb); + mcpwm_del_comparator(mcpwm_motor->cmpa); + mcpwm_del_comparator(mcpwm_motor->cmpb); + mcpwm_del_operator(mcpwm_motor->operator); + mcpwm_del_timer(mcpwm_motor->timer); + free(mcpwm_motor); + return ESP_OK; +} + +esp_err_t bdc_motor_new_mcpwm_device(const bdc_motor_config_t *motor_config, const bdc_motor_mcpwm_config_t *mcpwm_config, bdc_motor_handle_t *ret_motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = NULL; + esp_err_t ret = ESP_OK; + ESP_GOTO_ON_FALSE(motor_config && mcpwm_config && ret_motor, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument"); + mcpwm_motor = calloc(1, sizeof(bdc_motor_mcpwm_obj)); + ESP_GOTO_ON_FALSE(mcpwm_motor, ESP_ERR_NO_MEM, err, TAG, "no mem for rmt motor"); + + // mcpwm timer + mcpwm_timer_config_t timer_config = { + .group_id = mcpwm_config->group_id, + .clk_src = MCPWM_TIMER_CLK_SRC_DEFAULT, + .resolution_hz = mcpwm_config->resolution_hz, + .period_ticks = mcpwm_config->resolution_hz / motor_config->pwm_freq_hz, + .count_mode = MCPWM_TIMER_COUNT_MODE_UP, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_timer(&timer_config, &mcpwm_motor->timer), err, TAG, "create MCPWM timer failed"); + + mcpwm_operator_config_t operator_config = { + .group_id = mcpwm_config->group_id, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_operator(&operator_config, &mcpwm_motor->operator), err, TAG, "create MCPWM operator failed"); + + ESP_GOTO_ON_ERROR(mcpwm_operator_connect_timer(mcpwm_motor->operator, mcpwm_motor->timer), err, TAG, "connect timer and operator failed"); + + mcpwm_comparator_config_t comparator_config = { + .flags.update_cmp_on_tez = true, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_comparator(mcpwm_motor->operator, &comparator_config, &mcpwm_motor->cmpa), err, TAG, "create comparator failed"); + ESP_GOTO_ON_ERROR(mcpwm_new_comparator(mcpwm_motor->operator, &comparator_config, &mcpwm_motor->cmpb), err, TAG, "create comparator failed"); + + // set the initial compare value for both comparators + mcpwm_comparator_set_compare_value(mcpwm_motor->cmpa, 0); + mcpwm_comparator_set_compare_value(mcpwm_motor->cmpb, 0); + + mcpwm_generator_config_t generator_config = { + .gen_gpio_num = motor_config->pwma_gpio_num, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_generator(mcpwm_motor->operator, &generator_config, &mcpwm_motor->gena), err, TAG, "create generator failed"); + generator_config.gen_gpio_num = motor_config->pwmb_gpio_num; + ESP_GOTO_ON_ERROR(mcpwm_new_generator(mcpwm_motor->operator, &generator_config, &mcpwm_motor->genb), err, TAG, "create generator failed"); + + mcpwm_generator_set_actions_on_timer_event(mcpwm_motor->gena, + MCPWM_GEN_TIMER_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, MCPWM_TIMER_EVENT_EMPTY, MCPWM_GEN_ACTION_HIGH), + MCPWM_GEN_TIMER_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_compare_event(mcpwm_motor->gena, + MCPWM_GEN_COMPARE_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, mcpwm_motor->cmpa, MCPWM_GEN_ACTION_LOW), + MCPWM_GEN_COMPARE_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_timer_event(mcpwm_motor->genb, + MCPWM_GEN_TIMER_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, MCPWM_TIMER_EVENT_EMPTY, MCPWM_GEN_ACTION_HIGH), + MCPWM_GEN_TIMER_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_compare_event(mcpwm_motor->genb, + MCPWM_GEN_COMPARE_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, mcpwm_motor->cmpb, MCPWM_GEN_ACTION_LOW), + MCPWM_GEN_COMPARE_EVENT_ACTION_END()); + + mcpwm_motor->base.enable = bdc_motor_mcpwm_enable; + mcpwm_motor->base.disable = bdc_motor_mcpwm_disable; + mcpwm_motor->base.forward = bdc_motor_mcpwm_forward; + mcpwm_motor->base.reverse = bdc_motor_mcpwm_reverse; + mcpwm_motor->base.coast = bdc_motor_mcpwm_coast; + mcpwm_motor->base.brake = bdc_motor_mcpwm_brake; + mcpwm_motor->base.set_speed = bdc_motor_mcpwm_set_speed; + mcpwm_motor->base.del = bdc_motor_mcpwm_del; + *ret_motor = &mcpwm_motor->base; + return ESP_OK; + +err: + if (mcpwm_motor) { + if (mcpwm_motor->gena) { + mcpwm_del_generator(mcpwm_motor->gena); + } + if (mcpwm_motor->genb) { + mcpwm_del_generator(mcpwm_motor->genb); + } + if (mcpwm_motor->cmpa) { + mcpwm_del_comparator(mcpwm_motor->cmpa); + } + if (mcpwm_motor->cmpb) { + mcpwm_del_comparator(mcpwm_motor->cmpb); + } + if (mcpwm_motor->operator) { + mcpwm_del_operator(mcpwm_motor->operator); + } + if (mcpwm_motor->timer) { + mcpwm_del_timer(mcpwm_motor->timer); + } + free(mcpwm_motor); + } + return ret; +} diff --git a/main/can_network.c b/main/can_network.c new file mode 100644 index 0000000..ac1d9e7 --- /dev/null +++ b/main/can_network.c @@ -0,0 +1,250 @@ +/* TWAI Network Slave Example + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ + +/* + * The following example demonstrates a slave node in a TWAI network. The slave + * node is responsible for sending data messages to the master. The example will + * execute multiple iterations, with each iteration the slave node will do the + * following: + * 1) Start the TWAI driver + * 2) Listen for ping messages from master, and send ping response + * 3) Listen for start command from master + * 4) Send data messages to master and listen for stop command + * 5) Send stop response to master + * 6) Stop the TWAI driver + */ + +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "freertos/semphr.h" +#include "esp_err.h" +#include "esp_log.h" +#include "driver/twai.h" + +/* --------------------- Definitions and static variables ------------------ */ +// Example Configuration +#define DATA_PERIOD_MS 50 +#define NO_OF_ITERS 3 +#define ITER_DELAY_MS 1000 +#define RX_TASK_PRIO 8 // Receiving task priority +#define TX_TASK_PRIO 9 // Sending task priority +#define CTRL_TSK_PRIO 10 // Control task priority +#define TX_GPIO_NUM 42 +#define RX_GPIO_NUM 41 +#define TAG "CAN" + +#define ID_MASTER_STOP_CMD 0x0A0 +#define ID_MASTER_START_CMD 0x0A1 +#define ID_MASTER_PING 0x0A2 +#define ID_SLAVE_STOP_RESP 0x0B0 +#define ID_SLAVE_DATA 0x0B1 +#define ID_SLAVE_PING_RESP 0x0B2 + +typedef enum +{ + TX_SEND_PING_RESP, + TX_SEND_DATA, + TX_SEND_STOP_RESP, + TX_TASK_EXIT, +} tx_task_action_t; + +typedef enum +{ + RX_RECEIVE_PING, + RX_RECEIVE_START_CMD, + RX_RECEIVE_STOP_CMD, + RX_TASK_EXIT, +} rx_task_action_t; + +static const twai_general_config_t g_config = TWAI_GENERAL_CONFIG_DEFAULT(TX_GPIO_NUM, RX_GPIO_NUM, TWAI_MODE_NORMAL); +static const twai_timing_config_t t_config = TWAI_TIMING_CONFIG_250KBITS(); +static const twai_filter_config_t f_config = TWAI_FILTER_CONFIG_ACCEPT_ALL(); +// static const twai_message_t ping_resp = {.identifier = ID_SLAVE_PING_RESP, .data_length_code = 0, .data = {0, 0, 0, 0, 0, 0, 0, 0}}; +// static const twai_message_t stop_resp = {.identifier = ID_SLAVE_STOP_RESP, .data_length_code = 0, .data = {0, 0, 0, 0, 0, 0, 0, 0}}; +// Data bytes of data message will be initialized in the transmit task +// static twai_message_t data_message = {.identifier = ID_SLAVE_DATA, .data_length_code = 4, .data = {0, 0, 0, 0, 0, 0, 0, 0}}; + +// static QueueHandle_t tx_task_queue; +// static QueueHandle_t rx_task_queue; +// static SemaphoreHandle_t ctrl_task_sem; +// static SemaphoreHandle_t stop_data_sem; +// static SemaphoreHandle_t done_sem; + +/* --------------------------- Tasks and Functions -------------------------- */ + +static void twai_receive_task(void *arg) +{ + twai_message_t rx_msg; + int i; + while (1) + { + char msg_data_str[32]; + int index = 0; + esp_err_t err = twai_receive(&rx_msg, portMAX_DELAY); + if (err == ESP_OK) + { + for (i = 0; i < rx_msg.data_length_code; i++) + { + index += sprintf(&msg_data_str[i], "%02x ", rx_msg.data[i]); + } + // ESP_LOGI(TAG, "recive msg id=%x,len=%d,data=[%s]", rx_msg.identifier, rx_msg.data_length_code, msg_data_str); + } + } +} + +// static void twai_transmit_task(void *arg) +// { +// while (1) +// { +// tx_task_action_t action; +// xQueueReceive(tx_task_queue, &action, portMAX_DELAY); +// if (action == TX_SEND_PING_RESP) +// { +// // Transmit ping response to master +// twai_transmit(&ping_resp, portMAX_DELAY); +// ESP_LOGI(EXAMPLE_TAG, "Transmitted ping response"); +// xSemaphoreGive(ctrl_task_sem); +// } +// else if (action == TX_SEND_DATA) +// { +// // Transmit data messages until stop command is received +// ESP_LOGI(EXAMPLE_TAG, "Start transmitting data"); +// while (1) +// { +// // FreeRTOS tick count used to simulate sensor data +// uint32_t sensor_data = xTaskGetTickCount(); +// for (int i = 0; i < 4; i++) +// { +// data_message.data[i] = (sensor_data >> (i * 8)) & 0xFF; +// } +// twai_transmit(&data_message, portMAX_DELAY); +// ESP_LOGI(EXAMPLE_TAG, "Transmitted data value %d", sensor_data); +// vTaskDelay(pdMS_TO_TICKS(DATA_PERIOD_MS)); +// if (xSemaphoreTake(stop_data_sem, 0) == pdTRUE) +// { +// break; +// } +// } +// } +// else if (action == TX_SEND_STOP_RESP) +// { +// // Transmit stop response to master +// twai_transmit(&stop_resp, portMAX_DELAY); +// ESP_LOGI(EXAMPLE_TAG, "Transmitted stop response"); +// xSemaphoreGive(ctrl_task_sem); +// } +// else if (action == TX_TASK_EXIT) +// { +// break; +// } +// } +// vTaskDelete(NULL); +// } + +// static void twai_control_task(void *arg) +// { +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); +// tx_task_action_t tx_action; +// rx_task_action_t rx_action; + +// for (int iter = 0; iter < NO_OF_ITERS; iter++) +// { +// ESP_ERROR_CHECK(twai_start()); +// ESP_LOGI(EXAMPLE_TAG, "Driver started"); + +// // Listen of pings from master +// rx_action = RX_RECEIVE_PING; +// xQueueSend(rx_task_queue, &rx_action, portMAX_DELAY); +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); + +// // Send ping response +// tx_action = TX_SEND_PING_RESP; +// xQueueSend(tx_task_queue, &tx_action, portMAX_DELAY); +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); + +// // Listen for start command +// rx_action = RX_RECEIVE_START_CMD; +// xQueueSend(rx_task_queue, &rx_action, portMAX_DELAY); +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); + +// // Start sending data messages and listen for stop command +// tx_action = TX_SEND_DATA; +// rx_action = RX_RECEIVE_STOP_CMD; +// xQueueSend(tx_task_queue, &tx_action, portMAX_DELAY); +// xQueueSend(rx_task_queue, &rx_action, portMAX_DELAY); +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); + +// // Send stop response +// tx_action = TX_SEND_STOP_RESP; +// xQueueSend(tx_task_queue, &tx_action, portMAX_DELAY); +// xSemaphoreTake(ctrl_task_sem, portMAX_DELAY); + +// // Wait for bus to become free +// twai_status_info_t status_info; +// twai_get_status_info(&status_info); +// while (status_info.msgs_to_tx > 0) +// { +// vTaskDelay(pdMS_TO_TICKS(100)); +// twai_get_status_info(&status_info); +// } + +// ESP_ERROR_CHECK(twai_stop()); +// ESP_LOGI(EXAMPLE_TAG, "Driver stopped"); +// vTaskDelay(pdMS_TO_TICKS(ITER_DELAY_MS)); +// } + +// // Stop TX and RX tasks +// tx_action = TX_TASK_EXIT; +// rx_action = RX_TASK_EXIT; +// xQueueSend(tx_task_queue, &tx_action, portMAX_DELAY); +// xQueueSend(rx_task_queue, &rx_action, portMAX_DELAY); + +// // Delete Control task +// xSemaphoreGive(done_sem); +// vTaskDelete(NULL); +// } + +void can_init(void) +{ + // Add short delay to allow master it to initialize first + + // Create semaphores and tasks + // tx_task_queue = xQueueCreate(1, sizeof(tx_task_action_t)); + // rx_task_queue = xQueueCreate(1, sizeof(rx_task_action_t)); + // ctrl_task_sem = xSemaphoreCreateBinary(); + // stop_data_sem = xSemaphoreCreateBinary();; + // done_sem = xSemaphoreCreateBinary();; + ESP_ERROR_CHECK(twai_driver_install(&g_config, &t_config, &f_config)); + ESP_LOGI(TAG, "Driver installed"); + + xTaskCreatePinnedToCore(twai_receive_task, "CAN_rx", 1024, NULL, RX_TASK_PRIO, NULL, tskNO_AFFINITY); + twai_start(); + // xTaskCreatePinnedToCore(twai_transmit_task, "TWAI_tx", 4096, NULL, TX_TASK_PRIO, NULL, tskNO_AFFINITY); + // xTaskCreatePinnedToCore(twai_control_task, "TWAI_ctrl", 4096, NULL, CTRL_TSK_PRIO, NULL, tskNO_AFFINITY); + + // Install TWAI driver, trigger tasks to start + // ESP_ERROR_CHECK(twai_driver_install(&g_config, &t_config, &f_config)); + + // xSemaphoreGive(ctrl_task_sem); // Start Control task + // xSemaphoreTake(done_sem, portMAX_DELAY); // Wait for tasks to complete + + // //Uninstall TWAI driver + // ESP_ERROR_CHECK(twai_driver_uninstall()); + // ESP_LOGI(EXAMPLE_TAG, "Driver uninstalled"); + + // //Cleanup + // vSemaphoreDelete(ctrl_task_sem); + // vSemaphoreDelete(stop_data_sem); + // vSemaphoreDelete(done_sem); + // vQueueDelete(tx_task_queue); + // vQueueDelete(rx_task_queue); +} diff --git a/main/component.mk b/main/component.mk new file mode 100644 index 0000000..0adf456 --- /dev/null +++ b/main/component.mk @@ -0,0 +1,8 @@ +# +# Main component makefile. +# +# This Makefile can be left empty. By default, it will take the sources in the +# src/ directory, compile them and link them into lib(subdirectory_name).a +# in the build directory. This behaviour is entirely configurable, +# please read the ESP-IDF documents if you need to do this. +# diff --git a/main/mcpwm_bdc_control.c b/main/mcpwm_bdc_control.c new file mode 100644 index 0000000..42e112f --- /dev/null +++ b/main/mcpwm_bdc_control.c @@ -0,0 +1,432 @@ +/* + * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "sdkconfig.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "driver/pulse_cnt.h" +#include "bdc_motor.h" +#include "pid_ctrl.h" +#include "ModbusS.h" + +static const char *TAG = "bdc_control"; + +// Enable this config, we will print debug formated string, which in return can be captured and parsed by Serial-Studio +#define SERIAL_STUDIO_DEBUG CONFIG_SERIAL_STUDIO_DEBUG + +#define BDC_MCPWM_TIMER_RESOLUTION_HZ 10000000 // 10MHz, 1 tick = 0.1us + +#define BDC_MCPWM_FREQ_HZ 25000 // 25KHz PWM +#define BDC_MCPWM_DUTY_TICK_MAX (BDC_MCPWM_TIMER_RESOLUTION_HZ / BDC_MCPWM_FREQ_HZ) // maximum value we can set for the duty cycle, in ticks + +#define BDC_MCPWM_GPIO_A 12 +#define BDC_MCPWM_GPIO_B 13 +#define BDC_MCPWM_GPIO_A1 14 +#define BDC_MCPWM_GPIO_B1 15 +#define BDC_MCPWM_GPIO_A2 16 +#define BDC_MCPWM_GPIO_B2 17 +//编码器对应IO口 +#define BDC_ENCODER_GPIO_A 34 +#define BDC_ENCODER_GPIO_B 35 + +#define BDC_ENCODER_GPIO_A1 33 +#define BDC_ENCODER_GPIO_B1 26 + +#define BDC_CH1_LOW0_GPIO 1 +#define BDC_CH1_HI0_GPIO 2 +#define BDC_CH1_LOW1_GPIO 3 +#define BDC_CH1_HI1_GPIO 4 +#define BDC_CH1_AOUT_GPIO 5 +#define BDC_CH1_AOUT_GPIO 6 +#define BDC_CH0_LOW0_GPIO 7 +#define BDC_CH0_HI0_GPIO 8 +#define BDC_CH0_LOW1_GPIO 9 +#define BDC_CH0_HI1_GPIO 10 + +//编码器脉冲计数误差范围 +#define BDC_ENCODER_PCNT_HIGH_LIMIT 1000 +#define BDC_ENCODER_PCNT_LOW_LIMIT -1000 + +#define BDC_PID_LOOP_PERIOD_MS 1000 // calculate the motor speed every 10ms +#define BDC_PID_EXPECT_SPEED 400 // expected motor speed, in the pulses counted by the rotary encoder + +typedef struct +{ + bdc_motor_handle_t motor; + pcnt_unit_handle_t pcnt_encoder; + pid_ctrl_block_handle_t pid_ctrl; + esp_timer_handle_t pid_loop_timer; + int accumu_count; + int report_pulses; + + int id; /* 标识一个电机 */ +} motor_control_context_t; + + +typedef struct +{ + /* 从Mudbus服务器端得到设置参数 */ + uint16_t speed; /* 速度大小 */ + uint16_t foreward; /* 速度方向(注:现在只考虑前进和后退,因此0正1负 但是期望未来该值为一个-1->1之间的数,可以指导转弯) */ + uint16_t inversion; + + /* 发送到Modbus服务器显示的数据 */ + uint16_t real_speedl; /* 真实速度 */ + uint16_t real_forewardl; /* 真实方向 */ + uint16_t real_motor_outputl; /* 真实电机输出 */ + uint16_t real_motor_output_dirl; /* 注:这里将方向单独拆出只是为了在mudbus调试器上方便观看 */ + + uint16_t real_speedr; /* 真实速度 */ + uint16_t real_forewardr; /* 真实方向 */ + uint16_t real_motor_outputr; /* 真实电机输出 */ + uint16_t real_motor_output_dirr; /* 注:这里将方向单独拆出只是为了在mudbus调试器上方便观看 */ +} motor_control_t; + +/* gWordVar寄存器组对应到motor_control_t的各个结构 */ +motor_control_t *motor_control = (motor_control_t *)&gWordVar[0]; + + + +static bool example_pcnt_on_reach(pcnt_unit_handle_t unit, const pcnt_watch_event_data_t *edata, void *user_ctx) +{ + int *accumu_count = (int *)user_ctx; + *accumu_count += edata->watch_point_value; + return false; +} + + + +/* 定时器定时触发,使用PID算法控速 + * 注意:速度以每次采样期间编码器计数个数为衡量标准 + * 待修正:对于转弯的逻辑,可能左右轮的速度是期望速度的不同函数关系 + */ +static void pid_loop_cb(void *args) +{ + static int last_pulse_count = 0; + motor_control_context_t *ctx = (motor_control_context_t *)args; + pcnt_unit_handle_t pcnt_unit = ctx->pcnt_encoder; + pid_ctrl_block_handle_t pid_ctrl = ctx->pid_ctrl; + bdc_motor_handle_t motor = ctx->motor; + + /* 从编码器获得计数,得到实际速度 */ + int cur_pulse_count = 0; + pcnt_unit_get_count(pcnt_unit, &cur_pulse_count); + cur_pulse_count += ctx->accumu_count; + + int real_pulses = cur_pulse_count - last_pulse_count; //新的脉冲数减去上一次的脉冲数为真实脉冲数 + last_pulse_count = cur_pulse_count; + ctx->report_pulses = real_pulses; + + /* 从Modbus服务器端获得期望速度 */ + int speed = motor_control->foreward == 0 ? motor_control->speed : -motor_control->speed; + + /* 计算速度误差->增量式PID->控制电机输出 */ + float error = speed - real_pulses; /* 注意:这里使用的隐式类型转换 */ + float new_speed = 0; + pid_compute(pid_ctrl, error, &new_speed); + bdc_motor_set_speed(motor, (uint32_t)new_speed); + + /* 更新Modbus端的数据 */ + if (ctx->id == 0) + { + motor_control->real_speedl = real_pulses > 0 ? real_pulses : -real_pulses; + motor_control->real_forewardl = real_pulses > 0 ? 0 : 1; + motor_control->real_motor_outputl = new_speed > 0 ? new_speed : -new_speed; + motor_control->real_motor_output_dirl = new_speed > 0 ? 0 : 1; + } + else if (ctx->id == 1) + { + motor_control->real_speedr = real_pulses > 0 ? real_pulses : -real_pulses; + motor_control->real_forewardr = real_pulses > 0 ? 0 : 1; + motor_control->real_motor_outputr = new_speed > 0 ? new_speed : -new_speed; + motor_control->real_motor_output_dirr = new_speed > 0 ? 0 : 1; + } +} + + + +void bdc_motor_init(uint32_t bdc_mcpwm_gpio_a, uint32_t bdc_mcpwm_gpio_b, int group_id, bdc_motor_handle_t *motor_ret) +{ + ESP_LOGI(TAG, "Create DC motor"); + bdc_motor_config_t motor_config = { + .pwm_freq_hz = BDC_MCPWM_FREQ_HZ, + .pwma_gpio_num = bdc_mcpwm_gpio_a, + .pwmb_gpio_num = bdc_mcpwm_gpio_b, + }; + + bdc_motor_mcpwm_config_t mcpwm_config = { + .group_id = group_id, + .resolution_hz = BDC_MCPWM_TIMER_RESOLUTION_HZ, // 0.1us精密度 + }; + + bdc_motor_handle_t motor = NULL; + ESP_ERROR_CHECK(bdc_motor_new_mcpwm_device(&motor_config, &mcpwm_config, &motor)); //根据当前误差检查 + *motor_ret = motor; +} + + +void bdc_encoder_init(uint32_t bdc_encoder_gpioa, uint32_t bdc_encoder_gpiob, int *on_reach_callbackarg, pcnt_unit_handle_t *pcnt_unit_ret) +{ + ESP_LOGI(TAG, "Init pcnt driver to decode rotary signal"); + + /* 实例化pcnt */ + pcnt_unit_config_t unit_config = { + .high_limit = BDC_ENCODER_PCNT_HIGH_LIMIT, + .low_limit = BDC_ENCODER_PCNT_LOW_LIMIT, + }; + pcnt_unit_handle_t pcnt_unit = NULL; + ESP_ERROR_CHECK(pcnt_new_unit(&unit_config, &pcnt_unit)); + + /* 设置过滤器宽度ns */ + pcnt_glitch_filter_config_t filter_config = { + .max_glitch_ns = 1000, + }; + ESP_ERROR_CHECK(pcnt_unit_set_glitch_filter(pcnt_unit, &filter_config)); + + /* 设置通道a */ + pcnt_chan_config_t chan_a_config = { + .edge_gpio_num = bdc_encoder_gpioa, + .level_gpio_num = bdc_encoder_gpiob, + }; + pcnt_channel_handle_t pcnt_chan_a = NULL; + ESP_ERROR_CHECK(pcnt_new_channel(pcnt_unit, &chan_a_config, &pcnt_chan_a)); + + /* 设置通道b */ + pcnt_chan_config_t chan_b_config = { + .edge_gpio_num = bdc_encoder_gpiob, + .level_gpio_num = bdc_encoder_gpioa, + }; + pcnt_channel_handle_t pcnt_chan_b = NULL; + ESP_ERROR_CHECK(pcnt_new_channel(pcnt_unit, &chan_b_config, &pcnt_chan_b)); + + /* 配置两通道模式,实现两个通道的边沿都能计数 */ + ESP_ERROR_CHECK(pcnt_channel_set_edge_action(pcnt_chan_a, PCNT_CHANNEL_EDGE_ACTION_DECREASE, PCNT_CHANNEL_EDGE_ACTION_INCREASE)); + ESP_ERROR_CHECK(pcnt_channel_set_level_action(pcnt_chan_a, PCNT_CHANNEL_LEVEL_ACTION_KEEP, PCNT_CHANNEL_LEVEL_ACTION_INVERSE)); + ESP_ERROR_CHECK(pcnt_channel_set_edge_action(pcnt_chan_b, PCNT_CHANNEL_EDGE_ACTION_INCREASE, PCNT_CHANNEL_EDGE_ACTION_DECREASE)); + ESP_ERROR_CHECK(pcnt_channel_set_level_action(pcnt_chan_b, PCNT_CHANNEL_LEVEL_ACTION_KEEP, PCNT_CHANNEL_LEVEL_ACTION_INVERSE)); + + /* 配置该pcnt的上下观察点,以及移除回调函数 */ + ESP_ERROR_CHECK(pcnt_unit_add_watch_point(pcnt_unit, BDC_ENCODER_PCNT_HIGH_LIMIT)); + ESP_ERROR_CHECK(pcnt_unit_add_watch_point(pcnt_unit, BDC_ENCODER_PCNT_LOW_LIMIT)); + pcnt_event_callbacks_t pcnt_cbs = { + .on_reach = example_pcnt_on_reach, // accumulate the overflow in the callback + }; + ESP_ERROR_CHECK(pcnt_unit_register_event_callbacks(pcnt_unit, &pcnt_cbs, on_reach_callbackarg)); + + ESP_ERROR_CHECK(pcnt_unit_enable(pcnt_unit)); + ESP_ERROR_CHECK(pcnt_unit_clear_count(pcnt_unit)); + ESP_ERROR_CHECK(pcnt_unit_start(pcnt_unit)); + + *pcnt_unit_ret = pcnt_unit; +} + + +/* 注:只将不同的电机的不同参数作为接口留出,里面也有需要配置的共同参数 */ +void bdc_pid_init(float p, float i, float d, pid_ctrl_block_handle_t *pid_ctrl_ret) +{ + ESP_LOGI(TAG, "Create PID control block"); + + pid_ctrl_parameter_t pid_runtime_param = { + .kp = p, + .ki = i, + .kd = d, + .cal_type = PID_CAL_TYPE_INCREMENTAL, // 增量式pid + .max_output = BDC_MCPWM_DUTY_TICK_MAX - 1, //最大输出(占空比-1)、最小输出0 + .min_output = 0, + .max_integral = 1000, //最大积分限制1000、最小积分限制-1000 + .min_integral = -1000, + }; + pid_ctrl_block_handle_t pid_ctrl = NULL; + pid_ctrl_config_t pid_config = { + .init_param = pid_runtime_param, + }; + ESP_ERROR_CHECK(pid_new_control_block(&pid_config, &pid_ctrl)); + + *pid_ctrl_ret = pid_ctrl; +} + + + +void bdc_ctrl_timer_init(motor_control_context_t *motor_ctrl_ctx, esp_timer_handle_t *pid_loop_timer_ret) +{ + ESP_LOGI(TAG, "Create a timer to do PID calculation periodically"); + + const esp_timer_create_args_t periodic_timer_args = { + .callback = pid_loop_cb, + .arg = motor_ctrl_ctx, + .name = "pid_loop" + }; + esp_timer_handle_t pid_loop_timer = NULL; + ESP_ERROR_CHECK(esp_timer_create(&periodic_timer_args, &pid_loop_timer)); + + *pid_loop_timer_ret = pid_loop_timer; +} + + + +void bdc_motor_init_all(void) +{ + /* 左轮 */ + static motor_control_context_t motor_ctrl_ctxl = { + .id = 0, /* 左轮 */ + .accumu_count = 0, + .pcnt_encoder = NULL, + .motor = NULL + }; + bdc_motor_init(BDC_MCPWM_GPIO_A, BDC_MCPWM_GPIO_B, 0, &(motor_ctrl_ctxl.motor)); + bdc_encoder_init(BDC_ENCODER_GPIO_A, BDC_ENCODER_GPIO_B, &(motor_ctrl_ctxl.accumu_count), &(motor_ctrl_ctxl.pcnt_encoder)); + bdc_pid_init(0.6, 0.4, 0.2, &(motor_ctrl_ctxl.pid_ctrl)); + bdc_ctrl_timer_init(&motor_ctrl_ctxl, &(motor_ctrl_ctxl.pid_loop_timer)); + + + /* 右轮 */ + static motor_control_context_t motor_ctrl_ctxr = { + .id = 0, /* 左轮 */ + .accumu_count = 0, + .pcnt_encoder = NULL, + .motor = NULL + }; + bdc_motor_init(BDC_MCPWM_GPIO_A, BDC_MCPWM_GPIO_B, 0, &(motor_ctrl_ctxr.motor)); + bdc_encoder_init(BDC_ENCODER_GPIO_A1, BDC_ENCODER_GPIO_B1, &(motor_ctrl_ctxr.accumu_count), &(motor_ctrl_ctxr.pcnt_encoder)); + bdc_pid_init(0.6, 0.4, 0.2, &(motor_ctrl_ctxr.pid_ctrl)); + bdc_ctrl_timer_init(&motor_ctrl_ctxr, &(motor_ctrl_ctxr.pid_loop_timer)); + + + ESP_LOGI(TAG, "Enable motor and forward"); + ESP_ERROR_CHECK(bdc_motor_enable(motor_ctrl_ctxl.motor)); //启动电机 + ESP_ERROR_CHECK(bdc_motor_forward(motor_ctrl_ctxl.motor)); //电机正转 + ESP_ERROR_CHECK(bdc_motor_enable(motor_ctrl_ctxr.motor)); + ESP_ERROR_CHECK(bdc_motor_forward(motor_ctrl_ctxr.motor)); + + ESP_LOGI(TAG, "Start motor speed loop"); //启动电机速度回路 + ESP_ERROR_CHECK(esp_timer_start_periodic(motor_ctrl_ctxl.pid_loop_timer, BDC_PID_LOOP_PERIOD_MS * 1000)); //启动电机速度回路 + ESP_ERROR_CHECK(esp_timer_start_periodic(motor_ctrl_ctxr.pid_loop_timer, BDC_PID_LOOP_PERIOD_MS * 1000)); +} + + + + +void bdc_control_main(void) +{ + static motor_control_context_t motor_ctrl_ctx = { + .accumu_count = 0, + .pcnt_encoder = NULL, + }; + + //配置用到的PWM + //创建一个直流电机,配置他的频率和IO口 + ESP_LOGI(TAG, "Create DC motor"); + bdc_motor_config_t motor_config = { + .pwm_freq_hz = BDC_MCPWM_FREQ_HZ, + .pwma_gpio_num = BDC_MCPWM_GPIO_A, + .pwmb_gpio_num = BDC_MCPWM_GPIO_B, + }; + //配置MCpwm的标识符和lcd_clk的分辨率 + bdc_motor_mcpwm_config_t mcpwm_config = { + .group_id = 0, + .resolution_hz = BDC_MCPWM_TIMER_RESOLUTION_HZ, // 0.1us精密度 + }; + bdc_motor_handle_t motor = NULL; + ESP_ERROR_CHECK(bdc_motor_new_mcpwm_device(&motor_config, &mcpwm_config, &motor)); //根据当前误差检查 + motor_ctrl_ctx.motor = motor; + + ESP_LOGI(TAG, "Init pcnt driver to decode rotary signal"); + //配置(初始化)脉冲计数器,最高误差为1000,最低误差为-1000 + pcnt_unit_config_t unit_config = { + .high_limit = BDC_ENCODER_PCNT_HIGH_LIMIT, + .low_limit = BDC_ENCODER_PCNT_LOW_LIMIT, + }; + pcnt_unit_handle_t pcnt_unit = NULL; + ESP_ERROR_CHECK(pcnt_new_unit(&unit_config, &pcnt_unit)); + pcnt_glitch_filter_config_t filter_config = { + .max_glitch_ns = 1000, + }; + ESP_ERROR_CHECK(pcnt_unit_set_glitch_filter(pcnt_unit, &filter_config)); + + //配置接编码器的IO口 + pcnt_chan_config_t chan_a_config = { + .edge_gpio_num = BDC_ENCODER_GPIO_A, + .level_gpio_num = BDC_ENCODER_GPIO_B, + }; + pcnt_channel_handle_t pcnt_chan_a = NULL; + ESP_ERROR_CHECK(pcnt_new_channel(pcnt_unit, &chan_a_config, &pcnt_chan_a)); + + pcnt_chan_config_t chan_b_config = { + .edge_gpio_num = BDC_ENCODER_GPIO_B, + .level_gpio_num = BDC_ENCODER_GPIO_A, + }; + pcnt_channel_handle_t pcnt_chan_b = NULL; + ESP_ERROR_CHECK(pcnt_new_channel(pcnt_unit, &chan_b_config, &pcnt_chan_b)); + //检查脉冲计数器通道的计数模式和计数方式 + //电机相对安装,其中一个要取反 + ESP_ERROR_CHECK(pcnt_channel_set_edge_action(pcnt_chan_a, PCNT_CHANNEL_EDGE_ACTION_DECREASE, PCNT_CHANNEL_EDGE_ACTION_INCREASE)); + ESP_ERROR_CHECK(pcnt_channel_set_level_action(pcnt_chan_a, PCNT_CHANNEL_LEVEL_ACTION_KEEP, PCNT_CHANNEL_LEVEL_ACTION_INVERSE)); + ESP_ERROR_CHECK(pcnt_channel_set_edge_action(pcnt_chan_b, PCNT_CHANNEL_EDGE_ACTION_INCREASE, PCNT_CHANNEL_EDGE_ACTION_DECREASE)); + ESP_ERROR_CHECK(pcnt_channel_set_level_action(pcnt_chan_b, PCNT_CHANNEL_LEVEL_ACTION_KEEP, PCNT_CHANNEL_LEVEL_ACTION_INVERSE)); + ESP_ERROR_CHECK(pcnt_unit_add_watch_point(pcnt_unit, BDC_ENCODER_PCNT_HIGH_LIMIT)); + ESP_ERROR_CHECK(pcnt_unit_add_watch_point(pcnt_unit, BDC_ENCODER_PCNT_LOW_LIMIT)); + pcnt_event_callbacks_t pcnt_cbs = { + .on_reach = example_pcnt_on_reach, // accumulate the overflow in the callback + }; + ESP_ERROR_CHECK(pcnt_unit_register_event_callbacks(pcnt_unit, &pcnt_cbs, &motor_ctrl_ctx.accumu_count)); + ESP_ERROR_CHECK(pcnt_unit_enable(pcnt_unit)); + ESP_ERROR_CHECK(pcnt_unit_clear_count(pcnt_unit)); + ESP_ERROR_CHECK(pcnt_unit_start(pcnt_unit)); + motor_ctrl_ctx.pcnt_encoder = pcnt_unit; + + ESP_LOGI(TAG, "Create PID control block"); + //配置PID运行参数 + pid_ctrl_parameter_t pid_runtime_param = { + .kp = 0.6, // 0.6比例 系统响应速度 + .ki = 0.4, // 0.4积分 消除系统的稳态误差 + .kd = 0.2, // 0.2微分 抑制偏差向任何方向变化 + .cal_type = PID_CAL_TYPE_INCREMENTAL, // pid增量控制 + .max_output = BDC_MCPWM_DUTY_TICK_MAX - 1, //最大输出(占空比-1)、最小输出0 + .min_output = 0, + .max_integral = 1000, //最大积分限制1000、最小积分限制-1000 + .min_integral = -1000, + }; + pid_ctrl_block_handle_t pid_ctrl = NULL; + pid_ctrl_config_t pid_config = { + .init_param = pid_runtime_param, + }; + ESP_ERROR_CHECK(pid_new_control_block(&pid_config, &pid_ctrl)); + + motor_ctrl_ctx.pid_ctrl = pid_ctrl; + + ESP_LOGI(TAG, "Create a timer to do PID calculation periodically"); + + const esp_timer_create_args_t periodic_timer_args = { + .callback = pid_loop_cb, + .arg = &motor_ctrl_ctx, //回调PID的参数 + .name = "pid_loop" //定时器名pid_loop + }; + esp_timer_handle_t pid_loop_timer = NULL; + ESP_ERROR_CHECK(esp_timer_create(&periodic_timer_args, &pid_loop_timer)); + + ESP_LOGI(TAG, "Enable motor"); + ESP_ERROR_CHECK(bdc_motor_enable(motor)); //启动电机 + ESP_LOGI(TAG, "Forward motor"); + ESP_ERROR_CHECK(bdc_motor_forward(motor)); //电机正转 + + ESP_LOGI(TAG, "Start motor speed loop"); //启动电机速度回路 + ESP_ERROR_CHECK(esp_timer_start_periodic(pid_loop_timer, BDC_PID_LOOP_PERIOD_MS * 1000)); //启动电机速度回路 + + while (1) + { + vTaskDelay(pdMS_TO_TICKS(100)); + // the following logging format is according to the requirement of serial-studio frame format + // also see the dashboard config file `serial-studio-dashboard.json` for more information + +#if SERIAL_STUDIO_DEBUG + printf("/*%d*/\r\n", motor_ctrl_ctx.report_pulses); +#endif + } +} diff --git a/main/modbus-tcp.c b/main/modbus-tcp.c new file mode 100644 index 0000000..cc52a05 --- /dev/null +++ b/main/modbus-tcp.c @@ -0,0 +1,145 @@ + +/* Includes ------------------------------------------------------------------*/ +#include +#include + +#include "ModbusS.h" +#include "lwip/ip_addr.h" +#include "lwip/tcp.h" +#include "lwip/err.h" +#include "lwip/opt.h" +#include "lwip/sockets.h" +#include "esp_log.h" +// #include "log.h" + +static const char *TAG = "modbus tcp"; +#define LOG_TAG "[mb_tcp_sr]: " +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +// static err_t ModBusSlave_recv(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err); +// static err_t ModBusSlave_accept(void *arg, struct tcp_pcb *pcb, err_t err); +// static void ModBusSlave_conn_err(void *arg, err_t err); +// static err_t ModBusSlave_poll(void *arg, struct tcp_pcb *pcb); +/* Private functions ---------------------------------------------------------*/ +/** + * @brief Called when a data is received on the telnet connection + * @param arg the user argument + * @param pcb the tcp_pcb that has received the data + * @param p the packet buffer + * @param err the error value linked with the received data + * @retval error value + */ +int ModBusTcpMonitor; +static err_t ModBusSlave_recv(void *arg, struct tcp_pcb *newpcb, struct pbuf *p, err_t err) { + /* We perform here any necessary processing on the pbuf */ + ESP_LOGI(TAG, "ModBusSlave_recv()"); + if (p != NULL) { + uint8_t *txbuf; + uint8_t *rxbuf; + int txlen, rxlen; + /* We call this function to tell the LwIp that we have processed the data */ + /* This lets the stack advertise a larger window, so more data can be received*/ + tcp_recved(newpcb, p->tot_len); + rxbuf = (uint8_t *)p->payload; + rxlen = p->len; + if (rxlen < 6) { + ESP_LOGI(TAG, "err:recv less 6"); + pbuf_free(p); + return tcp_close(newpcb); + } + txbuf = (uint8_t *)mem_malloc(1024 + 16); + if (txbuf == NULL) { + ESP_LOGI(TAG, "err:tx malloc fault"); + return tcp_close(newpcb); + } + ModBusTcpMonitor = 0; + txlen = ModbusSlaveProcess(&txbuf[6], &rxbuf[6], (rxlen - 6), 0); + // log_printf(LINFO, LOG_TAG "[%s] ModbusSlaveProcess (ret=%d)", __FUNCTION__, txlen); + if (txlen > 0) { + int i; + for (i = 0; i < 4; i++) { + txbuf[i] = rxbuf[i]; + } + txbuf[4] = (uint8_t)(txlen >> 8); + txbuf[5] = (uint8_t)(txlen & 0xff); + tcp_write(newpcb, txbuf, txlen + 6, 1); + ModBusTcpMonitor = 0; + } + mem_free(txbuf); + /* End of processing, we free the pbuf */ + pbuf_free(p); + } else if (err == ERR_OK) { + /* When the pbuf is NULL and the err is ERR_OK, the remote end is closing the connection. */ + /* We free the allocated memory and we close the connection */ + // log_printf(LWARN, LOG_TAG "remote end is closing the connection\n"); + tcp_err(newpcb, NULL); + tcp_recv(newpcb, NULL); + tcp_poll(newpcb, NULL, 120); // 60 second timeout + // return tcp_close(newpcb); + err_t err_p = tcp_close(newpcb); + if (ERR_OK != err_p) { + // log_printf(LERROR, LOG_TAG "close error. err:%d\n", err_p); + } + return err_p; + } + return ERR_OK; +} +/** + * @brief This function is called when an error occurs on the connection + * @param arg + * @parm err + * @retval None + */ +static void ModBusSlave_conn_err(void *arg, err_t err) { + // log_printf(LERROR, LOG_TAG "connection error, err:%d\n", err); +} +static err_t ModBusSlave_poll(void *arg, struct tcp_pcb *newpcb) { + ESP_LOGI(TAG, "ModBusSlave_poll(), 60s, maybe tcp_close?"); + if (newpcb) { + // log_printf(LERROR, LOG_TAG "close pcb\n"); + tcp_close(newpcb); + newpcb = NULL; + } + return ERR_OK; +} +/** + * @brief This function when the Telnet connection is established + * @param arg user supplied argument + * @param pcb the tcp_pcb which accepted the connection + * @param err error value + * @retval ERR_OK + */ +static err_t ModBusSlave_accept(void *arg, struct tcp_pcb *pcb, err_t err) { + /* Tell LwIP to associate this structure with this connection. */ + // tcp_arg(pcb, mem_calloc(sizeof(struct name), 1)); + /* Configure LwIP to use our call back functions. */ + ESP_LOGI(TAG, "accept assess"); + tcp_err(pcb, ModBusSlave_conn_err); + tcp_recv(pcb, ModBusSlave_recv); + tcp_poll(pcb, ModBusSlave_poll, 120); // 60 second timeout + /* Send out the first message */ + // tcp_write(pcb, GREETING, strlen(GREETING), 1); + return ERR_OK; +} +/** + * @brief Initialize the hello application + * @param None + * @retval None + */ +void ModBusTCPSlave_init(void) { + struct tcp_pcb *pcb; + /* Create a new TCP control block */ + ESP_LOGI(TAG, "ModBusTCPSlave_init()"); + pcb = tcp_new(); + /* Assign to the new pcb a local IP address and a port number */ + /* Using IP_ADDR_ANY allow the pcb to be used by any local interface */ + tcp_bind(pcb, IP_ADDR_ANY, 502); + /* Set the connection to the LISTEN state */ + pcb = tcp_listen(pcb); + /* Specify the function to be called when a connection is established */ + tcp_accept(pcb, ModBusSlave_accept); +} +/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/ diff --git a/main/modbus-tcp.h b/main/modbus-tcp.h new file mode 100644 index 0000000..d8b4e2e --- /dev/null +++ b/main/modbus-tcp.h @@ -0,0 +1,27 @@ +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __HELLOWERLOD_H +#define __HELLOWERLOD_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ + +/** @defgroup helloworld_Exported_Functions + * @{ + */ + +void HelloWorld_init(void); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __HELLOWERLOD_H */ + +/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/ diff --git a/main/pid_ctrl.c b/main/pid_ctrl.c new file mode 100644 index 0000000..4b51177 --- /dev/null +++ b/main/pid_ctrl.c @@ -0,0 +1,140 @@ +/* + * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "esp_check.h" +#include "esp_log.h" +#include "pid_ctrl.h" + +static const char *TAG = "pid_ctrl"; + +typedef struct pid_ctrl_block_t pid_ctrl_block_t; +typedef float (*pid_cal_func_t)(pid_ctrl_block_t *pid, float error); + +struct pid_ctrl_block_t { + float Kp; // PID Kp value + float Ki; // PID Ki value + float Kd; // PID Kd value + float previous_err1; // e(k-1) + float previous_err2; // e(k-2) + float integral_err; // Sum of error + float last_output; // PID output in last control period + float max_output; // PID maximum output limitation + float min_output; // PID minimum output limitation + float max_integral; // PID maximum integral value limitation + float min_integral; // PID minimum integral value limitation + pid_cal_func_t calculate_func; // calculation function, depends on actual PID type set by user +}; + +static float pid_calc_positional(pid_ctrl_block_t *pid, float error) +{ + float output = 0; + /* Add current error to the integral error */ + pid->integral_err += error; + /* If the integral error is out of the range, it will be limited */ + pid->integral_err = MIN(pid->integral_err, pid->max_integral); + pid->integral_err = MAX(pid->integral_err, pid->min_integral); + + /* Calculate the pid control value by location formula */ + /* u(k) = e(k)*Kp + (e(k)-e(k-1))*Kd + integral*Ki */ + output = error * pid->Kp + + (error - pid->previous_err1) * pid->Kd + + pid->integral_err * pid->Ki; + + /* If the output is out of the range, it will be limited */ + output = MIN(output, pid->max_output); + output = MAX(output, pid->min_output); + + /* Update previous error */ + pid->previous_err1 = error; + + return output; +} + +static float pid_calc_incremental(pid_ctrl_block_t *pid, float error) +{ + float output = 0; + + /* Calculate the pid control value by increment formula */ + /* du(k) = (e(k)-e(k-1))*Kp + (e(k)-2*e(k-1)+e(k-2))*Kd + e(k)*Ki */ + /* u(k) = du(k) + u(k-1) */ + output = (error - pid->previous_err1) * pid->Kp + + (error - 2 * pid->previous_err1 + pid->previous_err2) * pid->Kd + + error * pid->Ki + + pid->last_output; + + /* If the output is beyond the range, it will be limited */ + output = MIN(output, pid->max_output); + output = MAX(output, pid->min_output); + + /* Update previous error */ + pid->previous_err2 = pid->previous_err1; + pid->previous_err1 = error; + + /* Update last output */ + pid->last_output = output; + + return output; +} + +esp_err_t pid_new_control_block(const pid_ctrl_config_t *config, pid_ctrl_block_handle_t *ret_pid) +{ + esp_err_t ret = ESP_OK; + pid_ctrl_block_t *pid = NULL; + /* Check the input pointer */ + ESP_GOTO_ON_FALSE(config && ret_pid, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument"); + + pid = calloc(1, sizeof(pid_ctrl_block_t)); + ESP_GOTO_ON_FALSE(pid, ESP_ERR_NO_MEM, err, TAG, "no mem for PID control block"); + ESP_GOTO_ON_ERROR(pid_update_parameters(pid, &config->init_param), err, TAG, "init PID parameters failed"); + *ret_pid = pid; + return ret; + +err: + if (pid) { + free(pid); + } + return ret; +} + +esp_err_t pid_del_control_block(pid_ctrl_block_handle_t pid) +{ + ESP_RETURN_ON_FALSE(pid, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + free(pid); + return ESP_OK; +} + +esp_err_t pid_compute(pid_ctrl_block_handle_t pid, float input_error, float *ret_result) +{ + ESP_RETURN_ON_FALSE(pid && ret_result, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + *ret_result = pid->calculate_func(pid, input_error); + return ESP_OK; +} + +esp_err_t pid_update_parameters(pid_ctrl_block_handle_t pid, const pid_ctrl_parameter_t *params) +{ + ESP_RETURN_ON_FALSE(pid && params, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + pid->Kp = params->kp; + pid->Ki = params->ki; + pid->Kd = params->kd; + pid->max_output = params->max_output; + pid->min_output = params->min_output; + pid->max_integral = params->max_integral; + pid->min_integral = params->min_integral; + /* Set the calculate function according to the PID type */ + switch (params->cal_type) { + case PID_CAL_TYPE_INCREMENTAL: + pid->calculate_func = pid_calc_incremental; + break; + case PID_CAL_TYPE_POSITIONAL: + pid->calculate_func = pid_calc_positional; + break; + default: + ESP_RETURN_ON_FALSE(false, ESP_ERR_INVALID_ARG, TAG, "invalid PID calculation type:%d", params->cal_type); + } + return ESP_OK; +} diff --git a/main/pid_ctrl.h b/main/pid_ctrl.h new file mode 100644 index 0000000..5aa26df --- /dev/null +++ b/main/pid_ctrl.h @@ -0,0 +1,100 @@ +/* + * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief PID calculation type + * + */ +typedef enum { + PID_CAL_TYPE_INCREMENTAL, /*!< Incremental PID control */ + PID_CAL_TYPE_POSITIONAL, /*!< Positional PID control */ +} pid_calculate_type_t; + +/** + * @brief Type of PID control block handle + * + */ +typedef struct pid_ctrl_block_t *pid_ctrl_block_handle_t; + +/** + * @brief PID control parameters + * + */ +typedef struct { + float kp; // PID Kp parameter + float ki; // PID Ki parameter + float kd; // PID Kd parameter + float max_output; // PID maximum output limitation + float min_output; // PID minimum output limitation + float max_integral; // PID maximum integral value limitation + float min_integral; // PID minimum integral value limitation + pid_calculate_type_t cal_type; // PID calculation type +} pid_ctrl_parameter_t; + +/** + * @brief PID control configuration + * + */ +typedef struct { + pid_ctrl_parameter_t init_param; // Initial parameters +} pid_ctrl_config_t; + +/** + * @brief Create a new PID control session, returns the handle of control block + * + * @param[in] config PID control configuration + * @param[out] ret_pid Returned PID control block handle + * @return + * - ESP_OK: Created PID control block successfully + * - ESP_ERR_INVALID_ARG: Created PID control block failed because of invalid argument + * - ESP_ERR_NO_MEM: Created PID control block failed because out of memory + */ +esp_err_t pid_new_control_block(const pid_ctrl_config_t *config, pid_ctrl_block_handle_t *ret_pid); + +/** + * @brief Delete the PID control block + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @return + * - ESP_OK: Delete PID control block successfully + * - ESP_ERR_INVALID_ARG: Delete PID control block failed because of invalid argument + */ +esp_err_t pid_del_control_block(pid_ctrl_block_handle_t pid); + +/** + * @brief Update PID parameters + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @param[in] params PID parameters + * @return + * - ESP_OK: Update PID parameters successfully + * - ESP_ERR_INVALID_ARG: Update PID parameters failed because of invalid argument + */ +esp_err_t pid_update_parameters(pid_ctrl_block_handle_t pid, const pid_ctrl_parameter_t *params); + +/** + * @brief Input error and get PID control result + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @param[in] input_error error data that feed to the PID controller + * @param[out] ret_result result after PID calculation + * @return + * - ESP_OK: Run a PID compute successfully + * - ESP_ERR_INVALID_ARG: Run a PID compute failed because of invalid argument + */ +esp_err_t pid_compute(pid_ctrl_block_handle_t pid, float input_error, float *ret_result); + +#ifdef __cplusplus +} +#endif diff --git a/main/station_example_main.c b/main/station_example_main.c new file mode 100644 index 0000000..24fa3ab --- /dev/null +++ b/main/station_example_main.c @@ -0,0 +1,184 @@ +/* WiFi station Example + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/event_groups.h" +#include "esp_system.h" +#include "esp_wifi.h" +#include "esp_event.h" +#include "esp_log.h" +#include "nvs_flash.h" +#include "driver/ledc.h" +#include "lwip/err.h" +#include "lwip/sys.h" + +#define LEDC_TIMER LEDC_TIMER_0 +#define LEDC_MODE LEDC_LOW_SPEED_MODE +#define LEDC_OUTPUT_IO (2) // Define the output GPIO +#define LEDC_CHANNEL LEDC_CHANNEL_0 +#define LEDC_DUTY_RES LEDC_TIMER_13_BIT // Set duty resolution to 13 bits +#define LEDC_DUTY (4095) // Set duty to 50%. ((2 ** 13) - 1) * 50% = 4095 +#define LEDC_FREQUENCY (8000) // Frequency in Hertz. Set frequency at 8 kHz +/* The examples use WiFi configuration that you can set via project configuration menu + + If you'd rather not, just change the below entries to strings with + the config you want - ie #define EXAMPLE_WIFI_SSID "mywifissid" +*/ +#define EXAMPLE_ESP_WIFI_SSID CONFIG_ESP_WIFI_SSID +#define EXAMPLE_ESP_WIFI_PASS CONFIG_ESP_WIFI_PASSWORD +#define EXAMPLE_ESP_MAXIMUM_RETRY CONFIG_ESP_MAXIMUM_RETRY + +/* FreeRTOS event group to signal when we are connected*/ +static EventGroupHandle_t s_wifi_event_group; + +/* The event group allows multiple bits for each event, but we only care about two events: + * - we are connected to the AP with an IP + * - we failed to connect after the maximum amount of retries */ +#define WIFI_CONNECTED_BIT BIT0 +#define WIFI_FAIL_BIT BIT1 + +static const char *TAG = "wifi station"; + +static int s_retry_num = 0; + +static void 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) + { + if (s_retry_num < EXAMPLE_ESP_MAXIMUM_RETRY) + { + esp_wifi_connect(); + s_retry_num++; + ESP_LOGI(TAG, "retry to connect to the AP"); + } + else + { + xEventGroupSetBits(s_wifi_event_group, WIFI_FAIL_BIT); + } + ESP_LOGI(TAG, "connect to the AP fail"); + } + else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) + { + ip_event_got_ip_t *event = (ip_event_got_ip_t *)event_data; + ESP_LOGI(TAG, "got ip:" IPSTR, IP2STR(&event->ip_info.ip)); + s_retry_num = 0; + xEventGroupSetBits(s_wifi_event_group, WIFI_CONNECTED_BIT); + } +} + +void wifi_init_sta(void) +{ + s_wifi_event_group = xEventGroupCreate(); + + ESP_ERROR_CHECK(esp_netif_init()); + + ESP_ERROR_CHECK(esp_event_loop_create_default()); + esp_netif_create_default_wifi_sta(); + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); + ESP_ERROR_CHECK(esp_wifi_init(&cfg)); + + esp_event_handler_instance_t instance_any_id; + esp_event_handler_instance_t instance_got_ip; + ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT, + ESP_EVENT_ANY_ID, + &event_handler, + NULL, + &instance_any_id)); + ESP_ERROR_CHECK(esp_event_handler_instance_register(IP_EVENT, + IP_EVENT_STA_GOT_IP, + &event_handler, + NULL, + &instance_got_ip)); + + wifi_config_t wifi_config = { + .sta = { + .ssid = EXAMPLE_ESP_WIFI_SSID, + .password = EXAMPLE_ESP_WIFI_PASS, + /* Setting a password implies station will connect to all security modes including WEP/WPA. + * However these modes are deprecated and not advisable to be used. Incase your Access point + * doesn't support WPA2, these mode can be enabled by commenting below line */ + .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, "wifi_init_sta finished."); + + /* Waiting until either the connection is established (WIFI_CONNECTED_BIT) or connection failed for the maximum + * number of re-tries (WIFI_FAIL_BIT). The bits are set by event_handler() (see above) */ + EventBits_t bits = xEventGroupWaitBits(s_wifi_event_group, + WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, + pdFALSE, + pdFALSE, + portMAX_DELAY); + + /* xEventGroupWaitBits() returns the bits before the call returned, hence we can test which event actually + * happened. */ + if (bits & WIFI_CONNECTED_BIT) + { + ESP_LOGI(TAG, "connected to ap SSID:%s password:%s", + EXAMPLE_ESP_WIFI_SSID, EXAMPLE_ESP_WIFI_PASS); + } + else if (bits & WIFI_FAIL_BIT) + { + ESP_LOGI(TAG, "Failed to connect to SSID:%s, password:%s", + EXAMPLE_ESP_WIFI_SSID, EXAMPLE_ESP_WIFI_PASS); + } + else + { + ESP_LOGE(TAG, "UNEXPECTED EVENT"); + } + + /* The event will not be processed after unregister */ + ESP_ERROR_CHECK(esp_event_handler_instance_unregister(IP_EVENT, IP_EVENT_STA_GOT_IP, instance_got_ip)); + ESP_ERROR_CHECK(esp_event_handler_instance_unregister(WIFI_EVENT, ESP_EVENT_ANY_ID, instance_any_id)); + vEventGroupDelete(s_wifi_event_group); +} + +extern void can_init(void); +extern void ModBusTCPSlave_init(void); +extern void lis3dsh_fifo_stream(void); +extern void bdc_control_main(void); +extern void bdc_motor_init_all(void); + +void app_main(void) +{ + // Initialize NVS + esp_err_t ret = nvs_flash_init(); + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) + { + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } + ESP_ERROR_CHECK(ret); + + ESP_LOGI(TAG, "ESP_WIFI_MODE_STA"); + wifi_init_sta(); + //can_init(); + ModBusTCPSlave_init(); + //bdc_control_main(); + bdc_motor_init_all(); + // lis3dsh_fifo_stream(); + + while (1) + { + vTaskDelay(pdMS_TO_TICKS(100)); + } +} + + diff --git a/managed_components/espressif__bdc_motor/.component_hash b/managed_components/espressif__bdc_motor/.component_hash new file mode 100644 index 0000000..5b9ef97 --- /dev/null +++ b/managed_components/espressif__bdc_motor/.component_hash @@ -0,0 +1 @@ +9292b605cfd390ff62225caa93e02700b86377e6a3156620192e4876dcf87b27 \ No newline at end of file diff --git a/managed_components/espressif__bdc_motor/CMakeLists.txt b/managed_components/espressif__bdc_motor/CMakeLists.txt new file mode 100644 index 0000000..e8f680b --- /dev/null +++ b/managed_components/espressif__bdc_motor/CMakeLists.txt @@ -0,0 +1,9 @@ +set(srcs "src/bdc_motor.c") + +if(CONFIG_SOC_MCPWM_SUPPORTED) + list(APPEND srcs "src/bdc_motor_mcpwm_impl.c") +endif() + +idf_component_register(SRCS ${srcs} + INCLUDE_DIRS "include" "interface" + PRIV_REQUIRES "driver") diff --git a/managed_components/espressif__bdc_motor/LICENSE b/managed_components/espressif__bdc_motor/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/managed_components/espressif__bdc_motor/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/managed_components/espressif__bdc_motor/README.md b/managed_components/espressif__bdc_motor/README.md new file mode 100644 index 0000000..5e3d6eb --- /dev/null +++ b/managed_components/espressif__bdc_motor/README.md @@ -0,0 +1,5 @@ +# Brushed DC Motor Control + +This directory contains an implementation for Brushed DC Motor by different peripherals. Currently only MCPWM is supported as the BDC motor backend. + +To learn more about how to use this component, please check API Documentation from header file [bdc_motor.h](./include/bdc_motor.h). diff --git a/managed_components/espressif__bdc_motor/idf_component.yml b/managed_components/espressif__bdc_motor/idf_component.yml new file mode 100644 index 0000000..2fba48a --- /dev/null +++ b/managed_components/espressif__bdc_motor/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + idf: '>=5.0' +description: Brushed DC Motor Control Driver +url: https://github.com/espressif/idf-extra-components/tree/master/bdc_motor +version: 0.1.0 diff --git a/managed_components/espressif__bdc_motor/include/bdc_motor.h b/managed_components/espressif__bdc_motor/include/bdc_motor.h new file mode 100644 index 0000000..1b102d9 --- /dev/null +++ b/managed_components/espressif__bdc_motor/include/bdc_motor.h @@ -0,0 +1,145 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#pragma once + +#include +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief Brushed DC Motor handle + */ +typedef struct bdc_motor_t *bdc_motor_handle_t; + +/** + * @brief Enable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Enable motor successfully + * - ESP_ERR_INVALID_ARG: Enable motor failed because of invalid parameters + * - ESP_FAIL: Enable motor failed because other error occurred + */ +esp_err_t bdc_motor_enable(bdc_motor_handle_t motor); + +/** + * @brief Disable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Disable motor successfully + * - ESP_ERR_INVALID_ARG: Disable motor failed because of invalid parameters + * - ESP_FAIL: Disable motor failed because other error occurred + */ +esp_err_t bdc_motor_disable(bdc_motor_handle_t motor); + +/** + * @brief Set speed for bdc motor + * + * @param motor: BDC Motor handle + * @param speed: BDC speed + * + * @return + * - ESP_OK: Set motor speed successfully + * - ESP_ERR_INVALID_ARG: Set motor speed failed because of invalid parameters + * - ESP_FAIL: Set motor speed failed because other error occurred + */ +esp_err_t bdc_motor_set_speed(bdc_motor_handle_t motor, uint32_t speed); + +/** + * @brief Forward BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Forward motor successfully + * - ESP_FAIL: Forward motor failed because some other error occurred + */ +esp_err_t bdc_motor_forward(bdc_motor_handle_t motor); + +/** + * @brief Reverse BDC Motor + * + * @param strip: BDC Motor handle + * + * @return + * - ESP_OK: Reverse motor successfully + * - ESP_FAIL: Reverse motor failed because some other error occurred + */ +esp_err_t bdc_motor_reverse(bdc_motor_handle_t motor); + +/** + * @brief Stop motor in a coast way (a.k.a Fast Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ +esp_err_t bdc_motor_coast(bdc_motor_handle_t motor); + +/** + * @brief Stop motor in a brake way (a.k.a Slow Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ +esp_err_t bdc_motor_brake(bdc_motor_handle_t motor); + +/** + * @brief Free BDC Motor resources + * + * @param strip: BDC Motor handle + * + * @return + * - ESP_OK: Free resources successfully + * - ESP_FAIL: Free resources failed because error occurred + */ +esp_err_t bdc_motor_del(bdc_motor_handle_t motor); + +/** + * @brief BDC Motor Configuration + */ +typedef struct { + uint32_t pwma_gpio_num; /*!< BDC Motor PWM A gpio number */ + uint32_t pwmb_gpio_num; /*!< BDC Motor PWM B gpio number */ + uint32_t pwm_freq_hz; /*!< PWM frequency, in Hz */ +} bdc_motor_config_t; + +/** + * @brief BDC Motor MCPWM specific configuration + */ +typedef struct { + int group_id; /*!< MCPWM group number */ + uint32_t resolution_hz; /*!< MCPWM timer resolution */ +} bdc_motor_mcpwm_config_t; + +/** + * @brief Create BDC Motor based on MCPWM peripheral + * + * @param motor_config: BDC Motor configuration + * @param mcpwm_config: MCPWM specific configuration + * @param ret_motor Returned BDC Motor handle + * @return + * - ESP_OK: Create BDC Motor handle successfully + * - ESP_ERR_INVALID_ARG: Create BDC Motor handle failed because of invalid argument + * - ESP_ERR_NO_MEM: Create BDC Motor handle failed because of out of memory + * - ESP_FAIL: Create BDC Motor handle failed because some other error + */ +esp_err_t bdc_motor_new_mcpwm_device(const bdc_motor_config_t *motor_config, const bdc_motor_mcpwm_config_t *mcpwm_config, bdc_motor_handle_t *ret_motor); + +#ifdef __cplusplus +} +#endif diff --git a/managed_components/espressif__bdc_motor/interface/bdc_motor_interface.h b/managed_components/espressif__bdc_motor/interface/bdc_motor_interface.h new file mode 100644 index 0000000..35e9697 --- /dev/null +++ b/managed_components/espressif__bdc_motor/interface/bdc_motor_interface.h @@ -0,0 +1,116 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#pragma once + +#include +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct bdc_motor_t bdc_motor_t; /*!< Type of BDC motor */ + +/** + * @brief BDC motor interface definition + */ +struct bdc_motor_t { + /** + * @brief Enable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Enable motor successfully + * - ESP_ERR_INVALID_ARG: Enable motor failed because of invalid parameters + * - ESP_FAIL: Enable motor failed because other error occurred + */ + esp_err_t (*enable)(bdc_motor_t *motor); + + /** + * @brief Disable BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Disable motor successfully + * - ESP_ERR_INVALID_ARG: Disable motor failed because of invalid parameters + * - ESP_FAIL: Disable motor failed because other error occurred + */ + esp_err_t (*disable)(bdc_motor_t *motor); + + /** + * @brief Set speed for bdc motor + * + * @param motor: BDC Motor handle + * @param speed: BDC speed + * + * @return + * - ESP_OK: Set motor speed successfully + * - ESP_ERR_INVALID_ARG: Set motor speed failed because of invalid parameters + * - ESP_FAIL: Set motor speed failed because other error occurred + */ + esp_err_t (*set_speed)(bdc_motor_t *motor, uint32_t speed); + + /** + * @brief Forward BDC motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Forward motor successfully + * - ESP_FAIL: Forward motor failed because some other error occurred + */ + esp_err_t (*forward)(bdc_motor_t *motor); + + /** + * @brief Reverse BDC Motor + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Reverse motor successfully + * - ESP_FAIL: Reverse motor failed because some other error occurred + */ + esp_err_t (*reverse)(bdc_motor_t *motor); + + /** + * @brief Stop motor in a coast way (a.k.a Fast Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ + esp_err_t (*coast)(bdc_motor_t *motor); + + /** + * @brief Stop motor in a brake way (a.k.a Slow Decay) + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Stop motor successfully + * - ESP_FAIL: Stop motor failed because some other error occurred + */ + esp_err_t (*brake)(bdc_motor_t *motor); + + /** + * @brief Free BDC Motor handle resources + * + * @param motor: BDC Motor handle + * + * @return + * - ESP_OK: Free resources successfully + * - ESP_FAIL: Free resources failed because error occurred + */ + esp_err_t (*del)(bdc_motor_t *motor); +}; + +#ifdef __cplusplus +} +#endif diff --git a/managed_components/espressif__bdc_motor/src/bdc_motor.c b/managed_components/espressif__bdc_motor/src/bdc_motor.c new file mode 100644 index 0000000..fbbc440 --- /dev/null +++ b/managed_components/espressif__bdc_motor/src/bdc_motor.c @@ -0,0 +1,62 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#include +#include +#include +#include "esp_log.h" +#include "esp_check.h" +#include "bdc_motor.h" +#include "bdc_motor_interface.h" + +static const char *TAG = "bdc_motor"; + +esp_err_t bdc_motor_enable(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->enable(motor); +} + +esp_err_t bdc_motor_disable(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->disable(motor); +} + +esp_err_t bdc_motor_set_speed(bdc_motor_handle_t motor, uint32_t speed) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->set_speed(motor, speed); +} + +esp_err_t bdc_motor_forward(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->forward(motor); +} + +esp_err_t bdc_motor_reverse(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->reverse(motor); +} + +esp_err_t bdc_motor_coast(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->coast(motor); +} + +esp_err_t bdc_motor_brake(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->brake(motor); +} + +esp_err_t bdc_motor_del(bdc_motor_handle_t motor) +{ + ESP_RETURN_ON_FALSE(motor, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + return motor->del(motor); +} diff --git a/managed_components/espressif__bdc_motor/src/bdc_motor_mcpwm_impl.c b/managed_components/espressif__bdc_motor/src/bdc_motor_mcpwm_impl.c new file mode 100644 index 0000000..2b502a6 --- /dev/null +++ b/managed_components/espressif__bdc_motor/src/bdc_motor_mcpwm_impl.c @@ -0,0 +1,185 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +#include +#include +#include +#include "esp_log.h" +#include "esp_check.h" +#include "driver/mcpwm_prelude.h" +#include "bdc_motor.h" +#include "bdc_motor_interface.h" + +static const char *TAG = "bdc_motor_mcpwm"; + +typedef struct { + bdc_motor_t base; + mcpwm_timer_handle_t timer; + mcpwm_oper_handle_t operator; + mcpwm_cmpr_handle_t cmpa; + mcpwm_cmpr_handle_t cmpb; + mcpwm_gen_handle_t gena; + mcpwm_gen_handle_t genb; +} bdc_motor_mcpwm_obj; + +static esp_err_t bdc_motor_mcpwm_set_speed(bdc_motor_t *motor, uint32_t speed) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_comparator_set_compare_value(mcpwm_motor->cmpa, speed), TAG, "set compare value failed"); + ESP_RETURN_ON_ERROR(mcpwm_comparator_set_compare_value(mcpwm_motor->cmpb, speed), TAG, "set compare value failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_enable(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_timer_enable(mcpwm_motor->timer), TAG, "enable timer failed"); + ESP_RETURN_ON_ERROR(mcpwm_timer_start_stop(mcpwm_motor->timer, MCPWM_TIMER_START_NO_STOP), TAG, "start timer failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_disable(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_timer_start_stop(mcpwm_motor->timer, MCPWM_TIMER_STOP_EMPTY), TAG, "stop timer failed"); + ESP_RETURN_ON_ERROR(mcpwm_timer_disable(mcpwm_motor->timer), TAG, "disable timer failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_forward(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, -1, true), TAG, "disable force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 0, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_reverse(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, -1, true), TAG, "disable force level for genb failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 0, true), TAG, "set force level for gena failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_coast(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 0, true), TAG, "set force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 0, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_brake(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->gena, 1, true), TAG, "set force level for gena failed"); + ESP_RETURN_ON_ERROR(mcpwm_generator_set_force_level(mcpwm_motor->genb, 1, true), TAG, "set force level for genb failed"); + return ESP_OK; +} + +static esp_err_t bdc_motor_mcpwm_del(bdc_motor_t *motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = __containerof(motor, bdc_motor_mcpwm_obj, base); + mcpwm_del_generator(mcpwm_motor->gena); + mcpwm_del_generator(mcpwm_motor->genb); + mcpwm_del_comparator(mcpwm_motor->cmpa); + mcpwm_del_comparator(mcpwm_motor->cmpb); + mcpwm_del_operator(mcpwm_motor->operator); + mcpwm_del_timer(mcpwm_motor->timer); + free(mcpwm_motor); + return ESP_OK; +} + +esp_err_t bdc_motor_new_mcpwm_device(const bdc_motor_config_t *motor_config, const bdc_motor_mcpwm_config_t *mcpwm_config, bdc_motor_handle_t *ret_motor) +{ + bdc_motor_mcpwm_obj *mcpwm_motor = NULL; + esp_err_t ret = ESP_OK; + ESP_GOTO_ON_FALSE(motor_config && mcpwm_config && ret_motor, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument"); + mcpwm_motor = calloc(1, sizeof(bdc_motor_mcpwm_obj)); + ESP_GOTO_ON_FALSE(mcpwm_motor, ESP_ERR_NO_MEM, err, TAG, "no mem for rmt motor"); + + // mcpwm timer + mcpwm_timer_config_t timer_config = { + .group_id = mcpwm_config->group_id, + .clk_src = MCPWM_TIMER_CLK_SRC_DEFAULT, + .resolution_hz = mcpwm_config->resolution_hz, + .period_ticks = mcpwm_config->resolution_hz / motor_config->pwm_freq_hz, + .count_mode = MCPWM_TIMER_COUNT_MODE_UP, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_timer(&timer_config, &mcpwm_motor->timer), err, TAG, "create MCPWM timer failed"); + + mcpwm_operator_config_t operator_config = { + .group_id = mcpwm_config->group_id, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_operator(&operator_config, &mcpwm_motor->operator), err, TAG, "create MCPWM operator failed"); + + ESP_GOTO_ON_ERROR(mcpwm_operator_connect_timer(mcpwm_motor->operator, mcpwm_motor->timer), err, TAG, "connect timer and operator failed"); + + mcpwm_comparator_config_t comparator_config = { + .flags.update_cmp_on_tez = true, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_comparator(mcpwm_motor->operator, &comparator_config, &mcpwm_motor->cmpa), err, TAG, "create comparator failed"); + ESP_GOTO_ON_ERROR(mcpwm_new_comparator(mcpwm_motor->operator, &comparator_config, &mcpwm_motor->cmpb), err, TAG, "create comparator failed"); + + // set the initial compare value for both comparators + mcpwm_comparator_set_compare_value(mcpwm_motor->cmpa, 0); + mcpwm_comparator_set_compare_value(mcpwm_motor->cmpb, 0); + + mcpwm_generator_config_t generator_config = { + .gen_gpio_num = motor_config->pwma_gpio_num, + }; + ESP_GOTO_ON_ERROR(mcpwm_new_generator(mcpwm_motor->operator, &generator_config, &mcpwm_motor->gena), err, TAG, "create generator failed"); + generator_config.gen_gpio_num = motor_config->pwmb_gpio_num; + ESP_GOTO_ON_ERROR(mcpwm_new_generator(mcpwm_motor->operator, &generator_config, &mcpwm_motor->genb), err, TAG, "create generator failed"); + + mcpwm_generator_set_actions_on_timer_event(mcpwm_motor->gena, + MCPWM_GEN_TIMER_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, MCPWM_TIMER_EVENT_EMPTY, MCPWM_GEN_ACTION_HIGH), + MCPWM_GEN_TIMER_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_compare_event(mcpwm_motor->gena, + MCPWM_GEN_COMPARE_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, mcpwm_motor->cmpa, MCPWM_GEN_ACTION_LOW), + MCPWM_GEN_COMPARE_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_timer_event(mcpwm_motor->genb, + MCPWM_GEN_TIMER_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, MCPWM_TIMER_EVENT_EMPTY, MCPWM_GEN_ACTION_HIGH), + MCPWM_GEN_TIMER_EVENT_ACTION_END()); + mcpwm_generator_set_actions_on_compare_event(mcpwm_motor->genb, + MCPWM_GEN_COMPARE_EVENT_ACTION(MCPWM_TIMER_DIRECTION_UP, mcpwm_motor->cmpb, MCPWM_GEN_ACTION_LOW), + MCPWM_GEN_COMPARE_EVENT_ACTION_END()); + + mcpwm_motor->base.enable = bdc_motor_mcpwm_enable; + mcpwm_motor->base.disable = bdc_motor_mcpwm_disable; + mcpwm_motor->base.forward = bdc_motor_mcpwm_forward; + mcpwm_motor->base.reverse = bdc_motor_mcpwm_reverse; + mcpwm_motor->base.coast = bdc_motor_mcpwm_coast; + mcpwm_motor->base.brake = bdc_motor_mcpwm_brake; + mcpwm_motor->base.set_speed = bdc_motor_mcpwm_set_speed; + mcpwm_motor->base.del = bdc_motor_mcpwm_del; + *ret_motor = &mcpwm_motor->base; + return ESP_OK; + +err: + if (mcpwm_motor) { + if (mcpwm_motor->gena) { + mcpwm_del_generator(mcpwm_motor->gena); + } + if (mcpwm_motor->genb) { + mcpwm_del_generator(mcpwm_motor->genb); + } + if (mcpwm_motor->cmpa) { + mcpwm_del_comparator(mcpwm_motor->cmpa); + } + if (mcpwm_motor->cmpb) { + mcpwm_del_comparator(mcpwm_motor->cmpb); + } + if (mcpwm_motor->operator) { + mcpwm_del_operator(mcpwm_motor->operator); + } + if (mcpwm_motor->timer) { + mcpwm_del_timer(mcpwm_motor->timer); + } + free(mcpwm_motor); + } + return ret; +} diff --git a/managed_components/espressif__pid_ctrl/.component_hash b/managed_components/espressif__pid_ctrl/.component_hash new file mode 100644 index 0000000..4f83fe0 --- /dev/null +++ b/managed_components/espressif__pid_ctrl/.component_hash @@ -0,0 +1 @@ +17bd99c0160f1c327803aceb088ef0e4ab3410ceb0708cb87fcc950bb62e5698 \ No newline at end of file diff --git a/managed_components/espressif__pid_ctrl/CMakeLists.txt b/managed_components/espressif__pid_ctrl/CMakeLists.txt new file mode 100644 index 0000000..544820d --- /dev/null +++ b/managed_components/espressif__pid_ctrl/CMakeLists.txt @@ -0,0 +1,4 @@ +set(srcs "src/pid_ctrl.c") + +idf_component_register(SRCS "${srcs}" + INCLUDE_DIRS "include") diff --git a/managed_components/espressif__pid_ctrl/LICENSE b/managed_components/espressif__pid_ctrl/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/managed_components/espressif__pid_ctrl/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/managed_components/espressif__pid_ctrl/idf_component.yml b/managed_components/espressif__pid_ctrl/idf_component.yml new file mode 100644 index 0000000..d4fd918 --- /dev/null +++ b/managed_components/espressif__pid_ctrl/idf_component.yml @@ -0,0 +1,6 @@ +dependencies: + idf: + version: '>=4.4' +description: Proportional-integral-derivative controller +url: https://github.com/espressif/idf-extra-components/tree/master/pid_ctrl +version: 0.1.1 diff --git a/managed_components/espressif__pid_ctrl/include/pid_ctrl.h b/managed_components/espressif__pid_ctrl/include/pid_ctrl.h new file mode 100644 index 0000000..5aa26df --- /dev/null +++ b/managed_components/espressif__pid_ctrl/include/pid_ctrl.h @@ -0,0 +1,100 @@ +/* + * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "esp_err.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief PID calculation type + * + */ +typedef enum { + PID_CAL_TYPE_INCREMENTAL, /*!< Incremental PID control */ + PID_CAL_TYPE_POSITIONAL, /*!< Positional PID control */ +} pid_calculate_type_t; + +/** + * @brief Type of PID control block handle + * + */ +typedef struct pid_ctrl_block_t *pid_ctrl_block_handle_t; + +/** + * @brief PID control parameters + * + */ +typedef struct { + float kp; // PID Kp parameter + float ki; // PID Ki parameter + float kd; // PID Kd parameter + float max_output; // PID maximum output limitation + float min_output; // PID minimum output limitation + float max_integral; // PID maximum integral value limitation + float min_integral; // PID minimum integral value limitation + pid_calculate_type_t cal_type; // PID calculation type +} pid_ctrl_parameter_t; + +/** + * @brief PID control configuration + * + */ +typedef struct { + pid_ctrl_parameter_t init_param; // Initial parameters +} pid_ctrl_config_t; + +/** + * @brief Create a new PID control session, returns the handle of control block + * + * @param[in] config PID control configuration + * @param[out] ret_pid Returned PID control block handle + * @return + * - ESP_OK: Created PID control block successfully + * - ESP_ERR_INVALID_ARG: Created PID control block failed because of invalid argument + * - ESP_ERR_NO_MEM: Created PID control block failed because out of memory + */ +esp_err_t pid_new_control_block(const pid_ctrl_config_t *config, pid_ctrl_block_handle_t *ret_pid); + +/** + * @brief Delete the PID control block + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @return + * - ESP_OK: Delete PID control block successfully + * - ESP_ERR_INVALID_ARG: Delete PID control block failed because of invalid argument + */ +esp_err_t pid_del_control_block(pid_ctrl_block_handle_t pid); + +/** + * @brief Update PID parameters + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @param[in] params PID parameters + * @return + * - ESP_OK: Update PID parameters successfully + * - ESP_ERR_INVALID_ARG: Update PID parameters failed because of invalid argument + */ +esp_err_t pid_update_parameters(pid_ctrl_block_handle_t pid, const pid_ctrl_parameter_t *params); + +/** + * @brief Input error and get PID control result + * + * @param[in] pid PID control block handle, created by `pid_new_control_block()` + * @param[in] input_error error data that feed to the PID controller + * @param[out] ret_result result after PID calculation + * @return + * - ESP_OK: Run a PID compute successfully + * - ESP_ERR_INVALID_ARG: Run a PID compute failed because of invalid argument + */ +esp_err_t pid_compute(pid_ctrl_block_handle_t pid, float input_error, float *ret_result); + +#ifdef __cplusplus +} +#endif diff --git a/managed_components/espressif__pid_ctrl/src/pid_ctrl.c b/managed_components/espressif__pid_ctrl/src/pid_ctrl.c new file mode 100644 index 0000000..4b51177 --- /dev/null +++ b/managed_components/espressif__pid_ctrl/src/pid_ctrl.c @@ -0,0 +1,140 @@ +/* + * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "esp_check.h" +#include "esp_log.h" +#include "pid_ctrl.h" + +static const char *TAG = "pid_ctrl"; + +typedef struct pid_ctrl_block_t pid_ctrl_block_t; +typedef float (*pid_cal_func_t)(pid_ctrl_block_t *pid, float error); + +struct pid_ctrl_block_t { + float Kp; // PID Kp value + float Ki; // PID Ki value + float Kd; // PID Kd value + float previous_err1; // e(k-1) + float previous_err2; // e(k-2) + float integral_err; // Sum of error + float last_output; // PID output in last control period + float max_output; // PID maximum output limitation + float min_output; // PID minimum output limitation + float max_integral; // PID maximum integral value limitation + float min_integral; // PID minimum integral value limitation + pid_cal_func_t calculate_func; // calculation function, depends on actual PID type set by user +}; + +static float pid_calc_positional(pid_ctrl_block_t *pid, float error) +{ + float output = 0; + /* Add current error to the integral error */ + pid->integral_err += error; + /* If the integral error is out of the range, it will be limited */ + pid->integral_err = MIN(pid->integral_err, pid->max_integral); + pid->integral_err = MAX(pid->integral_err, pid->min_integral); + + /* Calculate the pid control value by location formula */ + /* u(k) = e(k)*Kp + (e(k)-e(k-1))*Kd + integral*Ki */ + output = error * pid->Kp + + (error - pid->previous_err1) * pid->Kd + + pid->integral_err * pid->Ki; + + /* If the output is out of the range, it will be limited */ + output = MIN(output, pid->max_output); + output = MAX(output, pid->min_output); + + /* Update previous error */ + pid->previous_err1 = error; + + return output; +} + +static float pid_calc_incremental(pid_ctrl_block_t *pid, float error) +{ + float output = 0; + + /* Calculate the pid control value by increment formula */ + /* du(k) = (e(k)-e(k-1))*Kp + (e(k)-2*e(k-1)+e(k-2))*Kd + e(k)*Ki */ + /* u(k) = du(k) + u(k-1) */ + output = (error - pid->previous_err1) * pid->Kp + + (error - 2 * pid->previous_err1 + pid->previous_err2) * pid->Kd + + error * pid->Ki + + pid->last_output; + + /* If the output is beyond the range, it will be limited */ + output = MIN(output, pid->max_output); + output = MAX(output, pid->min_output); + + /* Update previous error */ + pid->previous_err2 = pid->previous_err1; + pid->previous_err1 = error; + + /* Update last output */ + pid->last_output = output; + + return output; +} + +esp_err_t pid_new_control_block(const pid_ctrl_config_t *config, pid_ctrl_block_handle_t *ret_pid) +{ + esp_err_t ret = ESP_OK; + pid_ctrl_block_t *pid = NULL; + /* Check the input pointer */ + ESP_GOTO_ON_FALSE(config && ret_pid, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument"); + + pid = calloc(1, sizeof(pid_ctrl_block_t)); + ESP_GOTO_ON_FALSE(pid, ESP_ERR_NO_MEM, err, TAG, "no mem for PID control block"); + ESP_GOTO_ON_ERROR(pid_update_parameters(pid, &config->init_param), err, TAG, "init PID parameters failed"); + *ret_pid = pid; + return ret; + +err: + if (pid) { + free(pid); + } + return ret; +} + +esp_err_t pid_del_control_block(pid_ctrl_block_handle_t pid) +{ + ESP_RETURN_ON_FALSE(pid, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + free(pid); + return ESP_OK; +} + +esp_err_t pid_compute(pid_ctrl_block_handle_t pid, float input_error, float *ret_result) +{ + ESP_RETURN_ON_FALSE(pid && ret_result, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + *ret_result = pid->calculate_func(pid, input_error); + return ESP_OK; +} + +esp_err_t pid_update_parameters(pid_ctrl_block_handle_t pid, const pid_ctrl_parameter_t *params) +{ + ESP_RETURN_ON_FALSE(pid && params, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); + pid->Kp = params->kp; + pid->Ki = params->ki; + pid->Kd = params->kd; + pid->max_output = params->max_output; + pid->min_output = params->min_output; + pid->max_integral = params->max_integral; + pid->min_integral = params->min_integral; + /* Set the calculate function according to the PID type */ + switch (params->cal_type) { + case PID_CAL_TYPE_INCREMENTAL: + pid->calculate_func = pid_calc_incremental; + break; + case PID_CAL_TYPE_POSITIONAL: + pid->calculate_func = pid_calc_positional; + break; + default: + ESP_RETURN_ON_FALSE(false, ESP_ERR_INVALID_ARG, TAG, "invalid PID calculation type:%d", params->cal_type); + } + return ESP_OK; +} diff --git a/sdkconfig b/sdkconfig new file mode 100644 index 0000000..864ec68 --- /dev/null +++ b/sdkconfig @@ -0,0 +1,1810 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Project Configuration +# +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM=14 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256=y +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_CPU_CORES_NUM=2 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FPU=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINT_SIZE=64 +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_GDMA_GROUPS=y +CONFIG_SOC_GDMA_PAIRS_PER_GROUP=5 +CONFIG_SOC_GDMA_SUPPORT_PSRAM=y +CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN=16 +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000 +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_I2C_FIFO_LEN=32 +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_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC=y +CONFIG_SOC_I2S_SUPPORTS_TDM=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_PCNT_GROUPS=y +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_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_SDM_GROUPS=y +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +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_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_MEMSPI_SRC_FREQ_120M=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_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_TOUCH_VERSION_2=y +CONFIG_SOC_TOUCH_SENSOR_NUM=15 +CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 +CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y +CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX=0x1FFFFF +CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF +CONFIG_SOC_UART_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_REQUIRE_CORE_RESET=y +CONFIG_SOC_USB_PERIPH_NUM=y +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_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_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_MODEM_PD=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=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_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_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y +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_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=16384 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32s3" +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_ELF_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 +# +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 +# 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 +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_APP_ROLLBACK_ENABLE is not set +# 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 +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# 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=16 +# 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_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=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_NEEDS_SET_CACHE_MMU_SIZE=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_FLASHMODE_QIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# 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=y +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# 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="2MB" +# 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=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Example Configuration +# +CONFIG_ESP_WIFI_SSID="CMCC-xRSZ" +CONFIG_ESP_WIFI_PASSWORD="dughk9gm" +CONFIG_ESP_MAXIMUM_RETRY=5 +# end of Example Configuration + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=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_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_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES 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_UART0 is not set +# 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 +# end of Bluetooth + +# +# Driver Configurations +# + +# +# Legacy ADC Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN 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 Configuration + +# +# SPI Configuration +# +# 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 SPI Configuration + +# +# TWAI Configuration +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of TWAI Configuration + +# +# Temperature sensor Configuration +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# end of Temperature sensor Configuration + +# +# UART Configuration +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of UART Configuration + +# +# GPIO Configuration +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of GPIO Configuration + +# +# Sigma Delta Modulator Configuration +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of Sigma Delta Modulator Configuration + +# +# GPTimer Configuration +# +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of GPTimer Configuration + +# +# PCNT Configuration +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of PCNT Configuration + +# +# RMT Configuration +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of RMT Configuration + +# +# MCPWM Configuration +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of MCPWM Configuration + +# +# I2S Configuration +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of I2S Configuration +# 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_DS_PERIPHERAL=y +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +# 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 +# end of ADC and ADC Calibration + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# 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 +# +# end of GDB Stub + +# +# 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 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +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 +# 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 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE 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 +# 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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# 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_DEEP_SLEEP_WAKEUP_DELAY=2000 +# 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 +CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB=y +# end of RTC Clock Config + +# +# Peripheral Control +# +# CONFIG_PERIPH_CTRL_FUNC_IN_IRAM is not set +# end of Peripheral Control + +# +# GDMA Configuration +# +# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# end of GDMA Configuration + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config +# end of Hardware Settings + +# +# LCD and Touch Panel +# + +# +# LCD Touch Drivers are maintained in the IDF Component Registry +# + +# +# LCD Peripheral Configuration +# +CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32 +# 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 LCD Peripheral Configuration +# end of LCD and Touch Panel + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +# 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 +# end of ESP NETIF Adapter + +# +# PHY +# +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_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 +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +CONFIG_PM_POWER_DOWN_TAGMEM_IN_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 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_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_GDBSTUB_RUNTIME is not set +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 is not set +# CONFIG_ESP_CONSOLE_USB_CDC is not set +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_NONE=y +CONFIG_ESP_CONSOLE_MULTIPLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=-1 +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 + +# +# 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 +# end of Brownout Detector + +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +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) + +# +# High resolution timer (esp_timer) +# +# 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_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of High resolution timer (esp_timer) + +# +# Wi-Fi +# +CONFIG_ESP32_WIFI_ENABLED=y +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +# CONFIG_ESP_WIFI_FTM_ENABLE is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set +# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set +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_WPS_PASSPHRASE 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_SECTOR_512 is not set +# CONFIG_FATFS_SECTOR_1024 is not set +# CONFIG_FATFS_SECTOR_2048 is not set +CONFIG_FATFS_SECTOR_4096=y +CONFIG_FATFS_SECTORS_PER_CLUSTER_1=y +# CONFIG_FATFS_SECTORS_PER_CLUSTER_2 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_4 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_8 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_16 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_32 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_64 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_128 is not set +# 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_AUTO_TYPE=y +# CONFIG_FATFS_FAT12 is not set +# CONFIG_FATFS_FAT16 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +# 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_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_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK 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_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_PLACE_SNAPSHOT_FUNS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +# end of Port + +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=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_ABORT_WHEN_ALLOCATION_FAILS is not set +# end of Heap memory debugging + +# +# Log output +# +# 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 +CONFIG_LOG_COLORS=y +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Log output + +# +# LWIP +# +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# CONFIG_LWIP_NETIF_API is not set +# 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_TIMERS_ONDEMAND=y +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_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_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_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=68 +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 +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +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=5744 +CONFIG_LWIP_TCP_WND_DEFAULT=5744 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +# 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_PPP_SUPPORT is not set +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# 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 +# end of SNTP + +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_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_IP6_INPUT_NONE=y +# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set +# 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_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_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +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_SHA512_C=y +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_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=y +# 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_LARGE_KEY_SOFTWARE_MPI is not set +# CONFIG_MBEDTLS_SECURITY_RISKS 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=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=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 + +# +# Newlib +# +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_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# end of Newlib + +# +# NVS +# +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set +# 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 +# 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 + +# +# 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_HAS_ROM_IMPL=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_SHARE_SPI1_BUS 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 + +# +# 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 + +# +# Auto-detect flash chips +# +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=3 + +# +# 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 +# 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 +# end of Unity unit testing library + +# +# USB-OTG +# +CONFIG_USB_OTG_SUPPORTED=y +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 + +# +# Root Hub 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 Hub configuration +# 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_SUPPORT_TERMIOS=y + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) +# 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_BLE_FORCE_ENCRYPTION is not set +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager + +# +# Supplicant +# +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_DEBUG_PRINT is not set +# CONFIG_WPA_TESTING_OPTIONS is not set +# CONFIG_WPA_WPS_STRICT 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 +# end of Supplicant +# end of Component config + +# Deprecated options for backward compatibility +# CONFIG_NO_BLOBS 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_APP_ROLLBACK_ENABLE is not set +# CONFIG_FLASH_ENCRYPTION_ENABLED is not set +# CONFIG_FLASHMODE_QIO is not set +# CONFIG_FLASHMODE_QOUT is not set +CONFIG_FLASHMODE_DIO=y +# CONFIG_FLASHMODE_DOUT is not set +CONFIG_MONITOR_BAUD=115200 +CONFIG_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +# CONFIG_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_MCPWM_ISR_IN_IRAM is not set +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +# CONFIG_OTA_ALLOW_HTTP is not set +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32S3_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_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_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 is not set +# 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_NUM=-1 +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_BROWNOUT_DET=y +CONFIG_ESP32S3_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_IPC_TASK_STACK_SIZE=1280 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +# CONFIG_EXTERNAL_COEX_ENABLE 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=5744 +CONFIG_TCP_WND_DEFAULT=5744 +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_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 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.old b/sdkconfig.old new file mode 100644 index 0000000..9a202ae --- /dev/null +++ b/sdkconfig.old @@ -0,0 +1,1660 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Project Configuration +# +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDE_NUM=14 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_LCDCAM_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_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_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_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_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_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_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_RTC_SLOW_CLOCK_SUPPORT_8MD256=y +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_CPU_CORES_NUM=2 +CONFIG_SOC_CPU_INTR_NUM=32 +CONFIG_SOC_CPU_HAS_FPU=y +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +CONFIG_SOC_CPU_WATCHPOINT_SIZE=64 +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_GDMA_GROUPS=y +CONFIG_SOC_GDMA_PAIRS_PER_GROUP=5 +CONFIG_SOC_GDMA_SUPPORT_PSRAM=y +CONFIG_SOC_GDMA_PSRAM_MIN_ALIGN=16 +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x1FFFFFFFFFFFF +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x0001FFFFFC000000 +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_I2C_FIFO_LEN=32 +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_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_PCM=y +CONFIG_SOC_I2S_SUPPORTS_PDM=y +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM_CODEC=y +CONFIG_SOC_I2S_SUPPORTS_TDM=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_PCNT_GROUPS=y +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_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_SDM_GROUPS=y +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +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_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_MEMSPI_SRC_FREQ_120M=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_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_TOUCH_VERSION_2=y +CONFIG_SOC_TOUCH_SENSOR_NUM=15 +CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 +CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y +CONFIG_SOC_TOUCH_PAD_THRESHOLD_MAX=0x1FFFFF +CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF +CONFIG_SOC_UART_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_REQUIRE_CORE_RESET=y +CONFIG_SOC_USB_PERIPH_NUM=y +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_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_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_MODEM_PD=y +CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=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_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_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIME_TUNING=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_COEX_HW_PTI=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y +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_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_50_SUPPORTED=y +CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=16384 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32s3" +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_ELF_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 +# +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 +# 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 +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_APP_ROLLBACK_ENABLE is not set +# 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 +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# 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=16 +# 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_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=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_NEEDS_SET_CACHE_MMU_SIZE=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_FLASHMODE_QIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# 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=y +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# 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="2MB" +# 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=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Example Configuration +# +CONFIG_ESP_WIFI_SSID="CMCC-xRSZ" +CONFIG_ESP_WIFI_PASSWORD="dughk9gm" +CONFIG_ESP_MAXIMUM_RETRY=5 +# end of Example Configuration + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=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_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_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES 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_UART0 is not set +# 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 +# end of Bluetooth + +# +# Driver Configurations +# + +# +# Legacy ADC Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN 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 Configuration + +# +# SPI Configuration +# +# 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 SPI Configuration + +# +# TWAI Configuration +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of TWAI Configuration + +# +# Temperature sensor Configuration +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# end of Temperature sensor Configuration + +# +# UART Configuration +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of UART Configuration + +# +# GPIO Configuration +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of GPIO Configuration + +# +# Sigma Delta Modulator Configuration +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of Sigma Delta Modulator Configuration + +# +# GPTimer Configuration +# +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of GPTimer Configuration + +# +# PCNT Configuration +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of PCNT Configuration + +# +# RMT Configuration +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of RMT Configuration + +# +# MCPWM Configuration +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of MCPWM Configuration + +# +# I2S Configuration +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of I2S Configuration +# 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_DS_PERIPHERAL=y +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +# 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 +# end of ADC and ADC Calibration + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# 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 +# +# end of GDB Stub + +# +# 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 +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +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 +# 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 +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE 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 +# 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_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# 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_DEEP_SLEEP_WAKEUP_DELAY=2000 +# 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 +CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB=y +# end of RTC Clock Config + +# +# Peripheral Control +# +# CONFIG_PERIPH_CTRL_FUNC_IN_IRAM is not set +# end of Peripheral Control + +# +# GDMA Configuration +# +# CONFIG_GDMA_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# end of GDMA Configuration + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config +# end of Hardware Settings + +# +# LCD and Touch Panel +# + +# +# LCD Touch Drivers are maintained in the IDF Component Registry +# + +# +# LCD Peripheral Configuration +# +CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32 +# 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 LCD Peripheral Configuration +# end of LCD and Touch Panel + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +# 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 +# end of ESP NETIF Adapter + +# +# PHY +# +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_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 +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +CONFIG_PM_POWER_DOWN_TAGMEM_IN_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 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_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_GDBSTUB_RUNTIME is not set +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 is not set +# CONFIG_ESP_CONSOLE_USB_CDC is not set +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_NONE=y +CONFIG_ESP_CONSOLE_MULTIPLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=-1 +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 + +# +# 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 +# end of Brownout Detector + +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +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) + +# +# High resolution timer (esp_timer) +# +# 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_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of High resolution timer (esp_timer) + +# +# Wi-Fi +# +CONFIG_ESP32_WIFI_ENABLED=y +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +# CONFIG_ESP_WIFI_FTM_ENABLE is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE is not set +# CONFIG_ESP_WIFI_GCMP_SUPPORT is not set +# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set +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_WPS_PASSPHRASE 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_SECTOR_512 is not set +# CONFIG_FATFS_SECTOR_1024 is not set +# CONFIG_FATFS_SECTOR_2048 is not set +CONFIG_FATFS_SECTOR_4096=y +CONFIG_FATFS_SECTORS_PER_CLUSTER_1=y +# CONFIG_FATFS_SECTORS_PER_CLUSTER_2 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_4 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_8 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_16 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_32 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_64 is not set +# CONFIG_FATFS_SECTORS_PER_CLUSTER_128 is not set +# 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_AUTO_TYPE=y +# CONFIG_FATFS_FAT12 is not set +# CONFIG_FATFS_FAT16 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +# 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_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_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK 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_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_PLACE_SNAPSHOT_FUNS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +# end of Port + +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=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_ABORT_WHEN_ALLOCATION_FAILS is not set +# end of Heap memory debugging + +# +# Log output +# +# 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 +CONFIG_LOG_COLORS=y +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Log output + +# +# LWIP +# +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# CONFIG_LWIP_NETIF_API is not set +# 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_TIMERS_ONDEMAND=y +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_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_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_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=68 +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 +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +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=5744 +CONFIG_LWIP_TCP_WND_DEFAULT=5744 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +# 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_PPP_SUPPORT is not set +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# 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 +# end of SNTP + +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_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_IP6_INPUT_NONE=y +# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set +# 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_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_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +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_SHA512_C=y +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_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=y +# 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_LARGE_KEY_SOFTWARE_MPI is not set +# CONFIG_MBEDTLS_SECURITY_RISKS 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=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=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 + +# +# Newlib +# +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_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# end of Newlib + +# +# NVS +# +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set +# 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 +# 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 + +# +# 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_HAS_ROM_IMPL=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_SHARE_SPI1_BUS 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 + +# +# 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 + +# +# Auto-detect flash chips +# +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=3 + +# +# 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 +# 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 +# end of Unity unit testing library + +# +# USB-OTG +# +CONFIG_USB_OTG_SUPPORTED=y +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 + +# +# Root Hub 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 Hub configuration +# 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_SUPPORT_TERMIOS=y + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) +# 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_BLE_FORCE_ENCRYPTION is not set +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager + +# +# Supplicant +# +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_DEBUG_PRINT is not set +# CONFIG_WPA_TESTING_OPTIONS is not set +# CONFIG_WPA_WPS_STRICT 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 +# end of Supplicant +# end of Component config